From d7762457c7ab3b2df9196adb53da67e92cdd2435 Mon Sep 17 00:00:00 2001 From: Kristoffer Ericson Date: Sat, 30 Oct 2010 00:09:19 +0200 Subject: Add flashrom memory setting for cpufreq --- arch/arm/mach-sa1100/cpu-sa1110.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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); -- cgit 1.2.3-korg