mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-08 14:13:53 +00:00
61c9f03e22
i.MX95 System Manager(SM) firmware includes a SCMI vendor protocol, SCMI MISC protocol which includes controls that are misc settings/actions that must be exposed from the SM to agents. They are device specific and are usually define to access bit fields in various mix block control modules, IOMUX_GPR, and other General Purpose registers, Control Status Registers owned by the SM. Reviewed-by: Cristian Marussi <cristian.marussi@arm.com> Signed-off-by: Peng Fan <peng.fan@nxp.com> Message-Id: <20240823-imx95-bbm-misc-v2-v8-3-e600ed9e9271@nxp.com> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
26 lines
732 B
Plaintext
26 lines
732 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
menu "ARM SCMI NXP i.MX Vendor Protocols"
|
|
|
|
config IMX_SCMI_BBM_EXT
|
|
tristate "i.MX SCMI BBM EXTENSION"
|
|
depends on ARM_SCMI_PROTOCOL || (COMPILE_TEST && OF)
|
|
default y if ARCH_MXC
|
|
help
|
|
This enables i.MX System BBM control logic which supports RTC
|
|
and BUTTON.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called imx-sm-bbm.
|
|
|
|
config IMX_SCMI_MISC_EXT
|
|
tristate "i.MX SCMI MISC EXTENSION"
|
|
depends on ARM_SCMI_PROTOCOL || (COMPILE_TEST && OF)
|
|
default y if ARCH_MXC
|
|
help
|
|
This enables i.MX System MISC control logic such as gpio expander
|
|
wakeup
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called imx-sm-misc.
|
|
endmenu
|