mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
c0b34bed0b
The I2CR has the capability to directly perform SCOM operations, circumventing the need to drive the FSI2PIB engine. Add a new driver to perform SCOM operations through the I2CR. Signed-off-by: Eddie James <eajames@linux.ibm.com> Link: https://lore.kernel.org/r/20230612195657.245125-15-eajames@linux.ibm.com Signed-off-by: Joel Stanley <joel@jms.id.au>
13 lines
488 B
Makefile
13 lines
488 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
obj-$(CONFIG_FSI) += fsi-core.o
|
|
obj-$(CONFIG_FSI_MASTER_HUB) += fsi-master-hub.o
|
|
obj-$(CONFIG_FSI_MASTER_ASPEED) += fsi-master-aspeed.o
|
|
obj-$(CONFIG_FSI_MASTER_GPIO) += fsi-master-gpio.o
|
|
obj-$(CONFIG_FSI_MASTER_I2CR) += fsi-master-i2cr.o
|
|
obj-$(CONFIG_FSI_MASTER_AST_CF) += fsi-master-ast-cf.o
|
|
obj-$(CONFIG_FSI_SCOM) += fsi-scom.o
|
|
obj-$(CONFIG_FSI_SBEFIFO) += fsi-sbefifo.o
|
|
obj-$(CONFIG_FSI_OCC) += fsi-occ.o
|
|
obj-$(CONFIG_I2CR_SCOM) += i2cr-scom.o
|