diff options
author | Ivan Khoronzhuk <ivan.khoronzhuk@ti.com> | 2014-02-28 21:05:24 -0500 |
---|---|---|
committer | Santosh Shilimkar <santosh.shilimkar@ti.com> | 2014-02-28 21:05:24 -0500 |
commit | 82c04f71ecacf225cdd0ea96ec91f28ca9db70a1 (patch) | |
tree | afa8b71adb501bfc98be3336b0ca444e370d8576 /arch/arm/boot/dts/k2hk-evm.dts | |
parent | 209636b6784a1b6bd3968aebf03612467c33361c (diff) |
ARM: dts: keystone: 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/dts/k2hk-evm.dts')
-rw-r--r-- | arch/arm/boot/dts/k2hk-evm.dts | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/k2hk-evm.dts b/arch/arm/boot/dts/k2hk-evm.dts index d8cc99af51e8..1a1335b4a0b1 100644 --- a/arch/arm/boot/dts/k2hk-evm.dts +++ b/arch/arm/boot/dts/k2hk-evm.dts | |||
@@ -86,3 +86,55 @@ | |||
86 | &usb { | 86 | &usb { |
87 | status = "okay"; | 87 | status = "okay"; |
88 | }; | 88 | }; |
89 | |||
90 | &aemif { | ||
91 | cs0 { | ||
92 | #address-cells = <2>; | ||
93 | #size-cells = <1>; | ||
94 | clock-ranges; | ||
95 | ranges; | ||
96 | |||
97 | ti,cs-chipselect = <0>; | ||
98 | /* all timings in nanoseconds */ | ||
99 | ti,cs-min-turnaround-ns = <12>; | ||
100 | ti,cs-read-hold-ns = <6>; | ||
101 | ti,cs-read-strobe-ns = <23>; | ||
102 | ti,cs-read-setup-ns = <9>; | ||
103 | ti,cs-write-hold-ns = <8>; | ||
104 | ti,cs-write-strobe-ns = <23>; | ||
105 | ti,cs-write-setup-ns = <8>; | ||
106 | |||
107 | nand@0,0 { | ||
108 | compatible = "ti,keystone-nand","ti,davinci-nand"; | ||
109 | #address-cells = <1>; | ||
110 | #size-cells = <1>; | ||
111 | reg = <0 0 0x4000000 | ||
112 | 1 0 0x0000100>; | ||
113 | |||
114 | ti,davinci-chipselect = <0>; | ||
115 | ti,davinci-mask-ale = <0x2000>; | ||
116 | ti,davinci-mask-cle = <0x4000>; | ||
117 | ti,davinci-mask-chipsel = <0>; | ||
118 | nand-ecc-mode = "hw"; | ||
119 | ti,davinci-ecc-bits = <4>; | ||
120 | nand-on-flash-bbt; | ||
121 | |||
122 | partition@0 { | ||
123 | label = "u-boot"; | ||
124 | reg = <0x0 0x100000>; | ||
125 | read-only; | ||
126 | }; | ||
127 | |||
128 | partition@100000 { | ||
129 | label = "params"; | ||
130 | reg = <0x100000 0x80000>; | ||
131 | read-only; | ||
132 | }; | ||
133 | |||
134 | partition@180000 { | ||
135 | label = "ubifs"; | ||
136 | reg = <0x180000 0x7E80000>; | ||
137 | }; | ||
138 | }; | ||
139 | }; | ||
140 | }; | ||