diff options
author | Tom Rini | 2017-07-07 15:21:45 -0400 |
---|---|---|
committer | Tom Rini | 2017-07-11 22:41:56 -0400 |
commit | ab86dc7948778cb087fa8cf9949bd53441097cf8 (patch) | |
tree | ef51edf5fa28d8cdeaa1a4f1e560b9047d98a094 /configs | |
parent | 39b4f6bce332dc1ebd9c2b94910a1d58e1628f13 (diff) |
ARM: ti816x: Fix enabling GPIO0, enable GPIO1 as well
The TI816x has 2 GPIO banks. For bank 0 we had been clearing the enable
bit when setting BIT(8). Correct this by setting it to BIT(1) | BIT(8)
after we set and wait for BIT(1) (aka PRCM_MOD_EN). Enable GPIO1 as
well so that when CMD_GPIO is enabled it won't crash probing the second
bank. Enable CMD_GPIO on ti816x_evm.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/ti816x_evm_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/ti816x_evm_defconfig b/configs/ti816x_evm_defconfig index 7f43ecb7ebc..2ae72b2f77d 100644 --- a/configs/ti816x_evm_defconfig +++ b/configs/ti816x_evm_defconfig @@ -27,6 +27,7 @@ CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x300 CONFIG_CMD_MMC=y CONFIG_CMD_I2C=y # CONFIG_CMD_FPGA is not set +CONFIG_CMD_GPIO=y # CONFIG_CMD_SETEXPR is not set CONFIG_CMD_EXT4_WRITE=y # CONFIG_ISO_PARTITION is not set |