summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/karo-tx28
diff options
context:
space:
mode:
authorWolfram Sang <w.sang@pengutronix.de>2012-12-05 15:42:42 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2012-12-05 19:33:15 +0100
commit47515fbdaa7e5ebd3e5010418588b52dd105252e (patch)
tree3026f352351abf4d9ede61d289020775d178db88 /arch/arm/boards/karo-tx28
parent90806eea09672dd60c3a57e7d077ece613ff1cf3 (diff)
downloadbarebox-47515fbdaa7e5ebd3e5010418588b52dd105252e.tar.gz
barebox-47515fbdaa7e5ebd3e5010418588b52dd105252e.tar.xz
mxs: tx28: fix NAND usage
Pinmuxing was wrong and no GPMI device was created. Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/boards/karo-tx28')
-rw-r--r--arch/arm/boards/karo-tx28/tx28.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/boards/karo-tx28/tx28.c b/arch/arm/boards/karo-tx28/tx28.c
index a62cb8257f..6e8da155a3 100644
--- a/arch/arm/boards/karo-tx28/tx28.c
+++ b/arch/arm/boards/karo-tx28/tx28.c
@@ -35,11 +35,12 @@ static const uint32_t tx28_pad_setup[] = {
GPMI_D6 | VE_3_3V | PULLUP(1),
GPMI_D7 | VE_3_3V | PULLUP(1),
GPMI_READY0 | VE_3_3V | PULLUP(0), /* external PU */
+ GPMI_CE0N | VE_3_3V | PULLUP(1),
GPMI_RDN | VE_3_3V | PULLUP(1),
GPMI_WRN | VE_3_3V | BITKEEPER(1),
GPMI_ALE | VE_3_3V | PULLUP(1),
GPMI_CLE | VE_3_3V | PULLUP(1),
- GPMI_RESETN_GPIO | VE_3_3V | GPIO_IN, /* act as WP, external PU */
+ GPMI_RESETN | VE_3_3V | PULLUP(0), /* external PU */
/* Network interface */
@@ -91,6 +92,9 @@ static int tx28_devices_init(void)
base_board_init();
+ add_generic_device("mxs_nand", 0, NULL, MXS_GPMI_BASE, 0x2000,
+ IORESOURCE_MEM, NULL);
+
return 0;
}