mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
606397d67f
The ast2600 BMC has a pair of FSI masters in it, behind an AHB to OPB bridge. The master driver supports reads and writes of full words, half word and byte accesses to remote CFAMs. It can perform very basic error recovery through resetting of the FSI port when an error is detected, and the issuing of breaks and terms. Signed-off-by: Joel Stanley <joel@jms.id.au> Acked-by: Alistair Popple <alistair@popple.id.au> -- v2: - remove debugging - squash in fixes Link: https://lore.kernel.org/r/20191108051945.7109-10-joel@jms.id.au Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10 lines
398 B
Makefile
10 lines
398 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_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
|