diff options
author | Marek Belisko <marek@goldelico.com> | 2014-07-22 15:30:14 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2014-07-23 04:57:27 -0400 |
commit | 2618a18246a6164c212c47ee6b0031ad85909cc9 (patch) | |
tree | e4f9b575261f45cd090eea2ae1544171bb3ef7fd /arch/arm/boot/dts/omap3-gta04.dts | |
parent | 3c9464ed75d6c15ee864da6d8f6a4cd3b0f2c934 (diff) |
ARM: dts: omap3-gta04: Add nand support
Add the needed sections to enable nand support on
gta04 board.
Add nand partitions information.
Signed-off-by: Marek Belisko <marek@goldelico.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot/dts/omap3-gta04.dts')
-rw-r--r-- | arch/arm/boot/dts/omap3-gta04.dts | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap3-gta04.dts b/arch/arm/boot/dts/omap3-gta04.dts index 021311f7964b..7d7ddd7065c1 100644 --- a/arch/arm/boot/dts/omap3-gta04.dts +++ b/arch/arm/boot/dts/omap3-gta04.dts | |||
@@ -309,3 +309,57 @@ | |||
309 | }; | 309 | }; |
310 | }; | 310 | }; |
311 | }; | 311 | }; |
312 | |||
313 | &gpmc { | ||
314 | ranges = <0 0 0x30000000 0x04>; /* CS0: NAND */ | ||
315 | |||
316 | nand@0,0 { | ||
317 | reg = <0 0 0>; /* CS0, offset 0 */ | ||
318 | nand-bus-width = <16>; | ||
319 | ti,nand-ecc-opt = "bch8"; | ||
320 | |||
321 | gpmc,sync-clk-ps = <0>; | ||
322 | gpmc,cs-on-ns = <0>; | ||
323 | gpmc,cs-rd-off-ns = <44>; | ||
324 | gpmc,cs-wr-off-ns = <44>; | ||
325 | gpmc,adv-on-ns = <6>; | ||
326 | gpmc,adv-rd-off-ns = <34>; | ||
327 | gpmc,adv-wr-off-ns = <44>; | ||
328 | gpmc,we-off-ns = <40>; | ||
329 | gpmc,oe-off-ns = <54>; | ||
330 | gpmc,access-ns = <64>; | ||
331 | gpmc,rd-cycle-ns = <82>; | ||
332 | gpmc,wr-cycle-ns = <82>; | ||
333 | gpmc,wr-access-ns = <40>; | ||
334 | gpmc,wr-data-mux-bus-ns = <0>; | ||
335 | gpmc,device-width = <2>; | ||
336 | |||
337 | #address-cells = <1>; | ||
338 | #size-cells = <1>; | ||
339 | |||
340 | x-loader@0 { | ||
341 | label = "X-Loader"; | ||
342 | reg = <0 0x80000>; | ||
343 | }; | ||
344 | |||
345 | bootloaders@80000 { | ||
346 | label = "U-Boot"; | ||
347 | reg = <0x80000 0x1e0000>; | ||
348 | }; | ||
349 | |||
350 | bootloaders_env@260000 { | ||
351 | label = "U-Boot Env"; | ||
352 | reg = <0x260000 0x20000>; | ||
353 | }; | ||
354 | |||
355 | kernel@280000 { | ||
356 | label = "Kernel"; | ||
357 | reg = <0x280000 0x400000>; | ||
358 | }; | ||
359 | |||
360 | filesystem@680000 { | ||
361 | label = "File System"; | ||
362 | reg = <0x680000 0xf980000>; | ||
363 | }; | ||
364 | }; | ||
365 | }; | ||