All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv2 00/12] Re-implement am53c974 driver
@ 2014-11-21 12:41 Hannes Reinecke
  2014-11-21 12:41 ` [PATCH 01/12] esp_scsi: spellcheck 'driver' Hannes Reinecke
                   ` (12 more replies)
  0 siblings, 13 replies; 36+ messages in thread
From: Hannes Reinecke @ 2014-11-21 12:41 UTC (permalink / raw)
  To: James Bottomley
  Cc: Christoph Hellwig, Paolo Bonzini, Guennadi Liakhovetski,
	David S. Miller, linux-scsi, Hannes Reinecke

Hi all,

having found some issues with the current tmscsim driver
I looked at the code and found is really awkward to clean
up.
Seeing that the am53c974 chip is actually based on the
'ESP' chip design I've re-implemented it based on the
common esp_scsi routines. This new driver
(cunningly named 'am53c974') provides all features
found on the tmscsim driver, with the goal of obsoleting
the old tmscsim driver.
Tested with Tekram DC390 and qemu esp-scsi.

Changes to v1:
- Include suggestions from Paolo Bonzini
- Remove the tmscsim driver
- Update MAINTAINERS file

Hannes Reinecke (11):
  esp_scsi: spellcheck 'driver'
  esp_scsi: make number of tags configurable
  esp_scsi: convert to dev_printk
  esp_scsi: debug event and command
  esp_scsi: read status registers
  esp_scsi: use FIFO for command submission
  scsi: add 'am53c974' driver
  am53c974: BLAST residual handling
  esp: correctly detect am53c974
  esp: enable CONFIG2_FENAB for am53c974
  Replace tmscsim by am53c974

Paolo Bonzini (1):
  esp_scsi: let DMA driver provide a config2 value

 MAINTAINERS             |    7 +-
 drivers/scsi/Kconfig    |    8 +-
 drivers/scsi/Makefile   |    2 +-
 drivers/scsi/am53c974.c |  581 +++++++++++
 drivers/scsi/esp_scsi.c |  411 +++++---
 drivers/scsi/esp_scsi.h |   22 +-
 drivers/scsi/tmscsim.c  | 2626 -----------------------------------------------
 drivers/scsi/tmscsim.h  |  549 ----------
 8 files changed, 854 insertions(+), 3352 deletions(-)
 create mode 100644 drivers/scsi/am53c974.c
 delete mode 100644 drivers/scsi/tmscsim.c
 delete mode 100644 drivers/scsi/tmscsim.h

-- 
1.8.5.2


