mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-02-15 20:39:10 +01:00
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>
This commit is contained in:
parent
843a7ee8c4
commit
9cd7b4cdca
1 changed files with 6 additions and 0 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue