diff options
author | Sukumar Ghorai <s-ghorai@ti.com> | 2010-07-09 10:27:51 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-08-02 08:46:29 -0400 |
commit | 2430f9df61e2ea47ea468dfe22b7e2db97111fb4 (patch) | |
tree | fcfd762bcc0a2ca511ddf23f3ec390941e26411d /arch/arm/mach-omap2/board-ldp.c | |
parent | 7875eea5caf641e36cd9b5755c1d84810469fe30 (diff) |
omap3: add support for NAND on LDP board
patch adds NAND support to LDP board.
Signed-off-by: Vimal Singh <vimalsingh@ti.com>
Signed-off-by: Sukumar Ghorai <s-ghorai@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-ldp.c')
-rw-r--r-- | arch/arm/mach-omap2/board-ldp.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-ldp.c b/arch/arm/mach-omap2/board-ldp.c index fefd7e6e9779..778afabf3b4e 100644 --- a/arch/arm/mach-omap2/board-ldp.c +++ b/arch/arm/mach-omap2/board-ldp.c | |||
@@ -38,6 +38,7 @@ | |||
38 | #include <plat/board.h> | 38 | #include <plat/board.h> |
39 | #include <plat/common.h> | 39 | #include <plat/common.h> |
40 | #include <plat/gpmc.h> | 40 | #include <plat/gpmc.h> |
41 | #include <mach/board-zoom.h> | ||
41 | 42 | ||
42 | #include <asm/delay.h> | 43 | #include <asm/delay.h> |
43 | #include <plat/control.h> | 44 | #include <plat/control.h> |
@@ -388,6 +389,38 @@ static struct omap_musb_board_data musb_board_data = { | |||
388 | .power = 100, | 389 | .power = 100, |
389 | }; | 390 | }; |
390 | 391 | ||
392 | static struct mtd_partition ldp_nand_partitions[] = { | ||
393 | /* All the partition sizes are listed in terms of NAND block size */ | ||
394 | { | ||
395 | .name = "X-Loader-NAND", | ||
396 | .offset = 0, | ||
397 | .size = 4 * (64 * 2048), /* 512KB, 0x80000 */ | ||
398 | .mask_flags = MTD_WRITEABLE, /* force read-only */ | ||
399 | }, | ||
400 | { | ||
401 | .name = "U-Boot-NAND", | ||
402 | .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */ | ||
403 | .size = 10 * (64 * 2048), /* 1.25MB, 0x140000 */ | ||
404 | .mask_flags = MTD_WRITEABLE, /* force read-only */ | ||
405 | }, | ||
406 | { | ||
407 | .name = "Boot Env-NAND", | ||
408 | .offset = MTDPART_OFS_APPEND, /* Offset = 0x1c0000 */ | ||
409 | .size = 2 * (64 * 2048), /* 256KB, 0x40000 */ | ||
410 | }, | ||
411 | { | ||
412 | .name = "Kernel-NAND", | ||
413 | .offset = MTDPART_OFS_APPEND, /* Offset = 0x0200000*/ | ||
414 | .size = 240 * (64 * 2048), /* 30M, 0x1E00000 */ | ||
415 | }, | ||
416 | { | ||
417 | .name = "File System - NAND", | ||
418 | .offset = MTDPART_OFS_APPEND, /* Offset = 0x2000000 */ | ||
419 | .size = MTDPART_SIZ_FULL, /* 96MB, 0x6000000 */ | ||
420 | }, | ||
421 | |||
422 | }; | ||
423 | |||
391 | static void __init omap_ldp_init(void) | 424 | static void __init omap_ldp_init(void) |
392 | { | 425 | { |
393 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); | 426 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); |
@@ -400,6 +433,8 @@ static void __init omap_ldp_init(void) | |||
400 | ads7846_dev_init(); | 433 | ads7846_dev_init(); |
401 | omap_serial_init(); | 434 | omap_serial_init(); |
402 | usb_musb_init(&musb_board_data); | 435 | usb_musb_init(&musb_board_data); |
436 | board_nand_init(ldp_nand_partitions, | ||
437 | ARRAY_SIZE(ldp_nand_partitions), ZOOM_NAND_CS); | ||
403 | 438 | ||
404 | omap2_hsmmc_init(mmc); | 439 | omap2_hsmmc_init(mmc); |
405 | /* link regulators to MMC adapters */ | 440 | /* link regulators to MMC adapters */ |