From: Bradley Grove <bgrove@attotech.com>
To: linux-scsi@vger.kernel.org
Cc: jbottomley@parallels.com, jseba@attotech.com,
Bradley Grove <bgrove@attotech.com>
Subject: [PATCH v3 00/10] [RFC] SCSI: esas2r: ATTO Technology ExpressSAS 6G SAS/SATA RAID Adapter Driver
Date: Fri, 2 Aug 2013 12:59:47 -0400 [thread overview]
Message-ID: <1375462797-2128-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 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
next reply other threads:[~2013-08-02 17:04 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-02 16:59 Bradley Grove [this message]
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
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=1375462797-2128-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