diff options
author | Ivan Khoronzhuk <ivan.khoronzhuk@ti.com> | 2014-05-08 17:31:01 -0400 |
---|---|---|
committer | Santosh Shilimkar <santosh.shilimkar@ti.com> | 2014-05-08 17:31:01 -0400 |
commit | 29a61d83ad2da88bbbadb554b72fdd2c3bb36c63 (patch) | |
tree | 35a453a51990ef14d4cfe2655d9ef45a0d98c959 /arch/arm/boot | |
parent | 8b144ffd7b6c8edbdc881b0a32858e1447fa441f (diff) |
ARM: dts: k2l-evm: add AEMIF/NAND device entry
Add AEMIF/NAND device entry.
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r-- | arch/arm/boot/dts/k2l-evm.dts | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/k2l-evm.dts b/arch/arm/boot/dts/k2l-evm.dts index bdc94a002804..8ff2d330c2c5 100644 --- a/arch/arm/boot/dts/k2l-evm.dts +++ b/arch/arm/boot/dts/k2l-evm.dts | |||
@@ -42,3 +42,55 @@ | |||
42 | reg = <0x50>; | 42 | reg = <0x50>; |
43 | }; | 43 | }; |
44 | }; | 44 | }; |
45 | |||
46 | &aemif { | ||
47 | cs0 { | ||
48 | #address-cells = <2>; | ||
49 | #size-cells = <1>; | ||
50 | clock-ranges; | ||
51 | ranges; | ||
52 | |||
53 | ti,cs-chipselect = <0>; | ||
54 | /* all timings in nanoseconds */ | ||
55 | ti,cs-min-turnaround-ns = <12>; | ||
56 | ti,cs-read-hold-ns = <6>; | ||
57 | ti,cs-read-strobe-ns = <23>; | ||
58 | ti,cs-read-setup-ns = <9>; | ||
59 | ti,cs-write-hold-ns = <8>; | ||
60 | ti,cs-write-strobe-ns = <23>; | ||
61 | ti,cs-write-setup-ns = <8>; | ||
62 | |||
63 | nand@0,0 { | ||
64 | compatible = "ti,keystone-nand","ti,davinci-nand"; | ||
65 | #address-cells = <1>; | ||
66 | #size-cells = <1>; | ||
67 | reg = <0 0 0x4000000 | ||
68 | 1 0 0x0000100>; | ||
69 | |||
70 | ti,davinci-chipselect = <0>; | ||
71 | ti,davinci-mask-ale = <0x2000>; | ||
72 | ti,davinci-mask-cle = <0x4000>; | ||
73 | ti,davinci-mask-chipsel = <0>; | ||
74 | nand-ecc-mode = "hw"; | ||
75 | ti,davinci-ecc-bits = <4>; | ||
76 | nand-on-flash-bbt; | ||
77 | |||
78 | partition@0 { | ||
79 | label = "u-boot"; | ||
80 | reg = <0x0 0x100000>; | ||
81 | read-only; | ||
82 | }; | ||
83 | |||
84 | partition@100000 { | ||
85 | label = "params"; | ||
86 | reg = <0x100000 0x80000>; | ||
87 | read-only; | ||
88 | }; | ||
89 | |||
90 | partition@180000 { | ||
91 | label = "ubifs"; | ||
92 | reg = <0x180000 0x7FE80000>; | ||
93 | }; | ||
94 | }; | ||
95 | }; | ||
96 | }; | ||