1# SPDX-License-Identifier: GPL-2.0-only 2 3menu "Reset support for SpacemiT platforms" 4 depends on ARCH_SPACEMIT || COMPILE_TEST 5 6config RESET_SPACEMIT_COMMON 7 tristate 8 select AUXILIARY_BUS 9 help 10 Common reset controller infrastructure for SpacemiT SoCs. 11 This provides shared code and helper functions used by 12 reset drivers for various SpacemiT SoC families. 13 14config RESET_SPACEMIT_K1 15 tristate "Support for SpacemiT K1 SoC" 16 depends on SPACEMIT_K1_CCU 17 select RESET_SPACEMIT_COMMON 18 default SPACEMIT_K1_CCU 19 help 20 Support for reset controller in SpacemiT K1 SoC. 21 This driver works with the SpacemiT K1 clock controller 22 unit (CCU) driver to provide reset control functionality 23 for various peripherals and subsystems in the SoC. 24 25config RESET_SPACEMIT_K3 26 tristate "Support for SpacemiT K3 SoC" 27 depends on SPACEMIT_K3_CCU 28 select RESET_SPACEMIT_COMMON 29 default SPACEMIT_K3_CCU 30 help 31 Support for reset controller in SpacemiT K3 SoC. 32 This driver works with the SpacemiT K3 clock controller 33 unit (CCU) driver to provide reset control functionality 34 for various peripherals and subsystems in the SoC. 35 36endmenu 37