Files
rockchip-kernel/drivers/reset/Kconfig
XiaoDong Huang 2d272f4958 firmware: add arm_scmi support
Port from 82957dba39
in branch origin/develop-4.19.

copy follow files from origin/develop-4.19:
drivers/firmware/arm_scmi/*
drivers/clk/clk-scmi.c
include/trace/events/scmi.h
include/linux/scmi_protocol.h
drivers/reset/reset-scmi.c
drivers/hwmon/scmi-hwmon.c
drivers/cpufreq/scmi-cpufreq.c

Change-Id: I05bcd178503708f3d3aeb772e56287d1eb26e699
Signed-off-by: XiaoDong Huang <derrick.huang@rock-chips.com>
2022-01-18 14:41:25 +08:00

27 lines
763 B
Plaintext

config ARCH_HAS_RESET_CONTROLLER
bool
menuconfig RESET_CONTROLLER
bool "Reset Controller Support"
default y if ARCH_HAS_RESET_CONTROLLER
help
Generic Reset Controller support.
This framework is designed to abstract reset handling of devices
via GPIOs or SoC-internal reset controller modules.
If unsure, say no.
config RESET_SCMI
tristate "Reset driver controlled via ARM SCMI interface"
depends on ARM_SCMI_PROTOCOL || COMPILE_TEST
default ARM_SCMI_PROTOCOL
help
This driver provides support for reset signal/domains that are
controlled by firmware that implements the SCMI interface.
This driver uses SCMI Message Protocol to interact with the
firmware controlling all the reset signals.
source "drivers/reset/sti/Kconfig"