Skip to content

Commit

Permalink
[ARM] 3889/1: [Jornada7xx] Addition of correct SDRAM params into cpu-…
Browse files Browse the repository at this point in the history
…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>
  • Loading branch information
Kristoffer Ericson authored and Russell King committed Oct 14, 2006
1 parent 69f0304 commit 48e3bec
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions arch/arm/mach-sa1100/cpu-sa1110.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,14 @@ static struct sdram_params sdram_tbl[] __initdata = {
.twr = 9,
.refresh = 64000,
.cas_latency = 3,
}, { /* Samsung K4S281632B-1H */
.name = "K4S281632b-1H",
.rows = 12,
.tck = 10,
.trp = 20,
.twr = 10,
.refresh = 64000,
.cas_latency = 3,
}, { /* Samsung KM416S4030CT */
.name = "KM416S4030CT",
.rows = 13,
Expand Down Expand Up @@ -366,6 +374,8 @@ static int __init sa1110_clk_init(void)

if (machine_is_h3100())
name = "KM416S4030CT";
if (machine_is_jornada720())
name = "K4S281632B-1H";
}

sdram = sa1110_find_sdram(name);
Expand Down

0 comments on commit 48e3bec

Please sign in to comment.