public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: Bradley Grove <bgrove@attotech.com>
To: linux-scsi@vger.kernel.org, jbottomley@parallels.com
Cc: jseba@attotech.com, Bradley Grove <bgrove@attotech.com>
Subject: [PATCH v4 00/10] SCSI: esas2r: ATTO Technology ExpressSAS 6G SAS/SATA RAID Adapter Driver
Date: Fri, 23 Aug 2013 10:35:44 -0400	[thread overview]
Message-ID: <1377268554-25898-1-git-send-email-bgrove@attotech.com> (raw)


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 V3:
- Addressed some warnings reported by checkpatch script, mostly whitespace

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):
  SCSI: esas2r: Add main header file
  SCSI: esas2r: Add main file
  SCSI: esas2r: Add initialization functions
  SCSI: esas2r: Add device discovery and logging functions
  SCSI: esas2r: Add interrupt and IO functions
  SCSI: esas2r: Add flash and target database functions
  SCSI: esas2r: Add IOCTL header file
  SCSI: esas2r: Add IOCTL functions
  SCSI: esas2r: Add ATTO VDA Firmware API headers and functions.  This
    API is used to control and manage the RAID adapter.
  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   | 2032 +++++++++++++++++++++++++++++++++
 drivers/scsi/esas2r/esas2r_targdb.c |  306 +++++
 drivers/scsi/esas2r/esas2r_vda.c    |  523 +++++++++
 19 files changed, 15680 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


             reply	other threads:[~2013-08-23 14:36 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-23 14:35 Bradley Grove [this message]
2013-08-23 14:35 ` [PATCH v4 01/10] SCSI: esas2r: Add main header file Bradley Grove
2013-08-23 14:35 ` [PATCH v4 02/10] SCSI: esas2r: Add main file Bradley Grove
2013-08-23 14:35 ` [PATCH v4 03/10] SCSI: esas2r: Add initialization functions Bradley Grove
2013-08-23 14:35 ` [PATCH v4 04/10] SCSI: esas2r: Add device discovery and logging functions Bradley Grove
2013-08-23 14:35 ` [PATCH v4 05/10] SCSI: esas2r: Add interrupt and IO functions Bradley Grove
2013-08-23 14:35 ` [PATCH v4 06/10] SCSI: esas2r: Add flash and target database functions Bradley Grove
2013-08-23 14:35 ` [PATCH v4 07/10] SCSI: esas2r: Add IOCTL header file Bradley Grove
2013-08-23 14:35 ` [PATCH v4 08/10] SCSI: esas2r: Add IOCTL functions Bradley Grove
2013-08-23 14:35 ` [PATCH v4 09/10] 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-23 14:35 ` [PATCH v4 10/10] SCSI: esas2r: Add Makefile, Kconfig, and MAINTAINERS files Bradley Grove
2013-08-26  9:59 ` [PATCH v4 00/10] SCSI: esas2r: ATTO Technology ExpressSAS 6G SAS/SATA RAID Adapter Driver James Bottomley

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1377268554-25898-1-git-send-email-bgrove@attotech.com \
    --to=bgrove@attotech.com \
    --cc=jbottomley@parallels.com \
    --cc=jseba@attotech.com \
    --cc=linux-scsi@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox