diff options
author | Matthias Fuchs <matthias.fuchs@esd-electronics.com> | 2007-07-09 10:10:06 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-07-09 10:55:51 +0200 |
commit | bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803 (patch) | |
tree | 8fd60ad94c954e3fe5600dc77d3173677a0e6638 /board/esd/voh405 | |
parent | e09f7ab5749c345f924da272bea0521a73af5b11 (diff) | |
download | u-boot-imx-bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803.zip u-boot-imx-bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803.tar.gz u-boot-imx-bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803.tar.bz2 |
Migrate esd 405EP boards to new NAND subsystem
Migrate esd 405EP boards to new NAND subsystem
-cleanup
-use correct io accessors (in/out_be32())
Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
Diffstat (limited to 'board/esd/voh405')
-rw-r--r-- | board/esd/voh405/Makefile | 4 | ||||
-rw-r--r-- | board/esd/voh405/voh405.c | 20 |
2 files changed, 3 insertions, 21 deletions
diff --git a/board/esd/voh405/Makefile b/board/esd/voh405/Makefile index 4d75868..308f752 100644 --- a/board/esd/voh405/Makefile +++ b/board/esd/voh405/Makefile @@ -28,7 +28,9 @@ endif LIB = $(obj)lib$(BOARD).a -COBJS = $(BOARD).o flash.o ../common/misc.o +COBJS = $(BOARD).o flash.o \ + ../common/misc.o \ + ../common/esd405ep_nand.o \ SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) diff --git a/board/esd/voh405/voh405.c b/board/esd/voh405/voh405.c index 22995b5..2857a0be 100644 --- a/board/esd/voh405/voh405.c +++ b/board/esd/voh405/voh405.c @@ -195,12 +195,6 @@ int misc_init_r (void) udelay(1000); /* wait 1ms */ /* - * Set NAND-FLASH GPIO signals to default - */ - out32(GPIO0_OR, in32(GPIO0_OR) & ~(CFG_NAND_CLE | CFG_NAND_ALE)); - out32(GPIO0_OR, in32(GPIO0_OR) | CFG_NAND_CE); - - /* * Enable interrupts in exar duart mcr[3] */ *duart0_mcr = 0x08; @@ -340,17 +334,3 @@ void ide_set_reset(int on) } } #endif /* CONFIG_IDE_RESET */ - - -#if (CONFIG_COMMANDS & CFG_CMD_NAND) -#include <linux/mtd/nand_legacy.h> -extern struct nand_chip nand_dev_desc[CFG_MAX_NAND_DEVICE]; - -void nand_init(void) -{ - nand_probe(CFG_NAND_BASE); - if (nand_dev_desc[0].ChipID != NAND_ChipID_UNKNOWN) { - print_size(nand_dev_desc[0].totlen, "\n"); - } -} -#endif |