^ permalink raw reply	[flat|nested] 36+ messages in thread
* [PATCHv3 00/12] Re-implement am53c974 driver
@ 2014-11-24 14:37 Hannes Reinecke
  2014-11-24 14:37 ` [PATCH 06/12] esp_scsi: use FIFO for command submission Hannes Reinecke
  0 siblings, 1 reply; 36+ messages in thread
From: Hannes Reinecke @ 2014-11-24 14:37 UTC (permalink / raw)
  To: James Bottomley
  Cc: Christoph Hellwig, Paolo, "Bonzini <pbonzini",
	David S. Miller, linux-scsi, Hannes Reinecke

Hi all,

having found some issues with the current tmscsim driver
I looked at the code and found is really awkward to clean
up.
Seeing that the am53c974 chip is actually based on the
'ESP' chip design I've re-implemented it based on the
common esp_scsi routines. This new driver
(cunningly named 'am53c974') provides all features
found on the tmscsim driver, with the goal of obsoleting
the old tmscsim driver.
Tested with Tekram DC390 and qemu esp-scsi.

Changes to v1:
- Include suggestions from Paolo Bonzini
- Remove the tmscsim driver
- Update MAINTAINERS file

Changes to v2:
- Include review from David Miller
- Include review from Christoph Hellwig
- Add Reviewed-by/Acked-by tags where applicable

Hannes Reinecke (11):
  esp_scsi: spellcheck 'driver'
  esp_scsi: make number of tags configurable
  esp_scsi: convert to dev_printk
  esp_scsi: debug event and command
  esp_scsi: read status registers
  esp_scsi: use FIFO for command submission
  scsi: add 'am53c974' driver
  am53c974: BLAST residual handling
  esp: correctly detect am53c974
  esp: enable CONFIG2_FENAB for am53c974
  Replace tmscsim by am53c974

Paolo Bonzini (1):
  esp_scsi: let DMA driver provide a config2 value

 MAINTAINERS             |    7 +-
 drivers/scsi/Kconfig    |    8 +-
 drivers/scsi/Makefile   |    2 +-
 drivers/scsi/am53c974.c |  586 +++++++++++
 drivers/scsi/esp_scsi.c |  411 +++++---
 drivers/scsi/esp_scsi.h |   22 +-
 drivers/scsi/tmscsim.c  | 2626 -----------------------------------------------
 drivers/scsi/tmscsim.h  |  549 ----------
 8 files changed, 859 insertions(+), 3352 deletions(-)
 create mode 100644 drivers/scsi/am53c974.c
 delete mode 100644 drivers/scsi/tmscsim.c
 delete mode 100644 drivers/scsi/tmscsim.h

-- 
1.8.5.2


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

end of thread, other threads:[~2014-11-25 22:10 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-21 12:41 [PATCHv2 00/12] Re-implement am53c974 driver Hannes Reinecke
2014-11-21 12:41 ` [PATCH 01/12] esp_scsi: spellcheck 'driver' Hannes Reinecke
2014-11-21 17:42   ` David Miller
2014-11-21 12:41 ` [PATCH 02/12] esp_scsi: make number of tags configurable Hannes Reinecke
2014-11-21 17:42   ` David Miller
2014-11-21 12:41 ` [PATCH 03/12] esp_scsi: convert to dev_printk Hannes Reinecke
2014-11-21 17:43   ` David Miller
2014-11-21 12:41 ` [PATCH 04/12] esp_scsi: debug event and command Hannes Reinecke
2014-11-21 17:43   ` David Miller
2014-11-21 12:41 ` [PATCH 05/12] esp_scsi: read status registers Hannes Reinecke
2014-11-21 17:44   ` David Miller
2014-11-21 12:41 ` [PATCH 06/12] esp_scsi: use FIFO for command submission Hannes Reinecke
2014-11-21 13:09   ` Paolo Bonzini
2014-11-21 17:42   ` David Miller
2014-11-21 12:41 ` [PATCH 07/12] scsi: add 'am53c974' driver Hannes Reinecke
2014-11-24 13:36   ` Christoph Hellwig
2014-11-24 13:42   ` Paolo Bonzini
2014-11-24 13:50   ` Christoph Hellwig
2014-11-24 14:01     ` Hannes Reinecke
2014-11-21 12:41 ` [PATCH 08/12] am53c974: BLAST residual handling Hannes Reinecke
2014-11-21 13:09   ` Paolo Bonzini
2014-11-21 17:45   ` David Miller
2014-11-21 12:41 ` [PATCH 09/12] esp: correctly detect am53c974 Hannes Reinecke
2014-11-21 17:46   ` David Miller
2014-11-21 12:41 ` [PATCH 10/12] esp_scsi: let DMA driver provide a config2 value Hannes Reinecke
2014-11-21 17:47   ` David Miller
2014-11-21 12:41 ` [PATCH 11/12] esp: enable CONFIG2_FENAB for am53c974 Hannes Reinecke
2014-11-21 13:10   ` Paolo Bonzini
2014-11-21 17:47   ` David Miller
2014-11-21 12:41 ` [PATCH 12/12] Replace tmscsim by am53c974 Hannes Reinecke
2014-11-23 13:22   ` Guennadi Liakhovetski
2014-11-23 18:45     ` David Miller
2014-11-24  8:14 ` [PATCHv2 00/12] Re-implement am53c974 driver Christoph Hellwig
2014-11-24  8:23   ` Hannes Reinecke
2014-11-25 22:10   ` Guennadi Liakhovetski
  -- strict thread matches above, loose matches on Subject: below --
2014-11-24 14:37 [PATCHv3 " Hannes Reinecke
2014-11-24 14:37 ` [PATCH 06/12] esp_scsi: use FIFO for command submission Hannes Reinecke

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.