diff options
author | Andreas Bießmann <andreas.devel@googlemail.com> | 2013-11-29 12:13:45 +0100 |
---|---|---|
committer | Andreas Bießmann <andreas.devel@googlemail.com> | 2013-12-09 13:21:45 +0100 |
commit | ac45bb1646e866b463405fade65bac4d877d4209 (patch) | |
tree | 0d990e984cf01e48a1e95cfc7f6cf3eaf6a661a2 /board/eukrea | |
parent | 934e3b5240ab655782b0844989db928265e6f5df (diff) | |
download | u-boot-imx-ac45bb1646e866b463405fade65bac4d877d4209.zip u-boot-imx-ac45bb1646e866b463405fade65bac4d877d4209.tar.gz u-boot-imx-ac45bb1646e866b463405fade65bac4d877d4209.tar.bz2 |
at91: nand: switch atmel_nand to generic GPIO API
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Acked-by: Jens Scharsig (BuS Elektronik)<esw@bus-elektronik.de>
Tested-by: Jens Scharsig (BuS Elektronik)<esw@bus-elektronik.de>
Acked-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'board/eukrea')
-rw-r--r-- | board/eukrea/cpu9260/cpu9260.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/board/eukrea/cpu9260/cpu9260.c b/board/eukrea/cpu9260/cpu9260.c index 274f72d..01ecccb 100644 --- a/board/eukrea/cpu9260/cpu9260.c +++ b/board/eukrea/cpu9260/cpu9260.c @@ -12,6 +12,7 @@ #include <common.h> #include <asm/io.h> +#include <asm/gpio.h> #include <asm/arch/at91sam9260.h> #include <asm/arch/at91sam9_smc.h> #include <asm/arch/at91_common.h> @@ -78,10 +79,10 @@ static void cpu9260_nand_hw_init(void) writel(1 << ATMEL_ID_PIOC, &pmc->pcer); /* Configure RDY/BSY */ - at91_set_pio_input(CONFIG_SYS_NAND_READY_PIN, 1); + gpio_direction_input(CONFIG_SYS_NAND_READY_PIN); /* Enable NandFlash */ - at91_set_pio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1); + gpio_direction_output(CONFIG_SYS_NAND_ENABLE_PIN, 1); } #endif |