-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scsi: leapioraid: supports LEAPIO RAID controller
This commit is to support LeapIO LEAPIO RAID controllers. RAID controllers support RAID 0/1/5/6/10/50/60 modes; RAID support SAS/SATA HDD/SSD. Signed-off-by: haodongdong <[email protected]>
- Loading branch information
haodongdong
committed
Dec 12, 2024
1 parent
e72884f
commit c91a704
Showing
13 changed files
with
24,360 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# | ||
# Kernel configuration file for the LEAPIORAID | ||
# | ||
|
||
config SCSI_LEAPIORAID | ||
tristate "LeapIO RAID Adapter" | ||
depends on PCI && SCSI | ||
select SCSI_SAS_ATTRS | ||
select RAID_ATTRS | ||
select IRQ_POLL | ||
help | ||
This driver supports LEAPIO RAID controller, which supports PCI Express Gen4 interface | ||
and supports SAS/SATA HDD/SSD. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# | ||
# Makefile for the LEAPIORAID drivers. | ||
# | ||
|
||
obj-$(CONFIG_SCSI_LEAPIORAID) += leapioraid.o | ||
leapioraid-objs += leapioraid_func.o \ | ||
leapioraid_os.o \ | ||
leapioraid_transport.o \ | ||
leapioraid_app.o |
Oops, something went wrong.