Skip to content

Commit 26780d9

Browse files
bgroveJames Bottomley
authored andcommitted
[SCSI] esas2r: ATTO Technology ExpressSAS 6G SAS/SATA RAID Adapter Driver
This is a new driver for ATTO Technology's ExpressSAS series of hardware RAID adapters. It supports the following adapters: - ExpressSAS R60F - ExpressSAS R680 - ExpressSAS R608 - ExpressSAS R644 Signed-off-by: Bradley Grove <bgrove@attotech.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
1 parent 127be35 commit 26780d9

19 files changed

+15669
-0
lines changed

MAINTAINERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1547,6 +1547,13 @@ W: http://atmelwlandriver.sourceforge.net/
15471547
S: Maintained
15481548
F: drivers/net/wireless/atmel*
15491549

1550+
ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1551+
M: Bradley Grove <linuxdrivers@attotech.com>
1552+
L: linux-scsi@vger.kernel.org
1553+
W: http://www.attotech.com
1554+
S: Supported
1555+
F: drivers/scsi/esas2r
1556+
15501557
AUDIT SUBSYSTEM
15511558
M: Al Viro <viro@zeniv.linux.org.uk>
15521559
M: Eric Paris <eparis@redhat.com>

drivers/scsi/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -601,6 +601,7 @@ config SCSI_ARCMSR
601601
To compile this driver as a module, choose M here: the
602602
module will be called arcmsr (modprobe arcmsr).
603603

604+
source "drivers/scsi/esas2r/Kconfig"
604605
source "drivers/scsi/megaraid/Kconfig.megaraid"
605606
source "drivers/scsi/mpt2sas/Kconfig"
606607
source "drivers/scsi/mpt3sas/Kconfig"

drivers/scsi/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ obj-$(CONFIG_SCSI_CXGB3_ISCSI) += libiscsi.o libiscsi_tcp.o cxgbi/
141141
obj-$(CONFIG_SCSI_CXGB4_ISCSI) += libiscsi.o libiscsi_tcp.o cxgbi/
142142
obj-$(CONFIG_SCSI_BNX2_ISCSI) += libiscsi.o bnx2i/
143143
obj-$(CONFIG_BE2ISCSI) += libiscsi.o be2iscsi/
144+
obj-$(CONFIG_SCSI_ESAS2R) += esas2r/
144145
obj-$(CONFIG_SCSI_PMCRAID) += pmcraid.o
145146
obj-$(CONFIG_SCSI_VIRTIO) += virtio_scsi.o
146147
obj-$(CONFIG_VMWARE_PVSCSI) += vmw_pvscsi.o

drivers/scsi/esas2r/Kconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
config SCSI_ESAS2R
2+
tristate "ATTO Technology's ExpressSAS RAID adapter driver"
3+
depends on PCI && SCSI
4+
---help---
5+
This driver supports the ATTO ExpressSAS R6xx SAS/SATA RAID controllers.

drivers/scsi/esas2r/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
obj-$(CONFIG_SCSI_ESAS2R) += esas2r.o
2+
3+
esas2r-objs := esas2r_log.o esas2r_disc.o esas2r_flash.o esas2r_init.o \
4+
esas2r_int.o esas2r_io.o esas2r_ioctl.o esas2r_targdb.o \
5+
esas2r_vda.o esas2r_main.o

0 commit comments

Comments
 (0)