Skip to content
Snippets Groups Projects
Commit b6ab5504 authored by Tom Rini's avatar Tom Rini
Browse files

am335x_boneblack: Only modify NAND/NOR/MMC1 pinmux on BBB in boneblack builds.


In the case of Beaglebone Black we only want to set the NAND or NOR cape
pinmux when the config has been specifically modified by the user for
this non-default case.  Make the default be to set the MMC1 (eMMC)
pinmux.  We don't need similar changes for Beaglebone White as there is
nothing on MMC1 by default there.

Signed-off-by: default avatarTom Rini <trini@ti.com>
parent 76bfd162
No related branches found
No related tags found
No related merge requests found
...@@ -359,9 +359,9 @@ void enable_board_pin_mux(struct am335x_baseboard_id *header) ...@@ -359,9 +359,9 @@ void enable_board_pin_mux(struct am335x_baseboard_id *header)
configure_module_pin_mux(i2c1_pin_mux); configure_module_pin_mux(i2c1_pin_mux);
configure_module_pin_mux(mii1_pin_mux); configure_module_pin_mux(mii1_pin_mux);
configure_module_pin_mux(mmc0_pin_mux); configure_module_pin_mux(mmc0_pin_mux);
#if defined(CONFIG_NAND) #if defined(CONFIG_NAND) && defined(CONFIG_EMMC_BOOT)
configure_module_pin_mux(nand_pin_mux); configure_module_pin_mux(nand_pin_mux);
#elif defined(CONFIG_NOR) #elif defined(CONFIG_NOR) && defined(CONFIG_EMMC_BOOT)
configure_module_pin_mux(bone_norcape_pin_mux); configure_module_pin_mux(bone_norcape_pin_mux);
#else #else
configure_module_pin_mux(mmc1_pin_mux); configure_module_pin_mux(mmc1_pin_mux);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment