1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Microsemi Switchtec PCIe Driver
4 * Copyright (c) 2017, Microsemi Corporation
10 #include <linux/pci.h>
11 #include <linux/cdev.h>
13 #define SWITCHTEC_MRPC_PAYLOAD_SIZE 1024
14 #define SWITCHTEC_MAX_PFF_CSR 255
16 #define SWITCHTEC_EVENT_OCCURRED BIT(0)
17 #define SWITCHTEC_EVENT_CLEAR BIT(0)
18 #define SWITCHTEC_EVENT_EN_LOG BIT(1)
19 #define SWITCHTEC_EVENT_EN_CLI BIT(2)
20 #define SWITCHTEC_EVENT_EN_IRQ BIT(3)
21 #define SWITCHTEC_EVENT_FATAL BIT(4)
22 #define SWITCHTEC_EVENT_NOT_SUPP BIT(31)
24 #define SWITCHTEC_DMA_MRPC_EN BIT(0)
26 #define MRPC_GAS_READ 0x29
27 #define MRPC_GAS_WRITE 0x87
28 #define MRPC_CMD_ID(x) ((x) & 0xffff)
31 SWITCHTEC_GAS_MRPC_OFFSET = 0x0000,
32 SWITCHTEC_GAS_TOP_CFG_OFFSET = 0x1000,
33 SWITCHTEC_GAS_SW_EVENT_OFFSET = 0x1800,
34 SWITCHTEC_GAS_SYS_INFO_OFFSET = 0x2000,
35 SWITCHTEC_GAS_FLASH_INFO_OFFSET = 0x2200,
36 SWITCHTEC_GAS_PART_CFG_OFFSET = 0x4000,
37 SWITCHTEC_GAS_NTB_OFFSET = 0x10000,
38 SWITCHTEC_GAS_PFF_CSR_OFFSET = 0x134000,
47 u8 input_data[SWITCHTEC_MRPC_PAYLOAD_SIZE];
48 u8 output_data[SWITCHTEC_MRPC_PAYLOAD_SIZE];
59 SWITCHTEC_MRPC_STATUS_INPROGRESS = 1,
60 SWITCHTEC_MRPC_STATUS_DONE = 2,
61 SWITCHTEC_MRPC_STATUS_ERROR = 0xFF,
62 SWITCHTEC_MRPC_STATUS_INTERRUPTED = 0x100,
65 struct sw_event_regs {
66 u64 event_report_ctrl;
68 u64 part_event_bitmap;
72 u32 stack_error_event_hdr;
73 u32 stack_error_event_data;
75 u32 ppu_error_event_hdr;
76 u32 ppu_error_event_data;
78 u32 isp_error_event_hdr;
79 u32 isp_error_event_data;
81 u32 sys_reset_event_hdr;
91 u32 twi_mrpc_comp_hdr;
92 u32 twi_mrpc_comp_data;
94 u32 twi_mrpc_comp_async_hdr;
95 u32 twi_mrpc_comp_async_data;
97 u32 cli_mrpc_comp_hdr;
98 u32 cli_mrpc_comp_data;
100 u32 cli_mrpc_comp_async_hdr;
101 u32 cli_mrpc_comp_async_data;
103 u32 gpio_interrupt_hdr;
104 u32 gpio_interrupt_data;
112 SWITCHTEC_GEN3_CFG0_RUNNING = 0x04,
113 SWITCHTEC_GEN3_CFG1_RUNNING = 0x05,
114 SWITCHTEC_GEN3_IMG0_RUNNING = 0x03,
115 SWITCHTEC_GEN3_IMG1_RUNNING = 0x07,
119 SWITCHTEC_GEN4_MAP0_RUNNING = 0x00,
120 SWITCHTEC_GEN4_MAP1_RUNNING = 0x01,
121 SWITCHTEC_GEN4_KEY0_RUNNING = 0x02,
122 SWITCHTEC_GEN4_KEY1_RUNNING = 0x03,
123 SWITCHTEC_GEN4_BL2_0_RUNNING = 0x04,
124 SWITCHTEC_GEN4_BL2_1_RUNNING = 0x05,
125 SWITCHTEC_GEN4_CFG0_RUNNING = 0x06,
126 SWITCHTEC_GEN4_CFG1_RUNNING = 0x07,
127 SWITCHTEC_GEN4_IMG0_RUNNING = 0x08,
128 SWITCHTEC_GEN4_IMG1_RUNNING = 0x09,
132 SWITCHTEC_GEN4_KEY0_ACTIVE = 0,
133 SWITCHTEC_GEN4_KEY1_ACTIVE = 1,
134 SWITCHTEC_GEN4_BL2_0_ACTIVE = 0,
135 SWITCHTEC_GEN4_BL2_1_ACTIVE = 1,
136 SWITCHTEC_GEN4_CFG0_ACTIVE = 0,
137 SWITCHTEC_GEN4_CFG1_ACTIVE = 1,
138 SWITCHTEC_GEN4_IMG0_ACTIVE = 0,
139 SWITCHTEC_GEN4_IMG1_ACTIVE = 1,
142 struct sys_info_regs_gen3 {
144 u32 vendor_table_revision;
145 u32 table_format_version;
147 u32 cfg_file_fmt_version;
153 char product_revision[4];
154 char component_vendor[8];
156 u8 component_revision;
159 struct sys_info_regs_gen4 {
163 u16 mgmt_cmd_set_ver;
164 u16 fabric_cmd_set_ver;
180 u32 vendor_seeprom_twi;
181 u32 vendor_table_revision;
182 u32 vendor_specific_info[2];
188 u16 subsystem_vendor_id;
190 u32 p2p_serial_number[2];
196 char product_revision[2];
200 struct sys_info_regs {
203 u32 firmware_version;
205 struct sys_info_regs_gen3 gen3;
206 struct sys_info_regs_gen4 gen4;
210 struct partition_info {
215 struct flash_info_regs_gen3 {
216 u32 flash_part_map_upd_idx;
218 struct active_partition_info_gen3 {
224 struct active_partition_info_gen3 active_cfg;
225 struct active_partition_info_gen3 inactive_img;
226 struct active_partition_info_gen3 inactive_cfg;
230 struct partition_info cfg0;
231 struct partition_info cfg1;
232 struct partition_info img0;
233 struct partition_info img1;
234 struct partition_info nvlog;
235 struct partition_info vendor[8];
238 struct flash_info_regs_gen4 {
242 struct active_partition_info_gen4 {
251 struct partition_info map0;
252 struct partition_info map1;
253 struct partition_info key0;
254 struct partition_info key1;
255 struct partition_info bl2_0;
256 struct partition_info bl2_1;
257 struct partition_info cfg0;
258 struct partition_info cfg1;
259 struct partition_info img0;
260 struct partition_info img1;
261 struct partition_info nvlog;
262 struct partition_info vendor[8];
265 struct flash_info_regs {
267 struct flash_info_regs_gen3 gen3;
268 struct flash_info_regs_gen4 gen4;
273 SWITCHTEC_NTB_REG_INFO_OFFSET = 0x0000,
274 SWITCHTEC_NTB_REG_CTRL_OFFSET = 0x4000,
275 SWITCHTEC_NTB_REG_DBMSG_OFFSET = 0x64000,
278 struct ntb_info_regs {
286 struct nt_partition_info {
289 u32 target_part_high;
294 struct part_cfg_regs {
301 u32 dsp_pff_inst_id[47];
303 u16 vep_vector_number;
304 u16 usp_vector_number;
305 u32 port_event_bitmap;
307 u32 part_event_summary;
310 u32 part_reset_data[5];
312 u32 mrpc_comp_data[5];
313 u32 mrpc_comp_async_hdr;
314 u32 mrpc_comp_async_data[5];
316 u32 dyn_binding_data[5];
317 u32 intercomm_notify_hdr;
318 u32 intercomm_notify_data[5];
323 NTB_CTRL_PART_OP_LOCK = 0x1,
324 NTB_CTRL_PART_OP_CFG = 0x2,
325 NTB_CTRL_PART_OP_RESET = 0x3,
327 NTB_CTRL_PART_STATUS_NORMAL = 0x1,
328 NTB_CTRL_PART_STATUS_LOCKED = 0x2,
329 NTB_CTRL_PART_STATUS_LOCKING = 0x3,
330 NTB_CTRL_PART_STATUS_CONFIGURING = 0x4,
331 NTB_CTRL_PART_STATUS_RESETTING = 0x5,
333 NTB_CTRL_BAR_VALID = 1 << 0,
334 NTB_CTRL_BAR_DIR_WIN_EN = 1 << 4,
335 NTB_CTRL_BAR_LUT_WIN_EN = 1 << 5,
337 NTB_CTRL_REQ_ID_EN = 1 << 0,
339 NTB_CTRL_LUT_EN = 1 << 0,
342 struct ntb_ctrl_regs {
343 u32 partition_status;
348 u16 lut_table_entries;
349 u16 lut_table_offset;
351 u16 req_id_table_size;
352 u16 req_id_table_offset;
365 u32 req_id_table[512];
370 #define NTB_DBMSG_IMSG_STATUS BIT_ULL(32)
371 #define NTB_DBMSG_IMSG_MASK BIT_ULL(40)
373 struct ntb_dbmsg_regs {
403 SWITCHTEC_PART_CFG_EVENT_RESET = 1 << 0,
404 SWITCHTEC_PART_CFG_EVENT_MRPC_CMP = 1 << 1,
405 SWITCHTEC_PART_CFG_EVENT_MRPC_ASYNC_CMP = 1 << 2,
406 SWITCHTEC_PART_CFG_EVENT_DYN_PART_CMP = 1 << 3,
409 struct pff_csr_regs {
421 u32 pci_subsystem_id;
422 u32 pci_expansion_rom;
426 u32 pci_cap_region[48];
427 u32 pcie_cap_region[448];
428 u32 indirect_gas_window[128];
429 u32 indirect_gas_window_off;
431 u32 pff_event_summary;
434 u32 aer_in_p2p_data[5];
436 u32 aer_in_vep_data[5];
448 u32 threshold_data[5];
450 u32 power_mgmt_data[5];
451 u32 tlp_throttling_hdr;
452 u32 tlp_throttling_data[5];
454 u32 force_speed_data[5];
455 u32 credit_timeout_hdr;
456 u32 credit_timeout_data[5];
458 u32 link_state_data[5];
462 struct switchtec_ntb;
464 struct dma_mrpc_output {
469 u8 data[SWITCHTEC_MRPC_PAYLOAD_SIZE];
472 struct switchtec_dev {
473 struct pci_dev *pdev;
477 enum switchtec_gen gen;
482 char pff_local[SWITCHTEC_MAX_PFF_CSR];
485 struct mrpc_regs __iomem *mmio_mrpc;
486 struct sw_event_regs __iomem *mmio_sw_event;
487 struct sys_info_regs __iomem *mmio_sys_info;
488 struct flash_info_regs __iomem *mmio_flash_info;
489 struct ntb_info_regs __iomem *mmio_ntb;
490 struct part_cfg_regs __iomem *mmio_part_cfg;
491 struct part_cfg_regs __iomem *mmio_part_cfg_all;
492 struct pff_csr_regs __iomem *mmio_pff_csr;
495 * The mrpc mutex must be held when accessing the other
496 * mrpc_ fields, alive flag and stuser->state field
498 struct mutex mrpc_mutex;
499 struct list_head mrpc_queue;
501 struct work_struct mrpc_work;
502 struct delayed_work mrpc_timeout;
505 wait_queue_head_t event_wq;
508 struct work_struct link_event_work;
509 void (*link_notifier)(struct switchtec_dev *stdev);
510 u8 link_event_count[SWITCHTEC_MAX_PFF_CSR];
512 struct switchtec_ntb *sndev;
514 struct dma_mrpc_output *dma_mrpc;
515 dma_addr_t dma_mrpc_dma_addr;
518 static inline struct switchtec_dev *to_stdev(struct device *dev)
520 return container_of(dev, struct switchtec_dev, dev);
523 extern struct class *switchtec_class;