linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
  • [parent not found: <1444663237-238302-5-git-send-email-john.garry@huawei.com>]
  • [parent not found: <1444663237-238302-8-git-send-email-john.garry@huawei.com>]
  • [parent not found: <1444663237-238302-13-git-send-email-john.garry@huawei.com>]
  • [parent not found: <1444663237-238302-14-git-send-email-john.garry@huawei.com>]
  • * Re: [PATCH 00/25] HiSilicon SAS driver
           [not found] <1444663237-238302-1-git-send-email-john.garry@huawei.com>
                       ` (4 preceding siblings ...)
           [not found] ` <1444663237-238302-14-git-send-email-john.garry@huawei.com>
    @ 2015-10-19  8:47 ` John Garry
      2015-10-19  8:55   ` Hannes Reinecke
      5 siblings, 1 reply; 23+ messages in thread
    From: John Garry @ 2015-10-19  8:47 UTC (permalink / raw)
      To: James.Bottomley
      Cc: linux-kernel, devicetree, arnd, linuxarm, zhangfei.gao,
    	linux-scsi, xuwei5, john.garry2, hare
    
    Hi James,
    
    Could we please get a review for our driver? We have got some good input 
    on changes we need to make, and we will produce another patchset in the 
    coming days. However it would good to get a subsystem maintainer 
    review/acknowledgement to progress our upstreaming.
    
    Thanks in advance,
    John
    
    On 12/10/2015 16:20, John Garry wrote:
    > This is the driver patchset for the HiSilicon SAS driver. The driver
    > is a platform driver.
    >
    > The driver will support multiple revisions of HW. Currently only "v1"
    > HW is supported.
    >
    > The driver uses libsas framework within the SCSI framework.
    >
    > The v1 HW supports SSP and SMP, but not STP/SATA.
    >
    >
    > John Garry (25):
    >    [SCSI] sas: centralise ssp frame information units
    >    devicetree: bindings: scsi: HiSi SAS
    >    scsi: hisi_sas: add initial bare driver
    >    scsi: hisi_sas: add scsi host registration
    >    scsi: hisi_sas: allocate memories and create pools
    >    scsi: hisi_sas: add slot init code
    >    scsi: hisi_sas: add ioremap for device HW
    >    scsi: hisi_sas: add cq structure initialization
    >    scsi: hisi_sas: add phy SAS ADDR initialization
    >    scsi: hisi_sas: add misc HBA initialization
    >    scsi: hisi_sas: add v1 hardware register definitions
    >    scsi: hisi_sas: add v1 HW initialisation code
    >    scsi: hisi_sas: add path from phyup irq to SAS framework
    >    scsi: hisi_sas: add ssp command function
    >    scsi: hisi_sas: add cq interrupt handler
    >    scsi: hisi_sas: add dev_found and port_formed
    >    scsi: hisi_sas: add abnormal irq handler
    >    scsi: hisi_sas: add dev_gone and port_deformed
    >    scsi: hisi_sas: add bcast interrupt handler
    >    scsi: hisi_sas: add smp protocol support
    >    scsi: hisi_sas: add scan finished and start
    >    scsi: hisi_sas: add tmf methods
    >    scsi: hisi_sas: add control phy handler
    >    scsi: hisi_sas: add fatal irq handler
    >    MAINTAINERS: add maintainer for HiSi SAS driver
    >
    >   .../devicetree/bindings/scsi/hisilicon-sas.txt     |   63 +
    >   MAINTAINERS                                        |    7 +
    >   drivers/scsi/Kconfig                               |    1 +
    >   drivers/scsi/Makefile                              |    1 +
    >   drivers/scsi/aic94xx/aic94xx_sas.h                 |   49 +-
    >   drivers/scsi/hisi_sas/Kconfig                      |    5 +
    >   drivers/scsi/hisi_sas/Makefile                     |    2 +
    >   drivers/scsi/hisi_sas/hisi_sas.h                   |  406 +++++
    >   drivers/scsi/hisi_sas/hisi_sas_init.c              |  489 ++++++
    >   drivers/scsi/hisi_sas/hisi_sas_main.c              | 1115 ++++++++++++
    >   drivers/scsi/hisi_sas/hisi_sas_v1_hw.c             | 1850 ++++++++++++++++++++
    >   include/scsi/sas.h                                 |   74 +
    >   12 files changed, 4019 insertions(+), 43 deletions(-)
    >   create mode 100644 Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
    >   create mode 100644 drivers/scsi/hisi_sas/Kconfig
    >   create mode 100644 drivers/scsi/hisi_sas/Makefile
    >   create mode 100644 drivers/scsi/hisi_sas/hisi_sas.h
    >   create mode 100644 drivers/scsi/hisi_sas/hisi_sas_init.c
    >   create mode 100644 drivers/scsi/hisi_sas/hisi_sas_main.c
    >   create mode 100644 drivers/scsi/hisi_sas/hisi_sas_v1_hw.c
    >
    
    
    
    ^ permalink raw reply	[flat|nested] 23+ messages in thread

  • end of thread, other threads:[~2015-10-20  9:23 UTC | newest]
    
    Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <1444663237-238302-1-git-send-email-john.garry@huawei.com>
         [not found] ` <1444663237-238302-6-git-send-email-john.garry@huawei.com>
    2015-10-12 15:15   ` [PATCH 05/25] scsi: hisi_sas: allocate memories and create pools Arnd Bergmann
    2015-10-13  9:42     ` zhangfei
         [not found] ` <1444663237-238302-5-git-send-email-john.garry@huawei.com>
    2015-10-12 15:21   ` [PATCH 04/25] scsi: hisi_sas: add scsi host registration Arnd Bergmann
    2015-10-13  9:16     ` John Garry
    2015-10-13 12:18       ` Arnd Bergmann
         [not found] ` <1444663237-238302-8-git-send-email-john.garry@huawei.com>
    2015-10-12 15:21   ` [PATCH 07/25] scsi: hisi_sas: add ioremap for device HW Arnd Bergmann
    2015-10-13  9:47     ` zhangfei
    2015-10-13 12:20       ` Arnd Bergmann
    2015-10-13 15:09         ` zhangfei
         [not found] ` <1444663237-238302-13-git-send-email-john.garry@huawei.com>
    2015-10-12 18:46   ` [PATCH 12/25] scsi: hisi_sas: add v1 HW initialisation code Arnd Bergmann
    2015-10-13 12:44     ` John Garry
    2015-10-13 12:47       ` Arnd Bergmann
         [not found] ` <1444663237-238302-14-git-send-email-john.garry@huawei.com>
    2015-10-16 12:55   ` [PATCH 13/25] scsi: hisi_sas: add path from phyup irq to SAS framework Arnd Bergmann
    2015-10-16 13:29     ` John Garry
    2015-10-16 13:36       ` Arnd Bergmann
    2015-10-19 14:11         ` John Garry
    2015-10-19 14:26           ` Arnd Bergmann
    2015-10-19 14:55             ` John Garry
    2015-10-20  8:40               ` Arnd Bergmann
    2015-10-20  9:09                 ` John Garry
    2015-10-19  8:47 ` [PATCH 00/25] HiSilicon SAS driver John Garry
    2015-10-19  8:55   ` Hannes Reinecke
    2015-10-19 10:40     ` John Garry
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox;
    as well as URLs for NNTP newsgroup(s).