diff options
author | Kristoffer Ericson <Kristoffer_e1@com.rmk.(none)> | 2006-10-08 14:52:30 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-10-14 11:01:58 -0400 |
commit | 48e3becbee8906b44050c9300b668227b85f0c95 (patch) | |
tree | 78307436e398ec943c7b284b44c067a214735a08 /arch/arm | |
parent | 69f0304e174c765c624d75b79c35e49b7ba67ed4 (diff) |
[ARM] 3889/1: [Jornada7xx] Addition of correct SDRAM params into cpu-sa1110.c
This adds correct sdram params for K4S281632B-1H and sets the jornada to use them by default.
Signed-off-by: Kristoffer Ericson
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-sa1100/cpu-sa1110.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-sa1100/cpu-sa1110.c b/arch/arm/mach-sa1100/cpu-sa1110.c index 639597729932..90a4130114a6 100644 --- a/arch/arm/mach-sa1100/cpu-sa1110.c +++ b/arch/arm/mach-sa1100/cpu-sa1110.c | |||
@@ -82,6 +82,14 @@ static struct sdram_params sdram_tbl[] __initdata = { | |||
82 | .twr = 9, | 82 | .twr = 9, |
83 | .refresh = 64000, | 83 | .refresh = 64000, |
84 | .cas_latency = 3, | 84 | .cas_latency = 3, |
85 | }, { /* Samsung K4S281632B-1H */ | ||
86 | .name = "K4S281632b-1H", | ||
87 | .rows = 12, | ||
88 | .tck = 10, | ||
89 | .trp = 20, | ||
90 | .twr = 10, | ||
91 | .refresh = 64000, | ||
92 | .cas_latency = 3, | ||
85 | }, { /* Samsung KM416S4030CT */ | 93 | }, { /* Samsung KM416S4030CT */ |
86 | .name = "KM416S4030CT", | 94 | .name = "KM416S4030CT", |
87 | .rows = 13, | 95 | .rows = 13, |
@@ -366,6 +374,8 @@ static int __init sa1110_clk_init(void) | |||
366 | 374 | ||
367 | if (machine_is_h3100()) | 375 | if (machine_is_h3100()) |
368 | name = "KM416S4030CT"; | 376 | name = "KM416S4030CT"; |
377 | if (machine_is_jornada720()) | ||
378 | name = "K4S281632B-1H"; | ||
369 | } | 379 | } |
370 | 380 | ||
371 | sdram = sa1110_find_sdram(name); | 381 | sdram = sa1110_find_sdram(name); |