| From: |
| Dongdong Hao <doubled-AT-leap-io-kernel.com> |
| To: |
| James.Bottomley-AT-HansenPartnership.com, martin.petersen-AT-oracle.com |
| Subject: |
| [PATCH v2 0/2] scsi: Add LeapRAID driver support |
| Date: |
| Tue, 02 Jun 2026 15:10:16 +0800 |
| Message-ID: |
| <cover.1780383814.git.doubled@leap-io-kernel.com> |
| Cc: |
| doubled-AT-leap-io-kernel.com, yjzhang-AT-leap-io-kernel.com, kezijie-AT-leap-io-kernel.com, linux-scsi-AT-vger.kernel.org |
| Archive-link: |
| Article |
Hi,
This series adds initial upstream support for the LeapIO LeapRAID PCIe
SAS/SATA RAID controller driver.
Patch 1 adds the new leapraid SCSI driver under drivers/scsi/leapraid/,
hooks it into the SCSI build system, and adds a MAINTAINERS entry.
Patch 2 adds the driver documentation under Documentation/scsi/.
Changes in v2:
- resend the series with corrected threading
- no code changes since v1
The earlier resend accidentally reused old threading information, which
caused the series to appear incorrectly in the public archive.
Thanks,
Dongdong Hao
Dongdong Hao (2):
scsi: leapraid: Add new SCSI driver
scsi: leapraid: Add driver documentation
Documentation/scsi/index.rst | 1 +
Documentation/scsi/leapraid.rst | 139 +
MAINTAINERS | 7 +
drivers/scsi/Kconfig | 1 +
drivers/scsi/Makefile | 1 +
drivers/scsi/leapraid/Kconfig | 14 +
drivers/scsi/leapraid/Makefile | 10 +
drivers/scsi/leapraid/leapraid.h | 2071 +++++
drivers/scsi/leapraid/leapraid_app.c | 705 ++
drivers/scsi/leapraid/leapraid_func.c | 9053 ++++++++++++++++++++
drivers/scsi/leapraid/leapraid_func.h | 1566 ++++
drivers/scsi/leapraid/leapraid_os.c | 2516 ++++++
drivers/scsi/leapraid/leapraid_transport.c | 1387 +++
13 files changed, 17471 insertions(+)
create mode 100644 Documentation/scsi/leapraid.rst
create mode 100644 drivers/scsi/leapraid/Kconfig
create mode 100644 drivers/scsi/leapraid/Makefile
create mode 100644 drivers/scsi/leapraid/leapraid.h
create mode 100644 drivers/scsi/leapraid/leapraid_app.c
create mode 100644 drivers/scsi/leapraid/leapraid_func.c
create mode 100644 drivers/scsi/leapraid/leapraid_func.h
create mode 100644 drivers/scsi/leapraid/leapraid_os.c
create mode 100644 drivers/scsi/leapraid/leapraid_transport.c
--
2.25.1