diff options
author | Wolfgang Denk <wd@denx.de> | 2012-01-13 20:07:40 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-01-13 20:07:40 +0100 |
commit | 3dc5ea500ffc00a1b3602b5e7fe69e72908a1818 (patch) | |
tree | 5964d7f08dd5bb3eb6b4a7dd32c1466363390079 /board/freescale | |
parent | 8eee2bd7f484c4933c4e3112c3c3db886ac945ca (diff) | |
parent | c947c12e7805e5562b5c803f74eaceba8c66ba56 (diff) | |
download | u-boot-3dc5ea500ffc00a1b3602b5e7fe69e72908a1818.tar.gz u-boot-3dc5ea500ffc00a1b3602b5e7fe69e72908a1818.tar.xz u-boot-3dc5ea500ffc00a1b3602b5e7fe69e72908a1818.zip |
Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
* 'master' of git://git.denx.de/u-boot-mpc83xx:
mpc8313erdb: fix mtdparts address
powerpc/83xx/km: add support for 8321 based tuge1 board
powerpc/83xx/km: merge tuxa and tuda1 boards to tuxx1
powerpc/83xx/km: remove obsolete defines for tuda1
powerpc/83xx/km: update SDRAM parameters for km8321 boards
mpc8313erdb: Enable GPIO support on the MPC8313E RDB
mpc83xx: Add a GPIO driver for the MPC83XX family
gpio: Replace ARM gpio.h with the common API in include/asm-generic
gpio: Modify common gpio.h to more closely match Linux
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/mpc8313erdb/mpc8313erdb.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/board/freescale/mpc8313erdb/mpc8313erdb.c b/board/freescale/mpc8313erdb/mpc8313erdb.c index 08f873d7e4..730ec4e734 100644 --- a/board/freescale/mpc8313erdb/mpc8313erdb.c +++ b/board/freescale/mpc8313erdb/mpc8313erdb.c @@ -31,6 +31,9 @@ #include <vsc7385.h> #include <ns16550.h> #include <nand.h> +#if defined(CONFIG_MPC83XX_GPIO) && !defined(CONFIG_NAND_SPL) +#include <asm/gpio.h> +#endif DECLARE_GLOBAL_DATA_PTR; @@ -42,6 +45,18 @@ int board_early_init_f(void) if (im->pmc.pmccr1 & PMCCR1_POWER_OFF) gd->flags |= GD_FLG_SILENT; #endif +#if defined(CONFIG_MPC83XX_GPIO) && !defined(CONFIG_NAND_SPL) + mpc83xx_gpio_init_f(); +#endif + + return 0; +} + +int board_early_init_r(void) +{ +#if defined(CONFIG_MPC83XX_GPIO) && !defined(CONFIG_NAND_SPL) + mpc83xx_gpio_init_r(); +#endif return 0; } |