summaryrefslogtreecommitdiff
path: root/drivers/fsi/Makefile
diff options
context:
space:
mode:
authorJoel Stanley <joel@jms.id.au>2019-11-08 08:19:43 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-11-08 13:28:20 +0300
commit606397d67f4184a40732537be72e7e8658c26717 (patch)
treec6fabe7c046e4095078a9dd64336a3393fba203c /drivers/fsi/Makefile
parentcccaa160c37639ea7d71c59a56a276264110ed62 (diff)
downloadlinux-606397d67f4184a40732537be72e7e8658c26717.tar.xz
fsi: Add ast2600 master driver
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>
Diffstat (limited to 'drivers/fsi/Makefile')
-rw-r--r--drivers/fsi/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/fsi/Makefile b/drivers/fsi/Makefile
index e4a2ff043c32..da218a1ad8e1 100644
--- a/drivers/fsi/Makefile
+++ b/drivers/fsi/Makefile
@@ -2,6 +2,7 @@
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