mbox series

[V7,0/3] Add support control UP board CPLD/FPGA pin control

Message ID 20231031015119.29756-1-larry.lai@yunjingtech.com
Headers show
Series Add support control UP board CPLD/FPGA pin control | expand

Message

larry.lai Oct. 31, 2023, 1:51 a.m. UTC
The UP board <https://up-board.org/> is the computer board for 
Professional Makers and Industrial Applications. We want to upstream 
the UP board 40-pin GP-bus Kernel driver for giving the users better 
experience on the software release. (not just download from UP board 
github)

These patches are generated from the Linux kernel mainline tag v6.0.

This is the PATCH V7 and fixed kernel test robot compiler warning and 
addressed Lee Jones review comments.

larry.lai (3):
  mfd: Add support for UP board CPLD/FPGA
  pinctrl: Add support pin control for UP board CPLD/FPGA
  leds: Add support for UP board CPLD onboard LEDS

 drivers/leds/Kconfig              |   10 +
 drivers/leds/Makefile             |    1 +
 drivers/leds/leds-upboard.c       |  154 ++++
 drivers/mfd/Kconfig               |   12 +
 drivers/mfd/Makefile              |    1 +
 drivers/mfd/upboard-fpga.c        |  404 +++++++++
 drivers/pinctrl/Kconfig           |   14 +
 drivers/pinctrl/Makefile          |    1 +
 drivers/pinctrl/pinctrl-upboard.c | 1390 +++++++++++++++++++++++++++++
 include/linux/mfd/upboard-fpga.h  |   62 ++
 10 files changed, 2049 insertions(+)
 create mode 100644 drivers/leds/leds-upboard.c
 create mode 100644 drivers/mfd/upboard-fpga.c
 create mode 100644 drivers/pinctrl/pinctrl-upboard.c
 create mode 100644 include/linux/mfd/upboard-fpga.h


base-commit: 4fe89d07dcc2804c8b562f6c7896a45643d34b2f

Comments

Andy Shevchenko Nov. 14, 2023, 2:20 p.m. UTC | #1
On Tue, Oct 31, 2023 at 09:51:16AM +0800, larry.lai wrote:
> The UP board <https://up-board.org/> is the computer board for 
> Professional Makers and Industrial Applications. We want to upstream 
> the UP board 40-pin GP-bus Kernel driver for giving the users better 
> experience on the software release. (not just download from UP board 
> github)
> 
> These patches are generated from the Linux kernel mainline tag v6.0.
> 
> This is the PATCH V7 and fixed kernel test robot compiler warning and 
> addressed Lee Jones review comments.

(You have trailing white spaces in the above multi-line paragraphs.)

Sorry for the delay, but this series needs much more work before being
considered for the inclusion. I just finished commenting each patch
individually.