diff options
author | Christopher Bostic <cbostic@linux.vnet.ibm.com> | 2017-06-06 16:08:54 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-06-09 11:52:09 +0200 |
commit | ac0385d9f609e836e82213c75a24ae87f8fe1c9f (patch) | |
tree | dde8a19e9fc897b063a5845f25a1060858be6771 /drivers/fsi/Makefile | |
parent | a7ec9371dd11f0bc705a703fa0e5c1c11339f1a6 (diff) |
drivers/fsi: Add GPIO based FSI master
Implement a FSI master using GPIO. Will generate FSI protocol for
read and write commands to particular addresses. Sends master command
and waits for and decodes a slave response.
Includes changes from Edward A. James <eajames@us.ibm.com> and Jeremy
Kerr <jk@ozlabs.org>.
Signed-off-by: Edward A. James <eajames@us.ibm.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Christopher Bostic <cbostic@linux.vnet.ibm.com>
Signed-off-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/fsi/Makefile')
-rw-r--r-- | drivers/fsi/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/fsi/Makefile b/drivers/fsi/Makefile index db0e5e7c1655..ed28ac016de6 100644 --- a/drivers/fsi/Makefile +++ b/drivers/fsi/Makefile @@ -1,2 +1,3 @@ obj-$(CONFIG_FSI) += fsi-core.o +obj-$(CONFIG_FSI_MASTER_GPIO) += fsi-master-gpio.o |