public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/10] [RFC] SCSI: esas2r: ATTO Technology ExpressSAS 6G SAS/SATA RAID Adapter Driver
@ 2013-08-02 16:59 Bradley Grove
  2013-08-02 16:59 ` [PATCH v3 01/10] [RFC] SCSI: esas2r: Add main header file Bradley Grove
                   ` (9 more replies)
  0 siblings, 10 replies; 12+ messages in thread
From: Bradley Grove @ 2013-08-02 16:59 UTC (permalink / raw)
  To: linux-scsi; +Cc: jbottomley, jseba, Bradley Grove


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

This patch is split into ten parts, all of which need to be applied to build 
the driver.

Changes since V2:

- Fix spurious ioctl error logging and memory corruption occuring with
non-IO VDA requests
- Use kernel's schedule_timeout_interruptable() rather than our own own 
stall function
- Removed a UDP socket based interface used by our closed source configuration 
tool

Changes since V1:

- We now use the kernel's list structs and alignment macros rather than our own 
implementations
- Fix to PCIe address size declaration when compiling on 32-bit architectures
- Use memcpy() instead opf memmove() where appropriate
- Fixes for big-endian architectures
- Removed unneeded MSI configuration code
- Simplified memory allocation during init
- Code formatting cleanup

Bradley Grove (10):
  [RFC] SCSI: esas2r: Add main header file
  [RFC] SCSI: esas2r: Add main file
  [RFC] SCSI: esas2r: Add initialization functions
  [RFC] SCSI: esas2r: Add device discovery and logging functions
  [RFC] SCSI: esas2r: Add interrupt and IO functions
  [RFC] SCSI: esas2r: Add flash and target database functions
  [RFC] SCSI: esas2r: Add IOCTL header file
  [RFC] SCSI: esas2r: Add IOCTL functions
  [RFC] SCSI: esas2r: Add ATTO VDA Firmware API headers and functions. 
    This API is used to control and manage the RAID adapter.
  [RFC] SCSI: esas2r: Add Makefile, Kconfig, and MAINTAINERS files

 MAINTAINERS                         |    7 +
 drivers/scsi/Kconfig                |    1 +
 drivers/scsi/Makefile               |    1 +
 drivers/scsi/esas2r/Kconfig         |    6 +
 drivers/scsi/esas2r/Makefile        |    5 +
 drivers/scsi/esas2r/atioctl.h       | 1254 +++++++++++++++++++++
 drivers/scsi/esas2r/atvda.h         | 1320 ++++++++++++++++++++++
 drivers/scsi/esas2r/esas2r.h        | 1441 ++++++++++++++++++++++++
 drivers/scsi/esas2r/esas2r_disc.c   | 1190 ++++++++++++++++++++
 drivers/scsi/esas2r/esas2r_flash.c  | 1514 +++++++++++++++++++++++++
 drivers/scsi/esas2r/esas2r_init.c   | 1773 +++++++++++++++++++++++++++++
 drivers/scsi/esas2r/esas2r_int.c    |  941 ++++++++++++++++
 drivers/scsi/esas2r/esas2r_io.c     |  883 +++++++++++++++
 drivers/scsi/esas2r/esas2r_ioctl.c  | 2110 +++++++++++++++++++++++++++++++++++
 drivers/scsi/esas2r/esas2r_log.c    |  255 +++++
 drivers/scsi/esas2r/esas2r_log.h    |  118 ++
 drivers/scsi/esas2r/esas2r_main.c   | 2033 +++++++++++++++++++++++++++++++++
 drivers/scsi/esas2r/esas2r_targdb.c |  306 +++++
 drivers/scsi/esas2r/esas2r_vda.c    |  523 +++++++++
 19 files changed, 15681 insertions(+)
 create mode 100644 drivers/scsi/esas2r/Kconfig
 create mode 100644 drivers/scsi/esas2r/Makefile
 create mode 100644 drivers/scsi/esas2r/atioctl.h
 create mode 100644 drivers/scsi/esas2r/atvda.h
 create mode 100644 drivers/scsi/esas2r/esas2r.h
 create mode 100644 drivers/scsi/esas2r/esas2r_disc.c
 create mode 100644 drivers/scsi/esas2r/esas2r_flash.c
 create mode 100644 drivers/scsi/esas2r/esas2r_init.c
 create mode 100644 drivers/scsi/esas2r/esas2r_int.c
 create mode 100644 drivers/scsi/esas2r/esas2r_io.c
 create mode 100644 drivers/scsi/esas2r/esas2r_ioctl.c
 create mode 100644 drivers/scsi/esas2r/esas2r_log.c
 create mode 100644 drivers/scsi/esas2r/esas2r_log.h
 create mode 100644 drivers/scsi/esas2r/esas2r_main.c
 create mode 100644 drivers/scsi/esas2r/esas2r_targdb.c
 create mode 100644 drivers/scsi/esas2r/esas2r_vda.c

-- 
1.8.1.4


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2013-08-06 15:35 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-02 16:59 [PATCH v3 00/10] [RFC] SCSI: esas2r: ATTO Technology ExpressSAS 6G SAS/SATA RAID Adapter Driver Bradley Grove
2013-08-02 16:59 ` [PATCH v3 01/10] [RFC] SCSI: esas2r: Add main header file Bradley Grove
2013-08-02 16:59 ` [PATCH v3 02/10] [RFC] SCSI: esas2r: Add main file Bradley Grove
2013-08-02 16:59 ` [PATCH v3 03/10] [RFC] SCSI: esas2r: Add initialization functions Bradley Grove
2013-08-02 16:59 ` [PATCH v3 04/10] [RFC] SCSI: esas2r: Add device discovery and logging functions Bradley Grove
2013-08-02 16:59 ` [PATCH v3 05/10] [RFC] SCSI: esas2r: Add interrupt and IO functions Bradley Grove
2013-08-02 16:59 ` [PATCH v3 06/10] [RFC] SCSI: esas2r: Add flash and target database functions Bradley Grove
2013-08-02 16:59 ` [PATCH v3 07/10] [RFC] SCSI: esas2r: Add IOCTL header file Bradley Grove
2013-08-02 16:59 ` [PATCH v3 08/10] [RFC] SCSI: esas2r: Add IOCTL functions Bradley Grove
2013-08-02 16:59 ` [PATCH v3 09/10] [RFC] SCSI: esas2r: Add ATTO VDA Firmware API headers and functions. This API is used to control and manage the RAID adapter Bradley Grove
2013-08-02 16:59 ` [PATCH v3 10/10] [RFC] SCSI: esas2r: Add Makefile, Kconfig, and MAINTAINERS files Bradley Grove
2013-08-06 15:35   ` Bradley Grove

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox