mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 04:06:26 +00:00
592693a1f8
Reword the kconfig text to be consistent and reflect that most drivers are available for all supported ASPEED chips (2400, 2500 and 2600). Rearrange the symbols the SoC drivers depend on so the menu doesn't appear unless you are building for ASPEED for compile testing. The SYSCON_MFD and REGMAP options are usually selected by drivers that need them, so do this. Reviewed-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: Andrew Jeffery <andrew@aj.id.au> Link: https://lore.kernel.org/r/20200916125731.784527-1-joel@jms.id.au Signed-off-by: Joel Stanley <joel@jms.id.au>
37 lines
954 B
Plaintext
37 lines
954 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
if ARCH_ASPEED || COMPILE_TEST
|
|
|
|
menu "ASPEED SoC drivers"
|
|
|
|
config ASPEED_LPC_CTRL
|
|
tristate "ASPEED LPC firmware cycle control"
|
|
select REGMAP
|
|
select MFD_SYSCON
|
|
help
|
|
Control LPC firmware cycle mappings through ioctl()s. The driver
|
|
also provides a read/write interface to a BMC ram region where the
|
|
host LPC read/write region can be buffered.
|
|
|
|
config ASPEED_LPC_SNOOP
|
|
tristate "ASPEED LPC snoop support"
|
|
select REGMAP
|
|
select MFD_SYSCON
|
|
help
|
|
Provides a driver to control the LPC snoop interface which
|
|
allows the BMC to listen on and save the data written by
|
|
the host to an arbitrary LPC I/O port.
|
|
|
|
config ASPEED_P2A_CTRL
|
|
tristate "ASPEED P2A (VGA MMIO to BMC) bridge control"
|
|
select REGMAP
|
|
select MFD_SYSCON
|
|
help
|
|
Control ASPEED P2A VGA MMIO to BMC mappings through ioctl()s. The
|
|
driver also provides an interface for userspace mappings to a
|
|
pre-defined region.
|
|
|
|
endmenu
|
|
|
|
endif
|