diff options
author | Amjad Ouled-Ameur <aouledameur@baylibre.com> | 2021-10-11 14:27:38 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-10-19 11:25:24 -0400 |
commit | 1860bdca6a0198c23227588a817bd3b65754bf00 (patch) | |
tree | f6b458f4410abcaabb9571ebc83bef723ad121a1 /configs | |
parent | bba76a17bd11b5700c2aeb4e7178ac8ac016849c (diff) | |
download | u-boot-1860bdca6a0198c23227588a817bd3b65754bf00.zip u-boot-1860bdca6a0198c23227588a817bd3b65754bf00.tar.gz u-boot-1860bdca6a0198c23227588a817bd3b65754bf00.tar.bz2 |
configs: am335x_evm: enable CONFIG_CLK_TI_CTRL
This enables the clock controller driver support on TI's SoCs. This will
fix this GPIO issue at boot time:
request_and_set_gpio: Unable to request GPIO_PR1_MII_CTRL
request_and_set_gpio: Unable to request GPIO_MUX_MII_CTRL
request_and_set_gpio: Unable to request GPIO_FET_SWITCH_CTRL
request_and_set_gpio: Unable to request GPIO_PHY_RESET
This issue comes from the fact that the clock controller is not probed.
Enable the TI's clock controller driver support to solve this.
Signed-off-by: Amjad Ouled-Ameur <aouledameur@baylibre.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/am335x_evm_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/am335x_evm_defconfig b/configs/am335x_evm_defconfig index 0f938e7..4dc5d0f 100644 --- a/configs/am335x_evm_defconfig +++ b/configs/am335x_evm_defconfig @@ -48,6 +48,7 @@ CONFIG_BOOTP_SEND_HOSTNAME=y CONFIG_BOOTCOUNT_LIMIT=y CONFIG_CLK=y CONFIG_CLK_CDCE9XX=y +CONFIG_CLK_TI_CTRL=y CONFIG_DFU_TFTP=y CONFIG_DFU_MMC=y CONFIG_DFU_NAND=y |