diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-10-23 01:56:40 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-30 15:28:44 -0700 |
commit | 9cd7b4cdca2500608b218fb4de215eddd8e66111 (patch) | |
tree | cd71bf9f9c987da782e22f53fa02172034eb10bd /board/ti | |
parent | 843a7ee8c4b1e47fae41268d6b95306f7e6408f5 (diff) | |
download | u-boot-imx-9cd7b4cdca2500608b218fb4de215eddd8e66111.zip u-boot-imx-9cd7b4cdca2500608b218fb4de215eddd8e66111.tar.gz u-boot-imx-9cd7b4cdca2500608b218fb4de215eddd8e66111.tar.bz2 |
am335x: add mux config for DDR3 version of beaglebone
This fixes the following boothang in SPL:
Unknown board, cannot configure pinmux.### ERROR ### Please RESET the board ###
Future commits will add pinmuxes for more on-board peripherals.
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'board/ti')
-rw-r--r-- | board/ti/am335x/mux.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/board/ti/am335x/mux.c b/board/ti/am335x/mux.c index 6a5f23a..acb8ff3 100644 --- a/board/ti/am335x/mux.c +++ b/board/ti/am335x/mux.c @@ -256,6 +256,12 @@ void enable_board_pin_mux(struct am335x_baseboard_id *header) configure_module_pin_mux(gpio0_7_pin_mux); configure_module_pin_mux(rgmii1_pin_mux); configure_module_pin_mux(mmc0_pin_mux_sk_evm); + } else if (!strncmp(header->name, "A335BNLT", HDR_NAME_LEN)) { + /* Beaglebone LT pinmux */ + configure_module_pin_mux(i2c1_pin_mux); + configure_module_pin_mux(mii1_pin_mux); + configure_module_pin_mux(mmc0_pin_mux); + configure_module_pin_mux(mmc1_pin_mux); } else { puts("Unknown board, cannot configure pinmux."); hang(); |