diff options
author | Dario Binacchi <dariobin@libero.it> | 2020-12-30 00:06:29 +0100 |
---|---|---|
committer | Lokesh Vutla <lokeshvutla@ti.com> | 2021-01-12 10:58:04 +0530 |
commit | 92cc4e1c21e27b604665f080973837c3618297a3 (patch) | |
tree | 23b50cff8a2d19ba02b5a3eec551c3fc006f42e6 /arch | |
parent | 2f59d8f2e0dac8763fbee00ecd257cb8667b2df9 (diff) | |
download | u-boot-92cc4e1c21e27b604665f080973837c3618297a3.tar.gz |
bus: ti: add minimal sysc interconnect target driver
We can handle the sysc interconnect target module in a generic way for
many TI SoCs. Initially let's just enable domain clocks before the
children are probed.
The code is loosely based on the drivers/bus/ti-sysc.c of the Linux
kernel version 5.9-rc7.
For DT binding details see:
- Documentation/devicetree/bindings/bus/ti-sysc.txt
Signed-off-by: Dario Binacchi <dariobin@libero.it>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index fbe90875ae..6b5235e740 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -799,6 +799,7 @@ config ARCH_OMAP2PLUS select SPL_BOARD_INIT if SPL select SPL_STACK_R if SPL select SUPPORT_SPL + imply TI_SYSC if DM && OF_CONTROL imply FIT config ARCH_MESON |