diff options
author | Kristoffer Ericson <kristoffer_e1@hotmail.com> | 2006-07-03 00:45:47 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-07-03 00:45:47 +0000 |
commit | 41877a64eb6d2e3ad8722ea89eb8eaa424a73516 (patch) | |
tree | 86275c4add84fc65d3619c8135b837c31b10dac4 /packages/linux/linux-jlime-arm-2.6.17/Cpu-Sa1110-Jornada720.patch | |
parent | c2fd5f3f9f19914fc7a1e41ffdc9935f54022b49 (diff) |
packages/linux/linux-jlime-arm-2.6.17/* : Addition of patches for HP 7xx
* Addition of patches to make the vanilla kernel know of the
HP Jornada 7xx. Patches kept seperate because development is ongoing.
Should work resonable though and should get incorperated into
the mainline tree within 1-2 versions.
packages/linux/linux-jlime-arm_2.6.17.bb: Changes to reflect updates
* Addition of patches to file and also removal of all sh leftovers.
Diffstat (limited to 'packages/linux/linux-jlime-arm-2.6.17/Cpu-Sa1110-Jornada720.patch')
-rw-r--r-- | packages/linux/linux-jlime-arm-2.6.17/Cpu-Sa1110-Jornada720.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/linux/linux-jlime-arm-2.6.17/Cpu-Sa1110-Jornada720.patch b/packages/linux/linux-jlime-arm-2.6.17/Cpu-Sa1110-Jornada720.patch new file mode 100644 index 0000000000..c957971629 --- /dev/null +++ b/packages/linux/linux-jlime-arm-2.6.17/Cpu-Sa1110-Jornada720.patch @@ -0,0 +1,32 @@ +--- linux-2.6.17/arch/arm/mach-sa1100/cpu-sa1110.c_orig 2006-07-02 20:44:56.000000000 +0000 ++++ linux-2.6.17/arch/arm/mach-sa1100/cpu-sa1110.c 2006-07-02 20:50:11.000000000 +0000 +@@ -70,6 +70,17 @@ + .cas_latency = 3, + }; + ++static struct sdram_params samsung_k4s281632b_1h __initdata = { ++ .rows = 12, ++ .tck = 10, ++ .trcd = 20, ++ .trp = 20, ++ .twr = 10, ++ .refresh = 64000, ++ .cas_latency = 3, ++ }; ++ ++ + static struct sdram_params samsung_k4s641632d_tc75 __initdata = { + .rows = 14, + .tck = 9, +@@ -349,6 +360,11 @@ + if (machine_is_h3100()) + sdram = &samsung_km416s4030ct; + ++ #if 0 ++ if (machine_is_jornada720()) ++ sdram = &samsung_k4s281632b_1h; ++ #endif ++ + if (sdram) { + printk(KERN_DEBUG "SDRAM: tck: %d trcd: %d trp: %d" + " twr: %d refresh: %d cas_latency: %d\n", |