All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] hisi_sas: Some misc patches
@ 2019-02-28 14:50 ` John Garry
  0 siblings, 0 replies; 23+ messages in thread
From: John Garry @ 2019-02-28 14:50 UTC (permalink / raw)
  To: jejb, martin.petersen; +Cc: linuxarm, linux-kernel, linux-scsi, John Garry

The patchset contains some misc patches for the driver, including:
- Workaround for acute scenario of SMP/internal IO timeout and reset racing
- Clear Affiliation for STP target port (from Luo Jiaxing and Xiang Chen)
- Fix PHY negotiated linkrate value for when PHY down
- Some init reg config changes
- Add support to coalesce and print PHY errors
- A tidy-up patch

John Garry (1):
  scsi: hisi_sas: Set PHY linkrate when disconnected

Xiang Chen (4):
  scsi: hisi_sas: Change return variable type in phy_up_v3_hw()
  scsi: hisi_sas: Fix a timeout race of driver internal and SMP IO
  scsi: hisi_sas: Send HARD RESET to clear the previous affiliation of
    STP target port
  scsi: hisi_sas: Change SERDES_CFG init value to increase reliability
    of HiLink

Xiaofei Tan (1):
  scsi: hisi_sas: print PHY RX errors count for later revision of v3 hw

 drivers/scsi/hisi_sas/hisi_sas.h       |  8 +++
 drivers/scsi/hisi_sas/hisi_sas_main.c  | 57 +++++++++++++++--
 drivers/scsi/hisi_sas/hisi_sas_v2_hw.c |  1 +
 drivers/scsi/hisi_sas/hisi_sas_v3_hw.c | 89 ++++++++++++++++++--------
 4 files changed, 125 insertions(+), 30 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 23+ messages in thread
* [PATCH 0/6] hisi_sas: Some misc patches
@ 2019-05-29  9:58 ` John Garry
  0 siblings, 0 replies; 23+ messages in thread
From: John Garry @ 2019-05-29  9:58 UTC (permalink / raw)
  To: jejb, martin.petersen; +Cc: linuxarm, linux-kernel, linux-scsi, John Garry

This patchset introduces some misc patches for the driver. Nothing
particularly stands out, maybe apart from a patch to delete a PHY's
timer when necessary.

John Garry (1):
  scsi: hisi_sas: Reduce HISI_SAS_SGE_PAGE_CNT in size

Luo Jiaxing (1):
  scsi: hisi_sas: Ignore the error code between phy down to phy up

Xiang Chen (3):
  scsi: hisi_sas: Delete PHYs' timer when rmmod or probe failed
  scsi: hisi_sas: Change the type of some numbers to unsigned
  scsi: hisi_sas: Disable stash for v3 hw

Xiaofei Tan (1):
  scsi: hisi_sas: Fix the issue of argument mismatch of printing ecc
    errors

 drivers/scsi/hisi_sas/hisi_sas.h       |  4 +--
 drivers/scsi/hisi_sas/hisi_sas_main.c  |  8 +++++
 drivers/scsi/hisi_sas/hisi_sas_v2_hw.c | 46 ++++++++++++++------------
 drivers/scsi/hisi_sas/hisi_sas_v3_hw.c | 46 ++++++++++++++++++--------
 4 files changed, 66 insertions(+), 38 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 23+ messages in thread
* [PATCH 0/6] hisi_sas: Some misc patches
@ 2021-04-06 11:48 John Garry
  2021-04-13  3:12 ` Martin K. Petersen
  2021-04-16  2:51 ` Martin K. Petersen
  0 siblings, 2 replies; 23+ messages in thread
From: John Garry @ 2021-04-06 11:48 UTC (permalink / raw)
  To: jejb, martin.petersen; +Cc: linux-scsi, linux-kernel, linuxarm, John Garry

This series contains some more minor patches for the driver, including:
- Improve debugfs code to snapshot registers prior to reset
- Fix probe error path
- Remove unused code
- Print SAS address in some error logs to assist debugging

Thanks!!

Jianqin Xie (1):
  scsi: hisi_sas: Directly snapshot registers when executing a reset

Luo Jiaxing (4):
  scsi: hisi_sas: Delete some unused callbacks
  scsi: hisi_sas: Print SAS address for v3 hw erroneous completion print
  scsi: hisi_sas: Warn in v3 hw channel interrupt handler when status
    reg cleared
  scsi: hisi_sas: Print SATA device SAS address for soft reset failure

Xiang Chen (1):
  scsi: hisi_sas: Call sas_unregister_ha() to roll back if .hw_init()
    fails

 drivers/scsi/hisi_sas/hisi_sas.h       |  3 +-
 drivers/scsi/hisi_sas/hisi_sas_main.c  | 38 +++++++++++++++-------
 drivers/scsi/hisi_sas/hisi_sas_v3_hw.c | 44 ++++++++++++++++----------
 3 files changed, 56 insertions(+), 29 deletions(-)

-- 
2.26.2


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

end of thread, other threads:[~2021-04-16  2:51 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-28 14:50 [PATCH 0/6] hisi_sas: Some misc patches John Garry
2019-02-28 14:50 ` John Garry
2019-02-28 14:50 ` [PATCH 1/6] scsi: hisi_sas: Change return variable type in phy_up_v3_hw() John Garry
2019-02-28 14:50   ` John Garry
2019-02-28 14:50 ` [PATCH 2/6] scsi: hisi_sas: Fix a timeout race of driver internal and SMP IO John Garry
2019-02-28 14:50   ` John Garry
2019-02-28 14:50 ` [PATCH 3/6] scsi: hisi_sas: print PHY RX errors count for later revision of v3 hw John Garry
2019-02-28 14:50   ` John Garry
2019-02-28 14:51 ` [PATCH 4/6] scsi: hisi_sas: Set PHY linkrate when disconnected John Garry
2019-02-28 14:51   ` John Garry
2019-02-28 14:51 ` [PATCH 5/6] scsi: hisi_sas: Send HARD RESET to clear the previous affiliation of STP target port John Garry
2019-02-28 14:51   ` John Garry
2019-02-28 14:51 ` [PATCH 6/6] scsi: hisi_sas: Change SERDES_CFG init value to increase reliability of HiLink John Garry
2019-02-28 14:51   ` John Garry
2019-03-07  0:27 ` [PATCH 0/6] hisi_sas: Some misc patches Martin K. Petersen
2019-03-07  0:27   ` Martin K. Petersen
2019-05-29  9:58 John Garry
2019-05-29  9:58 ` John Garry
2019-06-05  2:21 ` Martin K. Petersen
2019-06-05  2:21   ` Martin K. Petersen
2021-04-06 11:48 John Garry
2021-04-13  3:12 ` Martin K. Petersen
2021-04-16  2:51 ` Martin K. Petersen

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.