All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH linux v1 0/8] drivers: fsi: interrupt polling, i2c client
@ 2017-02-02 23:25 eajames
  2017-02-02 23:25 ` [PATCH linux v1 4/8] drivers: fsi: Add i2c client driver eajames
                   ` (8 more replies)
  0 siblings, 9 replies; 16+ messages in thread
From: eajames @ 2017-02-02 23:25 UTC (permalink / raw)
  To: openbmc; +Cc: joel, alistair, benh, Edward A. James

From: "Edward A. James" <eajames@us.ibm.com>

First, this series add interrupt polling support to the FSI bus driver.
This implements a loop that constantly polls the FSI slave interrupt
status register and triggers any registered client interrupt handlers upon
detecting an interrupt.

Secondly, this series adds the I2C client driver for FSI bus. This driver
interacts with the IBM BOE engine on an FSI slave device.

Christopher Bostic (3):
  drivers/fsi: Add slave interrupt polling
  drivers/fsi: Add Client IRQ Enable / Disable
  drivers/fsi: Add sysfs file to adjust i-poll period

Edward A. James (5):
  drivers: fsi: Add i2c client driver
  drivers: fsi: i2c: Add engine access wrappers
  drivers: fsi: i2c: probe fsi device for i2c client
  drivers: fsi: i2c: add driver file operations and bus locking
  drivers: fsi: i2c: boe engine

 drivers/fsi/Kconfig           |    6 +
 drivers/fsi/Makefile          |    1 +
 drivers/fsi/fsi-core.c        |  170 +++
 drivers/fsi/fsi-master-gpio.c |    1 +
 drivers/fsi/fsi-master.h      |    2 +
 drivers/fsi/i2c/Makefile      |    1 +
 drivers/fsi/i2c/iic-boe.c     | 1597 +++++++++++++++++++++++++++++
 drivers/fsi/i2c/iic-boe.h     |  180 ++++
 drivers/fsi/i2c/iic-fsi.c     |  715 +++++++++++++
 drivers/fsi/i2c/iic-int.h     |  395 +++++++
 drivers/fsi/i2c/iic-lock.c    |  439 ++++++++
 drivers/fsi/i2c/iic-mstr.c    | 2281 +++++++++++++++++++++++++++++++++++++++++
 include/linux/fsi.h           |    5 +
 include/uapi/linux/Kbuild     |    1 +
 include/uapi/linux/i2cfsi.h   |  136 +++
 15 files changed, 5930 insertions(+)
 create mode 100644 drivers/fsi/i2c/Makefile
 create mode 100644 drivers/fsi/i2c/iic-boe.c
 create mode 100644 drivers/fsi/i2c/iic-boe.h
 create mode 100644 drivers/fsi/i2c/iic-fsi.c
 create mode 100644 drivers/fsi/i2c/iic-int.h
 create mode 100644 drivers/fsi/i2c/iic-lock.c
 create mode 100644 drivers/fsi/i2c/iic-mstr.c
 create mode 100644 include/uapi/linux/i2cfsi.h

-- 
1.8.3.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2017-02-03 20:34 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-02 23:25 [PATCH linux v1 0/8] drivers: fsi: interrupt polling, i2c client eajames
2017-02-02 23:25 ` [PATCH linux v1 4/8] drivers: fsi: Add i2c client driver eajames
2017-02-03  0:56   ` Alistair Popple
2017-02-03  0:58     ` Joel Stanley
2017-02-02 23:25 ` [PATCH linux v1 5/8] drivers: fsi: i2c: Add engine access wrappers eajames
2017-02-02 23:25 ` [PATCH linux v1 6/8] drivers: fsi: i2c: probe fsi device for i2c client eajames
2017-02-02 23:26 ` [PATCH linux v1 7/8] drivers: fsi: i2c: add driver file operations and bus locking eajames
2017-02-02 23:26 ` [PATCH linux v1 8/8] drivers: fsi: i2c: boe engine eajames
2017-02-02 23:26 ` [PATCH v2 1/3] drivers/fsi: Add slave interrupt polling eajames
2017-02-03  1:11   ` Alistair Popple
2017-02-03 16:18     ` eajames
2017-02-03 20:33       ` Benjamin Herrenschmidt
2017-02-02 23:26 ` [PATCH v2 2/3] drivers/fsi: Add Client IRQ Enable / Disable eajames
2017-02-02 23:26 ` [PATCH v2 3/3] drivers/fsi: Add sysfs file to adjust i-poll period eajames
2017-02-03  0:55 ` [PATCH linux v1 0/8] drivers: fsi: interrupt polling, i2c client Joel Stanley
2017-02-03 16:36   ` eajames

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.