1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (c) 2017 Hisilicon Limited. 4 */ 5 6 #include <linux/sched/clock.h> 7 #include "hisi_sas.h" 8 #define DRV_NAME "hisi_sas_v3_hw" 9 10 /* global registers need init */ 11 #define DLVRY_QUEUE_ENABLE 0x0 12 #define IOST_BASE_ADDR_LO 0x8 13 #define IOST_BASE_ADDR_HI 0xc 14 #define ITCT_BASE_ADDR_LO 0x10 15 #define ITCT_BASE_ADDR_HI 0x14 16 #define IO_BROKEN_MSG_ADDR_LO 0x18 17 #define IO_BROKEN_MSG_ADDR_HI 0x1c 18 #define PHY_CONTEXT 0x20 19 #define PHY_STATE 0x24 20 #define PHY_PORT_NUM_MA 0x28 21 #define PHY_CONN_RATE 0x30 22 #define ITCT_CLR 0x44 23 #define ITCT_CLR_EN_OFF 16 24 #define ITCT_CLR_EN_MSK (0x1 << ITCT_CLR_EN_OFF) 25 #define ITCT_DEV_OFF 0 26 #define ITCT_DEV_MSK (0x7ff << ITCT_DEV_OFF) 27 #define SAS_AXI_USER3 0x50 28 #define IO_SATA_BROKEN_MSG_ADDR_LO 0x58 29 #define IO_SATA_BROKEN_MSG_ADDR_HI 0x5c 30 #define SATA_INITI_D2H_STORE_ADDR_LO 0x60 31 #define SATA_INITI_D2H_STORE_ADDR_HI 0x64 32 #define CFG_MAX_TAG 0x68 33 #define HGC_SAS_TX_OPEN_FAIL_RETRY_CTRL 0x84 34 #define HGC_SAS_TXFAIL_RETRY_CTRL 0x88 35 #define HGC_GET_ITV_TIME 0x90 36 #define DEVICE_MSG_WORK_MODE 0x94 37 #define OPENA_WT_CONTI_TIME 0x9c 38 #define I_T_NEXUS_LOSS_TIME 0xa0 39 #define MAX_CON_TIME_LIMIT_TIME 0xa4 40 #define BUS_INACTIVE_LIMIT_TIME 0xa8 41 #define REJECT_TO_OPEN_LIMIT_TIME 0xac 42 #define CQ_INT_CONVERGE_EN 0xb0 43 #define CFG_AGING_TIME 0xbc 44 #define HGC_DFX_CFG2 0xc0 45 #define CFG_ABT_SET_QUERY_IPTT 0xd4 46 #define CFG_SET_ABORTED_IPTT_OFF 0 47 #define CFG_SET_ABORTED_IPTT_MSK (0xfff << CFG_SET_ABORTED_IPTT_OFF) 48 #define CFG_SET_ABORTED_EN_OFF 12 49 #define CFG_ABT_SET_IPTT_DONE 0xd8 50 #define CFG_ABT_SET_IPTT_DONE_OFF 0 51 #define HGC_IOMB_PROC1_STATUS 0x104 52 #define HGC_LM_DFX_STATUS2 0x128 53 #define HGC_LM_DFX_STATUS2_IOSTLIST_OFF 0 54 #define HGC_LM_DFX_STATUS2_IOSTLIST_MSK (0xfff << \ 55 HGC_LM_DFX_STATUS2_IOSTLIST_OFF) 56 #define HGC_LM_DFX_STATUS2_ITCTLIST_OFF 12 57 #define HGC_LM_DFX_STATUS2_ITCTLIST_MSK (0x7ff << \ 58 HGC_LM_DFX_STATUS2_ITCTLIST_OFF) 59 #define HGC_CQE_ECC_ADDR 0x13c 60 #define HGC_CQE_ECC_1B_ADDR_OFF 0 61 #define HGC_CQE_ECC_1B_ADDR_MSK (0x3f << HGC_CQE_ECC_1B_ADDR_OFF) 62 #define HGC_CQE_ECC_MB_ADDR_OFF 8 63 #define HGC_CQE_ECC_MB_ADDR_MSK (0x3f << HGC_CQE_ECC_MB_ADDR_OFF) 64 #define HGC_IOST_ECC_ADDR 0x140 65 #define HGC_IOST_ECC_1B_ADDR_OFF 0 66 #define HGC_IOST_ECC_1B_ADDR_MSK (0x3ff << HGC_IOST_ECC_1B_ADDR_OFF) 67 #define HGC_IOST_ECC_MB_ADDR_OFF 16 68 #define HGC_IOST_ECC_MB_ADDR_MSK (0x3ff << HGC_IOST_ECC_MB_ADDR_OFF) 69 #define HGC_DQE_ECC_ADDR 0x144 70 #define HGC_DQE_ECC_1B_ADDR_OFF 0 71 #define HGC_DQE_ECC_1B_ADDR_MSK (0xfff << HGC_DQE_ECC_1B_ADDR_OFF) 72 #define HGC_DQE_ECC_MB_ADDR_OFF 16 73 #define HGC_DQE_ECC_MB_ADDR_MSK (0xfff << HGC_DQE_ECC_MB_ADDR_OFF) 74 #define CHNL_INT_STATUS 0x148 75 #define TAB_DFX 0x14c 76 #define HGC_ITCT_ECC_ADDR 0x150 77 #define HGC_ITCT_ECC_1B_ADDR_OFF 0 78 #define HGC_ITCT_ECC_1B_ADDR_MSK (0x3ff << \ 79 HGC_ITCT_ECC_1B_ADDR_OFF) 80 #define HGC_ITCT_ECC_MB_ADDR_OFF 16 81 #define HGC_ITCT_ECC_MB_ADDR_MSK (0x3ff << \ 82 HGC_ITCT_ECC_MB_ADDR_OFF) 83 #define HGC_AXI_FIFO_ERR_INFO 0x154 84 #define AXI_ERR_INFO_OFF 0 85 #define AXI_ERR_INFO_MSK (0xff << AXI_ERR_INFO_OFF) 86 #define FIFO_ERR_INFO_OFF 8 87 #define FIFO_ERR_INFO_MSK (0xff << FIFO_ERR_INFO_OFF) 88 #define TAB_RD_TYPE 0x15c 89 #define INT_COAL_EN 0x19c 90 #define OQ_INT_COAL_TIME 0x1a0 91 #define OQ_INT_COAL_CNT 0x1a4 92 #define ENT_INT_COAL_TIME 0x1a8 93 #define ENT_INT_COAL_CNT 0x1ac 94 #define OQ_INT_SRC 0x1b0 95 #define OQ_INT_SRC_MSK 0x1b4 96 #define ENT_INT_SRC1 0x1b8 97 #define ENT_INT_SRC1_D2H_FIS_CH0_OFF 0 98 #define ENT_INT_SRC1_D2H_FIS_CH0_MSK (0x1 << ENT_INT_SRC1_D2H_FIS_CH0_OFF) 99 #define ENT_INT_SRC1_D2H_FIS_CH1_OFF 8 100 #define ENT_INT_SRC1_D2H_FIS_CH1_MSK (0x1 << ENT_INT_SRC1_D2H_FIS_CH1_OFF) 101 #define ENT_INT_SRC2 0x1bc 102 #define ENT_INT_SRC3 0x1c0 103 #define ENT_INT_SRC3_WP_DEPTH_OFF 8 104 #define ENT_INT_SRC3_IPTT_SLOT_NOMATCH_OFF 9 105 #define ENT_INT_SRC3_RP_DEPTH_OFF 10 106 #define ENT_INT_SRC3_AXI_OFF 11 107 #define ENT_INT_SRC3_FIFO_OFF 12 108 #define ENT_INT_SRC3_LM_OFF 14 109 #define ENT_INT_SRC3_ITC_INT_OFF 15 110 #define ENT_INT_SRC3_ITC_INT_MSK (0x1 << ENT_INT_SRC3_ITC_INT_OFF) 111 #define ENT_INT_SRC3_ABT_OFF 16 112 #define ENT_INT_SRC3_DQE_POISON_OFF 18 113 #define ENT_INT_SRC3_IOST_POISON_OFF 19 114 #define ENT_INT_SRC3_ITCT_POISON_OFF 20 115 #define ENT_INT_SRC3_ITCT_NCQ_POISON_OFF 21 116 #define ENT_INT_SRC_MSK1 0x1c4 117 #define ENT_INT_SRC_MSK2 0x1c8 118 #define ENT_INT_SRC_MSK3 0x1cc 119 #define ENT_INT_SRC_MSK3_ENT95_MSK_OFF 31 120 #define CHNL_PHYUPDOWN_INT_MSK 0x1d0 121 #define CHNL_ENT_INT_MSK 0x1d4 122 #define HGC_COM_INT_MSK 0x1d8 123 #define ENT_INT_SRC_MSK3_ENT95_MSK_MSK (0x1 << ENT_INT_SRC_MSK3_ENT95_MSK_OFF) 124 #define SAS_ECC_INTR 0x1e8 125 #define SAS_ECC_INTR_DQE_ECC_1B_OFF 0 126 #define SAS_ECC_INTR_DQE_ECC_MB_OFF 1 127 #define SAS_ECC_INTR_IOST_ECC_1B_OFF 2 128 #define SAS_ECC_INTR_IOST_ECC_MB_OFF 3 129 #define SAS_ECC_INTR_ITCT_ECC_1B_OFF 4 130 #define SAS_ECC_INTR_ITCT_ECC_MB_OFF 5 131 #define SAS_ECC_INTR_ITCTLIST_ECC_1B_OFF 6 132 #define SAS_ECC_INTR_ITCTLIST_ECC_MB_OFF 7 133 #define SAS_ECC_INTR_IOSTLIST_ECC_1B_OFF 8 134 #define SAS_ECC_INTR_IOSTLIST_ECC_MB_OFF 9 135 #define SAS_ECC_INTR_CQE_ECC_1B_OFF 10 136 #define SAS_ECC_INTR_CQE_ECC_MB_OFF 11 137 #define SAS_ECC_INTR_NCQ_MEM0_ECC_1B_OFF 12 138 #define SAS_ECC_INTR_NCQ_MEM0_ECC_MB_OFF 13 139 #define SAS_ECC_INTR_NCQ_MEM1_ECC_1B_OFF 14 140 #define SAS_ECC_INTR_NCQ_MEM1_ECC_MB_OFF 15 141 #define SAS_ECC_INTR_NCQ_MEM2_ECC_1B_OFF 16 142 #define SAS_ECC_INTR_NCQ_MEM2_ECC_MB_OFF 17 143 #define SAS_ECC_INTR_NCQ_MEM3_ECC_1B_OFF 18 144 #define SAS_ECC_INTR_NCQ_MEM3_ECC_MB_OFF 19 145 #define SAS_ECC_INTR_OOO_RAM_ECC_1B_OFF 20 146 #define SAS_ECC_INTR_OOO_RAM_ECC_MB_OFF 21 147 #define SAS_ECC_INTR_MSK 0x1ec 148 #define HGC_ERR_STAT_EN 0x238 149 #define CQE_SEND_CNT 0x248 150 #define DLVRY_Q_0_BASE_ADDR_LO 0x260 151 #define DLVRY_Q_0_BASE_ADDR_HI 0x264 152 #define DLVRY_Q_0_DEPTH 0x268 153 #define DLVRY_Q_0_WR_PTR 0x26c 154 #define DLVRY_Q_0_RD_PTR 0x270 155 #define HYPER_STREAM_ID_EN_CFG 0xc80 156 #define OQ0_INT_SRC_MSK 0xc90 157 #define COMPL_Q_0_BASE_ADDR_LO 0x4e0 158 #define COMPL_Q_0_BASE_ADDR_HI 0x4e4 159 #define COMPL_Q_0_DEPTH 0x4e8 160 #define COMPL_Q_0_WR_PTR 0x4ec 161 #define COMPL_Q_0_RD_PTR 0x4f0 162 #define HGC_RXM_DFX_STATUS14 0xae8 163 #define HGC_RXM_DFX_STATUS14_MEM0_OFF 0 164 #define HGC_RXM_DFX_STATUS14_MEM0_MSK (0x1ff << \ 165 HGC_RXM_DFX_STATUS14_MEM0_OFF) 166 #define HGC_RXM_DFX_STATUS14_MEM1_OFF 9 167 #define HGC_RXM_DFX_STATUS14_MEM1_MSK (0x1ff << \ 168 HGC_RXM_DFX_STATUS14_MEM1_OFF) 169 #define HGC_RXM_DFX_STATUS14_MEM2_OFF 18 170 #define HGC_RXM_DFX_STATUS14_MEM2_MSK (0x1ff << \ 171 HGC_RXM_DFX_STATUS14_MEM2_OFF) 172 #define HGC_RXM_DFX_STATUS15 0xaec 173 #define HGC_RXM_DFX_STATUS15_MEM3_OFF 0 174 #define HGC_RXM_DFX_STATUS15_MEM3_MSK (0x1ff << \ 175 HGC_RXM_DFX_STATUS15_MEM3_OFF) 176 #define AWQOS_AWCACHE_CFG 0xc84 177 #define ARQOS_ARCACHE_CFG 0xc88 178 #define HILINK_ERR_DFX 0xe04 179 #define SAS_GPIO_CFG_0 0x1000 180 #define SAS_GPIO_CFG_1 0x1004 181 #define SAS_GPIO_TX_0_1 0x1040 182 #define SAS_CFG_DRIVE_VLD 0x1070 183 184 /* phy registers requiring init */ 185 #define PORT_BASE (0x2000) 186 #define PHY_CFG (PORT_BASE + 0x0) 187 #define HARD_PHY_LINKRATE (PORT_BASE + 0x4) 188 #define PHY_CFG_ENA_OFF 0 189 #define PHY_CFG_ENA_MSK (0x1 << PHY_CFG_ENA_OFF) 190 #define PHY_CFG_DC_OPT_OFF 2 191 #define PHY_CFG_DC_OPT_MSK (0x1 << PHY_CFG_DC_OPT_OFF) 192 #define PHY_CFG_PHY_RST_OFF 3 193 #define PHY_CFG_PHY_RST_MSK (0x1 << PHY_CFG_PHY_RST_OFF) 194 #define PROG_PHY_LINK_RATE (PORT_BASE + 0x8) 195 #define CFG_PROG_PHY_LINK_RATE_OFF 0 196 #define CFG_PROG_PHY_LINK_RATE_MSK (0xff << CFG_PROG_PHY_LINK_RATE_OFF) 197 #define CFG_PROG_OOB_PHY_LINK_RATE_OFF 8 198 #define CFG_PROG_OOB_PHY_LINK_RATE_MSK (0xf << CFG_PROG_OOB_PHY_LINK_RATE_OFF) 199 #define PHY_CTRL (PORT_BASE + 0x14) 200 #define PHY_CTRL_RESET_OFF 0 201 #define PHY_CTRL_RESET_MSK (0x1 << PHY_CTRL_RESET_OFF) 202 #define CMD_HDR_PIR_OFF 8 203 #define CMD_HDR_PIR_MSK (0x1 << CMD_HDR_PIR_OFF) 204 #define SERDES_CFG (PORT_BASE + 0x1c) 205 #define CFG_ALOS_CHK_DISABLE_OFF 9 206 #define CFG_ALOS_CHK_DISABLE_MSK (0x1 << CFG_ALOS_CHK_DISABLE_OFF) 207 #define SAS_PHY_BIST_CTRL (PORT_BASE + 0x2c) 208 #define CFG_BIST_MODE_SEL_OFF 0 209 #define CFG_BIST_MODE_SEL_MSK (0xf << CFG_BIST_MODE_SEL_OFF) 210 #define CFG_LOOP_TEST_MODE_OFF 14 211 #define CFG_LOOP_TEST_MODE_MSK (0x3 << CFG_LOOP_TEST_MODE_OFF) 212 #define CFG_RX_BIST_EN_OFF 16 213 #define CFG_RX_BIST_EN_MSK (0x1 << CFG_RX_BIST_EN_OFF) 214 #define CFG_TX_BIST_EN_OFF 17 215 #define CFG_TX_BIST_EN_MSK (0x1 << CFG_TX_BIST_EN_OFF) 216 #define CFG_BIST_TEST_OFF 18 217 #define CFG_BIST_TEST_MSK (0x1 << CFG_BIST_TEST_OFF) 218 #define SAS_PHY_BIST_CODE (PORT_BASE + 0x30) 219 #define SAS_PHY_BIST_CODE1 (PORT_BASE + 0x34) 220 #define SAS_BIST_ERR_CNT (PORT_BASE + 0x38) 221 #define SL_CFG (PORT_BASE + 0x84) 222 #define AIP_LIMIT (PORT_BASE + 0x90) 223 #define SL_CONTROL (PORT_BASE + 0x94) 224 #define SL_CONTROL_NOTIFY_EN_OFF 0 225 #define SL_CONTROL_NOTIFY_EN_MSK (0x1 << SL_CONTROL_NOTIFY_EN_OFF) 226 #define SL_CTA_OFF 17 227 #define SL_CTA_MSK (0x1 << SL_CTA_OFF) 228 #define RX_PRIMS_STATUS (PORT_BASE + 0x98) 229 #define RX_BCAST_CHG_OFF 1 230 #define RX_BCAST_CHG_MSK (0x1 << RX_BCAST_CHG_OFF) 231 #define TX_ID_DWORD0 (PORT_BASE + 0x9c) 232 #define TX_ID_DWORD1 (PORT_BASE + 0xa0) 233 #define TX_ID_DWORD2 (PORT_BASE + 0xa4) 234 #define TX_ID_DWORD3 (PORT_BASE + 0xa8) 235 #define TX_ID_DWORD4 (PORT_BASE + 0xaC) 236 #define TX_ID_DWORD5 (PORT_BASE + 0xb0) 237 #define TX_ID_DWORD6 (PORT_BASE + 0xb4) 238 #define TXID_AUTO (PORT_BASE + 0xb8) 239 #define CT3_OFF 1 240 #define CT3_MSK (0x1 << CT3_OFF) 241 #define TX_HARDRST_OFF 2 242 #define TX_HARDRST_MSK (0x1 << TX_HARDRST_OFF) 243 #define RX_IDAF_DWORD0 (PORT_BASE + 0xc4) 244 #define RXOP_CHECK_CFG_H (PORT_BASE + 0xfc) 245 #define STP_LINK_TIMER (PORT_BASE + 0x120) 246 #define STP_LINK_TIMEOUT_STATE (PORT_BASE + 0x124) 247 #define CON_CFG_DRIVER (PORT_BASE + 0x130) 248 #define SAS_SSP_CON_TIMER_CFG (PORT_BASE + 0x134) 249 #define SAS_SMP_CON_TIMER_CFG (PORT_BASE + 0x138) 250 #define SAS_STP_CON_TIMER_CFG (PORT_BASE + 0x13c) 251 #define CHL_INT0 (PORT_BASE + 0x1b4) 252 #define CHL_INT0_HOTPLUG_TOUT_OFF 0 253 #define CHL_INT0_HOTPLUG_TOUT_MSK (0x1 << CHL_INT0_HOTPLUG_TOUT_OFF) 254 #define CHL_INT0_SL_RX_BCST_ACK_OFF 1 255 #define CHL_INT0_SL_RX_BCST_ACK_MSK (0x1 << CHL_INT0_SL_RX_BCST_ACK_OFF) 256 #define CHL_INT0_SL_PHY_ENABLE_OFF 2 257 #define CHL_INT0_SL_PHY_ENABLE_MSK (0x1 << CHL_INT0_SL_PHY_ENABLE_OFF) 258 #define CHL_INT0_NOT_RDY_OFF 4 259 #define CHL_INT0_NOT_RDY_MSK (0x1 << CHL_INT0_NOT_RDY_OFF) 260 #define CHL_INT0_PHY_RDY_OFF 5 261 #define CHL_INT0_PHY_RDY_MSK (0x1 << CHL_INT0_PHY_RDY_OFF) 262 #define CHL_INT1 (PORT_BASE + 0x1b8) 263 #define CHL_INT1_DMAC_TX_ECC_MB_ERR_OFF 15 264 #define CHL_INT1_DMAC_TX_ECC_1B_ERR_OFF 16 265 #define CHL_INT1_DMAC_RX_ECC_MB_ERR_OFF 17 266 #define CHL_INT1_DMAC_RX_ECC_1B_ERR_OFF 18 267 #define CHL_INT1_DMAC_TX_AXI_WR_ERR_OFF 19 268 #define CHL_INT1_DMAC_TX_AXI_RD_ERR_OFF 20 269 #define CHL_INT1_DMAC_RX_AXI_WR_ERR_OFF 21 270 #define CHL_INT1_DMAC_RX_AXI_RD_ERR_OFF 22 271 #define CHL_INT1_DMAC_TX_FIFO_ERR_OFF 23 272 #define CHL_INT1_DMAC_RX_FIFO_ERR_OFF 24 273 #define CHL_INT1_DMAC_TX_AXI_RUSER_ERR_OFF 26 274 #define CHL_INT1_DMAC_RX_AXI_RUSER_ERR_OFF 27 275 #define CHL_INT2 (PORT_BASE + 0x1bc) 276 #define CHL_INT2_SL_IDAF_TOUT_CONF_OFF 0 277 #define CHL_INT2_RX_DISP_ERR_OFF 28 278 #define CHL_INT2_RX_CODE_ERR_OFF 29 279 #define CHL_INT2_RX_INVLD_DW_OFF 30 280 #define CHL_INT2_STP_LINK_TIMEOUT_OFF 31 281 #define CHL_INT0_MSK (PORT_BASE + 0x1c0) 282 #define CHL_INT1_MSK (PORT_BASE + 0x1c4) 283 #define CHL_INT2_MSK (PORT_BASE + 0x1c8) 284 #define SAS_EC_INT_COAL_TIME (PORT_BASE + 0x1cc) 285 #define CHL_INT_COAL_EN (PORT_BASE + 0x1d0) 286 #define SAS_RX_TRAIN_TIMER (PORT_BASE + 0x2a4) 287 #define PHY_CTRL_RDY_MSK (PORT_BASE + 0x2b0) 288 #define PHYCTRL_NOT_RDY_MSK (PORT_BASE + 0x2b4) 289 #define PHYCTRL_DWS_RESET_MSK (PORT_BASE + 0x2b8) 290 #define PHYCTRL_PHY_ENA_MSK (PORT_BASE + 0x2bc) 291 #define SL_RX_BCAST_CHK_MSK (PORT_BASE + 0x2c0) 292 #define PHYCTRL_OOB_RESTART_MSK (PORT_BASE + 0x2c4) 293 #define DMA_TX_STATUS (PORT_BASE + 0x2d0) 294 #define DMA_TX_STATUS_BUSY_OFF 0 295 #define DMA_TX_STATUS_BUSY_MSK (0x1 << DMA_TX_STATUS_BUSY_OFF) 296 #define DMA_RX_STATUS (PORT_BASE + 0x2e8) 297 #define DMA_RX_STATUS_BUSY_OFF 0 298 #define DMA_RX_STATUS_BUSY_MSK (0x1 << DMA_RX_STATUS_BUSY_OFF) 299 300 #define COARSETUNE_TIME (PORT_BASE + 0x304) 301 #define TXDEEMPH_G1 (PORT_BASE + 0x350) 302 #define ERR_CNT_DWS_LOST (PORT_BASE + 0x380) 303 #define ERR_CNT_RESET_PROB (PORT_BASE + 0x384) 304 #define ERR_CNT_INVLD_DW (PORT_BASE + 0x390) 305 #define ERR_CNT_CODE_ERR (PORT_BASE + 0x394) 306 #define ERR_CNT_DISP_ERR (PORT_BASE + 0x398) 307 #define DFX_FIFO_CTRL (PORT_BASE + 0x3a0) 308 #define DFX_FIFO_CTRL_TRIGGER_MODE_OFF 0 309 #define DFX_FIFO_CTRL_TRIGGER_MODE_MSK (0x7 << DFX_FIFO_CTRL_TRIGGER_MODE_OFF) 310 #define DFX_FIFO_CTRL_DUMP_MODE_OFF 3 311 #define DFX_FIFO_CTRL_DUMP_MODE_MSK (0x7 << DFX_FIFO_CTRL_DUMP_MODE_OFF) 312 #define DFX_FIFO_CTRL_SIGNAL_SEL_OFF 6 313 #define DFX_FIFO_CTRL_SIGNAL_SEL_MSK (0xF << DFX_FIFO_CTRL_SIGNAL_SEL_OFF) 314 #define DFX_FIFO_CTRL_DUMP_DISABLE_OFF 10 315 #define DFX_FIFO_CTRL_DUMP_DISABLE_MSK (0x1 << DFX_FIFO_CTRL_DUMP_DISABLE_OFF) 316 #define DFX_FIFO_TRIGGER (PORT_BASE + 0x3a4) 317 #define DFX_FIFO_TRIGGER_MSK (PORT_BASE + 0x3a8) 318 #define DFX_FIFO_DUMP_MSK (PORT_BASE + 0x3aC) 319 #define DFX_FIFO_RD_DATA (PORT_BASE + 0x3b0) 320 321 #define DEFAULT_ITCT_HW 2048 /* reset value, not reprogrammed */ 322 #if (HISI_SAS_MAX_DEVICES > DEFAULT_ITCT_HW) 323 #error Max ITCT exceeded 324 #endif 325 326 #define AXI_MASTER_CFG_BASE (0x5000) 327 #define AM_CTRL_GLOBAL (0x0) 328 #define AM_CTRL_SHUTDOWN_REQ_OFF 0 329 #define AM_CTRL_SHUTDOWN_REQ_MSK (0x1 << AM_CTRL_SHUTDOWN_REQ_OFF) 330 #define AM_CURR_TRANS_RETURN (0x150) 331 332 #define AM_CFG_MAX_TRANS (0x5010) 333 #define AM_CFG_SINGLE_PORT_MAX_TRANS (0x5014) 334 #define AXI_CFG (0x5100) 335 #define AM_ROB_ECC_ERR_ADDR (0x510c) 336 #define AM_ROB_ECC_ERR_ADDR_OFF 0 337 #define AM_ROB_ECC_ERR_ADDR_MSK 0xffffffff 338 339 /* RAS registers need init */ 340 #define RAS_BASE (0x6000) 341 #define SAS_RAS_INTR0 (RAS_BASE) 342 #define SAS_RAS_INTR1 (RAS_BASE + 0x04) 343 #define SAS_RAS_INTR0_MASK (RAS_BASE + 0x08) 344 #define SAS_RAS_INTR1_MASK (RAS_BASE + 0x0c) 345 #define CFG_SAS_RAS_INTR_MASK (RAS_BASE + 0x1c) 346 #define SAS_RAS_INTR2 (RAS_BASE + 0x20) 347 #define SAS_RAS_INTR2_MASK (RAS_BASE + 0x24) 348 349 /* HW dma structures */ 350 /* Delivery queue header */ 351 /* dw0 */ 352 #define CMD_HDR_ABORT_FLAG_OFF 0 353 #define CMD_HDR_ABORT_FLAG_MSK (0x3 << CMD_HDR_ABORT_FLAG_OFF) 354 #define CMD_HDR_ABORT_DEVICE_TYPE_OFF 2 355 #define CMD_HDR_ABORT_DEVICE_TYPE_MSK (0x1 << CMD_HDR_ABORT_DEVICE_TYPE_OFF) 356 #define CMD_HDR_RESP_REPORT_OFF 5 357 #define CMD_HDR_RESP_REPORT_MSK (0x1 << CMD_HDR_RESP_REPORT_OFF) 358 #define CMD_HDR_TLR_CTRL_OFF 6 359 #define CMD_HDR_TLR_CTRL_MSK (0x3 << CMD_HDR_TLR_CTRL_OFF) 360 #define CMD_HDR_PORT_OFF 18 361 #define CMD_HDR_PORT_MSK (0xf << CMD_HDR_PORT_OFF) 362 #define CMD_HDR_PRIORITY_OFF 27 363 #define CMD_HDR_PRIORITY_MSK (0x1 << CMD_HDR_PRIORITY_OFF) 364 #define CMD_HDR_CMD_OFF 29 365 #define CMD_HDR_CMD_MSK (0x7 << CMD_HDR_CMD_OFF) 366 /* dw1 */ 367 #define CMD_HDR_UNCON_CMD_OFF 3 368 #define CMD_HDR_DIR_OFF 5 369 #define CMD_HDR_DIR_MSK (0x3 << CMD_HDR_DIR_OFF) 370 #define CMD_HDR_RESET_OFF 7 371 #define CMD_HDR_RESET_MSK (0x1 << CMD_HDR_RESET_OFF) 372 #define CMD_HDR_VDTL_OFF 10 373 #define CMD_HDR_VDTL_MSK (0x1 << CMD_HDR_VDTL_OFF) 374 #define CMD_HDR_FRAME_TYPE_OFF 11 375 #define CMD_HDR_FRAME_TYPE_MSK (0x1f << CMD_HDR_FRAME_TYPE_OFF) 376 #define CMD_HDR_DEV_ID_OFF 16 377 #define CMD_HDR_DEV_ID_MSK (0xffff << CMD_HDR_DEV_ID_OFF) 378 /* dw2 */ 379 #define CMD_HDR_CFL_OFF 0 380 #define CMD_HDR_CFL_MSK (0x1ff << CMD_HDR_CFL_OFF) 381 #define CMD_HDR_NCQ_TAG_OFF 10 382 #define CMD_HDR_NCQ_TAG_MSK (0x1f << CMD_HDR_NCQ_TAG_OFF) 383 #define CMD_HDR_MRFL_OFF 15 384 #define CMD_HDR_MRFL_MSK (0x1ff << CMD_HDR_MRFL_OFF) 385 #define CMD_HDR_SG_MOD_OFF 24 386 #define CMD_HDR_SG_MOD_MSK (0x3 << CMD_HDR_SG_MOD_OFF) 387 /* dw3 */ 388 #define CMD_HDR_IPTT_OFF 0 389 #define CMD_HDR_IPTT_MSK (0xffff << CMD_HDR_IPTT_OFF) 390 /* dw6 */ 391 #define CMD_HDR_DIF_SGL_LEN_OFF 0 392 #define CMD_HDR_DIF_SGL_LEN_MSK (0xffff << CMD_HDR_DIF_SGL_LEN_OFF) 393 #define CMD_HDR_DATA_SGL_LEN_OFF 16 394 #define CMD_HDR_DATA_SGL_LEN_MSK (0xffff << CMD_HDR_DATA_SGL_LEN_OFF) 395 /* dw7 */ 396 #define CMD_HDR_ADDR_MODE_SEL_OFF 15 397 #define CMD_HDR_ADDR_MODE_SEL_MSK (1 << CMD_HDR_ADDR_MODE_SEL_OFF) 398 #define CMD_HDR_ABORT_IPTT_OFF 16 399 #define CMD_HDR_ABORT_IPTT_MSK (0xffff << CMD_HDR_ABORT_IPTT_OFF) 400 401 /* Completion header */ 402 /* dw0 */ 403 #define CMPLT_HDR_CMPLT_OFF 0 404 #define CMPLT_HDR_CMPLT_MSK (0x3 << CMPLT_HDR_CMPLT_OFF) 405 #define CMPLT_HDR_ERROR_PHASE_OFF 2 406 #define CMPLT_HDR_ERROR_PHASE_MSK (0xff << CMPLT_HDR_ERROR_PHASE_OFF) 407 #define CMPLT_HDR_RSPNS_XFRD_OFF 10 408 #define CMPLT_HDR_RSPNS_XFRD_MSK (0x1 << CMPLT_HDR_RSPNS_XFRD_OFF) 409 #define CMPLT_HDR_ERX_OFF 12 410 #define CMPLT_HDR_ERX_MSK (0x1 << CMPLT_HDR_ERX_OFF) 411 #define CMPLT_HDR_ABORT_STAT_OFF 13 412 #define CMPLT_HDR_ABORT_STAT_MSK (0x7 << CMPLT_HDR_ABORT_STAT_OFF) 413 /* abort_stat */ 414 #define STAT_IO_NOT_VALID 0x1 415 #define STAT_IO_NO_DEVICE 0x2 416 #define STAT_IO_COMPLETE 0x3 417 #define STAT_IO_ABORTED 0x4 418 /* dw1 */ 419 #define CMPLT_HDR_IPTT_OFF 0 420 #define CMPLT_HDR_IPTT_MSK (0xffff << CMPLT_HDR_IPTT_OFF) 421 #define CMPLT_HDR_DEV_ID_OFF 16 422 #define CMPLT_HDR_DEV_ID_MSK (0xffff << CMPLT_HDR_DEV_ID_OFF) 423 /* dw3 */ 424 #define CMPLT_HDR_IO_IN_TARGET_OFF 17 425 #define CMPLT_HDR_IO_IN_TARGET_MSK (0x1 << CMPLT_HDR_IO_IN_TARGET_OFF) 426 427 /* ITCT header */ 428 /* qw0 */ 429 #define ITCT_HDR_DEV_TYPE_OFF 0 430 #define ITCT_HDR_DEV_TYPE_MSK (0x3 << ITCT_HDR_DEV_TYPE_OFF) 431 #define ITCT_HDR_VALID_OFF 2 432 #define ITCT_HDR_VALID_MSK (0x1 << ITCT_HDR_VALID_OFF) 433 #define ITCT_HDR_MCR_OFF 5 434 #define ITCT_HDR_MCR_MSK (0xf << ITCT_HDR_MCR_OFF) 435 #define ITCT_HDR_VLN_OFF 9 436 #define ITCT_HDR_VLN_MSK (0xf << ITCT_HDR_VLN_OFF) 437 #define ITCT_HDR_SMP_TIMEOUT_OFF 16 438 #define ITCT_HDR_AWT_CONTINUE_OFF 25 439 #define ITCT_HDR_PORT_ID_OFF 28 440 #define ITCT_HDR_PORT_ID_MSK (0xf << ITCT_HDR_PORT_ID_OFF) 441 /* qw2 */ 442 #define ITCT_HDR_INLT_OFF 0 443 #define ITCT_HDR_INLT_MSK (0xffffULL << ITCT_HDR_INLT_OFF) 444 #define ITCT_HDR_RTOLT_OFF 48 445 #define ITCT_HDR_RTOLT_MSK (0xffffULL << ITCT_HDR_RTOLT_OFF) 446 447 struct hisi_sas_protect_iu_v3_hw { 448 u32 dw0; 449 u32 lbrtcv; 450 u32 lbrtgv; 451 u32 dw3; 452 u32 dw4; 453 u32 dw5; 454 u32 rsv; 455 }; 456 457 struct hisi_sas_complete_v3_hdr { 458 __le32 dw0; 459 __le32 dw1; 460 __le32 act; 461 __le32 dw3; 462 }; 463 464 struct hisi_sas_err_record_v3 { 465 /* dw0 */ 466 __le32 trans_tx_fail_type; 467 468 /* dw1 */ 469 __le32 trans_rx_fail_type; 470 471 /* dw2 */ 472 __le16 dma_tx_err_type; 473 __le16 sipc_rx_err_type; 474 475 /* dw3 */ 476 __le32 dma_rx_err_type; 477 }; 478 479 #define RX_DATA_LEN_UNDERFLOW_OFF 6 480 #define RX_DATA_LEN_UNDERFLOW_MSK (1 << RX_DATA_LEN_UNDERFLOW_OFF) 481 482 #define HISI_SAS_COMMAND_ENTRIES_V3_HW 4096 483 #define HISI_SAS_MSI_COUNT_V3_HW 32 484 485 #define DIR_NO_DATA 0 486 #define DIR_TO_INI 1 487 #define DIR_TO_DEVICE 2 488 #define DIR_RESERVED 3 489 490 #define FIS_CMD_IS_UNCONSTRAINED(fis) \ 491 ((fis.command == ATA_CMD_READ_LOG_EXT) || \ 492 (fis.command == ATA_CMD_READ_LOG_DMA_EXT) || \ 493 ((fis.command == ATA_CMD_DEV_RESET) && \ 494 ((fis.control & ATA_SRST) != 0))) 495 496 #define T10_INSRT_EN_OFF 0 497 #define T10_INSRT_EN_MSK (1 << T10_INSRT_EN_OFF) 498 #define T10_RMV_EN_OFF 1 499 #define T10_RMV_EN_MSK (1 << T10_RMV_EN_OFF) 500 #define T10_RPLC_EN_OFF 2 501 #define T10_RPLC_EN_MSK (1 << T10_RPLC_EN_OFF) 502 #define T10_CHK_EN_OFF 3 503 #define T10_CHK_EN_MSK (1 << T10_CHK_EN_OFF) 504 #define INCR_LBRT_OFF 5 505 #define INCR_LBRT_MSK (1 << INCR_LBRT_OFF) 506 #define USR_DATA_BLOCK_SZ_OFF 20 507 #define USR_DATA_BLOCK_SZ_MSK (0x3 << USR_DATA_BLOCK_SZ_OFF) 508 #define T10_CHK_MSK_OFF 16 509 #define T10_CHK_REF_TAG_MSK (0xf0 << T10_CHK_MSK_OFF) 510 #define T10_CHK_APP_TAG_MSK (0xc << T10_CHK_MSK_OFF) 511 512 #define BASE_VECTORS_V3_HW 16 513 #define MIN_AFFINE_VECTORS_V3_HW (BASE_VECTORS_V3_HW + 1) 514 515 #define CHNL_INT_STS_MSK 0xeeeeeeee 516 #define CHNL_INT_STS_PHY_MSK 0xe 517 #define CHNL_INT_STS_INT0_MSK BIT(1) 518 #define CHNL_INT_STS_INT1_MSK BIT(2) 519 #define CHNL_INT_STS_INT2_MSK BIT(3) 520 #define CHNL_WIDTH 4 521 522 #define BAR_NO_V3_HW 5 523 524 enum { 525 DSM_FUNC_ERR_HANDLE_MSI = 0, 526 }; 527 528 static bool hisi_sas_intr_conv; 529 MODULE_PARM_DESC(intr_conv, "interrupt converge enable (0-1)"); 530 531 /* permit overriding the host protection capabilities mask (EEDP/T10 PI) */ 532 static int prot_mask; 533 module_param(prot_mask, int, 0); 534 MODULE_PARM_DESC(prot_mask, " host protection capabilities mask, def=0x0 "); 535 536 static void debugfs_work_handler_v3_hw(struct work_struct *work); 537 static void debugfs_snapshot_regs_v3_hw(struct hisi_hba *hisi_hba); 538 539 static u32 hisi_sas_read32(struct hisi_hba *hisi_hba, u32 off) 540 { 541 void __iomem *regs = hisi_hba->regs + off; 542 543 return readl(regs); 544 } 545 546 static void hisi_sas_write32(struct hisi_hba *hisi_hba, u32 off, u32 val) 547 { 548 void __iomem *regs = hisi_hba->regs + off; 549 550 writel(val, regs); 551 } 552 553 static void hisi_sas_phy_write32(struct hisi_hba *hisi_hba, int phy_no, 554 u32 off, u32 val) 555 { 556 void __iomem *regs = hisi_hba->regs + (0x400 * phy_no) + off; 557 558 writel(val, regs); 559 } 560 561 static u32 hisi_sas_phy_read32(struct hisi_hba *hisi_hba, 562 int phy_no, u32 off) 563 { 564 void __iomem *regs = hisi_hba->regs + (0x400 * phy_no) + off; 565 566 return readl(regs); 567 } 568 569 #define hisi_sas_read32_poll_timeout(off, val, cond, delay_us, \ 570 timeout_us) \ 571 ({ \ 572 void __iomem *regs = hisi_hba->regs + off; \ 573 readl_poll_timeout(regs, val, cond, delay_us, timeout_us); \ 574 }) 575 576 #define hisi_sas_read32_poll_timeout_atomic(off, val, cond, delay_us, \ 577 timeout_us) \ 578 ({ \ 579 void __iomem *regs = hisi_hba->regs + off; \ 580 readl_poll_timeout_atomic(regs, val, cond, delay_us, timeout_us);\ 581 }) 582 583 static void init_reg_v3_hw(struct hisi_hba *hisi_hba) 584 { 585 int i, j; 586 587 /* Global registers init */ 588 hisi_sas_write32(hisi_hba, DLVRY_QUEUE_ENABLE, 589 (u32)((1ULL << hisi_hba->queue_count) - 1)); 590 hisi_sas_write32(hisi_hba, SAS_AXI_USER3, 0); 591 hisi_sas_write32(hisi_hba, CFG_MAX_TAG, 0xfff0400); 592 hisi_sas_write32(hisi_hba, HGC_SAS_TXFAIL_RETRY_CTRL, 0x108); 593 hisi_sas_write32(hisi_hba, CFG_AGING_TIME, 0x1); 594 hisi_sas_write32(hisi_hba, INT_COAL_EN, 0x1); 595 hisi_sas_write32(hisi_hba, OQ_INT_COAL_TIME, 0x1); 596 hisi_sas_write32(hisi_hba, OQ_INT_COAL_CNT, 0x1); 597 hisi_sas_write32(hisi_hba, CQ_INT_CONVERGE_EN, 598 hisi_sas_intr_conv); 599 hisi_sas_write32(hisi_hba, OQ_INT_SRC, 0xffff); 600 hisi_sas_write32(hisi_hba, ENT_INT_SRC1, 0xffffffff); 601 hisi_sas_write32(hisi_hba, ENT_INT_SRC2, 0xffffffff); 602 hisi_sas_write32(hisi_hba, ENT_INT_SRC3, 0xffffffff); 603 hisi_sas_write32(hisi_hba, ENT_INT_SRC_MSK1, 0xfefefefe); 604 hisi_sas_write32(hisi_hba, ENT_INT_SRC_MSK2, 0xfefefefe); 605 hisi_sas_write32(hisi_hba, ENT_INT_SRC_MSK3, 0xffc220ff); 606 hisi_sas_write32(hisi_hba, CHNL_PHYUPDOWN_INT_MSK, 0x0); 607 hisi_sas_write32(hisi_hba, CHNL_ENT_INT_MSK, 0x0); 608 hisi_sas_write32(hisi_hba, HGC_COM_INT_MSK, 0x0); 609 hisi_sas_write32(hisi_hba, SAS_ECC_INTR_MSK, 0x155555); 610 hisi_sas_write32(hisi_hba, AWQOS_AWCACHE_CFG, 0xf0f0); 611 hisi_sas_write32(hisi_hba, ARQOS_ARCACHE_CFG, 0xf0f0); 612 for (i = 0; i < hisi_hba->queue_count; i++) 613 hisi_sas_write32(hisi_hba, OQ0_INT_SRC_MSK + 0x4 * i, 0); 614 615 hisi_sas_write32(hisi_hba, HYPER_STREAM_ID_EN_CFG, 1); 616 617 for (i = 0; i < hisi_hba->n_phy; i++) { 618 enum sas_linkrate max; 619 struct hisi_sas_phy *phy = &hisi_hba->phy[i]; 620 struct asd_sas_phy *sas_phy = &phy->sas_phy; 621 u32 prog_phy_link_rate = hisi_sas_phy_read32(hisi_hba, i, 622 PROG_PHY_LINK_RATE); 623 624 prog_phy_link_rate &= ~CFG_PROG_PHY_LINK_RATE_MSK; 625 if (!sas_phy->phy || (sas_phy->phy->maximum_linkrate < 626 SAS_LINK_RATE_1_5_GBPS)) 627 max = SAS_LINK_RATE_12_0_GBPS; 628 else 629 max = sas_phy->phy->maximum_linkrate; 630 prog_phy_link_rate |= hisi_sas_get_prog_phy_linkrate_mask(max); 631 hisi_sas_phy_write32(hisi_hba, i, PROG_PHY_LINK_RATE, 632 prog_phy_link_rate); 633 hisi_sas_phy_write32(hisi_hba, i, SERDES_CFG, 0xffc00); 634 hisi_sas_phy_write32(hisi_hba, i, SAS_RX_TRAIN_TIMER, 0x13e80); 635 hisi_sas_phy_write32(hisi_hba, i, CHL_INT0, 0xffffffff); 636 hisi_sas_phy_write32(hisi_hba, i, CHL_INT1, 0xffffffff); 637 hisi_sas_phy_write32(hisi_hba, i, CHL_INT2, 0xffffffff); 638 hisi_sas_phy_write32(hisi_hba, i, RXOP_CHECK_CFG_H, 0x1000); 639 hisi_sas_phy_write32(hisi_hba, i, CHL_INT1_MSK, 0xf2057fff); 640 hisi_sas_phy_write32(hisi_hba, i, CHL_INT2_MSK, 0xffffbfe); 641 hisi_sas_phy_write32(hisi_hba, i, PHY_CTRL_RDY_MSK, 0x0); 642 hisi_sas_phy_write32(hisi_hba, i, PHYCTRL_NOT_RDY_MSK, 0x0); 643 hisi_sas_phy_write32(hisi_hba, i, PHYCTRL_DWS_RESET_MSK, 0x0); 644 hisi_sas_phy_write32(hisi_hba, i, PHYCTRL_PHY_ENA_MSK, 0x0); 645 hisi_sas_phy_write32(hisi_hba, i, SL_RX_BCAST_CHK_MSK, 0x0); 646 hisi_sas_phy_write32(hisi_hba, i, PHYCTRL_OOB_RESTART_MSK, 0x1); 647 hisi_sas_phy_write32(hisi_hba, i, STP_LINK_TIMER, 0x7f7a120); 648 hisi_sas_phy_write32(hisi_hba, i, CON_CFG_DRIVER, 0x2a0a01); 649 hisi_sas_phy_write32(hisi_hba, i, SAS_SSP_CON_TIMER_CFG, 0x32); 650 hisi_sas_phy_write32(hisi_hba, i, SAS_EC_INT_COAL_TIME, 651 0x30f4240); 652 /* used for 12G negotiate */ 653 hisi_sas_phy_write32(hisi_hba, i, COARSETUNE_TIME, 0x1e); 654 hisi_sas_phy_write32(hisi_hba, i, AIP_LIMIT, 0x2ffff); 655 656 /* get default FFE configuration for BIST */ 657 for (j = 0; j < FFE_CFG_MAX; j++) { 658 u32 val = hisi_sas_phy_read32(hisi_hba, i, 659 TXDEEMPH_G1 + (j * 0x4)); 660 hisi_hba->debugfs_bist_ffe[i][j] = val; 661 } 662 } 663 664 for (i = 0; i < hisi_hba->queue_count; i++) { 665 /* Delivery queue */ 666 hisi_sas_write32(hisi_hba, 667 DLVRY_Q_0_BASE_ADDR_HI + (i * 0x14), 668 upper_32_bits(hisi_hba->cmd_hdr_dma[i])); 669 670 hisi_sas_write32(hisi_hba, DLVRY_Q_0_BASE_ADDR_LO + (i * 0x14), 671 lower_32_bits(hisi_hba->cmd_hdr_dma[i])); 672 673 hisi_sas_write32(hisi_hba, DLVRY_Q_0_DEPTH + (i * 0x14), 674 HISI_SAS_QUEUE_SLOTS); 675 676 /* Completion queue */ 677 hisi_sas_write32(hisi_hba, COMPL_Q_0_BASE_ADDR_HI + (i * 0x14), 678 upper_32_bits(hisi_hba->complete_hdr_dma[i])); 679 680 hisi_sas_write32(hisi_hba, COMPL_Q_0_BASE_ADDR_LO + (i * 0x14), 681 lower_32_bits(hisi_hba->complete_hdr_dma[i])); 682 683 hisi_sas_write32(hisi_hba, COMPL_Q_0_DEPTH + (i * 0x14), 684 HISI_SAS_QUEUE_SLOTS); 685 } 686 687 /* itct */ 688 hisi_sas_write32(hisi_hba, ITCT_BASE_ADDR_LO, 689 lower_32_bits(hisi_hba->itct_dma)); 690 691 hisi_sas_write32(hisi_hba, ITCT_BASE_ADDR_HI, 692 upper_32_bits(hisi_hba->itct_dma)); 693 694 /* iost */ 695 hisi_sas_write32(hisi_hba, IOST_BASE_ADDR_LO, 696 lower_32_bits(hisi_hba->iost_dma)); 697 698 hisi_sas_write32(hisi_hba, IOST_BASE_ADDR_HI, 699 upper_32_bits(hisi_hba->iost_dma)); 700 701 /* breakpoint */ 702 hisi_sas_write32(hisi_hba, IO_BROKEN_MSG_ADDR_LO, 703 lower_32_bits(hisi_hba->breakpoint_dma)); 704 705 hisi_sas_write32(hisi_hba, IO_BROKEN_MSG_ADDR_HI, 706 upper_32_bits(hisi_hba->breakpoint_dma)); 707 708 /* SATA broken msg */ 709 hisi_sas_write32(hisi_hba, IO_SATA_BROKEN_MSG_ADDR_LO, 710 lower_32_bits(hisi_hba->sata_breakpoint_dma)); 711 712 hisi_sas_write32(hisi_hba, IO_SATA_BROKEN_MSG_ADDR_HI, 713 upper_32_bits(hisi_hba->sata_breakpoint_dma)); 714 715 /* SATA initial fis */ 716 hisi_sas_write32(hisi_hba, SATA_INITI_D2H_STORE_ADDR_LO, 717 lower_32_bits(hisi_hba->initial_fis_dma)); 718 719 hisi_sas_write32(hisi_hba, SATA_INITI_D2H_STORE_ADDR_HI, 720 upper_32_bits(hisi_hba->initial_fis_dma)); 721 722 /* RAS registers init */ 723 hisi_sas_write32(hisi_hba, SAS_RAS_INTR0_MASK, 0x0); 724 hisi_sas_write32(hisi_hba, SAS_RAS_INTR1_MASK, 0x0); 725 hisi_sas_write32(hisi_hba, SAS_RAS_INTR2_MASK, 0x0); 726 hisi_sas_write32(hisi_hba, CFG_SAS_RAS_INTR_MASK, 0x0); 727 728 /* LED registers init */ 729 hisi_sas_write32(hisi_hba, SAS_CFG_DRIVE_VLD, 0x80000ff); 730 hisi_sas_write32(hisi_hba, SAS_GPIO_TX_0_1, 0x80808080); 731 hisi_sas_write32(hisi_hba, SAS_GPIO_TX_0_1 + 0x4, 0x80808080); 732 /* Configure blink generator rate A to 1Hz and B to 4Hz */ 733 hisi_sas_write32(hisi_hba, SAS_GPIO_CFG_1, 0x121700); 734 hisi_sas_write32(hisi_hba, SAS_GPIO_CFG_0, 0x800000); 735 } 736 737 static void config_phy_opt_mode_v3_hw(struct hisi_hba *hisi_hba, int phy_no) 738 { 739 u32 cfg = hisi_sas_phy_read32(hisi_hba, phy_no, PHY_CFG); 740 741 cfg &= ~PHY_CFG_DC_OPT_MSK; 742 cfg |= 1 << PHY_CFG_DC_OPT_OFF; 743 hisi_sas_phy_write32(hisi_hba, phy_no, PHY_CFG, cfg); 744 } 745 746 static void config_id_frame_v3_hw(struct hisi_hba *hisi_hba, int phy_no) 747 { 748 struct sas_identify_frame identify_frame; 749 u32 *identify_buffer; 750 751 memset(&identify_frame, 0, sizeof(identify_frame)); 752 identify_frame.dev_type = SAS_END_DEVICE; 753 identify_frame.frame_type = 0; 754 identify_frame._un1 = 1; 755 identify_frame.initiator_bits = SAS_PROTOCOL_ALL; 756 identify_frame.target_bits = SAS_PROTOCOL_NONE; 757 memcpy(&identify_frame._un4_11[0], hisi_hba->sas_addr, SAS_ADDR_SIZE); 758 memcpy(&identify_frame.sas_addr[0], hisi_hba->sas_addr, SAS_ADDR_SIZE); 759 identify_frame.phy_id = phy_no; 760 identify_buffer = (u32 *)(&identify_frame); 761 762 hisi_sas_phy_write32(hisi_hba, phy_no, TX_ID_DWORD0, 763 __swab32(identify_buffer[0])); 764 hisi_sas_phy_write32(hisi_hba, phy_no, TX_ID_DWORD1, 765 __swab32(identify_buffer[1])); 766 hisi_sas_phy_write32(hisi_hba, phy_no, TX_ID_DWORD2, 767 __swab32(identify_buffer[2])); 768 hisi_sas_phy_write32(hisi_hba, phy_no, TX_ID_DWORD3, 769 __swab32(identify_buffer[3])); 770 hisi_sas_phy_write32(hisi_hba, phy_no, TX_ID_DWORD4, 771 __swab32(identify_buffer[4])); 772 hisi_sas_phy_write32(hisi_hba, phy_no, TX_ID_DWORD5, 773 __swab32(identify_buffer[5])); 774 } 775 776 static void setup_itct_v3_hw(struct hisi_hba *hisi_hba, 777 struct hisi_sas_device *sas_dev) 778 { 779 struct domain_device *device = sas_dev->sas_device; 780 struct device *dev = hisi_hba->dev; 781 u64 qw0, device_id = sas_dev->device_id; 782 struct hisi_sas_itct *itct = &hisi_hba->itct[device_id]; 783 struct domain_device *parent_dev = device->parent; 784 struct asd_sas_port *sas_port = device->port; 785 struct hisi_sas_port *port = to_hisi_sas_port(sas_port); 786 u64 sas_addr; 787 788 memset(itct, 0, sizeof(*itct)); 789 790 /* qw0 */ 791 qw0 = 0; 792 switch (sas_dev->dev_type) { 793 case SAS_END_DEVICE: 794 case SAS_EDGE_EXPANDER_DEVICE: 795 case SAS_FANOUT_EXPANDER_DEVICE: 796 qw0 = HISI_SAS_DEV_TYPE_SSP << ITCT_HDR_DEV_TYPE_OFF; 797 break; 798 case SAS_SATA_DEV: 799 case SAS_SATA_PENDING: 800 if (parent_dev && dev_is_expander(parent_dev->dev_type)) 801 qw0 = HISI_SAS_DEV_TYPE_STP << ITCT_HDR_DEV_TYPE_OFF; 802 else 803 qw0 = HISI_SAS_DEV_TYPE_SATA << ITCT_HDR_DEV_TYPE_OFF; 804 break; 805 default: 806 dev_warn(dev, "setup itct: unsupported dev type (%d)\n", 807 sas_dev->dev_type); 808 } 809 810 qw0 |= ((1 << ITCT_HDR_VALID_OFF) | 811 (device->linkrate << ITCT_HDR_MCR_OFF) | 812 (1 << ITCT_HDR_VLN_OFF) | 813 (0xfa << ITCT_HDR_SMP_TIMEOUT_OFF) | 814 (1 << ITCT_HDR_AWT_CONTINUE_OFF) | 815 (port->id << ITCT_HDR_PORT_ID_OFF)); 816 itct->qw0 = cpu_to_le64(qw0); 817 818 /* qw1 */ 819 memcpy(&sas_addr, device->sas_addr, SAS_ADDR_SIZE); 820 itct->sas_addr = cpu_to_le64(__swab64(sas_addr)); 821 822 /* qw2 */ 823 if (!dev_is_sata(device)) 824 itct->qw2 = cpu_to_le64((5000ULL << ITCT_HDR_INLT_OFF) | 825 (0x1ULL << ITCT_HDR_RTOLT_OFF)); 826 } 827 828 static int clear_itct_v3_hw(struct hisi_hba *hisi_hba, 829 struct hisi_sas_device *sas_dev) 830 { 831 DECLARE_COMPLETION_ONSTACK(completion); 832 u64 dev_id = sas_dev->device_id; 833 struct hisi_sas_itct *itct = &hisi_hba->itct[dev_id]; 834 u32 reg_val = hisi_sas_read32(hisi_hba, ENT_INT_SRC3); 835 struct device *dev = hisi_hba->dev; 836 837 sas_dev->completion = &completion; 838 839 /* clear the itct interrupt state */ 840 if (ENT_INT_SRC3_ITC_INT_MSK & reg_val) 841 hisi_sas_write32(hisi_hba, ENT_INT_SRC3, 842 ENT_INT_SRC3_ITC_INT_MSK); 843 844 /* clear the itct table */ 845 reg_val = ITCT_CLR_EN_MSK | (dev_id & ITCT_DEV_MSK); 846 hisi_sas_write32(hisi_hba, ITCT_CLR, reg_val); 847 848 if (!wait_for_completion_timeout(sas_dev->completion, 849 HISI_SAS_CLEAR_ITCT_TIMEOUT)) { 850 dev_warn(dev, "failed to clear ITCT\n"); 851 return -ETIMEDOUT; 852 } 853 854 memset(itct, 0, sizeof(struct hisi_sas_itct)); 855 return 0; 856 } 857 858 static void dereg_device_v3_hw(struct hisi_hba *hisi_hba, 859 struct domain_device *device) 860 { 861 struct hisi_sas_slot *slot, *slot2; 862 struct hisi_sas_device *sas_dev = device->lldd_dev; 863 u32 cfg_abt_set_query_iptt; 864 865 cfg_abt_set_query_iptt = hisi_sas_read32(hisi_hba, 866 CFG_ABT_SET_QUERY_IPTT); 867 list_for_each_entry_safe(slot, slot2, &sas_dev->list, entry) { 868 cfg_abt_set_query_iptt &= ~CFG_SET_ABORTED_IPTT_MSK; 869 cfg_abt_set_query_iptt |= (1 << CFG_SET_ABORTED_EN_OFF) | 870 (slot->idx << CFG_SET_ABORTED_IPTT_OFF); 871 hisi_sas_write32(hisi_hba, CFG_ABT_SET_QUERY_IPTT, 872 cfg_abt_set_query_iptt); 873 } 874 cfg_abt_set_query_iptt &= ~(1 << CFG_SET_ABORTED_EN_OFF); 875 hisi_sas_write32(hisi_hba, CFG_ABT_SET_QUERY_IPTT, 876 cfg_abt_set_query_iptt); 877 hisi_sas_write32(hisi_hba, CFG_ABT_SET_IPTT_DONE, 878 1 << CFG_ABT_SET_IPTT_DONE_OFF); 879 } 880 881 static int reset_hw_v3_hw(struct hisi_hba *hisi_hba) 882 { 883 struct device *dev = hisi_hba->dev; 884 int ret; 885 u32 val; 886 887 hisi_sas_write32(hisi_hba, DLVRY_QUEUE_ENABLE, 0); 888 889 /* Disable all of the PHYs */ 890 hisi_sas_stop_phys(hisi_hba); 891 udelay(50); 892 893 /* Ensure axi bus idle */ 894 ret = hisi_sas_read32_poll_timeout(AXI_CFG, val, !val, 895 20000, 1000000); 896 if (ret) { 897 dev_err(dev, "axi bus is not idle, ret = %d!\n", ret); 898 return -EIO; 899 } 900 901 if (ACPI_HANDLE(dev)) { 902 acpi_status s; 903 904 s = acpi_evaluate_object(ACPI_HANDLE(dev), "_RST", NULL, NULL); 905 if (ACPI_FAILURE(s)) { 906 dev_err(dev, "Reset failed\n"); 907 return -EIO; 908 } 909 } else { 910 dev_err(dev, "no reset method!\n"); 911 return -EINVAL; 912 } 913 914 return 0; 915 } 916 917 static int hw_init_v3_hw(struct hisi_hba *hisi_hba) 918 { 919 struct device *dev = hisi_hba->dev; 920 struct acpi_device *acpi_dev; 921 union acpi_object *obj; 922 guid_t guid; 923 int rc; 924 925 rc = reset_hw_v3_hw(hisi_hba); 926 if (rc) { 927 dev_err(dev, "hisi_sas_reset_hw failed, rc=%d\n", rc); 928 return rc; 929 } 930 931 msleep(100); 932 init_reg_v3_hw(hisi_hba); 933 934 if (guid_parse("D5918B4B-37AE-4E10-A99F-E5E8A6EF4C1F", &guid)) { 935 dev_err(dev, "Parse GUID failed\n"); 936 return -EINVAL; 937 } 938 939 /* 940 * This DSM handles some hardware-related configurations: 941 * 1. Switch over to MSI error handling in kernel 942 * 2. BIOS *may* reset some register values through this method 943 */ 944 obj = acpi_evaluate_dsm(ACPI_HANDLE(dev), &guid, 0, 945 DSM_FUNC_ERR_HANDLE_MSI, NULL); 946 if (!obj) 947 dev_warn(dev, "can not find DSM method, ignore\n"); 948 else 949 ACPI_FREE(obj); 950 951 acpi_dev = ACPI_COMPANION(dev); 952 if (!acpi_device_power_manageable(acpi_dev)) 953 dev_notice(dev, "neither _PS0 nor _PR0 is defined\n"); 954 return 0; 955 } 956 957 static void enable_phy_v3_hw(struct hisi_hba *hisi_hba, int phy_no) 958 { 959 u32 cfg = hisi_sas_phy_read32(hisi_hba, phy_no, PHY_CFG); 960 961 cfg |= PHY_CFG_ENA_MSK; 962 cfg &= ~PHY_CFG_PHY_RST_MSK; 963 hisi_sas_phy_write32(hisi_hba, phy_no, PHY_CFG, cfg); 964 } 965 966 static void disable_phy_v3_hw(struct hisi_hba *hisi_hba, int phy_no) 967 { 968 u32 cfg = hisi_sas_phy_read32(hisi_hba, phy_no, PHY_CFG); 969 u32 irq_msk = hisi_sas_phy_read32(hisi_hba, phy_no, CHL_INT2_MSK); 970 static const u32 msk = BIT(CHL_INT2_RX_DISP_ERR_OFF) | 971 BIT(CHL_INT2_RX_CODE_ERR_OFF) | 972 BIT(CHL_INT2_RX_INVLD_DW_OFF); 973 u32 state; 974 975 hisi_sas_phy_write32(hisi_hba, phy_no, CHL_INT2_MSK, msk | irq_msk); 976 977 cfg &= ~PHY_CFG_ENA_MSK; 978 hisi_sas_phy_write32(hisi_hba, phy_no, PHY_CFG, cfg); 979 980 mdelay(50); 981 982 state = hisi_sas_read32(hisi_hba, PHY_STATE); 983 if (state & BIT(phy_no)) { 984 cfg |= PHY_CFG_PHY_RST_MSK; 985 hisi_sas_phy_write32(hisi_hba, phy_no, PHY_CFG, cfg); 986 } 987 988 udelay(1); 989 990 hisi_sas_phy_read32(hisi_hba, phy_no, ERR_CNT_INVLD_DW); 991 hisi_sas_phy_read32(hisi_hba, phy_no, ERR_CNT_DISP_ERR); 992 hisi_sas_phy_read32(hisi_hba, phy_no, ERR_CNT_CODE_ERR); 993 994 hisi_sas_phy_write32(hisi_hba, phy_no, CHL_INT2, msk); 995 hisi_sas_phy_write32(hisi_hba, phy_no, CHL_INT2_MSK, irq_msk); 996 } 997 998 static void start_phy_v3_hw(struct hisi_hba *hisi_hba, int phy_no) 999 { 1000 config_id_frame_v3_hw(hisi_hba, phy_no); 1001 config_phy_opt_mode_v3_hw(hisi_hba, phy_no); 1002 enable_phy_v3_hw(hisi_hba, phy_no); 1003 } 1004 1005 static void phy_hard_reset_v3_hw(struct hisi_hba *hisi_hba, int phy_no) 1006 { 1007 struct hisi_sas_phy *phy = &hisi_hba->phy[phy_no]; 1008 u32 txid_auto; 1009 1010 hisi_sas_phy_enable(hisi_hba, phy_no, 0); 1011 if (phy->identify.device_type == SAS_END_DEVICE) { 1012 txid_auto = hisi_sas_phy_read32(hisi_hba, phy_no, TXID_AUTO); 1013 hisi_sas_phy_write32(hisi_hba, phy_no, TXID_AUTO, 1014 txid_auto | TX_HARDRST_MSK); 1015 } 1016 msleep(100); 1017 hisi_sas_phy_enable(hisi_hba, phy_no, 1); 1018 } 1019 1020 static enum sas_linkrate phy_get_max_linkrate_v3_hw(void) 1021 { 1022 return SAS_LINK_RATE_12_0_GBPS; 1023 } 1024 1025 static void phys_init_v3_hw(struct hisi_hba *hisi_hba) 1026 { 1027 int i; 1028 1029 for (i = 0; i < hisi_hba->n_phy; i++) { 1030 struct hisi_sas_phy *phy = &hisi_hba->phy[i]; 1031 struct asd_sas_phy *sas_phy = &phy->sas_phy; 1032 1033 if (!sas_phy->phy->enabled) 1034 continue; 1035 1036 hisi_sas_phy_enable(hisi_hba, i, 1); 1037 } 1038 } 1039 1040 static void sl_notify_ssp_v3_hw(struct hisi_hba *hisi_hba, int phy_no) 1041 { 1042 u32 sl_control; 1043 1044 sl_control = hisi_sas_phy_read32(hisi_hba, phy_no, SL_CONTROL); 1045 sl_control |= SL_CONTROL_NOTIFY_EN_MSK; 1046 hisi_sas_phy_write32(hisi_hba, phy_no, SL_CONTROL, sl_control); 1047 msleep(1); 1048 sl_control = hisi_sas_phy_read32(hisi_hba, phy_no, SL_CONTROL); 1049 sl_control &= ~SL_CONTROL_NOTIFY_EN_MSK; 1050 hisi_sas_phy_write32(hisi_hba, phy_no, SL_CONTROL, sl_control); 1051 } 1052 1053 static int get_wideport_bitmap_v3_hw(struct hisi_hba *hisi_hba, int port_id) 1054 { 1055 int i, bitmap = 0; 1056 u32 phy_port_num_ma = hisi_sas_read32(hisi_hba, PHY_PORT_NUM_MA); 1057 u32 phy_state = hisi_sas_read32(hisi_hba, PHY_STATE); 1058 1059 for (i = 0; i < hisi_hba->n_phy; i++) 1060 if (phy_state & BIT(i)) 1061 if (((phy_port_num_ma >> (i * 4)) & 0xf) == port_id) 1062 bitmap |= BIT(i); 1063 1064 return bitmap; 1065 } 1066 1067 static void start_delivery_v3_hw(struct hisi_sas_dq *dq) 1068 { 1069 struct hisi_hba *hisi_hba = dq->hisi_hba; 1070 struct hisi_sas_slot *s, *s1, *s2 = NULL; 1071 int dlvry_queue = dq->id; 1072 int wp; 1073 1074 list_for_each_entry_safe(s, s1, &dq->list, delivery) { 1075 if (!s->ready) 1076 break; 1077 s2 = s; 1078 list_del(&s->delivery); 1079 } 1080 1081 if (!s2) 1082 return; 1083 1084 /* 1085 * Ensure that memories for slots built on other CPUs is observed. 1086 */ 1087 smp_rmb(); 1088 wp = (s2->dlvry_queue_slot + 1) % HISI_SAS_QUEUE_SLOTS; 1089 1090 hisi_sas_write32(hisi_hba, DLVRY_Q_0_WR_PTR + (dlvry_queue * 0x14), wp); 1091 } 1092 1093 static void prep_prd_sge_v3_hw(struct hisi_hba *hisi_hba, 1094 struct hisi_sas_slot *slot, 1095 struct hisi_sas_cmd_hdr *hdr, 1096 struct scatterlist *scatter, 1097 int n_elem) 1098 { 1099 struct hisi_sas_sge_page *sge_page = hisi_sas_sge_addr_mem(slot); 1100 struct scatterlist *sg; 1101 int i; 1102 1103 for_each_sg(scatter, sg, n_elem, i) { 1104 struct hisi_sas_sge *entry = &sge_page->sge[i]; 1105 1106 entry->addr = cpu_to_le64(sg_dma_address(sg)); 1107 entry->page_ctrl_0 = entry->page_ctrl_1 = 0; 1108 entry->data_len = cpu_to_le32(sg_dma_len(sg)); 1109 entry->data_off = 0; 1110 } 1111 1112 hdr->prd_table_addr = cpu_to_le64(hisi_sas_sge_addr_dma(slot)); 1113 1114 hdr->sg_len |= cpu_to_le32(n_elem << CMD_HDR_DATA_SGL_LEN_OFF); 1115 } 1116 1117 static void prep_prd_sge_dif_v3_hw(struct hisi_hba *hisi_hba, 1118 struct hisi_sas_slot *slot, 1119 struct hisi_sas_cmd_hdr *hdr, 1120 struct scatterlist *scatter, 1121 int n_elem) 1122 { 1123 struct hisi_sas_sge_dif_page *sge_dif_page; 1124 struct scatterlist *sg; 1125 int i; 1126 1127 sge_dif_page = hisi_sas_sge_dif_addr_mem(slot); 1128 1129 for_each_sg(scatter, sg, n_elem, i) { 1130 struct hisi_sas_sge *entry = &sge_dif_page->sge[i]; 1131 1132 entry->addr = cpu_to_le64(sg_dma_address(sg)); 1133 entry->page_ctrl_0 = 0; 1134 entry->page_ctrl_1 = 0; 1135 entry->data_len = cpu_to_le32(sg_dma_len(sg)); 1136 entry->data_off = 0; 1137 } 1138 1139 hdr->dif_prd_table_addr = 1140 cpu_to_le64(hisi_sas_sge_dif_addr_dma(slot)); 1141 1142 hdr->sg_len |= cpu_to_le32(n_elem << CMD_HDR_DIF_SGL_LEN_OFF); 1143 } 1144 1145 static u32 get_prot_chk_msk_v3_hw(struct scsi_cmnd *scsi_cmnd) 1146 { 1147 unsigned char prot_flags = scsi_cmnd->prot_flags; 1148 1149 if (prot_flags & SCSI_PROT_REF_CHECK) 1150 return T10_CHK_APP_TAG_MSK; 1151 return T10_CHK_REF_TAG_MSK | T10_CHK_APP_TAG_MSK; 1152 } 1153 1154 static void fill_prot_v3_hw(struct scsi_cmnd *scsi_cmnd, 1155 struct hisi_sas_protect_iu_v3_hw *prot) 1156 { 1157 unsigned char prot_op = scsi_get_prot_op(scsi_cmnd); 1158 unsigned int interval = scsi_prot_interval(scsi_cmnd); 1159 u32 lbrt_chk_val = t10_pi_ref_tag(scsi_cmd_to_rq(scsi_cmnd)); 1160 1161 switch (prot_op) { 1162 case SCSI_PROT_READ_INSERT: 1163 prot->dw0 |= T10_INSRT_EN_MSK; 1164 prot->lbrtgv = lbrt_chk_val; 1165 break; 1166 case SCSI_PROT_READ_STRIP: 1167 prot->dw0 |= (T10_RMV_EN_MSK | T10_CHK_EN_MSK); 1168 prot->lbrtcv = lbrt_chk_val; 1169 prot->dw4 |= get_prot_chk_msk_v3_hw(scsi_cmnd); 1170 break; 1171 case SCSI_PROT_READ_PASS: 1172 prot->dw0 |= T10_CHK_EN_MSK; 1173 prot->lbrtcv = lbrt_chk_val; 1174 prot->dw4 |= get_prot_chk_msk_v3_hw(scsi_cmnd); 1175 break; 1176 case SCSI_PROT_WRITE_INSERT: 1177 prot->dw0 |= T10_INSRT_EN_MSK; 1178 prot->lbrtgv = lbrt_chk_val; 1179 break; 1180 case SCSI_PROT_WRITE_STRIP: 1181 prot->dw0 |= (T10_RMV_EN_MSK | T10_CHK_EN_MSK); 1182 prot->lbrtcv = lbrt_chk_val; 1183 break; 1184 case SCSI_PROT_WRITE_PASS: 1185 prot->dw0 |= T10_CHK_EN_MSK; 1186 prot->lbrtcv = lbrt_chk_val; 1187 prot->dw4 |= get_prot_chk_msk_v3_hw(scsi_cmnd); 1188 break; 1189 default: 1190 WARN(1, "prot_op(0x%x) is not valid\n", prot_op); 1191 break; 1192 } 1193 1194 switch (interval) { 1195 case 512: 1196 break; 1197 case 4096: 1198 prot->dw0 |= (0x1 << USR_DATA_BLOCK_SZ_OFF); 1199 break; 1200 case 520: 1201 prot->dw0 |= (0x2 << USR_DATA_BLOCK_SZ_OFF); 1202 break; 1203 default: 1204 WARN(1, "protection interval (0x%x) invalid\n", 1205 interval); 1206 break; 1207 } 1208 1209 prot->dw0 |= INCR_LBRT_MSK; 1210 } 1211 1212 static void prep_ssp_v3_hw(struct hisi_hba *hisi_hba, 1213 struct hisi_sas_slot *slot) 1214 { 1215 struct sas_task *task = slot->task; 1216 struct hisi_sas_cmd_hdr *hdr = slot->cmd_hdr; 1217 struct domain_device *device = task->dev; 1218 struct hisi_sas_device *sas_dev = device->lldd_dev; 1219 struct hisi_sas_port *port = slot->port; 1220 struct sas_ssp_task *ssp_task = &task->ssp_task; 1221 struct scsi_cmnd *scsi_cmnd = ssp_task->cmd; 1222 struct hisi_sas_tmf_task *tmf = slot->tmf; 1223 int has_data = 0, priority = !!tmf; 1224 unsigned char prot_op; 1225 u8 *buf_cmd; 1226 u32 dw1 = 0, dw2 = 0, len = 0; 1227 1228 hdr->dw0 = cpu_to_le32((1 << CMD_HDR_RESP_REPORT_OFF) | 1229 (2 << CMD_HDR_TLR_CTRL_OFF) | 1230 (port->id << CMD_HDR_PORT_OFF) | 1231 (priority << CMD_HDR_PRIORITY_OFF) | 1232 (1 << CMD_HDR_CMD_OFF)); /* ssp */ 1233 1234 dw1 = 1 << CMD_HDR_VDTL_OFF; 1235 if (tmf) { 1236 dw1 |= 2 << CMD_HDR_FRAME_TYPE_OFF; 1237 dw1 |= DIR_NO_DATA << CMD_HDR_DIR_OFF; 1238 } else { 1239 prot_op = scsi_get_prot_op(scsi_cmnd); 1240 dw1 |= 1 << CMD_HDR_FRAME_TYPE_OFF; 1241 switch (scsi_cmnd->sc_data_direction) { 1242 case DMA_TO_DEVICE: 1243 has_data = 1; 1244 dw1 |= DIR_TO_DEVICE << CMD_HDR_DIR_OFF; 1245 break; 1246 case DMA_FROM_DEVICE: 1247 has_data = 1; 1248 dw1 |= DIR_TO_INI << CMD_HDR_DIR_OFF; 1249 break; 1250 default: 1251 dw1 &= ~CMD_HDR_DIR_MSK; 1252 } 1253 } 1254 1255 /* map itct entry */ 1256 dw1 |= sas_dev->device_id << CMD_HDR_DEV_ID_OFF; 1257 1258 dw2 = (((sizeof(struct ssp_command_iu) + sizeof(struct ssp_frame_hdr) 1259 + 3) / 4) << CMD_HDR_CFL_OFF) | 1260 ((HISI_SAS_MAX_SSP_RESP_SZ / 4) << CMD_HDR_MRFL_OFF) | 1261 (2 << CMD_HDR_SG_MOD_OFF); 1262 hdr->dw2 = cpu_to_le32(dw2); 1263 hdr->transfer_tags = cpu_to_le32(slot->idx); 1264 1265 if (has_data) { 1266 prep_prd_sge_v3_hw(hisi_hba, slot, hdr, task->scatter, 1267 slot->n_elem); 1268 1269 if (scsi_prot_sg_count(scsi_cmnd)) 1270 prep_prd_sge_dif_v3_hw(hisi_hba, slot, hdr, 1271 scsi_prot_sglist(scsi_cmnd), 1272 slot->n_elem_dif); 1273 } 1274 1275 hdr->cmd_table_addr = cpu_to_le64(hisi_sas_cmd_hdr_addr_dma(slot)); 1276 hdr->sts_buffer_addr = cpu_to_le64(hisi_sas_status_buf_addr_dma(slot)); 1277 1278 buf_cmd = hisi_sas_cmd_hdr_addr_mem(slot) + 1279 sizeof(struct ssp_frame_hdr); 1280 1281 memcpy(buf_cmd, &task->ssp_task.LUN, 8); 1282 if (!tmf) { 1283 buf_cmd[9] = ssp_task->task_attr | (ssp_task->task_prio << 3); 1284 memcpy(buf_cmd + 12, scsi_cmnd->cmnd, scsi_cmnd->cmd_len); 1285 } else { 1286 buf_cmd[10] = tmf->tmf; 1287 switch (tmf->tmf) { 1288 case TMF_ABORT_TASK: 1289 case TMF_QUERY_TASK: 1290 buf_cmd[12] = 1291 (tmf->tag_of_task_to_be_managed >> 8) & 0xff; 1292 buf_cmd[13] = 1293 tmf->tag_of_task_to_be_managed & 0xff; 1294 break; 1295 default: 1296 break; 1297 } 1298 } 1299 1300 if (has_data && (prot_op != SCSI_PROT_NORMAL)) { 1301 struct hisi_sas_protect_iu_v3_hw prot; 1302 u8 *buf_cmd_prot; 1303 1304 hdr->dw7 |= cpu_to_le32(1 << CMD_HDR_ADDR_MODE_SEL_OFF); 1305 dw1 |= CMD_HDR_PIR_MSK; 1306 buf_cmd_prot = hisi_sas_cmd_hdr_addr_mem(slot) + 1307 sizeof(struct ssp_frame_hdr) + 1308 sizeof(struct ssp_command_iu); 1309 1310 memset(&prot, 0, sizeof(struct hisi_sas_protect_iu_v3_hw)); 1311 fill_prot_v3_hw(scsi_cmnd, &prot); 1312 memcpy(buf_cmd_prot, &prot, 1313 sizeof(struct hisi_sas_protect_iu_v3_hw)); 1314 /* 1315 * For READ, we need length of info read to memory, while for 1316 * WRITE we need length of data written to the disk. 1317 */ 1318 if (prot_op == SCSI_PROT_WRITE_INSERT || 1319 prot_op == SCSI_PROT_READ_INSERT || 1320 prot_op == SCSI_PROT_WRITE_PASS || 1321 prot_op == SCSI_PROT_READ_PASS) { 1322 unsigned int interval = scsi_prot_interval(scsi_cmnd); 1323 unsigned int ilog2_interval = ilog2(interval); 1324 1325 len = (task->total_xfer_len >> ilog2_interval) * 8; 1326 } 1327 } 1328 1329 hdr->dw1 = cpu_to_le32(dw1); 1330 1331 hdr->data_transfer_len = cpu_to_le32(task->total_xfer_len + len); 1332 } 1333 1334 static void prep_smp_v3_hw(struct hisi_hba *hisi_hba, 1335 struct hisi_sas_slot *slot) 1336 { 1337 struct sas_task *task = slot->task; 1338 struct hisi_sas_cmd_hdr *hdr = slot->cmd_hdr; 1339 struct domain_device *device = task->dev; 1340 struct hisi_sas_port *port = slot->port; 1341 struct scatterlist *sg_req; 1342 struct hisi_sas_device *sas_dev = device->lldd_dev; 1343 dma_addr_t req_dma_addr; 1344 unsigned int req_len; 1345 1346 /* req */ 1347 sg_req = &task->smp_task.smp_req; 1348 req_len = sg_dma_len(sg_req); 1349 req_dma_addr = sg_dma_address(sg_req); 1350 1351 /* create header */ 1352 /* dw0 */ 1353 hdr->dw0 = cpu_to_le32((port->id << CMD_HDR_PORT_OFF) | 1354 (1 << CMD_HDR_PRIORITY_OFF) | /* high pri */ 1355 (2 << CMD_HDR_CMD_OFF)); /* smp */ 1356 1357 /* map itct entry */ 1358 hdr->dw1 = cpu_to_le32((sas_dev->device_id << CMD_HDR_DEV_ID_OFF) | 1359 (1 << CMD_HDR_FRAME_TYPE_OFF) | 1360 (DIR_NO_DATA << CMD_HDR_DIR_OFF)); 1361 1362 /* dw2 */ 1363 hdr->dw2 = cpu_to_le32((((req_len - 4) / 4) << CMD_HDR_CFL_OFF) | 1364 (HISI_SAS_MAX_SMP_RESP_SZ / 4 << 1365 CMD_HDR_MRFL_OFF)); 1366 1367 hdr->transfer_tags = cpu_to_le32(slot->idx << CMD_HDR_IPTT_OFF); 1368 1369 hdr->cmd_table_addr = cpu_to_le64(req_dma_addr); 1370 hdr->sts_buffer_addr = cpu_to_le64(hisi_sas_status_buf_addr_dma(slot)); 1371 } 1372 1373 static void prep_ata_v3_hw(struct hisi_hba *hisi_hba, 1374 struct hisi_sas_slot *slot) 1375 { 1376 struct sas_task *task = slot->task; 1377 struct domain_device *device = task->dev; 1378 struct domain_device *parent_dev = device->parent; 1379 struct hisi_sas_device *sas_dev = device->lldd_dev; 1380 struct hisi_sas_cmd_hdr *hdr = slot->cmd_hdr; 1381 struct asd_sas_port *sas_port = device->port; 1382 struct hisi_sas_port *port = to_hisi_sas_port(sas_port); 1383 u8 *buf_cmd; 1384 int has_data = 0, hdr_tag = 0; 1385 u32 dw1 = 0, dw2 = 0; 1386 1387 hdr->dw0 = cpu_to_le32(port->id << CMD_HDR_PORT_OFF); 1388 if (parent_dev && dev_is_expander(parent_dev->dev_type)) 1389 hdr->dw0 |= cpu_to_le32(3 << CMD_HDR_CMD_OFF); 1390 else 1391 hdr->dw0 |= cpu_to_le32(4U << CMD_HDR_CMD_OFF); 1392 1393 switch (task->data_dir) { 1394 case DMA_TO_DEVICE: 1395 has_data = 1; 1396 dw1 |= DIR_TO_DEVICE << CMD_HDR_DIR_OFF; 1397 break; 1398 case DMA_FROM_DEVICE: 1399 has_data = 1; 1400 dw1 |= DIR_TO_INI << CMD_HDR_DIR_OFF; 1401 break; 1402 default: 1403 dw1 &= ~CMD_HDR_DIR_MSK; 1404 } 1405 1406 if ((task->ata_task.fis.command == ATA_CMD_DEV_RESET) && 1407 (task->ata_task.fis.control & ATA_SRST)) 1408 dw1 |= 1 << CMD_HDR_RESET_OFF; 1409 1410 dw1 |= (hisi_sas_get_ata_protocol( 1411 &task->ata_task.fis, task->data_dir)) 1412 << CMD_HDR_FRAME_TYPE_OFF; 1413 dw1 |= sas_dev->device_id << CMD_HDR_DEV_ID_OFF; 1414 1415 if (FIS_CMD_IS_UNCONSTRAINED(task->ata_task.fis)) 1416 dw1 |= 1 << CMD_HDR_UNCON_CMD_OFF; 1417 1418 hdr->dw1 = cpu_to_le32(dw1); 1419 1420 /* dw2 */ 1421 if (task->ata_task.use_ncq) { 1422 struct ata_queued_cmd *qc = task->uldd_task; 1423 1424 hdr_tag = qc->tag; 1425 task->ata_task.fis.sector_count |= (u8) (hdr_tag << 3); 1426 dw2 |= hdr_tag << CMD_HDR_NCQ_TAG_OFF; 1427 } 1428 1429 dw2 |= (HISI_SAS_MAX_STP_RESP_SZ / 4) << CMD_HDR_CFL_OFF | 1430 2 << CMD_HDR_SG_MOD_OFF; 1431 hdr->dw2 = cpu_to_le32(dw2); 1432 1433 /* dw3 */ 1434 hdr->transfer_tags = cpu_to_le32(slot->idx); 1435 1436 if (has_data) 1437 prep_prd_sge_v3_hw(hisi_hba, slot, hdr, task->scatter, 1438 slot->n_elem); 1439 1440 hdr->data_transfer_len = cpu_to_le32(task->total_xfer_len); 1441 hdr->cmd_table_addr = cpu_to_le64(hisi_sas_cmd_hdr_addr_dma(slot)); 1442 hdr->sts_buffer_addr = cpu_to_le64(hisi_sas_status_buf_addr_dma(slot)); 1443 1444 buf_cmd = hisi_sas_cmd_hdr_addr_mem(slot); 1445 1446 if (likely(!task->ata_task.device_control_reg_update)) 1447 task->ata_task.fis.flags |= 0x80; /* C=1: update ATA cmd reg */ 1448 /* fill in command FIS */ 1449 memcpy(buf_cmd, &task->ata_task.fis, sizeof(struct host_to_dev_fis)); 1450 } 1451 1452 static void prep_abort_v3_hw(struct hisi_hba *hisi_hba, 1453 struct hisi_sas_slot *slot, 1454 int device_id, int abort_flag, int tag_to_abort) 1455 { 1456 struct sas_task *task = slot->task; 1457 struct domain_device *dev = task->dev; 1458 struct hisi_sas_cmd_hdr *hdr = slot->cmd_hdr; 1459 struct hisi_sas_port *port = slot->port; 1460 1461 /* dw0 */ 1462 hdr->dw0 = cpu_to_le32((5U << CMD_HDR_CMD_OFF) | /*abort*/ 1463 (port->id << CMD_HDR_PORT_OFF) | 1464 (dev_is_sata(dev) 1465 << CMD_HDR_ABORT_DEVICE_TYPE_OFF) | 1466 (abort_flag 1467 << CMD_HDR_ABORT_FLAG_OFF)); 1468 1469 /* dw1 */ 1470 hdr->dw1 = cpu_to_le32(device_id 1471 << CMD_HDR_DEV_ID_OFF); 1472 1473 /* dw7 */ 1474 hdr->dw7 = cpu_to_le32(tag_to_abort << CMD_HDR_ABORT_IPTT_OFF); 1475 hdr->transfer_tags = cpu_to_le32(slot->idx); 1476 } 1477 1478 static irqreturn_t phy_up_v3_hw(int phy_no, struct hisi_hba *hisi_hba) 1479 { 1480 int i; 1481 irqreturn_t res; 1482 u32 context, port_id, link_rate; 1483 struct hisi_sas_phy *phy = &hisi_hba->phy[phy_no]; 1484 struct asd_sas_phy *sas_phy = &phy->sas_phy; 1485 struct device *dev = hisi_hba->dev; 1486 1487 del_timer(&phy->timer); 1488 hisi_sas_phy_write32(hisi_hba, phy_no, PHYCTRL_PHY_ENA_MSK, 1); 1489 1490 port_id = hisi_sas_read32(hisi_hba, PHY_PORT_NUM_MA); 1491 port_id = (port_id >> (4 * phy_no)) & 0xf; 1492 link_rate = hisi_sas_read32(hisi_hba, PHY_CONN_RATE); 1493 link_rate = (link_rate >> (phy_no * 4)) & 0xf; 1494 1495 if (port_id == 0xf) { 1496 dev_err(dev, "phyup: phy%d invalid portid\n", phy_no); 1497 res = IRQ_NONE; 1498 goto end; 1499 } 1500 sas_phy->linkrate = link_rate; 1501 phy->phy_type &= ~(PORT_TYPE_SAS | PORT_TYPE_SATA); 1502 1503 /* Check for SATA dev */ 1504 context = hisi_sas_read32(hisi_hba, PHY_CONTEXT); 1505 if (context & (1 << phy_no)) { 1506 struct hisi_sas_initial_fis *initial_fis; 1507 struct dev_to_host_fis *fis; 1508 u8 attached_sas_addr[SAS_ADDR_SIZE] = {0}; 1509 struct Scsi_Host *shost = hisi_hba->shost; 1510 1511 dev_info(dev, "phyup: phy%d link_rate=%d(sata)\n", phy_no, link_rate); 1512 initial_fis = &hisi_hba->initial_fis[phy_no]; 1513 fis = &initial_fis->fis; 1514 1515 /* check ERR bit of Status Register */ 1516 if (fis->status & ATA_ERR) { 1517 dev_warn(dev, "sata int: phy%d FIS status: 0x%x\n", 1518 phy_no, fis->status); 1519 hisi_sas_notify_phy_event(phy, HISI_PHYE_LINK_RESET); 1520 res = IRQ_NONE; 1521 goto end; 1522 } 1523 1524 sas_phy->oob_mode = SATA_OOB_MODE; 1525 attached_sas_addr[0] = 0x50; 1526 attached_sas_addr[6] = shost->host_no; 1527 attached_sas_addr[7] = phy_no; 1528 memcpy(sas_phy->attached_sas_addr, 1529 attached_sas_addr, 1530 SAS_ADDR_SIZE); 1531 memcpy(sas_phy->frame_rcvd, fis, 1532 sizeof(struct dev_to_host_fis)); 1533 phy->phy_type |= PORT_TYPE_SATA; 1534 phy->identify.device_type = SAS_SATA_DEV; 1535 phy->frame_rcvd_size = sizeof(struct dev_to_host_fis); 1536 phy->identify.target_port_protocols = SAS_PROTOCOL_SATA; 1537 } else { 1538 u32 *frame_rcvd = (u32 *)sas_phy->frame_rcvd; 1539 struct sas_identify_frame *id = 1540 (struct sas_identify_frame *)frame_rcvd; 1541 1542 dev_info(dev, "phyup: phy%d link_rate=%d\n", phy_no, link_rate); 1543 for (i = 0; i < 6; i++) { 1544 u32 idaf = hisi_sas_phy_read32(hisi_hba, phy_no, 1545 RX_IDAF_DWORD0 + (i * 4)); 1546 frame_rcvd[i] = __swab32(idaf); 1547 } 1548 sas_phy->oob_mode = SAS_OOB_MODE; 1549 memcpy(sas_phy->attached_sas_addr, 1550 &id->sas_addr, 1551 SAS_ADDR_SIZE); 1552 phy->phy_type |= PORT_TYPE_SAS; 1553 phy->identify.device_type = id->dev_type; 1554 phy->frame_rcvd_size = sizeof(struct sas_identify_frame); 1555 if (phy->identify.device_type == SAS_END_DEVICE) 1556 phy->identify.target_port_protocols = 1557 SAS_PROTOCOL_SSP; 1558 else if (phy->identify.device_type != SAS_PHY_UNUSED) 1559 phy->identify.target_port_protocols = 1560 SAS_PROTOCOL_SMP; 1561 } 1562 1563 phy->port_id = port_id; 1564 phy->phy_attached = 1; 1565 hisi_sas_notify_phy_event(phy, HISI_PHYE_PHY_UP); 1566 res = IRQ_HANDLED; 1567 end: 1568 if (phy->reset_completion) 1569 complete(phy->reset_completion); 1570 hisi_sas_phy_write32(hisi_hba, phy_no, CHL_INT0, 1571 CHL_INT0_SL_PHY_ENABLE_MSK); 1572 hisi_sas_phy_write32(hisi_hba, phy_no, PHYCTRL_PHY_ENA_MSK, 0); 1573 1574 return res; 1575 } 1576 1577 static irqreturn_t phy_down_v3_hw(int phy_no, struct hisi_hba *hisi_hba) 1578 { 1579 struct hisi_sas_phy *phy = &hisi_hba->phy[phy_no]; 1580 u32 phy_state, sl_ctrl, txid_auto; 1581 struct device *dev = hisi_hba->dev; 1582 1583 atomic_inc(&phy->down_cnt); 1584 1585 del_timer(&phy->timer); 1586 hisi_sas_phy_write32(hisi_hba, phy_no, PHYCTRL_NOT_RDY_MSK, 1); 1587 1588 phy_state = hisi_sas_read32(hisi_hba, PHY_STATE); 1589 dev_info(dev, "phydown: phy%d phy_state=0x%x\n", phy_no, phy_state); 1590 hisi_sas_phy_down(hisi_hba, phy_no, (phy_state & 1 << phy_no) ? 1 : 0, 1591 GFP_ATOMIC); 1592 1593 sl_ctrl = hisi_sas_phy_read32(hisi_hba, phy_no, SL_CONTROL); 1594 hisi_sas_phy_write32(hisi_hba, phy_no, SL_CONTROL, 1595 sl_ctrl&(~SL_CTA_MSK)); 1596 1597 txid_auto = hisi_sas_phy_read32(hisi_hba, phy_no, TXID_AUTO); 1598 hisi_sas_phy_write32(hisi_hba, phy_no, TXID_AUTO, 1599 txid_auto | CT3_MSK); 1600 1601 hisi_sas_phy_write32(hisi_hba, phy_no, CHL_INT0, CHL_INT0_NOT_RDY_MSK); 1602 hisi_sas_phy_write32(hisi_hba, phy_no, PHYCTRL_NOT_RDY_MSK, 0); 1603 1604 return IRQ_HANDLED; 1605 } 1606 1607 static irqreturn_t phy_bcast_v3_hw(int phy_no, struct hisi_hba *hisi_hba) 1608 { 1609 struct hisi_sas_phy *phy = &hisi_hba->phy[phy_no]; 1610 struct asd_sas_phy *sas_phy = &phy->sas_phy; 1611 u32 bcast_status; 1612 1613 hisi_sas_phy_write32(hisi_hba, phy_no, SL_RX_BCAST_CHK_MSK, 1); 1614 bcast_status = hisi_sas_phy_read32(hisi_hba, phy_no, RX_PRIMS_STATUS); 1615 if ((bcast_status & RX_BCAST_CHG_MSK) && 1616 !test_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags)) 1617 sas_notify_port_event(sas_phy, PORTE_BROADCAST_RCVD, 1618 GFP_ATOMIC); 1619 hisi_sas_phy_write32(hisi_hba, phy_no, CHL_INT0, 1620 CHL_INT0_SL_RX_BCST_ACK_MSK); 1621 hisi_sas_phy_write32(hisi_hba, phy_no, SL_RX_BCAST_CHK_MSK, 0); 1622 1623 return IRQ_HANDLED; 1624 } 1625 1626 static irqreturn_t int_phy_up_down_bcast_v3_hw(int irq_no, void *p) 1627 { 1628 struct hisi_hba *hisi_hba = p; 1629 u32 irq_msk; 1630 int phy_no = 0; 1631 irqreturn_t res = IRQ_NONE; 1632 1633 irq_msk = hisi_sas_read32(hisi_hba, CHNL_INT_STATUS) 1634 & 0x11111111; 1635 while (irq_msk) { 1636 if (irq_msk & 1) { 1637 u32 irq_value = hisi_sas_phy_read32(hisi_hba, phy_no, 1638 CHL_INT0); 1639 u32 phy_state = hisi_sas_read32(hisi_hba, PHY_STATE); 1640 int rdy = phy_state & (1 << phy_no); 1641 1642 if (rdy) { 1643 if (irq_value & CHL_INT0_SL_PHY_ENABLE_MSK) 1644 /* phy up */ 1645 if (phy_up_v3_hw(phy_no, hisi_hba) 1646 == IRQ_HANDLED) 1647 res = IRQ_HANDLED; 1648 if (irq_value & CHL_INT0_SL_RX_BCST_ACK_MSK) 1649 /* phy bcast */ 1650 if (phy_bcast_v3_hw(phy_no, hisi_hba) 1651 == IRQ_HANDLED) 1652 res = IRQ_HANDLED; 1653 } else { 1654 if (irq_value & CHL_INT0_NOT_RDY_MSK) 1655 /* phy down */ 1656 if (phy_down_v3_hw(phy_no, hisi_hba) 1657 == IRQ_HANDLED) 1658 res = IRQ_HANDLED; 1659 } 1660 } 1661 irq_msk >>= 4; 1662 phy_no++; 1663 } 1664 1665 return res; 1666 } 1667 1668 static const struct hisi_sas_hw_error port_axi_error[] = { 1669 { 1670 .irq_msk = BIT(CHL_INT1_DMAC_TX_ECC_MB_ERR_OFF), 1671 .msg = "dmac_tx_ecc_bad_err", 1672 }, 1673 { 1674 .irq_msk = BIT(CHL_INT1_DMAC_RX_ECC_MB_ERR_OFF), 1675 .msg = "dmac_rx_ecc_bad_err", 1676 }, 1677 { 1678 .irq_msk = BIT(CHL_INT1_DMAC_TX_AXI_WR_ERR_OFF), 1679 .msg = "dma_tx_axi_wr_err", 1680 }, 1681 { 1682 .irq_msk = BIT(CHL_INT1_DMAC_TX_AXI_RD_ERR_OFF), 1683 .msg = "dma_tx_axi_rd_err", 1684 }, 1685 { 1686 .irq_msk = BIT(CHL_INT1_DMAC_RX_AXI_WR_ERR_OFF), 1687 .msg = "dma_rx_axi_wr_err", 1688 }, 1689 { 1690 .irq_msk = BIT(CHL_INT1_DMAC_RX_AXI_RD_ERR_OFF), 1691 .msg = "dma_rx_axi_rd_err", 1692 }, 1693 { 1694 .irq_msk = BIT(CHL_INT1_DMAC_TX_FIFO_ERR_OFF), 1695 .msg = "dma_tx_fifo_err", 1696 }, 1697 { 1698 .irq_msk = BIT(CHL_INT1_DMAC_RX_FIFO_ERR_OFF), 1699 .msg = "dma_rx_fifo_err", 1700 }, 1701 { 1702 .irq_msk = BIT(CHL_INT1_DMAC_TX_AXI_RUSER_ERR_OFF), 1703 .msg = "dma_tx_axi_ruser_err", 1704 }, 1705 { 1706 .irq_msk = BIT(CHL_INT1_DMAC_RX_AXI_RUSER_ERR_OFF), 1707 .msg = "dma_rx_axi_ruser_err", 1708 }, 1709 }; 1710 1711 static void handle_chl_int1_v3_hw(struct hisi_hba *hisi_hba, int phy_no) 1712 { 1713 u32 irq_value = hisi_sas_phy_read32(hisi_hba, phy_no, CHL_INT1); 1714 u32 irq_msk = hisi_sas_phy_read32(hisi_hba, phy_no, CHL_INT1_MSK); 1715 struct device *dev = hisi_hba->dev; 1716 int i; 1717 1718 irq_value &= ~irq_msk; 1719 if (!irq_value) { 1720 dev_warn(dev, "phy%d channel int 1 received with status bits cleared\n", 1721 phy_no); 1722 return; 1723 } 1724 1725 for (i = 0; i < ARRAY_SIZE(port_axi_error); i++) { 1726 const struct hisi_sas_hw_error *error = &port_axi_error[i]; 1727 1728 if (!(irq_value & error->irq_msk)) 1729 continue; 1730 1731 dev_err(dev, "%s error (phy%d 0x%x) found!\n", 1732 error->msg, phy_no, irq_value); 1733 queue_work(hisi_hba->wq, &hisi_hba->rst_work); 1734 } 1735 1736 hisi_sas_phy_write32(hisi_hba, phy_no, CHL_INT1, irq_value); 1737 } 1738 1739 static void phy_get_events_v3_hw(struct hisi_hba *hisi_hba, int phy_no) 1740 { 1741 struct hisi_sas_phy *phy = &hisi_hba->phy[phy_no]; 1742 struct asd_sas_phy *sas_phy = &phy->sas_phy; 1743 struct sas_phy *sphy = sas_phy->phy; 1744 unsigned long flags; 1745 u32 reg_value; 1746 1747 spin_lock_irqsave(&phy->lock, flags); 1748 1749 /* loss dword sync */ 1750 reg_value = hisi_sas_phy_read32(hisi_hba, phy_no, ERR_CNT_DWS_LOST); 1751 sphy->loss_of_dword_sync_count += reg_value; 1752 1753 /* phy reset problem */ 1754 reg_value = hisi_sas_phy_read32(hisi_hba, phy_no, ERR_CNT_RESET_PROB); 1755 sphy->phy_reset_problem_count += reg_value; 1756 1757 /* invalid dword */ 1758 reg_value = hisi_sas_phy_read32(hisi_hba, phy_no, ERR_CNT_INVLD_DW); 1759 sphy->invalid_dword_count += reg_value; 1760 1761 /* disparity err */ 1762 reg_value = hisi_sas_phy_read32(hisi_hba, phy_no, ERR_CNT_DISP_ERR); 1763 sphy->running_disparity_error_count += reg_value; 1764 1765 /* code violation error */ 1766 reg_value = hisi_sas_phy_read32(hisi_hba, phy_no, ERR_CNT_CODE_ERR); 1767 phy->code_violation_err_count += reg_value; 1768 1769 spin_unlock_irqrestore(&phy->lock, flags); 1770 } 1771 1772 static void handle_chl_int2_v3_hw(struct hisi_hba *hisi_hba, int phy_no) 1773 { 1774 u32 irq_msk = hisi_sas_phy_read32(hisi_hba, phy_no, CHL_INT2_MSK); 1775 u32 irq_value = hisi_sas_phy_read32(hisi_hba, phy_no, CHL_INT2); 1776 struct hisi_sas_phy *phy = &hisi_hba->phy[phy_no]; 1777 struct pci_dev *pci_dev = hisi_hba->pci_dev; 1778 struct device *dev = hisi_hba->dev; 1779 static const u32 msk = BIT(CHL_INT2_RX_DISP_ERR_OFF) | 1780 BIT(CHL_INT2_RX_CODE_ERR_OFF) | 1781 BIT(CHL_INT2_RX_INVLD_DW_OFF); 1782 1783 irq_value &= ~irq_msk; 1784 if (!irq_value) { 1785 dev_warn(dev, "phy%d channel int 2 received with status bits cleared\n", 1786 phy_no); 1787 return; 1788 } 1789 1790 if (irq_value & BIT(CHL_INT2_SL_IDAF_TOUT_CONF_OFF)) { 1791 dev_warn(dev, "phy%d identify timeout\n", phy_no); 1792 hisi_sas_notify_phy_event(phy, HISI_PHYE_LINK_RESET); 1793 } 1794 1795 if (irq_value & BIT(CHL_INT2_STP_LINK_TIMEOUT_OFF)) { 1796 u32 reg_value = hisi_sas_phy_read32(hisi_hba, phy_no, 1797 STP_LINK_TIMEOUT_STATE); 1798 1799 dev_warn(dev, "phy%d stp link timeout (0x%x)\n", 1800 phy_no, reg_value); 1801 if (reg_value & BIT(4)) 1802 hisi_sas_notify_phy_event(phy, HISI_PHYE_LINK_RESET); 1803 } 1804 1805 if (pci_dev->revision > 0x20 && (irq_value & msk)) { 1806 struct asd_sas_phy *sas_phy = &phy->sas_phy; 1807 struct sas_phy *sphy = sas_phy->phy; 1808 1809 phy_get_events_v3_hw(hisi_hba, phy_no); 1810 1811 if (irq_value & BIT(CHL_INT2_RX_INVLD_DW_OFF)) 1812 dev_info(dev, "phy%d invalid dword cnt: %u\n", phy_no, 1813 sphy->invalid_dword_count); 1814 1815 if (irq_value & BIT(CHL_INT2_RX_CODE_ERR_OFF)) 1816 dev_info(dev, "phy%d code violation cnt: %u\n", phy_no, 1817 phy->code_violation_err_count); 1818 1819 if (irq_value & BIT(CHL_INT2_RX_DISP_ERR_OFF)) 1820 dev_info(dev, "phy%d disparity error cnt: %u\n", phy_no, 1821 sphy->running_disparity_error_count); 1822 } 1823 1824 if ((irq_value & BIT(CHL_INT2_RX_INVLD_DW_OFF)) && 1825 (pci_dev->revision == 0x20)) { 1826 u32 reg_value; 1827 int rc; 1828 1829 rc = hisi_sas_read32_poll_timeout_atomic( 1830 HILINK_ERR_DFX, reg_value, 1831 !((reg_value >> 8) & BIT(phy_no)), 1832 1000, 10000); 1833 if (rc) 1834 hisi_sas_notify_phy_event(phy, HISI_PHYE_LINK_RESET); 1835 } 1836 1837 hisi_sas_phy_write32(hisi_hba, phy_no, CHL_INT2, irq_value); 1838 } 1839 1840 static void handle_chl_int0_v3_hw(struct hisi_hba *hisi_hba, int phy_no) 1841 { 1842 u32 irq_value0 = hisi_sas_phy_read32(hisi_hba, phy_no, CHL_INT0); 1843 1844 if (irq_value0 & CHL_INT0_PHY_RDY_MSK) 1845 hisi_sas_phy_oob_ready(hisi_hba, phy_no); 1846 1847 hisi_sas_phy_write32(hisi_hba, phy_no, CHL_INT0, 1848 irq_value0 & (~CHL_INT0_SL_RX_BCST_ACK_MSK) 1849 & (~CHL_INT0_SL_PHY_ENABLE_MSK) 1850 & (~CHL_INT0_NOT_RDY_MSK)); 1851 } 1852 1853 static irqreturn_t int_chnl_int_v3_hw(int irq_no, void *p) 1854 { 1855 struct hisi_hba *hisi_hba = p; 1856 u32 irq_msk; 1857 int phy_no = 0; 1858 1859 irq_msk = hisi_sas_read32(hisi_hba, CHNL_INT_STATUS) 1860 & CHNL_INT_STS_MSK; 1861 1862 while (irq_msk) { 1863 if (irq_msk & (CHNL_INT_STS_INT0_MSK << (phy_no * CHNL_WIDTH))) 1864 handle_chl_int0_v3_hw(hisi_hba, phy_no); 1865 1866 if (irq_msk & (CHNL_INT_STS_INT1_MSK << (phy_no * CHNL_WIDTH))) 1867 handle_chl_int1_v3_hw(hisi_hba, phy_no); 1868 1869 if (irq_msk & (CHNL_INT_STS_INT2_MSK << (phy_no * CHNL_WIDTH))) 1870 handle_chl_int2_v3_hw(hisi_hba, phy_no); 1871 1872 irq_msk &= ~(CHNL_INT_STS_PHY_MSK << (phy_no * CHNL_WIDTH)); 1873 phy_no++; 1874 } 1875 1876 return IRQ_HANDLED; 1877 } 1878 1879 static const struct hisi_sas_hw_error multi_bit_ecc_errors[] = { 1880 { 1881 .irq_msk = BIT(SAS_ECC_INTR_DQE_ECC_MB_OFF), 1882 .msk = HGC_DQE_ECC_MB_ADDR_MSK, 1883 .shift = HGC_DQE_ECC_MB_ADDR_OFF, 1884 .msg = "hgc_dqe_eccbad_intr", 1885 .reg = HGC_DQE_ECC_ADDR, 1886 }, 1887 { 1888 .irq_msk = BIT(SAS_ECC_INTR_IOST_ECC_MB_OFF), 1889 .msk = HGC_IOST_ECC_MB_ADDR_MSK, 1890 .shift = HGC_IOST_ECC_MB_ADDR_OFF, 1891 .msg = "hgc_iost_eccbad_intr", 1892 .reg = HGC_IOST_ECC_ADDR, 1893 }, 1894 { 1895 .irq_msk = BIT(SAS_ECC_INTR_ITCT_ECC_MB_OFF), 1896 .msk = HGC_ITCT_ECC_MB_ADDR_MSK, 1897 .shift = HGC_ITCT_ECC_MB_ADDR_OFF, 1898 .msg = "hgc_itct_eccbad_intr", 1899 .reg = HGC_ITCT_ECC_ADDR, 1900 }, 1901 { 1902 .irq_msk = BIT(SAS_ECC_INTR_IOSTLIST_ECC_MB_OFF), 1903 .msk = HGC_LM_DFX_STATUS2_IOSTLIST_MSK, 1904 .shift = HGC_LM_DFX_STATUS2_IOSTLIST_OFF, 1905 .msg = "hgc_iostl_eccbad_intr", 1906 .reg = HGC_LM_DFX_STATUS2, 1907 }, 1908 { 1909 .irq_msk = BIT(SAS_ECC_INTR_ITCTLIST_ECC_MB_OFF), 1910 .msk = HGC_LM_DFX_STATUS2_ITCTLIST_MSK, 1911 .shift = HGC_LM_DFX_STATUS2_ITCTLIST_OFF, 1912 .msg = "hgc_itctl_eccbad_intr", 1913 .reg = HGC_LM_DFX_STATUS2, 1914 }, 1915 { 1916 .irq_msk = BIT(SAS_ECC_INTR_CQE_ECC_MB_OFF), 1917 .msk = HGC_CQE_ECC_MB_ADDR_MSK, 1918 .shift = HGC_CQE_ECC_MB_ADDR_OFF, 1919 .msg = "hgc_cqe_eccbad_intr", 1920 .reg = HGC_CQE_ECC_ADDR, 1921 }, 1922 { 1923 .irq_msk = BIT(SAS_ECC_INTR_NCQ_MEM0_ECC_MB_OFF), 1924 .msk = HGC_RXM_DFX_STATUS14_MEM0_MSK, 1925 .shift = HGC_RXM_DFX_STATUS14_MEM0_OFF, 1926 .msg = "rxm_mem0_eccbad_intr", 1927 .reg = HGC_RXM_DFX_STATUS14, 1928 }, 1929 { 1930 .irq_msk = BIT(SAS_ECC_INTR_NCQ_MEM1_ECC_MB_OFF), 1931 .msk = HGC_RXM_DFX_STATUS14_MEM1_MSK, 1932 .shift = HGC_RXM_DFX_STATUS14_MEM1_OFF, 1933 .msg = "rxm_mem1_eccbad_intr", 1934 .reg = HGC_RXM_DFX_STATUS14, 1935 }, 1936 { 1937 .irq_msk = BIT(SAS_ECC_INTR_NCQ_MEM2_ECC_MB_OFF), 1938 .msk = HGC_RXM_DFX_STATUS14_MEM2_MSK, 1939 .shift = HGC_RXM_DFX_STATUS14_MEM2_OFF, 1940 .msg = "rxm_mem2_eccbad_intr", 1941 .reg = HGC_RXM_DFX_STATUS14, 1942 }, 1943 { 1944 .irq_msk = BIT(SAS_ECC_INTR_NCQ_MEM3_ECC_MB_OFF), 1945 .msk = HGC_RXM_DFX_STATUS15_MEM3_MSK, 1946 .shift = HGC_RXM_DFX_STATUS15_MEM3_OFF, 1947 .msg = "rxm_mem3_eccbad_intr", 1948 .reg = HGC_RXM_DFX_STATUS15, 1949 }, 1950 { 1951 .irq_msk = BIT(SAS_ECC_INTR_OOO_RAM_ECC_MB_OFF), 1952 .msk = AM_ROB_ECC_ERR_ADDR_MSK, 1953 .shift = AM_ROB_ECC_ERR_ADDR_OFF, 1954 .msg = "ooo_ram_eccbad_intr", 1955 .reg = AM_ROB_ECC_ERR_ADDR, 1956 }, 1957 }; 1958 1959 static void multi_bit_ecc_error_process_v3_hw(struct hisi_hba *hisi_hba, 1960 u32 irq_value) 1961 { 1962 struct device *dev = hisi_hba->dev; 1963 const struct hisi_sas_hw_error *ecc_error; 1964 u32 val; 1965 int i; 1966 1967 for (i = 0; i < ARRAY_SIZE(multi_bit_ecc_errors); i++) { 1968 ecc_error = &multi_bit_ecc_errors[i]; 1969 if (irq_value & ecc_error->irq_msk) { 1970 val = hisi_sas_read32(hisi_hba, ecc_error->reg); 1971 val &= ecc_error->msk; 1972 val >>= ecc_error->shift; 1973 dev_err(dev, "%s (0x%x) found: mem addr is 0x%08X\n", 1974 ecc_error->msg, irq_value, val); 1975 queue_work(hisi_hba->wq, &hisi_hba->rst_work); 1976 } 1977 } 1978 } 1979 1980 static void fatal_ecc_int_v3_hw(struct hisi_hba *hisi_hba) 1981 { 1982 u32 irq_value, irq_msk; 1983 1984 irq_msk = hisi_sas_read32(hisi_hba, SAS_ECC_INTR_MSK); 1985 hisi_sas_write32(hisi_hba, SAS_ECC_INTR_MSK, 0xffffffff); 1986 1987 irq_value = hisi_sas_read32(hisi_hba, SAS_ECC_INTR); 1988 if (irq_value) 1989 multi_bit_ecc_error_process_v3_hw(hisi_hba, irq_value); 1990 1991 hisi_sas_write32(hisi_hba, SAS_ECC_INTR, irq_value); 1992 hisi_sas_write32(hisi_hba, SAS_ECC_INTR_MSK, irq_msk); 1993 } 1994 1995 static const struct hisi_sas_hw_error axi_error[] = { 1996 { .msk = BIT(0), .msg = "IOST_AXI_W_ERR" }, 1997 { .msk = BIT(1), .msg = "IOST_AXI_R_ERR" }, 1998 { .msk = BIT(2), .msg = "ITCT_AXI_W_ERR" }, 1999 { .msk = BIT(3), .msg = "ITCT_AXI_R_ERR" }, 2000 { .msk = BIT(4), .msg = "SATA_AXI_W_ERR" }, 2001 { .msk = BIT(5), .msg = "SATA_AXI_R_ERR" }, 2002 { .msk = BIT(6), .msg = "DQE_AXI_R_ERR" }, 2003 { .msk = BIT(7), .msg = "CQE_AXI_W_ERR" }, 2004 {} 2005 }; 2006 2007 static const struct hisi_sas_hw_error fifo_error[] = { 2008 { .msk = BIT(8), .msg = "CQE_WINFO_FIFO" }, 2009 { .msk = BIT(9), .msg = "CQE_MSG_FIFIO" }, 2010 { .msk = BIT(10), .msg = "GETDQE_FIFO" }, 2011 { .msk = BIT(11), .msg = "CMDP_FIFO" }, 2012 { .msk = BIT(12), .msg = "AWTCTRL_FIFO" }, 2013 {} 2014 }; 2015 2016 static const struct hisi_sas_hw_error fatal_axi_error[] = { 2017 { 2018 .irq_msk = BIT(ENT_INT_SRC3_WP_DEPTH_OFF), 2019 .msg = "write pointer and depth", 2020 }, 2021 { 2022 .irq_msk = BIT(ENT_INT_SRC3_IPTT_SLOT_NOMATCH_OFF), 2023 .msg = "iptt no match slot", 2024 }, 2025 { 2026 .irq_msk = BIT(ENT_INT_SRC3_RP_DEPTH_OFF), 2027 .msg = "read pointer and depth", 2028 }, 2029 { 2030 .irq_msk = BIT(ENT_INT_SRC3_AXI_OFF), 2031 .reg = HGC_AXI_FIFO_ERR_INFO, 2032 .sub = axi_error, 2033 }, 2034 { 2035 .irq_msk = BIT(ENT_INT_SRC3_FIFO_OFF), 2036 .reg = HGC_AXI_FIFO_ERR_INFO, 2037 .sub = fifo_error, 2038 }, 2039 { 2040 .irq_msk = BIT(ENT_INT_SRC3_LM_OFF), 2041 .msg = "LM add/fetch list", 2042 }, 2043 { 2044 .irq_msk = BIT(ENT_INT_SRC3_ABT_OFF), 2045 .msg = "SAS_HGC_ABT fetch LM list", 2046 }, 2047 { 2048 .irq_msk = BIT(ENT_INT_SRC3_DQE_POISON_OFF), 2049 .msg = "read dqe poison", 2050 }, 2051 { 2052 .irq_msk = BIT(ENT_INT_SRC3_IOST_POISON_OFF), 2053 .msg = "read iost poison", 2054 }, 2055 { 2056 .irq_msk = BIT(ENT_INT_SRC3_ITCT_POISON_OFF), 2057 .msg = "read itct poison", 2058 }, 2059 { 2060 .irq_msk = BIT(ENT_INT_SRC3_ITCT_NCQ_POISON_OFF), 2061 .msg = "read itct ncq poison", 2062 }, 2063 2064 }; 2065 2066 static irqreturn_t fatal_axi_int_v3_hw(int irq_no, void *p) 2067 { 2068 u32 irq_value, irq_msk; 2069 struct hisi_hba *hisi_hba = p; 2070 struct device *dev = hisi_hba->dev; 2071 struct pci_dev *pdev = hisi_hba->pci_dev; 2072 int i; 2073 2074 irq_msk = hisi_sas_read32(hisi_hba, ENT_INT_SRC_MSK3); 2075 hisi_sas_write32(hisi_hba, ENT_INT_SRC_MSK3, irq_msk | 0x1df00); 2076 2077 irq_value = hisi_sas_read32(hisi_hba, ENT_INT_SRC3); 2078 irq_value &= ~irq_msk; 2079 2080 for (i = 0; i < ARRAY_SIZE(fatal_axi_error); i++) { 2081 const struct hisi_sas_hw_error *error = &fatal_axi_error[i]; 2082 2083 if (!(irq_value & error->irq_msk)) 2084 continue; 2085 2086 if (error->sub) { 2087 const struct hisi_sas_hw_error *sub = error->sub; 2088 u32 err_value = hisi_sas_read32(hisi_hba, error->reg); 2089 2090 for (; sub->msk || sub->msg; sub++) { 2091 if (!(err_value & sub->msk)) 2092 continue; 2093 2094 dev_err(dev, "%s error (0x%x) found!\n", 2095 sub->msg, irq_value); 2096 queue_work(hisi_hba->wq, &hisi_hba->rst_work); 2097 } 2098 } else { 2099 dev_err(dev, "%s error (0x%x) found!\n", 2100 error->msg, irq_value); 2101 queue_work(hisi_hba->wq, &hisi_hba->rst_work); 2102 } 2103 2104 if (pdev->revision < 0x21) { 2105 u32 reg_val; 2106 2107 reg_val = hisi_sas_read32(hisi_hba, 2108 AXI_MASTER_CFG_BASE + 2109 AM_CTRL_GLOBAL); 2110 reg_val |= AM_CTRL_SHUTDOWN_REQ_MSK; 2111 hisi_sas_write32(hisi_hba, AXI_MASTER_CFG_BASE + 2112 AM_CTRL_GLOBAL, reg_val); 2113 } 2114 } 2115 2116 fatal_ecc_int_v3_hw(hisi_hba); 2117 2118 if (irq_value & BIT(ENT_INT_SRC3_ITC_INT_OFF)) { 2119 u32 reg_val = hisi_sas_read32(hisi_hba, ITCT_CLR); 2120 u32 dev_id = reg_val & ITCT_DEV_MSK; 2121 struct hisi_sas_device *sas_dev = 2122 &hisi_hba->devices[dev_id]; 2123 2124 hisi_sas_write32(hisi_hba, ITCT_CLR, 0); 2125 dev_dbg(dev, "clear ITCT ok\n"); 2126 complete(sas_dev->completion); 2127 } 2128 2129 hisi_sas_write32(hisi_hba, ENT_INT_SRC3, irq_value & 0x1df00); 2130 hisi_sas_write32(hisi_hba, ENT_INT_SRC_MSK3, irq_msk); 2131 2132 return IRQ_HANDLED; 2133 } 2134 2135 static void 2136 slot_err_v3_hw(struct hisi_hba *hisi_hba, struct sas_task *task, 2137 struct hisi_sas_slot *slot) 2138 { 2139 struct task_status_struct *ts = &task->task_status; 2140 struct hisi_sas_complete_v3_hdr *complete_queue = 2141 hisi_hba->complete_hdr[slot->cmplt_queue]; 2142 struct hisi_sas_complete_v3_hdr *complete_hdr = 2143 &complete_queue[slot->cmplt_queue_slot]; 2144 struct hisi_sas_err_record_v3 *record = 2145 hisi_sas_status_buf_addr_mem(slot); 2146 u32 dma_rx_err_type = le32_to_cpu(record->dma_rx_err_type); 2147 u32 trans_tx_fail_type = le32_to_cpu(record->trans_tx_fail_type); 2148 u32 dw3 = le32_to_cpu(complete_hdr->dw3); 2149 2150 switch (task->task_proto) { 2151 case SAS_PROTOCOL_SSP: 2152 if (dma_rx_err_type & RX_DATA_LEN_UNDERFLOW_MSK) { 2153 ts->residual = trans_tx_fail_type; 2154 ts->stat = SAS_DATA_UNDERRUN; 2155 } else if (dw3 & CMPLT_HDR_IO_IN_TARGET_MSK) { 2156 ts->stat = SAS_QUEUE_FULL; 2157 slot->abort = 1; 2158 } else { 2159 ts->stat = SAS_OPEN_REJECT; 2160 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY; 2161 } 2162 break; 2163 case SAS_PROTOCOL_SATA: 2164 case SAS_PROTOCOL_STP: 2165 case SAS_PROTOCOL_SATA | SAS_PROTOCOL_STP: 2166 if (dma_rx_err_type & RX_DATA_LEN_UNDERFLOW_MSK) { 2167 ts->residual = trans_tx_fail_type; 2168 ts->stat = SAS_DATA_UNDERRUN; 2169 } else if (dw3 & CMPLT_HDR_IO_IN_TARGET_MSK) { 2170 ts->stat = SAS_PHY_DOWN; 2171 slot->abort = 1; 2172 } else { 2173 ts->stat = SAS_OPEN_REJECT; 2174 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY; 2175 } 2176 hisi_sas_sata_done(task, slot); 2177 break; 2178 case SAS_PROTOCOL_SMP: 2179 ts->stat = SAS_SAM_STAT_CHECK_CONDITION; 2180 break; 2181 default: 2182 break; 2183 } 2184 } 2185 2186 static void slot_complete_v3_hw(struct hisi_hba *hisi_hba, 2187 struct hisi_sas_slot *slot) 2188 { 2189 struct sas_task *task = slot->task; 2190 struct hisi_sas_device *sas_dev; 2191 struct device *dev = hisi_hba->dev; 2192 struct task_status_struct *ts; 2193 struct domain_device *device; 2194 struct sas_ha_struct *ha; 2195 struct hisi_sas_complete_v3_hdr *complete_queue = 2196 hisi_hba->complete_hdr[slot->cmplt_queue]; 2197 struct hisi_sas_complete_v3_hdr *complete_hdr = 2198 &complete_queue[slot->cmplt_queue_slot]; 2199 unsigned long flags; 2200 bool is_internal = slot->is_internal; 2201 u32 dw0, dw1, dw3; 2202 2203 if (unlikely(!task || !task->lldd_task || !task->dev)) 2204 return; 2205 2206 ts = &task->task_status; 2207 device = task->dev; 2208 ha = device->port->ha; 2209 sas_dev = device->lldd_dev; 2210 2211 spin_lock_irqsave(&task->task_state_lock, flags); 2212 task->task_state_flags &= 2213 ~(SAS_TASK_STATE_PENDING | SAS_TASK_AT_INITIATOR); 2214 spin_unlock_irqrestore(&task->task_state_lock, flags); 2215 2216 memset(ts, 0, sizeof(*ts)); 2217 ts->resp = SAS_TASK_COMPLETE; 2218 2219 if (unlikely(!sas_dev)) { 2220 dev_dbg(dev, "slot complete: port has not device\n"); 2221 ts->stat = SAS_PHY_DOWN; 2222 goto out; 2223 } 2224 2225 dw0 = le32_to_cpu(complete_hdr->dw0); 2226 dw1 = le32_to_cpu(complete_hdr->dw1); 2227 dw3 = le32_to_cpu(complete_hdr->dw3); 2228 2229 /* 2230 * Use SAS+TMF status codes 2231 */ 2232 switch ((dw0 & CMPLT_HDR_ABORT_STAT_MSK) >> CMPLT_HDR_ABORT_STAT_OFF) { 2233 case STAT_IO_ABORTED: 2234 /* this IO has been aborted by abort command */ 2235 ts->stat = SAS_ABORTED_TASK; 2236 goto out; 2237 case STAT_IO_COMPLETE: 2238 /* internal abort command complete */ 2239 ts->stat = TMF_RESP_FUNC_SUCC; 2240 goto out; 2241 case STAT_IO_NO_DEVICE: 2242 ts->stat = TMF_RESP_FUNC_COMPLETE; 2243 goto out; 2244 case STAT_IO_NOT_VALID: 2245 /* 2246 * abort single IO, the controller can't find the IO 2247 */ 2248 ts->stat = TMF_RESP_FUNC_FAILED; 2249 goto out; 2250 default: 2251 break; 2252 } 2253 2254 /* check for erroneous completion */ 2255 if ((dw0 & CMPLT_HDR_CMPLT_MSK) == 0x3) { 2256 u32 *error_info = hisi_sas_status_buf_addr_mem(slot); 2257 2258 slot_err_v3_hw(hisi_hba, task, slot); 2259 if (ts->stat != SAS_DATA_UNDERRUN) 2260 dev_info(dev, "erroneous completion iptt=%d task=%pK dev id=%d addr=%016llx CQ hdr: 0x%x 0x%x 0x%x 0x%x Error info: 0x%x 0x%x 0x%x 0x%x\n", 2261 slot->idx, task, sas_dev->device_id, 2262 SAS_ADDR(device->sas_addr), 2263 dw0, dw1, complete_hdr->act, dw3, 2264 error_info[0], error_info[1], 2265 error_info[2], error_info[3]); 2266 if (unlikely(slot->abort)) { 2267 sas_task_abort(task); 2268 return; 2269 } 2270 goto out; 2271 } 2272 2273 switch (task->task_proto) { 2274 case SAS_PROTOCOL_SSP: { 2275 struct ssp_response_iu *iu = 2276 hisi_sas_status_buf_addr_mem(slot) + 2277 sizeof(struct hisi_sas_err_record); 2278 2279 sas_ssp_task_response(dev, task, iu); 2280 break; 2281 } 2282 case SAS_PROTOCOL_SMP: { 2283 struct scatterlist *sg_resp = &task->smp_task.smp_resp; 2284 void *to = page_address(sg_page(sg_resp)); 2285 2286 ts->stat = SAS_SAM_STAT_GOOD; 2287 2288 dma_unmap_sg(dev, &task->smp_task.smp_req, 1, 2289 DMA_TO_DEVICE); 2290 memcpy(to + sg_resp->offset, 2291 hisi_sas_status_buf_addr_mem(slot) + 2292 sizeof(struct hisi_sas_err_record), 2293 sg_resp->length); 2294 break; 2295 } 2296 case SAS_PROTOCOL_SATA: 2297 case SAS_PROTOCOL_STP: 2298 case SAS_PROTOCOL_SATA | SAS_PROTOCOL_STP: 2299 ts->stat = SAS_SAM_STAT_GOOD; 2300 hisi_sas_sata_done(task, slot); 2301 break; 2302 default: 2303 ts->stat = SAS_SAM_STAT_CHECK_CONDITION; 2304 break; 2305 } 2306 2307 if (!slot->port->port_attached) { 2308 dev_warn(dev, "slot complete: port %d has removed\n", 2309 slot->port->sas_port.id); 2310 ts->stat = SAS_PHY_DOWN; 2311 } 2312 2313 out: 2314 spin_lock_irqsave(&task->task_state_lock, flags); 2315 if (task->task_state_flags & SAS_TASK_STATE_ABORTED) { 2316 spin_unlock_irqrestore(&task->task_state_lock, flags); 2317 dev_info(dev, "slot complete: task(%pK) aborted\n", task); 2318 return; 2319 } 2320 task->task_state_flags |= SAS_TASK_STATE_DONE; 2321 spin_unlock_irqrestore(&task->task_state_lock, flags); 2322 hisi_sas_slot_task_free(hisi_hba, task, slot); 2323 2324 if (!is_internal && (task->task_proto != SAS_PROTOCOL_SMP)) { 2325 spin_lock_irqsave(&device->done_lock, flags); 2326 if (test_bit(SAS_HA_FROZEN, &ha->state)) { 2327 spin_unlock_irqrestore(&device->done_lock, flags); 2328 dev_info(dev, "slot complete: task(%pK) ignored\n ", 2329 task); 2330 return; 2331 } 2332 spin_unlock_irqrestore(&device->done_lock, flags); 2333 } 2334 2335 if (task->task_done) 2336 task->task_done(task); 2337 } 2338 2339 static irqreturn_t cq_thread_v3_hw(int irq_no, void *p) 2340 { 2341 struct hisi_sas_cq *cq = p; 2342 struct hisi_hba *hisi_hba = cq->hisi_hba; 2343 struct hisi_sas_slot *slot; 2344 struct hisi_sas_complete_v3_hdr *complete_queue; 2345 u32 rd_point = cq->rd_point, wr_point; 2346 int queue = cq->id; 2347 2348 complete_queue = hisi_hba->complete_hdr[queue]; 2349 2350 wr_point = hisi_sas_read32(hisi_hba, COMPL_Q_0_WR_PTR + 2351 (0x14 * queue)); 2352 2353 while (rd_point != wr_point) { 2354 struct hisi_sas_complete_v3_hdr *complete_hdr; 2355 struct device *dev = hisi_hba->dev; 2356 u32 dw1; 2357 int iptt; 2358 2359 complete_hdr = &complete_queue[rd_point]; 2360 dw1 = le32_to_cpu(complete_hdr->dw1); 2361 2362 iptt = dw1 & CMPLT_HDR_IPTT_MSK; 2363 if (likely(iptt < HISI_SAS_COMMAND_ENTRIES_V3_HW)) { 2364 slot = &hisi_hba->slot_info[iptt]; 2365 slot->cmplt_queue_slot = rd_point; 2366 slot->cmplt_queue = queue; 2367 slot_complete_v3_hw(hisi_hba, slot); 2368 } else 2369 dev_err(dev, "IPTT %d is invalid, discard it.\n", iptt); 2370 2371 if (++rd_point >= HISI_SAS_QUEUE_SLOTS) 2372 rd_point = 0; 2373 } 2374 2375 /* update rd_point */ 2376 cq->rd_point = rd_point; 2377 hisi_sas_write32(hisi_hba, COMPL_Q_0_RD_PTR + (0x14 * queue), rd_point); 2378 2379 return IRQ_HANDLED; 2380 } 2381 2382 static irqreturn_t cq_interrupt_v3_hw(int irq_no, void *p) 2383 { 2384 struct hisi_sas_cq *cq = p; 2385 struct hisi_hba *hisi_hba = cq->hisi_hba; 2386 int queue = cq->id; 2387 2388 hisi_sas_write32(hisi_hba, OQ_INT_SRC, 1 << queue); 2389 2390 return IRQ_WAKE_THREAD; 2391 } 2392 2393 static int interrupt_preinit_v3_hw(struct hisi_hba *hisi_hba) 2394 { 2395 int vectors; 2396 int max_msi = HISI_SAS_MSI_COUNT_V3_HW, min_msi; 2397 struct Scsi_Host *shost = hisi_hba->shost; 2398 struct irq_affinity desc = { 2399 .pre_vectors = BASE_VECTORS_V3_HW, 2400 }; 2401 2402 min_msi = MIN_AFFINE_VECTORS_V3_HW; 2403 vectors = pci_alloc_irq_vectors_affinity(hisi_hba->pci_dev, 2404 min_msi, max_msi, 2405 PCI_IRQ_MSI | 2406 PCI_IRQ_AFFINITY, 2407 &desc); 2408 if (vectors < 0) 2409 return -ENOENT; 2410 2411 2412 hisi_hba->cq_nvecs = vectors - BASE_VECTORS_V3_HW; 2413 shost->nr_hw_queues = hisi_hba->cq_nvecs; 2414 2415 return 0; 2416 } 2417 2418 static int interrupt_init_v3_hw(struct hisi_hba *hisi_hba) 2419 { 2420 struct device *dev = hisi_hba->dev; 2421 struct pci_dev *pdev = hisi_hba->pci_dev; 2422 int rc, i; 2423 2424 rc = devm_request_irq(dev, pci_irq_vector(pdev, 1), 2425 int_phy_up_down_bcast_v3_hw, 0, 2426 DRV_NAME " phy", hisi_hba); 2427 if (rc) { 2428 dev_err(dev, "could not request phy interrupt, rc=%d\n", rc); 2429 return -ENOENT; 2430 } 2431 2432 rc = devm_request_irq(dev, pci_irq_vector(pdev, 2), 2433 int_chnl_int_v3_hw, 0, 2434 DRV_NAME " channel", hisi_hba); 2435 if (rc) { 2436 dev_err(dev, "could not request chnl interrupt, rc=%d\n", rc); 2437 return -ENOENT; 2438 } 2439 2440 rc = devm_request_irq(dev, pci_irq_vector(pdev, 11), 2441 fatal_axi_int_v3_hw, 0, 2442 DRV_NAME " fatal", hisi_hba); 2443 if (rc) { 2444 dev_err(dev, "could not request fatal interrupt, rc=%d\n", rc); 2445 return -ENOENT; 2446 } 2447 2448 if (hisi_sas_intr_conv) 2449 dev_info(dev, "Enable interrupt converge\n"); 2450 2451 for (i = 0; i < hisi_hba->cq_nvecs; i++) { 2452 struct hisi_sas_cq *cq = &hisi_hba->cq[i]; 2453 int nr = hisi_sas_intr_conv ? 16 : 16 + i; 2454 unsigned long irqflags = hisi_sas_intr_conv ? IRQF_SHARED : 2455 IRQF_ONESHOT; 2456 2457 cq->irq_no = pci_irq_vector(pdev, nr); 2458 rc = devm_request_threaded_irq(dev, cq->irq_no, 2459 cq_interrupt_v3_hw, 2460 cq_thread_v3_hw, 2461 irqflags, 2462 DRV_NAME " cq", cq); 2463 if (rc) { 2464 dev_err(dev, "could not request cq%d interrupt, rc=%d\n", 2465 i, rc); 2466 return -ENOENT; 2467 } 2468 cq->irq_mask = pci_irq_get_affinity(pdev, i + BASE_VECTORS_V3_HW); 2469 if (!cq->irq_mask) { 2470 dev_err(dev, "could not get cq%d irq affinity!\n", i); 2471 return -ENOENT; 2472 } 2473 } 2474 2475 return 0; 2476 } 2477 2478 static int hisi_sas_v3_init(struct hisi_hba *hisi_hba) 2479 { 2480 int rc; 2481 2482 rc = hw_init_v3_hw(hisi_hba); 2483 if (rc) 2484 return rc; 2485 2486 rc = interrupt_init_v3_hw(hisi_hba); 2487 if (rc) 2488 return rc; 2489 2490 return 0; 2491 } 2492 2493 static void phy_set_linkrate_v3_hw(struct hisi_hba *hisi_hba, int phy_no, 2494 struct sas_phy_linkrates *r) 2495 { 2496 enum sas_linkrate max = r->maximum_linkrate; 2497 u32 prog_phy_link_rate = hisi_sas_phy_read32(hisi_hba, phy_no, 2498 PROG_PHY_LINK_RATE); 2499 2500 prog_phy_link_rate &= ~CFG_PROG_PHY_LINK_RATE_MSK; 2501 prog_phy_link_rate |= hisi_sas_get_prog_phy_linkrate_mask(max); 2502 hisi_sas_phy_write32(hisi_hba, phy_no, PROG_PHY_LINK_RATE, 2503 prog_phy_link_rate); 2504 } 2505 2506 static void interrupt_disable_v3_hw(struct hisi_hba *hisi_hba) 2507 { 2508 struct pci_dev *pdev = hisi_hba->pci_dev; 2509 int i; 2510 2511 synchronize_irq(pci_irq_vector(pdev, 1)); 2512 synchronize_irq(pci_irq_vector(pdev, 2)); 2513 synchronize_irq(pci_irq_vector(pdev, 11)); 2514 for (i = 0; i < hisi_hba->queue_count; i++) 2515 hisi_sas_write32(hisi_hba, OQ0_INT_SRC_MSK + 0x4 * i, 0x1); 2516 2517 for (i = 0; i < hisi_hba->cq_nvecs; i++) 2518 synchronize_irq(pci_irq_vector(pdev, i + 16)); 2519 2520 hisi_sas_write32(hisi_hba, ENT_INT_SRC_MSK1, 0xffffffff); 2521 hisi_sas_write32(hisi_hba, ENT_INT_SRC_MSK2, 0xffffffff); 2522 hisi_sas_write32(hisi_hba, ENT_INT_SRC_MSK3, 0xffffffff); 2523 hisi_sas_write32(hisi_hba, SAS_ECC_INTR_MSK, 0xffffffff); 2524 2525 for (i = 0; i < hisi_hba->n_phy; i++) { 2526 hisi_sas_phy_write32(hisi_hba, i, CHL_INT1_MSK, 0xffffffff); 2527 hisi_sas_phy_write32(hisi_hba, i, CHL_INT2_MSK, 0xffffffff); 2528 hisi_sas_phy_write32(hisi_hba, i, PHYCTRL_NOT_RDY_MSK, 0x1); 2529 hisi_sas_phy_write32(hisi_hba, i, PHYCTRL_PHY_ENA_MSK, 0x1); 2530 hisi_sas_phy_write32(hisi_hba, i, SL_RX_BCAST_CHK_MSK, 0x1); 2531 } 2532 } 2533 2534 static u32 get_phys_state_v3_hw(struct hisi_hba *hisi_hba) 2535 { 2536 return hisi_sas_read32(hisi_hba, PHY_STATE); 2537 } 2538 2539 static int disable_host_v3_hw(struct hisi_hba *hisi_hba) 2540 { 2541 struct device *dev = hisi_hba->dev; 2542 u32 status, reg_val; 2543 int rc; 2544 2545 interrupt_disable_v3_hw(hisi_hba); 2546 hisi_sas_write32(hisi_hba, DLVRY_QUEUE_ENABLE, 0x0); 2547 2548 hisi_sas_stop_phys(hisi_hba); 2549 2550 mdelay(10); 2551 2552 reg_val = hisi_sas_read32(hisi_hba, AXI_MASTER_CFG_BASE + 2553 AM_CTRL_GLOBAL); 2554 reg_val |= AM_CTRL_SHUTDOWN_REQ_MSK; 2555 hisi_sas_write32(hisi_hba, AXI_MASTER_CFG_BASE + 2556 AM_CTRL_GLOBAL, reg_val); 2557 2558 /* wait until bus idle */ 2559 rc = hisi_sas_read32_poll_timeout(AXI_MASTER_CFG_BASE + 2560 AM_CURR_TRANS_RETURN, status, 2561 status == 0x3, 10, 100); 2562 if (rc) { 2563 dev_err(dev, "axi bus is not idle, rc=%d\n", rc); 2564 return rc; 2565 } 2566 2567 return 0; 2568 } 2569 2570 static int soft_reset_v3_hw(struct hisi_hba *hisi_hba) 2571 { 2572 struct device *dev = hisi_hba->dev; 2573 int rc; 2574 2575 rc = disable_host_v3_hw(hisi_hba); 2576 if (rc) { 2577 dev_err(dev, "soft reset: disable host failed rc=%d\n", rc); 2578 return rc; 2579 } 2580 2581 hisi_sas_init_mem(hisi_hba); 2582 2583 return hw_init_v3_hw(hisi_hba); 2584 } 2585 2586 static int write_gpio_v3_hw(struct hisi_hba *hisi_hba, u8 reg_type, 2587 u8 reg_index, u8 reg_count, u8 *write_data) 2588 { 2589 struct device *dev = hisi_hba->dev; 2590 u32 *data = (u32 *)write_data; 2591 int i; 2592 2593 switch (reg_type) { 2594 case SAS_GPIO_REG_TX: 2595 if ((reg_index + reg_count) > ((hisi_hba->n_phy + 3) / 4)) { 2596 dev_err(dev, "write gpio: invalid reg range[%d, %d]\n", 2597 reg_index, reg_index + reg_count - 1); 2598 return -EINVAL; 2599 } 2600 2601 for (i = 0; i < reg_count; i++) 2602 hisi_sas_write32(hisi_hba, 2603 SAS_GPIO_TX_0_1 + (reg_index + i) * 4, 2604 data[i]); 2605 break; 2606 default: 2607 dev_err(dev, "write gpio: unsupported or bad reg type %d\n", 2608 reg_type); 2609 return -EINVAL; 2610 } 2611 2612 return 0; 2613 } 2614 2615 static void wait_cmds_complete_timeout_v3_hw(struct hisi_hba *hisi_hba, 2616 int delay_ms, int timeout_ms) 2617 { 2618 struct device *dev = hisi_hba->dev; 2619 int entries, entries_old = 0, time; 2620 2621 for (time = 0; time < timeout_ms; time += delay_ms) { 2622 entries = hisi_sas_read32(hisi_hba, CQE_SEND_CNT); 2623 if (entries == entries_old) 2624 break; 2625 2626 entries_old = entries; 2627 msleep(delay_ms); 2628 } 2629 2630 if (time >= timeout_ms) { 2631 dev_dbg(dev, "Wait commands complete timeout!\n"); 2632 return; 2633 } 2634 2635 dev_dbg(dev, "wait commands complete %dms\n", time); 2636 } 2637 2638 static ssize_t intr_conv_v3_hw_show(struct device *dev, 2639 struct device_attribute *attr, char *buf) 2640 { 2641 return scnprintf(buf, PAGE_SIZE, "%u\n", hisi_sas_intr_conv); 2642 } 2643 static DEVICE_ATTR_RO(intr_conv_v3_hw); 2644 2645 static void config_intr_coal_v3_hw(struct hisi_hba *hisi_hba) 2646 { 2647 /* config those registers between enable and disable PHYs */ 2648 hisi_sas_stop_phys(hisi_hba); 2649 2650 if (hisi_hba->intr_coal_ticks == 0 || 2651 hisi_hba->intr_coal_count == 0) { 2652 hisi_sas_write32(hisi_hba, INT_COAL_EN, 0x1); 2653 hisi_sas_write32(hisi_hba, OQ_INT_COAL_TIME, 0x1); 2654 hisi_sas_write32(hisi_hba, OQ_INT_COAL_CNT, 0x1); 2655 } else { 2656 hisi_sas_write32(hisi_hba, INT_COAL_EN, 0x3); 2657 hisi_sas_write32(hisi_hba, OQ_INT_COAL_TIME, 2658 hisi_hba->intr_coal_ticks); 2659 hisi_sas_write32(hisi_hba, OQ_INT_COAL_CNT, 2660 hisi_hba->intr_coal_count); 2661 } 2662 phys_init_v3_hw(hisi_hba); 2663 } 2664 2665 static ssize_t intr_coal_ticks_v3_hw_show(struct device *dev, 2666 struct device_attribute *attr, 2667 char *buf) 2668 { 2669 struct Scsi_Host *shost = class_to_shost(dev); 2670 struct hisi_hba *hisi_hba = shost_priv(shost); 2671 2672 return scnprintf(buf, PAGE_SIZE, "%u\n", 2673 hisi_hba->intr_coal_ticks); 2674 } 2675 2676 static ssize_t intr_coal_ticks_v3_hw_store(struct device *dev, 2677 struct device_attribute *attr, 2678 const char *buf, size_t count) 2679 { 2680 struct Scsi_Host *shost = class_to_shost(dev); 2681 struct hisi_hba *hisi_hba = shost_priv(shost); 2682 u32 intr_coal_ticks; 2683 int ret; 2684 2685 ret = kstrtou32(buf, 10, &intr_coal_ticks); 2686 if (ret) { 2687 dev_err(dev, "Input data of interrupt coalesce unmatch\n"); 2688 return -EINVAL; 2689 } 2690 2691 if (intr_coal_ticks >= BIT(24)) { 2692 dev_err(dev, "intr_coal_ticks must be less than 2^24!\n"); 2693 return -EINVAL; 2694 } 2695 2696 hisi_hba->intr_coal_ticks = intr_coal_ticks; 2697 2698 config_intr_coal_v3_hw(hisi_hba); 2699 2700 return count; 2701 } 2702 static DEVICE_ATTR_RW(intr_coal_ticks_v3_hw); 2703 2704 static ssize_t intr_coal_count_v3_hw_show(struct device *dev, 2705 struct device_attribute 2706 *attr, char *buf) 2707 { 2708 struct Scsi_Host *shost = class_to_shost(dev); 2709 struct hisi_hba *hisi_hba = shost_priv(shost); 2710 2711 return scnprintf(buf, PAGE_SIZE, "%u\n", 2712 hisi_hba->intr_coal_count); 2713 } 2714 2715 static ssize_t intr_coal_count_v3_hw_store(struct device *dev, 2716 struct device_attribute 2717 *attr, const char *buf, size_t count) 2718 { 2719 struct Scsi_Host *shost = class_to_shost(dev); 2720 struct hisi_hba *hisi_hba = shost_priv(shost); 2721 u32 intr_coal_count; 2722 int ret; 2723 2724 ret = kstrtou32(buf, 10, &intr_coal_count); 2725 if (ret) { 2726 dev_err(dev, "Input data of interrupt coalesce unmatch\n"); 2727 return -EINVAL; 2728 } 2729 2730 if (intr_coal_count >= BIT(8)) { 2731 dev_err(dev, "intr_coal_count must be less than 2^8!\n"); 2732 return -EINVAL; 2733 } 2734 2735 hisi_hba->intr_coal_count = intr_coal_count; 2736 2737 config_intr_coal_v3_hw(hisi_hba); 2738 2739 return count; 2740 } 2741 static DEVICE_ATTR_RW(intr_coal_count_v3_hw); 2742 2743 static int slave_configure_v3_hw(struct scsi_device *sdev) 2744 { 2745 struct Scsi_Host *shost = dev_to_shost(&sdev->sdev_gendev); 2746 struct domain_device *ddev = sdev_to_domain_dev(sdev); 2747 struct hisi_hba *hisi_hba = shost_priv(shost); 2748 struct device *dev = hisi_hba->dev; 2749 int ret = sas_slave_configure(sdev); 2750 2751 if (ret) 2752 return ret; 2753 if (!dev_is_sata(ddev)) 2754 sas_change_queue_depth(sdev, 64); 2755 2756 if (sdev->type == TYPE_ENCLOSURE) 2757 return 0; 2758 2759 if (!device_link_add(&sdev->sdev_gendev, dev, 2760 DL_FLAG_PM_RUNTIME | DL_FLAG_RPM_ACTIVE)) { 2761 if (pm_runtime_enabled(dev)) { 2762 dev_info(dev, "add device link failed, disable runtime PM for the host\n"); 2763 pm_runtime_disable(dev); 2764 } 2765 } 2766 2767 return 0; 2768 } 2769 2770 static struct attribute *host_v3_hw_attrs[] = { 2771 &dev_attr_phy_event_threshold.attr, 2772 &dev_attr_intr_conv_v3_hw.attr, 2773 &dev_attr_intr_coal_ticks_v3_hw.attr, 2774 &dev_attr_intr_coal_count_v3_hw.attr, 2775 NULL 2776 }; 2777 2778 ATTRIBUTE_GROUPS(host_v3_hw); 2779 2780 #define HISI_SAS_DEBUGFS_REG(x) {#x, x} 2781 2782 struct hisi_sas_debugfs_reg_lu { 2783 char *name; 2784 int off; 2785 }; 2786 2787 struct hisi_sas_debugfs_reg { 2788 const struct hisi_sas_debugfs_reg_lu *lu; 2789 int count; 2790 int base_off; 2791 }; 2792 2793 static const struct hisi_sas_debugfs_reg_lu debugfs_port_reg_lu[] = { 2794 HISI_SAS_DEBUGFS_REG(PHY_CFG), 2795 HISI_SAS_DEBUGFS_REG(HARD_PHY_LINKRATE), 2796 HISI_SAS_DEBUGFS_REG(PROG_PHY_LINK_RATE), 2797 HISI_SAS_DEBUGFS_REG(PHY_CTRL), 2798 HISI_SAS_DEBUGFS_REG(SL_CFG), 2799 HISI_SAS_DEBUGFS_REG(AIP_LIMIT), 2800 HISI_SAS_DEBUGFS_REG(SL_CONTROL), 2801 HISI_SAS_DEBUGFS_REG(RX_PRIMS_STATUS), 2802 HISI_SAS_DEBUGFS_REG(TX_ID_DWORD0), 2803 HISI_SAS_DEBUGFS_REG(TX_ID_DWORD1), 2804 HISI_SAS_DEBUGFS_REG(TX_ID_DWORD2), 2805 HISI_SAS_DEBUGFS_REG(TX_ID_DWORD3), 2806 HISI_SAS_DEBUGFS_REG(TX_ID_DWORD4), 2807 HISI_SAS_DEBUGFS_REG(TX_ID_DWORD5), 2808 HISI_SAS_DEBUGFS_REG(TX_ID_DWORD6), 2809 HISI_SAS_DEBUGFS_REG(TXID_AUTO), 2810 HISI_SAS_DEBUGFS_REG(RX_IDAF_DWORD0), 2811 HISI_SAS_DEBUGFS_REG(RXOP_CHECK_CFG_H), 2812 HISI_SAS_DEBUGFS_REG(STP_LINK_TIMER), 2813 HISI_SAS_DEBUGFS_REG(STP_LINK_TIMEOUT_STATE), 2814 HISI_SAS_DEBUGFS_REG(CON_CFG_DRIVER), 2815 HISI_SAS_DEBUGFS_REG(SAS_SSP_CON_TIMER_CFG), 2816 HISI_SAS_DEBUGFS_REG(SAS_SMP_CON_TIMER_CFG), 2817 HISI_SAS_DEBUGFS_REG(SAS_STP_CON_TIMER_CFG), 2818 HISI_SAS_DEBUGFS_REG(CHL_INT0), 2819 HISI_SAS_DEBUGFS_REG(CHL_INT1), 2820 HISI_SAS_DEBUGFS_REG(CHL_INT2), 2821 HISI_SAS_DEBUGFS_REG(CHL_INT0_MSK), 2822 HISI_SAS_DEBUGFS_REG(CHL_INT1_MSK), 2823 HISI_SAS_DEBUGFS_REG(CHL_INT2_MSK), 2824 HISI_SAS_DEBUGFS_REG(SAS_EC_INT_COAL_TIME), 2825 HISI_SAS_DEBUGFS_REG(CHL_INT_COAL_EN), 2826 HISI_SAS_DEBUGFS_REG(SAS_RX_TRAIN_TIMER), 2827 HISI_SAS_DEBUGFS_REG(PHY_CTRL_RDY_MSK), 2828 HISI_SAS_DEBUGFS_REG(PHYCTRL_NOT_RDY_MSK), 2829 HISI_SAS_DEBUGFS_REG(PHYCTRL_DWS_RESET_MSK), 2830 HISI_SAS_DEBUGFS_REG(PHYCTRL_PHY_ENA_MSK), 2831 HISI_SAS_DEBUGFS_REG(SL_RX_BCAST_CHK_MSK), 2832 HISI_SAS_DEBUGFS_REG(PHYCTRL_OOB_RESTART_MSK), 2833 HISI_SAS_DEBUGFS_REG(DMA_TX_STATUS), 2834 HISI_SAS_DEBUGFS_REG(DMA_RX_STATUS), 2835 HISI_SAS_DEBUGFS_REG(COARSETUNE_TIME), 2836 HISI_SAS_DEBUGFS_REG(ERR_CNT_DWS_LOST), 2837 HISI_SAS_DEBUGFS_REG(ERR_CNT_RESET_PROB), 2838 HISI_SAS_DEBUGFS_REG(ERR_CNT_INVLD_DW), 2839 HISI_SAS_DEBUGFS_REG(ERR_CNT_CODE_ERR), 2840 HISI_SAS_DEBUGFS_REG(ERR_CNT_DISP_ERR), 2841 {} 2842 }; 2843 2844 static const struct hisi_sas_debugfs_reg debugfs_port_reg = { 2845 .lu = debugfs_port_reg_lu, 2846 .count = 0x100, 2847 .base_off = PORT_BASE, 2848 }; 2849 2850 static const struct hisi_sas_debugfs_reg_lu debugfs_global_reg_lu[] = { 2851 HISI_SAS_DEBUGFS_REG(DLVRY_QUEUE_ENABLE), 2852 HISI_SAS_DEBUGFS_REG(PHY_CONTEXT), 2853 HISI_SAS_DEBUGFS_REG(PHY_STATE), 2854 HISI_SAS_DEBUGFS_REG(PHY_PORT_NUM_MA), 2855 HISI_SAS_DEBUGFS_REG(PHY_CONN_RATE), 2856 HISI_SAS_DEBUGFS_REG(ITCT_CLR), 2857 HISI_SAS_DEBUGFS_REG(IO_SATA_BROKEN_MSG_ADDR_LO), 2858 HISI_SAS_DEBUGFS_REG(IO_SATA_BROKEN_MSG_ADDR_HI), 2859 HISI_SAS_DEBUGFS_REG(SATA_INITI_D2H_STORE_ADDR_LO), 2860 HISI_SAS_DEBUGFS_REG(SATA_INITI_D2H_STORE_ADDR_HI), 2861 HISI_SAS_DEBUGFS_REG(CFG_MAX_TAG), 2862 HISI_SAS_DEBUGFS_REG(HGC_SAS_TX_OPEN_FAIL_RETRY_CTRL), 2863 HISI_SAS_DEBUGFS_REG(HGC_SAS_TXFAIL_RETRY_CTRL), 2864 HISI_SAS_DEBUGFS_REG(HGC_GET_ITV_TIME), 2865 HISI_SAS_DEBUGFS_REG(DEVICE_MSG_WORK_MODE), 2866 HISI_SAS_DEBUGFS_REG(OPENA_WT_CONTI_TIME), 2867 HISI_SAS_DEBUGFS_REG(I_T_NEXUS_LOSS_TIME), 2868 HISI_SAS_DEBUGFS_REG(MAX_CON_TIME_LIMIT_TIME), 2869 HISI_SAS_DEBUGFS_REG(BUS_INACTIVE_LIMIT_TIME), 2870 HISI_SAS_DEBUGFS_REG(REJECT_TO_OPEN_LIMIT_TIME), 2871 HISI_SAS_DEBUGFS_REG(CQ_INT_CONVERGE_EN), 2872 HISI_SAS_DEBUGFS_REG(CFG_AGING_TIME), 2873 HISI_SAS_DEBUGFS_REG(HGC_DFX_CFG2), 2874 HISI_SAS_DEBUGFS_REG(CFG_ABT_SET_QUERY_IPTT), 2875 HISI_SAS_DEBUGFS_REG(CFG_ABT_SET_IPTT_DONE), 2876 HISI_SAS_DEBUGFS_REG(HGC_IOMB_PROC1_STATUS), 2877 HISI_SAS_DEBUGFS_REG(CHNL_INT_STATUS), 2878 HISI_SAS_DEBUGFS_REG(HGC_AXI_FIFO_ERR_INFO), 2879 HISI_SAS_DEBUGFS_REG(INT_COAL_EN), 2880 HISI_SAS_DEBUGFS_REG(OQ_INT_COAL_TIME), 2881 HISI_SAS_DEBUGFS_REG(OQ_INT_COAL_CNT), 2882 HISI_SAS_DEBUGFS_REG(ENT_INT_COAL_TIME), 2883 HISI_SAS_DEBUGFS_REG(ENT_INT_COAL_CNT), 2884 HISI_SAS_DEBUGFS_REG(OQ_INT_SRC), 2885 HISI_SAS_DEBUGFS_REG(OQ_INT_SRC_MSK), 2886 HISI_SAS_DEBUGFS_REG(ENT_INT_SRC1), 2887 HISI_SAS_DEBUGFS_REG(ENT_INT_SRC2), 2888 HISI_SAS_DEBUGFS_REG(ENT_INT_SRC3), 2889 HISI_SAS_DEBUGFS_REG(ENT_INT_SRC_MSK1), 2890 HISI_SAS_DEBUGFS_REG(ENT_INT_SRC_MSK2), 2891 HISI_SAS_DEBUGFS_REG(ENT_INT_SRC_MSK3), 2892 HISI_SAS_DEBUGFS_REG(CHNL_PHYUPDOWN_INT_MSK), 2893 HISI_SAS_DEBUGFS_REG(CHNL_ENT_INT_MSK), 2894 HISI_SAS_DEBUGFS_REG(HGC_COM_INT_MSK), 2895 HISI_SAS_DEBUGFS_REG(SAS_ECC_INTR), 2896 HISI_SAS_DEBUGFS_REG(SAS_ECC_INTR_MSK), 2897 HISI_SAS_DEBUGFS_REG(HGC_ERR_STAT_EN), 2898 HISI_SAS_DEBUGFS_REG(CQE_SEND_CNT), 2899 HISI_SAS_DEBUGFS_REG(DLVRY_Q_0_DEPTH), 2900 HISI_SAS_DEBUGFS_REG(DLVRY_Q_0_WR_PTR), 2901 HISI_SAS_DEBUGFS_REG(DLVRY_Q_0_RD_PTR), 2902 HISI_SAS_DEBUGFS_REG(HYPER_STREAM_ID_EN_CFG), 2903 HISI_SAS_DEBUGFS_REG(OQ0_INT_SRC_MSK), 2904 HISI_SAS_DEBUGFS_REG(COMPL_Q_0_DEPTH), 2905 HISI_SAS_DEBUGFS_REG(COMPL_Q_0_WR_PTR), 2906 HISI_SAS_DEBUGFS_REG(COMPL_Q_0_RD_PTR), 2907 HISI_SAS_DEBUGFS_REG(AWQOS_AWCACHE_CFG), 2908 HISI_SAS_DEBUGFS_REG(ARQOS_ARCACHE_CFG), 2909 HISI_SAS_DEBUGFS_REG(HILINK_ERR_DFX), 2910 HISI_SAS_DEBUGFS_REG(SAS_GPIO_CFG_0), 2911 HISI_SAS_DEBUGFS_REG(SAS_GPIO_CFG_1), 2912 HISI_SAS_DEBUGFS_REG(SAS_GPIO_TX_0_1), 2913 HISI_SAS_DEBUGFS_REG(SAS_CFG_DRIVE_VLD), 2914 {} 2915 }; 2916 2917 static const struct hisi_sas_debugfs_reg debugfs_global_reg = { 2918 .lu = debugfs_global_reg_lu, 2919 .count = 0x800, 2920 }; 2921 2922 static const struct hisi_sas_debugfs_reg_lu debugfs_axi_reg_lu[] = { 2923 HISI_SAS_DEBUGFS_REG(AM_CFG_MAX_TRANS), 2924 HISI_SAS_DEBUGFS_REG(AM_CFG_SINGLE_PORT_MAX_TRANS), 2925 HISI_SAS_DEBUGFS_REG(AXI_CFG), 2926 HISI_SAS_DEBUGFS_REG(AM_ROB_ECC_ERR_ADDR), 2927 {} 2928 }; 2929 2930 static const struct hisi_sas_debugfs_reg debugfs_axi_reg = { 2931 .lu = debugfs_axi_reg_lu, 2932 .count = 0x61, 2933 .base_off = AXI_MASTER_CFG_BASE, 2934 }; 2935 2936 static const struct hisi_sas_debugfs_reg_lu debugfs_ras_reg_lu[] = { 2937 HISI_SAS_DEBUGFS_REG(SAS_RAS_INTR0), 2938 HISI_SAS_DEBUGFS_REG(SAS_RAS_INTR1), 2939 HISI_SAS_DEBUGFS_REG(SAS_RAS_INTR0_MASK), 2940 HISI_SAS_DEBUGFS_REG(SAS_RAS_INTR1_MASK), 2941 HISI_SAS_DEBUGFS_REG(CFG_SAS_RAS_INTR_MASK), 2942 HISI_SAS_DEBUGFS_REG(SAS_RAS_INTR2), 2943 HISI_SAS_DEBUGFS_REG(SAS_RAS_INTR2_MASK), 2944 {} 2945 }; 2946 2947 static const struct hisi_sas_debugfs_reg debugfs_ras_reg = { 2948 .lu = debugfs_ras_reg_lu, 2949 .count = 0x10, 2950 .base_off = RAS_BASE, 2951 }; 2952 2953 static void debugfs_snapshot_prepare_v3_hw(struct hisi_hba *hisi_hba) 2954 { 2955 set_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags); 2956 2957 hisi_sas_write32(hisi_hba, DLVRY_QUEUE_ENABLE, 0); 2958 2959 wait_cmds_complete_timeout_v3_hw(hisi_hba, 100, 5000); 2960 2961 hisi_sas_sync_irqs(hisi_hba); 2962 } 2963 2964 static void debugfs_snapshot_restore_v3_hw(struct hisi_hba *hisi_hba) 2965 { 2966 hisi_sas_write32(hisi_hba, DLVRY_QUEUE_ENABLE, 2967 (u32)((1ULL << hisi_hba->queue_count) - 1)); 2968 2969 clear_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags); 2970 } 2971 2972 static void read_iost_itct_cache_v3_hw(struct hisi_hba *hisi_hba, 2973 enum hisi_sas_debugfs_cache_type type, 2974 u32 *cache) 2975 { 2976 u32 cache_dw_size = HISI_SAS_IOST_ITCT_CACHE_DW_SZ * 2977 HISI_SAS_IOST_ITCT_CACHE_NUM; 2978 struct device *dev = hisi_hba->dev; 2979 u32 *buf = cache; 2980 u32 i, val; 2981 2982 hisi_sas_write32(hisi_hba, TAB_RD_TYPE, type); 2983 2984 for (i = 0; i < HISI_SAS_IOST_ITCT_CACHE_DW_SZ; i++) { 2985 val = hisi_sas_read32(hisi_hba, TAB_DFX); 2986 if (val == 0xffffffff) 2987 break; 2988 } 2989 2990 if (val != 0xffffffff) { 2991 dev_err(dev, "Issue occurred in reading IOST/ITCT cache!\n"); 2992 return; 2993 } 2994 2995 memset(buf, 0, cache_dw_size * 4); 2996 buf[0] = val; 2997 2998 for (i = 1; i < cache_dw_size; i++) 2999 buf[i] = hisi_sas_read32(hisi_hba, TAB_DFX); 3000 } 3001 3002 static void hisi_sas_bist_test_prep_v3_hw(struct hisi_hba *hisi_hba) 3003 { 3004 u32 reg_val; 3005 int phy_no = hisi_hba->debugfs_bist_phy_no; 3006 int i; 3007 3008 /* disable PHY */ 3009 hisi_sas_phy_enable(hisi_hba, phy_no, 0); 3010 3011 /* update FFE */ 3012 for (i = 0; i < FFE_CFG_MAX; i++) 3013 hisi_sas_phy_write32(hisi_hba, phy_no, TXDEEMPH_G1 + (i * 0x4), 3014 hisi_hba->debugfs_bist_ffe[phy_no][i]); 3015 3016 /* disable ALOS */ 3017 reg_val = hisi_sas_phy_read32(hisi_hba, phy_no, SERDES_CFG); 3018 reg_val |= CFG_ALOS_CHK_DISABLE_MSK; 3019 hisi_sas_phy_write32(hisi_hba, phy_no, SERDES_CFG, reg_val); 3020 } 3021 3022 static void hisi_sas_bist_test_restore_v3_hw(struct hisi_hba *hisi_hba) 3023 { 3024 u32 reg_val; 3025 int phy_no = hisi_hba->debugfs_bist_phy_no; 3026 3027 /* disable loopback */ 3028 reg_val = hisi_sas_phy_read32(hisi_hba, phy_no, SAS_PHY_BIST_CTRL); 3029 reg_val &= ~(CFG_RX_BIST_EN_MSK | CFG_TX_BIST_EN_MSK | 3030 CFG_BIST_TEST_MSK); 3031 hisi_sas_phy_write32(hisi_hba, phy_no, SAS_PHY_BIST_CTRL, reg_val); 3032 3033 /* enable ALOS */ 3034 reg_val = hisi_sas_phy_read32(hisi_hba, phy_no, SERDES_CFG); 3035 reg_val &= ~CFG_ALOS_CHK_DISABLE_MSK; 3036 hisi_sas_phy_write32(hisi_hba, phy_no, SERDES_CFG, reg_val); 3037 3038 /* restore the linkrate */ 3039 reg_val = hisi_sas_phy_read32(hisi_hba, phy_no, PROG_PHY_LINK_RATE); 3040 /* init OOB link rate as 1.5 Gbits */ 3041 reg_val &= ~CFG_PROG_OOB_PHY_LINK_RATE_MSK; 3042 reg_val |= (0x8 << CFG_PROG_OOB_PHY_LINK_RATE_OFF); 3043 hisi_sas_phy_write32(hisi_hba, phy_no, PROG_PHY_LINK_RATE, reg_val); 3044 3045 /* enable PHY */ 3046 hisi_sas_phy_enable(hisi_hba, phy_no, 1); 3047 } 3048 3049 #define SAS_PHY_BIST_CODE_INIT 0x1 3050 #define SAS_PHY_BIST_CODE1_INIT 0X80 3051 static int debugfs_set_bist_v3_hw(struct hisi_hba *hisi_hba, bool enable) 3052 { 3053 u32 reg_val, mode_tmp; 3054 u32 linkrate = hisi_hba->debugfs_bist_linkrate; 3055 u32 phy_no = hisi_hba->debugfs_bist_phy_no; 3056 u32 *ffe = hisi_hba->debugfs_bist_ffe[phy_no]; 3057 u32 code_mode = hisi_hba->debugfs_bist_code_mode; 3058 u32 path_mode = hisi_hba->debugfs_bist_mode; 3059 u32 *fix_code = &hisi_hba->debugfs_bist_fixed_code[0]; 3060 struct device *dev = hisi_hba->dev; 3061 3062 dev_info(dev, "BIST info:phy%d link_rate=%d code_mode=%d path_mode=%d ffe={0x%x, 0x%x, 0x%x, 0x%x, 0x%x, 0x%x, 0x%x} fixed_code={0x%x, 0x%x}\n", 3063 phy_no, linkrate, code_mode, path_mode, 3064 ffe[FFE_SAS_1_5_GBPS], ffe[FFE_SAS_3_0_GBPS], 3065 ffe[FFE_SAS_6_0_GBPS], ffe[FFE_SAS_12_0_GBPS], 3066 ffe[FFE_SATA_1_5_GBPS], ffe[FFE_SATA_3_0_GBPS], 3067 ffe[FFE_SATA_6_0_GBPS], fix_code[FIXED_CODE], 3068 fix_code[FIXED_CODE_1]); 3069 mode_tmp = path_mode ? 2 : 1; 3070 if (enable) { 3071 /* some preparations before bist test */ 3072 hisi_sas_bist_test_prep_v3_hw(hisi_hba); 3073 3074 /* set linkrate of bit test*/ 3075 reg_val = hisi_sas_phy_read32(hisi_hba, phy_no, 3076 PROG_PHY_LINK_RATE); 3077 reg_val &= ~CFG_PROG_OOB_PHY_LINK_RATE_MSK; 3078 reg_val |= (linkrate << CFG_PROG_OOB_PHY_LINK_RATE_OFF); 3079 hisi_sas_phy_write32(hisi_hba, phy_no, PROG_PHY_LINK_RATE, 3080 reg_val); 3081 3082 /* set code mode of bit test */ 3083 reg_val = hisi_sas_phy_read32(hisi_hba, phy_no, 3084 SAS_PHY_BIST_CTRL); 3085 reg_val &= ~(CFG_BIST_MODE_SEL_MSK | CFG_LOOP_TEST_MODE_MSK | 3086 CFG_RX_BIST_EN_MSK | CFG_TX_BIST_EN_MSK | 3087 CFG_BIST_TEST_MSK); 3088 reg_val |= ((code_mode << CFG_BIST_MODE_SEL_OFF) | 3089 (mode_tmp << CFG_LOOP_TEST_MODE_OFF) | 3090 CFG_BIST_TEST_MSK); 3091 hisi_sas_phy_write32(hisi_hba, phy_no, SAS_PHY_BIST_CTRL, 3092 reg_val); 3093 3094 /* set the bist init value */ 3095 if (code_mode == HISI_SAS_BIST_CODE_MODE_FIXED_DATA) { 3096 reg_val = hisi_hba->debugfs_bist_fixed_code[0]; 3097 hisi_sas_phy_write32(hisi_hba, phy_no, 3098 SAS_PHY_BIST_CODE, reg_val); 3099 3100 reg_val = hisi_hba->debugfs_bist_fixed_code[1]; 3101 hisi_sas_phy_write32(hisi_hba, phy_no, 3102 SAS_PHY_BIST_CODE1, reg_val); 3103 } else { 3104 hisi_sas_phy_write32(hisi_hba, phy_no, 3105 SAS_PHY_BIST_CODE, 3106 SAS_PHY_BIST_CODE_INIT); 3107 hisi_sas_phy_write32(hisi_hba, phy_no, 3108 SAS_PHY_BIST_CODE1, 3109 SAS_PHY_BIST_CODE1_INIT); 3110 } 3111 3112 mdelay(100); 3113 reg_val |= (CFG_RX_BIST_EN_MSK | CFG_TX_BIST_EN_MSK); 3114 hisi_sas_phy_write32(hisi_hba, phy_no, SAS_PHY_BIST_CTRL, 3115 reg_val); 3116 3117 /* clear error bit */ 3118 mdelay(100); 3119 hisi_sas_phy_read32(hisi_hba, phy_no, SAS_BIST_ERR_CNT); 3120 } else { 3121 /* disable bist test and recover it */ 3122 hisi_hba->debugfs_bist_cnt += hisi_sas_phy_read32(hisi_hba, 3123 phy_no, SAS_BIST_ERR_CNT); 3124 hisi_sas_bist_test_restore_v3_hw(hisi_hba); 3125 } 3126 3127 return 0; 3128 } 3129 3130 static int hisi_sas_map_queues(struct Scsi_Host *shost) 3131 { 3132 struct hisi_hba *hisi_hba = shost_priv(shost); 3133 struct blk_mq_queue_map *qmap = &shost->tag_set.map[HCTX_TYPE_DEFAULT]; 3134 3135 return blk_mq_pci_map_queues(qmap, hisi_hba->pci_dev, 3136 BASE_VECTORS_V3_HW); 3137 } 3138 3139 static struct scsi_host_template sht_v3_hw = { 3140 .name = DRV_NAME, 3141 .proc_name = DRV_NAME, 3142 .module = THIS_MODULE, 3143 .queuecommand = sas_queuecommand, 3144 .dma_need_drain = ata_scsi_dma_need_drain, 3145 .target_alloc = sas_target_alloc, 3146 .slave_configure = slave_configure_v3_hw, 3147 .scan_finished = hisi_sas_scan_finished, 3148 .scan_start = hisi_sas_scan_start, 3149 .map_queues = hisi_sas_map_queues, 3150 .change_queue_depth = sas_change_queue_depth, 3151 .bios_param = sas_bios_param, 3152 .this_id = -1, 3153 .sg_tablesize = HISI_SAS_SGE_PAGE_CNT, 3154 .sg_prot_tablesize = HISI_SAS_SGE_PAGE_CNT, 3155 .max_sectors = SCSI_DEFAULT_MAX_SECTORS, 3156 .eh_device_reset_handler = sas_eh_device_reset_handler, 3157 .eh_target_reset_handler = sas_eh_target_reset_handler, 3158 .slave_alloc = hisi_sas_slave_alloc, 3159 .target_destroy = sas_target_destroy, 3160 .ioctl = sas_ioctl, 3161 #ifdef CONFIG_COMPAT 3162 .compat_ioctl = sas_ioctl, 3163 #endif 3164 .shost_groups = host_v3_hw_groups, 3165 .tag_alloc_policy = BLK_TAG_ALLOC_RR, 3166 .host_reset = hisi_sas_host_reset, 3167 .host_tagset = 1, 3168 }; 3169 3170 static const struct hisi_sas_hw hisi_sas_v3_hw = { 3171 .setup_itct = setup_itct_v3_hw, 3172 .get_wideport_bitmap = get_wideport_bitmap_v3_hw, 3173 .complete_hdr_size = sizeof(struct hisi_sas_complete_v3_hdr), 3174 .clear_itct = clear_itct_v3_hw, 3175 .sl_notify_ssp = sl_notify_ssp_v3_hw, 3176 .prep_ssp = prep_ssp_v3_hw, 3177 .prep_smp = prep_smp_v3_hw, 3178 .prep_stp = prep_ata_v3_hw, 3179 .prep_abort = prep_abort_v3_hw, 3180 .start_delivery = start_delivery_v3_hw, 3181 .phys_init = phys_init_v3_hw, 3182 .phy_start = start_phy_v3_hw, 3183 .phy_disable = disable_phy_v3_hw, 3184 .phy_hard_reset = phy_hard_reset_v3_hw, 3185 .phy_get_max_linkrate = phy_get_max_linkrate_v3_hw, 3186 .phy_set_linkrate = phy_set_linkrate_v3_hw, 3187 .dereg_device = dereg_device_v3_hw, 3188 .soft_reset = soft_reset_v3_hw, 3189 .get_phys_state = get_phys_state_v3_hw, 3190 .get_events = phy_get_events_v3_hw, 3191 .write_gpio = write_gpio_v3_hw, 3192 .wait_cmds_complete_timeout = wait_cmds_complete_timeout_v3_hw, 3193 .debugfs_snapshot_regs = debugfs_snapshot_regs_v3_hw, 3194 }; 3195 3196 static struct Scsi_Host * 3197 hisi_sas_shost_alloc_pci(struct pci_dev *pdev) 3198 { 3199 struct Scsi_Host *shost; 3200 struct hisi_hba *hisi_hba; 3201 struct device *dev = &pdev->dev; 3202 3203 shost = scsi_host_alloc(&sht_v3_hw, sizeof(*hisi_hba)); 3204 if (!shost) { 3205 dev_err(dev, "shost alloc failed\n"); 3206 return NULL; 3207 } 3208 hisi_hba = shost_priv(shost); 3209 3210 INIT_WORK(&hisi_hba->rst_work, hisi_sas_rst_work_handler); 3211 INIT_WORK(&hisi_hba->debugfs_work, debugfs_work_handler_v3_hw); 3212 hisi_hba->hw = &hisi_sas_v3_hw; 3213 hisi_hba->pci_dev = pdev; 3214 hisi_hba->dev = dev; 3215 hisi_hba->shost = shost; 3216 SHOST_TO_SAS_HA(shost) = &hisi_hba->sha; 3217 3218 if (prot_mask & ~HISI_SAS_PROT_MASK) 3219 dev_err(dev, "unsupported protection mask 0x%x, using default (0x0)\n", 3220 prot_mask); 3221 else 3222 hisi_hba->prot_mask = prot_mask; 3223 3224 if (hisi_sas_get_fw_info(hisi_hba) < 0) 3225 goto err_out; 3226 3227 if (hisi_sas_alloc(hisi_hba)) { 3228 hisi_sas_free(hisi_hba); 3229 goto err_out; 3230 } 3231 3232 return shost; 3233 err_out: 3234 scsi_host_put(shost); 3235 dev_err(dev, "shost alloc failed\n"); 3236 return NULL; 3237 } 3238 3239 static void debugfs_snapshot_cq_reg_v3_hw(struct hisi_hba *hisi_hba) 3240 { 3241 int queue_entry_size = hisi_hba->hw->complete_hdr_size; 3242 int dump_index = hisi_hba->debugfs_dump_index; 3243 int i; 3244 3245 for (i = 0; i < hisi_hba->queue_count; i++) 3246 memcpy(hisi_hba->debugfs_cq[dump_index][i].complete_hdr, 3247 hisi_hba->complete_hdr[i], 3248 HISI_SAS_QUEUE_SLOTS * queue_entry_size); 3249 } 3250 3251 static void debugfs_snapshot_dq_reg_v3_hw(struct hisi_hba *hisi_hba) 3252 { 3253 int queue_entry_size = sizeof(struct hisi_sas_cmd_hdr); 3254 int dump_index = hisi_hba->debugfs_dump_index; 3255 int i; 3256 3257 for (i = 0; i < hisi_hba->queue_count; i++) { 3258 struct hisi_sas_cmd_hdr *debugfs_cmd_hdr, *cmd_hdr; 3259 int j; 3260 3261 debugfs_cmd_hdr = hisi_hba->debugfs_dq[dump_index][i].hdr; 3262 cmd_hdr = hisi_hba->cmd_hdr[i]; 3263 3264 for (j = 0; j < HISI_SAS_QUEUE_SLOTS; j++) 3265 memcpy(&debugfs_cmd_hdr[j], &cmd_hdr[j], 3266 queue_entry_size); 3267 } 3268 } 3269 3270 static void debugfs_snapshot_port_reg_v3_hw(struct hisi_hba *hisi_hba) 3271 { 3272 int dump_index = hisi_hba->debugfs_dump_index; 3273 const struct hisi_sas_debugfs_reg *port = &debugfs_port_reg; 3274 int i, phy_cnt; 3275 u32 offset; 3276 u32 *databuf; 3277 3278 for (phy_cnt = 0; phy_cnt < hisi_hba->n_phy; phy_cnt++) { 3279 databuf = hisi_hba->debugfs_port_reg[dump_index][phy_cnt].data; 3280 for (i = 0; i < port->count; i++, databuf++) { 3281 offset = port->base_off + 4 * i; 3282 *databuf = hisi_sas_phy_read32(hisi_hba, phy_cnt, 3283 offset); 3284 } 3285 } 3286 } 3287 3288 static void debugfs_snapshot_global_reg_v3_hw(struct hisi_hba *hisi_hba) 3289 { 3290 int dump_index = hisi_hba->debugfs_dump_index; 3291 u32 *databuf = hisi_hba->debugfs_regs[dump_index][DEBUGFS_GLOBAL].data; 3292 int i; 3293 3294 for (i = 0; i < debugfs_axi_reg.count; i++, databuf++) 3295 *databuf = hisi_sas_read32(hisi_hba, 4 * i); 3296 } 3297 3298 static void debugfs_snapshot_axi_reg_v3_hw(struct hisi_hba *hisi_hba) 3299 { 3300 int dump_index = hisi_hba->debugfs_dump_index; 3301 u32 *databuf = hisi_hba->debugfs_regs[dump_index][DEBUGFS_AXI].data; 3302 const struct hisi_sas_debugfs_reg *axi = &debugfs_axi_reg; 3303 int i; 3304 3305 for (i = 0; i < axi->count; i++, databuf++) 3306 *databuf = hisi_sas_read32(hisi_hba, 4 * i + axi->base_off); 3307 } 3308 3309 static void debugfs_snapshot_ras_reg_v3_hw(struct hisi_hba *hisi_hba) 3310 { 3311 int dump_index = hisi_hba->debugfs_dump_index; 3312 u32 *databuf = hisi_hba->debugfs_regs[dump_index][DEBUGFS_RAS].data; 3313 const struct hisi_sas_debugfs_reg *ras = &debugfs_ras_reg; 3314 int i; 3315 3316 for (i = 0; i < ras->count; i++, databuf++) 3317 *databuf = hisi_sas_read32(hisi_hba, 4 * i + ras->base_off); 3318 } 3319 3320 static void debugfs_snapshot_itct_reg_v3_hw(struct hisi_hba *hisi_hba) 3321 { 3322 int dump_index = hisi_hba->debugfs_dump_index; 3323 void *cachebuf = hisi_hba->debugfs_itct_cache[dump_index].cache; 3324 void *databuf = hisi_hba->debugfs_itct[dump_index].itct; 3325 struct hisi_sas_itct *itct; 3326 int i; 3327 3328 read_iost_itct_cache_v3_hw(hisi_hba, HISI_SAS_ITCT_CACHE, cachebuf); 3329 3330 itct = hisi_hba->itct; 3331 3332 for (i = 0; i < HISI_SAS_MAX_ITCT_ENTRIES; i++, itct++) { 3333 memcpy(databuf, itct, sizeof(struct hisi_sas_itct)); 3334 databuf += sizeof(struct hisi_sas_itct); 3335 } 3336 } 3337 3338 static void debugfs_snapshot_iost_reg_v3_hw(struct hisi_hba *hisi_hba) 3339 { 3340 int dump_index = hisi_hba->debugfs_dump_index; 3341 int max_command_entries = HISI_SAS_MAX_COMMANDS; 3342 void *cachebuf = hisi_hba->debugfs_iost_cache[dump_index].cache; 3343 void *databuf = hisi_hba->debugfs_iost[dump_index].iost; 3344 struct hisi_sas_iost *iost; 3345 int i; 3346 3347 read_iost_itct_cache_v3_hw(hisi_hba, HISI_SAS_IOST_CACHE, cachebuf); 3348 3349 iost = hisi_hba->iost; 3350 3351 for (i = 0; i < max_command_entries; i++, iost++) { 3352 memcpy(databuf, iost, sizeof(struct hisi_sas_iost)); 3353 databuf += sizeof(struct hisi_sas_iost); 3354 } 3355 } 3356 3357 static const char * 3358 debugfs_to_reg_name_v3_hw(int off, int base_off, 3359 const struct hisi_sas_debugfs_reg_lu *lu) 3360 { 3361 for (; lu->name; lu++) { 3362 if (off == lu->off - base_off) 3363 return lu->name; 3364 } 3365 3366 return NULL; 3367 } 3368 3369 static void debugfs_print_reg_v3_hw(u32 *regs_val, struct seq_file *s, 3370 const struct hisi_sas_debugfs_reg *reg) 3371 { 3372 int i; 3373 3374 for (i = 0; i < reg->count; i++) { 3375 int off = i * 4; 3376 const char *name; 3377 3378 name = debugfs_to_reg_name_v3_hw(off, reg->base_off, 3379 reg->lu); 3380 3381 if (name) 3382 seq_printf(s, "0x%08x 0x%08x %s\n", off, 3383 regs_val[i], name); 3384 else 3385 seq_printf(s, "0x%08x 0x%08x\n", off, 3386 regs_val[i]); 3387 } 3388 } 3389 3390 static int debugfs_global_v3_hw_show(struct seq_file *s, void *p) 3391 { 3392 struct hisi_sas_debugfs_regs *global = s->private; 3393 3394 debugfs_print_reg_v3_hw(global->data, s, 3395 &debugfs_global_reg); 3396 3397 return 0; 3398 } 3399 DEFINE_SHOW_ATTRIBUTE(debugfs_global_v3_hw); 3400 3401 static int debugfs_axi_v3_hw_show(struct seq_file *s, void *p) 3402 { 3403 struct hisi_sas_debugfs_regs *axi = s->private; 3404 3405 debugfs_print_reg_v3_hw(axi->data, s, 3406 &debugfs_axi_reg); 3407 3408 return 0; 3409 } 3410 DEFINE_SHOW_ATTRIBUTE(debugfs_axi_v3_hw); 3411 3412 static int debugfs_ras_v3_hw_show(struct seq_file *s, void *p) 3413 { 3414 struct hisi_sas_debugfs_regs *ras = s->private; 3415 3416 debugfs_print_reg_v3_hw(ras->data, s, 3417 &debugfs_ras_reg); 3418 3419 return 0; 3420 } 3421 DEFINE_SHOW_ATTRIBUTE(debugfs_ras_v3_hw); 3422 3423 static int debugfs_port_v3_hw_show(struct seq_file *s, void *p) 3424 { 3425 struct hisi_sas_debugfs_port *port = s->private; 3426 const struct hisi_sas_debugfs_reg *reg_port = &debugfs_port_reg; 3427 3428 debugfs_print_reg_v3_hw(port->data, s, reg_port); 3429 3430 return 0; 3431 } 3432 DEFINE_SHOW_ATTRIBUTE(debugfs_port_v3_hw); 3433 3434 static void debugfs_show_row_64_v3_hw(struct seq_file *s, int index, 3435 int sz, __le64 *ptr) 3436 { 3437 int i; 3438 3439 /* completion header size not fixed per HW version */ 3440 seq_printf(s, "index %04d:\n\t", index); 3441 for (i = 1; i <= sz / 8; i++, ptr++) { 3442 seq_printf(s, " 0x%016llx", le64_to_cpu(*ptr)); 3443 if (!(i % 2)) 3444 seq_puts(s, "\n\t"); 3445 } 3446 3447 seq_puts(s, "\n"); 3448 } 3449 3450 static void debugfs_show_row_32_v3_hw(struct seq_file *s, int index, 3451 int sz, __le32 *ptr) 3452 { 3453 int i; 3454 3455 /* completion header size not fixed per HW version */ 3456 seq_printf(s, "index %04d:\n\t", index); 3457 for (i = 1; i <= sz / 4; i++, ptr++) { 3458 seq_printf(s, " 0x%08x", le32_to_cpu(*ptr)); 3459 if (!(i % 4)) 3460 seq_puts(s, "\n\t"); 3461 } 3462 seq_puts(s, "\n"); 3463 } 3464 3465 static void debugfs_cq_show_slot_v3_hw(struct seq_file *s, int slot, 3466 struct hisi_sas_debugfs_cq *debugfs_cq) 3467 { 3468 struct hisi_sas_cq *cq = debugfs_cq->cq; 3469 struct hisi_hba *hisi_hba = cq->hisi_hba; 3470 __le32 *complete_hdr = debugfs_cq->complete_hdr + 3471 (hisi_hba->hw->complete_hdr_size * slot); 3472 3473 debugfs_show_row_32_v3_hw(s, slot, 3474 hisi_hba->hw->complete_hdr_size, 3475 complete_hdr); 3476 } 3477 3478 static int debugfs_cq_v3_hw_show(struct seq_file *s, void *p) 3479 { 3480 struct hisi_sas_debugfs_cq *debugfs_cq = s->private; 3481 int slot; 3482 3483 for (slot = 0; slot < HISI_SAS_QUEUE_SLOTS; slot++) 3484 debugfs_cq_show_slot_v3_hw(s, slot, debugfs_cq); 3485 3486 return 0; 3487 } 3488 DEFINE_SHOW_ATTRIBUTE(debugfs_cq_v3_hw); 3489 3490 static void debugfs_dq_show_slot_v3_hw(struct seq_file *s, int slot, 3491 void *dq_ptr) 3492 { 3493 struct hisi_sas_debugfs_dq *debugfs_dq = dq_ptr; 3494 void *cmd_queue = debugfs_dq->hdr; 3495 __le32 *cmd_hdr = cmd_queue + 3496 sizeof(struct hisi_sas_cmd_hdr) * slot; 3497 3498 debugfs_show_row_32_v3_hw(s, slot, sizeof(struct hisi_sas_cmd_hdr), 3499 cmd_hdr); 3500 } 3501 3502 static int debugfs_dq_v3_hw_show(struct seq_file *s, void *p) 3503 { 3504 int slot; 3505 3506 for (slot = 0; slot < HISI_SAS_QUEUE_SLOTS; slot++) 3507 debugfs_dq_show_slot_v3_hw(s, slot, s->private); 3508 3509 return 0; 3510 } 3511 DEFINE_SHOW_ATTRIBUTE(debugfs_dq_v3_hw); 3512 3513 static int debugfs_iost_v3_hw_show(struct seq_file *s, void *p) 3514 { 3515 struct hisi_sas_debugfs_iost *debugfs_iost = s->private; 3516 struct hisi_sas_iost *iost = debugfs_iost->iost; 3517 int i, max_command_entries = HISI_SAS_MAX_COMMANDS; 3518 3519 for (i = 0; i < max_command_entries; i++, iost++) { 3520 __le64 *data = &iost->qw0; 3521 3522 debugfs_show_row_64_v3_hw(s, i, sizeof(*iost), data); 3523 } 3524 3525 return 0; 3526 } 3527 DEFINE_SHOW_ATTRIBUTE(debugfs_iost_v3_hw); 3528 3529 static int debugfs_iost_cache_v3_hw_show(struct seq_file *s, void *p) 3530 { 3531 struct hisi_sas_debugfs_iost_cache *debugfs_iost_cache = s->private; 3532 struct hisi_sas_iost_itct_cache *iost_cache = 3533 debugfs_iost_cache->cache; 3534 u32 cache_size = HISI_SAS_IOST_ITCT_CACHE_DW_SZ * 4; 3535 int i, tab_idx; 3536 __le64 *iost; 3537 3538 for (i = 0; i < HISI_SAS_IOST_ITCT_CACHE_NUM; i++, iost_cache++) { 3539 /* 3540 * Data struct of IOST cache: 3541 * Data[1]: BIT0~15: Table index 3542 * Bit16: Valid mask 3543 * Data[2]~[9]: IOST table 3544 */ 3545 tab_idx = (iost_cache->data[1] & 0xffff); 3546 iost = (__le64 *)iost_cache; 3547 3548 debugfs_show_row_64_v3_hw(s, tab_idx, cache_size, iost); 3549 } 3550 3551 return 0; 3552 } 3553 DEFINE_SHOW_ATTRIBUTE(debugfs_iost_cache_v3_hw); 3554 3555 static int debugfs_itct_v3_hw_show(struct seq_file *s, void *p) 3556 { 3557 int i; 3558 struct hisi_sas_debugfs_itct *debugfs_itct = s->private; 3559 struct hisi_sas_itct *itct = debugfs_itct->itct; 3560 3561 for (i = 0; i < HISI_SAS_MAX_ITCT_ENTRIES; i++, itct++) { 3562 __le64 *data = &itct->qw0; 3563 3564 debugfs_show_row_64_v3_hw(s, i, sizeof(*itct), data); 3565 } 3566 3567 return 0; 3568 } 3569 DEFINE_SHOW_ATTRIBUTE(debugfs_itct_v3_hw); 3570 3571 static int debugfs_itct_cache_v3_hw_show(struct seq_file *s, void *p) 3572 { 3573 struct hisi_sas_debugfs_itct_cache *debugfs_itct_cache = s->private; 3574 struct hisi_sas_iost_itct_cache *itct_cache = 3575 debugfs_itct_cache->cache; 3576 u32 cache_size = HISI_SAS_IOST_ITCT_CACHE_DW_SZ * 4; 3577 int i, tab_idx; 3578 __le64 *itct; 3579 3580 for (i = 0; i < HISI_SAS_IOST_ITCT_CACHE_NUM; i++, itct_cache++) { 3581 /* 3582 * Data struct of ITCT cache: 3583 * Data[1]: BIT0~15: Table index 3584 * Bit16: Valid mask 3585 * Data[2]~[9]: ITCT table 3586 */ 3587 tab_idx = itct_cache->data[1] & 0xffff; 3588 itct = (__le64 *)itct_cache; 3589 3590 debugfs_show_row_64_v3_hw(s, tab_idx, cache_size, itct); 3591 } 3592 3593 return 0; 3594 } 3595 DEFINE_SHOW_ATTRIBUTE(debugfs_itct_cache_v3_hw); 3596 3597 static void debugfs_create_files_v3_hw(struct hisi_hba *hisi_hba) 3598 { 3599 u64 *debugfs_timestamp; 3600 int dump_index = hisi_hba->debugfs_dump_index; 3601 struct dentry *dump_dentry; 3602 struct dentry *dentry; 3603 char name[256]; 3604 int p; 3605 int c; 3606 int d; 3607 3608 snprintf(name, 256, "%d", dump_index); 3609 3610 dump_dentry = debugfs_create_dir(name, hisi_hba->debugfs_dump_dentry); 3611 3612 debugfs_timestamp = &hisi_hba->debugfs_timestamp[dump_index]; 3613 3614 debugfs_create_u64("timestamp", 0400, dump_dentry, 3615 debugfs_timestamp); 3616 3617 debugfs_create_file("global", 0400, dump_dentry, 3618 &hisi_hba->debugfs_regs[dump_index][DEBUGFS_GLOBAL], 3619 &debugfs_global_v3_hw_fops); 3620 3621 /* Create port dir and files */ 3622 dentry = debugfs_create_dir("port", dump_dentry); 3623 for (p = 0; p < hisi_hba->n_phy; p++) { 3624 snprintf(name, 256, "%d", p); 3625 3626 debugfs_create_file(name, 0400, dentry, 3627 &hisi_hba->debugfs_port_reg[dump_index][p], 3628 &debugfs_port_v3_hw_fops); 3629 } 3630 3631 /* Create CQ dir and files */ 3632 dentry = debugfs_create_dir("cq", dump_dentry); 3633 for (c = 0; c < hisi_hba->queue_count; c++) { 3634 snprintf(name, 256, "%d", c); 3635 3636 debugfs_create_file(name, 0400, dentry, 3637 &hisi_hba->debugfs_cq[dump_index][c], 3638 &debugfs_cq_v3_hw_fops); 3639 } 3640 3641 /* Create DQ dir and files */ 3642 dentry = debugfs_create_dir("dq", dump_dentry); 3643 for (d = 0; d < hisi_hba->queue_count; d++) { 3644 snprintf(name, 256, "%d", d); 3645 3646 debugfs_create_file(name, 0400, dentry, 3647 &hisi_hba->debugfs_dq[dump_index][d], 3648 &debugfs_dq_v3_hw_fops); 3649 } 3650 3651 debugfs_create_file("iost", 0400, dump_dentry, 3652 &hisi_hba->debugfs_iost[dump_index], 3653 &debugfs_iost_v3_hw_fops); 3654 3655 debugfs_create_file("iost_cache", 0400, dump_dentry, 3656 &hisi_hba->debugfs_iost_cache[dump_index], 3657 &debugfs_iost_cache_v3_hw_fops); 3658 3659 debugfs_create_file("itct", 0400, dump_dentry, 3660 &hisi_hba->debugfs_itct[dump_index], 3661 &debugfs_itct_v3_hw_fops); 3662 3663 debugfs_create_file("itct_cache", 0400, dump_dentry, 3664 &hisi_hba->debugfs_itct_cache[dump_index], 3665 &debugfs_itct_cache_v3_hw_fops); 3666 3667 debugfs_create_file("axi", 0400, dump_dentry, 3668 &hisi_hba->debugfs_regs[dump_index][DEBUGFS_AXI], 3669 &debugfs_axi_v3_hw_fops); 3670 3671 debugfs_create_file("ras", 0400, dump_dentry, 3672 &hisi_hba->debugfs_regs[dump_index][DEBUGFS_RAS], 3673 &debugfs_ras_v3_hw_fops); 3674 } 3675 3676 static void debugfs_snapshot_regs_v3_hw(struct hisi_hba *hisi_hba) 3677 { 3678 int debugfs_dump_index = hisi_hba->debugfs_dump_index; 3679 struct device *dev = hisi_hba->dev; 3680 u64 timestamp = local_clock(); 3681 3682 if (debugfs_dump_index >= hisi_sas_debugfs_dump_count) { 3683 dev_warn(dev, "dump count exceeded!\n"); 3684 return; 3685 } 3686 3687 do_div(timestamp, NSEC_PER_MSEC); 3688 hisi_hba->debugfs_timestamp[debugfs_dump_index] = timestamp; 3689 3690 debugfs_snapshot_prepare_v3_hw(hisi_hba); 3691 3692 debugfs_snapshot_global_reg_v3_hw(hisi_hba); 3693 debugfs_snapshot_port_reg_v3_hw(hisi_hba); 3694 debugfs_snapshot_axi_reg_v3_hw(hisi_hba); 3695 debugfs_snapshot_ras_reg_v3_hw(hisi_hba); 3696 debugfs_snapshot_cq_reg_v3_hw(hisi_hba); 3697 debugfs_snapshot_dq_reg_v3_hw(hisi_hba); 3698 debugfs_snapshot_itct_reg_v3_hw(hisi_hba); 3699 debugfs_snapshot_iost_reg_v3_hw(hisi_hba); 3700 3701 debugfs_create_files_v3_hw(hisi_hba); 3702 3703 debugfs_snapshot_restore_v3_hw(hisi_hba); 3704 hisi_hba->debugfs_dump_index++; 3705 } 3706 3707 static ssize_t debugfs_trigger_dump_v3_hw_write(struct file *file, 3708 const char __user *user_buf, 3709 size_t count, loff_t *ppos) 3710 { 3711 struct hisi_hba *hisi_hba = file->f_inode->i_private; 3712 char buf[8]; 3713 3714 if (hisi_hba->debugfs_dump_index >= hisi_sas_debugfs_dump_count) 3715 return -EFAULT; 3716 3717 if (count > 8) 3718 return -EFAULT; 3719 3720 if (copy_from_user(buf, user_buf, count)) 3721 return -EFAULT; 3722 3723 if (buf[0] != '1') 3724 return -EFAULT; 3725 3726 queue_work(hisi_hba->wq, &hisi_hba->debugfs_work); 3727 3728 return count; 3729 } 3730 3731 static const struct file_operations debugfs_trigger_dump_v3_hw_fops = { 3732 .write = &debugfs_trigger_dump_v3_hw_write, 3733 .owner = THIS_MODULE, 3734 }; 3735 3736 enum { 3737 HISI_SAS_BIST_LOOPBACK_MODE_DIGITAL = 0, 3738 HISI_SAS_BIST_LOOPBACK_MODE_SERDES, 3739 HISI_SAS_BIST_LOOPBACK_MODE_REMOTE, 3740 }; 3741 3742 static const struct { 3743 int value; 3744 char *name; 3745 } debugfs_loop_linkrate_v3_hw[] = { 3746 { SAS_LINK_RATE_1_5_GBPS, "1.5 Gbit" }, 3747 { SAS_LINK_RATE_3_0_GBPS, "3.0 Gbit" }, 3748 { SAS_LINK_RATE_6_0_GBPS, "6.0 Gbit" }, 3749 { SAS_LINK_RATE_12_0_GBPS, "12.0 Gbit" }, 3750 }; 3751 3752 static int debugfs_bist_linkrate_v3_hw_show(struct seq_file *s, void *p) 3753 { 3754 struct hisi_hba *hisi_hba = s->private; 3755 int i; 3756 3757 for (i = 0; i < ARRAY_SIZE(debugfs_loop_linkrate_v3_hw); i++) { 3758 int match = (hisi_hba->debugfs_bist_linkrate == 3759 debugfs_loop_linkrate_v3_hw[i].value); 3760 3761 seq_printf(s, "%s%s%s ", match ? "[" : "", 3762 debugfs_loop_linkrate_v3_hw[i].name, 3763 match ? "]" : ""); 3764 } 3765 seq_puts(s, "\n"); 3766 3767 return 0; 3768 } 3769 3770 static ssize_t debugfs_bist_linkrate_v3_hw_write(struct file *filp, 3771 const char __user *buf, 3772 size_t count, loff_t *ppos) 3773 { 3774 struct seq_file *m = filp->private_data; 3775 struct hisi_hba *hisi_hba = m->private; 3776 char kbuf[16] = {}, *pkbuf; 3777 bool found = false; 3778 int i; 3779 3780 if (hisi_hba->debugfs_bist_enable) 3781 return -EPERM; 3782 3783 if (count >= sizeof(kbuf)) 3784 return -EOVERFLOW; 3785 3786 if (copy_from_user(kbuf, buf, count)) 3787 return -EINVAL; 3788 3789 pkbuf = strstrip(kbuf); 3790 3791 for (i = 0; i < ARRAY_SIZE(debugfs_loop_linkrate_v3_hw); i++) { 3792 if (!strncmp(debugfs_loop_linkrate_v3_hw[i].name, 3793 pkbuf, 16)) { 3794 hisi_hba->debugfs_bist_linkrate = 3795 debugfs_loop_linkrate_v3_hw[i].value; 3796 found = true; 3797 break; 3798 } 3799 } 3800 3801 if (!found) 3802 return -EINVAL; 3803 3804 return count; 3805 } 3806 3807 static int debugfs_bist_linkrate_v3_hw_open(struct inode *inode, 3808 struct file *filp) 3809 { 3810 return single_open(filp, debugfs_bist_linkrate_v3_hw_show, 3811 inode->i_private); 3812 } 3813 3814 static const struct file_operations debugfs_bist_linkrate_v3_hw_fops = { 3815 .open = debugfs_bist_linkrate_v3_hw_open, 3816 .read = seq_read, 3817 .write = debugfs_bist_linkrate_v3_hw_write, 3818 .llseek = seq_lseek, 3819 .release = single_release, 3820 .owner = THIS_MODULE, 3821 }; 3822 3823 static const struct { 3824 int value; 3825 char *name; 3826 } debugfs_loop_code_mode_v3_hw[] = { 3827 { HISI_SAS_BIST_CODE_MODE_PRBS7, "PRBS7" }, 3828 { HISI_SAS_BIST_CODE_MODE_PRBS23, "PRBS23" }, 3829 { HISI_SAS_BIST_CODE_MODE_PRBS31, "PRBS31" }, 3830 { HISI_SAS_BIST_CODE_MODE_JTPAT, "JTPAT" }, 3831 { HISI_SAS_BIST_CODE_MODE_CJTPAT, "CJTPAT" }, 3832 { HISI_SAS_BIST_CODE_MODE_SCRAMBED_0, "SCRAMBED_0" }, 3833 { HISI_SAS_BIST_CODE_MODE_TRAIN, "TRAIN" }, 3834 { HISI_SAS_BIST_CODE_MODE_TRAIN_DONE, "TRAIN_DONE" }, 3835 { HISI_SAS_BIST_CODE_MODE_HFTP, "HFTP" }, 3836 { HISI_SAS_BIST_CODE_MODE_MFTP, "MFTP" }, 3837 { HISI_SAS_BIST_CODE_MODE_LFTP, "LFTP" }, 3838 { HISI_SAS_BIST_CODE_MODE_FIXED_DATA, "FIXED_DATA" }, 3839 }; 3840 3841 static int debugfs_bist_code_mode_v3_hw_show(struct seq_file *s, void *p) 3842 { 3843 struct hisi_hba *hisi_hba = s->private; 3844 int i; 3845 3846 for (i = 0; i < ARRAY_SIZE(debugfs_loop_code_mode_v3_hw); i++) { 3847 int match = (hisi_hba->debugfs_bist_code_mode == 3848 debugfs_loop_code_mode_v3_hw[i].value); 3849 3850 seq_printf(s, "%s%s%s ", match ? "[" : "", 3851 debugfs_loop_code_mode_v3_hw[i].name, 3852 match ? "]" : ""); 3853 } 3854 seq_puts(s, "\n"); 3855 3856 return 0; 3857 } 3858 3859 static ssize_t debugfs_bist_code_mode_v3_hw_write(struct file *filp, 3860 const char __user *buf, 3861 size_t count, 3862 loff_t *ppos) 3863 { 3864 struct seq_file *m = filp->private_data; 3865 struct hisi_hba *hisi_hba = m->private; 3866 char kbuf[16] = {}, *pkbuf; 3867 bool found = false; 3868 int i; 3869 3870 if (hisi_hba->debugfs_bist_enable) 3871 return -EPERM; 3872 3873 if (count >= sizeof(kbuf)) 3874 return -EINVAL; 3875 3876 if (copy_from_user(kbuf, buf, count)) 3877 return -EOVERFLOW; 3878 3879 pkbuf = strstrip(kbuf); 3880 3881 for (i = 0; i < ARRAY_SIZE(debugfs_loop_code_mode_v3_hw); i++) { 3882 if (!strncmp(debugfs_loop_code_mode_v3_hw[i].name, 3883 pkbuf, 16)) { 3884 hisi_hba->debugfs_bist_code_mode = 3885 debugfs_loop_code_mode_v3_hw[i].value; 3886 found = true; 3887 break; 3888 } 3889 } 3890 3891 if (!found) 3892 return -EINVAL; 3893 3894 return count; 3895 } 3896 3897 static int debugfs_bist_code_mode_v3_hw_open(struct inode *inode, 3898 struct file *filp) 3899 { 3900 return single_open(filp, debugfs_bist_code_mode_v3_hw_show, 3901 inode->i_private); 3902 } 3903 3904 static const struct file_operations debugfs_bist_code_mode_v3_hw_fops = { 3905 .open = debugfs_bist_code_mode_v3_hw_open, 3906 .read = seq_read, 3907 .write = debugfs_bist_code_mode_v3_hw_write, 3908 .llseek = seq_lseek, 3909 .release = single_release, 3910 .owner = THIS_MODULE, 3911 }; 3912 3913 static ssize_t debugfs_bist_phy_v3_hw_write(struct file *filp, 3914 const char __user *buf, 3915 size_t count, loff_t *ppos) 3916 { 3917 struct seq_file *m = filp->private_data; 3918 struct hisi_hba *hisi_hba = m->private; 3919 unsigned int phy_no; 3920 int val; 3921 3922 if (hisi_hba->debugfs_bist_enable) 3923 return -EPERM; 3924 3925 val = kstrtouint_from_user(buf, count, 0, &phy_no); 3926 if (val) 3927 return val; 3928 3929 if (phy_no >= hisi_hba->n_phy) 3930 return -EINVAL; 3931 3932 hisi_hba->debugfs_bist_phy_no = phy_no; 3933 3934 return count; 3935 } 3936 3937 static int debugfs_bist_phy_v3_hw_show(struct seq_file *s, void *p) 3938 { 3939 struct hisi_hba *hisi_hba = s->private; 3940 3941 seq_printf(s, "%d\n", hisi_hba->debugfs_bist_phy_no); 3942 3943 return 0; 3944 } 3945 3946 static int debugfs_bist_phy_v3_hw_open(struct inode *inode, 3947 struct file *filp) 3948 { 3949 return single_open(filp, debugfs_bist_phy_v3_hw_show, 3950 inode->i_private); 3951 } 3952 3953 static const struct file_operations debugfs_bist_phy_v3_hw_fops = { 3954 .open = debugfs_bist_phy_v3_hw_open, 3955 .read = seq_read, 3956 .write = debugfs_bist_phy_v3_hw_write, 3957 .llseek = seq_lseek, 3958 .release = single_release, 3959 .owner = THIS_MODULE, 3960 }; 3961 3962 static const struct { 3963 int value; 3964 char *name; 3965 } debugfs_loop_modes_v3_hw[] = { 3966 { HISI_SAS_BIST_LOOPBACK_MODE_DIGITAL, "digital" }, 3967 { HISI_SAS_BIST_LOOPBACK_MODE_SERDES, "serdes" }, 3968 { HISI_SAS_BIST_LOOPBACK_MODE_REMOTE, "remote" }, 3969 }; 3970 3971 static int debugfs_bist_mode_v3_hw_show(struct seq_file *s, void *p) 3972 { 3973 struct hisi_hba *hisi_hba = s->private; 3974 int i; 3975 3976 for (i = 0; i < ARRAY_SIZE(debugfs_loop_modes_v3_hw); i++) { 3977 int match = (hisi_hba->debugfs_bist_mode == 3978 debugfs_loop_modes_v3_hw[i].value); 3979 3980 seq_printf(s, "%s%s%s ", match ? "[" : "", 3981 debugfs_loop_modes_v3_hw[i].name, 3982 match ? "]" : ""); 3983 } 3984 seq_puts(s, "\n"); 3985 3986 return 0; 3987 } 3988 3989 static ssize_t debugfs_bist_mode_v3_hw_write(struct file *filp, 3990 const char __user *buf, 3991 size_t count, loff_t *ppos) 3992 { 3993 struct seq_file *m = filp->private_data; 3994 struct hisi_hba *hisi_hba = m->private; 3995 char kbuf[16] = {}, *pkbuf; 3996 bool found = false; 3997 int i; 3998 3999 if (hisi_hba->debugfs_bist_enable) 4000 return -EPERM; 4001 4002 if (count >= sizeof(kbuf)) 4003 return -EINVAL; 4004 4005 if (copy_from_user(kbuf, buf, count)) 4006 return -EOVERFLOW; 4007 4008 pkbuf = strstrip(kbuf); 4009 4010 for (i = 0; i < ARRAY_SIZE(debugfs_loop_modes_v3_hw); i++) { 4011 if (!strncmp(debugfs_loop_modes_v3_hw[i].name, pkbuf, 16)) { 4012 hisi_hba->debugfs_bist_mode = 4013 debugfs_loop_modes_v3_hw[i].value; 4014 found = true; 4015 break; 4016 } 4017 } 4018 4019 if (!found) 4020 return -EINVAL; 4021 4022 return count; 4023 } 4024 4025 static int debugfs_bist_mode_v3_hw_open(struct inode *inode, 4026 struct file *filp) 4027 { 4028 return single_open(filp, debugfs_bist_mode_v3_hw_show, 4029 inode->i_private); 4030 } 4031 4032 static const struct file_operations debugfs_bist_mode_v3_hw_fops = { 4033 .open = debugfs_bist_mode_v3_hw_open, 4034 .read = seq_read, 4035 .write = debugfs_bist_mode_v3_hw_write, 4036 .llseek = seq_lseek, 4037 .release = single_release, 4038 .owner = THIS_MODULE, 4039 }; 4040 4041 static ssize_t debugfs_bist_enable_v3_hw_write(struct file *filp, 4042 const char __user *buf, 4043 size_t count, loff_t *ppos) 4044 { 4045 struct seq_file *m = filp->private_data; 4046 struct hisi_hba *hisi_hba = m->private; 4047 unsigned int enable; 4048 int val; 4049 4050 val = kstrtouint_from_user(buf, count, 0, &enable); 4051 if (val) 4052 return val; 4053 4054 if (enable > 1) 4055 return -EINVAL; 4056 4057 if (enable == hisi_hba->debugfs_bist_enable) 4058 return count; 4059 4060 val = debugfs_set_bist_v3_hw(hisi_hba, enable); 4061 if (val < 0) 4062 return val; 4063 4064 hisi_hba->debugfs_bist_enable = enable; 4065 4066 return count; 4067 } 4068 4069 static int debugfs_bist_enable_v3_hw_show(struct seq_file *s, void *p) 4070 { 4071 struct hisi_hba *hisi_hba = s->private; 4072 4073 seq_printf(s, "%d\n", hisi_hba->debugfs_bist_enable); 4074 4075 return 0; 4076 } 4077 4078 static int debugfs_bist_enable_v3_hw_open(struct inode *inode, 4079 struct file *filp) 4080 { 4081 return single_open(filp, debugfs_bist_enable_v3_hw_show, 4082 inode->i_private); 4083 } 4084 4085 static const struct file_operations debugfs_bist_enable_v3_hw_fops = { 4086 .open = debugfs_bist_enable_v3_hw_open, 4087 .read = seq_read, 4088 .write = debugfs_bist_enable_v3_hw_write, 4089 .llseek = seq_lseek, 4090 .release = single_release, 4091 .owner = THIS_MODULE, 4092 }; 4093 4094 static const struct { 4095 char *name; 4096 } debugfs_ffe_name_v3_hw[FFE_CFG_MAX] = { 4097 { "SAS_1_5_GBPS" }, 4098 { "SAS_3_0_GBPS" }, 4099 { "SAS_6_0_GBPS" }, 4100 { "SAS_12_0_GBPS" }, 4101 { "FFE_RESV" }, 4102 { "SATA_1_5_GBPS" }, 4103 { "SATA_3_0_GBPS" }, 4104 { "SATA_6_0_GBPS" }, 4105 }; 4106 4107 static ssize_t debugfs_v3_hw_write(struct file *filp, 4108 const char __user *buf, 4109 size_t count, loff_t *ppos) 4110 { 4111 struct seq_file *m = filp->private_data; 4112 u32 *val = m->private; 4113 int res; 4114 4115 res = kstrtouint_from_user(buf, count, 0, val); 4116 if (res) 4117 return res; 4118 4119 return count; 4120 } 4121 4122 static int debugfs_v3_hw_show(struct seq_file *s, void *p) 4123 { 4124 u32 *val = s->private; 4125 4126 seq_printf(s, "0x%x\n", *val); 4127 4128 return 0; 4129 } 4130 4131 static int debugfs_v3_hw_open(struct inode *inode, struct file *filp) 4132 { 4133 return single_open(filp, debugfs_v3_hw_show, 4134 inode->i_private); 4135 } 4136 4137 static const struct file_operations debugfs_v3_hw_fops = { 4138 .open = debugfs_v3_hw_open, 4139 .read = seq_read, 4140 .write = debugfs_v3_hw_write, 4141 .llseek = seq_lseek, 4142 .release = single_release, 4143 .owner = THIS_MODULE, 4144 }; 4145 4146 static ssize_t debugfs_phy_down_cnt_v3_hw_write(struct file *filp, 4147 const char __user *buf, 4148 size_t count, loff_t *ppos) 4149 { 4150 struct seq_file *s = filp->private_data; 4151 struct hisi_sas_phy *phy = s->private; 4152 unsigned int set_val; 4153 int res; 4154 4155 res = kstrtouint_from_user(buf, count, 0, &set_val); 4156 if (res) 4157 return res; 4158 4159 if (set_val > 0) 4160 return -EINVAL; 4161 4162 atomic_set(&phy->down_cnt, 0); 4163 4164 return count; 4165 } 4166 4167 static int debugfs_phy_down_cnt_v3_hw_show(struct seq_file *s, void *p) 4168 { 4169 struct hisi_sas_phy *phy = s->private; 4170 4171 seq_printf(s, "%d\n", atomic_read(&phy->down_cnt)); 4172 4173 return 0; 4174 } 4175 4176 static int debugfs_phy_down_cnt_v3_hw_open(struct inode *inode, 4177 struct file *filp) 4178 { 4179 return single_open(filp, debugfs_phy_down_cnt_v3_hw_show, 4180 inode->i_private); 4181 } 4182 4183 static const struct file_operations debugfs_phy_down_cnt_v3_hw_fops = { 4184 .open = debugfs_phy_down_cnt_v3_hw_open, 4185 .read = seq_read, 4186 .write = debugfs_phy_down_cnt_v3_hw_write, 4187 .llseek = seq_lseek, 4188 .release = single_release, 4189 .owner = THIS_MODULE, 4190 }; 4191 4192 enum fifo_dump_mode_v3_hw { 4193 FIFO_DUMP_FORVER = (1U << 0), 4194 FIFO_DUMP_AFTER_TRIGGER = (1U << 1), 4195 FIFO_DUMP_UNTILL_TRIGGER = (1U << 2), 4196 }; 4197 4198 enum fifo_trigger_mode_v3_hw { 4199 FIFO_TRIGGER_EDGE = (1U << 0), 4200 FIFO_TRIGGER_SAME_LEVEL = (1U << 1), 4201 FIFO_TRIGGER_DIFF_LEVEL = (1U << 2), 4202 }; 4203 4204 static int debugfs_is_fifo_config_valid_v3_hw(struct hisi_sas_phy *phy) 4205 { 4206 struct hisi_hba *hisi_hba = phy->hisi_hba; 4207 4208 if (phy->fifo.signal_sel > 0xf) { 4209 dev_info(hisi_hba->dev, "Invalid signal select: %u\n", 4210 phy->fifo.signal_sel); 4211 return -EINVAL; 4212 } 4213 4214 switch (phy->fifo.dump_mode) { 4215 case FIFO_DUMP_FORVER: 4216 case FIFO_DUMP_AFTER_TRIGGER: 4217 case FIFO_DUMP_UNTILL_TRIGGER: 4218 break; 4219 default: 4220 dev_info(hisi_hba->dev, "Invalid dump mode: %u\n", 4221 phy->fifo.dump_mode); 4222 return -EINVAL; 4223 } 4224 4225 /* when FIFO_DUMP_FORVER, no need to check trigger_mode */ 4226 if (phy->fifo.dump_mode == FIFO_DUMP_FORVER) 4227 return 0; 4228 4229 switch (phy->fifo.trigger_mode) { 4230 case FIFO_TRIGGER_EDGE: 4231 case FIFO_TRIGGER_SAME_LEVEL: 4232 case FIFO_TRIGGER_DIFF_LEVEL: 4233 break; 4234 default: 4235 dev_info(hisi_hba->dev, "Invalid trigger mode: %u\n", 4236 phy->fifo.trigger_mode); 4237 return -EINVAL; 4238 } 4239 return 0; 4240 } 4241 4242 static int debugfs_update_fifo_config_v3_hw(struct hisi_sas_phy *phy) 4243 { 4244 u32 trigger_mode = phy->fifo.trigger_mode; 4245 u32 signal_sel = phy->fifo.signal_sel; 4246 u32 dump_mode = phy->fifo.dump_mode; 4247 struct hisi_hba *hisi_hba = phy->hisi_hba; 4248 int phy_no = phy->sas_phy.id; 4249 u32 reg_val; 4250 int res; 4251 4252 /* Check the validity of trace FIFO configuration */ 4253 res = debugfs_is_fifo_config_valid_v3_hw(phy); 4254 if (res) 4255 return res; 4256 4257 reg_val = hisi_sas_phy_read32(hisi_hba, phy_no, DFX_FIFO_CTRL); 4258 /* Disable trace FIFO before update configuration */ 4259 reg_val |= DFX_FIFO_CTRL_DUMP_DISABLE_MSK; 4260 4261 /* Update trace FIFO configuration */ 4262 reg_val &= ~(DFX_FIFO_CTRL_DUMP_MODE_MSK | 4263 DFX_FIFO_CTRL_SIGNAL_SEL_MSK | 4264 DFX_FIFO_CTRL_TRIGGER_MODE_MSK); 4265 4266 reg_val |= ((trigger_mode << DFX_FIFO_CTRL_TRIGGER_MODE_OFF) | 4267 (dump_mode << DFX_FIFO_CTRL_DUMP_MODE_OFF) | 4268 (signal_sel << DFX_FIFO_CTRL_SIGNAL_SEL_OFF)); 4269 hisi_sas_phy_write32(hisi_hba, phy_no, DFX_FIFO_CTRL, reg_val); 4270 4271 hisi_sas_phy_write32(hisi_hba, phy_no, DFX_FIFO_DUMP_MSK, 4272 phy->fifo.dump_msk); 4273 4274 hisi_sas_phy_write32(hisi_hba, phy_no, DFX_FIFO_TRIGGER, 4275 phy->fifo.trigger); 4276 4277 hisi_sas_phy_write32(hisi_hba, phy_no, DFX_FIFO_TRIGGER_MSK, 4278 phy->fifo.trigger_msk); 4279 4280 /* Enable trace FIFO after updated configuration */ 4281 reg_val = hisi_sas_phy_read32(hisi_hba, phy_no, DFX_FIFO_CTRL); 4282 reg_val &= ~DFX_FIFO_CTRL_DUMP_DISABLE_MSK; 4283 hisi_sas_phy_write32(hisi_hba, phy_no, DFX_FIFO_CTRL, reg_val); 4284 4285 return 0; 4286 } 4287 4288 static ssize_t debugfs_fifo_update_cfg_v3_hw_write(struct file *filp, 4289 const char __user *buf, 4290 size_t count, loff_t *ppos) 4291 { 4292 struct hisi_sas_phy *phy = filp->private_data; 4293 bool update; 4294 int val; 4295 4296 val = kstrtobool_from_user(buf, count, &update); 4297 if (val) 4298 return val; 4299 4300 if (update != 1) 4301 return -EINVAL; 4302 4303 val = debugfs_update_fifo_config_v3_hw(phy); 4304 if (val) 4305 return val; 4306 4307 return count; 4308 } 4309 4310 static const struct file_operations debugfs_fifo_update_cfg_v3_hw_fops = { 4311 .open = simple_open, 4312 .write = debugfs_fifo_update_cfg_v3_hw_write, 4313 .owner = THIS_MODULE, 4314 }; 4315 4316 static void debugfs_read_fifo_data_v3_hw(struct hisi_sas_phy *phy) 4317 { 4318 struct hisi_hba *hisi_hba = phy->hisi_hba; 4319 u32 *buf = phy->fifo.rd_data; 4320 int phy_no = phy->sas_phy.id; 4321 u32 val; 4322 int i; 4323 4324 memset(buf, 0, sizeof(phy->fifo.rd_data)); 4325 4326 /* Disable trace FIFO before read data */ 4327 val = hisi_sas_phy_read32(hisi_hba, phy_no, DFX_FIFO_CTRL); 4328 val |= DFX_FIFO_CTRL_DUMP_DISABLE_MSK; 4329 hisi_sas_phy_write32(hisi_hba, phy_no, DFX_FIFO_CTRL, val); 4330 4331 for (i = 0; i < HISI_SAS_FIFO_DATA_DW_SIZE; i++) { 4332 val = hisi_sas_phy_read32(hisi_hba, phy_no, 4333 DFX_FIFO_RD_DATA); 4334 buf[i] = val; 4335 } 4336 4337 /* Enable trace FIFO after read data */ 4338 val = hisi_sas_phy_read32(hisi_hba, phy_no, DFX_FIFO_CTRL); 4339 val &= ~DFX_FIFO_CTRL_DUMP_DISABLE_MSK; 4340 hisi_sas_phy_write32(hisi_hba, phy_no, DFX_FIFO_CTRL, val); 4341 } 4342 4343 static int debugfs_fifo_data_v3_hw_show(struct seq_file *s, void *p) 4344 { 4345 struct hisi_sas_phy *phy = s->private; 4346 4347 debugfs_read_fifo_data_v3_hw(phy); 4348 4349 debugfs_show_row_32_v3_hw(s, 0, HISI_SAS_FIFO_DATA_DW_SIZE * 4, 4350 phy->fifo.rd_data); 4351 4352 return 0; 4353 } 4354 DEFINE_SHOW_ATTRIBUTE(debugfs_fifo_data_v3_hw); 4355 4356 static void debugfs_fifo_init_v3_hw(struct hisi_hba *hisi_hba) 4357 { 4358 int phy_no; 4359 4360 hisi_hba->debugfs_fifo_dentry = 4361 debugfs_create_dir("fifo", hisi_hba->debugfs_dir); 4362 4363 for (phy_no = 0; phy_no < hisi_hba->n_phy; phy_no++) { 4364 struct hisi_sas_phy *phy = &hisi_hba->phy[phy_no]; 4365 struct dentry *port_dentry; 4366 char name[256]; 4367 u32 val; 4368 4369 /* get default configuration for trace FIFO */ 4370 val = hisi_sas_phy_read32(hisi_hba, phy_no, DFX_FIFO_CTRL); 4371 val &= DFX_FIFO_CTRL_DUMP_MODE_MSK; 4372 val >>= DFX_FIFO_CTRL_DUMP_MODE_OFF; 4373 phy->fifo.dump_mode = val; 4374 4375 val = hisi_sas_phy_read32(hisi_hba, phy_no, DFX_FIFO_CTRL); 4376 val &= DFX_FIFO_CTRL_TRIGGER_MODE_MSK; 4377 val >>= DFX_FIFO_CTRL_TRIGGER_MODE_OFF; 4378 phy->fifo.trigger_mode = val; 4379 4380 val = hisi_sas_phy_read32(hisi_hba, phy_no, DFX_FIFO_CTRL); 4381 val &= DFX_FIFO_CTRL_SIGNAL_SEL_MSK; 4382 val >>= DFX_FIFO_CTRL_SIGNAL_SEL_OFF; 4383 phy->fifo.signal_sel = val; 4384 4385 val = hisi_sas_phy_read32(hisi_hba, phy_no, DFX_FIFO_DUMP_MSK); 4386 phy->fifo.dump_msk = val; 4387 4388 val = hisi_sas_phy_read32(hisi_hba, phy_no, DFX_FIFO_TRIGGER); 4389 phy->fifo.trigger = val; 4390 val = hisi_sas_phy_read32(hisi_hba, phy_no, DFX_FIFO_TRIGGER_MSK); 4391 phy->fifo.trigger_msk = val; 4392 4393 snprintf(name, 256, "%d", phy_no); 4394 port_dentry = debugfs_create_dir(name, 4395 hisi_hba->debugfs_fifo_dentry); 4396 4397 debugfs_create_file("update_config", 0200, port_dentry, phy, 4398 &debugfs_fifo_update_cfg_v3_hw_fops); 4399 4400 debugfs_create_file("signal_sel", 0600, port_dentry, 4401 &phy->fifo.signal_sel, 4402 &debugfs_v3_hw_fops); 4403 4404 debugfs_create_file("dump_msk", 0600, port_dentry, 4405 &phy->fifo.dump_msk, 4406 &debugfs_v3_hw_fops); 4407 4408 debugfs_create_file("dump_mode", 0600, port_dentry, 4409 &phy->fifo.dump_mode, 4410 &debugfs_v3_hw_fops); 4411 4412 debugfs_create_file("trigger_mode", 0600, port_dentry, 4413 &phy->fifo.trigger_mode, 4414 &debugfs_v3_hw_fops); 4415 4416 debugfs_create_file("trigger", 0600, port_dentry, 4417 &phy->fifo.trigger, 4418 &debugfs_v3_hw_fops); 4419 4420 debugfs_create_file("trigger_msk", 0600, port_dentry, 4421 &phy->fifo.trigger_msk, 4422 &debugfs_v3_hw_fops); 4423 4424 debugfs_create_file("fifo_data", 0400, port_dentry, phy, 4425 &debugfs_fifo_data_v3_hw_fops); 4426 } 4427 } 4428 4429 static void debugfs_work_handler_v3_hw(struct work_struct *work) 4430 { 4431 struct hisi_hba *hisi_hba = 4432 container_of(work, struct hisi_hba, debugfs_work); 4433 4434 debugfs_snapshot_regs_v3_hw(hisi_hba); 4435 } 4436 4437 static void debugfs_release_v3_hw(struct hisi_hba *hisi_hba, int dump_index) 4438 { 4439 struct device *dev = hisi_hba->dev; 4440 int i; 4441 4442 devm_kfree(dev, hisi_hba->debugfs_iost_cache[dump_index].cache); 4443 devm_kfree(dev, hisi_hba->debugfs_itct_cache[dump_index].cache); 4444 devm_kfree(dev, hisi_hba->debugfs_iost[dump_index].iost); 4445 devm_kfree(dev, hisi_hba->debugfs_itct[dump_index].itct); 4446 4447 for (i = 0; i < hisi_hba->queue_count; i++) 4448 devm_kfree(dev, hisi_hba->debugfs_dq[dump_index][i].hdr); 4449 4450 for (i = 0; i < hisi_hba->queue_count; i++) 4451 devm_kfree(dev, 4452 hisi_hba->debugfs_cq[dump_index][i].complete_hdr); 4453 4454 for (i = 0; i < DEBUGFS_REGS_NUM; i++) 4455 devm_kfree(dev, hisi_hba->debugfs_regs[dump_index][i].data); 4456 4457 for (i = 0; i < hisi_hba->n_phy; i++) 4458 devm_kfree(dev, hisi_hba->debugfs_port_reg[dump_index][i].data); 4459 } 4460 4461 static const struct hisi_sas_debugfs_reg *debugfs_reg_array_v3_hw[DEBUGFS_REGS_NUM] = { 4462 [DEBUGFS_GLOBAL] = &debugfs_global_reg, 4463 [DEBUGFS_AXI] = &debugfs_axi_reg, 4464 [DEBUGFS_RAS] = &debugfs_ras_reg, 4465 }; 4466 4467 static int debugfs_alloc_v3_hw(struct hisi_hba *hisi_hba, int dump_index) 4468 { 4469 const struct hisi_sas_hw *hw = hisi_hba->hw; 4470 struct device *dev = hisi_hba->dev; 4471 int p, c, d, r, i; 4472 size_t sz; 4473 4474 for (r = 0; r < DEBUGFS_REGS_NUM; r++) { 4475 struct hisi_sas_debugfs_regs *regs = 4476 &hisi_hba->debugfs_regs[dump_index][r]; 4477 4478 sz = debugfs_reg_array_v3_hw[r]->count * 4; 4479 regs->data = devm_kmalloc(dev, sz, GFP_KERNEL); 4480 if (!regs->data) 4481 goto fail; 4482 regs->hisi_hba = hisi_hba; 4483 } 4484 4485 sz = debugfs_port_reg.count * 4; 4486 for (p = 0; p < hisi_hba->n_phy; p++) { 4487 struct hisi_sas_debugfs_port *port = 4488 &hisi_hba->debugfs_port_reg[dump_index][p]; 4489 4490 port->data = devm_kmalloc(dev, sz, GFP_KERNEL); 4491 if (!port->data) 4492 goto fail; 4493 port->phy = &hisi_hba->phy[p]; 4494 } 4495 4496 sz = hw->complete_hdr_size * HISI_SAS_QUEUE_SLOTS; 4497 for (c = 0; c < hisi_hba->queue_count; c++) { 4498 struct hisi_sas_debugfs_cq *cq = 4499 &hisi_hba->debugfs_cq[dump_index][c]; 4500 4501 cq->complete_hdr = devm_kmalloc(dev, sz, GFP_KERNEL); 4502 if (!cq->complete_hdr) 4503 goto fail; 4504 cq->cq = &hisi_hba->cq[c]; 4505 } 4506 4507 sz = sizeof(struct hisi_sas_cmd_hdr) * HISI_SAS_QUEUE_SLOTS; 4508 for (d = 0; d < hisi_hba->queue_count; d++) { 4509 struct hisi_sas_debugfs_dq *dq = 4510 &hisi_hba->debugfs_dq[dump_index][d]; 4511 4512 dq->hdr = devm_kmalloc(dev, sz, GFP_KERNEL); 4513 if (!dq->hdr) 4514 goto fail; 4515 dq->dq = &hisi_hba->dq[d]; 4516 } 4517 4518 sz = HISI_SAS_MAX_COMMANDS * sizeof(struct hisi_sas_iost); 4519 4520 hisi_hba->debugfs_iost[dump_index].iost = 4521 devm_kmalloc(dev, sz, GFP_KERNEL); 4522 if (!hisi_hba->debugfs_iost[dump_index].iost) 4523 goto fail; 4524 4525 sz = HISI_SAS_IOST_ITCT_CACHE_NUM * 4526 sizeof(struct hisi_sas_iost_itct_cache); 4527 4528 hisi_hba->debugfs_iost_cache[dump_index].cache = 4529 devm_kmalloc(dev, sz, GFP_KERNEL); 4530 if (!hisi_hba->debugfs_iost_cache[dump_index].cache) 4531 goto fail; 4532 4533 sz = HISI_SAS_IOST_ITCT_CACHE_NUM * 4534 sizeof(struct hisi_sas_iost_itct_cache); 4535 4536 hisi_hba->debugfs_itct_cache[dump_index].cache = 4537 devm_kmalloc(dev, sz, GFP_KERNEL); 4538 if (!hisi_hba->debugfs_itct_cache[dump_index].cache) 4539 goto fail; 4540 4541 /* New memory allocation must be locate before itct */ 4542 sz = HISI_SAS_MAX_ITCT_ENTRIES * sizeof(struct hisi_sas_itct); 4543 4544 hisi_hba->debugfs_itct[dump_index].itct = 4545 devm_kmalloc(dev, sz, GFP_KERNEL); 4546 if (!hisi_hba->debugfs_itct[dump_index].itct) 4547 goto fail; 4548 4549 return 0; 4550 fail: 4551 for (i = 0; i < hisi_sas_debugfs_dump_count; i++) 4552 debugfs_release_v3_hw(hisi_hba, i); 4553 return -ENOMEM; 4554 } 4555 4556 static void debugfs_phy_down_cnt_init_v3_hw(struct hisi_hba *hisi_hba) 4557 { 4558 struct dentry *dir = debugfs_create_dir("phy_down_cnt", 4559 hisi_hba->debugfs_dir); 4560 char name[16]; 4561 int phy_no; 4562 4563 for (phy_no = 0; phy_no < hisi_hba->n_phy; phy_no++) { 4564 snprintf(name, 16, "%d", phy_no); 4565 debugfs_create_file(name, 0600, dir, 4566 &hisi_hba->phy[phy_no], 4567 &debugfs_phy_down_cnt_v3_hw_fops); 4568 } 4569 } 4570 4571 static void debugfs_bist_init_v3_hw(struct hisi_hba *hisi_hba) 4572 { 4573 struct dentry *ports_dentry; 4574 int phy_no; 4575 4576 hisi_hba->debugfs_bist_dentry = 4577 debugfs_create_dir("bist", hisi_hba->debugfs_dir); 4578 debugfs_create_file("link_rate", 0600, 4579 hisi_hba->debugfs_bist_dentry, hisi_hba, 4580 &debugfs_bist_linkrate_v3_hw_fops); 4581 4582 debugfs_create_file("code_mode", 0600, 4583 hisi_hba->debugfs_bist_dentry, hisi_hba, 4584 &debugfs_bist_code_mode_v3_hw_fops); 4585 4586 debugfs_create_file("fixed_code", 0600, 4587 hisi_hba->debugfs_bist_dentry, 4588 &hisi_hba->debugfs_bist_fixed_code[0], 4589 &debugfs_v3_hw_fops); 4590 4591 debugfs_create_file("fixed_code_1", 0600, 4592 hisi_hba->debugfs_bist_dentry, 4593 &hisi_hba->debugfs_bist_fixed_code[1], 4594 &debugfs_v3_hw_fops); 4595 4596 debugfs_create_file("phy_id", 0600, hisi_hba->debugfs_bist_dentry, 4597 hisi_hba, &debugfs_bist_phy_v3_hw_fops); 4598 4599 debugfs_create_u32("cnt", 0600, hisi_hba->debugfs_bist_dentry, 4600 &hisi_hba->debugfs_bist_cnt); 4601 4602 debugfs_create_file("loopback_mode", 0600, 4603 hisi_hba->debugfs_bist_dentry, 4604 hisi_hba, &debugfs_bist_mode_v3_hw_fops); 4605 4606 debugfs_create_file("enable", 0600, hisi_hba->debugfs_bist_dentry, 4607 hisi_hba, &debugfs_bist_enable_v3_hw_fops); 4608 4609 ports_dentry = debugfs_create_dir("port", hisi_hba->debugfs_bist_dentry); 4610 4611 for (phy_no = 0; phy_no < hisi_hba->n_phy; phy_no++) { 4612 struct dentry *port_dentry; 4613 struct dentry *ffe_dentry; 4614 char name[256]; 4615 int i; 4616 4617 snprintf(name, 256, "%d", phy_no); 4618 port_dentry = debugfs_create_dir(name, ports_dentry); 4619 ffe_dentry = debugfs_create_dir("ffe", port_dentry); 4620 for (i = 0; i < FFE_CFG_MAX; i++) { 4621 if (i == FFE_RESV) 4622 continue; 4623 debugfs_create_file(debugfs_ffe_name_v3_hw[i].name, 4624 0600, ffe_dentry, 4625 &hisi_hba->debugfs_bist_ffe[phy_no][i], 4626 &debugfs_v3_hw_fops); 4627 } 4628 } 4629 4630 hisi_hba->debugfs_bist_linkrate = SAS_LINK_RATE_1_5_GBPS; 4631 } 4632 4633 static void debugfs_init_v3_hw(struct hisi_hba *hisi_hba) 4634 { 4635 struct device *dev = hisi_hba->dev; 4636 int i; 4637 4638 hisi_hba->debugfs_dir = debugfs_create_dir(dev_name(dev), 4639 hisi_sas_debugfs_dir); 4640 debugfs_create_file("trigger_dump", 0200, 4641 hisi_hba->debugfs_dir, 4642 hisi_hba, 4643 &debugfs_trigger_dump_v3_hw_fops); 4644 4645 /* create bist structures */ 4646 debugfs_bist_init_v3_hw(hisi_hba); 4647 4648 hisi_hba->debugfs_dump_dentry = 4649 debugfs_create_dir("dump", hisi_hba->debugfs_dir); 4650 4651 debugfs_phy_down_cnt_init_v3_hw(hisi_hba); 4652 debugfs_fifo_init_v3_hw(hisi_hba); 4653 4654 for (i = 0; i < hisi_sas_debugfs_dump_count; i++) { 4655 if (debugfs_alloc_v3_hw(hisi_hba, i)) { 4656 debugfs_remove_recursive(hisi_hba->debugfs_dir); 4657 dev_dbg(dev, "failed to init debugfs!\n"); 4658 break; 4659 } 4660 } 4661 } 4662 4663 static void debugfs_exit_v3_hw(struct hisi_hba *hisi_hba) 4664 { 4665 debugfs_remove_recursive(hisi_hba->debugfs_dir); 4666 } 4667 4668 static int 4669 hisi_sas_v3_probe(struct pci_dev *pdev, const struct pci_device_id *id) 4670 { 4671 struct Scsi_Host *shost; 4672 struct hisi_hba *hisi_hba; 4673 struct device *dev = &pdev->dev; 4674 struct asd_sas_phy **arr_phy; 4675 struct asd_sas_port **arr_port; 4676 struct sas_ha_struct *sha; 4677 int rc, phy_nr, port_nr, i; 4678 4679 rc = pcim_enable_device(pdev); 4680 if (rc) 4681 goto err_out; 4682 4683 pci_set_master(pdev); 4684 4685 rc = pcim_iomap_regions(pdev, 1 << BAR_NO_V3_HW, DRV_NAME); 4686 if (rc) 4687 goto err_out; 4688 4689 rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)); 4690 if (rc) 4691 rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)); 4692 if (rc) { 4693 dev_err(dev, "No usable DMA addressing method\n"); 4694 rc = -ENODEV; 4695 goto err_out; 4696 } 4697 4698 shost = hisi_sas_shost_alloc_pci(pdev); 4699 if (!shost) { 4700 rc = -ENOMEM; 4701 goto err_out; 4702 } 4703 4704 sha = SHOST_TO_SAS_HA(shost); 4705 hisi_hba = shost_priv(shost); 4706 dev_set_drvdata(dev, sha); 4707 4708 hisi_hba->regs = pcim_iomap_table(pdev)[BAR_NO_V3_HW]; 4709 if (!hisi_hba->regs) { 4710 dev_err(dev, "cannot map register\n"); 4711 rc = -ENOMEM; 4712 goto err_out_ha; 4713 } 4714 4715 phy_nr = port_nr = hisi_hba->n_phy; 4716 4717 arr_phy = devm_kcalloc(dev, phy_nr, sizeof(void *), GFP_KERNEL); 4718 arr_port = devm_kcalloc(dev, port_nr, sizeof(void *), GFP_KERNEL); 4719 if (!arr_phy || !arr_port) { 4720 rc = -ENOMEM; 4721 goto err_out_ha; 4722 } 4723 4724 sha->sas_phy = arr_phy; 4725 sha->sas_port = arr_port; 4726 sha->core.shost = shost; 4727 sha->lldd_ha = hisi_hba; 4728 4729 shost->transportt = hisi_sas_stt; 4730 shost->max_id = HISI_SAS_MAX_DEVICES; 4731 shost->max_lun = ~0; 4732 shost->max_channel = 1; 4733 shost->max_cmd_len = 16; 4734 shost->can_queue = HISI_SAS_UNRESERVED_IPTT; 4735 shost->cmd_per_lun = HISI_SAS_UNRESERVED_IPTT; 4736 4737 sha->sas_ha_name = DRV_NAME; 4738 sha->dev = dev; 4739 sha->lldd_module = THIS_MODULE; 4740 sha->sas_addr = &hisi_hba->sas_addr[0]; 4741 sha->num_phys = hisi_hba->n_phy; 4742 4743 for (i = 0; i < hisi_hba->n_phy; i++) { 4744 sha->sas_phy[i] = &hisi_hba->phy[i].sas_phy; 4745 sha->sas_port[i] = &hisi_hba->port[i].sas_port; 4746 } 4747 4748 if (hisi_hba->prot_mask) { 4749 dev_info(dev, "Registering for DIF/DIX prot_mask=0x%x\n", 4750 prot_mask); 4751 scsi_host_set_prot(hisi_hba->shost, prot_mask); 4752 if (hisi_hba->prot_mask & HISI_SAS_DIX_PROT_MASK) 4753 scsi_host_set_guard(hisi_hba->shost, 4754 SHOST_DIX_GUARD_CRC); 4755 } 4756 4757 if (hisi_sas_debugfs_enable) 4758 debugfs_init_v3_hw(hisi_hba); 4759 4760 rc = interrupt_preinit_v3_hw(hisi_hba); 4761 if (rc) 4762 goto err_out_debugfs; 4763 4764 rc = scsi_add_host(shost, dev); 4765 if (rc) 4766 goto err_out_free_irq_vectors; 4767 4768 rc = sas_register_ha(sha); 4769 if (rc) 4770 goto err_out_register_ha; 4771 4772 rc = hisi_sas_v3_init(hisi_hba); 4773 if (rc) 4774 goto err_out_hw_init; 4775 4776 scsi_scan_host(shost); 4777 4778 /* 4779 * For the situation that there are ATA disks connected with SAS 4780 * controller, it additionally creates ata_port which will affect the 4781 * child_count of hisi_hba->dev. Even if suspended all the disks, 4782 * ata_port is still and the child_count of hisi_hba->dev is not 0. 4783 * So use pm_suspend_ignore_children() to ignore the effect to 4784 * hisi_hba->dev. 4785 */ 4786 pm_suspend_ignore_children(dev, true); 4787 pm_runtime_put_noidle(&pdev->dev); 4788 4789 return 0; 4790 4791 err_out_hw_init: 4792 sas_unregister_ha(sha); 4793 err_out_register_ha: 4794 scsi_remove_host(shost); 4795 err_out_free_irq_vectors: 4796 pci_free_irq_vectors(pdev); 4797 err_out_debugfs: 4798 debugfs_exit_v3_hw(hisi_hba); 4799 err_out_ha: 4800 hisi_sas_free(hisi_hba); 4801 scsi_host_put(shost); 4802 err_out: 4803 return rc; 4804 } 4805 4806 static void 4807 hisi_sas_v3_destroy_irqs(struct pci_dev *pdev, struct hisi_hba *hisi_hba) 4808 { 4809 int i; 4810 4811 devm_free_irq(&pdev->dev, pci_irq_vector(pdev, 1), hisi_hba); 4812 devm_free_irq(&pdev->dev, pci_irq_vector(pdev, 2), hisi_hba); 4813 devm_free_irq(&pdev->dev, pci_irq_vector(pdev, 11), hisi_hba); 4814 for (i = 0; i < hisi_hba->cq_nvecs; i++) { 4815 struct hisi_sas_cq *cq = &hisi_hba->cq[i]; 4816 int nr = hisi_sas_intr_conv ? 16 : 16 + i; 4817 4818 devm_free_irq(&pdev->dev, pci_irq_vector(pdev, nr), cq); 4819 } 4820 pci_free_irq_vectors(pdev); 4821 } 4822 4823 static void hisi_sas_v3_remove(struct pci_dev *pdev) 4824 { 4825 struct device *dev = &pdev->dev; 4826 struct sas_ha_struct *sha = dev_get_drvdata(dev); 4827 struct hisi_hba *hisi_hba = sha->lldd_ha; 4828 struct Scsi_Host *shost = sha->core.shost; 4829 4830 pm_runtime_get_noresume(dev); 4831 del_timer_sync(&hisi_hba->timer); 4832 4833 sas_unregister_ha(sha); 4834 flush_workqueue(hisi_hba->wq); 4835 sas_remove_host(sha->core.shost); 4836 4837 hisi_sas_v3_destroy_irqs(pdev, hisi_hba); 4838 hisi_sas_free(hisi_hba); 4839 debugfs_exit_v3_hw(hisi_hba); 4840 scsi_host_put(shost); 4841 } 4842 4843 static void hisi_sas_reset_prepare_v3_hw(struct pci_dev *pdev) 4844 { 4845 struct sas_ha_struct *sha = pci_get_drvdata(pdev); 4846 struct hisi_hba *hisi_hba = sha->lldd_ha; 4847 struct device *dev = hisi_hba->dev; 4848 int rc; 4849 4850 dev_info(dev, "FLR prepare\n"); 4851 set_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags); 4852 hisi_sas_controller_reset_prepare(hisi_hba); 4853 4854 rc = disable_host_v3_hw(hisi_hba); 4855 if (rc) 4856 dev_err(dev, "FLR: disable host failed rc=%d\n", rc); 4857 } 4858 4859 static void hisi_sas_reset_done_v3_hw(struct pci_dev *pdev) 4860 { 4861 struct sas_ha_struct *sha = pci_get_drvdata(pdev); 4862 struct hisi_hba *hisi_hba = sha->lldd_ha; 4863 struct device *dev = hisi_hba->dev; 4864 int rc; 4865 4866 hisi_sas_init_mem(hisi_hba); 4867 4868 rc = hw_init_v3_hw(hisi_hba); 4869 if (rc) { 4870 dev_err(dev, "FLR: hw init failed rc=%d\n", rc); 4871 return; 4872 } 4873 4874 hisi_sas_controller_reset_done(hisi_hba); 4875 dev_info(dev, "FLR done\n"); 4876 } 4877 4878 enum { 4879 /* instances of the controller */ 4880 hip08, 4881 }; 4882 4883 static int _suspend_v3_hw(struct device *device) 4884 { 4885 struct pci_dev *pdev = to_pci_dev(device); 4886 struct sas_ha_struct *sha = pci_get_drvdata(pdev); 4887 struct hisi_hba *hisi_hba = sha->lldd_ha; 4888 struct device *dev = hisi_hba->dev; 4889 struct Scsi_Host *shost = hisi_hba->shost; 4890 int rc; 4891 4892 if (!pdev->pm_cap) { 4893 dev_err(dev, "PCI PM not supported\n"); 4894 return -ENODEV; 4895 } 4896 4897 if (test_and_set_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags)) 4898 return -1; 4899 4900 scsi_block_requests(shost); 4901 set_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags); 4902 flush_workqueue(hisi_hba->wq); 4903 4904 rc = disable_host_v3_hw(hisi_hba); 4905 if (rc) { 4906 dev_err(dev, "PM suspend: disable host failed rc=%d\n", rc); 4907 clear_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags); 4908 clear_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags); 4909 scsi_unblock_requests(shost); 4910 return rc; 4911 } 4912 4913 hisi_sas_init_mem(hisi_hba); 4914 4915 dev_warn(dev, "entering suspend state\n"); 4916 4917 hisi_sas_release_tasks(hisi_hba); 4918 4919 sas_suspend_ha(sha); 4920 return 0; 4921 } 4922 4923 static int _resume_v3_hw(struct device *device) 4924 { 4925 struct pci_dev *pdev = to_pci_dev(device); 4926 struct sas_ha_struct *sha = pci_get_drvdata(pdev); 4927 struct hisi_hba *hisi_hba = sha->lldd_ha; 4928 struct Scsi_Host *shost = hisi_hba->shost; 4929 struct device *dev = hisi_hba->dev; 4930 unsigned int rc; 4931 pci_power_t device_state = pdev->current_state; 4932 4933 dev_warn(dev, "resuming from operating state [D%d]\n", 4934 device_state); 4935 4936 scsi_unblock_requests(shost); 4937 clear_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags); 4938 4939 sas_prep_resume_ha(sha); 4940 rc = hw_init_v3_hw(hisi_hba); 4941 if (rc) { 4942 scsi_remove_host(shost); 4943 return rc; 4944 } 4945 phys_init_v3_hw(hisi_hba); 4946 sas_resume_ha(sha); 4947 clear_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags); 4948 4949 return 0; 4950 } 4951 4952 static int __maybe_unused suspend_v3_hw(struct device *device) 4953 { 4954 struct pci_dev *pdev = to_pci_dev(device); 4955 struct sas_ha_struct *sha = pci_get_drvdata(pdev); 4956 struct hisi_hba *hisi_hba = sha->lldd_ha; 4957 int rc; 4958 4959 set_bit(HISI_SAS_PM_BIT, &hisi_hba->flags); 4960 4961 rc = _suspend_v3_hw(device); 4962 if (rc) 4963 clear_bit(HISI_SAS_PM_BIT, &hisi_hba->flags); 4964 4965 return rc; 4966 } 4967 4968 static int __maybe_unused resume_v3_hw(struct device *device) 4969 { 4970 struct pci_dev *pdev = to_pci_dev(device); 4971 struct sas_ha_struct *sha = pci_get_drvdata(pdev); 4972 struct hisi_hba *hisi_hba = sha->lldd_ha; 4973 int rc = _resume_v3_hw(device); 4974 4975 clear_bit(HISI_SAS_PM_BIT, &hisi_hba->flags); 4976 4977 return rc; 4978 } 4979 4980 static const struct pci_device_id sas_v3_pci_table[] = { 4981 { PCI_VDEVICE(HUAWEI, 0xa230), hip08 }, 4982 {} 4983 }; 4984 MODULE_DEVICE_TABLE(pci, sas_v3_pci_table); 4985 4986 static const struct pci_error_handlers hisi_sas_err_handler = { 4987 .reset_prepare = hisi_sas_reset_prepare_v3_hw, 4988 .reset_done = hisi_sas_reset_done_v3_hw, 4989 }; 4990 4991 static UNIVERSAL_DEV_PM_OPS(hisi_sas_v3_pm_ops, 4992 suspend_v3_hw, 4993 resume_v3_hw, 4994 NULL); 4995 4996 static struct pci_driver sas_v3_pci_driver = { 4997 .name = DRV_NAME, 4998 .id_table = sas_v3_pci_table, 4999 .probe = hisi_sas_v3_probe, 5000 .remove = hisi_sas_v3_remove, 5001 .err_handler = &hisi_sas_err_handler, 5002 .driver.pm = &hisi_sas_v3_pm_ops, 5003 }; 5004 5005 module_pci_driver(sas_v3_pci_driver); 5006 module_param_named(intr_conv, hisi_sas_intr_conv, bool, 0444); 5007 5008 MODULE_LICENSE("GPL"); 5009 MODULE_AUTHOR("John Garry <john.garry@huawei.com>"); 5010 MODULE_DESCRIPTION("HISILICON SAS controller v3 hw driver based on pci device"); 5011 MODULE_ALIAS("pci:" DRV_NAME); 5012