xref: /linux/drivers/reset/spacemit/Kconfig (revision aba86f7bff0bfd6956aff9bbbfb0c6ea6d56809e)
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
25endmenu
26