From: Eddie James <eajames@linux.ibm.com>
To: joel@jms.id.au
Cc: broonie@kernel.org, jk@ozlabs.org, alistair@popple.id.au,
linux-kernel@vger.kernel.org, linux-fsi@lists.ozlabs.org,
eajames@linux.ibm.com
Subject: [PATCH 0/5] fsi: Add regmap and refactor sbefifo
Date: Fri, 14 Oct 2022 17:05:35 -0500 [thread overview]
Message-ID: <20221014220540.55570-1-eajames@linux.ibm.com> (raw)
The SBEFIFO hardware can now be attached over a new I2C endpoint
interface called the I2C Responder (I2CR). In order to use the
existing SBEFIFO driver, add regmap drivers for both FSI busses
and the I2CR. Then, refactor the SBEFIFO and OCC drivers to clean
up and use the new regmap drivers.
Eddie James (5):
regmap: Add FSI bus support
regmap: Add IBM I2CR support
drivers: fsi: Rename sbefifo and occ sources
drivers: fsi: separate char device code for occ and sbefifo
drivers: fsi: occ and sbefifo refactor
drivers/base/regmap/Kconfig | 10 +-
drivers/base/regmap/Makefile | 2 +
drivers/base/regmap/regmap-fsi.c | 231 +++++
drivers/base/regmap/regmap-ibm-i2cr.c | 159 ++++
drivers/fsi/Kconfig | 23 +-
drivers/fsi/Makefile | 8 +-
drivers/fsi/fsi-occ.c | 766 -----------------
drivers/fsi/fsi-sbefifo.c | 1144 -------------------------
drivers/fsi/occ-cdev.c | 157 ++++
drivers/fsi/occ.c | 534 ++++++++++++
drivers/fsi/occ.h | 75 ++
drivers/fsi/sbefifo-cdev.c | 218 +++++
drivers/fsi/sbefifo-fsi.c | 68 ++
drivers/fsi/sbefifo-i2c.c | 72 ++
drivers/fsi/sbefifo.c | 797 +++++++++++++++++
drivers/fsi/sbefifo.h | 50 ++
include/linux/regmap.h | 72 ++
17 files changed, 2468 insertions(+), 1918 deletions(-)
create mode 100644 drivers/base/regmap/regmap-fsi.c
create mode 100644 drivers/base/regmap/regmap-ibm-i2cr.c
delete mode 100644 drivers/fsi/fsi-occ.c
delete mode 100644 drivers/fsi/fsi-sbefifo.c
create mode 100644 drivers/fsi/occ-cdev.c
create mode 100644 drivers/fsi/occ.c
create mode 100644 drivers/fsi/occ.h
create mode 100644 drivers/fsi/sbefifo-cdev.c
create mode 100644 drivers/fsi/sbefifo-fsi.c
create mode 100644 drivers/fsi/sbefifo-i2c.c
create mode 100644 drivers/fsi/sbefifo.c
create mode 100644 drivers/fsi/sbefifo.h
--
2.31.1
next reply other threads:[~2022-10-14 22:06 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-14 22:05 Eddie James [this message]
2022-10-14 22:05 ` [PATCH 1/5] regmap: Add FSI bus support Eddie James
2022-10-14 22:05 ` [PATCH 2/5] regmap: Add IBM I2CR support Eddie James
2022-10-14 22:05 ` [PATCH 3/5] drivers: fsi: Rename sbefifo and occ sources Eddie James
2022-10-14 22:05 ` [PATCH 4/5] drivers: fsi: separate char device code for occ and sbefifo Eddie James
2022-10-17 20:53 ` kernel test robot
2022-10-14 22:05 ` [PATCH 5/5] drivers: fsi: occ and sbefifo refactor Eddie James
2022-10-17 22:34 ` kernel test robot
2022-10-17 23:35 ` kernel test robot
2022-10-18 13:14 ` kernel test robot
2022-10-17 17:37 ` [PATCH 0/5] fsi: Add regmap and refactor sbefifo Mark Brown
2022-10-18 14:02 ` Eddie James
2022-10-18 18:00 ` Mark Brown
2022-10-18 22:03 ` Andrew Jeffery
2022-10-19 18:59 ` Eddie James
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221014220540.55570-1-eajames@linux.ibm.com \
--to=eajames@linux.ibm.com \
--cc=alistair@popple.id.au \
--cc=broonie@kernel.org \
--cc=jk@ozlabs.org \
--cc=joel@jms.id.au \
--cc=linux-fsi@lists.ozlabs.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox