From mboxrd@z Thu Jan 1 00:00:00 1970 From: rdunlap@infradead.org (Randy Dunlap) Date: Wed, 5 Apr 2017 09:35:56 -0700 Subject: [PATCH v5 21/23] drivers/fsi: Add SCOM FSI client device driver In-Reply-To: <20170405020607.79939-22-cbostic@linux.vnet.ibm.com> References: <20170405020607.79939-1-cbostic@linux.vnet.ibm.com> <20170405020607.79939-22-cbostic@linux.vnet.ibm.com> Message-ID: To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 04/04/17 19:06, Christopher Bostic wrote: > From: Chris Bostic > > Create a simple SCOM engine device driver that reads and writes > its control registers via an FSI bus. > > Includes changes from Edward A. James . > > Signed-off-by: Chris Bostic > Signed-off-by: Joel Stanley > Signed-off-by: Edward A. James > Signed-off-by: Jeremy Kerr > --- > drivers/fsi/Kconfig | 6 ++ > drivers/fsi/Makefile | 1 + > drivers/fsi/fsi-scom.c | 263 +++++++++++++++++++++++++++++++++++++++++++++++++ > 3 files changed, 270 insertions(+) > create mode 100644 drivers/fsi/fsi-scom.c > > diff --git a/drivers/fsi/Kconfig b/drivers/fsi/Kconfig > index 9cf8345..0fa265c 100644 > --- a/drivers/fsi/Kconfig > +++ b/drivers/fsi/Kconfig > @@ -18,6 +18,12 @@ config FSI_MASTER_GPIO > ---help--- > This option enables a FSI master driver using GPIO lines. > > +config FSI_SCOM > + tristate "SCOM FSI client device driver" > + depends on FSI depends on FSI is redundant. > + ---help--- > + This option enables an FSI based SCOM device driver. > + > endif > -- ~Randy