Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
John Garry | e8899fa | 2015-11-18 00:50:30 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2015 Linaro Ltd. |
| 4 | * Copyright (c) 2015 Hisilicon Limited. |
John Garry | e8899fa | 2015-11-18 00:50:30 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef _HISI_SAS_H_ |
| 8 | #define _HISI_SAS_H_ |
| 9 | |
John Garry | 4d558c7 | 2016-02-04 02:26:08 +0800 | [diff] [blame] | 10 | #include <linux/acpi.h> |
John Garry | 8d98416 | 2020-08-19 23:20:32 +0800 | [diff] [blame] | 11 | #include <linux/blk-mq.h> |
| 12 | #include <linux/blk-mq-pci.h> |
John Garry | 3bc45af | 2016-10-04 19:11:11 +0800 | [diff] [blame] | 13 | #include <linux/clk.h> |
Luo Jiaxing | ef63464 | 2018-12-19 23:56:39 +0800 | [diff] [blame] | 14 | #include <linux/debugfs.h> |
John Garry | e8899fa | 2015-11-18 00:50:30 +0800 | [diff] [blame] | 15 | #include <linux/dmapool.h> |
Xiang Chen | a25d0d3 | 2017-08-11 00:09:40 +0800 | [diff] [blame] | 16 | #include <linux/iopoll.h> |
John Garry | 74a2921 | 2020-12-02 18:36:57 +0800 | [diff] [blame] | 17 | #include <linux/irq.h> |
Xiang Chen | 2ba5afb | 2018-05-31 20:50:48 +0800 | [diff] [blame] | 18 | #include <linux/lcm.h> |
Xiang Chen | 57dbb2b | 2019-02-28 22:51:01 +0800 | [diff] [blame] | 19 | #include <linux/libata.h> |
John Garry | e8899fa | 2015-11-18 00:50:30 +0800 | [diff] [blame] | 20 | #include <linux/mfd/syscon.h> |
| 21 | #include <linux/module.h> |
| 22 | #include <linux/of_address.h> |
John Garry | 11b7524 | 2017-06-14 23:33:17 +0800 | [diff] [blame] | 23 | #include <linux/pci.h> |
John Garry | e8899fa | 2015-11-18 00:50:30 +0800 | [diff] [blame] | 24 | #include <linux/platform_device.h> |
Xiang Chen | 65ff4ae | 2020-10-02 22:30:34 +0800 | [diff] [blame] | 25 | #include <linux/pm_runtime.h> |
John Garry | 4d558c7 | 2016-02-04 02:26:08 +0800 | [diff] [blame] | 26 | #include <linux/property.h> |
John Garry | e8899fa | 2015-11-18 00:50:30 +0800 | [diff] [blame] | 27 | #include <linux/regmap.h> |
Luo Jiaxing | d28ed83 | 2019-10-24 22:08:12 +0800 | [diff] [blame] | 28 | #include <linux/timer.h> |
John Garry | 6f2ff1a | 2016-01-26 02:47:20 +0800 | [diff] [blame] | 29 | #include <scsi/sas_ata.h> |
John Garry | e8899fa | 2015-11-18 00:50:30 +0800 | [diff] [blame] | 30 | #include <scsi/libsas.h> |
| 31 | |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 32 | #define HISI_SAS_MAX_PHYS 9 |
John Garry | 6be6de1 | 2015-11-18 00:50:34 +0800 | [diff] [blame] | 33 | #define HISI_SAS_MAX_QUEUES 32 |
Xiang Chen | 1273d65 | 2019-02-06 18:52:53 +0800 | [diff] [blame] | 34 | #define HISI_SAS_QUEUE_SLOTS 4096 |
Xiang Chen | 3297ded | 2017-10-24 23:51:35 +0800 | [diff] [blame] | 35 | #define HISI_SAS_MAX_ITCT_ENTRIES 1024 |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 36 | #define HISI_SAS_MAX_DEVICES HISI_SAS_MAX_ITCT_ENTRIES |
Xiang Chen | 06ec0fb | 2017-03-23 01:25:18 +0800 | [diff] [blame] | 37 | #define HISI_SAS_RESET_BIT 0 |
Xiaofei Tan | 917d3bd | 2017-08-11 00:09:26 +0800 | [diff] [blame] | 38 | #define HISI_SAS_REJECT_CMD_BIT 1 |
Xiang Chen | 65ff4ae | 2020-10-02 22:30:34 +0800 | [diff] [blame] | 39 | #define HISI_SAS_PM_BIT 2 |
John Garry | 93352ab | 2019-08-05 21:47:58 +0800 | [diff] [blame] | 40 | #define HISI_SAS_MAX_COMMANDS (HISI_SAS_QUEUE_SLOTS) |
| 41 | #define HISI_SAS_RESERVED_IPTT 96 |
| 42 | #define HISI_SAS_UNRESERVED_IPTT \ |
| 43 | (HISI_SAS_MAX_COMMANDS - HISI_SAS_RESERVED_IPTT) |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 44 | |
Luo Jiaxing | bbe0a7b | 2019-08-05 21:48:01 +0800 | [diff] [blame] | 45 | #define HISI_SAS_IOST_ITCT_CACHE_NUM 64 |
| 46 | #define HISI_SAS_IOST_ITCT_CACHE_DW_SZ 10 |
Luo Jiaxing | cd96fe6 | 2021-01-26 19:04:28 +0800 | [diff] [blame] | 47 | #define HISI_SAS_FIFO_DATA_DW_SIZE 32 |
Luo Jiaxing | bbe0a7b | 2019-08-05 21:48:01 +0800 | [diff] [blame] | 48 | |
Xiaofei Tan | f557e32 | 2017-06-29 21:02:14 +0800 | [diff] [blame] | 49 | #define HISI_SAS_STATUS_BUF_SZ (sizeof(struct hisi_sas_status_buffer)) |
| 50 | #define HISI_SAS_COMMAND_TABLE_SZ (sizeof(union hisi_sas_command_table)) |
| 51 | |
| 52 | #define hisi_sas_status_buf_addr(buf) \ |
Xiang Chen | b3cce12 | 2019-02-06 18:52:51 +0800 | [diff] [blame] | 53 | ((buf) + offsetof(struct hisi_sas_slot_buf_table, status_buffer)) |
| 54 | #define hisi_sas_status_buf_addr_mem(slot) hisi_sas_status_buf_addr((slot)->buf) |
Xiaofei Tan | f557e32 | 2017-06-29 21:02:14 +0800 | [diff] [blame] | 55 | #define hisi_sas_status_buf_addr_dma(slot) \ |
Xiang Chen | b3cce12 | 2019-02-06 18:52:51 +0800 | [diff] [blame] | 56 | hisi_sas_status_buf_addr((slot)->buf_dma) |
Xiaofei Tan | f557e32 | 2017-06-29 21:02:14 +0800 | [diff] [blame] | 57 | |
| 58 | #define hisi_sas_cmd_hdr_addr(buf) \ |
Xiang Chen | b3cce12 | 2019-02-06 18:52:51 +0800 | [diff] [blame] | 59 | ((buf) + offsetof(struct hisi_sas_slot_buf_table, command_header)) |
| 60 | #define hisi_sas_cmd_hdr_addr_mem(slot) hisi_sas_cmd_hdr_addr((slot)->buf) |
| 61 | #define hisi_sas_cmd_hdr_addr_dma(slot) hisi_sas_cmd_hdr_addr((slot)->buf_dma) |
Xiaofei Tan | f557e32 | 2017-06-29 21:02:14 +0800 | [diff] [blame] | 62 | |
| 63 | #define hisi_sas_sge_addr(buf) \ |
Xiang Chen | b3cce12 | 2019-02-06 18:52:51 +0800 | [diff] [blame] | 64 | ((buf) + offsetof(struct hisi_sas_slot_buf_table, sge_page)) |
| 65 | #define hisi_sas_sge_addr_mem(slot) hisi_sas_sge_addr((slot)->buf) |
| 66 | #define hisi_sas_sge_addr_dma(slot) hisi_sas_sge_addr((slot)->buf_dma) |
| 67 | |
| 68 | #define hisi_sas_sge_dif_addr(buf) \ |
| 69 | ((buf) + offsetof(struct hisi_sas_slot_dif_buf_table, sge_dif_page)) |
| 70 | #define hisi_sas_sge_dif_addr_mem(slot) hisi_sas_sge_dif_addr((slot)->buf) |
| 71 | #define hisi_sas_sge_dif_addr_dma(slot) hisi_sas_sge_dif_addr((slot)->buf_dma) |
John Garry | 6be6de1 | 2015-11-18 00:50:34 +0800 | [diff] [blame] | 72 | |
John Garry | 42e7a69 | 2015-11-18 00:50:49 +0800 | [diff] [blame] | 73 | #define HISI_SAS_MAX_SSP_RESP_SZ (sizeof(struct ssp_frame_hdr) + 1024) |
John Garry | 66ee999 | 2015-11-18 00:50:54 +0800 | [diff] [blame] | 74 | #define HISI_SAS_MAX_SMP_RESP_SZ 1028 |
John Garry | 6f2ff1a | 2016-01-26 02:47:20 +0800 | [diff] [blame] | 75 | #define HISI_SAS_MAX_STP_RESP_SZ 28 |
John Garry | 42e7a69 | 2015-11-18 00:50:49 +0800 | [diff] [blame] | 76 | |
Xiang Chen | 6c7bb8a | 2017-06-14 23:33:14 +0800 | [diff] [blame] | 77 | #define HISI_SAS_SATA_PROTOCOL_NONDATA 0x1 |
| 78 | #define HISI_SAS_SATA_PROTOCOL_PIO 0x2 |
| 79 | #define HISI_SAS_SATA_PROTOCOL_DMA 0x4 |
| 80 | #define HISI_SAS_SATA_PROTOCOL_FPDMA 0x8 |
| 81 | #define HISI_SAS_SATA_PROTOCOL_ATAPI 0x10 |
| 82 | |
Xiang Chen | d6a9000 | 2018-12-17 22:40:07 +0800 | [diff] [blame] | 83 | #define HISI_SAS_DIF_PROT_MASK (SHOST_DIF_TYPE1_PROTECTION | \ |
| 84 | SHOST_DIF_TYPE2_PROTECTION | \ |
| 85 | SHOST_DIF_TYPE3_PROTECTION) |
| 86 | |
Xiang Chen | b3cce12 | 2019-02-06 18:52:51 +0800 | [diff] [blame] | 87 | #define HISI_SAS_DIX_PROT_MASK (SHOST_DIX_TYPE1_PROTECTION | \ |
| 88 | SHOST_DIX_TYPE2_PROTECTION | \ |
| 89 | SHOST_DIX_TYPE3_PROTECTION) |
| 90 | |
| 91 | #define HISI_SAS_PROT_MASK (HISI_SAS_DIF_PROT_MASK | HISI_SAS_DIX_PROT_MASK) |
Xiang Chen | d6a9000 | 2018-12-17 22:40:07 +0800 | [diff] [blame] | 92 | |
Xiaofei Tan | b6c9b15 | 2019-01-25 22:22:35 +0800 | [diff] [blame] | 93 | #define HISI_SAS_WAIT_PHYUP_TIMEOUT 20 |
Xiang Chen | 8fa9a7b | 2019-10-24 22:08:10 +0800 | [diff] [blame] | 94 | #define CLEAR_ITCT_TIMEOUT 20 |
Xiaofei Tan | b6c9b15 | 2019-01-25 22:22:35 +0800 | [diff] [blame] | 95 | |
John Garry | abda97c | 2015-11-18 00:50:51 +0800 | [diff] [blame] | 96 | struct hisi_hba; |
John Garry | af740db | 2015-11-18 00:50:41 +0800 | [diff] [blame] | 97 | |
John Garry | 07d7859 | 2015-11-18 00:50:47 +0800 | [diff] [blame] | 98 | enum { |
| 99 | PORT_TYPE_SAS = (1U << 1), |
| 100 | PORT_TYPE_SATA = (1U << 0), |
| 101 | }; |
| 102 | |
Xiang Chen | 57dbb2b | 2019-02-28 22:51:01 +0800 | [diff] [blame] | 103 | enum dev_status { |
| 104 | HISI_SAS_DEV_INIT, |
| 105 | HISI_SAS_DEV_NORMAL, |
| 106 | }; |
| 107 | |
John Garry | 441c274 | 2016-08-24 19:05:47 +0800 | [diff] [blame] | 108 | enum { |
| 109 | HISI_SAS_INT_ABT_CMD = 0, |
| 110 | HISI_SAS_INT_ABT_DEV = 1, |
| 111 | }; |
| 112 | |
John Garry | abda97c | 2015-11-18 00:50:51 +0800 | [diff] [blame] | 113 | enum hisi_sas_dev_type { |
| 114 | HISI_SAS_DEV_TYPE_STP = 0, |
| 115 | HISI_SAS_DEV_TYPE_SSP, |
| 116 | HISI_SAS_DEV_TYPE_SATA, |
| 117 | }; |
| 118 | |
John Garry | 2b38335 | 2017-08-11 00:09:30 +0800 | [diff] [blame] | 119 | struct hisi_sas_hw_error { |
| 120 | u32 irq_msk; |
| 121 | u32 msk; |
| 122 | int shift; |
| 123 | const char *msg; |
| 124 | int reg; |
Shiju Jose | 729428c | 2017-10-24 23:51:39 +0800 | [diff] [blame] | 125 | const struct hisi_sas_hw_error *sub; |
John Garry | 2b38335 | 2017-08-11 00:09:30 +0800 | [diff] [blame] | 126 | }; |
| 127 | |
Xiaofei Tan | e402acd | 2017-12-09 01:16:38 +0800 | [diff] [blame] | 128 | struct hisi_sas_rst { |
| 129 | struct hisi_hba *hisi_hba; |
| 130 | struct completion *completion; |
| 131 | struct work_struct work; |
| 132 | bool done; |
| 133 | }; |
| 134 | |
| 135 | #define HISI_SAS_RST_WORK_INIT(r, c) \ |
| 136 | { .hisi_hba = hisi_hba, \ |
| 137 | .completion = &c, \ |
| 138 | .work = __WORK_INITIALIZER(r.work, \ |
| 139 | hisi_sas_sync_rst_work_handler), \ |
| 140 | .done = false, \ |
| 141 | } |
| 142 | |
| 143 | #define HISI_SAS_DECLARE_RST_WORK_ON_STACK(r) \ |
| 144 | DECLARE_COMPLETION_ONSTACK(c); \ |
Xiaofei Tan | e402acd | 2017-12-09 01:16:38 +0800 | [diff] [blame] | 145 | struct hisi_sas_rst r = HISI_SAS_RST_WORK_INIT(r, c) |
| 146 | |
| 147 | enum hisi_sas_bit_err_type { |
| 148 | HISI_SAS_ERR_SINGLE_BIT_ECC = 0x0, |
| 149 | HISI_SAS_ERR_MULTI_BIT_ECC = 0x1, |
| 150 | }; |
| 151 | |
Xiaofei Tan | e537b62 | 2017-12-09 01:16:44 +0800 | [diff] [blame] | 152 | enum hisi_sas_phy_event { |
| 153 | HISI_PHYE_PHY_UP = 0U, |
Xiaofei Tan | 057c3d1 | 2017-12-09 01:16:45 +0800 | [diff] [blame] | 154 | HISI_PHYE_LINK_RESET, |
Xiaofei Tan | e537b62 | 2017-12-09 01:16:44 +0800 | [diff] [blame] | 155 | HISI_PHYES_NUM, |
| 156 | }; |
| 157 | |
Luo Jiaxing | cd96fe6 | 2021-01-26 19:04:28 +0800 | [diff] [blame] | 158 | struct hisi_sas_debugfs_fifo { |
| 159 | u32 signal_sel; |
| 160 | u32 dump_msk; |
| 161 | u32 dump_mode; |
| 162 | u32 trigger; |
| 163 | u32 trigger_msk; |
| 164 | u32 trigger_mode; |
| 165 | u32 rd_data[HISI_SAS_FIFO_DATA_DW_SIZE]; |
| 166 | }; |
| 167 | |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 168 | struct hisi_sas_phy { |
Xiaofei Tan | e537b62 | 2017-12-09 01:16:44 +0800 | [diff] [blame] | 169 | struct work_struct works[HISI_PHYES_NUM]; |
John Garry | 976867e | 2015-11-18 00:50:42 +0800 | [diff] [blame] | 170 | struct hisi_hba *hisi_hba; |
| 171 | struct hisi_sas_port *port; |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 172 | struct asd_sas_phy sas_phy; |
John Garry | 976867e | 2015-11-18 00:50:42 +0800 | [diff] [blame] | 173 | struct sas_identify identify; |
Xiang Chen | 3e1fb1b | 2018-05-21 18:09:25 +0800 | [diff] [blame] | 174 | struct completion *reset_completion; |
Xiaofei Tan | b6c9b15 | 2019-01-25 22:22:35 +0800 | [diff] [blame] | 175 | struct timer_list timer; |
Xiang Chen | 3e1fb1b | 2018-05-21 18:09:25 +0800 | [diff] [blame] | 176 | spinlock_t lock; |
John Garry | 976867e | 2015-11-18 00:50:42 +0800 | [diff] [blame] | 177 | u64 port_id; /* from hw */ |
John Garry | 976867e | 2015-11-18 00:50:42 +0800 | [diff] [blame] | 178 | u64 frame_rcvd_size; |
| 179 | u8 frame_rcvd[32]; |
| 180 | u8 phy_attached; |
Xiang Chen | 3e1fb1b | 2018-05-21 18:09:25 +0800 | [diff] [blame] | 181 | u8 in_reset; |
| 182 | u8 reserved[2]; |
John Garry | d0ef10c | 2017-06-26 18:27:28 +0800 | [diff] [blame] | 183 | u32 phy_type; |
Xiaofei Tan | aaeb823 | 2019-02-28 22:50:59 +0800 | [diff] [blame] | 184 | u32 code_violation_err_count; |
John Garry | 976867e | 2015-11-18 00:50:42 +0800 | [diff] [blame] | 185 | enum sas_linkrate minimum_linkrate; |
| 186 | enum sas_linkrate maximum_linkrate; |
John Garry | c63b88c | 2019-04-11 20:46:38 +0800 | [diff] [blame] | 187 | int enable; |
Luo Jiaxing | 366da0d | 2021-06-07 17:29:35 +0800 | [diff] [blame^] | 188 | int wait_phyup_cnt; |
Luo Jiaxing | f873b66 | 2019-10-24 22:08:25 +0800 | [diff] [blame] | 189 | atomic_t down_cnt; |
Luo Jiaxing | cd96fe6 | 2021-01-26 19:04:28 +0800 | [diff] [blame] | 190 | |
| 191 | /* Trace FIFO */ |
| 192 | struct hisi_sas_debugfs_fifo fifo; |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 193 | }; |
| 194 | |
| 195 | struct hisi_sas_port { |
| 196 | struct asd_sas_port sas_port; |
John Garry | 976867e | 2015-11-18 00:50:42 +0800 | [diff] [blame] | 197 | u8 port_attached; |
| 198 | u8 id; /* from hw */ |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 199 | }; |
| 200 | |
John Garry | 9101a07 | 2015-11-18 00:50:37 +0800 | [diff] [blame] | 201 | struct hisi_sas_cq { |
| 202 | struct hisi_hba *hisi_hba; |
John Garry | 11e6732 | 2020-01-20 20:22:36 +0800 | [diff] [blame] | 203 | const struct cpumask *irq_mask; |
John Garry | e6c346f | 2016-09-06 23:36:11 +0800 | [diff] [blame] | 204 | int rd_point; |
John Garry | 9101a07 | 2015-11-18 00:50:37 +0800 | [diff] [blame] | 205 | int id; |
Xiang Chen | 81f338e | 2020-01-20 20:22:31 +0800 | [diff] [blame] | 206 | int irq_no; |
John Garry | 9101a07 | 2015-11-18 00:50:37 +0800 | [diff] [blame] | 207 | }; |
| 208 | |
John Garry | 4fde02a | 2016-09-06 23:36:12 +0800 | [diff] [blame] | 209 | struct hisi_sas_dq { |
| 210 | struct hisi_hba *hisi_hba; |
Xiang Chen | fa222db | 2018-05-09 23:10:48 +0800 | [diff] [blame] | 211 | struct list_head list; |
Xiang Chen | b1a4941 | 2017-06-14 23:33:13 +0800 | [diff] [blame] | 212 | spinlock_t lock; |
John Garry | 4fde02a | 2016-09-06 23:36:12 +0800 | [diff] [blame] | 213 | int wr_point; |
| 214 | int id; |
| 215 | }; |
| 216 | |
John Garry | af740db | 2015-11-18 00:50:41 +0800 | [diff] [blame] | 217 | struct hisi_sas_device { |
John Garry | abda97c | 2015-11-18 00:50:51 +0800 | [diff] [blame] | 218 | struct hisi_hba *hisi_hba; |
| 219 | struct domain_device *sas_device; |
Xiang Chen | 640acc9 | 2017-08-11 00:09:33 +0800 | [diff] [blame] | 220 | struct completion *completion; |
Xiang Chen | b1a4941 | 2017-06-14 23:33:13 +0800 | [diff] [blame] | 221 | struct hisi_sas_dq *dq; |
John Garry | 405314d | 2017-03-23 01:25:21 +0800 | [diff] [blame] | 222 | struct list_head list; |
John Garry | ad60483 | 2017-06-14 23:33:12 +0800 | [diff] [blame] | 223 | enum sas_device_type dev_type; |
Xiang Chen | 57dbb2b | 2019-02-28 22:51:01 +0800 | [diff] [blame] | 224 | enum dev_status dev_status; |
John Garry | ad60483 | 2017-06-14 23:33:12 +0800 | [diff] [blame] | 225 | int device_id; |
Xiaofei Tan | 32ccba5 | 2017-04-10 21:21:57 +0800 | [diff] [blame] | 226 | int sata_idx; |
Xiang Chen | 4fefe5b | 2019-02-06 18:52:55 +0800 | [diff] [blame] | 227 | spinlock_t lock; /* For protecting slots */ |
John Garry | af740db | 2015-11-18 00:50:41 +0800 | [diff] [blame] | 228 | }; |
| 229 | |
Xiaofei Tan | 78bd2b4 | 2018-05-21 18:09:21 +0800 | [diff] [blame] | 230 | struct hisi_sas_tmf_task { |
Xiaofei Tan | b09fcd0 | 2018-05-21 18:09:22 +0800 | [diff] [blame] | 231 | int force_phy; |
| 232 | int phy_id; |
Xiaofei Tan | 78bd2b4 | 2018-05-21 18:09:21 +0800 | [diff] [blame] | 233 | u8 tmf; |
| 234 | u16 tag_of_task_to_be_managed; |
| 235 | }; |
| 236 | |
John Garry | 6be6de1 | 2015-11-18 00:50:34 +0800 | [diff] [blame] | 237 | struct hisi_sas_slot { |
John Garry | 42e7a69 | 2015-11-18 00:50:49 +0800 | [diff] [blame] | 238 | struct list_head entry; |
Xiang Chen | fa222db | 2018-05-09 23:10:48 +0800 | [diff] [blame] | 239 | struct list_head delivery; |
John Garry | 42e7a69 | 2015-11-18 00:50:49 +0800 | [diff] [blame] | 240 | struct sas_task *task; |
| 241 | struct hisi_sas_port *port; |
| 242 | u64 n_elem; |
Xiang Chen | b3cce12 | 2019-02-06 18:52:51 +0800 | [diff] [blame] | 243 | u64 n_elem_dif; |
John Garry | 42e7a69 | 2015-11-18 00:50:49 +0800 | [diff] [blame] | 244 | int dlvry_queue; |
| 245 | int dlvry_queue_slot; |
John Garry | 27a3f22 | 2015-11-18 00:50:50 +0800 | [diff] [blame] | 246 | int cmplt_queue; |
| 247 | int cmplt_queue_slot; |
John Garry | cac9b2a | 2016-02-25 17:42:11 +0800 | [diff] [blame] | 248 | int abort; |
Xiang Chen | fa222db | 2018-05-09 23:10:48 +0800 | [diff] [blame] | 249 | int ready; |
Xiang Chen | 4fefe5b | 2019-02-06 18:52:55 +0800 | [diff] [blame] | 250 | int device_id; |
John Garry | 42e7a69 | 2015-11-18 00:50:49 +0800 | [diff] [blame] | 251 | void *cmd_hdr; |
| 252 | dma_addr_t cmd_hdr_dma; |
John Garry | 0844a3f | 2017-04-10 21:21:59 +0800 | [diff] [blame] | 253 | struct timer_list internal_abort_timer; |
Xiang Chen | cd938e5 | 2018-05-02 23:56:26 +0800 | [diff] [blame] | 254 | bool is_internal; |
Xiaofei Tan | 78bd2b4 | 2018-05-21 18:09:21 +0800 | [diff] [blame] | 255 | struct hisi_sas_tmf_task *tmf; |
Xiang Chen | 2ba5afb | 2018-05-31 20:50:48 +0800 | [diff] [blame] | 256 | /* Do not reorder/change members after here */ |
| 257 | void *buf; |
| 258 | dma_addr_t buf_dma; |
John Garry | 735bcc7 | 2018-12-06 21:34:40 +0800 | [diff] [blame] | 259 | u16 idx; |
John Garry | 6be6de1 | 2015-11-18 00:50:34 +0800 | [diff] [blame] | 260 | }; |
| 261 | |
Luo Jiaxing | bbe0a7b | 2019-08-05 21:48:01 +0800 | [diff] [blame] | 262 | struct hisi_sas_iost_itct_cache { |
| 263 | u32 data[HISI_SAS_IOST_ITCT_CACHE_DW_SZ]; |
| 264 | }; |
| 265 | |
Luo Jiaxing | b0b3e429 | 2019-08-05 21:48:02 +0800 | [diff] [blame] | 266 | enum hisi_sas_debugfs_reg_array_member { |
| 267 | DEBUGFS_GLOBAL = 0, |
| 268 | DEBUGFS_AXI, |
| 269 | DEBUGFS_RAS, |
| 270 | DEBUGFS_REGS_NUM |
| 271 | }; |
| 272 | |
Luo Jiaxing | bbe0a7b | 2019-08-05 21:48:01 +0800 | [diff] [blame] | 273 | enum hisi_sas_debugfs_cache_type { |
| 274 | HISI_SAS_ITCT_CACHE, |
| 275 | HISI_SAS_IOST_CACHE, |
| 276 | }; |
| 277 | |
Luo Jiaxing | 2c4d582 | 2020-09-01 19:13:07 +0800 | [diff] [blame] | 278 | enum hisi_sas_debugfs_bist_ffe_cfg { |
| 279 | FFE_SAS_1_5_GBPS, |
| 280 | FFE_SAS_3_0_GBPS, |
| 281 | FFE_SAS_6_0_GBPS, |
| 282 | FFE_SAS_12_0_GBPS, |
| 283 | FFE_RESV, |
| 284 | FFE_SATA_1_5_GBPS, |
| 285 | FFE_SATA_3_0_GBPS, |
| 286 | FFE_SATA_6_0_GBPS, |
| 287 | FFE_CFG_MAX |
| 288 | }; |
| 289 | |
Luo Jiaxing | 981cc23 | 2020-09-01 19:13:08 +0800 | [diff] [blame] | 290 | enum hisi_sas_debugfs_bist_fixed_code { |
| 291 | FIXED_CODE, |
| 292 | FIXED_CODE_1, |
| 293 | FIXED_CODE_MAX |
| 294 | }; |
| 295 | |
| 296 | enum { |
| 297 | HISI_SAS_BIST_CODE_MODE_PRBS7, |
| 298 | HISI_SAS_BIST_CODE_MODE_PRBS23, |
| 299 | HISI_SAS_BIST_CODE_MODE_PRBS31, |
| 300 | HISI_SAS_BIST_CODE_MODE_JTPAT, |
| 301 | HISI_SAS_BIST_CODE_MODE_CJTPAT, |
| 302 | HISI_SAS_BIST_CODE_MODE_SCRAMBED_0, |
| 303 | HISI_SAS_BIST_CODE_MODE_TRAIN, |
| 304 | HISI_SAS_BIST_CODE_MODE_TRAIN_DONE, |
| 305 | HISI_SAS_BIST_CODE_MODE_HFTP, |
| 306 | HISI_SAS_BIST_CODE_MODE_MFTP, |
| 307 | HISI_SAS_BIST_CODE_MODE_LFTP, |
| 308 | HISI_SAS_BIST_CODE_MODE_FIXED_DATA, |
| 309 | }; |
| 310 | |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 311 | struct hisi_sas_hw { |
John Garry | 8ff1d57 | 2015-11-18 00:50:46 +0800 | [diff] [blame] | 312 | int (*hw_init)(struct hisi_hba *hisi_hba); |
John Garry | 74a2921 | 2020-12-02 18:36:57 +0800 | [diff] [blame] | 313 | int (*interrupt_preinit)(struct hisi_hba *hisi_hba); |
John Garry | abda97c | 2015-11-18 00:50:51 +0800 | [diff] [blame] | 314 | void (*setup_itct)(struct hisi_hba *hisi_hba, |
| 315 | struct hisi_sas_device *device); |
Xiang Chen | 784b46b | 2018-09-24 23:06:33 +0800 | [diff] [blame] | 316 | int (*slot_index_alloc)(struct hisi_hba *hisi_hba, |
John Garry | 685b6d6 | 2016-04-15 21:36:36 +0800 | [diff] [blame] | 317 | struct domain_device *device); |
| 318 | struct hisi_sas_device *(*alloc_dev)(struct domain_device *device); |
Xiang Chen | 569eddc | 2019-01-25 22:22:30 +0800 | [diff] [blame] | 319 | void (*sl_notify_ssp)(struct hisi_hba *hisi_hba, int phy_no); |
Xiang Chen | b1a4941 | 2017-06-14 23:33:13 +0800 | [diff] [blame] | 320 | void (*start_delivery)(struct hisi_sas_dq *dq); |
Xiang Chen | a2b3820 | 2018-05-09 23:10:46 +0800 | [diff] [blame] | 321 | void (*prep_ssp)(struct hisi_hba *hisi_hba, |
Xiaofei Tan | 78bd2b4 | 2018-05-21 18:09:21 +0800 | [diff] [blame] | 322 | struct hisi_sas_slot *slot); |
Xiang Chen | a2b3820 | 2018-05-09 23:10:46 +0800 | [diff] [blame] | 323 | void (*prep_smp)(struct hisi_hba *hisi_hba, |
John Garry | 66ee999 | 2015-11-18 00:50:54 +0800 | [diff] [blame] | 324 | struct hisi_sas_slot *slot); |
Xiang Chen | a2b3820 | 2018-05-09 23:10:46 +0800 | [diff] [blame] | 325 | void (*prep_stp)(struct hisi_hba *hisi_hba, |
John Garry | 6f2ff1a | 2016-01-26 02:47:20 +0800 | [diff] [blame] | 326 | struct hisi_sas_slot *slot); |
Xiang Chen | a2b3820 | 2018-05-09 23:10:46 +0800 | [diff] [blame] | 327 | void (*prep_abort)(struct hisi_hba *hisi_hba, |
John Garry | 441c274 | 2016-08-24 19:05:47 +0800 | [diff] [blame] | 328 | struct hisi_sas_slot *slot, |
| 329 | int device_id, int abort_flag, int tag_to_abort); |
John Garry | 396b804 | 2017-03-23 01:25:19 +0800 | [diff] [blame] | 330 | void (*phys_init)(struct hisi_hba *hisi_hba); |
Xiang Chen | 1eb8eea | 2017-10-24 23:51:36 +0800 | [diff] [blame] | 331 | void (*phy_start)(struct hisi_hba *hisi_hba, int phy_no); |
John Garry | e4189d5 | 2015-11-18 00:50:57 +0800 | [diff] [blame] | 332 | void (*phy_disable)(struct hisi_hba *hisi_hba, int phy_no); |
| 333 | void (*phy_hard_reset)(struct hisi_hba *hisi_hba, int phy_no); |
Xiaofei Tan | c52108c | 2017-08-11 00:09:29 +0800 | [diff] [blame] | 334 | void (*get_events)(struct hisi_hba *hisi_hba, int phy_no); |
Xiang Chen | 2ae7578 | 2016-11-07 20:48:40 +0800 | [diff] [blame] | 335 | void (*phy_set_linkrate)(struct hisi_hba *hisi_hba, int phy_no, |
| 336 | struct sas_phy_linkrates *linkrates); |
| 337 | enum sas_linkrate (*phy_get_max_linkrate)(void); |
Xiang Chen | 8fa9a7b | 2019-10-24 22:08:10 +0800 | [diff] [blame] | 338 | int (*clear_itct)(struct hisi_hba *hisi_hba, |
| 339 | struct hisi_sas_device *dev); |
Xiaofei Tan | 0258141 | 2017-12-09 01:16:34 +0800 | [diff] [blame] | 340 | void (*free_device)(struct hisi_sas_device *sas_dev); |
John Garry | 184a463 | 2015-11-18 00:50:52 +0800 | [diff] [blame] | 341 | int (*get_wideport_bitmap)(struct hisi_hba *hisi_hba, int port_id); |
Xiang Chen | d30ff26 | 2017-06-14 23:33:32 +0800 | [diff] [blame] | 342 | void (*dereg_device)(struct hisi_hba *hisi_hba, |
| 343 | struct domain_device *device); |
Xiang Chen | 06ec0fb | 2017-03-23 01:25:18 +0800 | [diff] [blame] | 344 | int (*soft_reset)(struct hisi_hba *hisi_hba); |
Xiaofei Tan | 917d3bd | 2017-08-11 00:09:26 +0800 | [diff] [blame] | 345 | u32 (*get_phys_state)(struct hisi_hba *hisi_hba); |
Xiaofei Tan | 6379c56 | 2018-01-18 00:46:53 +0800 | [diff] [blame] | 346 | int (*write_gpio)(struct hisi_hba *hisi_hba, u8 reg_type, |
| 347 | u8 reg_index, u8 reg_count, u8 *write_data); |
Luo Jiaxing | 4bc0580 | 2019-09-06 20:55:34 +0800 | [diff] [blame] | 348 | void (*wait_cmds_complete_timeout)(struct hisi_hba *hisi_hba, |
| 349 | int delay_ms, int timeout_ms); |
Jianqin Xie | 2c74cb1 | 2021-04-06 19:48:29 +0800 | [diff] [blame] | 350 | void (*debugfs_snapshot_regs)(struct hisi_hba *hisi_hba); |
John Garry | 6be6de1 | 2015-11-18 00:50:34 +0800 | [diff] [blame] | 351 | int complete_hdr_size; |
Xiang Chen | 235bfc7 | 2018-05-21 18:09:18 +0800 | [diff] [blame] | 352 | struct scsi_host_template *sht; |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 353 | }; |
| 354 | |
Luo Jiaxing | a70e33e | 2019-10-24 22:08:21 +0800 | [diff] [blame] | 355 | #define HISI_SAS_MAX_DEBUGFS_DUMP (50) |
| 356 | |
Luo Jiaxing | 35ea630 | 2019-10-24 22:08:13 +0800 | [diff] [blame] | 357 | struct hisi_sas_debugfs_cq { |
| 358 | struct hisi_sas_cq *cq; |
| 359 | void *complete_hdr; |
| 360 | }; |
| 361 | |
Luo Jiaxing | 1b54c4d | 2019-10-24 22:08:14 +0800 | [diff] [blame] | 362 | struct hisi_sas_debugfs_dq { |
| 363 | struct hisi_sas_dq *dq; |
| 364 | struct hisi_sas_cmd_hdr *hdr; |
| 365 | }; |
| 366 | |
Luo Jiaxing | c611639 | 2019-10-24 22:08:15 +0800 | [diff] [blame] | 367 | struct hisi_sas_debugfs_regs { |
| 368 | struct hisi_hba *hisi_hba; |
| 369 | u32 *data; |
| 370 | }; |
| 371 | |
Luo Jiaxing | 1f66e1f | 2019-10-24 22:08:16 +0800 | [diff] [blame] | 372 | struct hisi_sas_debugfs_port { |
| 373 | struct hisi_sas_phy *phy; |
| 374 | u32 *data; |
| 375 | }; |
| 376 | |
Luo Jiaxing | e15f2e2 | 2019-10-24 22:08:17 +0800 | [diff] [blame] | 377 | struct hisi_sas_debugfs_iost { |
| 378 | struct hisi_sas_iost *iost; |
| 379 | }; |
| 380 | |
Luo Jiaxing | 0161d55 | 2019-10-24 22:08:18 +0800 | [diff] [blame] | 381 | struct hisi_sas_debugfs_itct { |
| 382 | struct hisi_sas_itct *itct; |
| 383 | }; |
| 384 | |
Luo Jiaxing | b714dd8 | 2019-10-24 22:08:19 +0800 | [diff] [blame] | 385 | struct hisi_sas_debugfs_iost_cache { |
| 386 | struct hisi_sas_iost_itct_cache *cache; |
| 387 | }; |
| 388 | |
Luo Jiaxing | 357e4fc | 2019-10-24 22:08:20 +0800 | [diff] [blame] | 389 | struct hisi_sas_debugfs_itct_cache { |
| 390 | struct hisi_sas_iost_itct_cache *cache; |
| 391 | }; |
| 392 | |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 393 | struct hisi_hba { |
| 394 | /* This must be the first element, used by SHOST_TO_SAS_HA */ |
| 395 | struct sas_ha_struct *p; |
| 396 | |
John Garry | 11b7524 | 2017-06-14 23:33:17 +0800 | [diff] [blame] | 397 | struct platform_device *platform_dev; |
| 398 | struct pci_dev *pci_dev; |
| 399 | struct device *dev; |
| 400 | |
Xiang Chen | d6a9000 | 2018-12-17 22:40:07 +0800 | [diff] [blame] | 401 | int prot_mask; |
| 402 | |
John Garry | e26b2f4 | 2015-11-18 00:50:32 +0800 | [diff] [blame] | 403 | void __iomem *regs; |
Xiaofei Tan | 6379c56 | 2018-01-18 00:46:53 +0800 | [diff] [blame] | 404 | void __iomem *sgpio_regs; |
John Garry | e26b2f4 | 2015-11-18 00:50:32 +0800 | [diff] [blame] | 405 | struct regmap *ctrl; |
| 406 | u32 ctrl_reset_reg; |
| 407 | u32 ctrl_reset_sts_reg; |
| 408 | u32 ctrl_clock_ena_reg; |
John Garry | 3bc45af | 2016-10-04 19:11:11 +0800 | [diff] [blame] | 409 | u32 refclk_frequency_mhz; |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 410 | u8 sas_addr[SAS_ADDR_SIZE]; |
| 411 | |
John Garry | 74a2921 | 2020-12-02 18:36:57 +0800 | [diff] [blame] | 412 | int *irq_map; /* v2 hw */ |
| 413 | |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 414 | int n_phy; |
John Garry | fa42d80 | 2015-11-18 00:50:43 +0800 | [diff] [blame] | 415 | spinlock_t lock; |
Xiaofei Tan | d2fc401 | 2018-05-31 20:50:44 +0800 | [diff] [blame] | 416 | struct semaphore sem; |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 417 | |
John Garry | fa42d80 | 2015-11-18 00:50:43 +0800 | [diff] [blame] | 418 | struct timer_list timer; |
John Garry | 7e9080e | 2015-11-18 00:50:40 +0800 | [diff] [blame] | 419 | struct workqueue_struct *wq; |
John Garry | 257efd1 | 2015-11-18 00:50:36 +0800 | [diff] [blame] | 420 | |
| 421 | int slot_index_count; |
Xiang Chen | fa3be0f | 2018-05-21 18:09:14 +0800 | [diff] [blame] | 422 | int last_slot_index; |
Xiang Chen | 1b86518 | 2018-05-21 18:09:15 +0800 | [diff] [blame] | 423 | int last_dev_id; |
John Garry | 257efd1 | 2015-11-18 00:50:36 +0800 | [diff] [blame] | 424 | unsigned long *slot_index_tags; |
Xiaofei Tan | c7b9d36 | 2017-04-10 21:21:56 +0800 | [diff] [blame] | 425 | unsigned long reject_stp_links_msk; |
John Garry | 257efd1 | 2015-11-18 00:50:36 +0800 | [diff] [blame] | 426 | |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 427 | /* SCSI/SAS glue */ |
| 428 | struct sas_ha_struct sha; |
| 429 | struct Scsi_Host *shost; |
John Garry | 9101a07 | 2015-11-18 00:50:37 +0800 | [diff] [blame] | 430 | |
| 431 | struct hisi_sas_cq cq[HISI_SAS_MAX_QUEUES]; |
John Garry | 4fde02a | 2016-09-06 23:36:12 +0800 | [diff] [blame] | 432 | struct hisi_sas_dq dq[HISI_SAS_MAX_QUEUES]; |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 433 | struct hisi_sas_phy phy[HISI_SAS_MAX_PHYS]; |
| 434 | struct hisi_sas_port port[HISI_SAS_MAX_PHYS]; |
John Garry | e26b2f4 | 2015-11-18 00:50:32 +0800 | [diff] [blame] | 435 | |
| 436 | int queue_count; |
John Garry | 6be6de1 | 2015-11-18 00:50:34 +0800 | [diff] [blame] | 437 | |
John Garry | af740db | 2015-11-18 00:50:41 +0800 | [diff] [blame] | 438 | struct hisi_sas_device devices[HISI_SAS_MAX_DEVICES]; |
John Garry | 6be6de1 | 2015-11-18 00:50:34 +0800 | [diff] [blame] | 439 | struct hisi_sas_cmd_hdr *cmd_hdr[HISI_SAS_MAX_QUEUES]; |
| 440 | dma_addr_t cmd_hdr_dma[HISI_SAS_MAX_QUEUES]; |
| 441 | void *complete_hdr[HISI_SAS_MAX_QUEUES]; |
| 442 | dma_addr_t complete_hdr_dma[HISI_SAS_MAX_QUEUES]; |
| 443 | struct hisi_sas_initial_fis *initial_fis; |
| 444 | dma_addr_t initial_fis_dma; |
| 445 | struct hisi_sas_itct *itct; |
| 446 | dma_addr_t itct_dma; |
| 447 | struct hisi_sas_iost *iost; |
| 448 | dma_addr_t iost_dma; |
| 449 | struct hisi_sas_breakpoint *breakpoint; |
| 450 | dma_addr_t breakpoint_dma; |
| 451 | struct hisi_sas_breakpoint *sata_breakpoint; |
| 452 | dma_addr_t sata_breakpoint_dma; |
| 453 | struct hisi_sas_slot *slot_info; |
Xiang Chen | 06ec0fb | 2017-03-23 01:25:18 +0800 | [diff] [blame] | 454 | unsigned long flags; |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 455 | const struct hisi_sas_hw *hw; /* Low level hw interface */ |
Xiaofei Tan | 32ccba5 | 2017-04-10 21:21:57 +0800 | [diff] [blame] | 456 | unsigned long sata_dev_bitmap[BITS_TO_LONGS(HISI_SAS_MAX_DEVICES)]; |
Xiang Chen | 06ec0fb | 2017-03-23 01:25:18 +0800 | [diff] [blame] | 457 | struct work_struct rst_work; |
Luo Jiaxing | 49159a5 | 2018-12-19 23:56:41 +0800 | [diff] [blame] | 458 | struct work_struct debugfs_work; |
Xiaofei Tan | 4522204 | 2018-07-18 22:14:28 +0800 | [diff] [blame] | 459 | u32 phy_state; |
Xiang Chen | 3735979 | 2018-11-09 22:06:34 +0800 | [diff] [blame] | 460 | u32 intr_coal_ticks; /* Time of interrupt coalesce in us */ |
| 461 | u32 intr_coal_count; /* Interrupt count to coalesce */ |
Luo Jiaxing | ef63464 | 2018-12-19 23:56:39 +0800 | [diff] [blame] | 462 | |
John Garry | 795f25a | 2019-02-06 18:52:54 +0800 | [diff] [blame] | 463 | int cq_nvecs; |
| 464 | |
Xiang Chen | 97b151e | 2019-09-06 20:55:36 +0800 | [diff] [blame] | 465 | /* bist */ |
| 466 | enum sas_linkrate debugfs_bist_linkrate; |
| 467 | int debugfs_bist_code_mode; |
| 468 | int debugfs_bist_phy_no; |
| 469 | int debugfs_bist_mode; |
| 470 | u32 debugfs_bist_cnt; |
| 471 | int debugfs_bist_enable; |
Luo Jiaxing | 2c4d582 | 2020-09-01 19:13:07 +0800 | [diff] [blame] | 472 | u32 debugfs_bist_ffe[HISI_SAS_MAX_PHYS][FFE_CFG_MAX]; |
Luo Jiaxing | 981cc23 | 2020-09-01 19:13:08 +0800 | [diff] [blame] | 473 | u32 debugfs_bist_fixed_code[FIXED_CODE_MAX]; |
Xiang Chen | 97b151e | 2019-09-06 20:55:36 +0800 | [diff] [blame] | 474 | |
Luo Jiaxing | eb1c2b7 | 2018-12-19 23:56:40 +0800 | [diff] [blame] | 475 | /* debugfs memories */ |
Luo Jiaxing | b0b3e429 | 2019-08-05 21:48:02 +0800 | [diff] [blame] | 476 | /* Put Global AXI and RAS Register into register array */ |
Luo Jiaxing | a70e33e | 2019-10-24 22:08:21 +0800 | [diff] [blame] | 477 | struct hisi_sas_debugfs_regs debugfs_regs[HISI_SAS_MAX_DEBUGFS_DUMP][DEBUGFS_REGS_NUM]; |
| 478 | struct hisi_sas_debugfs_port debugfs_port_reg[HISI_SAS_MAX_DEBUGFS_DUMP][HISI_SAS_MAX_PHYS]; |
| 479 | struct hisi_sas_debugfs_cq debugfs_cq[HISI_SAS_MAX_DEBUGFS_DUMP][HISI_SAS_MAX_QUEUES]; |
| 480 | struct hisi_sas_debugfs_dq debugfs_dq[HISI_SAS_MAX_DEBUGFS_DUMP][HISI_SAS_MAX_QUEUES]; |
| 481 | struct hisi_sas_debugfs_iost debugfs_iost[HISI_SAS_MAX_DEBUGFS_DUMP]; |
| 482 | struct hisi_sas_debugfs_itct debugfs_itct[HISI_SAS_MAX_DEBUGFS_DUMP]; |
| 483 | struct hisi_sas_debugfs_iost_cache debugfs_iost_cache[HISI_SAS_MAX_DEBUGFS_DUMP]; |
| 484 | struct hisi_sas_debugfs_itct_cache debugfs_itct_cache[HISI_SAS_MAX_DEBUGFS_DUMP]; |
| 485 | |
Luo Jiaxing | 8f64329 | 2019-10-24 22:08:23 +0800 | [diff] [blame] | 486 | u64 debugfs_timestamp[HISI_SAS_MAX_DEBUGFS_DUMP]; |
| 487 | int debugfs_dump_index; |
Luo Jiaxing | ef63464 | 2018-12-19 23:56:39 +0800 | [diff] [blame] | 488 | struct dentry *debugfs_dir; |
Luo Jiaxing | 49159a5 | 2018-12-19 23:56:41 +0800 | [diff] [blame] | 489 | struct dentry *debugfs_dump_dentry; |
Xiang Chen | 97b151e | 2019-09-06 20:55:36 +0800 | [diff] [blame] | 490 | struct dentry *debugfs_bist_dentry; |
Luo Jiaxing | cd96fe6 | 2021-01-26 19:04:28 +0800 | [diff] [blame] | 491 | struct dentry *debugfs_fifo_dentry; |
John Garry | 7eb7869 | 2015-11-18 00:50:31 +0800 | [diff] [blame] | 492 | }; |
| 493 | |
John Garry | c799d6b | 2015-11-18 00:50:33 +0800 | [diff] [blame] | 494 | /* Generic HW DMA host memory structures */ |
| 495 | /* Delivery queue header */ |
| 496 | struct hisi_sas_cmd_hdr { |
| 497 | /* dw0 */ |
| 498 | __le32 dw0; |
| 499 | |
| 500 | /* dw1 */ |
| 501 | __le32 dw1; |
| 502 | |
| 503 | /* dw2 */ |
| 504 | __le32 dw2; |
| 505 | |
| 506 | /* dw3 */ |
| 507 | __le32 transfer_tags; |
| 508 | |
| 509 | /* dw4 */ |
| 510 | __le32 data_transfer_len; |
| 511 | |
| 512 | /* dw5 */ |
| 513 | __le32 first_burst_num; |
| 514 | |
| 515 | /* dw6 */ |
| 516 | __le32 sg_len; |
| 517 | |
| 518 | /* dw7 */ |
| 519 | __le32 dw7; |
| 520 | |
| 521 | /* dw8-9 */ |
| 522 | __le64 cmd_table_addr; |
| 523 | |
| 524 | /* dw10-11 */ |
| 525 | __le64 sts_buffer_addr; |
| 526 | |
| 527 | /* dw12-13 */ |
| 528 | __le64 prd_table_addr; |
| 529 | |
| 530 | /* dw14-15 */ |
| 531 | __le64 dif_prd_table_addr; |
| 532 | }; |
| 533 | |
| 534 | struct hisi_sas_itct { |
| 535 | __le64 qw0; |
| 536 | __le64 sas_addr; |
| 537 | __le64 qw2; |
| 538 | __le64 qw3; |
John Garry | 281e3bf | 2016-01-26 02:47:06 +0800 | [diff] [blame] | 539 | __le64 qw4_15[12]; |
John Garry | c799d6b | 2015-11-18 00:50:33 +0800 | [diff] [blame] | 540 | }; |
| 541 | |
| 542 | struct hisi_sas_iost { |
| 543 | __le64 qw0; |
| 544 | __le64 qw1; |
| 545 | __le64 qw2; |
| 546 | __le64 qw3; |
| 547 | }; |
| 548 | |
| 549 | struct hisi_sas_err_record { |
John Garry | 8d1eee7 | 2016-01-26 02:47:05 +0800 | [diff] [blame] | 550 | u32 data[4]; |
John Garry | c799d6b | 2015-11-18 00:50:33 +0800 | [diff] [blame] | 551 | }; |
| 552 | |
| 553 | struct hisi_sas_initial_fis { |
| 554 | struct hisi_sas_err_record err_record; |
| 555 | struct dev_to_host_fis fis; |
| 556 | u32 rsvd[3]; |
| 557 | }; |
| 558 | |
| 559 | struct hisi_sas_breakpoint { |
Xiang Chen | 3297ded | 2017-10-24 23:51:35 +0800 | [diff] [blame] | 560 | u8 data[128]; |
| 561 | }; |
| 562 | |
| 563 | struct hisi_sas_sata_breakpoint { |
| 564 | struct hisi_sas_breakpoint tag[32]; |
John Garry | c799d6b | 2015-11-18 00:50:33 +0800 | [diff] [blame] | 565 | }; |
| 566 | |
| 567 | struct hisi_sas_sge { |
| 568 | __le64 addr; |
| 569 | __le32 page_ctrl_0; |
| 570 | __le32 page_ctrl_1; |
| 571 | __le32 data_len; |
| 572 | __le32 data_off; |
| 573 | }; |
| 574 | |
| 575 | struct hisi_sas_command_table_smp { |
| 576 | u8 bytes[44]; |
| 577 | }; |
| 578 | |
| 579 | struct hisi_sas_command_table_stp { |
| 580 | struct host_to_dev_fis command_fis; |
| 581 | u8 dummy[12]; |
| 582 | u8 atapi_cdb[ATAPI_CDB_LEN]; |
| 583 | }; |
| 584 | |
John Garry | c7669f5 | 2019-05-29 17:58:44 +0800 | [diff] [blame] | 585 | #define HISI_SAS_SGE_PAGE_CNT (124) |
John Garry | c799d6b | 2015-11-18 00:50:33 +0800 | [diff] [blame] | 586 | struct hisi_sas_sge_page { |
| 587 | struct hisi_sas_sge sge[HISI_SAS_SGE_PAGE_CNT]; |
Xiaofei Tan | f557e32 | 2017-06-29 21:02:14 +0800 | [diff] [blame] | 588 | } __aligned(16); |
John Garry | c799d6b | 2015-11-18 00:50:33 +0800 | [diff] [blame] | 589 | |
John Garry | c7669f5 | 2019-05-29 17:58:44 +0800 | [diff] [blame] | 590 | #define HISI_SAS_SGE_DIF_PAGE_CNT HISI_SAS_SGE_PAGE_CNT |
Xiang Chen | b3cce12 | 2019-02-06 18:52:51 +0800 | [diff] [blame] | 591 | struct hisi_sas_sge_dif_page { |
| 592 | struct hisi_sas_sge sge[HISI_SAS_SGE_DIF_PAGE_CNT]; |
| 593 | } __aligned(16); |
| 594 | |
John Garry | c799d6b | 2015-11-18 00:50:33 +0800 | [diff] [blame] | 595 | struct hisi_sas_command_table_ssp { |
| 596 | struct ssp_frame_hdr hdr; |
| 597 | union { |
| 598 | struct { |
| 599 | struct ssp_command_iu task; |
Xiang Chen | a14da7a | 2018-05-02 23:56:27 +0800 | [diff] [blame] | 600 | u32 prot[7]; |
John Garry | c799d6b | 2015-11-18 00:50:33 +0800 | [diff] [blame] | 601 | }; |
| 602 | struct ssp_tmf_iu ssp_task; |
| 603 | struct xfer_rdy_iu xfer_rdy; |
| 604 | struct ssp_response_iu ssp_res; |
| 605 | } u; |
| 606 | }; |
| 607 | |
| 608 | union hisi_sas_command_table { |
| 609 | struct hisi_sas_command_table_ssp ssp; |
| 610 | struct hisi_sas_command_table_smp smp; |
| 611 | struct hisi_sas_command_table_stp stp; |
Xiaofei Tan | f557e32 | 2017-06-29 21:02:14 +0800 | [diff] [blame] | 612 | } __aligned(16); |
| 613 | |
| 614 | struct hisi_sas_status_buffer { |
| 615 | struct hisi_sas_err_record err; |
| 616 | u8 iu[1024]; |
| 617 | } __aligned(16); |
| 618 | |
| 619 | struct hisi_sas_slot_buf_table { |
| 620 | struct hisi_sas_status_buffer status_buffer; |
| 621 | union hisi_sas_command_table command_header; |
| 622 | struct hisi_sas_sge_page sge_page; |
John Garry | c799d6b | 2015-11-18 00:50:33 +0800 | [diff] [blame] | 623 | }; |
John Garry | 2e244f0 | 2017-03-23 01:25:17 +0800 | [diff] [blame] | 624 | |
Xiang Chen | b3cce12 | 2019-02-06 18:52:51 +0800 | [diff] [blame] | 625 | struct hisi_sas_slot_dif_buf_table { |
| 626 | struct hisi_sas_slot_buf_table slot_buf; |
| 627 | struct hisi_sas_sge_dif_page sge_dif_page; |
| 628 | }; |
| 629 | |
John Garry | e21fe3a | 2017-06-14 23:33:20 +0800 | [diff] [blame] | 630 | extern struct scsi_transport_template *hisi_sas_stt; |
Luo Jiaxing | ef63464 | 2018-12-19 23:56:39 +0800 | [diff] [blame] | 631 | |
| 632 | extern bool hisi_sas_debugfs_enable; |
Luo Jiaxing | 905ab01 | 2019-10-24 22:08:22 +0800 | [diff] [blame] | 633 | extern u32 hisi_sas_debugfs_dump_count; |
Luo Jiaxing | ef63464 | 2018-12-19 23:56:39 +0800 | [diff] [blame] | 634 | extern struct dentry *hisi_sas_debugfs_dir; |
| 635 | |
Xiang Chen | a25d0d3 | 2017-08-11 00:09:40 +0800 | [diff] [blame] | 636 | extern void hisi_sas_stop_phys(struct hisi_hba *hisi_hba); |
Xiang Chen | ae68b56 | 2019-01-25 22:22:33 +0800 | [diff] [blame] | 637 | extern int hisi_sas_alloc(struct hisi_hba *hisi_hba); |
John Garry | e21fe3a | 2017-06-14 23:33:20 +0800 | [diff] [blame] | 638 | extern void hisi_sas_free(struct hisi_hba *hisi_hba); |
chenxiang | 468f4b8 | 2017-12-28 18:20:47 +0800 | [diff] [blame] | 639 | extern u8 hisi_sas_get_ata_protocol(struct host_to_dev_fis *fis, |
| 640 | int direction); |
John Garry | 2e244f0 | 2017-03-23 01:25:17 +0800 | [diff] [blame] | 641 | extern struct hisi_sas_port *to_hisi_sas_port(struct asd_sas_port *sas_port); |
Xiang Chen | 7590407 | 2017-06-14 23:33:15 +0800 | [diff] [blame] | 642 | extern void hisi_sas_sata_done(struct sas_task *task, |
| 643 | struct hisi_sas_slot *slot); |
John Garry | 0fa24c1 | 2017-06-14 23:33:18 +0800 | [diff] [blame] | 644 | extern int hisi_sas_get_fw_info(struct hisi_hba *hisi_hba); |
John Garry | 9fb10b5 | 2015-11-18 00:50:44 +0800 | [diff] [blame] | 645 | extern int hisi_sas_probe(struct platform_device *pdev, |
| 646 | const struct hisi_sas_hw *ops); |
| 647 | extern int hisi_sas_remove(struct platform_device *pdev); |
John Garry | c799d6b | 2015-11-18 00:50:33 +0800 | [diff] [blame] | 648 | |
Xiang Chen | 235bfc7 | 2018-05-21 18:09:18 +0800 | [diff] [blame] | 649 | extern int hisi_sas_slave_configure(struct scsi_device *sdev); |
| 650 | extern int hisi_sas_scan_finished(struct Scsi_Host *shost, unsigned long time); |
| 651 | extern void hisi_sas_scan_start(struct Scsi_Host *shost); |
Xiang Chen | 235bfc7 | 2018-05-21 18:09:18 +0800 | [diff] [blame] | 652 | extern int hisi_sas_host_reset(struct Scsi_Host *shost, int reset_type); |
John Garry | c63b88c | 2019-04-11 20:46:38 +0800 | [diff] [blame] | 653 | extern void hisi_sas_phy_enable(struct hisi_hba *hisi_hba, int phy_no, |
| 654 | int enable); |
Ahmed S. Darwish | 26c7efc | 2021-01-18 11:09:47 +0100 | [diff] [blame] | 655 | extern void hisi_sas_phy_down(struct hisi_hba *hisi_hba, int phy_no, int rdy, |
| 656 | gfp_t gfp_flags); |
John Garry | 27a3f22 | 2015-11-18 00:50:50 +0800 | [diff] [blame] | 657 | extern void hisi_sas_slot_task_free(struct hisi_hba *hisi_hba, |
| 658 | struct sas_task *task, |
| 659 | struct hisi_sas_slot *slot); |
Xiang Chen | 06ec0fb | 2017-03-23 01:25:18 +0800 | [diff] [blame] | 660 | extern void hisi_sas_init_mem(struct hisi_hba *hisi_hba); |
Xiaofei Tan | b4241f0 | 2017-10-24 23:51:45 +0800 | [diff] [blame] | 661 | extern void hisi_sas_rst_work_handler(struct work_struct *work); |
Xiaofei Tan | e402acd | 2017-12-09 01:16:38 +0800 | [diff] [blame] | 662 | extern void hisi_sas_sync_rst_work_handler(struct work_struct *work); |
Xiang Chen | 81f338e | 2020-01-20 20:22:31 +0800 | [diff] [blame] | 663 | extern void hisi_sas_sync_irqs(struct hisi_hba *hisi_hba); |
Xiaofei Tan | b6c9b15 | 2019-01-25 22:22:35 +0800 | [diff] [blame] | 664 | extern void hisi_sas_phy_oob_ready(struct hisi_hba *hisi_hba, int phy_no); |
Xiaofei Tan | e537b62 | 2017-12-09 01:16:44 +0800 | [diff] [blame] | 665 | extern bool hisi_sas_notify_phy_event(struct hisi_sas_phy *phy, |
| 666 | enum hisi_sas_phy_event event); |
Xiang Chen | 4d0951e | 2017-12-09 01:16:50 +0800 | [diff] [blame] | 667 | extern void hisi_sas_release_tasks(struct hisi_hba *hisi_hba); |
Xiang Chen | c2c1d9d | 2018-05-02 23:56:30 +0800 | [diff] [blame] | 668 | extern u8 hisi_sas_get_prog_phy_linkrate_mask(enum sas_linkrate max); |
Xiaofei Tan | 4522204 | 2018-07-18 22:14:28 +0800 | [diff] [blame] | 669 | extern void hisi_sas_controller_reset_prepare(struct hisi_hba *hisi_hba); |
| 670 | extern void hisi_sas_controller_reset_done(struct hisi_hba *hisi_hba); |
John Garry | e8899fa | 2015-11-18 00:50:30 +0800 | [diff] [blame] | 671 | #endif |