aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristoffer Ericson <kristoffer.ericson@gmail.com>2010-10-30 00:09:19 +0200
committerKristoffer Ericson <kristoffer.ericson@gmail.com>2011-12-10 15:53:30 +0100
commitd7762457c7ab3b2df9196adb53da67e92cdd2435 (patch)
tree3b909601e9fb057edf7af1389bede72fde4535b1
parentc1a38acdb441f96824e45c2441c956189170547f (diff)
downloadlinux-hpc-d7762457c7ab3b2df9196adb53da67e92cdd2435.tar.gz
Add flashrom memory setting for cpufreq
-rw-r--r--arch/arm/mach-sa1100/cpu-sa1110.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/arch/arm/mach-sa1100/cpu-sa1110.c b/arch/arm/mach-sa1100/cpu-sa1110.c
index 7252874d328b59..3d57e557ba3ba0 100644
--- a/arch/arm/mach-sa1100/cpu-sa1110.c
+++ b/arch/arm/mach-sa1100/cpu-sa1110.c
@@ -107,6 +107,15 @@ static struct sdram_params sdram_tbl[] __initdata = {
.twr = 8,
.refresh = 64000,
.cas_latency = 3,
+ }, { /* Micron MT48LC128M4A2 */
+ .name = "MT48LC32M16A2",
+ .rows = 15,
+ .tck = 10,
+ .trcd = 20,
+ .trp = 20,
+ .twr = 16,
+ .refresh = 64000,
+ .cas_latency = 3,
},
};
@@ -375,8 +384,13 @@ static int __init sa1110_clk_init(void)
if (machine_is_h3100())
name = "KM416S4030CT";
+#ifdef CONFIG_SA1100_JORNADA720_FLASHROM
+ if (machine_is_jornada720())
+ name = "MT48LC32M16A2";
+#else
if (machine_is_jornada720())
- name = "K4S281632B-1H";
+ name = "K4S281632B-1H";
+#endif
}
sdram = sa1110_find_sdram(name);