James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1 | /******************************************************************* |
| 2 | * This file is part of the Emulex Linux Device Driver for * |
| 3 | * Fibre Channel Host Bus Adapters. * |
James Smart | 0d04121 | 2019-01-28 11:14:41 -0800 | [diff] [blame] | 4 | * Copyright (C) 2017-2019 Broadcom. All Rights Reserved. The term * |
James Smart | 3e21d1c | 2018-05-04 20:37:59 -0700 | [diff] [blame] | 5 | * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. * |
James Smart | d080abe | 2017-02-12 13:52:39 -0800 | [diff] [blame] | 6 | * Copyright (C) 2009-2016 Emulex. All rights reserved. * |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 7 | * EMULEX and SLI are trademarks of Emulex. * |
James Smart | d080abe | 2017-02-12 13:52:39 -0800 | [diff] [blame] | 8 | * www.broadcom.com * |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 9 | * * |
| 10 | * This program is free software; you can redistribute it and/or * |
| 11 | * modify it under the terms of version 2 of the GNU General * |
| 12 | * Public License as published by the Free Software Foundation. * |
| 13 | * This program is distributed in the hope that it will be useful. * |
| 14 | * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * |
| 15 | * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * |
| 16 | * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE * |
| 17 | * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD * |
| 18 | * TO BE LEGALLY INVALID. See the GNU General Public License for * |
| 19 | * more details, a copy of which can be found in the file COPYING * |
| 20 | * included with this package. * |
| 21 | *******************************************************************/ |
| 22 | |
James Smart | df3fe76 | 2020-02-10 09:31:55 -0800 | [diff] [blame] | 23 | #include <uapi/scsi/fc/fc_els.h> |
| 24 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 25 | /* Macros to deal with bit fields. Each bit field must have 3 #defines |
| 26 | * associated with it (_SHIFT, _MASK, and _WORD). |
| 27 | * EG. For a bit field that is in the 7th bit of the "field4" field of a |
| 28 | * structure and is 2 bits in size the following #defines must exist: |
| 29 | * struct temp { |
| 30 | * uint32_t field1; |
| 31 | * uint32_t field2; |
| 32 | * uint32_t field3; |
| 33 | * uint32_t field4; |
| 34 | * #define example_bit_field_SHIFT 7 |
| 35 | * #define example_bit_field_MASK 0x03 |
| 36 | * #define example_bit_field_WORD field4 |
| 37 | * uint32_t field5; |
| 38 | * }; |
| 39 | * Then the macros below may be used to get or set the value of that field. |
| 40 | * EG. To get the value of the bit field from the above example: |
| 41 | * struct temp t1; |
| 42 | * value = bf_get(example_bit_field, &t1); |
| 43 | * And then to set that bit field: |
| 44 | * bf_set(example_bit_field, &t1, 2); |
| 45 | * Or clear that bit field: |
| 46 | * bf_set(example_bit_field, &t1, 0); |
| 47 | */ |
James Smart | 079b5c9 | 2011-08-21 21:48:49 -0400 | [diff] [blame] | 48 | #define bf_get_be32(name, ptr) \ |
| 49 | ((be32_to_cpu((ptr)->name##_WORD) >> name##_SHIFT) & name##_MASK) |
James Smart | cb5172e | 2010-03-15 11:25:07 -0400 | [diff] [blame] | 50 | #define bf_get_le32(name, ptr) \ |
| 51 | ((le32_to_cpu((ptr)->name##_WORD) >> name##_SHIFT) & name##_MASK) |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 52 | #define bf_get(name, ptr) \ |
| 53 | (((ptr)->name##_WORD >> name##_SHIFT) & name##_MASK) |
James Smart | cb5172e | 2010-03-15 11:25:07 -0400 | [diff] [blame] | 54 | #define bf_set_le32(name, ptr, value) \ |
| 55 | ((ptr)->name##_WORD = cpu_to_le32(((((value) & \ |
| 56 | name##_MASK) << name##_SHIFT) | (le32_to_cpu((ptr)->name##_WORD) & \ |
| 57 | ~(name##_MASK << name##_SHIFT))))) |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 58 | #define bf_set(name, ptr, value) \ |
| 59 | ((ptr)->name##_WORD = ((((value) & name##_MASK) << name##_SHIFT) | \ |
| 60 | ((ptr)->name##_WORD & ~(name##_MASK << name##_SHIFT)))) |
| 61 | |
| 62 | struct dma_address { |
| 63 | uint32_t addr_lo; |
| 64 | uint32_t addr_hi; |
| 65 | }; |
| 66 | |
James Smart | 8fa3851 | 2009-07-19 10:01:03 -0400 | [diff] [blame] | 67 | struct lpfc_sli_intf { |
| 68 | uint32_t word0; |
James Smart | 28baac7 | 2010-02-12 14:42:03 -0500 | [diff] [blame] | 69 | #define lpfc_sli_intf_valid_SHIFT 29 |
| 70 | #define lpfc_sli_intf_valid_MASK 0x00000007 |
| 71 | #define lpfc_sli_intf_valid_WORD word0 |
James Smart | 8fa3851 | 2009-07-19 10:01:03 -0400 | [diff] [blame] | 72 | #define LPFC_SLI_INTF_VALID 6 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 73 | #define lpfc_sli_intf_sli_hint2_SHIFT 24 |
| 74 | #define lpfc_sli_intf_sli_hint2_MASK 0x0000001F |
| 75 | #define lpfc_sli_intf_sli_hint2_WORD word0 |
| 76 | #define LPFC_SLI_INTF_SLI_HINT2_NONE 0 |
| 77 | #define lpfc_sli_intf_sli_hint1_SHIFT 16 |
| 78 | #define lpfc_sli_intf_sli_hint1_MASK 0x000000FF |
| 79 | #define lpfc_sli_intf_sli_hint1_WORD word0 |
| 80 | #define LPFC_SLI_INTF_SLI_HINT1_NONE 0 |
| 81 | #define LPFC_SLI_INTF_SLI_HINT1_1 1 |
| 82 | #define LPFC_SLI_INTF_SLI_HINT1_2 2 |
| 83 | #define lpfc_sli_intf_if_type_SHIFT 12 |
| 84 | #define lpfc_sli_intf_if_type_MASK 0x0000000F |
| 85 | #define lpfc_sli_intf_if_type_WORD word0 |
| 86 | #define LPFC_SLI_INTF_IF_TYPE_0 0 |
| 87 | #define LPFC_SLI_INTF_IF_TYPE_1 1 |
| 88 | #define LPFC_SLI_INTF_IF_TYPE_2 2 |
James Smart | 27d6ac0 | 2018-02-22 08:18:42 -0800 | [diff] [blame] | 89 | #define LPFC_SLI_INTF_IF_TYPE_6 6 |
James Smart | 28baac7 | 2010-02-12 14:42:03 -0500 | [diff] [blame] | 90 | #define lpfc_sli_intf_sli_family_SHIFT 8 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 91 | #define lpfc_sli_intf_sli_family_MASK 0x0000000F |
James Smart | 28baac7 | 2010-02-12 14:42:03 -0500 | [diff] [blame] | 92 | #define lpfc_sli_intf_sli_family_WORD word0 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 93 | #define LPFC_SLI_INTF_FAMILY_BE2 0x0 |
| 94 | #define LPFC_SLI_INTF_FAMILY_BE3 0x1 |
| 95 | #define LPFC_SLI_INTF_FAMILY_LNCR_A0 0xa |
| 96 | #define LPFC_SLI_INTF_FAMILY_LNCR_B0 0xb |
James Smart | 28baac7 | 2010-02-12 14:42:03 -0500 | [diff] [blame] | 97 | #define lpfc_sli_intf_slirev_SHIFT 4 |
| 98 | #define lpfc_sli_intf_slirev_MASK 0x0000000F |
| 99 | #define lpfc_sli_intf_slirev_WORD word0 |
| 100 | #define LPFC_SLI_INTF_REV_SLI3 3 |
| 101 | #define LPFC_SLI_INTF_REV_SLI4 4 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 102 | #define lpfc_sli_intf_func_type_SHIFT 0 |
| 103 | #define lpfc_sli_intf_func_type_MASK 0x00000001 |
| 104 | #define lpfc_sli_intf_func_type_WORD word0 |
| 105 | #define LPFC_SLI_INTF_IF_TYPE_PHYS 0 |
| 106 | #define LPFC_SLI_INTF_IF_TYPE_VIRT 1 |
James Smart | 8fa3851 | 2009-07-19 10:01:03 -0400 | [diff] [blame] | 107 | }; |
| 108 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 109 | #define LPFC_SLI4_MBX_EMBED true |
| 110 | #define LPFC_SLI4_MBX_NEMBED false |
| 111 | |
| 112 | #define LPFC_SLI4_MB_WORD_COUNT 64 |
| 113 | #define LPFC_MAX_MQ_PAGE 8 |
James Smart | 962bc51 | 2013-01-03 15:44:00 -0500 | [diff] [blame] | 114 | #define LPFC_MAX_WQ_PAGE_V0 4 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 115 | #define LPFC_MAX_WQ_PAGE 8 |
James Smart | 895427b | 2017-02-12 13:52:30 -0800 | [diff] [blame] | 116 | #define LPFC_MAX_RQ_PAGE 8 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 117 | #define LPFC_MAX_CQ_PAGE 4 |
| 118 | #define LPFC_MAX_EQ_PAGE 8 |
| 119 | |
| 120 | #define LPFC_VIR_FUNC_MAX 32 /* Maximum number of virtual functions */ |
| 121 | #define LPFC_PCI_FUNC_MAX 5 /* Maximum number of PCI functions */ |
| 122 | #define LPFC_VFR_PAGE_SIZE 0x1000 /* 4KB BAR2 per-VF register page size */ |
| 123 | |
| 124 | /* Define SLI4 Alignment requirements. */ |
| 125 | #define LPFC_ALIGN_16_BYTE 16 |
| 126 | #define LPFC_ALIGN_64_BYTE 64 |
| 127 | |
| 128 | /* Define SLI4 specific definitions. */ |
| 129 | #define LPFC_MQ_CQE_BYTE_OFFSET 256 |
| 130 | #define LPFC_MBX_CMD_HDR_LENGTH 16 |
| 131 | #define LPFC_MBX_ERROR_RANGE 0x4000 |
| 132 | #define LPFC_BMBX_BIT1_ADDR_HI 0x2 |
| 133 | #define LPFC_BMBX_BIT1_ADDR_LO 0 |
| 134 | #define LPFC_RPI_HDR_COUNT 64 |
| 135 | #define LPFC_HDR_TEMPLATE_SIZE 4096 |
| 136 | #define LPFC_RPI_ALLOC_ERROR 0xFFFF |
| 137 | #define LPFC_FCF_RECORD_WD_CNT 132 |
| 138 | #define LPFC_ENTIRE_FCF_DATABASE 0 |
| 139 | #define LPFC_DFLT_FCF_INDEX 0 |
| 140 | |
| 141 | /* Virtual function numbers */ |
| 142 | #define LPFC_VF0 0 |
| 143 | #define LPFC_VF1 1 |
| 144 | #define LPFC_VF2 2 |
| 145 | #define LPFC_VF3 3 |
| 146 | #define LPFC_VF4 4 |
| 147 | #define LPFC_VF5 5 |
| 148 | #define LPFC_VF6 6 |
| 149 | #define LPFC_VF7 7 |
| 150 | #define LPFC_VF8 8 |
| 151 | #define LPFC_VF9 9 |
| 152 | #define LPFC_VF10 10 |
| 153 | #define LPFC_VF11 11 |
| 154 | #define LPFC_VF12 12 |
| 155 | #define LPFC_VF13 13 |
| 156 | #define LPFC_VF14 14 |
| 157 | #define LPFC_VF15 15 |
| 158 | #define LPFC_VF16 16 |
| 159 | #define LPFC_VF17 17 |
| 160 | #define LPFC_VF18 18 |
| 161 | #define LPFC_VF19 19 |
| 162 | #define LPFC_VF20 20 |
| 163 | #define LPFC_VF21 21 |
| 164 | #define LPFC_VF22 22 |
| 165 | #define LPFC_VF23 23 |
| 166 | #define LPFC_VF24 24 |
| 167 | #define LPFC_VF25 25 |
| 168 | #define LPFC_VF26 26 |
| 169 | #define LPFC_VF27 27 |
| 170 | #define LPFC_VF28 28 |
| 171 | #define LPFC_VF29 29 |
| 172 | #define LPFC_VF30 30 |
| 173 | #define LPFC_VF31 31 |
| 174 | |
| 175 | /* PCI function numbers */ |
| 176 | #define LPFC_PCI_FUNC0 0 |
| 177 | #define LPFC_PCI_FUNC1 1 |
| 178 | #define LPFC_PCI_FUNC2 2 |
| 179 | #define LPFC_PCI_FUNC3 3 |
| 180 | #define LPFC_PCI_FUNC4 4 |
| 181 | |
James Smart | 88a2cfb | 2011-07-22 18:36:33 -0400 | [diff] [blame] | 182 | /* SLI4 interface type-2 PDEV_CTL register */ |
James Smart | c0c1151 | 2011-05-24 11:41:34 -0400 | [diff] [blame] | 183 | #define LPFC_CTL_PDEV_CTL_OFFSET 0x414 |
James Smart | c0c1151 | 2011-05-24 11:41:34 -0400 | [diff] [blame] | 184 | #define LPFC_CTL_PDEV_CTL_DRST 0x00000001 |
| 185 | #define LPFC_CTL_PDEV_CTL_FRST 0x00000002 |
| 186 | #define LPFC_CTL_PDEV_CTL_DD 0x00000004 |
| 187 | #define LPFC_CTL_PDEV_CTL_LC 0x00000008 |
| 188 | #define LPFC_CTL_PDEV_CTL_FRL_ALL 0x00 |
| 189 | #define LPFC_CTL_PDEV_CTL_FRL_FC_FCOE 0x10 |
| 190 | #define LPFC_CTL_PDEV_CTL_FRL_NIC 0x20 |
James Smart | d2cc9bc | 2018-09-10 10:30:50 -0700 | [diff] [blame] | 191 | #define LPFC_CTL_PDEV_CTL_DDL_RAS 0x1000000 |
James Smart | c0c1151 | 2011-05-24 11:41:34 -0400 | [diff] [blame] | 192 | |
| 193 | #define LPFC_FW_DUMP_REQUEST (LPFC_CTL_PDEV_CTL_DD | LPFC_CTL_PDEV_CTL_FRST) |
| 194 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 195 | /* Active interrupt test count */ |
| 196 | #define LPFC_ACT_INTR_CNT 4 |
| 197 | |
James Smart | 49aa143 | 2012-08-03 12:36:42 -0400 | [diff] [blame] | 198 | /* Algrithmns for scheduling FCP commands to WQs */ |
James Smart | 45aa312 | 2019-01-28 11:14:29 -0800 | [diff] [blame] | 199 | #define LPFC_FCP_SCHED_BY_HDWQ 0 |
James Smart | 49aa143 | 2012-08-03 12:36:42 -0400 | [diff] [blame] | 200 | #define LPFC_FCP_SCHED_BY_CPU 1 |
| 201 | |
James Smart | 7ea92eb | 2018-10-23 13:41:10 -0700 | [diff] [blame] | 202 | /* Algrithmns for NameServer Query after RSCN */ |
| 203 | #define LPFC_NS_QUERY_GID_FT 0 |
| 204 | #define LPFC_NS_QUERY_GID_PT 1 |
| 205 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 206 | /* Delay Multiplier constant */ |
| 207 | #define LPFC_DMULT_CONST 651042 |
James Smart | 0cf07f84 | 2017-06-01 21:07:10 -0700 | [diff] [blame] | 208 | #define LPFC_DMULT_MAX 1023 |
James Smart | bf8dae8 | 2012-08-03 12:36:24 -0400 | [diff] [blame] | 209 | |
| 210 | /* Configuration of Interrupts / sec for entire HBA port */ |
| 211 | #define LPFC_MIN_IMAX 5000 |
| 212 | #define LPFC_MAX_IMAX 5000000 |
James Smart | 32517fc | 2019-01-28 11:14:33 -0800 | [diff] [blame] | 213 | #define LPFC_DEF_IMAX 0 |
| 214 | |
James Smart | 32517fc | 2019-01-28 11:14:33 -0800 | [diff] [blame] | 215 | #define LPFC_MAX_AUTO_EQ_DELAY 120 |
| 216 | #define LPFC_EQ_DELAY_STEP 15 |
| 217 | #define LPFC_EQD_ISR_TRIGGER 20000 |
| 218 | /* 1s intervals */ |
| 219 | #define LPFC_EQ_DELAY_MSECS 1000 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 220 | |
James Smart | 7bb03bb | 2013-04-17 20:19:16 -0400 | [diff] [blame] | 221 | #define LPFC_MIN_CPU_MAP 0 |
James Smart | 6a828b0 | 2019-01-28 11:14:31 -0800 | [diff] [blame] | 222 | #define LPFC_MAX_CPU_MAP 1 |
James Smart | 7bb03bb | 2013-04-17 20:19:16 -0400 | [diff] [blame] | 223 | #define LPFC_HBA_CPU_MAP 1 |
James Smart | 7bb03bb | 2013-04-17 20:19:16 -0400 | [diff] [blame] | 224 | |
James Smart | 28baac7 | 2010-02-12 14:42:03 -0500 | [diff] [blame] | 225 | /* PORT_CAPABILITIES constants. */ |
| 226 | #define LPFC_MAX_SUPPORTED_PAGES 8 |
| 227 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 228 | struct ulp_bde64 { |
| 229 | union ULP_BDE_TUS { |
| 230 | uint32_t w; |
| 231 | struct { |
| 232 | #ifdef __BIG_ENDIAN_BITFIELD |
| 233 | uint32_t bdeFlags:8; /* BDE Flags 0 IS A SUPPORTED |
| 234 | VALUE !! */ |
| 235 | uint32_t bdeSize:24; /* Size of buffer (in bytes) */ |
| 236 | #else /* __LITTLE_ENDIAN_BITFIELD */ |
| 237 | uint32_t bdeSize:24; /* Size of buffer (in bytes) */ |
| 238 | uint32_t bdeFlags:8; /* BDE Flags 0 IS A SUPPORTED |
| 239 | VALUE !! */ |
| 240 | #endif |
| 241 | #define BUFF_TYPE_BDE_64 0x00 /* BDE (Host_resident) */ |
| 242 | #define BUFF_TYPE_BDE_IMMED 0x01 /* Immediate Data BDE */ |
| 243 | #define BUFF_TYPE_BDE_64P 0x02 /* BDE (Port-resident) */ |
| 244 | #define BUFF_TYPE_BDE_64I 0x08 /* Input BDE (Host-resident) */ |
| 245 | #define BUFF_TYPE_BDE_64IP 0x0A /* Input BDE (Port-resident) */ |
| 246 | #define BUFF_TYPE_BLP_64 0x40 /* BLP (Host-resident) */ |
| 247 | #define BUFF_TYPE_BLP_64P 0x42 /* BLP (Port-resident) */ |
| 248 | } f; |
| 249 | } tus; |
| 250 | uint32_t addrLow; |
| 251 | uint32_t addrHigh; |
| 252 | }; |
| 253 | |
James Smart | 0c65187 | 2013-07-15 18:33:23 -0400 | [diff] [blame] | 254 | /* Maximun size of immediate data that can fit into a 128 byte WQE */ |
| 255 | #define LPFC_MAX_BDE_IMM_SIZE 64 |
| 256 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 257 | struct lpfc_sli4_flags { |
| 258 | uint32_t word0; |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 259 | #define lpfc_idx_rsrc_rdy_SHIFT 0 |
| 260 | #define lpfc_idx_rsrc_rdy_MASK 0x00000001 |
| 261 | #define lpfc_idx_rsrc_rdy_WORD word0 |
| 262 | #define LPFC_IDX_RSRC_RDY 1 |
James Smart | 8a9d2e8 | 2012-05-09 21:16:12 -0400 | [diff] [blame] | 263 | #define lpfc_rpi_rsrc_rdy_SHIFT 1 |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 264 | #define lpfc_rpi_rsrc_rdy_MASK 0x00000001 |
| 265 | #define lpfc_rpi_rsrc_rdy_WORD word0 |
| 266 | #define LPFC_RPI_RSRC_RDY 1 |
James Smart | 8a9d2e8 | 2012-05-09 21:16:12 -0400 | [diff] [blame] | 267 | #define lpfc_vpi_rsrc_rdy_SHIFT 2 |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 268 | #define lpfc_vpi_rsrc_rdy_MASK 0x00000001 |
| 269 | #define lpfc_vpi_rsrc_rdy_WORD word0 |
| 270 | #define LPFC_VPI_RSRC_RDY 1 |
James Smart | 8a9d2e8 | 2012-05-09 21:16:12 -0400 | [diff] [blame] | 271 | #define lpfc_vfi_rsrc_rdy_SHIFT 3 |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 272 | #define lpfc_vfi_rsrc_rdy_MASK 0x00000001 |
| 273 | #define lpfc_vfi_rsrc_rdy_WORD word0 |
| 274 | #define LPFC_VFI_RSRC_RDY 1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 275 | }; |
| 276 | |
James Smart | 546fc85 | 2011-03-11 16:06:29 -0500 | [diff] [blame] | 277 | struct sli4_bls_rsp { |
James Smart | 5ffc266 | 2009-11-18 15:39:44 -0500 | [diff] [blame] | 278 | uint32_t word0_rsvd; /* Word0 must be reserved */ |
| 279 | uint32_t word1; |
| 280 | #define lpfc_abts_orig_SHIFT 0 |
| 281 | #define lpfc_abts_orig_MASK 0x00000001 |
| 282 | #define lpfc_abts_orig_WORD word1 |
| 283 | #define LPFC_ABTS_UNSOL_RSP 1 |
| 284 | #define LPFC_ABTS_UNSOL_INT 0 |
| 285 | uint32_t word2; |
| 286 | #define lpfc_abts_rxid_SHIFT 0 |
| 287 | #define lpfc_abts_rxid_MASK 0x0000FFFF |
| 288 | #define lpfc_abts_rxid_WORD word2 |
| 289 | #define lpfc_abts_oxid_SHIFT 16 |
| 290 | #define lpfc_abts_oxid_MASK 0x0000FFFF |
| 291 | #define lpfc_abts_oxid_WORD word2 |
| 292 | uint32_t word3; |
James Smart | 546fc85 | 2011-03-11 16:06:29 -0500 | [diff] [blame] | 293 | #define lpfc_vndr_code_SHIFT 0 |
| 294 | #define lpfc_vndr_code_MASK 0x000000FF |
| 295 | #define lpfc_vndr_code_WORD word3 |
| 296 | #define lpfc_rsn_expln_SHIFT 8 |
| 297 | #define lpfc_rsn_expln_MASK 0x000000FF |
| 298 | #define lpfc_rsn_expln_WORD word3 |
| 299 | #define lpfc_rsn_code_SHIFT 16 |
| 300 | #define lpfc_rsn_code_MASK 0x000000FF |
| 301 | #define lpfc_rsn_code_WORD word3 |
| 302 | |
James Smart | 5ffc266 | 2009-11-18 15:39:44 -0500 | [diff] [blame] | 303 | uint32_t word4; |
| 304 | uint32_t word5_rsvd; /* Word5 must be reserved */ |
| 305 | }; |
| 306 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 307 | /* event queue entry structure */ |
| 308 | struct lpfc_eqe { |
| 309 | uint32_t word0; |
| 310 | #define lpfc_eqe_resource_id_SHIFT 16 |
James Smart | 16f3b48 | 2015-05-22 10:42:40 -0400 | [diff] [blame] | 311 | #define lpfc_eqe_resource_id_MASK 0x0000FFFF |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 312 | #define lpfc_eqe_resource_id_WORD word0 |
| 313 | #define lpfc_eqe_minor_code_SHIFT 4 |
| 314 | #define lpfc_eqe_minor_code_MASK 0x00000FFF |
| 315 | #define lpfc_eqe_minor_code_WORD word0 |
| 316 | #define lpfc_eqe_major_code_SHIFT 1 |
| 317 | #define lpfc_eqe_major_code_MASK 0x00000007 |
| 318 | #define lpfc_eqe_major_code_WORD word0 |
| 319 | #define lpfc_eqe_valid_SHIFT 0 |
| 320 | #define lpfc_eqe_valid_MASK 0x00000001 |
| 321 | #define lpfc_eqe_valid_WORD word0 |
| 322 | }; |
| 323 | |
| 324 | /* completion queue entry structure (common fields for all cqe types) */ |
| 325 | struct lpfc_cqe { |
| 326 | uint32_t reserved0; |
| 327 | uint32_t reserved1; |
| 328 | uint32_t reserved2; |
| 329 | uint32_t word3; |
| 330 | #define lpfc_cqe_valid_SHIFT 31 |
| 331 | #define lpfc_cqe_valid_MASK 0x00000001 |
| 332 | #define lpfc_cqe_valid_WORD word3 |
| 333 | #define lpfc_cqe_code_SHIFT 16 |
| 334 | #define lpfc_cqe_code_MASK 0x000000FF |
| 335 | #define lpfc_cqe_code_WORD word3 |
| 336 | }; |
| 337 | |
| 338 | /* Completion Queue Entry Status Codes */ |
| 339 | #define CQE_STATUS_SUCCESS 0x0 |
| 340 | #define CQE_STATUS_FCP_RSP_FAILURE 0x1 |
| 341 | #define CQE_STATUS_REMOTE_STOP 0x2 |
| 342 | #define CQE_STATUS_LOCAL_REJECT 0x3 |
| 343 | #define CQE_STATUS_NPORT_RJT 0x4 |
| 344 | #define CQE_STATUS_FABRIC_RJT 0x5 |
| 345 | #define CQE_STATUS_NPORT_BSY 0x6 |
| 346 | #define CQE_STATUS_FABRIC_BSY 0x7 |
| 347 | #define CQE_STATUS_INTERMED_RSP 0x8 |
| 348 | #define CQE_STATUS_LS_RJT 0x9 |
| 349 | #define CQE_STATUS_CMD_REJECT 0xb |
| 350 | #define CQE_STATUS_FCP_TGT_LENCHECK 0xc |
| 351 | #define CQE_STATUS_NEED_BUFF_ENTRY 0xf |
James Smart | acd6859 | 2012-01-18 16:25:09 -0500 | [diff] [blame] | 352 | #define CQE_STATUS_DI_ERROR 0x16 |
| 353 | |
| 354 | /* Used when mapping CQE status to IOCB */ |
| 355 | #define LPFC_IOCB_STATUS_MASK 0xf |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 356 | |
| 357 | /* Status returned by hardware (valid only if status = CQE_STATUS_SUCCESS). */ |
| 358 | #define CQE_HW_STATUS_NO_ERR 0x0 |
| 359 | #define CQE_HW_STATUS_UNDERRUN 0x1 |
| 360 | #define CQE_HW_STATUS_OVERRUN 0x2 |
| 361 | |
| 362 | /* Completion Queue Entry Codes */ |
| 363 | #define CQE_CODE_COMPL_WQE 0x1 |
| 364 | #define CQE_CODE_RELEASE_WQE 0x2 |
| 365 | #define CQE_CODE_RECEIVE 0x4 |
| 366 | #define CQE_CODE_XRI_ABORTED 0x5 |
James Smart | 7851fe2 | 2011-07-22 18:36:52 -0400 | [diff] [blame] | 367 | #define CQE_CODE_RECEIVE_V1 0x9 |
James Smart | 895427b | 2017-02-12 13:52:30 -0800 | [diff] [blame] | 368 | #define CQE_CODE_NVME_ERSP 0xd |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 369 | |
James Smart | 5c1db2a | 2012-03-01 22:34:36 -0500 | [diff] [blame] | 370 | /* |
| 371 | * Define mask value for xri_aborted and wcqe completed CQE extended status. |
| 372 | * Currently, extended status is limited to 9 bits (0x0 -> 0x103) . |
| 373 | */ |
James Smart | e3d2b80 | 2012-08-14 14:25:43 -0400 | [diff] [blame] | 374 | #define WCQE_PARAM_MASK 0x1FF |
James Smart | 5c1db2a | 2012-03-01 22:34:36 -0500 | [diff] [blame] | 375 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 376 | /* completion queue entry for wqe completions */ |
| 377 | struct lpfc_wcqe_complete { |
| 378 | uint32_t word0; |
| 379 | #define lpfc_wcqe_c_request_tag_SHIFT 16 |
| 380 | #define lpfc_wcqe_c_request_tag_MASK 0x0000FFFF |
| 381 | #define lpfc_wcqe_c_request_tag_WORD word0 |
| 382 | #define lpfc_wcqe_c_status_SHIFT 8 |
| 383 | #define lpfc_wcqe_c_status_MASK 0x000000FF |
| 384 | #define lpfc_wcqe_c_status_WORD word0 |
| 385 | #define lpfc_wcqe_c_hw_status_SHIFT 0 |
| 386 | #define lpfc_wcqe_c_hw_status_MASK 0x000000FF |
| 387 | #define lpfc_wcqe_c_hw_status_WORD word0 |
James Smart | 895427b | 2017-02-12 13:52:30 -0800 | [diff] [blame] | 388 | #define lpfc_wcqe_c_ersp0_SHIFT 0 |
| 389 | #define lpfc_wcqe_c_ersp0_MASK 0x0000FFFF |
| 390 | #define lpfc_wcqe_c_ersp0_WORD word0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 391 | uint32_t total_data_placed; |
| 392 | uint32_t parameter; |
James Smart | acd6859 | 2012-01-18 16:25:09 -0500 | [diff] [blame] | 393 | #define lpfc_wcqe_c_bg_edir_SHIFT 5 |
| 394 | #define lpfc_wcqe_c_bg_edir_MASK 0x00000001 |
| 395 | #define lpfc_wcqe_c_bg_edir_WORD parameter |
| 396 | #define lpfc_wcqe_c_bg_tdpv_SHIFT 3 |
| 397 | #define lpfc_wcqe_c_bg_tdpv_MASK 0x00000001 |
| 398 | #define lpfc_wcqe_c_bg_tdpv_WORD parameter |
| 399 | #define lpfc_wcqe_c_bg_re_SHIFT 2 |
| 400 | #define lpfc_wcqe_c_bg_re_MASK 0x00000001 |
| 401 | #define lpfc_wcqe_c_bg_re_WORD parameter |
| 402 | #define lpfc_wcqe_c_bg_ae_SHIFT 1 |
| 403 | #define lpfc_wcqe_c_bg_ae_MASK 0x00000001 |
| 404 | #define lpfc_wcqe_c_bg_ae_WORD parameter |
| 405 | #define lpfc_wcqe_c_bg_ge_SHIFT 0 |
| 406 | #define lpfc_wcqe_c_bg_ge_MASK 0x00000001 |
| 407 | #define lpfc_wcqe_c_bg_ge_WORD parameter |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 408 | uint32_t word3; |
| 409 | #define lpfc_wcqe_c_valid_SHIFT lpfc_cqe_valid_SHIFT |
| 410 | #define lpfc_wcqe_c_valid_MASK lpfc_cqe_valid_MASK |
| 411 | #define lpfc_wcqe_c_valid_WORD lpfc_cqe_valid_WORD |
| 412 | #define lpfc_wcqe_c_xb_SHIFT 28 |
| 413 | #define lpfc_wcqe_c_xb_MASK 0x00000001 |
| 414 | #define lpfc_wcqe_c_xb_WORD word3 |
| 415 | #define lpfc_wcqe_c_pv_SHIFT 27 |
| 416 | #define lpfc_wcqe_c_pv_MASK 0x00000001 |
| 417 | #define lpfc_wcqe_c_pv_WORD word3 |
| 418 | #define lpfc_wcqe_c_priority_SHIFT 24 |
James Smart | acd6859 | 2012-01-18 16:25:09 -0500 | [diff] [blame] | 419 | #define lpfc_wcqe_c_priority_MASK 0x00000007 |
| 420 | #define lpfc_wcqe_c_priority_WORD word3 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 421 | #define lpfc_wcqe_c_code_SHIFT lpfc_cqe_code_SHIFT |
| 422 | #define lpfc_wcqe_c_code_MASK lpfc_cqe_code_MASK |
| 423 | #define lpfc_wcqe_c_code_WORD lpfc_cqe_code_WORD |
James Smart | 895427b | 2017-02-12 13:52:30 -0800 | [diff] [blame] | 424 | #define lpfc_wcqe_c_sqhead_SHIFT 0 |
| 425 | #define lpfc_wcqe_c_sqhead_MASK 0x0000FFFF |
| 426 | #define lpfc_wcqe_c_sqhead_WORD word3 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 427 | }; |
| 428 | |
| 429 | /* completion queue entry for wqe release */ |
| 430 | struct lpfc_wcqe_release { |
| 431 | uint32_t reserved0; |
| 432 | uint32_t reserved1; |
| 433 | uint32_t word2; |
| 434 | #define lpfc_wcqe_r_wq_id_SHIFT 16 |
| 435 | #define lpfc_wcqe_r_wq_id_MASK 0x0000FFFF |
| 436 | #define lpfc_wcqe_r_wq_id_WORD word2 |
| 437 | #define lpfc_wcqe_r_wqe_index_SHIFT 0 |
| 438 | #define lpfc_wcqe_r_wqe_index_MASK 0x0000FFFF |
| 439 | #define lpfc_wcqe_r_wqe_index_WORD word2 |
| 440 | uint32_t word3; |
| 441 | #define lpfc_wcqe_r_valid_SHIFT lpfc_cqe_valid_SHIFT |
| 442 | #define lpfc_wcqe_r_valid_MASK lpfc_cqe_valid_MASK |
| 443 | #define lpfc_wcqe_r_valid_WORD lpfc_cqe_valid_WORD |
| 444 | #define lpfc_wcqe_r_code_SHIFT lpfc_cqe_code_SHIFT |
| 445 | #define lpfc_wcqe_r_code_MASK lpfc_cqe_code_MASK |
| 446 | #define lpfc_wcqe_r_code_WORD lpfc_cqe_code_WORD |
| 447 | }; |
| 448 | |
| 449 | struct sli4_wcqe_xri_aborted { |
| 450 | uint32_t word0; |
| 451 | #define lpfc_wcqe_xa_status_SHIFT 8 |
| 452 | #define lpfc_wcqe_xa_status_MASK 0x000000FF |
| 453 | #define lpfc_wcqe_xa_status_WORD word0 |
| 454 | uint32_t parameter; |
| 455 | uint32_t word2; |
| 456 | #define lpfc_wcqe_xa_remote_xid_SHIFT 16 |
| 457 | #define lpfc_wcqe_xa_remote_xid_MASK 0x0000FFFF |
| 458 | #define lpfc_wcqe_xa_remote_xid_WORD word2 |
| 459 | #define lpfc_wcqe_xa_xri_SHIFT 0 |
| 460 | #define lpfc_wcqe_xa_xri_MASK 0x0000FFFF |
| 461 | #define lpfc_wcqe_xa_xri_WORD word2 |
| 462 | uint32_t word3; |
| 463 | #define lpfc_wcqe_xa_valid_SHIFT lpfc_cqe_valid_SHIFT |
| 464 | #define lpfc_wcqe_xa_valid_MASK lpfc_cqe_valid_MASK |
| 465 | #define lpfc_wcqe_xa_valid_WORD lpfc_cqe_valid_WORD |
| 466 | #define lpfc_wcqe_xa_ia_SHIFT 30 |
| 467 | #define lpfc_wcqe_xa_ia_MASK 0x00000001 |
| 468 | #define lpfc_wcqe_xa_ia_WORD word3 |
| 469 | #define CQE_XRI_ABORTED_IA_REMOTE 0 |
| 470 | #define CQE_XRI_ABORTED_IA_LOCAL 1 |
| 471 | #define lpfc_wcqe_xa_br_SHIFT 29 |
| 472 | #define lpfc_wcqe_xa_br_MASK 0x00000001 |
| 473 | #define lpfc_wcqe_xa_br_WORD word3 |
| 474 | #define CQE_XRI_ABORTED_BR_BA_ACC 0 |
| 475 | #define CQE_XRI_ABORTED_BR_BA_RJT 1 |
| 476 | #define lpfc_wcqe_xa_eo_SHIFT 28 |
| 477 | #define lpfc_wcqe_xa_eo_MASK 0x00000001 |
| 478 | #define lpfc_wcqe_xa_eo_WORD word3 |
| 479 | #define CQE_XRI_ABORTED_EO_REMOTE 0 |
| 480 | #define CQE_XRI_ABORTED_EO_LOCAL 1 |
| 481 | #define lpfc_wcqe_xa_code_SHIFT lpfc_cqe_code_SHIFT |
| 482 | #define lpfc_wcqe_xa_code_MASK lpfc_cqe_code_MASK |
| 483 | #define lpfc_wcqe_xa_code_WORD lpfc_cqe_code_WORD |
| 484 | }; |
| 485 | |
| 486 | /* completion queue entry structure for rqe completion */ |
| 487 | struct lpfc_rcqe { |
| 488 | uint32_t word0; |
| 489 | #define lpfc_rcqe_bindex_SHIFT 16 |
| 490 | #define lpfc_rcqe_bindex_MASK 0x0000FFF |
| 491 | #define lpfc_rcqe_bindex_WORD word0 |
| 492 | #define lpfc_rcqe_status_SHIFT 8 |
| 493 | #define lpfc_rcqe_status_MASK 0x000000FF |
| 494 | #define lpfc_rcqe_status_WORD word0 |
| 495 | #define FC_STATUS_RQ_SUCCESS 0x10 /* Async receive successful */ |
| 496 | #define FC_STATUS_RQ_BUF_LEN_EXCEEDED 0x11 /* payload truncated */ |
| 497 | #define FC_STATUS_INSUFF_BUF_NEED_BUF 0x12 /* Insufficient buffers */ |
| 498 | #define FC_STATUS_INSUFF_BUF_FRM_DISC 0x13 /* Frame Discard */ |
James Smart | 7851fe2 | 2011-07-22 18:36:52 -0400 | [diff] [blame] | 499 | uint32_t word1; |
| 500 | #define lpfc_rcqe_fcf_id_v1_SHIFT 0 |
| 501 | #define lpfc_rcqe_fcf_id_v1_MASK 0x0000003F |
| 502 | #define lpfc_rcqe_fcf_id_v1_WORD word1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 503 | uint32_t word2; |
| 504 | #define lpfc_rcqe_length_SHIFT 16 |
| 505 | #define lpfc_rcqe_length_MASK 0x0000FFFF |
| 506 | #define lpfc_rcqe_length_WORD word2 |
| 507 | #define lpfc_rcqe_rq_id_SHIFT 6 |
| 508 | #define lpfc_rcqe_rq_id_MASK 0x000003FF |
| 509 | #define lpfc_rcqe_rq_id_WORD word2 |
| 510 | #define lpfc_rcqe_fcf_id_SHIFT 0 |
| 511 | #define lpfc_rcqe_fcf_id_MASK 0x0000003F |
| 512 | #define lpfc_rcqe_fcf_id_WORD word2 |
James Smart | 7851fe2 | 2011-07-22 18:36:52 -0400 | [diff] [blame] | 513 | #define lpfc_rcqe_rq_id_v1_SHIFT 0 |
| 514 | #define lpfc_rcqe_rq_id_v1_MASK 0x0000FFFF |
| 515 | #define lpfc_rcqe_rq_id_v1_WORD word2 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 516 | uint32_t word3; |
| 517 | #define lpfc_rcqe_valid_SHIFT lpfc_cqe_valid_SHIFT |
| 518 | #define lpfc_rcqe_valid_MASK lpfc_cqe_valid_MASK |
| 519 | #define lpfc_rcqe_valid_WORD lpfc_cqe_valid_WORD |
| 520 | #define lpfc_rcqe_port_SHIFT 30 |
| 521 | #define lpfc_rcqe_port_MASK 0x00000001 |
| 522 | #define lpfc_rcqe_port_WORD word3 |
| 523 | #define lpfc_rcqe_hdr_length_SHIFT 24 |
| 524 | #define lpfc_rcqe_hdr_length_MASK 0x0000001F |
| 525 | #define lpfc_rcqe_hdr_length_WORD word3 |
| 526 | #define lpfc_rcqe_code_SHIFT lpfc_cqe_code_SHIFT |
| 527 | #define lpfc_rcqe_code_MASK lpfc_cqe_code_MASK |
| 528 | #define lpfc_rcqe_code_WORD lpfc_cqe_code_WORD |
| 529 | #define lpfc_rcqe_eof_SHIFT 8 |
| 530 | #define lpfc_rcqe_eof_MASK 0x000000FF |
| 531 | #define lpfc_rcqe_eof_WORD word3 |
| 532 | #define FCOE_EOFn 0x41 |
| 533 | #define FCOE_EOFt 0x42 |
| 534 | #define FCOE_EOFni 0x49 |
| 535 | #define FCOE_EOFa 0x50 |
| 536 | #define lpfc_rcqe_sof_SHIFT 0 |
| 537 | #define lpfc_rcqe_sof_MASK 0x000000FF |
| 538 | #define lpfc_rcqe_sof_WORD word3 |
| 539 | #define FCOE_SOFi2 0x2d |
| 540 | #define FCOE_SOFi3 0x2e |
| 541 | #define FCOE_SOFn2 0x35 |
| 542 | #define FCOE_SOFn3 0x36 |
| 543 | }; |
| 544 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 545 | struct lpfc_rqe { |
| 546 | uint32_t address_hi; |
| 547 | uint32_t address_lo; |
| 548 | }; |
| 549 | |
| 550 | /* buffer descriptors */ |
| 551 | struct lpfc_bde4 { |
| 552 | uint32_t addr_hi; |
| 553 | uint32_t addr_lo; |
| 554 | uint32_t word2; |
| 555 | #define lpfc_bde4_last_SHIFT 31 |
| 556 | #define lpfc_bde4_last_MASK 0x00000001 |
| 557 | #define lpfc_bde4_last_WORD word2 |
| 558 | #define lpfc_bde4_sge_offset_SHIFT 0 |
| 559 | #define lpfc_bde4_sge_offset_MASK 0x000003FF |
| 560 | #define lpfc_bde4_sge_offset_WORD word2 |
| 561 | uint32_t word3; |
| 562 | #define lpfc_bde4_length_SHIFT 0 |
| 563 | #define lpfc_bde4_length_MASK 0x000000FF |
| 564 | #define lpfc_bde4_length_WORD word3 |
| 565 | }; |
| 566 | |
| 567 | struct lpfc_register { |
| 568 | uint32_t word0; |
| 569 | }; |
| 570 | |
James Smart | 65791f1 | 2016-07-06 12:35:56 -0700 | [diff] [blame] | 571 | #define LPFC_PORT_SEM_UE_RECOVERABLE 0xE000 |
| 572 | #define LPFC_PORT_SEM_MASK 0xF000 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 573 | /* The following BAR0 Registers apply to SLI4 if_type 0 UCNAs. */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 574 | #define LPFC_UERR_STATUS_HI 0x00A4 |
| 575 | #define LPFC_UERR_STATUS_LO 0x00A0 |
James Smart | a747c9c | 2009-11-18 15:41:10 -0500 | [diff] [blame] | 576 | #define LPFC_UE_MASK_HI 0x00AC |
| 577 | #define LPFC_UE_MASK_LO 0x00A8 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 578 | |
James Smart | 2fcee4b | 2010-12-15 17:57:46 -0500 | [diff] [blame] | 579 | /* The following BAR0 register sets are defined for if_type 0 and 2 UCNAs. */ |
| 580 | #define LPFC_SLI_INTF 0x0058 |
James Smart | bf316c7 | 2018-04-09 14:24:28 -0700 | [diff] [blame] | 581 | #define LPFC_SLI_ASIC_VER 0x009C |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 582 | |
James Smart | 88a2cfb | 2011-07-22 18:36:33 -0400 | [diff] [blame] | 583 | #define LPFC_CTL_PORT_SEM_OFFSET 0x400 |
James Smart | 2fcee4b | 2010-12-15 17:57:46 -0500 | [diff] [blame] | 584 | #define lpfc_port_smphr_perr_SHIFT 31 |
| 585 | #define lpfc_port_smphr_perr_MASK 0x1 |
| 586 | #define lpfc_port_smphr_perr_WORD word0 |
| 587 | #define lpfc_port_smphr_sfi_SHIFT 30 |
| 588 | #define lpfc_port_smphr_sfi_MASK 0x1 |
| 589 | #define lpfc_port_smphr_sfi_WORD word0 |
| 590 | #define lpfc_port_smphr_nip_SHIFT 29 |
| 591 | #define lpfc_port_smphr_nip_MASK 0x1 |
| 592 | #define lpfc_port_smphr_nip_WORD word0 |
| 593 | #define lpfc_port_smphr_ipc_SHIFT 28 |
| 594 | #define lpfc_port_smphr_ipc_MASK 0x1 |
| 595 | #define lpfc_port_smphr_ipc_WORD word0 |
| 596 | #define lpfc_port_smphr_scr1_SHIFT 27 |
| 597 | #define lpfc_port_smphr_scr1_MASK 0x1 |
| 598 | #define lpfc_port_smphr_scr1_WORD word0 |
| 599 | #define lpfc_port_smphr_scr2_SHIFT 26 |
| 600 | #define lpfc_port_smphr_scr2_MASK 0x1 |
| 601 | #define lpfc_port_smphr_scr2_WORD word0 |
| 602 | #define lpfc_port_smphr_host_scratch_SHIFT 16 |
| 603 | #define lpfc_port_smphr_host_scratch_MASK 0xFF |
| 604 | #define lpfc_port_smphr_host_scratch_WORD word0 |
| 605 | #define lpfc_port_smphr_port_status_SHIFT 0 |
| 606 | #define lpfc_port_smphr_port_status_MASK 0xFFFF |
| 607 | #define lpfc_port_smphr_port_status_WORD word0 |
| 608 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 609 | #define LPFC_POST_STAGE_POWER_ON_RESET 0x0000 |
| 610 | #define LPFC_POST_STAGE_AWAITING_HOST_RDY 0x0001 |
| 611 | #define LPFC_POST_STAGE_HOST_RDY 0x0002 |
| 612 | #define LPFC_POST_STAGE_BE_RESET 0x0003 |
| 613 | #define LPFC_POST_STAGE_SEEPROM_CS_START 0x0100 |
| 614 | #define LPFC_POST_STAGE_SEEPROM_CS_DONE 0x0101 |
| 615 | #define LPFC_POST_STAGE_DDR_CONFIG_START 0x0200 |
| 616 | #define LPFC_POST_STAGE_DDR_CONFIG_DONE 0x0201 |
| 617 | #define LPFC_POST_STAGE_DDR_CALIBRATE_START 0x0300 |
| 618 | #define LPFC_POST_STAGE_DDR_CALIBRATE_DONE 0x0301 |
| 619 | #define LPFC_POST_STAGE_DDR_TEST_START 0x0400 |
| 620 | #define LPFC_POST_STAGE_DDR_TEST_DONE 0x0401 |
| 621 | #define LPFC_POST_STAGE_REDBOOT_INIT_START 0x0600 |
| 622 | #define LPFC_POST_STAGE_REDBOOT_INIT_DONE 0x0601 |
| 623 | #define LPFC_POST_STAGE_FW_IMAGE_LOAD_START 0x0700 |
| 624 | #define LPFC_POST_STAGE_FW_IMAGE_LOAD_DONE 0x0701 |
| 625 | #define LPFC_POST_STAGE_ARMFW_START 0x0800 |
| 626 | #define LPFC_POST_STAGE_DHCP_QUERY_START 0x0900 |
| 627 | #define LPFC_POST_STAGE_DHCP_QUERY_DONE 0x0901 |
| 628 | #define LPFC_POST_STAGE_BOOT_TARGET_DISCOVERY_START 0x0A00 |
| 629 | #define LPFC_POST_STAGE_BOOT_TARGET_DISCOVERY_DONE 0x0A01 |
| 630 | #define LPFC_POST_STAGE_RC_OPTION_SET 0x0B00 |
| 631 | #define LPFC_POST_STAGE_SWITCH_LINK 0x0B01 |
| 632 | #define LPFC_POST_STAGE_SEND_ICDS_MESSAGE 0x0B02 |
| 633 | #define LPFC_POST_STAGE_PERFROM_TFTP 0x0B03 |
| 634 | #define LPFC_POST_STAGE_PARSE_XML 0x0B04 |
| 635 | #define LPFC_POST_STAGE_DOWNLOAD_IMAGE 0x0B05 |
| 636 | #define LPFC_POST_STAGE_FLASH_IMAGE 0x0B06 |
| 637 | #define LPFC_POST_STAGE_RC_DONE 0x0B07 |
| 638 | #define LPFC_POST_STAGE_REBOOT_SYSTEM 0x0B08 |
| 639 | #define LPFC_POST_STAGE_MAC_ADDRESS 0x0C00 |
James Smart | 2fcee4b | 2010-12-15 17:57:46 -0500 | [diff] [blame] | 640 | #define LPFC_POST_STAGE_PORT_READY 0xC000 |
| 641 | #define LPFC_POST_STAGE_PORT_UE 0xF000 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 642 | |
James Smart | 88a2cfb | 2011-07-22 18:36:33 -0400 | [diff] [blame] | 643 | #define LPFC_CTL_PORT_STA_OFFSET 0x404 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 644 | #define lpfc_sliport_status_err_SHIFT 31 |
| 645 | #define lpfc_sliport_status_err_MASK 0x1 |
| 646 | #define lpfc_sliport_status_err_WORD word0 |
| 647 | #define lpfc_sliport_status_end_SHIFT 30 |
| 648 | #define lpfc_sliport_status_end_MASK 0x1 |
| 649 | #define lpfc_sliport_status_end_WORD word0 |
| 650 | #define lpfc_sliport_status_oti_SHIFT 29 |
| 651 | #define lpfc_sliport_status_oti_MASK 0x1 |
| 652 | #define lpfc_sliport_status_oti_WORD word0 |
| 653 | #define lpfc_sliport_status_rn_SHIFT 24 |
| 654 | #define lpfc_sliport_status_rn_MASK 0x1 |
| 655 | #define lpfc_sliport_status_rn_WORD word0 |
| 656 | #define lpfc_sliport_status_rdy_SHIFT 23 |
| 657 | #define lpfc_sliport_status_rdy_MASK 0x1 |
| 658 | #define lpfc_sliport_status_rdy_WORD word0 |
James Smart | 229adb0 | 2013-04-17 20:16:51 -0400 | [diff] [blame] | 659 | #define MAX_IF_TYPE_2_RESETS 6 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 660 | |
James Smart | 88a2cfb | 2011-07-22 18:36:33 -0400 | [diff] [blame] | 661 | #define LPFC_CTL_PORT_CTL_OFFSET 0x408 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 662 | #define lpfc_sliport_ctrl_end_SHIFT 30 |
| 663 | #define lpfc_sliport_ctrl_end_MASK 0x1 |
| 664 | #define lpfc_sliport_ctrl_end_WORD word0 |
| 665 | #define LPFC_SLIPORT_LITTLE_ENDIAN 0 |
| 666 | #define LPFC_SLIPORT_BIG_ENDIAN 1 |
| 667 | #define lpfc_sliport_ctrl_ip_SHIFT 27 |
| 668 | #define lpfc_sliport_ctrl_ip_MASK 0x1 |
| 669 | #define lpfc_sliport_ctrl_ip_WORD word0 |
James Smart | 2fcee4b | 2010-12-15 17:57:46 -0500 | [diff] [blame] | 670 | #define LPFC_SLIPORT_INIT_PORT 1 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 671 | |
James Smart | 88a2cfb | 2011-07-22 18:36:33 -0400 | [diff] [blame] | 672 | #define LPFC_CTL_PORT_ER1_OFFSET 0x40C |
| 673 | #define LPFC_CTL_PORT_ER2_OFFSET 0x410 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 674 | |
James Smart | 0cf07f84 | 2017-06-01 21:07:10 -0700 | [diff] [blame] | 675 | #define LPFC_CTL_PORT_EQ_DELAY_OFFSET 0x418 |
| 676 | #define lpfc_sliport_eqdelay_delay_SHIFT 16 |
| 677 | #define lpfc_sliport_eqdelay_delay_MASK 0xffff |
| 678 | #define lpfc_sliport_eqdelay_delay_WORD word0 |
| 679 | #define lpfc_sliport_eqdelay_id_SHIFT 0 |
| 680 | #define lpfc_sliport_eqdelay_id_MASK 0xfff |
| 681 | #define lpfc_sliport_eqdelay_id_WORD word0 |
| 682 | #define LPFC_SEC_TO_USEC 1000000 |
| 683 | |
James Smart | 2fcee4b | 2010-12-15 17:57:46 -0500 | [diff] [blame] | 684 | /* The following Registers apply to SLI4 if_type 0 UCNAs. They typically |
| 685 | * reside in BAR 2. |
| 686 | */ |
| 687 | #define LPFC_SLIPORT_IF0_SMPHR 0x00AC |
| 688 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 689 | #define LPFC_IMR_MASK_ALL 0xFFFFFFFF |
| 690 | #define LPFC_ISCR_CLEAR_ALL 0xFFFFFFFF |
| 691 | |
| 692 | #define LPFC_HST_ISR0 0x0C18 |
| 693 | #define LPFC_HST_ISR1 0x0C1C |
| 694 | #define LPFC_HST_ISR2 0x0C20 |
| 695 | #define LPFC_HST_ISR3 0x0C24 |
| 696 | #define LPFC_HST_ISR4 0x0C28 |
| 697 | |
| 698 | #define LPFC_HST_IMR0 0x0C48 |
| 699 | #define LPFC_HST_IMR1 0x0C4C |
| 700 | #define LPFC_HST_IMR2 0x0C50 |
| 701 | #define LPFC_HST_IMR3 0x0C54 |
| 702 | #define LPFC_HST_IMR4 0x0C58 |
| 703 | |
| 704 | #define LPFC_HST_ISCR0 0x0C78 |
| 705 | #define LPFC_HST_ISCR1 0x0C7C |
| 706 | #define LPFC_HST_ISCR2 0x0C80 |
| 707 | #define LPFC_HST_ISCR3 0x0C84 |
| 708 | #define LPFC_HST_ISCR4 0x0C88 |
| 709 | |
| 710 | #define LPFC_SLI4_INTR0 BIT0 |
| 711 | #define LPFC_SLI4_INTR1 BIT1 |
| 712 | #define LPFC_SLI4_INTR2 BIT2 |
| 713 | #define LPFC_SLI4_INTR3 BIT3 |
| 714 | #define LPFC_SLI4_INTR4 BIT4 |
| 715 | #define LPFC_SLI4_INTR5 BIT5 |
| 716 | #define LPFC_SLI4_INTR6 BIT6 |
| 717 | #define LPFC_SLI4_INTR7 BIT7 |
| 718 | #define LPFC_SLI4_INTR8 BIT8 |
| 719 | #define LPFC_SLI4_INTR9 BIT9 |
| 720 | #define LPFC_SLI4_INTR10 BIT10 |
| 721 | #define LPFC_SLI4_INTR11 BIT11 |
| 722 | #define LPFC_SLI4_INTR12 BIT12 |
| 723 | #define LPFC_SLI4_INTR13 BIT13 |
| 724 | #define LPFC_SLI4_INTR14 BIT14 |
| 725 | #define LPFC_SLI4_INTR15 BIT15 |
| 726 | #define LPFC_SLI4_INTR16 BIT16 |
| 727 | #define LPFC_SLI4_INTR17 BIT17 |
| 728 | #define LPFC_SLI4_INTR18 BIT18 |
| 729 | #define LPFC_SLI4_INTR19 BIT19 |
| 730 | #define LPFC_SLI4_INTR20 BIT20 |
| 731 | #define LPFC_SLI4_INTR21 BIT21 |
| 732 | #define LPFC_SLI4_INTR22 BIT22 |
| 733 | #define LPFC_SLI4_INTR23 BIT23 |
| 734 | #define LPFC_SLI4_INTR24 BIT24 |
| 735 | #define LPFC_SLI4_INTR25 BIT25 |
| 736 | #define LPFC_SLI4_INTR26 BIT26 |
| 737 | #define LPFC_SLI4_INTR27 BIT27 |
| 738 | #define LPFC_SLI4_INTR28 BIT28 |
| 739 | #define LPFC_SLI4_INTR29 BIT29 |
| 740 | #define LPFC_SLI4_INTR30 BIT30 |
| 741 | #define LPFC_SLI4_INTR31 BIT31 |
| 742 | |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 743 | /* |
| 744 | * The Doorbell registers defined here exist in different BAR |
| 745 | * register sets depending on the UCNA Port's reported if_type |
| 746 | * value. For UCNA ports running SLI4 and if_type 0, they reside in |
James Smart | 2fcee4b | 2010-12-15 17:57:46 -0500 | [diff] [blame] | 747 | * BAR4. For UCNA ports running SLI4 and if_type 2, they reside in |
James Smart | 27d6ac0 | 2018-02-22 08:18:42 -0800 | [diff] [blame] | 748 | * BAR0. For FC ports running SLI4 and if_type 6, they reside in |
| 749 | * BAR2. The offsets and base address are different, so the driver |
| 750 | * has to compute the register addresses accordingly |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 751 | */ |
James Smart | 962bc51 | 2013-01-03 15:44:00 -0500 | [diff] [blame] | 752 | #define LPFC_ULP0_RQ_DOORBELL 0x00A0 |
| 753 | #define LPFC_ULP1_RQ_DOORBELL 0x00C0 |
James Smart | 27d6ac0 | 2018-02-22 08:18:42 -0800 | [diff] [blame] | 754 | #define LPFC_IF6_RQ_DOORBELL 0x0080 |
James Smart | 962bc51 | 2013-01-03 15:44:00 -0500 | [diff] [blame] | 755 | #define lpfc_rq_db_list_fm_num_posted_SHIFT 24 |
| 756 | #define lpfc_rq_db_list_fm_num_posted_MASK 0x00FF |
| 757 | #define lpfc_rq_db_list_fm_num_posted_WORD word0 |
| 758 | #define lpfc_rq_db_list_fm_index_SHIFT 16 |
| 759 | #define lpfc_rq_db_list_fm_index_MASK 0x00FF |
| 760 | #define lpfc_rq_db_list_fm_index_WORD word0 |
| 761 | #define lpfc_rq_db_list_fm_id_SHIFT 0 |
| 762 | #define lpfc_rq_db_list_fm_id_MASK 0xFFFF |
| 763 | #define lpfc_rq_db_list_fm_id_WORD word0 |
| 764 | #define lpfc_rq_db_ring_fm_num_posted_SHIFT 16 |
| 765 | #define lpfc_rq_db_ring_fm_num_posted_MASK 0x3FFF |
| 766 | #define lpfc_rq_db_ring_fm_num_posted_WORD word0 |
| 767 | #define lpfc_rq_db_ring_fm_id_SHIFT 0 |
| 768 | #define lpfc_rq_db_ring_fm_id_MASK 0xFFFF |
| 769 | #define lpfc_rq_db_ring_fm_id_WORD word0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 770 | |
James Smart | 962bc51 | 2013-01-03 15:44:00 -0500 | [diff] [blame] | 771 | #define LPFC_ULP0_WQ_DOORBELL 0x0040 |
| 772 | #define LPFC_ULP1_WQ_DOORBELL 0x0060 |
| 773 | #define lpfc_wq_db_list_fm_num_posted_SHIFT 24 |
| 774 | #define lpfc_wq_db_list_fm_num_posted_MASK 0x00FF |
| 775 | #define lpfc_wq_db_list_fm_num_posted_WORD word0 |
| 776 | #define lpfc_wq_db_list_fm_index_SHIFT 16 |
| 777 | #define lpfc_wq_db_list_fm_index_MASK 0x00FF |
| 778 | #define lpfc_wq_db_list_fm_index_WORD word0 |
| 779 | #define lpfc_wq_db_list_fm_id_SHIFT 0 |
| 780 | #define lpfc_wq_db_list_fm_id_MASK 0xFFFF |
| 781 | #define lpfc_wq_db_list_fm_id_WORD word0 |
| 782 | #define lpfc_wq_db_ring_fm_num_posted_SHIFT 16 |
| 783 | #define lpfc_wq_db_ring_fm_num_posted_MASK 0x3FFF |
| 784 | #define lpfc_wq_db_ring_fm_num_posted_WORD word0 |
| 785 | #define lpfc_wq_db_ring_fm_id_SHIFT 0 |
| 786 | #define lpfc_wq_db_ring_fm_id_MASK 0xFFFF |
| 787 | #define lpfc_wq_db_ring_fm_id_WORD word0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 788 | |
James Smart | 27d6ac0 | 2018-02-22 08:18:42 -0800 | [diff] [blame] | 789 | #define LPFC_IF6_WQ_DOORBELL 0x0040 |
| 790 | #define lpfc_if6_wq_db_list_fm_num_posted_SHIFT 24 |
| 791 | #define lpfc_if6_wq_db_list_fm_num_posted_MASK 0x00FF |
| 792 | #define lpfc_if6_wq_db_list_fm_num_posted_WORD word0 |
| 793 | #define lpfc_if6_wq_db_list_fm_dpp_SHIFT 23 |
| 794 | #define lpfc_if6_wq_db_list_fm_dpp_MASK 0x0001 |
| 795 | #define lpfc_if6_wq_db_list_fm_dpp_WORD word0 |
| 796 | #define lpfc_if6_wq_db_list_fm_dpp_id_SHIFT 16 |
| 797 | #define lpfc_if6_wq_db_list_fm_dpp_id_MASK 0x001F |
| 798 | #define lpfc_if6_wq_db_list_fm_dpp_id_WORD word0 |
| 799 | #define lpfc_if6_wq_db_list_fm_id_SHIFT 0 |
| 800 | #define lpfc_if6_wq_db_list_fm_id_MASK 0xFFFF |
| 801 | #define lpfc_if6_wq_db_list_fm_id_WORD word0 |
| 802 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 803 | #define LPFC_EQCQ_DOORBELL 0x0120 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 804 | #define lpfc_eqcq_doorbell_se_SHIFT 31 |
| 805 | #define lpfc_eqcq_doorbell_se_MASK 0x0001 |
| 806 | #define lpfc_eqcq_doorbell_se_WORD word0 |
| 807 | #define LPFC_EQCQ_SOLICIT_ENABLE_OFF 0 |
| 808 | #define LPFC_EQCQ_SOLICIT_ENABLE_ON 1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 809 | #define lpfc_eqcq_doorbell_arm_SHIFT 29 |
| 810 | #define lpfc_eqcq_doorbell_arm_MASK 0x0001 |
| 811 | #define lpfc_eqcq_doorbell_arm_WORD word0 |
| 812 | #define lpfc_eqcq_doorbell_num_released_SHIFT 16 |
| 813 | #define lpfc_eqcq_doorbell_num_released_MASK 0x1FFF |
| 814 | #define lpfc_eqcq_doorbell_num_released_WORD word0 |
| 815 | #define lpfc_eqcq_doorbell_qt_SHIFT 10 |
| 816 | #define lpfc_eqcq_doorbell_qt_MASK 0x0001 |
| 817 | #define lpfc_eqcq_doorbell_qt_WORD word0 |
| 818 | #define LPFC_QUEUE_TYPE_COMPLETION 0 |
| 819 | #define LPFC_QUEUE_TYPE_EVENT 1 |
| 820 | #define lpfc_eqcq_doorbell_eqci_SHIFT 9 |
| 821 | #define lpfc_eqcq_doorbell_eqci_MASK 0x0001 |
| 822 | #define lpfc_eqcq_doorbell_eqci_WORD word0 |
James Smart | 6b5151f | 2012-01-18 16:24:06 -0500 | [diff] [blame] | 823 | #define lpfc_eqcq_doorbell_cqid_lo_SHIFT 0 |
| 824 | #define lpfc_eqcq_doorbell_cqid_lo_MASK 0x03FF |
| 825 | #define lpfc_eqcq_doorbell_cqid_lo_WORD word0 |
| 826 | #define lpfc_eqcq_doorbell_cqid_hi_SHIFT 11 |
| 827 | #define lpfc_eqcq_doorbell_cqid_hi_MASK 0x001F |
| 828 | #define lpfc_eqcq_doorbell_cqid_hi_WORD word0 |
| 829 | #define lpfc_eqcq_doorbell_eqid_lo_SHIFT 0 |
| 830 | #define lpfc_eqcq_doorbell_eqid_lo_MASK 0x01FF |
| 831 | #define lpfc_eqcq_doorbell_eqid_lo_WORD word0 |
| 832 | #define lpfc_eqcq_doorbell_eqid_hi_SHIFT 11 |
| 833 | #define lpfc_eqcq_doorbell_eqid_hi_MASK 0x001F |
| 834 | #define lpfc_eqcq_doorbell_eqid_hi_WORD word0 |
| 835 | #define LPFC_CQID_HI_FIELD_SHIFT 10 |
| 836 | #define LPFC_EQID_HI_FIELD_SHIFT 9 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 837 | |
James Smart | 27d6ac0 | 2018-02-22 08:18:42 -0800 | [diff] [blame] | 838 | #define LPFC_IF6_CQ_DOORBELL 0x00C0 |
| 839 | #define lpfc_if6_cq_doorbell_se_SHIFT 31 |
| 840 | #define lpfc_if6_cq_doorbell_se_MASK 0x0001 |
| 841 | #define lpfc_if6_cq_doorbell_se_WORD word0 |
| 842 | #define LPFC_IF6_CQ_SOLICIT_ENABLE_OFF 0 |
| 843 | #define LPFC_IF6_CQ_SOLICIT_ENABLE_ON 1 |
| 844 | #define lpfc_if6_cq_doorbell_arm_SHIFT 29 |
| 845 | #define lpfc_if6_cq_doorbell_arm_MASK 0x0001 |
| 846 | #define lpfc_if6_cq_doorbell_arm_WORD word0 |
| 847 | #define lpfc_if6_cq_doorbell_num_released_SHIFT 16 |
| 848 | #define lpfc_if6_cq_doorbell_num_released_MASK 0x1FFF |
| 849 | #define lpfc_if6_cq_doorbell_num_released_WORD word0 |
| 850 | #define lpfc_if6_cq_doorbell_cqid_SHIFT 0 |
| 851 | #define lpfc_if6_cq_doorbell_cqid_MASK 0xFFFF |
| 852 | #define lpfc_if6_cq_doorbell_cqid_WORD word0 |
| 853 | |
| 854 | #define LPFC_IF6_EQ_DOORBELL 0x0120 |
| 855 | #define lpfc_if6_eq_doorbell_io_SHIFT 31 |
| 856 | #define lpfc_if6_eq_doorbell_io_MASK 0x0001 |
| 857 | #define lpfc_if6_eq_doorbell_io_WORD word0 |
| 858 | #define LPFC_IF6_EQ_INTR_OVERRIDE_OFF 0 |
| 859 | #define LPFC_IF6_EQ_INTR_OVERRIDE_ON 1 |
| 860 | #define lpfc_if6_eq_doorbell_arm_SHIFT 29 |
| 861 | #define lpfc_if6_eq_doorbell_arm_MASK 0x0001 |
| 862 | #define lpfc_if6_eq_doorbell_arm_WORD word0 |
| 863 | #define lpfc_if6_eq_doorbell_num_released_SHIFT 16 |
| 864 | #define lpfc_if6_eq_doorbell_num_released_MASK 0x1FFF |
| 865 | #define lpfc_if6_eq_doorbell_num_released_WORD word0 |
| 866 | #define lpfc_if6_eq_doorbell_eqid_SHIFT 0 |
| 867 | #define lpfc_if6_eq_doorbell_eqid_MASK 0x0FFF |
| 868 | #define lpfc_if6_eq_doorbell_eqid_WORD word0 |
| 869 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 870 | #define LPFC_BMBX 0x0160 |
| 871 | #define lpfc_bmbx_addr_SHIFT 2 |
| 872 | #define lpfc_bmbx_addr_MASK 0x3FFFFFFF |
| 873 | #define lpfc_bmbx_addr_WORD word0 |
| 874 | #define lpfc_bmbx_hi_SHIFT 1 |
| 875 | #define lpfc_bmbx_hi_MASK 0x0001 |
| 876 | #define lpfc_bmbx_hi_WORD word0 |
| 877 | #define lpfc_bmbx_rdy_SHIFT 0 |
| 878 | #define lpfc_bmbx_rdy_MASK 0x0001 |
| 879 | #define lpfc_bmbx_rdy_WORD word0 |
| 880 | |
| 881 | #define LPFC_MQ_DOORBELL 0x0140 |
James Smart | 27d6ac0 | 2018-02-22 08:18:42 -0800 | [diff] [blame] | 882 | #define LPFC_IF6_MQ_DOORBELL 0x0160 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 883 | #define lpfc_mq_doorbell_num_posted_SHIFT 16 |
| 884 | #define lpfc_mq_doorbell_num_posted_MASK 0x3FFF |
| 885 | #define lpfc_mq_doorbell_num_posted_WORD word0 |
| 886 | #define lpfc_mq_doorbell_id_SHIFT 0 |
James Smart | 085c647 | 2010-11-20 23:11:37 -0500 | [diff] [blame] | 887 | #define lpfc_mq_doorbell_id_MASK 0xFFFF |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 888 | #define lpfc_mq_doorbell_id_WORD word0 |
| 889 | |
| 890 | struct lpfc_sli4_cfg_mhdr { |
| 891 | uint32_t word1; |
| 892 | #define lpfc_mbox_hdr_emb_SHIFT 0 |
| 893 | #define lpfc_mbox_hdr_emb_MASK 0x00000001 |
| 894 | #define lpfc_mbox_hdr_emb_WORD word1 |
| 895 | #define lpfc_mbox_hdr_sge_cnt_SHIFT 3 |
| 896 | #define lpfc_mbox_hdr_sge_cnt_MASK 0x0000001F |
| 897 | #define lpfc_mbox_hdr_sge_cnt_WORD word1 |
| 898 | uint32_t payload_length; |
| 899 | uint32_t tag_lo; |
| 900 | uint32_t tag_hi; |
| 901 | uint32_t reserved5; |
| 902 | }; |
| 903 | |
| 904 | union lpfc_sli4_cfg_shdr { |
| 905 | struct { |
| 906 | uint32_t word6; |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 907 | #define lpfc_mbox_hdr_opcode_SHIFT 0 |
| 908 | #define lpfc_mbox_hdr_opcode_MASK 0x000000FF |
| 909 | #define lpfc_mbox_hdr_opcode_WORD word6 |
| 910 | #define lpfc_mbox_hdr_subsystem_SHIFT 8 |
| 911 | #define lpfc_mbox_hdr_subsystem_MASK 0x000000FF |
| 912 | #define lpfc_mbox_hdr_subsystem_WORD word6 |
| 913 | #define lpfc_mbox_hdr_port_number_SHIFT 16 |
| 914 | #define lpfc_mbox_hdr_port_number_MASK 0x000000FF |
| 915 | #define lpfc_mbox_hdr_port_number_WORD word6 |
| 916 | #define lpfc_mbox_hdr_domain_SHIFT 24 |
| 917 | #define lpfc_mbox_hdr_domain_MASK 0x000000FF |
| 918 | #define lpfc_mbox_hdr_domain_WORD word6 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 919 | uint32_t timeout; |
| 920 | uint32_t request_length; |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 921 | uint32_t word9; |
| 922 | #define lpfc_mbox_hdr_version_SHIFT 0 |
| 923 | #define lpfc_mbox_hdr_version_MASK 0x000000FF |
| 924 | #define lpfc_mbox_hdr_version_WORD word9 |
James Smart | 912e3ac | 2011-05-24 11:42:11 -0400 | [diff] [blame] | 925 | #define lpfc_mbox_hdr_pf_num_SHIFT 16 |
| 926 | #define lpfc_mbox_hdr_pf_num_MASK 0x000000FF |
| 927 | #define lpfc_mbox_hdr_pf_num_WORD word9 |
| 928 | #define lpfc_mbox_hdr_vh_num_SHIFT 24 |
| 929 | #define lpfc_mbox_hdr_vh_num_MASK 0x000000FF |
| 930 | #define lpfc_mbox_hdr_vh_num_WORD word9 |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 931 | #define LPFC_Q_CREATE_VERSION_2 2 |
| 932 | #define LPFC_Q_CREATE_VERSION_1 1 |
| 933 | #define LPFC_Q_CREATE_VERSION_0 0 |
James Smart | cd1c830 | 2011-10-10 21:33:25 -0400 | [diff] [blame] | 934 | #define LPFC_OPCODE_VERSION_0 0 |
| 935 | #define LPFC_OPCODE_VERSION_1 1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 936 | } request; |
| 937 | struct { |
| 938 | uint32_t word6; |
| 939 | #define lpfc_mbox_hdr_opcode_SHIFT 0 |
| 940 | #define lpfc_mbox_hdr_opcode_MASK 0x000000FF |
| 941 | #define lpfc_mbox_hdr_opcode_WORD word6 |
| 942 | #define lpfc_mbox_hdr_subsystem_SHIFT 8 |
| 943 | #define lpfc_mbox_hdr_subsystem_MASK 0x000000FF |
| 944 | #define lpfc_mbox_hdr_subsystem_WORD word6 |
| 945 | #define lpfc_mbox_hdr_domain_SHIFT 24 |
| 946 | #define lpfc_mbox_hdr_domain_MASK 0x000000FF |
| 947 | #define lpfc_mbox_hdr_domain_WORD word6 |
| 948 | uint32_t word7; |
| 949 | #define lpfc_mbox_hdr_status_SHIFT 0 |
| 950 | #define lpfc_mbox_hdr_status_MASK 0x000000FF |
| 951 | #define lpfc_mbox_hdr_status_WORD word7 |
| 952 | #define lpfc_mbox_hdr_add_status_SHIFT 8 |
| 953 | #define lpfc_mbox_hdr_add_status_MASK 0x000000FF |
| 954 | #define lpfc_mbox_hdr_add_status_WORD word7 |
| 955 | uint32_t response_length; |
| 956 | uint32_t actual_response_length; |
| 957 | } response; |
| 958 | }; |
| 959 | |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 960 | /* Mailbox Header structures. |
| 961 | * struct mbox_header is defined for first generation SLI4_CFG mailbox |
| 962 | * calls deployed for BE-based ports. |
| 963 | * |
| 964 | * struct sli4_mbox_header is defined for second generation SLI4 |
| 965 | * ports that don't deploy the SLI4_CFG mechanism. |
| 966 | */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 967 | struct mbox_header { |
| 968 | struct lpfc_sli4_cfg_mhdr cfg_mhdr; |
| 969 | union lpfc_sli4_cfg_shdr cfg_shdr; |
| 970 | }; |
| 971 | |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 972 | #define LPFC_EXTENT_LOCAL 0 |
| 973 | #define LPFC_TIMEOUT_DEFAULT 0 |
| 974 | #define LPFC_EXTENT_VERSION_DEFAULT 0 |
| 975 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 976 | /* Subsystem Definitions */ |
James Smart | a183a15 | 2011-10-10 21:32:43 -0400 | [diff] [blame] | 977 | #define LPFC_MBOX_SUBSYSTEM_NA 0x0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 978 | #define LPFC_MBOX_SUBSYSTEM_COMMON 0x1 |
James Smart | d2cc9bc | 2018-09-10 10:30:50 -0700 | [diff] [blame] | 979 | #define LPFC_MBOX_SUBSYSTEM_LOWLEVEL 0xB |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 980 | #define LPFC_MBOX_SUBSYSTEM_FCOE 0xC |
| 981 | |
| 982 | /* Device Specific Definitions */ |
| 983 | |
| 984 | /* The HOST ENDIAN defines are in Big Endian format. */ |
| 985 | #define HOST_ENDIAN_LOW_WORD0 0xFF3412FF |
| 986 | #define HOST_ENDIAN_HIGH_WORD1 0xFF7856FF |
| 987 | |
| 988 | /* Common Opcodes */ |
James Smart | a183a15 | 2011-10-10 21:32:43 -0400 | [diff] [blame] | 989 | #define LPFC_MBOX_OPCODE_NA 0x00 |
| 990 | #define LPFC_MBOX_OPCODE_CQ_CREATE 0x0C |
| 991 | #define LPFC_MBOX_OPCODE_EQ_CREATE 0x0D |
| 992 | #define LPFC_MBOX_OPCODE_MQ_CREATE 0x15 |
| 993 | #define LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES 0x20 |
| 994 | #define LPFC_MBOX_OPCODE_NOP 0x21 |
James Smart | 173edbb | 2012-06-12 13:54:50 -0400 | [diff] [blame] | 995 | #define LPFC_MBOX_OPCODE_MODIFY_EQ_DELAY 0x29 |
James Smart | a183a15 | 2011-10-10 21:32:43 -0400 | [diff] [blame] | 996 | #define LPFC_MBOX_OPCODE_MQ_DESTROY 0x35 |
| 997 | #define LPFC_MBOX_OPCODE_CQ_DESTROY 0x36 |
| 998 | #define LPFC_MBOX_OPCODE_EQ_DESTROY 0x37 |
| 999 | #define LPFC_MBOX_OPCODE_QUERY_FW_CFG 0x3A |
| 1000 | #define LPFC_MBOX_OPCODE_FUNCTION_RESET 0x3D |
James Smart | 940eb68 | 2012-08-03 12:37:08 -0400 | [diff] [blame] | 1001 | #define LPFC_MBOX_OPCODE_SET_PHYSICAL_LINK_CONFIG 0x3E |
| 1002 | #define LPFC_MBOX_OPCODE_SET_BOOT_CONFIG 0x43 |
James Smart | 8b017a3 | 2015-05-21 13:55:18 -0400 | [diff] [blame] | 1003 | #define LPFC_MBOX_OPCODE_SET_BEACON_CONFIG 0x45 |
| 1004 | #define LPFC_MBOX_OPCODE_GET_BEACON_CONFIG 0x46 |
James Smart | cd1c830 | 2011-10-10 21:33:25 -0400 | [diff] [blame] | 1005 | #define LPFC_MBOX_OPCODE_GET_PORT_NAME 0x4D |
James Smart | a183a15 | 2011-10-10 21:32:43 -0400 | [diff] [blame] | 1006 | #define LPFC_MBOX_OPCODE_MQ_CREATE_EXT 0x5A |
James Smart | 940eb68 | 2012-08-03 12:37:08 -0400 | [diff] [blame] | 1007 | #define LPFC_MBOX_OPCODE_GET_VPD_DATA 0x5B |
James Smart | 61bda8f | 2016-10-13 15:06:05 -0700 | [diff] [blame] | 1008 | #define LPFC_MBOX_OPCODE_SET_HOST_DATA 0x5D |
James Smart | 940eb68 | 2012-08-03 12:37:08 -0400 | [diff] [blame] | 1009 | #define LPFC_MBOX_OPCODE_SEND_ACTIVATION 0x73 |
| 1010 | #define LPFC_MBOX_OPCODE_RESET_LICENSES 0x74 |
James Smart | a183a15 | 2011-10-10 21:32:43 -0400 | [diff] [blame] | 1011 | #define LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO 0x9A |
| 1012 | #define LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT 0x9B |
| 1013 | #define LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT 0x9C |
| 1014 | #define LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT 0x9D |
| 1015 | #define LPFC_MBOX_OPCODE_GET_FUNCTION_CONFIG 0xA0 |
James Smart | 940eb68 | 2012-08-03 12:37:08 -0400 | [diff] [blame] | 1016 | #define LPFC_MBOX_OPCODE_GET_PROFILE_CAPACITIES 0xA1 |
James Smart | a183a15 | 2011-10-10 21:32:43 -0400 | [diff] [blame] | 1017 | #define LPFC_MBOX_OPCODE_GET_PROFILE_CONFIG 0xA4 |
| 1018 | #define LPFC_MBOX_OPCODE_SET_PROFILE_CONFIG 0xA5 |
| 1019 | #define LPFC_MBOX_OPCODE_GET_PROFILE_LIST 0xA6 |
| 1020 | #define LPFC_MBOX_OPCODE_SET_ACT_PROFILE 0xA8 |
| 1021 | #define LPFC_MBOX_OPCODE_GET_FACTORY_PROFILE_CONFIG 0xA9 |
| 1022 | #define LPFC_MBOX_OPCODE_READ_OBJECT 0xAB |
| 1023 | #define LPFC_MBOX_OPCODE_WRITE_OBJECT 0xAC |
| 1024 | #define LPFC_MBOX_OPCODE_READ_OBJECT_LIST 0xAD |
| 1025 | #define LPFC_MBOX_OPCODE_DELETE_OBJECT 0xAE |
| 1026 | #define LPFC_MBOX_OPCODE_GET_SLI4_PARAMETERS 0xB5 |
James Smart | 65791f1 | 2016-07-06 12:35:56 -0700 | [diff] [blame] | 1027 | #define LPFC_MBOX_OPCODE_SET_FEATURES 0xBF |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1028 | |
| 1029 | /* FCoE Opcodes */ |
| 1030 | #define LPFC_MBOX_OPCODE_FCOE_WQ_CREATE 0x01 |
| 1031 | #define LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY 0x02 |
| 1032 | #define LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES 0x03 |
| 1033 | #define LPFC_MBOX_OPCODE_FCOE_REMOVE_SGL_PAGES 0x04 |
| 1034 | #define LPFC_MBOX_OPCODE_FCOE_RQ_CREATE 0x05 |
| 1035 | #define LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY 0x06 |
| 1036 | #define LPFC_MBOX_OPCODE_FCOE_READ_FCF_TABLE 0x08 |
| 1037 | #define LPFC_MBOX_OPCODE_FCOE_ADD_FCF 0x09 |
| 1038 | #define LPFC_MBOX_OPCODE_FCOE_DELETE_FCF 0x0A |
| 1039 | #define LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE 0x0B |
James Smart | ecfd03c | 2010-02-12 14:41:27 -0500 | [diff] [blame] | 1040 | #define LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF 0x10 |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 1041 | #define LPFC_MBOX_OPCODE_FCOE_CQ_CREATE_SET 0x1D |
James Smart | a183a15 | 2011-10-10 21:32:43 -0400 | [diff] [blame] | 1042 | #define LPFC_MBOX_OPCODE_FCOE_SET_FCLINK_SETTINGS 0x21 |
James Smart | 7ad20aa | 2011-05-24 11:44:28 -0400 | [diff] [blame] | 1043 | #define LPFC_MBOX_OPCODE_FCOE_LINK_DIAG_STATE 0x22 |
| 1044 | #define LPFC_MBOX_OPCODE_FCOE_LINK_DIAG_LOOPBACK 0x23 |
James Smart | 1dc5ec2 | 2018-10-23 13:41:11 -0700 | [diff] [blame] | 1045 | #define LPFC_MBOX_OPCODE_FCOE_FC_SET_TRUNK_MODE 0x42 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1046 | |
James Smart | d2cc9bc | 2018-09-10 10:30:50 -0700 | [diff] [blame] | 1047 | /* Low level Opcodes */ |
| 1048 | #define LPFC_MBOX_OPCODE_SET_DIAG_LOG_OPTION 0x37 |
| 1049 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1050 | /* Mailbox command structures */ |
| 1051 | struct eq_context { |
| 1052 | uint32_t word0; |
| 1053 | #define lpfc_eq_context_size_SHIFT 31 |
| 1054 | #define lpfc_eq_context_size_MASK 0x00000001 |
| 1055 | #define lpfc_eq_context_size_WORD word0 |
| 1056 | #define LPFC_EQE_SIZE_4 0x0 |
| 1057 | #define LPFC_EQE_SIZE_16 0x1 |
| 1058 | #define lpfc_eq_context_valid_SHIFT 29 |
| 1059 | #define lpfc_eq_context_valid_MASK 0x00000001 |
| 1060 | #define lpfc_eq_context_valid_WORD word0 |
James Smart | 7365f6f | 2018-02-22 08:18:46 -0800 | [diff] [blame] | 1061 | #define lpfc_eq_context_autovalid_SHIFT 28 |
| 1062 | #define lpfc_eq_context_autovalid_MASK 0x00000001 |
| 1063 | #define lpfc_eq_context_autovalid_WORD word0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1064 | uint32_t word1; |
| 1065 | #define lpfc_eq_context_count_SHIFT 26 |
| 1066 | #define lpfc_eq_context_count_MASK 0x00000003 |
| 1067 | #define lpfc_eq_context_count_WORD word1 |
| 1068 | #define LPFC_EQ_CNT_256 0x0 |
| 1069 | #define LPFC_EQ_CNT_512 0x1 |
| 1070 | #define LPFC_EQ_CNT_1024 0x2 |
| 1071 | #define LPFC_EQ_CNT_2048 0x3 |
| 1072 | #define LPFC_EQ_CNT_4096 0x4 |
| 1073 | uint32_t word2; |
| 1074 | #define lpfc_eq_context_delay_multi_SHIFT 13 |
| 1075 | #define lpfc_eq_context_delay_multi_MASK 0x000003FF |
| 1076 | #define lpfc_eq_context_delay_multi_WORD word2 |
| 1077 | uint32_t reserved3; |
| 1078 | }; |
| 1079 | |
James Smart | 173edbb | 2012-06-12 13:54:50 -0400 | [diff] [blame] | 1080 | struct eq_delay_info { |
| 1081 | uint32_t eq_id; |
| 1082 | uint32_t phase; |
| 1083 | uint32_t delay_multi; |
| 1084 | }; |
James Smart | 43140ca | 2017-03-04 09:30:34 -0800 | [diff] [blame] | 1085 | #define LPFC_MAX_EQ_DELAY_EQID_CNT 8 |
James Smart | 173edbb | 2012-06-12 13:54:50 -0400 | [diff] [blame] | 1086 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1087 | struct sgl_page_pairs { |
| 1088 | uint32_t sgl_pg0_addr_lo; |
| 1089 | uint32_t sgl_pg0_addr_hi; |
| 1090 | uint32_t sgl_pg1_addr_lo; |
| 1091 | uint32_t sgl_pg1_addr_hi; |
| 1092 | }; |
| 1093 | |
| 1094 | struct lpfc_mbx_post_sgl_pages { |
| 1095 | struct mbox_header header; |
| 1096 | uint32_t word0; |
| 1097 | #define lpfc_post_sgl_pages_xri_SHIFT 0 |
| 1098 | #define lpfc_post_sgl_pages_xri_MASK 0x0000FFFF |
| 1099 | #define lpfc_post_sgl_pages_xri_WORD word0 |
| 1100 | #define lpfc_post_sgl_pages_xricnt_SHIFT 16 |
| 1101 | #define lpfc_post_sgl_pages_xricnt_MASK 0x0000FFFF |
| 1102 | #define lpfc_post_sgl_pages_xricnt_WORD word0 |
| 1103 | struct sgl_page_pairs sgl_pg_pairs[1]; |
| 1104 | }; |
| 1105 | |
| 1106 | /* word0 of page-1 struct shares the same SHIFT/MASK/WORD defines as above */ |
| 1107 | struct lpfc_mbx_post_uembed_sgl_page1 { |
| 1108 | union lpfc_sli4_cfg_shdr cfg_shdr; |
| 1109 | uint32_t word0; |
| 1110 | struct sgl_page_pairs sgl_pg_pairs; |
| 1111 | }; |
| 1112 | |
| 1113 | struct lpfc_mbx_sge { |
| 1114 | uint32_t pa_lo; |
| 1115 | uint32_t pa_hi; |
| 1116 | uint32_t length; |
| 1117 | }; |
| 1118 | |
| 1119 | struct lpfc_mbx_nembed_cmd { |
| 1120 | struct lpfc_sli4_cfg_mhdr cfg_mhdr; |
| 1121 | #define LPFC_SLI4_MBX_SGE_MAX_PAGES 19 |
| 1122 | struct lpfc_mbx_sge sge[LPFC_SLI4_MBX_SGE_MAX_PAGES]; |
| 1123 | }; |
| 1124 | |
| 1125 | struct lpfc_mbx_nembed_sge_virt { |
| 1126 | void *addr[LPFC_SLI4_MBX_SGE_MAX_PAGES]; |
| 1127 | }; |
| 1128 | |
| 1129 | struct lpfc_mbx_eq_create { |
| 1130 | struct mbox_header header; |
| 1131 | union { |
| 1132 | struct { |
| 1133 | uint32_t word0; |
| 1134 | #define lpfc_mbx_eq_create_num_pages_SHIFT 0 |
| 1135 | #define lpfc_mbx_eq_create_num_pages_MASK 0x0000FFFF |
| 1136 | #define lpfc_mbx_eq_create_num_pages_WORD word0 |
| 1137 | struct eq_context context; |
| 1138 | struct dma_address page[LPFC_MAX_EQ_PAGE]; |
| 1139 | } request; |
| 1140 | struct { |
| 1141 | uint32_t word0; |
| 1142 | #define lpfc_mbx_eq_create_q_id_SHIFT 0 |
| 1143 | #define lpfc_mbx_eq_create_q_id_MASK 0x0000FFFF |
| 1144 | #define lpfc_mbx_eq_create_q_id_WORD word0 |
| 1145 | } response; |
| 1146 | } u; |
| 1147 | }; |
| 1148 | |
James Smart | 173edbb | 2012-06-12 13:54:50 -0400 | [diff] [blame] | 1149 | struct lpfc_mbx_modify_eq_delay { |
| 1150 | struct mbox_header header; |
| 1151 | union { |
| 1152 | struct { |
| 1153 | uint32_t num_eq; |
James Smart | 43140ca | 2017-03-04 09:30:34 -0800 | [diff] [blame] | 1154 | struct eq_delay_info eq[LPFC_MAX_EQ_DELAY_EQID_CNT]; |
James Smart | 173edbb | 2012-06-12 13:54:50 -0400 | [diff] [blame] | 1155 | } request; |
| 1156 | struct { |
| 1157 | uint32_t word0; |
| 1158 | } response; |
| 1159 | } u; |
| 1160 | }; |
| 1161 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1162 | struct lpfc_mbx_eq_destroy { |
| 1163 | struct mbox_header header; |
| 1164 | union { |
| 1165 | struct { |
| 1166 | uint32_t word0; |
| 1167 | #define lpfc_mbx_eq_destroy_q_id_SHIFT 0 |
| 1168 | #define lpfc_mbx_eq_destroy_q_id_MASK 0x0000FFFF |
| 1169 | #define lpfc_mbx_eq_destroy_q_id_WORD word0 |
| 1170 | } request; |
| 1171 | struct { |
| 1172 | uint32_t word0; |
| 1173 | } response; |
| 1174 | } u; |
| 1175 | }; |
| 1176 | |
| 1177 | struct lpfc_mbx_nop { |
| 1178 | struct mbox_header header; |
| 1179 | uint32_t context[2]; |
| 1180 | }; |
| 1181 | |
James Smart | d2cc9bc | 2018-09-10 10:30:50 -0700 | [diff] [blame] | 1182 | |
| 1183 | |
| 1184 | struct lpfc_mbx_set_ras_fwlog { |
| 1185 | struct mbox_header header; |
| 1186 | union { |
| 1187 | struct { |
| 1188 | uint32_t word4; |
| 1189 | #define lpfc_fwlog_enable_SHIFT 0 |
| 1190 | #define lpfc_fwlog_enable_MASK 0x00000001 |
| 1191 | #define lpfc_fwlog_enable_WORD word4 |
| 1192 | #define lpfc_fwlog_loglvl_SHIFT 8 |
| 1193 | #define lpfc_fwlog_loglvl_MASK 0x0000000F |
| 1194 | #define lpfc_fwlog_loglvl_WORD word4 |
| 1195 | #define lpfc_fwlog_ra_SHIFT 15 |
| 1196 | #define lpfc_fwlog_ra_WORD 0x00000008 |
| 1197 | #define lpfc_fwlog_buffcnt_SHIFT 16 |
| 1198 | #define lpfc_fwlog_buffcnt_MASK 0x000000FF |
| 1199 | #define lpfc_fwlog_buffcnt_WORD word4 |
| 1200 | #define lpfc_fwlog_buffsz_SHIFT 24 |
| 1201 | #define lpfc_fwlog_buffsz_MASK 0x000000FF |
| 1202 | #define lpfc_fwlog_buffsz_WORD word4 |
| 1203 | uint32_t word5; |
| 1204 | #define lpfc_fwlog_acqe_SHIFT 0 |
| 1205 | #define lpfc_fwlog_acqe_MASK 0x0000FFFF |
| 1206 | #define lpfc_fwlog_acqe_WORD word5 |
| 1207 | #define lpfc_fwlog_cqid_SHIFT 16 |
| 1208 | #define lpfc_fwlog_cqid_MASK 0x0000FFFF |
| 1209 | #define lpfc_fwlog_cqid_WORD word5 |
| 1210 | #define LPFC_MAX_FWLOG_PAGE 16 |
| 1211 | struct dma_address lwpd; |
| 1212 | struct dma_address buff_fwlog[LPFC_MAX_FWLOG_PAGE]; |
| 1213 | } request; |
| 1214 | struct { |
| 1215 | uint32_t word0; |
| 1216 | } response; |
| 1217 | } u; |
| 1218 | }; |
| 1219 | |
| 1220 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1221 | struct cq_context { |
| 1222 | uint32_t word0; |
| 1223 | #define lpfc_cq_context_event_SHIFT 31 |
| 1224 | #define lpfc_cq_context_event_MASK 0x00000001 |
| 1225 | #define lpfc_cq_context_event_WORD word0 |
| 1226 | #define lpfc_cq_context_valid_SHIFT 29 |
| 1227 | #define lpfc_cq_context_valid_MASK 0x00000001 |
| 1228 | #define lpfc_cq_context_valid_WORD word0 |
| 1229 | #define lpfc_cq_context_count_SHIFT 27 |
| 1230 | #define lpfc_cq_context_count_MASK 0x00000003 |
| 1231 | #define lpfc_cq_context_count_WORD word0 |
| 1232 | #define LPFC_CQ_CNT_256 0x0 |
| 1233 | #define LPFC_CQ_CNT_512 0x1 |
| 1234 | #define LPFC_CQ_CNT_1024 0x2 |
James Smart | 81b96ed | 2017-11-20 16:00:29 -0800 | [diff] [blame] | 1235 | #define LPFC_CQ_CNT_WORD7 0x3 |
James Smart | 7365f6f | 2018-02-22 08:18:46 -0800 | [diff] [blame] | 1236 | #define lpfc_cq_context_autovalid_SHIFT 15 |
| 1237 | #define lpfc_cq_context_autovalid_MASK 0x00000001 |
| 1238 | #define lpfc_cq_context_autovalid_WORD word0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1239 | uint32_t word1; |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1240 | #define lpfc_cq_eq_id_SHIFT 22 /* Version 0 Only */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1241 | #define lpfc_cq_eq_id_MASK 0x000000FF |
| 1242 | #define lpfc_cq_eq_id_WORD word1 |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1243 | #define lpfc_cq_eq_id_2_SHIFT 0 /* Version 2 Only */ |
| 1244 | #define lpfc_cq_eq_id_2_MASK 0x0000FFFF |
| 1245 | #define lpfc_cq_eq_id_2_WORD word1 |
James Smart | 81b96ed | 2017-11-20 16:00:29 -0800 | [diff] [blame] | 1246 | uint32_t lpfc_cq_context_count; /* Version 2 Only */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1247 | uint32_t reserved1; |
| 1248 | }; |
| 1249 | |
| 1250 | struct lpfc_mbx_cq_create { |
| 1251 | struct mbox_header header; |
| 1252 | union { |
| 1253 | struct { |
| 1254 | uint32_t word0; |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1255 | #define lpfc_mbx_cq_create_page_size_SHIFT 16 /* Version 2 Only */ |
| 1256 | #define lpfc_mbx_cq_create_page_size_MASK 0x000000FF |
| 1257 | #define lpfc_mbx_cq_create_page_size_WORD word0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1258 | #define lpfc_mbx_cq_create_num_pages_SHIFT 0 |
| 1259 | #define lpfc_mbx_cq_create_num_pages_MASK 0x0000FFFF |
| 1260 | #define lpfc_mbx_cq_create_num_pages_WORD word0 |
| 1261 | struct cq_context context; |
| 1262 | struct dma_address page[LPFC_MAX_CQ_PAGE]; |
| 1263 | } request; |
| 1264 | struct { |
| 1265 | uint32_t word0; |
| 1266 | #define lpfc_mbx_cq_create_q_id_SHIFT 0 |
| 1267 | #define lpfc_mbx_cq_create_q_id_MASK 0x0000FFFF |
| 1268 | #define lpfc_mbx_cq_create_q_id_WORD word0 |
| 1269 | } response; |
| 1270 | } u; |
| 1271 | }; |
| 1272 | |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 1273 | struct lpfc_mbx_cq_create_set { |
| 1274 | union lpfc_sli4_cfg_shdr cfg_shdr; |
| 1275 | union { |
| 1276 | struct { |
| 1277 | uint32_t word0; |
| 1278 | #define lpfc_mbx_cq_create_set_page_size_SHIFT 16 /* Version 2 Only */ |
| 1279 | #define lpfc_mbx_cq_create_set_page_size_MASK 0x000000FF |
| 1280 | #define lpfc_mbx_cq_create_set_page_size_WORD word0 |
| 1281 | #define lpfc_mbx_cq_create_set_num_pages_SHIFT 0 |
| 1282 | #define lpfc_mbx_cq_create_set_num_pages_MASK 0x0000FFFF |
| 1283 | #define lpfc_mbx_cq_create_set_num_pages_WORD word0 |
| 1284 | uint32_t word1; |
| 1285 | #define lpfc_mbx_cq_create_set_evt_SHIFT 31 |
| 1286 | #define lpfc_mbx_cq_create_set_evt_MASK 0x00000001 |
| 1287 | #define lpfc_mbx_cq_create_set_evt_WORD word1 |
| 1288 | #define lpfc_mbx_cq_create_set_valid_SHIFT 29 |
| 1289 | #define lpfc_mbx_cq_create_set_valid_MASK 0x00000001 |
| 1290 | #define lpfc_mbx_cq_create_set_valid_WORD word1 |
| 1291 | #define lpfc_mbx_cq_create_set_cqe_cnt_SHIFT 27 |
| 1292 | #define lpfc_mbx_cq_create_set_cqe_cnt_MASK 0x00000003 |
| 1293 | #define lpfc_mbx_cq_create_set_cqe_cnt_WORD word1 |
| 1294 | #define lpfc_mbx_cq_create_set_cqe_size_SHIFT 25 |
| 1295 | #define lpfc_mbx_cq_create_set_cqe_size_MASK 0x00000003 |
| 1296 | #define lpfc_mbx_cq_create_set_cqe_size_WORD word1 |
James Smart | 7365f6f | 2018-02-22 08:18:46 -0800 | [diff] [blame] | 1297 | #define lpfc_mbx_cq_create_set_autovalid_SHIFT 15 |
| 1298 | #define lpfc_mbx_cq_create_set_autovalid_MASK 0x0000001 |
| 1299 | #define lpfc_mbx_cq_create_set_autovalid_WORD word1 |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 1300 | #define lpfc_mbx_cq_create_set_nodelay_SHIFT 14 |
| 1301 | #define lpfc_mbx_cq_create_set_nodelay_MASK 0x00000001 |
| 1302 | #define lpfc_mbx_cq_create_set_nodelay_WORD word1 |
| 1303 | #define lpfc_mbx_cq_create_set_clswm_SHIFT 12 |
| 1304 | #define lpfc_mbx_cq_create_set_clswm_MASK 0x00000003 |
| 1305 | #define lpfc_mbx_cq_create_set_clswm_WORD word1 |
| 1306 | uint32_t word2; |
| 1307 | #define lpfc_mbx_cq_create_set_arm_SHIFT 31 |
| 1308 | #define lpfc_mbx_cq_create_set_arm_MASK 0x00000001 |
| 1309 | #define lpfc_mbx_cq_create_set_arm_WORD word2 |
James Smart | 81b96ed | 2017-11-20 16:00:29 -0800 | [diff] [blame] | 1310 | #define lpfc_mbx_cq_create_set_cq_cnt_SHIFT 16 |
| 1311 | #define lpfc_mbx_cq_create_set_cq_cnt_MASK 0x00007FFF |
| 1312 | #define lpfc_mbx_cq_create_set_cq_cnt_WORD word2 |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 1313 | #define lpfc_mbx_cq_create_set_num_cq_SHIFT 0 |
| 1314 | #define lpfc_mbx_cq_create_set_num_cq_MASK 0x0000FFFF |
| 1315 | #define lpfc_mbx_cq_create_set_num_cq_WORD word2 |
| 1316 | uint32_t word3; |
| 1317 | #define lpfc_mbx_cq_create_set_eq_id1_SHIFT 16 |
| 1318 | #define lpfc_mbx_cq_create_set_eq_id1_MASK 0x0000FFFF |
| 1319 | #define lpfc_mbx_cq_create_set_eq_id1_WORD word3 |
| 1320 | #define lpfc_mbx_cq_create_set_eq_id0_SHIFT 0 |
| 1321 | #define lpfc_mbx_cq_create_set_eq_id0_MASK 0x0000FFFF |
| 1322 | #define lpfc_mbx_cq_create_set_eq_id0_WORD word3 |
| 1323 | uint32_t word4; |
| 1324 | #define lpfc_mbx_cq_create_set_eq_id3_SHIFT 16 |
| 1325 | #define lpfc_mbx_cq_create_set_eq_id3_MASK 0x0000FFFF |
| 1326 | #define lpfc_mbx_cq_create_set_eq_id3_WORD word4 |
| 1327 | #define lpfc_mbx_cq_create_set_eq_id2_SHIFT 0 |
| 1328 | #define lpfc_mbx_cq_create_set_eq_id2_MASK 0x0000FFFF |
| 1329 | #define lpfc_mbx_cq_create_set_eq_id2_WORD word4 |
| 1330 | uint32_t word5; |
| 1331 | #define lpfc_mbx_cq_create_set_eq_id5_SHIFT 16 |
| 1332 | #define lpfc_mbx_cq_create_set_eq_id5_MASK 0x0000FFFF |
| 1333 | #define lpfc_mbx_cq_create_set_eq_id5_WORD word5 |
| 1334 | #define lpfc_mbx_cq_create_set_eq_id4_SHIFT 0 |
| 1335 | #define lpfc_mbx_cq_create_set_eq_id4_MASK 0x0000FFFF |
| 1336 | #define lpfc_mbx_cq_create_set_eq_id4_WORD word5 |
| 1337 | uint32_t word6; |
| 1338 | #define lpfc_mbx_cq_create_set_eq_id7_SHIFT 16 |
| 1339 | #define lpfc_mbx_cq_create_set_eq_id7_MASK 0x0000FFFF |
| 1340 | #define lpfc_mbx_cq_create_set_eq_id7_WORD word6 |
| 1341 | #define lpfc_mbx_cq_create_set_eq_id6_SHIFT 0 |
| 1342 | #define lpfc_mbx_cq_create_set_eq_id6_MASK 0x0000FFFF |
| 1343 | #define lpfc_mbx_cq_create_set_eq_id6_WORD word6 |
| 1344 | uint32_t word7; |
| 1345 | #define lpfc_mbx_cq_create_set_eq_id9_SHIFT 16 |
| 1346 | #define lpfc_mbx_cq_create_set_eq_id9_MASK 0x0000FFFF |
| 1347 | #define lpfc_mbx_cq_create_set_eq_id9_WORD word7 |
| 1348 | #define lpfc_mbx_cq_create_set_eq_id8_SHIFT 0 |
| 1349 | #define lpfc_mbx_cq_create_set_eq_id8_MASK 0x0000FFFF |
| 1350 | #define lpfc_mbx_cq_create_set_eq_id8_WORD word7 |
| 1351 | uint32_t word8; |
| 1352 | #define lpfc_mbx_cq_create_set_eq_id11_SHIFT 16 |
| 1353 | #define lpfc_mbx_cq_create_set_eq_id11_MASK 0x0000FFFF |
| 1354 | #define lpfc_mbx_cq_create_set_eq_id11_WORD word8 |
| 1355 | #define lpfc_mbx_cq_create_set_eq_id10_SHIFT 0 |
| 1356 | #define lpfc_mbx_cq_create_set_eq_id10_MASK 0x0000FFFF |
| 1357 | #define lpfc_mbx_cq_create_set_eq_id10_WORD word8 |
| 1358 | uint32_t word9; |
| 1359 | #define lpfc_mbx_cq_create_set_eq_id13_SHIFT 16 |
| 1360 | #define lpfc_mbx_cq_create_set_eq_id13_MASK 0x0000FFFF |
| 1361 | #define lpfc_mbx_cq_create_set_eq_id13_WORD word9 |
| 1362 | #define lpfc_mbx_cq_create_set_eq_id12_SHIFT 0 |
| 1363 | #define lpfc_mbx_cq_create_set_eq_id12_MASK 0x0000FFFF |
| 1364 | #define lpfc_mbx_cq_create_set_eq_id12_WORD word9 |
| 1365 | uint32_t word10; |
| 1366 | #define lpfc_mbx_cq_create_set_eq_id15_SHIFT 16 |
| 1367 | #define lpfc_mbx_cq_create_set_eq_id15_MASK 0x0000FFFF |
| 1368 | #define lpfc_mbx_cq_create_set_eq_id15_WORD word10 |
| 1369 | #define lpfc_mbx_cq_create_set_eq_id14_SHIFT 0 |
| 1370 | #define lpfc_mbx_cq_create_set_eq_id14_MASK 0x0000FFFF |
| 1371 | #define lpfc_mbx_cq_create_set_eq_id14_WORD word10 |
| 1372 | struct dma_address page[1]; |
| 1373 | } request; |
| 1374 | struct { |
| 1375 | uint32_t word0; |
| 1376 | #define lpfc_mbx_cq_create_set_num_alloc_SHIFT 16 |
| 1377 | #define lpfc_mbx_cq_create_set_num_alloc_MASK 0x0000FFFF |
| 1378 | #define lpfc_mbx_cq_create_set_num_alloc_WORD word0 |
| 1379 | #define lpfc_mbx_cq_create_set_base_id_SHIFT 0 |
| 1380 | #define lpfc_mbx_cq_create_set_base_id_MASK 0x0000FFFF |
| 1381 | #define lpfc_mbx_cq_create_set_base_id_WORD word0 |
| 1382 | } response; |
| 1383 | } u; |
| 1384 | }; |
| 1385 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1386 | struct lpfc_mbx_cq_destroy { |
| 1387 | struct mbox_header header; |
| 1388 | union { |
| 1389 | struct { |
| 1390 | uint32_t word0; |
| 1391 | #define lpfc_mbx_cq_destroy_q_id_SHIFT 0 |
| 1392 | #define lpfc_mbx_cq_destroy_q_id_MASK 0x0000FFFF |
| 1393 | #define lpfc_mbx_cq_destroy_q_id_WORD word0 |
| 1394 | } request; |
| 1395 | struct { |
| 1396 | uint32_t word0; |
| 1397 | } response; |
| 1398 | } u; |
| 1399 | }; |
| 1400 | |
| 1401 | struct wq_context { |
| 1402 | uint32_t reserved0; |
| 1403 | uint32_t reserved1; |
| 1404 | uint32_t reserved2; |
| 1405 | uint32_t reserved3; |
| 1406 | }; |
| 1407 | |
| 1408 | struct lpfc_mbx_wq_create { |
| 1409 | struct mbox_header header; |
| 1410 | union { |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1411 | struct { /* Version 0 Request */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1412 | uint32_t word0; |
| 1413 | #define lpfc_mbx_wq_create_num_pages_SHIFT 0 |
James Smart | 962bc51 | 2013-01-03 15:44:00 -0500 | [diff] [blame] | 1414 | #define lpfc_mbx_wq_create_num_pages_MASK 0x000000FF |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1415 | #define lpfc_mbx_wq_create_num_pages_WORD word0 |
James Smart | 962bc51 | 2013-01-03 15:44:00 -0500 | [diff] [blame] | 1416 | #define lpfc_mbx_wq_create_dua_SHIFT 8 |
| 1417 | #define lpfc_mbx_wq_create_dua_MASK 0x00000001 |
| 1418 | #define lpfc_mbx_wq_create_dua_WORD word0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1419 | #define lpfc_mbx_wq_create_cq_id_SHIFT 16 |
| 1420 | #define lpfc_mbx_wq_create_cq_id_MASK 0x0000FFFF |
| 1421 | #define lpfc_mbx_wq_create_cq_id_WORD word0 |
James Smart | 962bc51 | 2013-01-03 15:44:00 -0500 | [diff] [blame] | 1422 | struct dma_address page[LPFC_MAX_WQ_PAGE_V0]; |
| 1423 | uint32_t word9; |
| 1424 | #define lpfc_mbx_wq_create_bua_SHIFT 0 |
| 1425 | #define lpfc_mbx_wq_create_bua_MASK 0x00000001 |
| 1426 | #define lpfc_mbx_wq_create_bua_WORD word9 |
| 1427 | #define lpfc_mbx_wq_create_ulp_num_SHIFT 8 |
| 1428 | #define lpfc_mbx_wq_create_ulp_num_MASK 0x000000FF |
| 1429 | #define lpfc_mbx_wq_create_ulp_num_WORD word9 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1430 | } request; |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1431 | struct { /* Version 1 Request */ |
| 1432 | uint32_t word0; /* Word 0 is the same as in v0 */ |
| 1433 | uint32_t word1; |
| 1434 | #define lpfc_mbx_wq_create_page_size_SHIFT 0 |
| 1435 | #define lpfc_mbx_wq_create_page_size_MASK 0x000000FF |
| 1436 | #define lpfc_mbx_wq_create_page_size_WORD word1 |
James Smart | 8ea73db | 2017-02-12 13:52:25 -0800 | [diff] [blame] | 1437 | #define LPFC_WQ_PAGE_SIZE_4096 0x1 |
James Smart | 1351e69 | 2018-02-22 08:18:43 -0800 | [diff] [blame] | 1438 | #define lpfc_mbx_wq_create_dpp_req_SHIFT 15 |
| 1439 | #define lpfc_mbx_wq_create_dpp_req_MASK 0x00000001 |
| 1440 | #define lpfc_mbx_wq_create_dpp_req_WORD word1 |
| 1441 | #define lpfc_mbx_wq_create_doe_SHIFT 14 |
| 1442 | #define lpfc_mbx_wq_create_doe_MASK 0x00000001 |
| 1443 | #define lpfc_mbx_wq_create_doe_WORD word1 |
| 1444 | #define lpfc_mbx_wq_create_toe_SHIFT 13 |
| 1445 | #define lpfc_mbx_wq_create_toe_MASK 0x00000001 |
| 1446 | #define lpfc_mbx_wq_create_toe_WORD word1 |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1447 | #define lpfc_mbx_wq_create_wqe_size_SHIFT 8 |
| 1448 | #define lpfc_mbx_wq_create_wqe_size_MASK 0x0000000F |
| 1449 | #define lpfc_mbx_wq_create_wqe_size_WORD word1 |
| 1450 | #define LPFC_WQ_WQE_SIZE_64 0x5 |
| 1451 | #define LPFC_WQ_WQE_SIZE_128 0x6 |
| 1452 | #define lpfc_mbx_wq_create_wqe_count_SHIFT 16 |
| 1453 | #define lpfc_mbx_wq_create_wqe_count_MASK 0x0000FFFF |
| 1454 | #define lpfc_mbx_wq_create_wqe_count_WORD word1 |
| 1455 | uint32_t word2; |
| 1456 | struct dma_address page[LPFC_MAX_WQ_PAGE-1]; |
| 1457 | } request_1; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1458 | struct { |
| 1459 | uint32_t word0; |
| 1460 | #define lpfc_mbx_wq_create_q_id_SHIFT 0 |
| 1461 | #define lpfc_mbx_wq_create_q_id_MASK 0x0000FFFF |
| 1462 | #define lpfc_mbx_wq_create_q_id_WORD word0 |
James Smart | 962bc51 | 2013-01-03 15:44:00 -0500 | [diff] [blame] | 1463 | uint32_t doorbell_offset; |
| 1464 | uint32_t word2; |
| 1465 | #define lpfc_mbx_wq_create_bar_set_SHIFT 0 |
| 1466 | #define lpfc_mbx_wq_create_bar_set_MASK 0x0000FFFF |
| 1467 | #define lpfc_mbx_wq_create_bar_set_WORD word2 |
| 1468 | #define WQ_PCI_BAR_0_AND_1 0x00 |
| 1469 | #define WQ_PCI_BAR_2_AND_3 0x01 |
| 1470 | #define WQ_PCI_BAR_4_AND_5 0x02 |
| 1471 | #define lpfc_mbx_wq_create_db_format_SHIFT 16 |
| 1472 | #define lpfc_mbx_wq_create_db_format_MASK 0x0000FFFF |
| 1473 | #define lpfc_mbx_wq_create_db_format_WORD word2 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1474 | } response; |
James Smart | 1351e69 | 2018-02-22 08:18:43 -0800 | [diff] [blame] | 1475 | struct { |
| 1476 | uint32_t word0; |
| 1477 | #define lpfc_mbx_wq_create_dpp_rsp_SHIFT 31 |
| 1478 | #define lpfc_mbx_wq_create_dpp_rsp_MASK 0x00000001 |
| 1479 | #define lpfc_mbx_wq_create_dpp_rsp_WORD word0 |
| 1480 | #define lpfc_mbx_wq_create_v1_q_id_SHIFT 0 |
| 1481 | #define lpfc_mbx_wq_create_v1_q_id_MASK 0x0000FFFF |
| 1482 | #define lpfc_mbx_wq_create_v1_q_id_WORD word0 |
| 1483 | uint32_t word1; |
| 1484 | #define lpfc_mbx_wq_create_v1_bar_set_SHIFT 0 |
| 1485 | #define lpfc_mbx_wq_create_v1_bar_set_MASK 0x0000000F |
| 1486 | #define lpfc_mbx_wq_create_v1_bar_set_WORD word1 |
| 1487 | uint32_t doorbell_offset; |
| 1488 | uint32_t word3; |
| 1489 | #define lpfc_mbx_wq_create_dpp_id_SHIFT 16 |
| 1490 | #define lpfc_mbx_wq_create_dpp_id_MASK 0x0000001F |
| 1491 | #define lpfc_mbx_wq_create_dpp_id_WORD word3 |
| 1492 | #define lpfc_mbx_wq_create_dpp_bar_SHIFT 0 |
| 1493 | #define lpfc_mbx_wq_create_dpp_bar_MASK 0x0000000F |
| 1494 | #define lpfc_mbx_wq_create_dpp_bar_WORD word3 |
| 1495 | uint32_t dpp_offset; |
| 1496 | } response_1; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1497 | } u; |
| 1498 | }; |
| 1499 | |
| 1500 | struct lpfc_mbx_wq_destroy { |
| 1501 | struct mbox_header header; |
| 1502 | union { |
| 1503 | struct { |
| 1504 | uint32_t word0; |
| 1505 | #define lpfc_mbx_wq_destroy_q_id_SHIFT 0 |
| 1506 | #define lpfc_mbx_wq_destroy_q_id_MASK 0x0000FFFF |
| 1507 | #define lpfc_mbx_wq_destroy_q_id_WORD word0 |
| 1508 | } request; |
| 1509 | struct { |
| 1510 | uint32_t word0; |
| 1511 | } response; |
| 1512 | } u; |
| 1513 | }; |
| 1514 | |
| 1515 | #define LPFC_HDR_BUF_SIZE 128 |
James Smart | eeead81 | 2009-12-21 17:01:23 -0500 | [diff] [blame] | 1516 | #define LPFC_DATA_BUF_SIZE 2048 |
James Smart | 3c603be | 2017-05-15 15:20:44 -0700 | [diff] [blame] | 1517 | #define LPFC_NVMET_DATA_BUF_SIZE 128 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1518 | struct rq_context { |
| 1519 | uint32_t word0; |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1520 | #define lpfc_rq_context_rqe_count_SHIFT 16 /* Version 0 Only */ |
| 1521 | #define lpfc_rq_context_rqe_count_MASK 0x0000000F |
| 1522 | #define lpfc_rq_context_rqe_count_WORD word0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1523 | #define LPFC_RQ_RING_SIZE_512 9 /* 512 entries */ |
| 1524 | #define LPFC_RQ_RING_SIZE_1024 10 /* 1024 entries */ |
| 1525 | #define LPFC_RQ_RING_SIZE_2048 11 /* 2048 entries */ |
| 1526 | #define LPFC_RQ_RING_SIZE_4096 12 /* 4096 entries */ |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 1527 | #define lpfc_rq_context_rqe_count_1_SHIFT 16 /* Version 1-2 Only */ |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1528 | #define lpfc_rq_context_rqe_count_1_MASK 0x0000FFFF |
| 1529 | #define lpfc_rq_context_rqe_count_1_WORD word0 |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 1530 | #define lpfc_rq_context_rqe_size_SHIFT 8 /* Version 1-2 Only */ |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1531 | #define lpfc_rq_context_rqe_size_MASK 0x0000000F |
| 1532 | #define lpfc_rq_context_rqe_size_WORD word0 |
James Smart | c31098c | 2011-04-16 11:03:33 -0400 | [diff] [blame] | 1533 | #define LPFC_RQE_SIZE_8 2 |
| 1534 | #define LPFC_RQE_SIZE_16 3 |
| 1535 | #define LPFC_RQE_SIZE_32 4 |
| 1536 | #define LPFC_RQE_SIZE_64 5 |
| 1537 | #define LPFC_RQE_SIZE_128 6 |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1538 | #define lpfc_rq_context_page_size_SHIFT 0 /* Version 1 Only */ |
| 1539 | #define lpfc_rq_context_page_size_MASK 0x000000FF |
| 1540 | #define lpfc_rq_context_page_size_WORD word0 |
James Smart | 8ea73db | 2017-02-12 13:52:25 -0800 | [diff] [blame] | 1541 | #define LPFC_RQ_PAGE_SIZE_4096 0x1 |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 1542 | uint32_t word1; |
| 1543 | #define lpfc_rq_context_data_size_SHIFT 16 /* Version 2 Only */ |
| 1544 | #define lpfc_rq_context_data_size_MASK 0x0000FFFF |
| 1545 | #define lpfc_rq_context_data_size_WORD word1 |
| 1546 | #define lpfc_rq_context_hdr_size_SHIFT 0 /* Version 2 Only */ |
| 1547 | #define lpfc_rq_context_hdr_size_MASK 0x0000FFFF |
| 1548 | #define lpfc_rq_context_hdr_size_WORD word1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1549 | uint32_t word2; |
| 1550 | #define lpfc_rq_context_cq_id_SHIFT 16 |
| 1551 | #define lpfc_rq_context_cq_id_MASK 0x000003FF |
| 1552 | #define lpfc_rq_context_cq_id_WORD word2 |
| 1553 | #define lpfc_rq_context_buf_size_SHIFT 0 |
| 1554 | #define lpfc_rq_context_buf_size_MASK 0x0000FFFF |
| 1555 | #define lpfc_rq_context_buf_size_WORD word2 |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 1556 | #define lpfc_rq_context_base_cq_SHIFT 0 /* Version 2 Only */ |
| 1557 | #define lpfc_rq_context_base_cq_MASK 0x0000FFFF |
| 1558 | #define lpfc_rq_context_base_cq_WORD word2 |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1559 | uint32_t buffer_size; /* Version 1 Only */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1560 | }; |
| 1561 | |
| 1562 | struct lpfc_mbx_rq_create { |
| 1563 | struct mbox_header header; |
| 1564 | union { |
| 1565 | struct { |
| 1566 | uint32_t word0; |
| 1567 | #define lpfc_mbx_rq_create_num_pages_SHIFT 0 |
| 1568 | #define lpfc_mbx_rq_create_num_pages_MASK 0x0000FFFF |
| 1569 | #define lpfc_mbx_rq_create_num_pages_WORD word0 |
James Smart | 962bc51 | 2013-01-03 15:44:00 -0500 | [diff] [blame] | 1570 | #define lpfc_mbx_rq_create_dua_SHIFT 16 |
| 1571 | #define lpfc_mbx_rq_create_dua_MASK 0x00000001 |
| 1572 | #define lpfc_mbx_rq_create_dua_WORD word0 |
| 1573 | #define lpfc_mbx_rq_create_bqu_SHIFT 17 |
| 1574 | #define lpfc_mbx_rq_create_bqu_MASK 0x00000001 |
| 1575 | #define lpfc_mbx_rq_create_bqu_WORD word0 |
| 1576 | #define lpfc_mbx_rq_create_ulp_num_SHIFT 24 |
| 1577 | #define lpfc_mbx_rq_create_ulp_num_MASK 0x000000FF |
| 1578 | #define lpfc_mbx_rq_create_ulp_num_WORD word0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1579 | struct rq_context context; |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 1580 | struct dma_address page[LPFC_MAX_RQ_PAGE]; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1581 | } request; |
| 1582 | struct { |
| 1583 | uint32_t word0; |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 1584 | #define lpfc_mbx_rq_create_q_cnt_v2_SHIFT 16 |
| 1585 | #define lpfc_mbx_rq_create_q_cnt_v2_MASK 0x0000FFFF |
| 1586 | #define lpfc_mbx_rq_create_q_cnt_v2_WORD word0 |
| 1587 | #define lpfc_mbx_rq_create_q_id_SHIFT 0 |
| 1588 | #define lpfc_mbx_rq_create_q_id_MASK 0x0000FFFF |
| 1589 | #define lpfc_mbx_rq_create_q_id_WORD word0 |
| 1590 | uint32_t doorbell_offset; |
| 1591 | uint32_t word2; |
| 1592 | #define lpfc_mbx_rq_create_bar_set_SHIFT 0 |
| 1593 | #define lpfc_mbx_rq_create_bar_set_MASK 0x0000FFFF |
| 1594 | #define lpfc_mbx_rq_create_bar_set_WORD word2 |
| 1595 | #define lpfc_mbx_rq_create_db_format_SHIFT 16 |
| 1596 | #define lpfc_mbx_rq_create_db_format_MASK 0x0000FFFF |
| 1597 | #define lpfc_mbx_rq_create_db_format_WORD word2 |
| 1598 | } response; |
| 1599 | } u; |
| 1600 | }; |
| 1601 | |
| 1602 | struct lpfc_mbx_rq_create_v2 { |
| 1603 | union lpfc_sli4_cfg_shdr cfg_shdr; |
| 1604 | union { |
| 1605 | struct { |
| 1606 | uint32_t word0; |
| 1607 | #define lpfc_mbx_rq_create_num_pages_SHIFT 0 |
| 1608 | #define lpfc_mbx_rq_create_num_pages_MASK 0x0000FFFF |
| 1609 | #define lpfc_mbx_rq_create_num_pages_WORD word0 |
| 1610 | #define lpfc_mbx_rq_create_rq_cnt_SHIFT 16 |
| 1611 | #define lpfc_mbx_rq_create_rq_cnt_MASK 0x000000FF |
| 1612 | #define lpfc_mbx_rq_create_rq_cnt_WORD word0 |
| 1613 | #define lpfc_mbx_rq_create_dua_SHIFT 16 |
| 1614 | #define lpfc_mbx_rq_create_dua_MASK 0x00000001 |
| 1615 | #define lpfc_mbx_rq_create_dua_WORD word0 |
| 1616 | #define lpfc_mbx_rq_create_bqu_SHIFT 17 |
| 1617 | #define lpfc_mbx_rq_create_bqu_MASK 0x00000001 |
| 1618 | #define lpfc_mbx_rq_create_bqu_WORD word0 |
| 1619 | #define lpfc_mbx_rq_create_ulp_num_SHIFT 24 |
| 1620 | #define lpfc_mbx_rq_create_ulp_num_MASK 0x000000FF |
| 1621 | #define lpfc_mbx_rq_create_ulp_num_WORD word0 |
| 1622 | #define lpfc_mbx_rq_create_dim_SHIFT 29 |
| 1623 | #define lpfc_mbx_rq_create_dim_MASK 0x00000001 |
| 1624 | #define lpfc_mbx_rq_create_dim_WORD word0 |
| 1625 | #define lpfc_mbx_rq_create_dfd_SHIFT 30 |
| 1626 | #define lpfc_mbx_rq_create_dfd_MASK 0x00000001 |
| 1627 | #define lpfc_mbx_rq_create_dfd_WORD word0 |
| 1628 | #define lpfc_mbx_rq_create_dnb_SHIFT 31 |
| 1629 | #define lpfc_mbx_rq_create_dnb_MASK 0x00000001 |
| 1630 | #define lpfc_mbx_rq_create_dnb_WORD word0 |
| 1631 | struct rq_context context; |
| 1632 | struct dma_address page[1]; |
| 1633 | } request; |
| 1634 | struct { |
| 1635 | uint32_t word0; |
| 1636 | #define lpfc_mbx_rq_create_q_cnt_v2_SHIFT 16 |
| 1637 | #define lpfc_mbx_rq_create_q_cnt_v2_MASK 0x0000FFFF |
| 1638 | #define lpfc_mbx_rq_create_q_cnt_v2_WORD word0 |
James Smart | 962bc51 | 2013-01-03 15:44:00 -0500 | [diff] [blame] | 1639 | #define lpfc_mbx_rq_create_q_id_SHIFT 0 |
| 1640 | #define lpfc_mbx_rq_create_q_id_MASK 0x0000FFFF |
| 1641 | #define lpfc_mbx_rq_create_q_id_WORD word0 |
| 1642 | uint32_t doorbell_offset; |
| 1643 | uint32_t word2; |
| 1644 | #define lpfc_mbx_rq_create_bar_set_SHIFT 0 |
| 1645 | #define lpfc_mbx_rq_create_bar_set_MASK 0x0000FFFF |
| 1646 | #define lpfc_mbx_rq_create_bar_set_WORD word2 |
| 1647 | #define lpfc_mbx_rq_create_db_format_SHIFT 16 |
| 1648 | #define lpfc_mbx_rq_create_db_format_MASK 0x0000FFFF |
| 1649 | #define lpfc_mbx_rq_create_db_format_WORD word2 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1650 | } response; |
| 1651 | } u; |
| 1652 | }; |
| 1653 | |
| 1654 | struct lpfc_mbx_rq_destroy { |
| 1655 | struct mbox_header header; |
| 1656 | union { |
| 1657 | struct { |
| 1658 | uint32_t word0; |
| 1659 | #define lpfc_mbx_rq_destroy_q_id_SHIFT 0 |
| 1660 | #define lpfc_mbx_rq_destroy_q_id_MASK 0x0000FFFF |
| 1661 | #define lpfc_mbx_rq_destroy_q_id_WORD word0 |
| 1662 | } request; |
| 1663 | struct { |
| 1664 | uint32_t word0; |
| 1665 | } response; |
| 1666 | } u; |
| 1667 | }; |
| 1668 | |
| 1669 | struct mq_context { |
| 1670 | uint32_t word0; |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1671 | #define lpfc_mq_context_cq_id_SHIFT 22 /* Version 0 Only */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1672 | #define lpfc_mq_context_cq_id_MASK 0x000003FF |
| 1673 | #define lpfc_mq_context_cq_id_WORD word0 |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1674 | #define lpfc_mq_context_ring_size_SHIFT 16 |
| 1675 | #define lpfc_mq_context_ring_size_MASK 0x0000000F |
| 1676 | #define lpfc_mq_context_ring_size_WORD word0 |
| 1677 | #define LPFC_MQ_RING_SIZE_16 0x5 |
| 1678 | #define LPFC_MQ_RING_SIZE_32 0x6 |
| 1679 | #define LPFC_MQ_RING_SIZE_64 0x7 |
| 1680 | #define LPFC_MQ_RING_SIZE_128 0x8 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1681 | uint32_t word1; |
| 1682 | #define lpfc_mq_context_valid_SHIFT 31 |
| 1683 | #define lpfc_mq_context_valid_MASK 0x00000001 |
| 1684 | #define lpfc_mq_context_valid_WORD word1 |
| 1685 | uint32_t reserved2; |
| 1686 | uint32_t reserved3; |
| 1687 | }; |
| 1688 | |
| 1689 | struct lpfc_mbx_mq_create { |
| 1690 | struct mbox_header header; |
| 1691 | union { |
| 1692 | struct { |
| 1693 | uint32_t word0; |
| 1694 | #define lpfc_mbx_mq_create_num_pages_SHIFT 0 |
| 1695 | #define lpfc_mbx_mq_create_num_pages_MASK 0x0000FFFF |
| 1696 | #define lpfc_mbx_mq_create_num_pages_WORD word0 |
| 1697 | struct mq_context context; |
| 1698 | struct dma_address page[LPFC_MAX_MQ_PAGE]; |
| 1699 | } request; |
| 1700 | struct { |
| 1701 | uint32_t word0; |
| 1702 | #define lpfc_mbx_mq_create_q_id_SHIFT 0 |
| 1703 | #define lpfc_mbx_mq_create_q_id_MASK 0x0000FFFF |
| 1704 | #define lpfc_mbx_mq_create_q_id_WORD word0 |
| 1705 | } response; |
| 1706 | } u; |
| 1707 | }; |
| 1708 | |
James Smart | b19a061 | 2010-04-06 14:48:51 -0400 | [diff] [blame] | 1709 | struct lpfc_mbx_mq_create_ext { |
| 1710 | struct mbox_header header; |
| 1711 | union { |
| 1712 | struct { |
| 1713 | uint32_t word0; |
James Smart | 5a6f133 | 2011-03-11 16:05:35 -0500 | [diff] [blame] | 1714 | #define lpfc_mbx_mq_create_ext_num_pages_SHIFT 0 |
| 1715 | #define lpfc_mbx_mq_create_ext_num_pages_MASK 0x0000FFFF |
| 1716 | #define lpfc_mbx_mq_create_ext_num_pages_WORD word0 |
| 1717 | #define lpfc_mbx_mq_create_ext_cq_id_SHIFT 16 /* Version 1 Only */ |
| 1718 | #define lpfc_mbx_mq_create_ext_cq_id_MASK 0x0000FFFF |
| 1719 | #define lpfc_mbx_mq_create_ext_cq_id_WORD word0 |
James Smart | b19a061 | 2010-04-06 14:48:51 -0400 | [diff] [blame] | 1720 | uint32_t async_evt_bmap; |
| 1721 | #define lpfc_mbx_mq_create_ext_async_evt_link_SHIFT LPFC_TRAILER_CODE_LINK |
| 1722 | #define lpfc_mbx_mq_create_ext_async_evt_link_MASK 0x00000001 |
| 1723 | #define lpfc_mbx_mq_create_ext_async_evt_link_WORD async_evt_bmap |
James Smart | 8b68cd5 | 2012-09-29 11:32:37 -0400 | [diff] [blame] | 1724 | #define LPFC_EVT_CODE_LINK_NO_LINK 0x0 |
| 1725 | #define LPFC_EVT_CODE_LINK_10_MBIT 0x1 |
| 1726 | #define LPFC_EVT_CODE_LINK_100_MBIT 0x2 |
| 1727 | #define LPFC_EVT_CODE_LINK_1_GBIT 0x3 |
| 1728 | #define LPFC_EVT_CODE_LINK_10_GBIT 0x4 |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 1729 | #define lpfc_mbx_mq_create_ext_async_evt_fip_SHIFT LPFC_TRAILER_CODE_FCOE |
| 1730 | #define lpfc_mbx_mq_create_ext_async_evt_fip_MASK 0x00000001 |
| 1731 | #define lpfc_mbx_mq_create_ext_async_evt_fip_WORD async_evt_bmap |
James Smart | b19a061 | 2010-04-06 14:48:51 -0400 | [diff] [blame] | 1732 | #define lpfc_mbx_mq_create_ext_async_evt_group5_SHIFT LPFC_TRAILER_CODE_GRP5 |
| 1733 | #define lpfc_mbx_mq_create_ext_async_evt_group5_MASK 0x00000001 |
| 1734 | #define lpfc_mbx_mq_create_ext_async_evt_group5_WORD async_evt_bmap |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 1735 | #define lpfc_mbx_mq_create_ext_async_evt_fc_SHIFT LPFC_TRAILER_CODE_FC |
| 1736 | #define lpfc_mbx_mq_create_ext_async_evt_fc_MASK 0x00000001 |
| 1737 | #define lpfc_mbx_mq_create_ext_async_evt_fc_WORD async_evt_bmap |
James Smart | 8b68cd5 | 2012-09-29 11:32:37 -0400 | [diff] [blame] | 1738 | #define LPFC_EVT_CODE_FC_NO_LINK 0x0 |
| 1739 | #define LPFC_EVT_CODE_FC_1_GBAUD 0x1 |
| 1740 | #define LPFC_EVT_CODE_FC_2_GBAUD 0x2 |
| 1741 | #define LPFC_EVT_CODE_FC_4_GBAUD 0x4 |
| 1742 | #define LPFC_EVT_CODE_FC_8_GBAUD 0x8 |
| 1743 | #define LPFC_EVT_CODE_FC_10_GBAUD 0xA |
| 1744 | #define LPFC_EVT_CODE_FC_16_GBAUD 0x10 |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 1745 | #define lpfc_mbx_mq_create_ext_async_evt_sli_SHIFT LPFC_TRAILER_CODE_SLI |
| 1746 | #define lpfc_mbx_mq_create_ext_async_evt_sli_MASK 0x00000001 |
| 1747 | #define lpfc_mbx_mq_create_ext_async_evt_sli_WORD async_evt_bmap |
James Smart | b19a061 | 2010-04-06 14:48:51 -0400 | [diff] [blame] | 1748 | struct mq_context context; |
| 1749 | struct dma_address page[LPFC_MAX_MQ_PAGE]; |
| 1750 | } request; |
| 1751 | struct { |
| 1752 | uint32_t word0; |
| 1753 | #define lpfc_mbx_mq_create_q_id_SHIFT 0 |
| 1754 | #define lpfc_mbx_mq_create_q_id_MASK 0x0000FFFF |
| 1755 | #define lpfc_mbx_mq_create_q_id_WORD word0 |
| 1756 | } response; |
| 1757 | } u; |
| 1758 | #define LPFC_ASYNC_EVENT_LINK_STATE 0x2 |
| 1759 | #define LPFC_ASYNC_EVENT_FCF_STATE 0x4 |
| 1760 | #define LPFC_ASYNC_EVENT_GROUP5 0x20 |
| 1761 | }; |
| 1762 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 1763 | struct lpfc_mbx_mq_destroy { |
| 1764 | struct mbox_header header; |
| 1765 | union { |
| 1766 | struct { |
| 1767 | uint32_t word0; |
| 1768 | #define lpfc_mbx_mq_destroy_q_id_SHIFT 0 |
| 1769 | #define lpfc_mbx_mq_destroy_q_id_MASK 0x0000FFFF |
| 1770 | #define lpfc_mbx_mq_destroy_q_id_WORD word0 |
| 1771 | } request; |
| 1772 | struct { |
| 1773 | uint32_t word0; |
| 1774 | } response; |
| 1775 | } u; |
| 1776 | }; |
| 1777 | |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 1778 | /* Start Gen 2 SLI4 Mailbox definitions: */ |
| 1779 | |
| 1780 | /* Define allocate-ready Gen 2 SLI4 FCoE Resource Extent Types. */ |
| 1781 | #define LPFC_RSC_TYPE_FCOE_VFI 0x20 |
| 1782 | #define LPFC_RSC_TYPE_FCOE_VPI 0x21 |
| 1783 | #define LPFC_RSC_TYPE_FCOE_RPI 0x22 |
| 1784 | #define LPFC_RSC_TYPE_FCOE_XRI 0x23 |
| 1785 | |
| 1786 | struct lpfc_mbx_get_rsrc_extent_info { |
| 1787 | struct mbox_header header; |
| 1788 | union { |
| 1789 | struct { |
| 1790 | uint32_t word4; |
| 1791 | #define lpfc_mbx_get_rsrc_extent_info_type_SHIFT 0 |
| 1792 | #define lpfc_mbx_get_rsrc_extent_info_type_MASK 0x0000FFFF |
| 1793 | #define lpfc_mbx_get_rsrc_extent_info_type_WORD word4 |
| 1794 | } req; |
| 1795 | struct { |
| 1796 | uint32_t word4; |
| 1797 | #define lpfc_mbx_get_rsrc_extent_info_cnt_SHIFT 0 |
| 1798 | #define lpfc_mbx_get_rsrc_extent_info_cnt_MASK 0x0000FFFF |
| 1799 | #define lpfc_mbx_get_rsrc_extent_info_cnt_WORD word4 |
| 1800 | #define lpfc_mbx_get_rsrc_extent_info_size_SHIFT 16 |
| 1801 | #define lpfc_mbx_get_rsrc_extent_info_size_MASK 0x0000FFFF |
| 1802 | #define lpfc_mbx_get_rsrc_extent_info_size_WORD word4 |
| 1803 | } rsp; |
| 1804 | } u; |
| 1805 | }; |
| 1806 | |
James Smart | 962bc51 | 2013-01-03 15:44:00 -0500 | [diff] [blame] | 1807 | struct lpfc_mbx_query_fw_config { |
| 1808 | struct mbox_header header; |
| 1809 | struct { |
| 1810 | uint32_t config_number; |
| 1811 | #define LPFC_FC_FCOE 0x00000007 |
| 1812 | uint32_t asic_revision; |
| 1813 | uint32_t physical_port; |
| 1814 | uint32_t function_mode; |
| 1815 | #define LPFC_FCOE_INI_MODE 0x00000040 |
| 1816 | #define LPFC_FCOE_TGT_MODE 0x00000080 |
| 1817 | #define LPFC_DUA_MODE 0x00000800 |
| 1818 | uint32_t ulp0_mode; |
| 1819 | #define LPFC_ULP_FCOE_INIT_MODE 0x00000040 |
| 1820 | #define LPFC_ULP_FCOE_TGT_MODE 0x00000080 |
| 1821 | uint32_t ulp0_nap_words[12]; |
| 1822 | uint32_t ulp1_mode; |
| 1823 | uint32_t ulp1_nap_words[12]; |
| 1824 | uint32_t function_capabilities; |
| 1825 | uint32_t cqid_base; |
| 1826 | uint32_t cqid_tot; |
| 1827 | uint32_t eqid_base; |
| 1828 | uint32_t eqid_tot; |
| 1829 | uint32_t ulp0_nap2_words[2]; |
| 1830 | uint32_t ulp1_nap2_words[2]; |
| 1831 | } rsp; |
| 1832 | }; |
| 1833 | |
James Smart | 8b017a3 | 2015-05-21 13:55:18 -0400 | [diff] [blame] | 1834 | struct lpfc_mbx_set_beacon_config { |
| 1835 | struct mbox_header header; |
| 1836 | uint32_t word4; |
| 1837 | #define lpfc_mbx_set_beacon_port_num_SHIFT 0 |
| 1838 | #define lpfc_mbx_set_beacon_port_num_MASK 0x0000003F |
| 1839 | #define lpfc_mbx_set_beacon_port_num_WORD word4 |
| 1840 | #define lpfc_mbx_set_beacon_port_type_SHIFT 6 |
| 1841 | #define lpfc_mbx_set_beacon_port_type_MASK 0x00000003 |
| 1842 | #define lpfc_mbx_set_beacon_port_type_WORD word4 |
| 1843 | #define lpfc_mbx_set_beacon_state_SHIFT 8 |
| 1844 | #define lpfc_mbx_set_beacon_state_MASK 0x000000FF |
| 1845 | #define lpfc_mbx_set_beacon_state_WORD word4 |
| 1846 | #define lpfc_mbx_set_beacon_duration_SHIFT 16 |
| 1847 | #define lpfc_mbx_set_beacon_duration_MASK 0x000000FF |
| 1848 | #define lpfc_mbx_set_beacon_duration_WORD word4 |
James Smart | 66e9e6b | 2018-06-26 08:24:27 -0700 | [diff] [blame] | 1849 | |
| 1850 | /* COMMON_SET_BEACON_CONFIG_V1 */ |
| 1851 | #define lpfc_mbx_set_beacon_duration_v1_SHIFT 16 |
| 1852 | #define lpfc_mbx_set_beacon_duration_v1_MASK 0x0000FFFF |
| 1853 | #define lpfc_mbx_set_beacon_duration_v1_WORD word4 |
| 1854 | uint32_t word5; /* RESERVED */ |
James Smart | 8b017a3 | 2015-05-21 13:55:18 -0400 | [diff] [blame] | 1855 | }; |
| 1856 | |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 1857 | struct lpfc_id_range { |
| 1858 | uint32_t word5; |
| 1859 | #define lpfc_mbx_rsrc_id_word4_0_SHIFT 0 |
| 1860 | #define lpfc_mbx_rsrc_id_word4_0_MASK 0x0000FFFF |
| 1861 | #define lpfc_mbx_rsrc_id_word4_0_WORD word5 |
| 1862 | #define lpfc_mbx_rsrc_id_word4_1_SHIFT 16 |
| 1863 | #define lpfc_mbx_rsrc_id_word4_1_MASK 0x0000FFFF |
| 1864 | #define lpfc_mbx_rsrc_id_word4_1_WORD word5 |
| 1865 | }; |
| 1866 | |
James Smart | 7ad20aa | 2011-05-24 11:44:28 -0400 | [diff] [blame] | 1867 | struct lpfc_mbx_set_link_diag_state { |
| 1868 | struct mbox_header header; |
| 1869 | union { |
| 1870 | struct { |
| 1871 | uint32_t word0; |
| 1872 | #define lpfc_mbx_set_diag_state_diag_SHIFT 0 |
| 1873 | #define lpfc_mbx_set_diag_state_diag_MASK 0x00000001 |
| 1874 | #define lpfc_mbx_set_diag_state_diag_WORD word0 |
James Smart | 9731592 | 2012-08-03 12:32:52 -0400 | [diff] [blame] | 1875 | #define lpfc_mbx_set_diag_state_diag_bit_valid_SHIFT 2 |
| 1876 | #define lpfc_mbx_set_diag_state_diag_bit_valid_MASK 0x00000001 |
| 1877 | #define lpfc_mbx_set_diag_state_diag_bit_valid_WORD word0 |
| 1878 | #define LPFC_DIAG_STATE_DIAG_BIT_VALID_NO_CHANGE 0 |
| 1879 | #define LPFC_DIAG_STATE_DIAG_BIT_VALID_CHANGE 1 |
James Smart | 7ad20aa | 2011-05-24 11:44:28 -0400 | [diff] [blame] | 1880 | #define lpfc_mbx_set_diag_state_link_num_SHIFT 16 |
| 1881 | #define lpfc_mbx_set_diag_state_link_num_MASK 0x0000003F |
| 1882 | #define lpfc_mbx_set_diag_state_link_num_WORD word0 |
| 1883 | #define lpfc_mbx_set_diag_state_link_type_SHIFT 22 |
| 1884 | #define lpfc_mbx_set_diag_state_link_type_MASK 0x00000003 |
| 1885 | #define lpfc_mbx_set_diag_state_link_type_WORD word0 |
| 1886 | } req; |
| 1887 | struct { |
| 1888 | uint32_t word0; |
| 1889 | } rsp; |
| 1890 | } u; |
| 1891 | }; |
| 1892 | |
| 1893 | struct lpfc_mbx_set_link_diag_loopback { |
| 1894 | struct mbox_header header; |
| 1895 | union { |
| 1896 | struct { |
| 1897 | uint32_t word0; |
James Smart | 9a66d99 | 2019-03-12 16:30:27 -0700 | [diff] [blame] | 1898 | #define lpfc_mbx_set_diag_lpbk_type_SHIFT 0 |
| 1899 | #define lpfc_mbx_set_diag_lpbk_type_MASK 0x00000003 |
| 1900 | #define lpfc_mbx_set_diag_lpbk_type_WORD word0 |
| 1901 | #define LPFC_DIAG_LOOPBACK_TYPE_DISABLE 0x0 |
| 1902 | #define LPFC_DIAG_LOOPBACK_TYPE_INTERNAL 0x1 |
| 1903 | #define LPFC_DIAG_LOOPBACK_TYPE_SERDES 0x2 |
| 1904 | #define LPFC_DIAG_LOOPBACK_TYPE_EXTERNAL_TRUNKED 0x3 |
| 1905 | #define lpfc_mbx_set_diag_lpbk_link_num_SHIFT 16 |
| 1906 | #define lpfc_mbx_set_diag_lpbk_link_num_MASK 0x0000003F |
| 1907 | #define lpfc_mbx_set_diag_lpbk_link_num_WORD word0 |
| 1908 | #define lpfc_mbx_set_diag_lpbk_link_type_SHIFT 22 |
| 1909 | #define lpfc_mbx_set_diag_lpbk_link_type_MASK 0x00000003 |
| 1910 | #define lpfc_mbx_set_diag_lpbk_link_type_WORD word0 |
James Smart | 7ad20aa | 2011-05-24 11:44:28 -0400 | [diff] [blame] | 1911 | } req; |
| 1912 | struct { |
| 1913 | uint32_t word0; |
| 1914 | } rsp; |
| 1915 | } u; |
| 1916 | }; |
| 1917 | |
| 1918 | struct lpfc_mbx_run_link_diag_test { |
| 1919 | struct mbox_header header; |
| 1920 | union { |
| 1921 | struct { |
| 1922 | uint32_t word0; |
| 1923 | #define lpfc_mbx_run_diag_test_link_num_SHIFT 16 |
| 1924 | #define lpfc_mbx_run_diag_test_link_num_MASK 0x0000003F |
| 1925 | #define lpfc_mbx_run_diag_test_link_num_WORD word0 |
| 1926 | #define lpfc_mbx_run_diag_test_link_type_SHIFT 22 |
| 1927 | #define lpfc_mbx_run_diag_test_link_type_MASK 0x00000003 |
| 1928 | #define lpfc_mbx_run_diag_test_link_type_WORD word0 |
| 1929 | uint32_t word1; |
| 1930 | #define lpfc_mbx_run_diag_test_test_id_SHIFT 0 |
| 1931 | #define lpfc_mbx_run_diag_test_test_id_MASK 0x0000FFFF |
| 1932 | #define lpfc_mbx_run_diag_test_test_id_WORD word1 |
| 1933 | #define lpfc_mbx_run_diag_test_loops_SHIFT 16 |
| 1934 | #define lpfc_mbx_run_diag_test_loops_MASK 0x0000FFFF |
| 1935 | #define lpfc_mbx_run_diag_test_loops_WORD word1 |
| 1936 | uint32_t word2; |
| 1937 | #define lpfc_mbx_run_diag_test_test_ver_SHIFT 0 |
| 1938 | #define lpfc_mbx_run_diag_test_test_ver_MASK 0x0000FFFF |
| 1939 | #define lpfc_mbx_run_diag_test_test_ver_WORD word2 |
| 1940 | #define lpfc_mbx_run_diag_test_err_act_SHIFT 16 |
| 1941 | #define lpfc_mbx_run_diag_test_err_act_MASK 0x000000FF |
| 1942 | #define lpfc_mbx_run_diag_test_err_act_WORD word2 |
| 1943 | } req; |
| 1944 | struct { |
| 1945 | uint32_t word0; |
| 1946 | } rsp; |
| 1947 | } u; |
| 1948 | }; |
| 1949 | |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 1950 | /* |
| 1951 | * struct lpfc_mbx_alloc_rsrc_extents: |
| 1952 | * A mbox is generically 256 bytes long. An SLI4_CONFIG mailbox requires |
| 1953 | * 6 words of header + 4 words of shared subcommand header + |
| 1954 | * 1 words of Extent-Opcode-specific header = 11 words or 44 bytes total. |
| 1955 | * |
| 1956 | * An embedded version of SLI4_CONFIG therefore has 256 - 44 = 212 bytes |
| 1957 | * for extents payload. |
| 1958 | * |
| 1959 | * 212/2 (bytes per extent) = 106 extents. |
| 1960 | * 106/2 (extents per word) = 53 words. |
| 1961 | * lpfc_id_range id is statically size to 53. |
| 1962 | * |
| 1963 | * This mailbox definition is used for ALLOC or GET_ALLOCATED |
| 1964 | * extent ranges. For ALLOC, the type and cnt are required. |
| 1965 | * For GET_ALLOCATED, only the type is required. |
| 1966 | */ |
| 1967 | struct lpfc_mbx_alloc_rsrc_extents { |
| 1968 | struct mbox_header header; |
| 1969 | union { |
| 1970 | struct { |
| 1971 | uint32_t word4; |
| 1972 | #define lpfc_mbx_alloc_rsrc_extents_type_SHIFT 0 |
| 1973 | #define lpfc_mbx_alloc_rsrc_extents_type_MASK 0x0000FFFF |
| 1974 | #define lpfc_mbx_alloc_rsrc_extents_type_WORD word4 |
| 1975 | #define lpfc_mbx_alloc_rsrc_extents_cnt_SHIFT 16 |
| 1976 | #define lpfc_mbx_alloc_rsrc_extents_cnt_MASK 0x0000FFFF |
| 1977 | #define lpfc_mbx_alloc_rsrc_extents_cnt_WORD word4 |
| 1978 | } req; |
| 1979 | struct { |
| 1980 | uint32_t word4; |
| 1981 | #define lpfc_mbx_rsrc_cnt_SHIFT 0 |
| 1982 | #define lpfc_mbx_rsrc_cnt_MASK 0x0000FFFF |
| 1983 | #define lpfc_mbx_rsrc_cnt_WORD word4 |
| 1984 | struct lpfc_id_range id[53]; |
| 1985 | } rsp; |
| 1986 | } u; |
| 1987 | }; |
| 1988 | |
| 1989 | /* |
| 1990 | * This is the non-embedded version of ALLOC or GET RSRC_EXTENTS. Word4 in this |
| 1991 | * structure shares the same SHIFT/MASK/WORD defines provided in the |
| 1992 | * mbx_alloc_rsrc_extents and mbx_get_alloc_rsrc_extents, word4, provided in |
| 1993 | * the structures defined above. This non-embedded structure provides for the |
| 1994 | * maximum number of extents supported by the port. |
| 1995 | */ |
| 1996 | struct lpfc_mbx_nembed_rsrc_extent { |
| 1997 | union lpfc_sli4_cfg_shdr cfg_shdr; |
| 1998 | uint32_t word4; |
| 1999 | struct lpfc_id_range id; |
| 2000 | }; |
| 2001 | |
| 2002 | struct lpfc_mbx_dealloc_rsrc_extents { |
| 2003 | struct mbox_header header; |
| 2004 | struct { |
| 2005 | uint32_t word4; |
| 2006 | #define lpfc_mbx_dealloc_rsrc_extents_type_SHIFT 0 |
| 2007 | #define lpfc_mbx_dealloc_rsrc_extents_type_MASK 0x0000FFFF |
| 2008 | #define lpfc_mbx_dealloc_rsrc_extents_type_WORD word4 |
| 2009 | } req; |
| 2010 | |
| 2011 | }; |
| 2012 | |
| 2013 | /* Start SLI4 FCoE specific mbox structures. */ |
| 2014 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2015 | struct lpfc_mbx_post_hdr_tmpl { |
| 2016 | struct mbox_header header; |
| 2017 | uint32_t word10; |
| 2018 | #define lpfc_mbx_post_hdr_tmpl_rpi_offset_SHIFT 0 |
| 2019 | #define lpfc_mbx_post_hdr_tmpl_rpi_offset_MASK 0x0000FFFF |
| 2020 | #define lpfc_mbx_post_hdr_tmpl_rpi_offset_WORD word10 |
| 2021 | #define lpfc_mbx_post_hdr_tmpl_page_cnt_SHIFT 16 |
| 2022 | #define lpfc_mbx_post_hdr_tmpl_page_cnt_MASK 0x0000FFFF |
| 2023 | #define lpfc_mbx_post_hdr_tmpl_page_cnt_WORD word10 |
| 2024 | uint32_t rpi_paddr_lo; |
| 2025 | uint32_t rpi_paddr_hi; |
| 2026 | }; |
| 2027 | |
| 2028 | struct sli4_sge { /* SLI-4 */ |
| 2029 | uint32_t addr_hi; |
| 2030 | uint32_t addr_lo; |
| 2031 | |
| 2032 | uint32_t word2; |
James Smart | f9bb2da | 2011-10-10 21:34:11 -0400 | [diff] [blame] | 2033 | #define lpfc_sli4_sge_offset_SHIFT 0 |
| 2034 | #define lpfc_sli4_sge_offset_MASK 0x07FFFFFF |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2035 | #define lpfc_sli4_sge_offset_WORD word2 |
James Smart | f9bb2da | 2011-10-10 21:34:11 -0400 | [diff] [blame] | 2036 | #define lpfc_sli4_sge_type_SHIFT 27 |
| 2037 | #define lpfc_sli4_sge_type_MASK 0x0000000F |
| 2038 | #define lpfc_sli4_sge_type_WORD word2 |
| 2039 | #define LPFC_SGE_TYPE_DATA 0x0 |
| 2040 | #define LPFC_SGE_TYPE_DIF 0x4 |
| 2041 | #define LPFC_SGE_TYPE_LSP 0x5 |
| 2042 | #define LPFC_SGE_TYPE_PEDIF 0x6 |
| 2043 | #define LPFC_SGE_TYPE_PESEED 0x7 |
| 2044 | #define LPFC_SGE_TYPE_DISEED 0x8 |
| 2045 | #define LPFC_SGE_TYPE_ENC 0x9 |
| 2046 | #define LPFC_SGE_TYPE_ATM 0xA |
| 2047 | #define LPFC_SGE_TYPE_SKIP 0xC |
| 2048 | #define lpfc_sli4_sge_last_SHIFT 31 /* Last SEG in the SGL sets it */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2049 | #define lpfc_sli4_sge_last_MASK 0x00000001 |
| 2050 | #define lpfc_sli4_sge_last_WORD word2 |
James Smart | 28baac7 | 2010-02-12 14:42:03 -0500 | [diff] [blame] | 2051 | uint32_t sge_len; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2052 | }; |
| 2053 | |
James Smart | d79c9e9 | 2019-08-14 16:57:09 -0700 | [diff] [blame] | 2054 | struct sli4_hybrid_sgl { |
| 2055 | struct list_head list_node; |
| 2056 | struct sli4_sge *dma_sgl; |
| 2057 | dma_addr_t dma_phys_sgl; |
| 2058 | }; |
| 2059 | |
| 2060 | struct fcp_cmd_rsp_buf { |
| 2061 | struct list_head list_node; |
| 2062 | |
| 2063 | /* for storing cmd/rsp dma alloc'ed virt_addr */ |
| 2064 | struct fcp_cmnd *fcp_cmnd; |
| 2065 | struct fcp_rsp *fcp_rsp; |
| 2066 | |
| 2067 | /* for storing this cmd/rsp's dma mapped phys addr from per CPU pool */ |
| 2068 | dma_addr_t fcp_cmd_rsp_dma_handle; |
| 2069 | }; |
| 2070 | |
James Smart | f9bb2da | 2011-10-10 21:34:11 -0400 | [diff] [blame] | 2071 | struct sli4_sge_diseed { /* SLI-4 */ |
| 2072 | uint32_t ref_tag; |
| 2073 | uint32_t ref_tag_tran; |
| 2074 | |
| 2075 | uint32_t word2; |
| 2076 | #define lpfc_sli4_sge_dif_apptran_SHIFT 0 |
| 2077 | #define lpfc_sli4_sge_dif_apptran_MASK 0x0000FFFF |
| 2078 | #define lpfc_sli4_sge_dif_apptran_WORD word2 |
| 2079 | #define lpfc_sli4_sge_dif_af_SHIFT 24 |
| 2080 | #define lpfc_sli4_sge_dif_af_MASK 0x00000001 |
| 2081 | #define lpfc_sli4_sge_dif_af_WORD word2 |
| 2082 | #define lpfc_sli4_sge_dif_na_SHIFT 25 |
| 2083 | #define lpfc_sli4_sge_dif_na_MASK 0x00000001 |
| 2084 | #define lpfc_sli4_sge_dif_na_WORD word2 |
| 2085 | #define lpfc_sli4_sge_dif_hi_SHIFT 26 |
| 2086 | #define lpfc_sli4_sge_dif_hi_MASK 0x00000001 |
| 2087 | #define lpfc_sli4_sge_dif_hi_WORD word2 |
| 2088 | #define lpfc_sli4_sge_dif_type_SHIFT 27 |
| 2089 | #define lpfc_sli4_sge_dif_type_MASK 0x0000000F |
| 2090 | #define lpfc_sli4_sge_dif_type_WORD word2 |
| 2091 | #define lpfc_sli4_sge_dif_last_SHIFT 31 /* Last SEG in the SGL sets it */ |
| 2092 | #define lpfc_sli4_sge_dif_last_MASK 0x00000001 |
| 2093 | #define lpfc_sli4_sge_dif_last_WORD word2 |
| 2094 | uint32_t word3; |
| 2095 | #define lpfc_sli4_sge_dif_apptag_SHIFT 0 |
| 2096 | #define lpfc_sli4_sge_dif_apptag_MASK 0x0000FFFF |
| 2097 | #define lpfc_sli4_sge_dif_apptag_WORD word3 |
| 2098 | #define lpfc_sli4_sge_dif_bs_SHIFT 16 |
| 2099 | #define lpfc_sli4_sge_dif_bs_MASK 0x00000007 |
| 2100 | #define lpfc_sli4_sge_dif_bs_WORD word3 |
| 2101 | #define lpfc_sli4_sge_dif_ai_SHIFT 19 |
| 2102 | #define lpfc_sli4_sge_dif_ai_MASK 0x00000001 |
| 2103 | #define lpfc_sli4_sge_dif_ai_WORD word3 |
| 2104 | #define lpfc_sli4_sge_dif_me_SHIFT 20 |
| 2105 | #define lpfc_sli4_sge_dif_me_MASK 0x00000001 |
| 2106 | #define lpfc_sli4_sge_dif_me_WORD word3 |
| 2107 | #define lpfc_sli4_sge_dif_re_SHIFT 21 |
| 2108 | #define lpfc_sli4_sge_dif_re_MASK 0x00000001 |
| 2109 | #define lpfc_sli4_sge_dif_re_WORD word3 |
| 2110 | #define lpfc_sli4_sge_dif_ce_SHIFT 22 |
| 2111 | #define lpfc_sli4_sge_dif_ce_MASK 0x00000001 |
| 2112 | #define lpfc_sli4_sge_dif_ce_WORD word3 |
| 2113 | #define lpfc_sli4_sge_dif_nr_SHIFT 23 |
| 2114 | #define lpfc_sli4_sge_dif_nr_MASK 0x00000001 |
| 2115 | #define lpfc_sli4_sge_dif_nr_WORD word3 |
| 2116 | #define lpfc_sli4_sge_dif_oprx_SHIFT 24 |
| 2117 | #define lpfc_sli4_sge_dif_oprx_MASK 0x0000000F |
| 2118 | #define lpfc_sli4_sge_dif_oprx_WORD word3 |
| 2119 | #define lpfc_sli4_sge_dif_optx_SHIFT 28 |
| 2120 | #define lpfc_sli4_sge_dif_optx_MASK 0x0000000F |
| 2121 | #define lpfc_sli4_sge_dif_optx_WORD word3 |
| 2122 | /* optx and oprx use BG_OP_IN defines in lpfc_hw.h */ |
| 2123 | }; |
| 2124 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2125 | struct fcf_record { |
| 2126 | uint32_t max_rcv_size; |
| 2127 | uint32_t fka_adv_period; |
| 2128 | uint32_t fip_priority; |
| 2129 | uint32_t word3; |
| 2130 | #define lpfc_fcf_record_mac_0_SHIFT 0 |
| 2131 | #define lpfc_fcf_record_mac_0_MASK 0x000000FF |
| 2132 | #define lpfc_fcf_record_mac_0_WORD word3 |
| 2133 | #define lpfc_fcf_record_mac_1_SHIFT 8 |
| 2134 | #define lpfc_fcf_record_mac_1_MASK 0x000000FF |
| 2135 | #define lpfc_fcf_record_mac_1_WORD word3 |
| 2136 | #define lpfc_fcf_record_mac_2_SHIFT 16 |
| 2137 | #define lpfc_fcf_record_mac_2_MASK 0x000000FF |
| 2138 | #define lpfc_fcf_record_mac_2_WORD word3 |
| 2139 | #define lpfc_fcf_record_mac_3_SHIFT 24 |
| 2140 | #define lpfc_fcf_record_mac_3_MASK 0x000000FF |
| 2141 | #define lpfc_fcf_record_mac_3_WORD word3 |
| 2142 | uint32_t word4; |
| 2143 | #define lpfc_fcf_record_mac_4_SHIFT 0 |
| 2144 | #define lpfc_fcf_record_mac_4_MASK 0x000000FF |
| 2145 | #define lpfc_fcf_record_mac_4_WORD word4 |
| 2146 | #define lpfc_fcf_record_mac_5_SHIFT 8 |
| 2147 | #define lpfc_fcf_record_mac_5_MASK 0x000000FF |
| 2148 | #define lpfc_fcf_record_mac_5_WORD word4 |
| 2149 | #define lpfc_fcf_record_fcf_avail_SHIFT 16 |
| 2150 | #define lpfc_fcf_record_fcf_avail_MASK 0x000000FF |
James Smart | 0c28758 | 2009-06-10 17:22:56 -0400 | [diff] [blame] | 2151 | #define lpfc_fcf_record_fcf_avail_WORD word4 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2152 | #define lpfc_fcf_record_mac_addr_prov_SHIFT 24 |
| 2153 | #define lpfc_fcf_record_mac_addr_prov_MASK 0x000000FF |
| 2154 | #define lpfc_fcf_record_mac_addr_prov_WORD word4 |
| 2155 | #define LPFC_FCF_FPMA 1 /* Fabric Provided MAC Address */ |
| 2156 | #define LPFC_FCF_SPMA 2 /* Server Provided MAC Address */ |
| 2157 | uint32_t word5; |
| 2158 | #define lpfc_fcf_record_fab_name_0_SHIFT 0 |
| 2159 | #define lpfc_fcf_record_fab_name_0_MASK 0x000000FF |
| 2160 | #define lpfc_fcf_record_fab_name_0_WORD word5 |
| 2161 | #define lpfc_fcf_record_fab_name_1_SHIFT 8 |
| 2162 | #define lpfc_fcf_record_fab_name_1_MASK 0x000000FF |
| 2163 | #define lpfc_fcf_record_fab_name_1_WORD word5 |
| 2164 | #define lpfc_fcf_record_fab_name_2_SHIFT 16 |
| 2165 | #define lpfc_fcf_record_fab_name_2_MASK 0x000000FF |
| 2166 | #define lpfc_fcf_record_fab_name_2_WORD word5 |
| 2167 | #define lpfc_fcf_record_fab_name_3_SHIFT 24 |
| 2168 | #define lpfc_fcf_record_fab_name_3_MASK 0x000000FF |
| 2169 | #define lpfc_fcf_record_fab_name_3_WORD word5 |
| 2170 | uint32_t word6; |
| 2171 | #define lpfc_fcf_record_fab_name_4_SHIFT 0 |
| 2172 | #define lpfc_fcf_record_fab_name_4_MASK 0x000000FF |
| 2173 | #define lpfc_fcf_record_fab_name_4_WORD word6 |
| 2174 | #define lpfc_fcf_record_fab_name_5_SHIFT 8 |
| 2175 | #define lpfc_fcf_record_fab_name_5_MASK 0x000000FF |
| 2176 | #define lpfc_fcf_record_fab_name_5_WORD word6 |
| 2177 | #define lpfc_fcf_record_fab_name_6_SHIFT 16 |
| 2178 | #define lpfc_fcf_record_fab_name_6_MASK 0x000000FF |
| 2179 | #define lpfc_fcf_record_fab_name_6_WORD word6 |
| 2180 | #define lpfc_fcf_record_fab_name_7_SHIFT 24 |
| 2181 | #define lpfc_fcf_record_fab_name_7_MASK 0x000000FF |
| 2182 | #define lpfc_fcf_record_fab_name_7_WORD word6 |
| 2183 | uint32_t word7; |
| 2184 | #define lpfc_fcf_record_fc_map_0_SHIFT 0 |
| 2185 | #define lpfc_fcf_record_fc_map_0_MASK 0x000000FF |
| 2186 | #define lpfc_fcf_record_fc_map_0_WORD word7 |
| 2187 | #define lpfc_fcf_record_fc_map_1_SHIFT 8 |
| 2188 | #define lpfc_fcf_record_fc_map_1_MASK 0x000000FF |
| 2189 | #define lpfc_fcf_record_fc_map_1_WORD word7 |
| 2190 | #define lpfc_fcf_record_fc_map_2_SHIFT 16 |
| 2191 | #define lpfc_fcf_record_fc_map_2_MASK 0x000000FF |
| 2192 | #define lpfc_fcf_record_fc_map_2_WORD word7 |
| 2193 | #define lpfc_fcf_record_fcf_valid_SHIFT 24 |
James Smart | 26979ce | 2012-09-29 11:31:55 -0400 | [diff] [blame] | 2194 | #define lpfc_fcf_record_fcf_valid_MASK 0x00000001 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2195 | #define lpfc_fcf_record_fcf_valid_WORD word7 |
James Smart | 26979ce | 2012-09-29 11:31:55 -0400 | [diff] [blame] | 2196 | #define lpfc_fcf_record_fcf_fc_SHIFT 25 |
| 2197 | #define lpfc_fcf_record_fcf_fc_MASK 0x00000001 |
| 2198 | #define lpfc_fcf_record_fcf_fc_WORD word7 |
| 2199 | #define lpfc_fcf_record_fcf_sol_SHIFT 31 |
| 2200 | #define lpfc_fcf_record_fcf_sol_MASK 0x00000001 |
| 2201 | #define lpfc_fcf_record_fcf_sol_WORD word7 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2202 | uint32_t word8; |
| 2203 | #define lpfc_fcf_record_fcf_index_SHIFT 0 |
| 2204 | #define lpfc_fcf_record_fcf_index_MASK 0x0000FFFF |
| 2205 | #define lpfc_fcf_record_fcf_index_WORD word8 |
| 2206 | #define lpfc_fcf_record_fcf_state_SHIFT 16 |
| 2207 | #define lpfc_fcf_record_fcf_state_MASK 0x0000FFFF |
| 2208 | #define lpfc_fcf_record_fcf_state_WORD word8 |
| 2209 | uint8_t vlan_bitmap[512]; |
James Smart | 8fa3851 | 2009-07-19 10:01:03 -0400 | [diff] [blame] | 2210 | uint32_t word137; |
| 2211 | #define lpfc_fcf_record_switch_name_0_SHIFT 0 |
| 2212 | #define lpfc_fcf_record_switch_name_0_MASK 0x000000FF |
| 2213 | #define lpfc_fcf_record_switch_name_0_WORD word137 |
| 2214 | #define lpfc_fcf_record_switch_name_1_SHIFT 8 |
| 2215 | #define lpfc_fcf_record_switch_name_1_MASK 0x000000FF |
| 2216 | #define lpfc_fcf_record_switch_name_1_WORD word137 |
| 2217 | #define lpfc_fcf_record_switch_name_2_SHIFT 16 |
| 2218 | #define lpfc_fcf_record_switch_name_2_MASK 0x000000FF |
| 2219 | #define lpfc_fcf_record_switch_name_2_WORD word137 |
| 2220 | #define lpfc_fcf_record_switch_name_3_SHIFT 24 |
| 2221 | #define lpfc_fcf_record_switch_name_3_MASK 0x000000FF |
| 2222 | #define lpfc_fcf_record_switch_name_3_WORD word137 |
| 2223 | uint32_t word138; |
| 2224 | #define lpfc_fcf_record_switch_name_4_SHIFT 0 |
| 2225 | #define lpfc_fcf_record_switch_name_4_MASK 0x000000FF |
| 2226 | #define lpfc_fcf_record_switch_name_4_WORD word138 |
| 2227 | #define lpfc_fcf_record_switch_name_5_SHIFT 8 |
| 2228 | #define lpfc_fcf_record_switch_name_5_MASK 0x000000FF |
| 2229 | #define lpfc_fcf_record_switch_name_5_WORD word138 |
| 2230 | #define lpfc_fcf_record_switch_name_6_SHIFT 16 |
| 2231 | #define lpfc_fcf_record_switch_name_6_MASK 0x000000FF |
| 2232 | #define lpfc_fcf_record_switch_name_6_WORD word138 |
| 2233 | #define lpfc_fcf_record_switch_name_7_SHIFT 24 |
| 2234 | #define lpfc_fcf_record_switch_name_7_MASK 0x000000FF |
| 2235 | #define lpfc_fcf_record_switch_name_7_WORD word138 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2236 | }; |
| 2237 | |
| 2238 | struct lpfc_mbx_read_fcf_tbl { |
| 2239 | union lpfc_sli4_cfg_shdr cfg_shdr; |
| 2240 | union { |
| 2241 | struct { |
| 2242 | uint32_t word10; |
| 2243 | #define lpfc_mbx_read_fcf_tbl_indx_SHIFT 0 |
| 2244 | #define lpfc_mbx_read_fcf_tbl_indx_MASK 0x0000FFFF |
| 2245 | #define lpfc_mbx_read_fcf_tbl_indx_WORD word10 |
| 2246 | } request; |
| 2247 | struct { |
| 2248 | uint32_t eventag; |
| 2249 | } response; |
| 2250 | } u; |
| 2251 | uint32_t word11; |
| 2252 | #define lpfc_mbx_read_fcf_tbl_nxt_vindx_SHIFT 0 |
| 2253 | #define lpfc_mbx_read_fcf_tbl_nxt_vindx_MASK 0x0000FFFF |
| 2254 | #define lpfc_mbx_read_fcf_tbl_nxt_vindx_WORD word11 |
| 2255 | }; |
| 2256 | |
| 2257 | struct lpfc_mbx_add_fcf_tbl_entry { |
| 2258 | union lpfc_sli4_cfg_shdr cfg_shdr; |
| 2259 | uint32_t word10; |
| 2260 | #define lpfc_mbx_add_fcf_tbl_fcfi_SHIFT 0 |
| 2261 | #define lpfc_mbx_add_fcf_tbl_fcfi_MASK 0x0000FFFF |
| 2262 | #define lpfc_mbx_add_fcf_tbl_fcfi_WORD word10 |
| 2263 | struct lpfc_mbx_sge fcf_sge; |
| 2264 | }; |
| 2265 | |
| 2266 | struct lpfc_mbx_del_fcf_tbl_entry { |
| 2267 | struct mbox_header header; |
| 2268 | uint32_t word10; |
| 2269 | #define lpfc_mbx_del_fcf_tbl_count_SHIFT 0 |
| 2270 | #define lpfc_mbx_del_fcf_tbl_count_MASK 0x0000FFFF |
| 2271 | #define lpfc_mbx_del_fcf_tbl_count_WORD word10 |
| 2272 | #define lpfc_mbx_del_fcf_tbl_index_SHIFT 16 |
| 2273 | #define lpfc_mbx_del_fcf_tbl_index_MASK 0x0000FFFF |
| 2274 | #define lpfc_mbx_del_fcf_tbl_index_WORD word10 |
| 2275 | }; |
| 2276 | |
James Smart | ecfd03c | 2010-02-12 14:41:27 -0500 | [diff] [blame] | 2277 | struct lpfc_mbx_redisc_fcf_tbl { |
| 2278 | struct mbox_header header; |
| 2279 | uint32_t word10; |
| 2280 | #define lpfc_mbx_redisc_fcf_count_SHIFT 0 |
| 2281 | #define lpfc_mbx_redisc_fcf_count_MASK 0x0000FFFF |
| 2282 | #define lpfc_mbx_redisc_fcf_count_WORD word10 |
| 2283 | uint32_t resvd; |
| 2284 | uint32_t word12; |
| 2285 | #define lpfc_mbx_redisc_fcf_index_SHIFT 0 |
| 2286 | #define lpfc_mbx_redisc_fcf_index_MASK 0x0000FFFF |
| 2287 | #define lpfc_mbx_redisc_fcf_index_WORD word12 |
| 2288 | }; |
| 2289 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2290 | /* Status field for embedded SLI_CONFIG mailbox command */ |
| 2291 | #define STATUS_SUCCESS 0x0 |
| 2292 | #define STATUS_FAILED 0x1 |
| 2293 | #define STATUS_ILLEGAL_REQUEST 0x2 |
| 2294 | #define STATUS_ILLEGAL_FIELD 0x3 |
| 2295 | #define STATUS_INSUFFICIENT_BUFFER 0x4 |
| 2296 | #define STATUS_UNAUTHORIZED_REQUEST 0x5 |
| 2297 | #define STATUS_FLASHROM_SAVE_FAILED 0x17 |
| 2298 | #define STATUS_FLASHROM_RESTORE_FAILED 0x18 |
| 2299 | #define STATUS_ICCBINDEX_ALLOC_FAILED 0x1a |
| 2300 | #define STATUS_IOCTLHANDLE_ALLOC_FAILED 0x1b |
| 2301 | #define STATUS_INVALID_PHY_ADDR_FROM_OSM 0x1c |
| 2302 | #define STATUS_INVALID_PHY_ADDR_LEN_FROM_OSM 0x1d |
| 2303 | #define STATUS_ASSERT_FAILED 0x1e |
| 2304 | #define STATUS_INVALID_SESSION 0x1f |
| 2305 | #define STATUS_INVALID_CONNECTION 0x20 |
| 2306 | #define STATUS_BTL_PATH_EXCEEDS_OSM_LIMIT 0x21 |
| 2307 | #define STATUS_BTL_NO_FREE_SLOT_PATH 0x24 |
| 2308 | #define STATUS_BTL_NO_FREE_SLOT_TGTID 0x25 |
| 2309 | #define STATUS_OSM_DEVSLOT_NOT_FOUND 0x26 |
| 2310 | #define STATUS_FLASHROM_READ_FAILED 0x27 |
| 2311 | #define STATUS_POLL_IOCTL_TIMEOUT 0x28 |
| 2312 | #define STATUS_ERROR_ACITMAIN 0x2a |
| 2313 | #define STATUS_REBOOT_REQUIRED 0x2c |
| 2314 | #define STATUS_FCF_IN_USE 0x3a |
James Smart | def9c7a | 2009-12-21 17:02:28 -0500 | [diff] [blame] | 2315 | #define STATUS_FCF_TABLE_EMPTY 0x43 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2316 | |
James Smart | 481ad96 | 2015-05-22 10:42:35 -0400 | [diff] [blame] | 2317 | /* |
| 2318 | * Additional status field for embedded SLI_CONFIG mailbox |
| 2319 | * command. |
| 2320 | */ |
| 2321 | #define ADD_STATUS_OPERATION_ALREADY_ACTIVE 0x67 |
James Smart | 1feb820 | 2018-02-22 08:18:47 -0800 | [diff] [blame] | 2322 | #define ADD_STATUS_FW_NOT_SUPPORTED 0xEB |
James Smart | 66e9e6b | 2018-06-26 08:24:27 -0700 | [diff] [blame] | 2323 | #define ADD_STATUS_INVALID_REQUEST 0x4B |
James Smart | 0a5ce73 | 2019-10-18 14:18:18 -0700 | [diff] [blame] | 2324 | #define ADD_STATUS_FW_DOWNLOAD_HW_DISABLED 0x58 |
James Smart | 481ad96 | 2015-05-22 10:42:35 -0400 | [diff] [blame] | 2325 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2326 | struct lpfc_mbx_sli4_config { |
| 2327 | struct mbox_header header; |
| 2328 | }; |
| 2329 | |
| 2330 | struct lpfc_mbx_init_vfi { |
| 2331 | uint32_t word1; |
| 2332 | #define lpfc_init_vfi_vr_SHIFT 31 |
| 2333 | #define lpfc_init_vfi_vr_MASK 0x00000001 |
| 2334 | #define lpfc_init_vfi_vr_WORD word1 |
| 2335 | #define lpfc_init_vfi_vt_SHIFT 30 |
| 2336 | #define lpfc_init_vfi_vt_MASK 0x00000001 |
| 2337 | #define lpfc_init_vfi_vt_WORD word1 |
| 2338 | #define lpfc_init_vfi_vf_SHIFT 29 |
| 2339 | #define lpfc_init_vfi_vf_MASK 0x00000001 |
| 2340 | #define lpfc_init_vfi_vf_WORD word1 |
James Smart | 76a95d7 | 2010-11-20 23:11:48 -0500 | [diff] [blame] | 2341 | #define lpfc_init_vfi_vp_SHIFT 28 |
| 2342 | #define lpfc_init_vfi_vp_MASK 0x00000001 |
| 2343 | #define lpfc_init_vfi_vp_WORD word1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2344 | #define lpfc_init_vfi_vfi_SHIFT 0 |
| 2345 | #define lpfc_init_vfi_vfi_MASK 0x0000FFFF |
| 2346 | #define lpfc_init_vfi_vfi_WORD word1 |
| 2347 | uint32_t word2; |
James Smart | 76a95d7 | 2010-11-20 23:11:48 -0500 | [diff] [blame] | 2348 | #define lpfc_init_vfi_vpi_SHIFT 16 |
| 2349 | #define lpfc_init_vfi_vpi_MASK 0x0000FFFF |
| 2350 | #define lpfc_init_vfi_vpi_WORD word2 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2351 | #define lpfc_init_vfi_fcfi_SHIFT 0 |
| 2352 | #define lpfc_init_vfi_fcfi_MASK 0x0000FFFF |
| 2353 | #define lpfc_init_vfi_fcfi_WORD word2 |
| 2354 | uint32_t word3; |
| 2355 | #define lpfc_init_vfi_pri_SHIFT 13 |
| 2356 | #define lpfc_init_vfi_pri_MASK 0x00000007 |
| 2357 | #define lpfc_init_vfi_pri_WORD word3 |
| 2358 | #define lpfc_init_vfi_vf_id_SHIFT 1 |
| 2359 | #define lpfc_init_vfi_vf_id_MASK 0x00000FFF |
| 2360 | #define lpfc_init_vfi_vf_id_WORD word3 |
| 2361 | uint32_t word4; |
| 2362 | #define lpfc_init_vfi_hop_count_SHIFT 24 |
| 2363 | #define lpfc_init_vfi_hop_count_MASK 0x000000FF |
| 2364 | #define lpfc_init_vfi_hop_count_WORD word4 |
| 2365 | }; |
James Smart | df9e1b5 | 2011-12-13 13:22:17 -0500 | [diff] [blame] | 2366 | #define MBX_VFI_IN_USE 0x9F02 |
| 2367 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2368 | |
| 2369 | struct lpfc_mbx_reg_vfi { |
| 2370 | uint32_t word1; |
James Smart | ae05ebe | 2013-03-01 16:35:38 -0500 | [diff] [blame] | 2371 | #define lpfc_reg_vfi_upd_SHIFT 29 |
| 2372 | #define lpfc_reg_vfi_upd_MASK 0x00000001 |
| 2373 | #define lpfc_reg_vfi_upd_WORD word1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2374 | #define lpfc_reg_vfi_vp_SHIFT 28 |
| 2375 | #define lpfc_reg_vfi_vp_MASK 0x00000001 |
| 2376 | #define lpfc_reg_vfi_vp_WORD word1 |
| 2377 | #define lpfc_reg_vfi_vfi_SHIFT 0 |
| 2378 | #define lpfc_reg_vfi_vfi_MASK 0x0000FFFF |
| 2379 | #define lpfc_reg_vfi_vfi_WORD word1 |
| 2380 | uint32_t word2; |
| 2381 | #define lpfc_reg_vfi_vpi_SHIFT 16 |
| 2382 | #define lpfc_reg_vfi_vpi_MASK 0x0000FFFF |
| 2383 | #define lpfc_reg_vfi_vpi_WORD word2 |
| 2384 | #define lpfc_reg_vfi_fcfi_SHIFT 0 |
| 2385 | #define lpfc_reg_vfi_fcfi_MASK 0x0000FFFF |
| 2386 | #define lpfc_reg_vfi_fcfi_WORD word2 |
James Smart | c868595 | 2009-11-18 15:39:16 -0500 | [diff] [blame] | 2387 | uint32_t wwn[2]; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2388 | struct ulp_bde64 bde; |
James Smart | b19a061 | 2010-04-06 14:48:51 -0400 | [diff] [blame] | 2389 | uint32_t e_d_tov; |
| 2390 | uint32_t r_a_tov; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2391 | uint32_t word10; |
James Smart | 44fd7fe | 2017-08-23 16:55:47 -0700 | [diff] [blame] | 2392 | #define lpfc_reg_vfi_nport_id_SHIFT 0 |
| 2393 | #define lpfc_reg_vfi_nport_id_MASK 0x00FFFFFF |
| 2394 | #define lpfc_reg_vfi_nport_id_WORD word10 |
| 2395 | #define lpfc_reg_vfi_bbcr_SHIFT 27 |
| 2396 | #define lpfc_reg_vfi_bbcr_MASK 0x00000001 |
| 2397 | #define lpfc_reg_vfi_bbcr_WORD word10 |
| 2398 | #define lpfc_reg_vfi_bbscn_SHIFT 28 |
| 2399 | #define lpfc_reg_vfi_bbscn_MASK 0x0000000F |
| 2400 | #define lpfc_reg_vfi_bbscn_WORD word10 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2401 | }; |
| 2402 | |
| 2403 | struct lpfc_mbx_init_vpi { |
| 2404 | uint32_t word1; |
| 2405 | #define lpfc_init_vpi_vfi_SHIFT 16 |
| 2406 | #define lpfc_init_vpi_vfi_MASK 0x0000FFFF |
| 2407 | #define lpfc_init_vpi_vfi_WORD word1 |
| 2408 | #define lpfc_init_vpi_vpi_SHIFT 0 |
| 2409 | #define lpfc_init_vpi_vpi_MASK 0x0000FFFF |
| 2410 | #define lpfc_init_vpi_vpi_WORD word1 |
| 2411 | }; |
| 2412 | |
| 2413 | struct lpfc_mbx_read_vpi { |
| 2414 | uint32_t word1_rsvd; |
| 2415 | uint32_t word2; |
| 2416 | #define lpfc_mbx_read_vpi_vnportid_SHIFT 0 |
| 2417 | #define lpfc_mbx_read_vpi_vnportid_MASK 0x00FFFFFF |
| 2418 | #define lpfc_mbx_read_vpi_vnportid_WORD word2 |
| 2419 | uint32_t word3_rsvd; |
| 2420 | uint32_t word4; |
| 2421 | #define lpfc_mbx_read_vpi_acq_alpa_SHIFT 0 |
| 2422 | #define lpfc_mbx_read_vpi_acq_alpa_MASK 0x000000FF |
| 2423 | #define lpfc_mbx_read_vpi_acq_alpa_WORD word4 |
| 2424 | #define lpfc_mbx_read_vpi_pb_SHIFT 15 |
| 2425 | #define lpfc_mbx_read_vpi_pb_MASK 0x00000001 |
| 2426 | #define lpfc_mbx_read_vpi_pb_WORD word4 |
| 2427 | #define lpfc_mbx_read_vpi_spec_alpa_SHIFT 16 |
| 2428 | #define lpfc_mbx_read_vpi_spec_alpa_MASK 0x000000FF |
| 2429 | #define lpfc_mbx_read_vpi_spec_alpa_WORD word4 |
| 2430 | #define lpfc_mbx_read_vpi_ns_SHIFT 30 |
| 2431 | #define lpfc_mbx_read_vpi_ns_MASK 0x00000001 |
| 2432 | #define lpfc_mbx_read_vpi_ns_WORD word4 |
| 2433 | #define lpfc_mbx_read_vpi_hl_SHIFT 31 |
| 2434 | #define lpfc_mbx_read_vpi_hl_MASK 0x00000001 |
| 2435 | #define lpfc_mbx_read_vpi_hl_WORD word4 |
| 2436 | uint32_t word5_rsvd; |
| 2437 | uint32_t word6; |
| 2438 | #define lpfc_mbx_read_vpi_vpi_SHIFT 0 |
| 2439 | #define lpfc_mbx_read_vpi_vpi_MASK 0x0000FFFF |
| 2440 | #define lpfc_mbx_read_vpi_vpi_WORD word6 |
| 2441 | uint32_t word7; |
| 2442 | #define lpfc_mbx_read_vpi_mac_0_SHIFT 0 |
| 2443 | #define lpfc_mbx_read_vpi_mac_0_MASK 0x000000FF |
| 2444 | #define lpfc_mbx_read_vpi_mac_0_WORD word7 |
| 2445 | #define lpfc_mbx_read_vpi_mac_1_SHIFT 8 |
| 2446 | #define lpfc_mbx_read_vpi_mac_1_MASK 0x000000FF |
| 2447 | #define lpfc_mbx_read_vpi_mac_1_WORD word7 |
| 2448 | #define lpfc_mbx_read_vpi_mac_2_SHIFT 16 |
| 2449 | #define lpfc_mbx_read_vpi_mac_2_MASK 0x000000FF |
| 2450 | #define lpfc_mbx_read_vpi_mac_2_WORD word7 |
| 2451 | #define lpfc_mbx_read_vpi_mac_3_SHIFT 24 |
| 2452 | #define lpfc_mbx_read_vpi_mac_3_MASK 0x000000FF |
| 2453 | #define lpfc_mbx_read_vpi_mac_3_WORD word7 |
| 2454 | uint32_t word8; |
| 2455 | #define lpfc_mbx_read_vpi_mac_4_SHIFT 0 |
| 2456 | #define lpfc_mbx_read_vpi_mac_4_MASK 0x000000FF |
| 2457 | #define lpfc_mbx_read_vpi_mac_4_WORD word8 |
| 2458 | #define lpfc_mbx_read_vpi_mac_5_SHIFT 8 |
| 2459 | #define lpfc_mbx_read_vpi_mac_5_MASK 0x000000FF |
| 2460 | #define lpfc_mbx_read_vpi_mac_5_WORD word8 |
| 2461 | #define lpfc_mbx_read_vpi_vlan_tag_SHIFT 16 |
| 2462 | #define lpfc_mbx_read_vpi_vlan_tag_MASK 0x00000FFF |
| 2463 | #define lpfc_mbx_read_vpi_vlan_tag_WORD word8 |
| 2464 | #define lpfc_mbx_read_vpi_vv_SHIFT 28 |
| 2465 | #define lpfc_mbx_read_vpi_vv_MASK 0x0000001 |
| 2466 | #define lpfc_mbx_read_vpi_vv_WORD word8 |
| 2467 | }; |
| 2468 | |
| 2469 | struct lpfc_mbx_unreg_vfi { |
| 2470 | uint32_t word1_rsvd; |
| 2471 | uint32_t word2; |
| 2472 | #define lpfc_unreg_vfi_vfi_SHIFT 0 |
| 2473 | #define lpfc_unreg_vfi_vfi_MASK 0x0000FFFF |
| 2474 | #define lpfc_unreg_vfi_vfi_WORD word2 |
| 2475 | }; |
| 2476 | |
| 2477 | struct lpfc_mbx_resume_rpi { |
| 2478 | uint32_t word1; |
James Smart | 8fa3851 | 2009-07-19 10:01:03 -0400 | [diff] [blame] | 2479 | #define lpfc_resume_rpi_index_SHIFT 0 |
| 2480 | #define lpfc_resume_rpi_index_MASK 0x0000FFFF |
| 2481 | #define lpfc_resume_rpi_index_WORD word1 |
| 2482 | #define lpfc_resume_rpi_ii_SHIFT 30 |
| 2483 | #define lpfc_resume_rpi_ii_MASK 0x00000003 |
| 2484 | #define lpfc_resume_rpi_ii_WORD word1 |
| 2485 | #define RESUME_INDEX_RPI 0 |
| 2486 | #define RESUME_INDEX_VPI 1 |
| 2487 | #define RESUME_INDEX_VFI 2 |
| 2488 | #define RESUME_INDEX_FCFI 3 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2489 | uint32_t event_tag; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2490 | }; |
| 2491 | |
| 2492 | #define REG_FCF_INVALID_QID 0xFFFF |
| 2493 | struct lpfc_mbx_reg_fcfi { |
| 2494 | uint32_t word1; |
| 2495 | #define lpfc_reg_fcfi_info_index_SHIFT 0 |
| 2496 | #define lpfc_reg_fcfi_info_index_MASK 0x0000FFFF |
| 2497 | #define lpfc_reg_fcfi_info_index_WORD word1 |
| 2498 | #define lpfc_reg_fcfi_fcfi_SHIFT 16 |
| 2499 | #define lpfc_reg_fcfi_fcfi_MASK 0x0000FFFF |
| 2500 | #define lpfc_reg_fcfi_fcfi_WORD word1 |
| 2501 | uint32_t word2; |
| 2502 | #define lpfc_reg_fcfi_rq_id1_SHIFT 0 |
| 2503 | #define lpfc_reg_fcfi_rq_id1_MASK 0x0000FFFF |
| 2504 | #define lpfc_reg_fcfi_rq_id1_WORD word2 |
| 2505 | #define lpfc_reg_fcfi_rq_id0_SHIFT 16 |
| 2506 | #define lpfc_reg_fcfi_rq_id0_MASK 0x0000FFFF |
| 2507 | #define lpfc_reg_fcfi_rq_id0_WORD word2 |
| 2508 | uint32_t word3; |
| 2509 | #define lpfc_reg_fcfi_rq_id3_SHIFT 0 |
| 2510 | #define lpfc_reg_fcfi_rq_id3_MASK 0x0000FFFF |
| 2511 | #define lpfc_reg_fcfi_rq_id3_WORD word3 |
| 2512 | #define lpfc_reg_fcfi_rq_id2_SHIFT 16 |
| 2513 | #define lpfc_reg_fcfi_rq_id2_MASK 0x0000FFFF |
| 2514 | #define lpfc_reg_fcfi_rq_id2_WORD word3 |
| 2515 | uint32_t word4; |
| 2516 | #define lpfc_reg_fcfi_type_match0_SHIFT 24 |
| 2517 | #define lpfc_reg_fcfi_type_match0_MASK 0x000000FF |
| 2518 | #define lpfc_reg_fcfi_type_match0_WORD word4 |
| 2519 | #define lpfc_reg_fcfi_type_mask0_SHIFT 16 |
| 2520 | #define lpfc_reg_fcfi_type_mask0_MASK 0x000000FF |
| 2521 | #define lpfc_reg_fcfi_type_mask0_WORD word4 |
| 2522 | #define lpfc_reg_fcfi_rctl_match0_SHIFT 8 |
| 2523 | #define lpfc_reg_fcfi_rctl_match0_MASK 0x000000FF |
| 2524 | #define lpfc_reg_fcfi_rctl_match0_WORD word4 |
| 2525 | #define lpfc_reg_fcfi_rctl_mask0_SHIFT 0 |
| 2526 | #define lpfc_reg_fcfi_rctl_mask0_MASK 0x000000FF |
| 2527 | #define lpfc_reg_fcfi_rctl_mask0_WORD word4 |
| 2528 | uint32_t word5; |
| 2529 | #define lpfc_reg_fcfi_type_match1_SHIFT 24 |
| 2530 | #define lpfc_reg_fcfi_type_match1_MASK 0x000000FF |
| 2531 | #define lpfc_reg_fcfi_type_match1_WORD word5 |
| 2532 | #define lpfc_reg_fcfi_type_mask1_SHIFT 16 |
| 2533 | #define lpfc_reg_fcfi_type_mask1_MASK 0x000000FF |
| 2534 | #define lpfc_reg_fcfi_type_mask1_WORD word5 |
| 2535 | #define lpfc_reg_fcfi_rctl_match1_SHIFT 8 |
| 2536 | #define lpfc_reg_fcfi_rctl_match1_MASK 0x000000FF |
| 2537 | #define lpfc_reg_fcfi_rctl_match1_WORD word5 |
| 2538 | #define lpfc_reg_fcfi_rctl_mask1_SHIFT 0 |
| 2539 | #define lpfc_reg_fcfi_rctl_mask1_MASK 0x000000FF |
| 2540 | #define lpfc_reg_fcfi_rctl_mask1_WORD word5 |
| 2541 | uint32_t word6; |
| 2542 | #define lpfc_reg_fcfi_type_match2_SHIFT 24 |
| 2543 | #define lpfc_reg_fcfi_type_match2_MASK 0x000000FF |
| 2544 | #define lpfc_reg_fcfi_type_match2_WORD word6 |
| 2545 | #define lpfc_reg_fcfi_type_mask2_SHIFT 16 |
| 2546 | #define lpfc_reg_fcfi_type_mask2_MASK 0x000000FF |
| 2547 | #define lpfc_reg_fcfi_type_mask2_WORD word6 |
| 2548 | #define lpfc_reg_fcfi_rctl_match2_SHIFT 8 |
| 2549 | #define lpfc_reg_fcfi_rctl_match2_MASK 0x000000FF |
| 2550 | #define lpfc_reg_fcfi_rctl_match2_WORD word6 |
| 2551 | #define lpfc_reg_fcfi_rctl_mask2_SHIFT 0 |
| 2552 | #define lpfc_reg_fcfi_rctl_mask2_MASK 0x000000FF |
| 2553 | #define lpfc_reg_fcfi_rctl_mask2_WORD word6 |
| 2554 | uint32_t word7; |
| 2555 | #define lpfc_reg_fcfi_type_match3_SHIFT 24 |
| 2556 | #define lpfc_reg_fcfi_type_match3_MASK 0x000000FF |
| 2557 | #define lpfc_reg_fcfi_type_match3_WORD word7 |
| 2558 | #define lpfc_reg_fcfi_type_mask3_SHIFT 16 |
| 2559 | #define lpfc_reg_fcfi_type_mask3_MASK 0x000000FF |
| 2560 | #define lpfc_reg_fcfi_type_mask3_WORD word7 |
| 2561 | #define lpfc_reg_fcfi_rctl_match3_SHIFT 8 |
| 2562 | #define lpfc_reg_fcfi_rctl_match3_MASK 0x000000FF |
| 2563 | #define lpfc_reg_fcfi_rctl_match3_WORD word7 |
| 2564 | #define lpfc_reg_fcfi_rctl_mask3_SHIFT 0 |
| 2565 | #define lpfc_reg_fcfi_rctl_mask3_MASK 0x000000FF |
| 2566 | #define lpfc_reg_fcfi_rctl_mask3_WORD word7 |
| 2567 | uint32_t word8; |
| 2568 | #define lpfc_reg_fcfi_mam_SHIFT 13 |
| 2569 | #define lpfc_reg_fcfi_mam_MASK 0x00000003 |
| 2570 | #define lpfc_reg_fcfi_mam_WORD word8 |
| 2571 | #define LPFC_MAM_BOTH 0 /* Both SPMA and FPMA */ |
| 2572 | #define LPFC_MAM_SPMA 1 /* Server Provided MAC Address */ |
| 2573 | #define LPFC_MAM_FPMA 2 /* Fabric Provided MAC Address */ |
| 2574 | #define lpfc_reg_fcfi_vv_SHIFT 12 |
| 2575 | #define lpfc_reg_fcfi_vv_MASK 0x00000001 |
| 2576 | #define lpfc_reg_fcfi_vv_WORD word8 |
| 2577 | #define lpfc_reg_fcfi_vlan_tag_SHIFT 0 |
| 2578 | #define lpfc_reg_fcfi_vlan_tag_MASK 0x00000FFF |
| 2579 | #define lpfc_reg_fcfi_vlan_tag_WORD word8 |
| 2580 | }; |
| 2581 | |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 2582 | struct lpfc_mbx_reg_fcfi_mrq { |
| 2583 | uint32_t word1; |
| 2584 | #define lpfc_reg_fcfi_mrq_info_index_SHIFT 0 |
| 2585 | #define lpfc_reg_fcfi_mrq_info_index_MASK 0x0000FFFF |
| 2586 | #define lpfc_reg_fcfi_mrq_info_index_WORD word1 |
| 2587 | #define lpfc_reg_fcfi_mrq_fcfi_SHIFT 16 |
| 2588 | #define lpfc_reg_fcfi_mrq_fcfi_MASK 0x0000FFFF |
| 2589 | #define lpfc_reg_fcfi_mrq_fcfi_WORD word1 |
| 2590 | uint32_t word2; |
| 2591 | #define lpfc_reg_fcfi_mrq_rq_id1_SHIFT 0 |
| 2592 | #define lpfc_reg_fcfi_mrq_rq_id1_MASK 0x0000FFFF |
| 2593 | #define lpfc_reg_fcfi_mrq_rq_id1_WORD word2 |
| 2594 | #define lpfc_reg_fcfi_mrq_rq_id0_SHIFT 16 |
| 2595 | #define lpfc_reg_fcfi_mrq_rq_id0_MASK 0x0000FFFF |
| 2596 | #define lpfc_reg_fcfi_mrq_rq_id0_WORD word2 |
| 2597 | uint32_t word3; |
| 2598 | #define lpfc_reg_fcfi_mrq_rq_id3_SHIFT 0 |
| 2599 | #define lpfc_reg_fcfi_mrq_rq_id3_MASK 0x0000FFFF |
| 2600 | #define lpfc_reg_fcfi_mrq_rq_id3_WORD word3 |
| 2601 | #define lpfc_reg_fcfi_mrq_rq_id2_SHIFT 16 |
| 2602 | #define lpfc_reg_fcfi_mrq_rq_id2_MASK 0x0000FFFF |
| 2603 | #define lpfc_reg_fcfi_mrq_rq_id2_WORD word3 |
| 2604 | uint32_t word4; |
| 2605 | #define lpfc_reg_fcfi_mrq_type_match0_SHIFT 24 |
| 2606 | #define lpfc_reg_fcfi_mrq_type_match0_MASK 0x000000FF |
| 2607 | #define lpfc_reg_fcfi_mrq_type_match0_WORD word4 |
| 2608 | #define lpfc_reg_fcfi_mrq_type_mask0_SHIFT 16 |
| 2609 | #define lpfc_reg_fcfi_mrq_type_mask0_MASK 0x000000FF |
| 2610 | #define lpfc_reg_fcfi_mrq_type_mask0_WORD word4 |
| 2611 | #define lpfc_reg_fcfi_mrq_rctl_match0_SHIFT 8 |
| 2612 | #define lpfc_reg_fcfi_mrq_rctl_match0_MASK 0x000000FF |
| 2613 | #define lpfc_reg_fcfi_mrq_rctl_match0_WORD word4 |
| 2614 | #define lpfc_reg_fcfi_mrq_rctl_mask0_SHIFT 0 |
| 2615 | #define lpfc_reg_fcfi_mrq_rctl_mask0_MASK 0x000000FF |
| 2616 | #define lpfc_reg_fcfi_mrq_rctl_mask0_WORD word4 |
| 2617 | uint32_t word5; |
| 2618 | #define lpfc_reg_fcfi_mrq_type_match1_SHIFT 24 |
| 2619 | #define lpfc_reg_fcfi_mrq_type_match1_MASK 0x000000FF |
| 2620 | #define lpfc_reg_fcfi_mrq_type_match1_WORD word5 |
| 2621 | #define lpfc_reg_fcfi_mrq_type_mask1_SHIFT 16 |
| 2622 | #define lpfc_reg_fcfi_mrq_type_mask1_MASK 0x000000FF |
| 2623 | #define lpfc_reg_fcfi_mrq_type_mask1_WORD word5 |
| 2624 | #define lpfc_reg_fcfi_mrq_rctl_match1_SHIFT 8 |
| 2625 | #define lpfc_reg_fcfi_mrq_rctl_match1_MASK 0x000000FF |
| 2626 | #define lpfc_reg_fcfi_mrq_rctl_match1_WORD word5 |
| 2627 | #define lpfc_reg_fcfi_mrq_rctl_mask1_SHIFT 0 |
| 2628 | #define lpfc_reg_fcfi_mrq_rctl_mask1_MASK 0x000000FF |
| 2629 | #define lpfc_reg_fcfi_mrq_rctl_mask1_WORD word5 |
| 2630 | uint32_t word6; |
| 2631 | #define lpfc_reg_fcfi_mrq_type_match2_SHIFT 24 |
| 2632 | #define lpfc_reg_fcfi_mrq_type_match2_MASK 0x000000FF |
| 2633 | #define lpfc_reg_fcfi_mrq_type_match2_WORD word6 |
| 2634 | #define lpfc_reg_fcfi_mrq_type_mask2_SHIFT 16 |
| 2635 | #define lpfc_reg_fcfi_mrq_type_mask2_MASK 0x000000FF |
| 2636 | #define lpfc_reg_fcfi_mrq_type_mask2_WORD word6 |
| 2637 | #define lpfc_reg_fcfi_mrq_rctl_match2_SHIFT 8 |
| 2638 | #define lpfc_reg_fcfi_mrq_rctl_match2_MASK 0x000000FF |
| 2639 | #define lpfc_reg_fcfi_mrq_rctl_match2_WORD word6 |
| 2640 | #define lpfc_reg_fcfi_mrq_rctl_mask2_SHIFT 0 |
| 2641 | #define lpfc_reg_fcfi_mrq_rctl_mask2_MASK 0x000000FF |
| 2642 | #define lpfc_reg_fcfi_mrq_rctl_mask2_WORD word6 |
| 2643 | uint32_t word7; |
| 2644 | #define lpfc_reg_fcfi_mrq_type_match3_SHIFT 24 |
| 2645 | #define lpfc_reg_fcfi_mrq_type_match3_MASK 0x000000FF |
| 2646 | #define lpfc_reg_fcfi_mrq_type_match3_WORD word7 |
| 2647 | #define lpfc_reg_fcfi_mrq_type_mask3_SHIFT 16 |
| 2648 | #define lpfc_reg_fcfi_mrq_type_mask3_MASK 0x000000FF |
| 2649 | #define lpfc_reg_fcfi_mrq_type_mask3_WORD word7 |
| 2650 | #define lpfc_reg_fcfi_mrq_rctl_match3_SHIFT 8 |
| 2651 | #define lpfc_reg_fcfi_mrq_rctl_match3_MASK 0x000000FF |
| 2652 | #define lpfc_reg_fcfi_mrq_rctl_match3_WORD word7 |
| 2653 | #define lpfc_reg_fcfi_mrq_rctl_mask3_SHIFT 0 |
| 2654 | #define lpfc_reg_fcfi_mrq_rctl_mask3_MASK 0x000000FF |
| 2655 | #define lpfc_reg_fcfi_mrq_rctl_mask3_WORD word7 |
| 2656 | uint32_t word8; |
| 2657 | #define lpfc_reg_fcfi_mrq_ptc7_SHIFT 31 |
| 2658 | #define lpfc_reg_fcfi_mrq_ptc7_MASK 0x00000001 |
| 2659 | #define lpfc_reg_fcfi_mrq_ptc7_WORD word8 |
| 2660 | #define lpfc_reg_fcfi_mrq_ptc6_SHIFT 30 |
| 2661 | #define lpfc_reg_fcfi_mrq_ptc6_MASK 0x00000001 |
| 2662 | #define lpfc_reg_fcfi_mrq_ptc6_WORD word8 |
| 2663 | #define lpfc_reg_fcfi_mrq_ptc5_SHIFT 29 |
| 2664 | #define lpfc_reg_fcfi_mrq_ptc5_MASK 0x00000001 |
| 2665 | #define lpfc_reg_fcfi_mrq_ptc5_WORD word8 |
| 2666 | #define lpfc_reg_fcfi_mrq_ptc4_SHIFT 28 |
| 2667 | #define lpfc_reg_fcfi_mrq_ptc4_MASK 0x00000001 |
| 2668 | #define lpfc_reg_fcfi_mrq_ptc4_WORD word8 |
| 2669 | #define lpfc_reg_fcfi_mrq_ptc3_SHIFT 27 |
| 2670 | #define lpfc_reg_fcfi_mrq_ptc3_MASK 0x00000001 |
| 2671 | #define lpfc_reg_fcfi_mrq_ptc3_WORD word8 |
| 2672 | #define lpfc_reg_fcfi_mrq_ptc2_SHIFT 26 |
| 2673 | #define lpfc_reg_fcfi_mrq_ptc2_MASK 0x00000001 |
| 2674 | #define lpfc_reg_fcfi_mrq_ptc2_WORD word8 |
| 2675 | #define lpfc_reg_fcfi_mrq_ptc1_SHIFT 25 |
| 2676 | #define lpfc_reg_fcfi_mrq_ptc1_MASK 0x00000001 |
| 2677 | #define lpfc_reg_fcfi_mrq_ptc1_WORD word8 |
| 2678 | #define lpfc_reg_fcfi_mrq_ptc0_SHIFT 24 |
| 2679 | #define lpfc_reg_fcfi_mrq_ptc0_MASK 0x00000001 |
| 2680 | #define lpfc_reg_fcfi_mrq_ptc0_WORD word8 |
| 2681 | #define lpfc_reg_fcfi_mrq_pt7_SHIFT 23 |
| 2682 | #define lpfc_reg_fcfi_mrq_pt7_MASK 0x00000001 |
| 2683 | #define lpfc_reg_fcfi_mrq_pt7_WORD word8 |
| 2684 | #define lpfc_reg_fcfi_mrq_pt6_SHIFT 22 |
| 2685 | #define lpfc_reg_fcfi_mrq_pt6_MASK 0x00000001 |
| 2686 | #define lpfc_reg_fcfi_mrq_pt6_WORD word8 |
| 2687 | #define lpfc_reg_fcfi_mrq_pt5_SHIFT 21 |
| 2688 | #define lpfc_reg_fcfi_mrq_pt5_MASK 0x00000001 |
| 2689 | #define lpfc_reg_fcfi_mrq_pt5_WORD word8 |
| 2690 | #define lpfc_reg_fcfi_mrq_pt4_SHIFT 20 |
| 2691 | #define lpfc_reg_fcfi_mrq_pt4_MASK 0x00000001 |
| 2692 | #define lpfc_reg_fcfi_mrq_pt4_WORD word8 |
| 2693 | #define lpfc_reg_fcfi_mrq_pt3_SHIFT 19 |
| 2694 | #define lpfc_reg_fcfi_mrq_pt3_MASK 0x00000001 |
| 2695 | #define lpfc_reg_fcfi_mrq_pt3_WORD word8 |
| 2696 | #define lpfc_reg_fcfi_mrq_pt2_SHIFT 18 |
| 2697 | #define lpfc_reg_fcfi_mrq_pt2_MASK 0x00000001 |
| 2698 | #define lpfc_reg_fcfi_mrq_pt2_WORD word8 |
| 2699 | #define lpfc_reg_fcfi_mrq_pt1_SHIFT 17 |
| 2700 | #define lpfc_reg_fcfi_mrq_pt1_MASK 0x00000001 |
| 2701 | #define lpfc_reg_fcfi_mrq_pt1_WORD word8 |
| 2702 | #define lpfc_reg_fcfi_mrq_pt0_SHIFT 16 |
| 2703 | #define lpfc_reg_fcfi_mrq_pt0_MASK 0x00000001 |
| 2704 | #define lpfc_reg_fcfi_mrq_pt0_WORD word8 |
| 2705 | #define lpfc_reg_fcfi_mrq_xmv_SHIFT 15 |
| 2706 | #define lpfc_reg_fcfi_mrq_xmv_MASK 0x00000001 |
| 2707 | #define lpfc_reg_fcfi_mrq_xmv_WORD word8 |
| 2708 | #define lpfc_reg_fcfi_mrq_mode_SHIFT 13 |
| 2709 | #define lpfc_reg_fcfi_mrq_mode_MASK 0x00000001 |
| 2710 | #define lpfc_reg_fcfi_mrq_mode_WORD word8 |
| 2711 | #define lpfc_reg_fcfi_mrq_vv_SHIFT 12 |
| 2712 | #define lpfc_reg_fcfi_mrq_vv_MASK 0x00000001 |
| 2713 | #define lpfc_reg_fcfi_mrq_vv_WORD word8 |
| 2714 | #define lpfc_reg_fcfi_mrq_vlan_tag_SHIFT 0 |
| 2715 | #define lpfc_reg_fcfi_mrq_vlan_tag_MASK 0x00000FFF |
| 2716 | #define lpfc_reg_fcfi_mrq_vlan_tag_WORD word8 |
| 2717 | uint32_t word9; |
| 2718 | #define lpfc_reg_fcfi_mrq_policy_SHIFT 12 |
| 2719 | #define lpfc_reg_fcfi_mrq_policy_MASK 0x0000000F |
| 2720 | #define lpfc_reg_fcfi_mrq_policy_WORD word9 |
| 2721 | #define lpfc_reg_fcfi_mrq_filter_SHIFT 8 |
| 2722 | #define lpfc_reg_fcfi_mrq_filter_MASK 0x0000000F |
| 2723 | #define lpfc_reg_fcfi_mrq_filter_WORD word9 |
| 2724 | #define lpfc_reg_fcfi_mrq_npairs_SHIFT 0 |
| 2725 | #define lpfc_reg_fcfi_mrq_npairs_MASK 0x000000FF |
| 2726 | #define lpfc_reg_fcfi_mrq_npairs_WORD word9 |
| 2727 | uint32_t word10; |
| 2728 | uint32_t word11; |
| 2729 | uint32_t word12; |
| 2730 | uint32_t word13; |
| 2731 | uint32_t word14; |
| 2732 | uint32_t word15; |
| 2733 | uint32_t word16; |
| 2734 | }; |
| 2735 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2736 | struct lpfc_mbx_unreg_fcfi { |
| 2737 | uint32_t word1_rsv; |
| 2738 | uint32_t word2; |
| 2739 | #define lpfc_unreg_fcfi_SHIFT 0 |
| 2740 | #define lpfc_unreg_fcfi_MASK 0x0000FFFF |
| 2741 | #define lpfc_unreg_fcfi_WORD word2 |
| 2742 | }; |
| 2743 | |
| 2744 | struct lpfc_mbx_read_rev { |
| 2745 | uint32_t word1; |
| 2746 | #define lpfc_mbx_rd_rev_sli_lvl_SHIFT 16 |
| 2747 | #define lpfc_mbx_rd_rev_sli_lvl_MASK 0x0000000F |
| 2748 | #define lpfc_mbx_rd_rev_sli_lvl_WORD word1 |
| 2749 | #define lpfc_mbx_rd_rev_fcoe_SHIFT 20 |
| 2750 | #define lpfc_mbx_rd_rev_fcoe_MASK 0x00000001 |
| 2751 | #define lpfc_mbx_rd_rev_fcoe_WORD word1 |
James Smart | 45ed119 | 2009-10-02 15:17:02 -0400 | [diff] [blame] | 2752 | #define lpfc_mbx_rd_rev_cee_ver_SHIFT 21 |
| 2753 | #define lpfc_mbx_rd_rev_cee_ver_MASK 0x00000003 |
| 2754 | #define lpfc_mbx_rd_rev_cee_ver_WORD word1 |
| 2755 | #define LPFC_PREDCBX_CEE_MODE 0 |
| 2756 | #define LPFC_DCBX_CEE_MODE 1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2757 | #define lpfc_mbx_rd_rev_vpd_SHIFT 29 |
| 2758 | #define lpfc_mbx_rd_rev_vpd_MASK 0x00000001 |
| 2759 | #define lpfc_mbx_rd_rev_vpd_WORD word1 |
| 2760 | uint32_t first_hw_rev; |
James Smart | 4e565cf | 2018-02-22 08:18:50 -0800 | [diff] [blame] | 2761 | #define LPFC_G7_ASIC_1 0xd |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2762 | uint32_t second_hw_rev; |
| 2763 | uint32_t word4_rsvd; |
| 2764 | uint32_t third_hw_rev; |
| 2765 | uint32_t word6; |
| 2766 | #define lpfc_mbx_rd_rev_fcph_low_SHIFT 0 |
| 2767 | #define lpfc_mbx_rd_rev_fcph_low_MASK 0x000000FF |
| 2768 | #define lpfc_mbx_rd_rev_fcph_low_WORD word6 |
| 2769 | #define lpfc_mbx_rd_rev_fcph_high_SHIFT 8 |
| 2770 | #define lpfc_mbx_rd_rev_fcph_high_MASK 0x000000FF |
| 2771 | #define lpfc_mbx_rd_rev_fcph_high_WORD word6 |
| 2772 | #define lpfc_mbx_rd_rev_ftr_lvl_low_SHIFT 16 |
| 2773 | #define lpfc_mbx_rd_rev_ftr_lvl_low_MASK 0x000000FF |
| 2774 | #define lpfc_mbx_rd_rev_ftr_lvl_low_WORD word6 |
| 2775 | #define lpfc_mbx_rd_rev_ftr_lvl_high_SHIFT 24 |
| 2776 | #define lpfc_mbx_rd_rev_ftr_lvl_high_MASK 0x000000FF |
| 2777 | #define lpfc_mbx_rd_rev_ftr_lvl_high_WORD word6 |
| 2778 | uint32_t word7_rsvd; |
| 2779 | uint32_t fw_id_rev; |
| 2780 | uint8_t fw_name[16]; |
| 2781 | uint32_t ulp_fw_id_rev; |
| 2782 | uint8_t ulp_fw_name[16]; |
| 2783 | uint32_t word18_47_rsvd[30]; |
| 2784 | uint32_t word48; |
| 2785 | #define lpfc_mbx_rd_rev_avail_len_SHIFT 0 |
| 2786 | #define lpfc_mbx_rd_rev_avail_len_MASK 0x00FFFFFF |
| 2787 | #define lpfc_mbx_rd_rev_avail_len_WORD word48 |
| 2788 | uint32_t vpd_paddr_low; |
| 2789 | uint32_t vpd_paddr_high; |
| 2790 | uint32_t avail_vpd_len; |
| 2791 | uint32_t rsvd_52_63[12]; |
| 2792 | }; |
| 2793 | |
| 2794 | struct lpfc_mbx_read_config { |
| 2795 | uint32_t word1; |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 2796 | #define lpfc_mbx_rd_conf_extnts_inuse_SHIFT 31 |
| 2797 | #define lpfc_mbx_rd_conf_extnts_inuse_MASK 0x00000001 |
| 2798 | #define lpfc_mbx_rd_conf_extnts_inuse_WORD word1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2799 | uint32_t word2; |
James Smart | cd1c830 | 2011-10-10 21:33:25 -0400 | [diff] [blame] | 2800 | #define lpfc_mbx_rd_conf_lnk_numb_SHIFT 0 |
| 2801 | #define lpfc_mbx_rd_conf_lnk_numb_MASK 0x0000003F |
| 2802 | #define lpfc_mbx_rd_conf_lnk_numb_WORD word2 |
| 2803 | #define lpfc_mbx_rd_conf_lnk_type_SHIFT 6 |
| 2804 | #define lpfc_mbx_rd_conf_lnk_type_MASK 0x00000003 |
| 2805 | #define lpfc_mbx_rd_conf_lnk_type_WORD word2 |
James Smart | 026abb8 | 2011-12-13 13:20:45 -0500 | [diff] [blame] | 2806 | #define LPFC_LNK_TYPE_GE 0 |
| 2807 | #define LPFC_LNK_TYPE_FC 1 |
James Smart | cd1c830 | 2011-10-10 21:33:25 -0400 | [diff] [blame] | 2808 | #define lpfc_mbx_rd_conf_lnk_ldv_SHIFT 8 |
| 2809 | #define lpfc_mbx_rd_conf_lnk_ldv_MASK 0x00000001 |
| 2810 | #define lpfc_mbx_rd_conf_lnk_ldv_WORD word2 |
James Smart | 1dc5ec2 | 2018-10-23 13:41:11 -0700 | [diff] [blame] | 2811 | #define lpfc_mbx_rd_conf_trunk_SHIFT 12 |
| 2812 | #define lpfc_mbx_rd_conf_trunk_MASK 0x0000000F |
| 2813 | #define lpfc_mbx_rd_conf_trunk_WORD word2 |
James Smart | 83c6cb1 | 2019-10-18 14:18:30 -0700 | [diff] [blame] | 2814 | #define lpfc_mbx_rd_conf_pt_SHIFT 20 |
| 2815 | #define lpfc_mbx_rd_conf_pt_MASK 0x00000003 |
| 2816 | #define lpfc_mbx_rd_conf_pt_WORD word2 |
| 2817 | #define lpfc_mbx_rd_conf_tf_SHIFT 22 |
| 2818 | #define lpfc_mbx_rd_conf_tf_MASK 0x00000001 |
| 2819 | #define lpfc_mbx_rd_conf_tf_WORD word2 |
| 2820 | #define lpfc_mbx_rd_conf_ptv_SHIFT 23 |
| 2821 | #define lpfc_mbx_rd_conf_ptv_MASK 0x00000001 |
| 2822 | #define lpfc_mbx_rd_conf_ptv_WORD word2 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2823 | #define lpfc_mbx_rd_conf_topology_SHIFT 24 |
| 2824 | #define lpfc_mbx_rd_conf_topology_MASK 0x000000FF |
| 2825 | #define lpfc_mbx_rd_conf_topology_WORD word2 |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 2826 | uint32_t rsvd_3; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2827 | uint32_t word4; |
| 2828 | #define lpfc_mbx_rd_conf_e_d_tov_SHIFT 0 |
| 2829 | #define lpfc_mbx_rd_conf_e_d_tov_MASK 0x0000FFFF |
| 2830 | #define lpfc_mbx_rd_conf_e_d_tov_WORD word4 |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 2831 | uint32_t rsvd_5; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2832 | uint32_t word6; |
| 2833 | #define lpfc_mbx_rd_conf_r_a_tov_SHIFT 0 |
| 2834 | #define lpfc_mbx_rd_conf_r_a_tov_MASK 0x0000FFFF |
| 2835 | #define lpfc_mbx_rd_conf_r_a_tov_WORD word6 |
James Smart | c691816 | 2016-10-13 15:06:16 -0700 | [diff] [blame] | 2836 | #define lpfc_mbx_rd_conf_link_speed_SHIFT 16 |
| 2837 | #define lpfc_mbx_rd_conf_link_speed_MASK 0x0000FFFF |
| 2838 | #define lpfc_mbx_rd_conf_link_speed_WORD word6 |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 2839 | uint32_t rsvd_7; |
James Smart | 44fd7fe | 2017-08-23 16:55:47 -0700 | [diff] [blame] | 2840 | uint32_t word8; |
| 2841 | #define lpfc_mbx_rd_conf_bbscn_min_SHIFT 0 |
| 2842 | #define lpfc_mbx_rd_conf_bbscn_min_MASK 0x0000000F |
| 2843 | #define lpfc_mbx_rd_conf_bbscn_min_WORD word8 |
| 2844 | #define lpfc_mbx_rd_conf_bbscn_max_SHIFT 4 |
| 2845 | #define lpfc_mbx_rd_conf_bbscn_max_MASK 0x0000000F |
| 2846 | #define lpfc_mbx_rd_conf_bbscn_max_WORD word8 |
| 2847 | #define lpfc_mbx_rd_conf_bbscn_def_SHIFT 8 |
| 2848 | #define lpfc_mbx_rd_conf_bbscn_def_MASK 0x0000000F |
| 2849 | #define lpfc_mbx_rd_conf_bbscn_def_WORD word8 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2850 | uint32_t word9; |
| 2851 | #define lpfc_mbx_rd_conf_lmt_SHIFT 0 |
| 2852 | #define lpfc_mbx_rd_conf_lmt_MASK 0x0000FFFF |
| 2853 | #define lpfc_mbx_rd_conf_lmt_WORD word9 |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 2854 | uint32_t rsvd_10; |
| 2855 | uint32_t rsvd_11; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2856 | uint32_t word12; |
| 2857 | #define lpfc_mbx_rd_conf_xri_base_SHIFT 0 |
| 2858 | #define lpfc_mbx_rd_conf_xri_base_MASK 0x0000FFFF |
| 2859 | #define lpfc_mbx_rd_conf_xri_base_WORD word12 |
| 2860 | #define lpfc_mbx_rd_conf_xri_count_SHIFT 16 |
| 2861 | #define lpfc_mbx_rd_conf_xri_count_MASK 0x0000FFFF |
| 2862 | #define lpfc_mbx_rd_conf_xri_count_WORD word12 |
| 2863 | uint32_t word13; |
| 2864 | #define lpfc_mbx_rd_conf_rpi_base_SHIFT 0 |
| 2865 | #define lpfc_mbx_rd_conf_rpi_base_MASK 0x0000FFFF |
| 2866 | #define lpfc_mbx_rd_conf_rpi_base_WORD word13 |
| 2867 | #define lpfc_mbx_rd_conf_rpi_count_SHIFT 16 |
| 2868 | #define lpfc_mbx_rd_conf_rpi_count_MASK 0x0000FFFF |
| 2869 | #define lpfc_mbx_rd_conf_rpi_count_WORD word13 |
| 2870 | uint32_t word14; |
| 2871 | #define lpfc_mbx_rd_conf_vpi_base_SHIFT 0 |
| 2872 | #define lpfc_mbx_rd_conf_vpi_base_MASK 0x0000FFFF |
| 2873 | #define lpfc_mbx_rd_conf_vpi_base_WORD word14 |
| 2874 | #define lpfc_mbx_rd_conf_vpi_count_SHIFT 16 |
| 2875 | #define lpfc_mbx_rd_conf_vpi_count_MASK 0x0000FFFF |
| 2876 | #define lpfc_mbx_rd_conf_vpi_count_WORD word14 |
| 2877 | uint32_t word15; |
| 2878 | #define lpfc_mbx_rd_conf_vfi_base_SHIFT 0 |
| 2879 | #define lpfc_mbx_rd_conf_vfi_base_MASK 0x0000FFFF |
| 2880 | #define lpfc_mbx_rd_conf_vfi_base_WORD word15 |
| 2881 | #define lpfc_mbx_rd_conf_vfi_count_SHIFT 16 |
| 2882 | #define lpfc_mbx_rd_conf_vfi_count_MASK 0x0000FFFF |
| 2883 | #define lpfc_mbx_rd_conf_vfi_count_WORD word15 |
| 2884 | uint32_t word16; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2885 | #define lpfc_mbx_rd_conf_fcfi_count_SHIFT 16 |
| 2886 | #define lpfc_mbx_rd_conf_fcfi_count_MASK 0x0000FFFF |
| 2887 | #define lpfc_mbx_rd_conf_fcfi_count_WORD word16 |
| 2888 | uint32_t word17; |
| 2889 | #define lpfc_mbx_rd_conf_rq_count_SHIFT 0 |
| 2890 | #define lpfc_mbx_rd_conf_rq_count_MASK 0x0000FFFF |
| 2891 | #define lpfc_mbx_rd_conf_rq_count_WORD word17 |
| 2892 | #define lpfc_mbx_rd_conf_eq_count_SHIFT 16 |
| 2893 | #define lpfc_mbx_rd_conf_eq_count_MASK 0x0000FFFF |
| 2894 | #define lpfc_mbx_rd_conf_eq_count_WORD word17 |
| 2895 | uint32_t word18; |
| 2896 | #define lpfc_mbx_rd_conf_wq_count_SHIFT 0 |
| 2897 | #define lpfc_mbx_rd_conf_wq_count_MASK 0x0000FFFF |
| 2898 | #define lpfc_mbx_rd_conf_wq_count_WORD word18 |
| 2899 | #define lpfc_mbx_rd_conf_cq_count_SHIFT 16 |
| 2900 | #define lpfc_mbx_rd_conf_cq_count_MASK 0x0000FFFF |
| 2901 | #define lpfc_mbx_rd_conf_cq_count_WORD word18 |
| 2902 | }; |
| 2903 | |
| 2904 | struct lpfc_mbx_request_features { |
| 2905 | uint32_t word1; |
| 2906 | #define lpfc_mbx_rq_ftr_qry_SHIFT 0 |
| 2907 | #define lpfc_mbx_rq_ftr_qry_MASK 0x00000001 |
| 2908 | #define lpfc_mbx_rq_ftr_qry_WORD word1 |
| 2909 | uint32_t word2; |
| 2910 | #define lpfc_mbx_rq_ftr_rq_iaab_SHIFT 0 |
| 2911 | #define lpfc_mbx_rq_ftr_rq_iaab_MASK 0x00000001 |
| 2912 | #define lpfc_mbx_rq_ftr_rq_iaab_WORD word2 |
| 2913 | #define lpfc_mbx_rq_ftr_rq_npiv_SHIFT 1 |
| 2914 | #define lpfc_mbx_rq_ftr_rq_npiv_MASK 0x00000001 |
| 2915 | #define lpfc_mbx_rq_ftr_rq_npiv_WORD word2 |
| 2916 | #define lpfc_mbx_rq_ftr_rq_dif_SHIFT 2 |
| 2917 | #define lpfc_mbx_rq_ftr_rq_dif_MASK 0x00000001 |
| 2918 | #define lpfc_mbx_rq_ftr_rq_dif_WORD word2 |
| 2919 | #define lpfc_mbx_rq_ftr_rq_vf_SHIFT 3 |
| 2920 | #define lpfc_mbx_rq_ftr_rq_vf_MASK 0x00000001 |
| 2921 | #define lpfc_mbx_rq_ftr_rq_vf_WORD word2 |
| 2922 | #define lpfc_mbx_rq_ftr_rq_fcpi_SHIFT 4 |
| 2923 | #define lpfc_mbx_rq_ftr_rq_fcpi_MASK 0x00000001 |
| 2924 | #define lpfc_mbx_rq_ftr_rq_fcpi_WORD word2 |
| 2925 | #define lpfc_mbx_rq_ftr_rq_fcpt_SHIFT 5 |
| 2926 | #define lpfc_mbx_rq_ftr_rq_fcpt_MASK 0x00000001 |
| 2927 | #define lpfc_mbx_rq_ftr_rq_fcpt_WORD word2 |
| 2928 | #define lpfc_mbx_rq_ftr_rq_fcpc_SHIFT 6 |
| 2929 | #define lpfc_mbx_rq_ftr_rq_fcpc_MASK 0x00000001 |
| 2930 | #define lpfc_mbx_rq_ftr_rq_fcpc_WORD word2 |
| 2931 | #define lpfc_mbx_rq_ftr_rq_ifip_SHIFT 7 |
| 2932 | #define lpfc_mbx_rq_ftr_rq_ifip_MASK 0x00000001 |
| 2933 | #define lpfc_mbx_rq_ftr_rq_ifip_WORD word2 |
James Smart | 86c6737 | 2017-04-21 16:05:04 -0700 | [diff] [blame] | 2934 | #define lpfc_mbx_rq_ftr_rq_iaar_SHIFT 9 |
| 2935 | #define lpfc_mbx_rq_ftr_rq_iaar_MASK 0x00000001 |
| 2936 | #define lpfc_mbx_rq_ftr_rq_iaar_WORD word2 |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 2937 | #define lpfc_mbx_rq_ftr_rq_perfh_SHIFT 11 |
| 2938 | #define lpfc_mbx_rq_ftr_rq_perfh_MASK 0x00000001 |
| 2939 | #define lpfc_mbx_rq_ftr_rq_perfh_WORD word2 |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 2940 | #define lpfc_mbx_rq_ftr_rq_mrqp_SHIFT 16 |
| 2941 | #define lpfc_mbx_rq_ftr_rq_mrqp_MASK 0x00000001 |
| 2942 | #define lpfc_mbx_rq_ftr_rq_mrqp_WORD word2 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2943 | uint32_t word3; |
| 2944 | #define lpfc_mbx_rq_ftr_rsp_iaab_SHIFT 0 |
| 2945 | #define lpfc_mbx_rq_ftr_rsp_iaab_MASK 0x00000001 |
| 2946 | #define lpfc_mbx_rq_ftr_rsp_iaab_WORD word3 |
| 2947 | #define lpfc_mbx_rq_ftr_rsp_npiv_SHIFT 1 |
| 2948 | #define lpfc_mbx_rq_ftr_rsp_npiv_MASK 0x00000001 |
| 2949 | #define lpfc_mbx_rq_ftr_rsp_npiv_WORD word3 |
| 2950 | #define lpfc_mbx_rq_ftr_rsp_dif_SHIFT 2 |
| 2951 | #define lpfc_mbx_rq_ftr_rsp_dif_MASK 0x00000001 |
| 2952 | #define lpfc_mbx_rq_ftr_rsp_dif_WORD word3 |
| 2953 | #define lpfc_mbx_rq_ftr_rsp_vf_SHIFT 3 |
| 2954 | #define lpfc_mbx_rq_ftr_rsp_vf__MASK 0x00000001 |
| 2955 | #define lpfc_mbx_rq_ftr_rsp_vf_WORD word3 |
| 2956 | #define lpfc_mbx_rq_ftr_rsp_fcpi_SHIFT 4 |
| 2957 | #define lpfc_mbx_rq_ftr_rsp_fcpi_MASK 0x00000001 |
| 2958 | #define lpfc_mbx_rq_ftr_rsp_fcpi_WORD word3 |
| 2959 | #define lpfc_mbx_rq_ftr_rsp_fcpt_SHIFT 5 |
| 2960 | #define lpfc_mbx_rq_ftr_rsp_fcpt_MASK 0x00000001 |
| 2961 | #define lpfc_mbx_rq_ftr_rsp_fcpt_WORD word3 |
| 2962 | #define lpfc_mbx_rq_ftr_rsp_fcpc_SHIFT 6 |
| 2963 | #define lpfc_mbx_rq_ftr_rsp_fcpc_MASK 0x00000001 |
| 2964 | #define lpfc_mbx_rq_ftr_rsp_fcpc_WORD word3 |
| 2965 | #define lpfc_mbx_rq_ftr_rsp_ifip_SHIFT 7 |
| 2966 | #define lpfc_mbx_rq_ftr_rsp_ifip_MASK 0x00000001 |
| 2967 | #define lpfc_mbx_rq_ftr_rsp_ifip_WORD word3 |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 2968 | #define lpfc_mbx_rq_ftr_rsp_perfh_SHIFT 11 |
| 2969 | #define lpfc_mbx_rq_ftr_rsp_perfh_MASK 0x00000001 |
| 2970 | #define lpfc_mbx_rq_ftr_rsp_perfh_WORD word3 |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 2971 | #define lpfc_mbx_rq_ftr_rsp_mrqp_SHIFT 16 |
| 2972 | #define lpfc_mbx_rq_ftr_rsp_mrqp_MASK 0x00000001 |
| 2973 | #define lpfc_mbx_rq_ftr_rsp_mrqp_WORD word3 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 2974 | }; |
| 2975 | |
James Smart | 28baac7 | 2010-02-12 14:42:03 -0500 | [diff] [blame] | 2976 | struct lpfc_mbx_supp_pages { |
| 2977 | uint32_t word1; |
| 2978 | #define qs_SHIFT 0 |
| 2979 | #define qs_MASK 0x00000001 |
| 2980 | #define qs_WORD word1 |
| 2981 | #define wr_SHIFT 1 |
| 2982 | #define wr_MASK 0x00000001 |
| 2983 | #define wr_WORD word1 |
| 2984 | #define pf_SHIFT 8 |
| 2985 | #define pf_MASK 0x000000ff |
| 2986 | #define pf_WORD word1 |
| 2987 | #define cpn_SHIFT 16 |
| 2988 | #define cpn_MASK 0x000000ff |
| 2989 | #define cpn_WORD word1 |
| 2990 | uint32_t word2; |
| 2991 | #define list_offset_SHIFT 0 |
| 2992 | #define list_offset_MASK 0x000000ff |
| 2993 | #define list_offset_WORD word2 |
| 2994 | #define next_offset_SHIFT 8 |
| 2995 | #define next_offset_MASK 0x000000ff |
| 2996 | #define next_offset_WORD word2 |
| 2997 | #define elem_cnt_SHIFT 16 |
| 2998 | #define elem_cnt_MASK 0x000000ff |
| 2999 | #define elem_cnt_WORD word2 |
| 3000 | uint32_t word3; |
| 3001 | #define pn_0_SHIFT 24 |
| 3002 | #define pn_0_MASK 0x000000ff |
| 3003 | #define pn_0_WORD word3 |
| 3004 | #define pn_1_SHIFT 16 |
| 3005 | #define pn_1_MASK 0x000000ff |
| 3006 | #define pn_1_WORD word3 |
| 3007 | #define pn_2_SHIFT 8 |
| 3008 | #define pn_2_MASK 0x000000ff |
| 3009 | #define pn_2_WORD word3 |
| 3010 | #define pn_3_SHIFT 0 |
| 3011 | #define pn_3_MASK 0x000000ff |
| 3012 | #define pn_3_WORD word3 |
| 3013 | uint32_t word4; |
| 3014 | #define pn_4_SHIFT 24 |
| 3015 | #define pn_4_MASK 0x000000ff |
| 3016 | #define pn_4_WORD word4 |
| 3017 | #define pn_5_SHIFT 16 |
| 3018 | #define pn_5_MASK 0x000000ff |
| 3019 | #define pn_5_WORD word4 |
| 3020 | #define pn_6_SHIFT 8 |
| 3021 | #define pn_6_MASK 0x000000ff |
| 3022 | #define pn_6_WORD word4 |
| 3023 | #define pn_7_SHIFT 0 |
| 3024 | #define pn_7_MASK 0x000000ff |
| 3025 | #define pn_7_WORD word4 |
| 3026 | uint32_t rsvd[27]; |
| 3027 | #define LPFC_SUPP_PAGES 0 |
| 3028 | #define LPFC_BLOCK_GUARD_PROFILES 1 |
| 3029 | #define LPFC_SLI4_PARAMETERS 2 |
| 3030 | }; |
| 3031 | |
James Smart | 8647887 | 2015-05-21 13:55:21 -0400 | [diff] [blame] | 3032 | struct lpfc_mbx_memory_dump_type3 { |
| 3033 | uint32_t word1; |
| 3034 | #define lpfc_mbx_memory_dump_type3_type_SHIFT 0 |
| 3035 | #define lpfc_mbx_memory_dump_type3_type_MASK 0x0000000f |
| 3036 | #define lpfc_mbx_memory_dump_type3_type_WORD word1 |
| 3037 | #define lpfc_mbx_memory_dump_type3_link_SHIFT 24 |
| 3038 | #define lpfc_mbx_memory_dump_type3_link_MASK 0x000000ff |
| 3039 | #define lpfc_mbx_memory_dump_type3_link_WORD word1 |
| 3040 | uint32_t word2; |
| 3041 | #define lpfc_mbx_memory_dump_type3_page_no_SHIFT 0 |
| 3042 | #define lpfc_mbx_memory_dump_type3_page_no_MASK 0x0000ffff |
| 3043 | #define lpfc_mbx_memory_dump_type3_page_no_WORD word2 |
| 3044 | #define lpfc_mbx_memory_dump_type3_offset_SHIFT 16 |
| 3045 | #define lpfc_mbx_memory_dump_type3_offset_MASK 0x0000ffff |
| 3046 | #define lpfc_mbx_memory_dump_type3_offset_WORD word2 |
| 3047 | uint32_t word3; |
| 3048 | #define lpfc_mbx_memory_dump_type3_length_SHIFT 0 |
| 3049 | #define lpfc_mbx_memory_dump_type3_length_MASK 0x00ffffff |
| 3050 | #define lpfc_mbx_memory_dump_type3_length_WORD word3 |
| 3051 | uint32_t addr_lo; |
| 3052 | uint32_t addr_hi; |
| 3053 | uint32_t return_len; |
| 3054 | }; |
| 3055 | |
| 3056 | #define DMP_PAGE_A0 0xa0 |
| 3057 | #define DMP_PAGE_A2 0xa2 |
| 3058 | #define DMP_SFF_PAGE_A0_SIZE 256 |
| 3059 | #define DMP_SFF_PAGE_A2_SIZE 256 |
| 3060 | |
| 3061 | #define SFP_WAVELENGTH_LC1310 1310 |
| 3062 | #define SFP_WAVELENGTH_LL1550 1550 |
| 3063 | |
| 3064 | |
| 3065 | /* |
| 3066 | * * SFF-8472 TABLE 3.4 |
| 3067 | * */ |
| 3068 | #define SFF_PG0_CONNECTOR_UNKNOWN 0x00 /* Unknown */ |
| 3069 | #define SFF_PG0_CONNECTOR_SC 0x01 /* SC */ |
| 3070 | #define SFF_PG0_CONNECTOR_FC_COPPER1 0x02 /* FC style 1 copper connector */ |
| 3071 | #define SFF_PG0_CONNECTOR_FC_COPPER2 0x03 /* FC style 2 copper connector */ |
| 3072 | #define SFF_PG0_CONNECTOR_BNC 0x04 /* BNC / TNC */ |
| 3073 | #define SFF_PG0_CONNECTOR__FC_COAX 0x05 /* FC coaxial headers */ |
| 3074 | #define SFF_PG0_CONNECTOR_FIBERJACK 0x06 /* FiberJack */ |
| 3075 | #define SFF_PG0_CONNECTOR_LC 0x07 /* LC */ |
| 3076 | #define SFF_PG0_CONNECTOR_MT 0x08 /* MT - RJ */ |
| 3077 | #define SFF_PG0_CONNECTOR_MU 0x09 /* MU */ |
| 3078 | #define SFF_PG0_CONNECTOR_SF 0x0A /* SG */ |
| 3079 | #define SFF_PG0_CONNECTOR_OPTICAL_PIGTAIL 0x0B /* Optical pigtail */ |
| 3080 | #define SFF_PG0_CONNECTOR_OPTICAL_PARALLEL 0x0C /* MPO Parallel Optic */ |
| 3081 | #define SFF_PG0_CONNECTOR_HSSDC_II 0x20 /* HSSDC II */ |
| 3082 | #define SFF_PG0_CONNECTOR_COPPER_PIGTAIL 0x21 /* Copper pigtail */ |
| 3083 | #define SFF_PG0_CONNECTOR_RJ45 0x22 /* RJ45 */ |
| 3084 | |
| 3085 | /* SFF-8472 Table 3.1 Diagnostics: Data Fields Address/Page A0 */ |
| 3086 | |
| 3087 | #define SSF_IDENTIFIER 0 |
| 3088 | #define SSF_EXT_IDENTIFIER 1 |
| 3089 | #define SSF_CONNECTOR 2 |
| 3090 | #define SSF_TRANSCEIVER_CODE_B0 3 |
| 3091 | #define SSF_TRANSCEIVER_CODE_B1 4 |
| 3092 | #define SSF_TRANSCEIVER_CODE_B2 5 |
| 3093 | #define SSF_TRANSCEIVER_CODE_B3 6 |
| 3094 | #define SSF_TRANSCEIVER_CODE_B4 7 |
| 3095 | #define SSF_TRANSCEIVER_CODE_B5 8 |
| 3096 | #define SSF_TRANSCEIVER_CODE_B6 9 |
| 3097 | #define SSF_TRANSCEIVER_CODE_B7 10 |
| 3098 | #define SSF_ENCODING 11 |
| 3099 | #define SSF_BR_NOMINAL 12 |
| 3100 | #define SSF_RATE_IDENTIFIER 13 |
| 3101 | #define SSF_LENGTH_9UM_KM 14 |
| 3102 | #define SSF_LENGTH_9UM 15 |
| 3103 | #define SSF_LENGTH_50UM_OM2 16 |
| 3104 | #define SSF_LENGTH_62UM_OM1 17 |
| 3105 | #define SFF_LENGTH_COPPER 18 |
| 3106 | #define SSF_LENGTH_50UM_OM3 19 |
| 3107 | #define SSF_VENDOR_NAME 20 |
| 3108 | #define SSF_VENDOR_OUI 36 |
| 3109 | #define SSF_VENDOR_PN 40 |
| 3110 | #define SSF_VENDOR_REV 56 |
| 3111 | #define SSF_WAVELENGTH_B1 60 |
| 3112 | #define SSF_WAVELENGTH_B0 61 |
| 3113 | #define SSF_CC_BASE 63 |
| 3114 | #define SSF_OPTIONS_B1 64 |
| 3115 | #define SSF_OPTIONS_B0 65 |
| 3116 | #define SSF_BR_MAX 66 |
| 3117 | #define SSF_BR_MIN 67 |
| 3118 | #define SSF_VENDOR_SN 68 |
| 3119 | #define SSF_DATE_CODE 84 |
| 3120 | #define SSF_MONITORING_TYPEDIAGNOSTIC 92 |
| 3121 | #define SSF_ENHANCED_OPTIONS 93 |
| 3122 | #define SFF_8472_COMPLIANCE 94 |
| 3123 | #define SSF_CC_EXT 95 |
| 3124 | #define SSF_A0_VENDOR_SPECIFIC 96 |
| 3125 | |
| 3126 | /* SFF-8472 Table 3.1a Diagnostics: Data Fields Address/Page A2 */ |
| 3127 | |
James Smart | 5620498 | 2016-03-31 14:12:32 -0700 | [diff] [blame] | 3128 | #define SSF_TEMP_HIGH_ALARM 0 |
| 3129 | #define SSF_TEMP_LOW_ALARM 2 |
| 3130 | #define SSF_TEMP_HIGH_WARNING 4 |
| 3131 | #define SSF_TEMP_LOW_WARNING 6 |
| 3132 | #define SSF_VOLTAGE_HIGH_ALARM 8 |
| 3133 | #define SSF_VOLTAGE_LOW_ALARM 10 |
| 3134 | #define SSF_VOLTAGE_HIGH_WARNING 12 |
| 3135 | #define SSF_VOLTAGE_LOW_WARNING 14 |
| 3136 | #define SSF_BIAS_HIGH_ALARM 16 |
| 3137 | #define SSF_BIAS_LOW_ALARM 18 |
| 3138 | #define SSF_BIAS_HIGH_WARNING 20 |
| 3139 | #define SSF_BIAS_LOW_WARNING 22 |
| 3140 | #define SSF_TXPOWER_HIGH_ALARM 24 |
| 3141 | #define SSF_TXPOWER_LOW_ALARM 26 |
| 3142 | #define SSF_TXPOWER_HIGH_WARNING 28 |
| 3143 | #define SSF_TXPOWER_LOW_WARNING 30 |
| 3144 | #define SSF_RXPOWER_HIGH_ALARM 32 |
| 3145 | #define SSF_RXPOWER_LOW_ALARM 34 |
| 3146 | #define SSF_RXPOWER_HIGH_WARNING 36 |
| 3147 | #define SSF_RXPOWER_LOW_WARNING 38 |
James Smart | 8647887 | 2015-05-21 13:55:21 -0400 | [diff] [blame] | 3148 | #define SSF_EXT_CAL_CONSTANTS 56 |
| 3149 | #define SSF_CC_DMI 95 |
| 3150 | #define SFF_TEMPERATURE_B1 96 |
| 3151 | #define SFF_TEMPERATURE_B0 97 |
| 3152 | #define SFF_VCC_B1 98 |
| 3153 | #define SFF_VCC_B0 99 |
| 3154 | #define SFF_TX_BIAS_CURRENT_B1 100 |
| 3155 | #define SFF_TX_BIAS_CURRENT_B0 101 |
| 3156 | #define SFF_TXPOWER_B1 102 |
| 3157 | #define SFF_TXPOWER_B0 103 |
| 3158 | #define SFF_RXPOWER_B1 104 |
| 3159 | #define SFF_RXPOWER_B0 105 |
| 3160 | #define SSF_STATUS_CONTROL 110 |
James Smart | 310429e | 2016-07-06 12:35:54 -0700 | [diff] [blame] | 3161 | #define SSF_ALARM_FLAGS 112 |
| 3162 | #define SSF_WARNING_FLAGS 116 |
James Smart | 8647887 | 2015-05-21 13:55:21 -0400 | [diff] [blame] | 3163 | #define SSF_EXT_TATUS_CONTROL_B1 118 |
| 3164 | #define SSF_EXT_TATUS_CONTROL_B0 119 |
| 3165 | #define SSF_A2_VENDOR_SPECIFIC 120 |
| 3166 | #define SSF_USER_EEPROM 128 |
| 3167 | #define SSF_VENDOR_CONTROL 148 |
| 3168 | |
| 3169 | |
| 3170 | /* |
| 3171 | * Tranceiver codes Fibre Channel SFF-8472 |
| 3172 | * Table 3.5. |
| 3173 | */ |
| 3174 | |
| 3175 | struct sff_trasnceiver_codes_byte0 { |
| 3176 | uint8_t inifiband:4; |
| 3177 | uint8_t teng_ethernet:4; |
| 3178 | }; |
| 3179 | |
| 3180 | struct sff_trasnceiver_codes_byte1 { |
| 3181 | uint8_t sonet:6; |
| 3182 | uint8_t escon:2; |
| 3183 | }; |
| 3184 | |
| 3185 | struct sff_trasnceiver_codes_byte2 { |
| 3186 | uint8_t soNet:8; |
| 3187 | }; |
| 3188 | |
| 3189 | struct sff_trasnceiver_codes_byte3 { |
| 3190 | uint8_t ethernet:8; |
| 3191 | }; |
| 3192 | |
| 3193 | struct sff_trasnceiver_codes_byte4 { |
| 3194 | uint8_t fc_el_lo:1; |
| 3195 | uint8_t fc_lw_laser:1; |
| 3196 | uint8_t fc_sw_laser:1; |
| 3197 | uint8_t fc_md_distance:1; |
| 3198 | uint8_t fc_lg_distance:1; |
| 3199 | uint8_t fc_int_distance:1; |
| 3200 | uint8_t fc_short_distance:1; |
| 3201 | uint8_t fc_vld_distance:1; |
| 3202 | }; |
| 3203 | |
| 3204 | struct sff_trasnceiver_codes_byte5 { |
| 3205 | uint8_t reserved1:1; |
| 3206 | uint8_t reserved2:1; |
| 3207 | uint8_t fc_sfp_active:1; /* Active cable */ |
| 3208 | uint8_t fc_sfp_passive:1; /* Passive cable */ |
| 3209 | uint8_t fc_lw_laser:1; /* Longwave laser */ |
| 3210 | uint8_t fc_sw_laser_sl:1; |
| 3211 | uint8_t fc_sw_laser_sn:1; |
| 3212 | uint8_t fc_el_hi:1; /* Electrical enclosure high bit */ |
| 3213 | }; |
| 3214 | |
| 3215 | struct sff_trasnceiver_codes_byte6 { |
| 3216 | uint8_t fc_tm_sm:1; /* Single Mode */ |
| 3217 | uint8_t reserved:1; |
| 3218 | uint8_t fc_tm_m6:1; /* Multimode, 62.5um (M6) */ |
| 3219 | uint8_t fc_tm_tv:1; /* Video Coax (TV) */ |
| 3220 | uint8_t fc_tm_mi:1; /* Miniature Coax (MI) */ |
| 3221 | uint8_t fc_tm_tp:1; /* Twisted Pair (TP) */ |
| 3222 | uint8_t fc_tm_tw:1; /* Twin Axial Pair */ |
| 3223 | }; |
| 3224 | |
| 3225 | struct sff_trasnceiver_codes_byte7 { |
| 3226 | uint8_t fc_sp_100MB:1; /* 100 MB/sec */ |
| 3227 | uint8_t reserve:1; |
| 3228 | uint8_t fc_sp_200mb:1; /* 200 MB/sec */ |
| 3229 | uint8_t fc_sp_3200MB:1; /* 3200 MB/sec */ |
| 3230 | uint8_t fc_sp_400MB:1; /* 400 MB/sec */ |
| 3231 | uint8_t fc_sp_1600MB:1; /* 1600 MB/sec */ |
| 3232 | uint8_t fc_sp_800MB:1; /* 800 MB/sec */ |
| 3233 | uint8_t fc_sp_1200MB:1; /* 1200 MB/sec */ |
| 3234 | }; |
| 3235 | |
| 3236 | /* User writable non-volatile memory, SFF-8472 Table 3.20 */ |
| 3237 | struct user_eeprom { |
| 3238 | uint8_t vendor_name[16]; |
| 3239 | uint8_t vendor_oui[3]; |
| 3240 | uint8_t vendor_pn[816]; |
| 3241 | uint8_t vendor_rev[4]; |
| 3242 | uint8_t vendor_sn[16]; |
| 3243 | uint8_t datecode[6]; |
| 3244 | uint8_t lot_code[2]; |
| 3245 | uint8_t reserved191[57]; |
| 3246 | }; |
| 3247 | |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 3248 | struct lpfc_mbx_pc_sli4_params { |
James Smart | 28baac7 | 2010-02-12 14:42:03 -0500 | [diff] [blame] | 3249 | uint32_t word1; |
| 3250 | #define qs_SHIFT 0 |
| 3251 | #define qs_MASK 0x00000001 |
| 3252 | #define qs_WORD word1 |
| 3253 | #define wr_SHIFT 1 |
| 3254 | #define wr_MASK 0x00000001 |
| 3255 | #define wr_WORD word1 |
| 3256 | #define pf_SHIFT 8 |
| 3257 | #define pf_MASK 0x000000ff |
| 3258 | #define pf_WORD word1 |
| 3259 | #define cpn_SHIFT 16 |
| 3260 | #define cpn_MASK 0x000000ff |
| 3261 | #define cpn_WORD word1 |
| 3262 | uint32_t word2; |
| 3263 | #define if_type_SHIFT 0 |
| 3264 | #define if_type_MASK 0x00000007 |
| 3265 | #define if_type_WORD word2 |
| 3266 | #define sli_rev_SHIFT 4 |
| 3267 | #define sli_rev_MASK 0x0000000f |
| 3268 | #define sli_rev_WORD word2 |
| 3269 | #define sli_family_SHIFT 8 |
| 3270 | #define sli_family_MASK 0x000000ff |
| 3271 | #define sli_family_WORD word2 |
| 3272 | #define featurelevel_1_SHIFT 16 |
| 3273 | #define featurelevel_1_MASK 0x000000ff |
| 3274 | #define featurelevel_1_WORD word2 |
| 3275 | #define featurelevel_2_SHIFT 24 |
| 3276 | #define featurelevel_2_MASK 0x0000001f |
| 3277 | #define featurelevel_2_WORD word2 |
| 3278 | uint32_t word3; |
| 3279 | #define fcoe_SHIFT 0 |
| 3280 | #define fcoe_MASK 0x00000001 |
| 3281 | #define fcoe_WORD word3 |
| 3282 | #define fc_SHIFT 1 |
| 3283 | #define fc_MASK 0x00000001 |
| 3284 | #define fc_WORD word3 |
| 3285 | #define nic_SHIFT 2 |
| 3286 | #define nic_MASK 0x00000001 |
| 3287 | #define nic_WORD word3 |
| 3288 | #define iscsi_SHIFT 3 |
| 3289 | #define iscsi_MASK 0x00000001 |
| 3290 | #define iscsi_WORD word3 |
| 3291 | #define rdma_SHIFT 4 |
| 3292 | #define rdma_MASK 0x00000001 |
| 3293 | #define rdma_WORD word3 |
| 3294 | uint32_t sge_supp_len; |
James Smart | cb5172e | 2010-03-15 11:25:07 -0400 | [diff] [blame] | 3295 | #define SLI4_PAGE_SIZE 4096 |
James Smart | 28baac7 | 2010-02-12 14:42:03 -0500 | [diff] [blame] | 3296 | uint32_t word5; |
| 3297 | #define if_page_sz_SHIFT 0 |
| 3298 | #define if_page_sz_MASK 0x0000ffff |
| 3299 | #define if_page_sz_WORD word5 |
| 3300 | #define loopbk_scope_SHIFT 24 |
| 3301 | #define loopbk_scope_MASK 0x0000000f |
| 3302 | #define loopbk_scope_WORD word5 |
| 3303 | #define rq_db_window_SHIFT 28 |
| 3304 | #define rq_db_window_MASK 0x0000000f |
| 3305 | #define rq_db_window_WORD word5 |
| 3306 | uint32_t word6; |
| 3307 | #define eq_pages_SHIFT 0 |
| 3308 | #define eq_pages_MASK 0x0000000f |
| 3309 | #define eq_pages_WORD word6 |
| 3310 | #define eqe_size_SHIFT 8 |
| 3311 | #define eqe_size_MASK 0x000000ff |
| 3312 | #define eqe_size_WORD word6 |
| 3313 | uint32_t word7; |
| 3314 | #define cq_pages_SHIFT 0 |
| 3315 | #define cq_pages_MASK 0x0000000f |
| 3316 | #define cq_pages_WORD word7 |
| 3317 | #define cqe_size_SHIFT 8 |
| 3318 | #define cqe_size_MASK 0x000000ff |
| 3319 | #define cqe_size_WORD word7 |
| 3320 | uint32_t word8; |
| 3321 | #define mq_pages_SHIFT 0 |
| 3322 | #define mq_pages_MASK 0x0000000f |
| 3323 | #define mq_pages_WORD word8 |
| 3324 | #define mqe_size_SHIFT 8 |
| 3325 | #define mqe_size_MASK 0x000000ff |
| 3326 | #define mqe_size_WORD word8 |
| 3327 | #define mq_elem_cnt_SHIFT 16 |
| 3328 | #define mq_elem_cnt_MASK 0x000000ff |
| 3329 | #define mq_elem_cnt_WORD word8 |
| 3330 | uint32_t word9; |
| 3331 | #define wq_pages_SHIFT 0 |
| 3332 | #define wq_pages_MASK 0x0000ffff |
| 3333 | #define wq_pages_WORD word9 |
| 3334 | #define wqe_size_SHIFT 8 |
| 3335 | #define wqe_size_MASK 0x000000ff |
| 3336 | #define wqe_size_WORD word9 |
| 3337 | uint32_t word10; |
| 3338 | #define rq_pages_SHIFT 0 |
| 3339 | #define rq_pages_MASK 0x0000ffff |
| 3340 | #define rq_pages_WORD word10 |
| 3341 | #define rqe_size_SHIFT 8 |
| 3342 | #define rqe_size_MASK 0x000000ff |
| 3343 | #define rqe_size_WORD word10 |
| 3344 | uint32_t word11; |
| 3345 | #define hdr_pages_SHIFT 0 |
| 3346 | #define hdr_pages_MASK 0x0000000f |
| 3347 | #define hdr_pages_WORD word11 |
| 3348 | #define hdr_size_SHIFT 8 |
| 3349 | #define hdr_size_MASK 0x0000000f |
| 3350 | #define hdr_size_WORD word11 |
| 3351 | #define hdr_pp_align_SHIFT 16 |
| 3352 | #define hdr_pp_align_MASK 0x0000ffff |
| 3353 | #define hdr_pp_align_WORD word11 |
| 3354 | uint32_t word12; |
| 3355 | #define sgl_pages_SHIFT 0 |
| 3356 | #define sgl_pages_MASK 0x0000000f |
| 3357 | #define sgl_pages_WORD word12 |
| 3358 | #define sgl_pp_align_SHIFT 16 |
| 3359 | #define sgl_pp_align_MASK 0x0000ffff |
| 3360 | #define sgl_pp_align_WORD word12 |
| 3361 | uint32_t rsvd_13_63[51]; |
| 3362 | }; |
James Smart | 9589b062 | 2011-04-16 11:03:17 -0400 | [diff] [blame] | 3363 | #define SLI4_PAGE_ALIGN(addr) (((addr)+((SLI4_PAGE_SIZE)-1)) \ |
| 3364 | &(~((SLI4_PAGE_SIZE)-1))) |
James Smart | 28baac7 | 2010-02-12 14:42:03 -0500 | [diff] [blame] | 3365 | |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 3366 | struct lpfc_sli4_parameters { |
| 3367 | uint32_t word0; |
| 3368 | #define cfg_prot_type_SHIFT 0 |
| 3369 | #define cfg_prot_type_MASK 0x000000FF |
| 3370 | #define cfg_prot_type_WORD word0 |
| 3371 | uint32_t word1; |
| 3372 | #define cfg_ft_SHIFT 0 |
| 3373 | #define cfg_ft_MASK 0x00000001 |
| 3374 | #define cfg_ft_WORD word1 |
| 3375 | #define cfg_sli_rev_SHIFT 4 |
| 3376 | #define cfg_sli_rev_MASK 0x0000000f |
| 3377 | #define cfg_sli_rev_WORD word1 |
| 3378 | #define cfg_sli_family_SHIFT 8 |
| 3379 | #define cfg_sli_family_MASK 0x0000000f |
| 3380 | #define cfg_sli_family_WORD word1 |
| 3381 | #define cfg_if_type_SHIFT 12 |
| 3382 | #define cfg_if_type_MASK 0x0000000f |
| 3383 | #define cfg_if_type_WORD word1 |
| 3384 | #define cfg_sli_hint_1_SHIFT 16 |
| 3385 | #define cfg_sli_hint_1_MASK 0x000000ff |
| 3386 | #define cfg_sli_hint_1_WORD word1 |
| 3387 | #define cfg_sli_hint_2_SHIFT 24 |
| 3388 | #define cfg_sli_hint_2_MASK 0x0000001f |
| 3389 | #define cfg_sli_hint_2_WORD word1 |
| 3390 | uint32_t word2; |
James Smart | 7365f6f | 2018-02-22 08:18:46 -0800 | [diff] [blame] | 3391 | #define cfg_eqav_SHIFT 31 |
| 3392 | #define cfg_eqav_MASK 0x00000001 |
| 3393 | #define cfg_eqav_WORD word2 |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 3394 | uint32_t word3; |
| 3395 | uint32_t word4; |
| 3396 | #define cfg_cqv_SHIFT 14 |
| 3397 | #define cfg_cqv_MASK 0x00000003 |
| 3398 | #define cfg_cqv_WORD word4 |
James Smart | c176ffa | 2018-01-30 15:58:46 -0800 | [diff] [blame] | 3399 | #define cfg_cqpsize_SHIFT 16 |
| 3400 | #define cfg_cqpsize_MASK 0x000000ff |
| 3401 | #define cfg_cqpsize_WORD word4 |
James Smart | 7365f6f | 2018-02-22 08:18:46 -0800 | [diff] [blame] | 3402 | #define cfg_cqav_SHIFT 31 |
| 3403 | #define cfg_cqav_MASK 0x00000001 |
| 3404 | #define cfg_cqav_WORD word4 |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 3405 | uint32_t word5; |
| 3406 | uint32_t word6; |
| 3407 | #define cfg_mqv_SHIFT 14 |
| 3408 | #define cfg_mqv_MASK 0x00000003 |
| 3409 | #define cfg_mqv_WORD word6 |
| 3410 | uint32_t word7; |
| 3411 | uint32_t word8; |
James Smart | 895427b | 2017-02-12 13:52:30 -0800 | [diff] [blame] | 3412 | #define cfg_wqpcnt_SHIFT 0 |
| 3413 | #define cfg_wqpcnt_MASK 0x0000000f |
| 3414 | #define cfg_wqpcnt_WORD word8 |
James Smart | 0c65187 | 2013-07-15 18:33:23 -0400 | [diff] [blame] | 3415 | #define cfg_wqsize_SHIFT 8 |
| 3416 | #define cfg_wqsize_MASK 0x0000000f |
| 3417 | #define cfg_wqsize_WORD word8 |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 3418 | #define cfg_wqv_SHIFT 14 |
| 3419 | #define cfg_wqv_MASK 0x00000003 |
| 3420 | #define cfg_wqv_WORD word8 |
James Smart | 895427b | 2017-02-12 13:52:30 -0800 | [diff] [blame] | 3421 | #define cfg_wqpsize_SHIFT 16 |
| 3422 | #define cfg_wqpsize_MASK 0x000000ff |
| 3423 | #define cfg_wqpsize_WORD word8 |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 3424 | uint32_t word9; |
| 3425 | uint32_t word10; |
| 3426 | #define cfg_rqv_SHIFT 14 |
| 3427 | #define cfg_rqv_MASK 0x00000003 |
| 3428 | #define cfg_rqv_WORD word10 |
| 3429 | uint32_t word11; |
| 3430 | #define cfg_rq_db_window_SHIFT 28 |
| 3431 | #define cfg_rq_db_window_MASK 0x0000000f |
| 3432 | #define cfg_rq_db_window_WORD word11 |
| 3433 | uint32_t word12; |
| 3434 | #define cfg_fcoe_SHIFT 0 |
| 3435 | #define cfg_fcoe_MASK 0x00000001 |
| 3436 | #define cfg_fcoe_WORD word12 |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 3437 | #define cfg_ext_SHIFT 1 |
| 3438 | #define cfg_ext_MASK 0x00000001 |
| 3439 | #define cfg_ext_WORD word12 |
| 3440 | #define cfg_hdrr_SHIFT 2 |
| 3441 | #define cfg_hdrr_MASK 0x00000001 |
| 3442 | #define cfg_hdrr_WORD word12 |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 3443 | #define cfg_phwq_SHIFT 15 |
| 3444 | #define cfg_phwq_MASK 0x00000001 |
| 3445 | #define cfg_phwq_WORD word12 |
James Smart | 1ba981f | 2014-02-20 09:56:45 -0500 | [diff] [blame] | 3446 | #define cfg_oas_SHIFT 25 |
| 3447 | #define cfg_oas_MASK 0x00000001 |
| 3448 | #define cfg_oas_WORD word12 |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 3449 | #define cfg_loopbk_scope_SHIFT 28 |
| 3450 | #define cfg_loopbk_scope_MASK 0x0000000f |
| 3451 | #define cfg_loopbk_scope_WORD word12 |
| 3452 | uint32_t sge_supp_len; |
| 3453 | uint32_t word14; |
| 3454 | #define cfg_sgl_page_cnt_SHIFT 0 |
| 3455 | #define cfg_sgl_page_cnt_MASK 0x0000000f |
| 3456 | #define cfg_sgl_page_cnt_WORD word14 |
| 3457 | #define cfg_sgl_page_size_SHIFT 8 |
| 3458 | #define cfg_sgl_page_size_MASK 0x000000ff |
| 3459 | #define cfg_sgl_page_size_WORD word14 |
| 3460 | #define cfg_sgl_pp_align_SHIFT 16 |
| 3461 | #define cfg_sgl_pp_align_MASK 0x000000ff |
| 3462 | #define cfg_sgl_pp_align_WORD word14 |
| 3463 | uint32_t word15; |
| 3464 | uint32_t word16; |
| 3465 | uint32_t word17; |
| 3466 | uint32_t word18; |
| 3467 | uint32_t word19; |
James Smart | b5c5395 | 2016-03-31 14:12:30 -0700 | [diff] [blame] | 3468 | #define cfg_ext_embed_cb_SHIFT 0 |
| 3469 | #define cfg_ext_embed_cb_MASK 0x00000001 |
| 3470 | #define cfg_ext_embed_cb_WORD word19 |
James Smart | 7bdedb3 | 2016-07-06 12:36:00 -0700 | [diff] [blame] | 3471 | #define cfg_mds_diags_SHIFT 1 |
| 3472 | #define cfg_mds_diags_MASK 0x00000001 |
| 3473 | #define cfg_mds_diags_WORD word19 |
James Smart | 895427b | 2017-02-12 13:52:30 -0800 | [diff] [blame] | 3474 | #define cfg_nvme_SHIFT 3 |
| 3475 | #define cfg_nvme_MASK 0x00000001 |
| 3476 | #define cfg_nvme_WORD word19 |
| 3477 | #define cfg_xib_SHIFT 4 |
| 3478 | #define cfg_xib_MASK 0x00000001 |
| 3479 | #define cfg_xib_WORD word19 |
James Smart | d79c9e9 | 2019-08-14 16:57:09 -0700 | [diff] [blame] | 3480 | #define cfg_xpsgl_SHIFT 6 |
| 3481 | #define cfg_xpsgl_MASK 0x00000001 |
| 3482 | #define cfg_xpsgl_WORD word19 |
James Smart | 0cf07f84 | 2017-06-01 21:07:10 -0700 | [diff] [blame] | 3483 | #define cfg_eqdr_SHIFT 8 |
| 3484 | #define cfg_eqdr_MASK 0x00000001 |
| 3485 | #define cfg_eqdr_WORD word19 |
James Smart | 20aefac | 2018-01-30 15:58:58 -0800 | [diff] [blame] | 3486 | #define cfg_nosr_SHIFT 9 |
| 3487 | #define cfg_nosr_MASK 0x00000001 |
| 3488 | #define cfg_nosr_WORD word19 |
James Smart | 66e9e6b | 2018-06-26 08:24:27 -0700 | [diff] [blame] | 3489 | |
| 3490 | #define cfg_bv1s_SHIFT 10 |
| 3491 | #define cfg_bv1s_MASK 0x00000001 |
| 3492 | #define cfg_bv1s_WORD word19 |
James Smart | 83c6cb1 | 2019-10-18 14:18:30 -0700 | [diff] [blame] | 3493 | #define cfg_pvl_SHIFT 13 |
| 3494 | #define cfg_pvl_MASK 0x00000001 |
| 3495 | #define cfg_pvl_WORD word19 |
James Smart | 66e9e6b | 2018-06-26 08:24:27 -0700 | [diff] [blame] | 3496 | |
James Smart | 0d8af09 | 2019-08-14 16:57:10 -0700 | [diff] [blame] | 3497 | #define cfg_nsler_SHIFT 12 |
| 3498 | #define cfg_nsler_MASK 0x00000001 |
| 3499 | #define cfg_nsler_WORD word19 |
| 3500 | |
James Smart | 66e9e6b | 2018-06-26 08:24:27 -0700 | [diff] [blame] | 3501 | uint32_t word20; |
| 3502 | #define cfg_max_tow_xri_SHIFT 0 |
| 3503 | #define cfg_max_tow_xri_MASK 0x0000ffff |
| 3504 | #define cfg_max_tow_xri_WORD word20 |
| 3505 | |
| 3506 | uint32_t word21; /* RESERVED */ |
| 3507 | uint32_t word22; /* RESERVED */ |
| 3508 | uint32_t word23; /* RESERVED */ |
| 3509 | |
| 3510 | uint32_t word24; |
| 3511 | #define cfg_frag_field_offset_SHIFT 0 |
| 3512 | #define cfg_frag_field_offset_MASK 0x0000ffff |
| 3513 | #define cfg_frag_field_offset_WORD word24 |
| 3514 | |
| 3515 | #define cfg_frag_field_size_SHIFT 16 |
| 3516 | #define cfg_frag_field_size_MASK 0x0000ffff |
| 3517 | #define cfg_frag_field_size_WORD word24 |
| 3518 | |
| 3519 | uint32_t word25; |
| 3520 | #define cfg_sgl_field_offset_SHIFT 0 |
| 3521 | #define cfg_sgl_field_offset_MASK 0x0000ffff |
| 3522 | #define cfg_sgl_field_offset_WORD word25 |
| 3523 | |
| 3524 | #define cfg_sgl_field_size_SHIFT 16 |
| 3525 | #define cfg_sgl_field_size_MASK 0x0000ffff |
| 3526 | #define cfg_sgl_field_size_WORD word25 |
| 3527 | |
| 3528 | uint32_t word26; /* Chain SGE initial value LOW */ |
| 3529 | uint32_t word27; /* Chain SGE initial value HIGH */ |
| 3530 | #define LPFC_NODELAY_MAX_IO 32 |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 3531 | }; |
| 3532 | |
James Smart | 7bdedb3 | 2016-07-06 12:36:00 -0700 | [diff] [blame] | 3533 | #define LPFC_SET_UE_RECOVERY 0x10 |
| 3534 | #define LPFC_SET_MDS_DIAGS 0x11 |
James Smart | 171f6c4 | 2019-11-04 16:57:07 -0800 | [diff] [blame] | 3535 | #define LPFC_SET_DUAL_DUMP 0x1e |
James Smart | 65791f1 | 2016-07-06 12:35:56 -0700 | [diff] [blame] | 3536 | struct lpfc_mbx_set_feature { |
| 3537 | struct mbox_header header; |
| 3538 | uint32_t feature; |
| 3539 | uint32_t param_len; |
| 3540 | uint32_t word6; |
| 3541 | #define lpfc_mbx_set_feature_UER_SHIFT 0 |
| 3542 | #define lpfc_mbx_set_feature_UER_MASK 0x00000001 |
| 3543 | #define lpfc_mbx_set_feature_UER_WORD word6 |
James Smart | 7bdedb3 | 2016-07-06 12:36:00 -0700 | [diff] [blame] | 3544 | #define lpfc_mbx_set_feature_mds_SHIFT 0 |
| 3545 | #define lpfc_mbx_set_feature_mds_MASK 0x00000001 |
| 3546 | #define lpfc_mbx_set_feature_mds_WORD word6 |
| 3547 | #define lpfc_mbx_set_feature_mds_deep_loopbk_SHIFT 1 |
| 3548 | #define lpfc_mbx_set_feature_mds_deep_loopbk_MASK 0x00000001 |
| 3549 | #define lpfc_mbx_set_feature_mds_deep_loopbk_WORD word6 |
James Smart | 171f6c4 | 2019-11-04 16:57:07 -0800 | [diff] [blame] | 3550 | #define lpfc_mbx_set_feature_dd_SHIFT 0 |
| 3551 | #define lpfc_mbx_set_feature_dd_MASK 0x00000001 |
| 3552 | #define lpfc_mbx_set_feature_dd_WORD word6 |
| 3553 | #define lpfc_mbx_set_feature_ddquery_SHIFT 1 |
| 3554 | #define lpfc_mbx_set_feature_ddquery_MASK 0x00000001 |
| 3555 | #define lpfc_mbx_set_feature_ddquery_WORD word6 |
| 3556 | #define LPFC_DISABLE_DUAL_DUMP 0 |
| 3557 | #define LPFC_ENABLE_DUAL_DUMP 1 |
| 3558 | #define LPFC_QUERY_OP_DUAL_DUMP 2 |
James Smart | 65791f1 | 2016-07-06 12:35:56 -0700 | [diff] [blame] | 3559 | uint32_t word7; |
| 3560 | #define lpfc_mbx_set_feature_UERP_SHIFT 0 |
| 3561 | #define lpfc_mbx_set_feature_UERP_MASK 0x0000ffff |
| 3562 | #define lpfc_mbx_set_feature_UERP_WORD word7 |
| 3563 | #define lpfc_mbx_set_feature_UESR_SHIFT 16 |
| 3564 | #define lpfc_mbx_set_feature_UESR_MASK 0x0000ffff |
| 3565 | #define lpfc_mbx_set_feature_UESR_WORD word7 |
| 3566 | }; |
| 3567 | |
| 3568 | |
James Smart | 61bda8f | 2016-10-13 15:06:05 -0700 | [diff] [blame] | 3569 | #define LPFC_SET_HOST_OS_DRIVER_VERSION 0x2 |
| 3570 | struct lpfc_mbx_set_host_data { |
| 3571 | #define LPFC_HOST_OS_DRIVER_VERSION_SIZE 48 |
| 3572 | struct mbox_header header; |
| 3573 | uint32_t param_id; |
| 3574 | uint32_t param_len; |
| 3575 | uint8_t data[LPFC_HOST_OS_DRIVER_VERSION_SIZE]; |
| 3576 | }; |
| 3577 | |
James Smart | 1dc5ec2 | 2018-10-23 13:41:11 -0700 | [diff] [blame] | 3578 | struct lpfc_mbx_set_trunk_mode { |
| 3579 | struct mbox_header header; |
| 3580 | uint32_t word0; |
| 3581 | #define lpfc_mbx_set_trunk_mode_WORD word0 |
| 3582 | #define lpfc_mbx_set_trunk_mode_SHIFT 0 |
| 3583 | #define lpfc_mbx_set_trunk_mode_MASK 0xFF |
| 3584 | uint32_t word1; |
| 3585 | uint32_t word2; |
| 3586 | }; |
James Smart | 61bda8f | 2016-10-13 15:06:05 -0700 | [diff] [blame] | 3587 | |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 3588 | struct lpfc_mbx_get_sli4_parameters { |
| 3589 | struct mbox_header header; |
| 3590 | struct lpfc_sli4_parameters sli4_parameters; |
| 3591 | }; |
| 3592 | |
James Smart | 912e3ac | 2011-05-24 11:42:11 -0400 | [diff] [blame] | 3593 | struct lpfc_rscr_desc_generic { |
James Smart | 8aa134a | 2012-08-14 14:25:29 -0400 | [diff] [blame] | 3594 | #define LPFC_RSRC_DESC_WSIZE 22 |
James Smart | 912e3ac | 2011-05-24 11:42:11 -0400 | [diff] [blame] | 3595 | uint32_t desc[LPFC_RSRC_DESC_WSIZE]; |
| 3596 | }; |
| 3597 | |
| 3598 | struct lpfc_rsrc_desc_pcie { |
| 3599 | uint32_t word0; |
| 3600 | #define lpfc_rsrc_desc_pcie_type_SHIFT 0 |
| 3601 | #define lpfc_rsrc_desc_pcie_type_MASK 0x000000ff |
| 3602 | #define lpfc_rsrc_desc_pcie_type_WORD word0 |
| 3603 | #define LPFC_RSRC_DESC_TYPE_PCIE 0x40 |
James Smart | 8aa134a | 2012-08-14 14:25:29 -0400 | [diff] [blame] | 3604 | #define lpfc_rsrc_desc_pcie_length_SHIFT 8 |
| 3605 | #define lpfc_rsrc_desc_pcie_length_MASK 0x000000ff |
| 3606 | #define lpfc_rsrc_desc_pcie_length_WORD word0 |
James Smart | 912e3ac | 2011-05-24 11:42:11 -0400 | [diff] [blame] | 3607 | uint32_t word1; |
| 3608 | #define lpfc_rsrc_desc_pcie_pfnum_SHIFT 0 |
| 3609 | #define lpfc_rsrc_desc_pcie_pfnum_MASK 0x000000ff |
| 3610 | #define lpfc_rsrc_desc_pcie_pfnum_WORD word1 |
| 3611 | uint32_t reserved; |
| 3612 | uint32_t word3; |
| 3613 | #define lpfc_rsrc_desc_pcie_sriov_sta_SHIFT 0 |
| 3614 | #define lpfc_rsrc_desc_pcie_sriov_sta_MASK 0x000000ff |
| 3615 | #define lpfc_rsrc_desc_pcie_sriov_sta_WORD word3 |
| 3616 | #define lpfc_rsrc_desc_pcie_pf_sta_SHIFT 8 |
| 3617 | #define lpfc_rsrc_desc_pcie_pf_sta_MASK 0x000000ff |
| 3618 | #define lpfc_rsrc_desc_pcie_pf_sta_WORD word3 |
| 3619 | #define lpfc_rsrc_desc_pcie_pf_type_SHIFT 16 |
| 3620 | #define lpfc_rsrc_desc_pcie_pf_type_MASK 0x000000ff |
| 3621 | #define lpfc_rsrc_desc_pcie_pf_type_WORD word3 |
| 3622 | uint32_t word4; |
| 3623 | #define lpfc_rsrc_desc_pcie_nr_virtfn_SHIFT 0 |
| 3624 | #define lpfc_rsrc_desc_pcie_nr_virtfn_MASK 0x0000ffff |
| 3625 | #define lpfc_rsrc_desc_pcie_nr_virtfn_WORD word4 |
| 3626 | }; |
| 3627 | |
| 3628 | struct lpfc_rsrc_desc_fcfcoe { |
| 3629 | uint32_t word0; |
| 3630 | #define lpfc_rsrc_desc_fcfcoe_type_SHIFT 0 |
| 3631 | #define lpfc_rsrc_desc_fcfcoe_type_MASK 0x000000ff |
| 3632 | #define lpfc_rsrc_desc_fcfcoe_type_WORD word0 |
| 3633 | #define LPFC_RSRC_DESC_TYPE_FCFCOE 0x43 |
James Smart | 8aa134a | 2012-08-14 14:25:29 -0400 | [diff] [blame] | 3634 | #define lpfc_rsrc_desc_fcfcoe_length_SHIFT 8 |
| 3635 | #define lpfc_rsrc_desc_fcfcoe_length_MASK 0x000000ff |
| 3636 | #define lpfc_rsrc_desc_fcfcoe_length_WORD word0 |
| 3637 | #define LPFC_RSRC_DESC_TYPE_FCFCOE_V0_RSVD 0 |
| 3638 | #define LPFC_RSRC_DESC_TYPE_FCFCOE_V0_LENGTH 72 |
| 3639 | #define LPFC_RSRC_DESC_TYPE_FCFCOE_V1_LENGTH 88 |
James Smart | 912e3ac | 2011-05-24 11:42:11 -0400 | [diff] [blame] | 3640 | uint32_t word1; |
| 3641 | #define lpfc_rsrc_desc_fcfcoe_vfnum_SHIFT 0 |
| 3642 | #define lpfc_rsrc_desc_fcfcoe_vfnum_MASK 0x000000ff |
| 3643 | #define lpfc_rsrc_desc_fcfcoe_vfnum_WORD word1 |
| 3644 | #define lpfc_rsrc_desc_fcfcoe_pfnum_SHIFT 16 |
| 3645 | #define lpfc_rsrc_desc_fcfcoe_pfnum_MASK 0x000007ff |
| 3646 | #define lpfc_rsrc_desc_fcfcoe_pfnum_WORD word1 |
| 3647 | uint32_t word2; |
| 3648 | #define lpfc_rsrc_desc_fcfcoe_rpi_cnt_SHIFT 0 |
| 3649 | #define lpfc_rsrc_desc_fcfcoe_rpi_cnt_MASK 0x0000ffff |
| 3650 | #define lpfc_rsrc_desc_fcfcoe_rpi_cnt_WORD word2 |
| 3651 | #define lpfc_rsrc_desc_fcfcoe_xri_cnt_SHIFT 16 |
| 3652 | #define lpfc_rsrc_desc_fcfcoe_xri_cnt_MASK 0x0000ffff |
| 3653 | #define lpfc_rsrc_desc_fcfcoe_xri_cnt_WORD word2 |
| 3654 | uint32_t word3; |
| 3655 | #define lpfc_rsrc_desc_fcfcoe_wq_cnt_SHIFT 0 |
| 3656 | #define lpfc_rsrc_desc_fcfcoe_wq_cnt_MASK 0x0000ffff |
| 3657 | #define lpfc_rsrc_desc_fcfcoe_wq_cnt_WORD word3 |
| 3658 | #define lpfc_rsrc_desc_fcfcoe_rq_cnt_SHIFT 16 |
| 3659 | #define lpfc_rsrc_desc_fcfcoe_rq_cnt_MASK 0x0000ffff |
| 3660 | #define lpfc_rsrc_desc_fcfcoe_rq_cnt_WORD word3 |
| 3661 | uint32_t word4; |
| 3662 | #define lpfc_rsrc_desc_fcfcoe_cq_cnt_SHIFT 0 |
| 3663 | #define lpfc_rsrc_desc_fcfcoe_cq_cnt_MASK 0x0000ffff |
| 3664 | #define lpfc_rsrc_desc_fcfcoe_cq_cnt_WORD word4 |
| 3665 | #define lpfc_rsrc_desc_fcfcoe_vpi_cnt_SHIFT 16 |
| 3666 | #define lpfc_rsrc_desc_fcfcoe_vpi_cnt_MASK 0x0000ffff |
| 3667 | #define lpfc_rsrc_desc_fcfcoe_vpi_cnt_WORD word4 |
| 3668 | uint32_t word5; |
| 3669 | #define lpfc_rsrc_desc_fcfcoe_fcfi_cnt_SHIFT 0 |
| 3670 | #define lpfc_rsrc_desc_fcfcoe_fcfi_cnt_MASK 0x0000ffff |
| 3671 | #define lpfc_rsrc_desc_fcfcoe_fcfi_cnt_WORD word5 |
| 3672 | #define lpfc_rsrc_desc_fcfcoe_vfi_cnt_SHIFT 16 |
| 3673 | #define lpfc_rsrc_desc_fcfcoe_vfi_cnt_MASK 0x0000ffff |
| 3674 | #define lpfc_rsrc_desc_fcfcoe_vfi_cnt_WORD word5 |
| 3675 | uint32_t word6; |
| 3676 | uint32_t word7; |
| 3677 | uint32_t word8; |
| 3678 | uint32_t word9; |
| 3679 | uint32_t word10; |
| 3680 | uint32_t word11; |
| 3681 | uint32_t word12; |
| 3682 | uint32_t word13; |
| 3683 | #define lpfc_rsrc_desc_fcfcoe_lnk_nr_SHIFT 0 |
| 3684 | #define lpfc_rsrc_desc_fcfcoe_lnk_nr_MASK 0x0000003f |
| 3685 | #define lpfc_rsrc_desc_fcfcoe_lnk_nr_WORD word13 |
| 3686 | #define lpfc_rsrc_desc_fcfcoe_lnk_tp_SHIFT 6 |
| 3687 | #define lpfc_rsrc_desc_fcfcoe_lnk_tp_MASK 0x00000003 |
| 3688 | #define lpfc_rsrc_desc_fcfcoe_lnk_tp_WORD word13 |
| 3689 | #define lpfc_rsrc_desc_fcfcoe_lmc_SHIFT 8 |
| 3690 | #define lpfc_rsrc_desc_fcfcoe_lmc_MASK 0x00000001 |
| 3691 | #define lpfc_rsrc_desc_fcfcoe_lmc_WORD word13 |
| 3692 | #define lpfc_rsrc_desc_fcfcoe_lld_SHIFT 9 |
| 3693 | #define lpfc_rsrc_desc_fcfcoe_lld_MASK 0x00000001 |
| 3694 | #define lpfc_rsrc_desc_fcfcoe_lld_WORD word13 |
| 3695 | #define lpfc_rsrc_desc_fcfcoe_eq_cnt_SHIFT 16 |
| 3696 | #define lpfc_rsrc_desc_fcfcoe_eq_cnt_MASK 0x0000ffff |
| 3697 | #define lpfc_rsrc_desc_fcfcoe_eq_cnt_WORD word13 |
James Smart | 8aa134a | 2012-08-14 14:25:29 -0400 | [diff] [blame] | 3698 | /* extended FC/FCoE Resource Descriptor when length = 88 bytes */ |
| 3699 | uint32_t bw_min; |
| 3700 | uint32_t bw_max; |
| 3701 | uint32_t iops_min; |
| 3702 | uint32_t iops_max; |
| 3703 | uint32_t reserved[4]; |
James Smart | 912e3ac | 2011-05-24 11:42:11 -0400 | [diff] [blame] | 3704 | }; |
| 3705 | |
| 3706 | struct lpfc_func_cfg { |
| 3707 | #define LPFC_RSRC_DESC_MAX_NUM 2 |
| 3708 | uint32_t rsrc_desc_count; |
| 3709 | struct lpfc_rscr_desc_generic desc[LPFC_RSRC_DESC_MAX_NUM]; |
| 3710 | }; |
| 3711 | |
| 3712 | struct lpfc_mbx_get_func_cfg { |
| 3713 | struct mbox_header header; |
| 3714 | #define LPFC_CFG_TYPE_PERSISTENT_OVERRIDE 0x0 |
| 3715 | #define LPFC_CFG_TYPE_FACTURY_DEFAULT 0x1 |
| 3716 | #define LPFC_CFG_TYPE_CURRENT_ACTIVE 0x2 |
| 3717 | struct lpfc_func_cfg func_cfg; |
| 3718 | }; |
| 3719 | |
| 3720 | struct lpfc_prof_cfg { |
| 3721 | #define LPFC_RSRC_DESC_MAX_NUM 2 |
| 3722 | uint32_t rsrc_desc_count; |
| 3723 | struct lpfc_rscr_desc_generic desc[LPFC_RSRC_DESC_MAX_NUM]; |
| 3724 | }; |
| 3725 | |
| 3726 | struct lpfc_mbx_get_prof_cfg { |
| 3727 | struct mbox_header header; |
| 3728 | #define LPFC_CFG_TYPE_PERSISTENT_OVERRIDE 0x0 |
| 3729 | #define LPFC_CFG_TYPE_FACTURY_DEFAULT 0x1 |
| 3730 | #define LPFC_CFG_TYPE_CURRENT_ACTIVE 0x2 |
| 3731 | union { |
| 3732 | struct { |
| 3733 | uint32_t word10; |
| 3734 | #define lpfc_mbx_get_prof_cfg_prof_id_SHIFT 0 |
| 3735 | #define lpfc_mbx_get_prof_cfg_prof_id_MASK 0x000000ff |
| 3736 | #define lpfc_mbx_get_prof_cfg_prof_id_WORD word10 |
| 3737 | #define lpfc_mbx_get_prof_cfg_prof_tp_SHIFT 8 |
| 3738 | #define lpfc_mbx_get_prof_cfg_prof_tp_MASK 0x00000003 |
| 3739 | #define lpfc_mbx_get_prof_cfg_prof_tp_WORD word10 |
| 3740 | } request; |
| 3741 | struct { |
| 3742 | struct lpfc_prof_cfg prof_cfg; |
| 3743 | } response; |
| 3744 | } u; |
| 3745 | }; |
| 3746 | |
James Smart | cd1c830 | 2011-10-10 21:33:25 -0400 | [diff] [blame] | 3747 | struct lpfc_controller_attribute { |
| 3748 | uint32_t version_string[8]; |
| 3749 | uint32_t manufacturer_name[8]; |
| 3750 | uint32_t supported_modes; |
| 3751 | uint32_t word17; |
| 3752 | #define lpfc_cntl_attr_eprom_ver_lo_SHIFT 0 |
| 3753 | #define lpfc_cntl_attr_eprom_ver_lo_MASK 0x000000ff |
| 3754 | #define lpfc_cntl_attr_eprom_ver_lo_WORD word17 |
| 3755 | #define lpfc_cntl_attr_eprom_ver_hi_SHIFT 8 |
| 3756 | #define lpfc_cntl_attr_eprom_ver_hi_MASK 0x000000ff |
| 3757 | #define lpfc_cntl_attr_eprom_ver_hi_WORD word17 |
| 3758 | uint32_t mbx_da_struct_ver; |
| 3759 | uint32_t ep_fw_da_struct_ver; |
| 3760 | uint32_t ncsi_ver_str[3]; |
| 3761 | uint32_t dflt_ext_timeout; |
| 3762 | uint32_t model_number[8]; |
| 3763 | uint32_t description[16]; |
| 3764 | uint32_t serial_number[8]; |
| 3765 | uint32_t ip_ver_str[8]; |
| 3766 | uint32_t fw_ver_str[8]; |
| 3767 | uint32_t bios_ver_str[8]; |
| 3768 | uint32_t redboot_ver_str[8]; |
| 3769 | uint32_t driver_ver_str[8]; |
| 3770 | uint32_t flash_fw_ver_str[8]; |
| 3771 | uint32_t functionality; |
| 3772 | uint32_t word105; |
| 3773 | #define lpfc_cntl_attr_max_cbd_len_SHIFT 0 |
| 3774 | #define lpfc_cntl_attr_max_cbd_len_MASK 0x0000ffff |
| 3775 | #define lpfc_cntl_attr_max_cbd_len_WORD word105 |
| 3776 | #define lpfc_cntl_attr_asic_rev_SHIFT 16 |
| 3777 | #define lpfc_cntl_attr_asic_rev_MASK 0x000000ff |
| 3778 | #define lpfc_cntl_attr_asic_rev_WORD word105 |
| 3779 | #define lpfc_cntl_attr_gen_guid0_SHIFT 24 |
| 3780 | #define lpfc_cntl_attr_gen_guid0_MASK 0x000000ff |
| 3781 | #define lpfc_cntl_attr_gen_guid0_WORD word105 |
| 3782 | uint32_t gen_guid1_12[3]; |
| 3783 | uint32_t word109; |
| 3784 | #define lpfc_cntl_attr_gen_guid13_14_SHIFT 0 |
| 3785 | #define lpfc_cntl_attr_gen_guid13_14_MASK 0x0000ffff |
| 3786 | #define lpfc_cntl_attr_gen_guid13_14_WORD word109 |
| 3787 | #define lpfc_cntl_attr_gen_guid15_SHIFT 16 |
| 3788 | #define lpfc_cntl_attr_gen_guid15_MASK 0x000000ff |
| 3789 | #define lpfc_cntl_attr_gen_guid15_WORD word109 |
| 3790 | #define lpfc_cntl_attr_hba_port_cnt_SHIFT 24 |
| 3791 | #define lpfc_cntl_attr_hba_port_cnt_MASK 0x000000ff |
| 3792 | #define lpfc_cntl_attr_hba_port_cnt_WORD word109 |
| 3793 | uint32_t word110; |
| 3794 | #define lpfc_cntl_attr_dflt_lnk_tmo_SHIFT 0 |
| 3795 | #define lpfc_cntl_attr_dflt_lnk_tmo_MASK 0x0000ffff |
| 3796 | #define lpfc_cntl_attr_dflt_lnk_tmo_WORD word110 |
| 3797 | #define lpfc_cntl_attr_multi_func_dev_SHIFT 24 |
| 3798 | #define lpfc_cntl_attr_multi_func_dev_MASK 0x000000ff |
| 3799 | #define lpfc_cntl_attr_multi_func_dev_WORD word110 |
| 3800 | uint32_t word111; |
| 3801 | #define lpfc_cntl_attr_cache_valid_SHIFT 0 |
| 3802 | #define lpfc_cntl_attr_cache_valid_MASK 0x000000ff |
| 3803 | #define lpfc_cntl_attr_cache_valid_WORD word111 |
| 3804 | #define lpfc_cntl_attr_hba_status_SHIFT 8 |
| 3805 | #define lpfc_cntl_attr_hba_status_MASK 0x000000ff |
| 3806 | #define lpfc_cntl_attr_hba_status_WORD word111 |
| 3807 | #define lpfc_cntl_attr_max_domain_SHIFT 16 |
| 3808 | #define lpfc_cntl_attr_max_domain_MASK 0x000000ff |
| 3809 | #define lpfc_cntl_attr_max_domain_WORD word111 |
| 3810 | #define lpfc_cntl_attr_lnk_numb_SHIFT 24 |
| 3811 | #define lpfc_cntl_attr_lnk_numb_MASK 0x0000003f |
| 3812 | #define lpfc_cntl_attr_lnk_numb_WORD word111 |
| 3813 | #define lpfc_cntl_attr_lnk_type_SHIFT 30 |
| 3814 | #define lpfc_cntl_attr_lnk_type_MASK 0x00000003 |
| 3815 | #define lpfc_cntl_attr_lnk_type_WORD word111 |
| 3816 | uint32_t fw_post_status; |
| 3817 | uint32_t hba_mtu[8]; |
| 3818 | uint32_t word121; |
| 3819 | uint32_t reserved1[3]; |
| 3820 | uint32_t word125; |
| 3821 | #define lpfc_cntl_attr_pci_vendor_id_SHIFT 0 |
| 3822 | #define lpfc_cntl_attr_pci_vendor_id_MASK 0x0000ffff |
| 3823 | #define lpfc_cntl_attr_pci_vendor_id_WORD word125 |
| 3824 | #define lpfc_cntl_attr_pci_device_id_SHIFT 16 |
| 3825 | #define lpfc_cntl_attr_pci_device_id_MASK 0x0000ffff |
| 3826 | #define lpfc_cntl_attr_pci_device_id_WORD word125 |
| 3827 | uint32_t word126; |
| 3828 | #define lpfc_cntl_attr_pci_subvdr_id_SHIFT 0 |
| 3829 | #define lpfc_cntl_attr_pci_subvdr_id_MASK 0x0000ffff |
| 3830 | #define lpfc_cntl_attr_pci_subvdr_id_WORD word126 |
| 3831 | #define lpfc_cntl_attr_pci_subsys_id_SHIFT 16 |
| 3832 | #define lpfc_cntl_attr_pci_subsys_id_MASK 0x0000ffff |
| 3833 | #define lpfc_cntl_attr_pci_subsys_id_WORD word126 |
| 3834 | uint32_t word127; |
| 3835 | #define lpfc_cntl_attr_pci_bus_num_SHIFT 0 |
| 3836 | #define lpfc_cntl_attr_pci_bus_num_MASK 0x000000ff |
| 3837 | #define lpfc_cntl_attr_pci_bus_num_WORD word127 |
| 3838 | #define lpfc_cntl_attr_pci_dev_num_SHIFT 8 |
| 3839 | #define lpfc_cntl_attr_pci_dev_num_MASK 0x000000ff |
| 3840 | #define lpfc_cntl_attr_pci_dev_num_WORD word127 |
| 3841 | #define lpfc_cntl_attr_pci_fnc_num_SHIFT 16 |
| 3842 | #define lpfc_cntl_attr_pci_fnc_num_MASK 0x000000ff |
| 3843 | #define lpfc_cntl_attr_pci_fnc_num_WORD word127 |
| 3844 | #define lpfc_cntl_attr_inf_type_SHIFT 24 |
| 3845 | #define lpfc_cntl_attr_inf_type_MASK 0x000000ff |
| 3846 | #define lpfc_cntl_attr_inf_type_WORD word127 |
| 3847 | uint32_t unique_id[2]; |
| 3848 | uint32_t word130; |
| 3849 | #define lpfc_cntl_attr_num_netfil_SHIFT 0 |
| 3850 | #define lpfc_cntl_attr_num_netfil_MASK 0x000000ff |
| 3851 | #define lpfc_cntl_attr_num_netfil_WORD word130 |
| 3852 | uint32_t reserved2[4]; |
| 3853 | }; |
| 3854 | |
| 3855 | struct lpfc_mbx_get_cntl_attributes { |
| 3856 | union lpfc_sli4_cfg_shdr cfg_shdr; |
| 3857 | struct lpfc_controller_attribute cntl_attr; |
| 3858 | }; |
| 3859 | |
| 3860 | struct lpfc_mbx_get_port_name { |
| 3861 | struct mbox_header header; |
| 3862 | union { |
| 3863 | struct { |
| 3864 | uint32_t word4; |
| 3865 | #define lpfc_mbx_get_port_name_lnk_type_SHIFT 0 |
| 3866 | #define lpfc_mbx_get_port_name_lnk_type_MASK 0x00000003 |
| 3867 | #define lpfc_mbx_get_port_name_lnk_type_WORD word4 |
| 3868 | } request; |
| 3869 | struct { |
| 3870 | uint32_t word4; |
| 3871 | #define lpfc_mbx_get_port_name_name0_SHIFT 0 |
| 3872 | #define lpfc_mbx_get_port_name_name0_MASK 0x000000FF |
| 3873 | #define lpfc_mbx_get_port_name_name0_WORD word4 |
| 3874 | #define lpfc_mbx_get_port_name_name1_SHIFT 8 |
| 3875 | #define lpfc_mbx_get_port_name_name1_MASK 0x000000FF |
| 3876 | #define lpfc_mbx_get_port_name_name1_WORD word4 |
| 3877 | #define lpfc_mbx_get_port_name_name2_SHIFT 16 |
| 3878 | #define lpfc_mbx_get_port_name_name2_MASK 0x000000FF |
| 3879 | #define lpfc_mbx_get_port_name_name2_WORD word4 |
| 3880 | #define lpfc_mbx_get_port_name_name3_SHIFT 24 |
| 3881 | #define lpfc_mbx_get_port_name_name3_MASK 0x000000FF |
| 3882 | #define lpfc_mbx_get_port_name_name3_WORD word4 |
| 3883 | #define LPFC_LINK_NUMBER_0 0 |
| 3884 | #define LPFC_LINK_NUMBER_1 1 |
| 3885 | #define LPFC_LINK_NUMBER_2 2 |
| 3886 | #define LPFC_LINK_NUMBER_3 3 |
| 3887 | } response; |
| 3888 | } u; |
| 3889 | }; |
| 3890 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 3891 | /* Mailbox Completion Queue Error Messages */ |
James Smart | cd1c830 | 2011-10-10 21:33:25 -0400 | [diff] [blame] | 3892 | #define MB_CQE_STATUS_SUCCESS 0x0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 3893 | #define MB_CQE_STATUS_INSUFFICIENT_PRIVILEGES 0x1 |
| 3894 | #define MB_CQE_STATUS_INVALID_PARAMETER 0x2 |
| 3895 | #define MB_CQE_STATUS_INSUFFICIENT_RESOURCES 0x3 |
| 3896 | #define MB_CEQ_STATUS_QUEUE_FLUSHING 0x4 |
| 3897 | #define MB_CQE_STATUS_DMA_FAILED 0x5 |
| 3898 | |
Dick Kennedy | 184fc2b | 2017-09-29 17:34:42 -0700 | [diff] [blame] | 3899 | #define LPFC_MBX_WR_CONFIG_MAX_BDE 1 |
James Smart | 52d5244 | 2011-05-24 11:42:45 -0400 | [diff] [blame] | 3900 | struct lpfc_mbx_wr_object { |
| 3901 | struct mbox_header header; |
| 3902 | union { |
| 3903 | struct { |
| 3904 | uint32_t word4; |
| 3905 | #define lpfc_wr_object_eof_SHIFT 31 |
| 3906 | #define lpfc_wr_object_eof_MASK 0x00000001 |
| 3907 | #define lpfc_wr_object_eof_WORD word4 |
James Smart | 5021267 | 2018-12-13 15:17:57 -0800 | [diff] [blame] | 3908 | #define lpfc_wr_object_eas_SHIFT 29 |
| 3909 | #define lpfc_wr_object_eas_MASK 0x00000001 |
| 3910 | #define lpfc_wr_object_eas_WORD word4 |
James Smart | 52d5244 | 2011-05-24 11:42:45 -0400 | [diff] [blame] | 3911 | #define lpfc_wr_object_write_length_SHIFT 0 |
| 3912 | #define lpfc_wr_object_write_length_MASK 0x00FFFFFF |
| 3913 | #define lpfc_wr_object_write_length_WORD word4 |
| 3914 | uint32_t write_offset; |
| 3915 | uint32_t object_name[26]; |
| 3916 | uint32_t bde_count; |
| 3917 | struct ulp_bde64 bde[LPFC_MBX_WR_CONFIG_MAX_BDE]; |
| 3918 | } request; |
| 3919 | struct { |
| 3920 | uint32_t actual_write_length; |
James Smart | 5021267 | 2018-12-13 15:17:57 -0800 | [diff] [blame] | 3921 | uint32_t word5; |
| 3922 | #define lpfc_wr_object_change_status_SHIFT 0 |
| 3923 | #define lpfc_wr_object_change_status_MASK 0x000000FF |
| 3924 | #define lpfc_wr_object_change_status_WORD word5 |
| 3925 | #define LPFC_CHANGE_STATUS_NO_RESET_NEEDED 0x00 |
| 3926 | #define LPFC_CHANGE_STATUS_PHYS_DEV_RESET 0x01 |
| 3927 | #define LPFC_CHANGE_STATUS_FW_RESET 0x02 |
| 3928 | #define LPFC_CHANGE_STATUS_PORT_MIGRATION 0x04 |
| 3929 | #define LPFC_CHANGE_STATUS_PCI_RESET 0x05 |
James Smart | f3d0a8a | 2019-12-18 15:58:01 -0800 | [diff] [blame] | 3930 | #define lpfc_wr_object_csf_SHIFT 8 |
| 3931 | #define lpfc_wr_object_csf_MASK 0x00000001 |
| 3932 | #define lpfc_wr_object_csf_WORD word5 |
James Smart | 52d5244 | 2011-05-24 11:42:45 -0400 | [diff] [blame] | 3933 | } response; |
| 3934 | } u; |
| 3935 | }; |
| 3936 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 3937 | /* mailbox queue entry structure */ |
| 3938 | struct lpfc_mqe { |
| 3939 | uint32_t word0; |
| 3940 | #define lpfc_mqe_status_SHIFT 16 |
| 3941 | #define lpfc_mqe_status_MASK 0x0000FFFF |
| 3942 | #define lpfc_mqe_status_WORD word0 |
| 3943 | #define lpfc_mqe_command_SHIFT 8 |
| 3944 | #define lpfc_mqe_command_MASK 0x000000FF |
| 3945 | #define lpfc_mqe_command_WORD word0 |
| 3946 | union { |
| 3947 | uint32_t mb_words[LPFC_SLI4_MB_WORD_COUNT - 1]; |
| 3948 | /* sli4 mailbox commands */ |
| 3949 | struct lpfc_mbx_sli4_config sli4_config; |
| 3950 | struct lpfc_mbx_init_vfi init_vfi; |
| 3951 | struct lpfc_mbx_reg_vfi reg_vfi; |
| 3952 | struct lpfc_mbx_reg_vfi unreg_vfi; |
| 3953 | struct lpfc_mbx_init_vpi init_vpi; |
| 3954 | struct lpfc_mbx_resume_rpi resume_rpi; |
| 3955 | struct lpfc_mbx_read_fcf_tbl read_fcf_tbl; |
| 3956 | struct lpfc_mbx_add_fcf_tbl_entry add_fcf_entry; |
| 3957 | struct lpfc_mbx_del_fcf_tbl_entry del_fcf_entry; |
James Smart | ecfd03c | 2010-02-12 14:41:27 -0500 | [diff] [blame] | 3958 | struct lpfc_mbx_redisc_fcf_tbl redisc_fcf_tbl; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 3959 | struct lpfc_mbx_reg_fcfi reg_fcfi; |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 3960 | struct lpfc_mbx_reg_fcfi_mrq reg_fcfi_mrq; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 3961 | struct lpfc_mbx_unreg_fcfi unreg_fcfi; |
| 3962 | struct lpfc_mbx_mq_create mq_create; |
James Smart | b19a061 | 2010-04-06 14:48:51 -0400 | [diff] [blame] | 3963 | struct lpfc_mbx_mq_create_ext mq_create_ext; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 3964 | struct lpfc_mbx_eq_create eq_create; |
James Smart | 173edbb | 2012-06-12 13:54:50 -0400 | [diff] [blame] | 3965 | struct lpfc_mbx_modify_eq_delay eq_delay; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 3966 | struct lpfc_mbx_cq_create cq_create; |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 3967 | struct lpfc_mbx_cq_create_set cq_create_set; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 3968 | struct lpfc_mbx_wq_create wq_create; |
| 3969 | struct lpfc_mbx_rq_create rq_create; |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 3970 | struct lpfc_mbx_rq_create_v2 rq_create_v2; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 3971 | struct lpfc_mbx_mq_destroy mq_destroy; |
| 3972 | struct lpfc_mbx_eq_destroy eq_destroy; |
| 3973 | struct lpfc_mbx_cq_destroy cq_destroy; |
| 3974 | struct lpfc_mbx_wq_destroy wq_destroy; |
| 3975 | struct lpfc_mbx_rq_destroy rq_destroy; |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 3976 | struct lpfc_mbx_get_rsrc_extent_info rsrc_extent_info; |
| 3977 | struct lpfc_mbx_alloc_rsrc_extents alloc_rsrc_extents; |
| 3978 | struct lpfc_mbx_dealloc_rsrc_extents dealloc_rsrc_extents; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 3979 | struct lpfc_mbx_post_sgl_pages post_sgl_pages; |
| 3980 | struct lpfc_mbx_nembed_cmd nembed_cmd; |
| 3981 | struct lpfc_mbx_read_rev read_rev; |
| 3982 | struct lpfc_mbx_read_vpi read_vpi; |
| 3983 | struct lpfc_mbx_read_config rd_config; |
| 3984 | struct lpfc_mbx_request_features req_ftrs; |
| 3985 | struct lpfc_mbx_post_hdr_tmpl hdr_tmpl; |
James Smart | 962bc51 | 2013-01-03 15:44:00 -0500 | [diff] [blame] | 3986 | struct lpfc_mbx_query_fw_config query_fw_cfg; |
James Smart | 8b017a3 | 2015-05-21 13:55:18 -0400 | [diff] [blame] | 3987 | struct lpfc_mbx_set_beacon_config beacon_config; |
James Smart | 28baac7 | 2010-02-12 14:42:03 -0500 | [diff] [blame] | 3988 | struct lpfc_mbx_supp_pages supp_pages; |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 3989 | struct lpfc_mbx_pc_sli4_params sli4_params; |
| 3990 | struct lpfc_mbx_get_sli4_parameters get_sli4_parameters; |
James Smart | 7ad20aa | 2011-05-24 11:44:28 -0400 | [diff] [blame] | 3991 | struct lpfc_mbx_set_link_diag_state link_diag_state; |
| 3992 | struct lpfc_mbx_set_link_diag_loopback link_diag_loopback; |
| 3993 | struct lpfc_mbx_run_link_diag_test link_diag_test; |
James Smart | 912e3ac | 2011-05-24 11:42:11 -0400 | [diff] [blame] | 3994 | struct lpfc_mbx_get_func_cfg get_func_cfg; |
| 3995 | struct lpfc_mbx_get_prof_cfg get_prof_cfg; |
James Smart | 52d5244 | 2011-05-24 11:42:45 -0400 | [diff] [blame] | 3996 | struct lpfc_mbx_wr_object wr_object; |
James Smart | cd1c830 | 2011-10-10 21:33:25 -0400 | [diff] [blame] | 3997 | struct lpfc_mbx_get_port_name get_port_name; |
James Smart | 65791f1 | 2016-07-06 12:35:56 -0700 | [diff] [blame] | 3998 | struct lpfc_mbx_set_feature set_feature; |
James Smart | 8647887 | 2015-05-21 13:55:21 -0400 | [diff] [blame] | 3999 | struct lpfc_mbx_memory_dump_type3 mem_dump_type3; |
James Smart | 61bda8f | 2016-10-13 15:06:05 -0700 | [diff] [blame] | 4000 | struct lpfc_mbx_set_host_data set_host_data; |
James Smart | 1dc5ec2 | 2018-10-23 13:41:11 -0700 | [diff] [blame] | 4001 | struct lpfc_mbx_set_trunk_mode set_trunk_mode; |
James Smart | cd1c830 | 2011-10-10 21:33:25 -0400 | [diff] [blame] | 4002 | struct lpfc_mbx_nop nop; |
James Smart | d2cc9bc | 2018-09-10 10:30:50 -0700 | [diff] [blame] | 4003 | struct lpfc_mbx_set_ras_fwlog ras_fwlog; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4004 | } un; |
| 4005 | }; |
| 4006 | |
| 4007 | struct lpfc_mcqe { |
| 4008 | uint32_t word0; |
| 4009 | #define lpfc_mcqe_status_SHIFT 0 |
| 4010 | #define lpfc_mcqe_status_MASK 0x0000FFFF |
| 4011 | #define lpfc_mcqe_status_WORD word0 |
| 4012 | #define lpfc_mcqe_ext_status_SHIFT 16 |
James Smart | 8b017a3 | 2015-05-21 13:55:18 -0400 | [diff] [blame] | 4013 | #define lpfc_mcqe_ext_status_MASK 0x0000FFFF |
| 4014 | #define lpfc_mcqe_ext_status_WORD word0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4015 | uint32_t mcqe_tag0; |
| 4016 | uint32_t mcqe_tag1; |
| 4017 | uint32_t trailer; |
| 4018 | #define lpfc_trailer_valid_SHIFT 31 |
| 4019 | #define lpfc_trailer_valid_MASK 0x00000001 |
| 4020 | #define lpfc_trailer_valid_WORD trailer |
| 4021 | #define lpfc_trailer_async_SHIFT 30 |
| 4022 | #define lpfc_trailer_async_MASK 0x00000001 |
| 4023 | #define lpfc_trailer_async_WORD trailer |
| 4024 | #define lpfc_trailer_hpi_SHIFT 29 |
| 4025 | #define lpfc_trailer_hpi_MASK 0x00000001 |
| 4026 | #define lpfc_trailer_hpi_WORD trailer |
| 4027 | #define lpfc_trailer_completed_SHIFT 28 |
| 4028 | #define lpfc_trailer_completed_MASK 0x00000001 |
| 4029 | #define lpfc_trailer_completed_WORD trailer |
| 4030 | #define lpfc_trailer_consumed_SHIFT 27 |
| 4031 | #define lpfc_trailer_consumed_MASK 0x00000001 |
| 4032 | #define lpfc_trailer_consumed_WORD trailer |
| 4033 | #define lpfc_trailer_type_SHIFT 16 |
| 4034 | #define lpfc_trailer_type_MASK 0x000000FF |
| 4035 | #define lpfc_trailer_type_WORD trailer |
| 4036 | #define lpfc_trailer_code_SHIFT 8 |
| 4037 | #define lpfc_trailer_code_MASK 0x000000FF |
| 4038 | #define lpfc_trailer_code_WORD trailer |
| 4039 | #define LPFC_TRAILER_CODE_LINK 0x1 |
| 4040 | #define LPFC_TRAILER_CODE_FCOE 0x2 |
| 4041 | #define LPFC_TRAILER_CODE_DCBX 0x3 |
James Smart | b19a061 | 2010-04-06 14:48:51 -0400 | [diff] [blame] | 4042 | #define LPFC_TRAILER_CODE_GRP5 0x5 |
James Smart | 76a95d7 | 2010-11-20 23:11:48 -0500 | [diff] [blame] | 4043 | #define LPFC_TRAILER_CODE_FC 0x10 |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4044 | #define LPFC_TRAILER_CODE_SLI 0x11 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4045 | }; |
| 4046 | |
| 4047 | struct lpfc_acqe_link { |
| 4048 | uint32_t word0; |
| 4049 | #define lpfc_acqe_link_speed_SHIFT 24 |
| 4050 | #define lpfc_acqe_link_speed_MASK 0x000000FF |
| 4051 | #define lpfc_acqe_link_speed_WORD word0 |
| 4052 | #define LPFC_ASYNC_LINK_SPEED_ZERO 0x0 |
| 4053 | #define LPFC_ASYNC_LINK_SPEED_10MBPS 0x1 |
| 4054 | #define LPFC_ASYNC_LINK_SPEED_100MBPS 0x2 |
| 4055 | #define LPFC_ASYNC_LINK_SPEED_1GBPS 0x3 |
| 4056 | #define LPFC_ASYNC_LINK_SPEED_10GBPS 0x4 |
James Smart | 26d830e | 2015-04-07 15:07:17 -0400 | [diff] [blame] | 4057 | #define LPFC_ASYNC_LINK_SPEED_20GBPS 0x5 |
| 4058 | #define LPFC_ASYNC_LINK_SPEED_25GBPS 0x6 |
| 4059 | #define LPFC_ASYNC_LINK_SPEED_40GBPS 0x7 |
James Smart | a085e87 | 2015-12-16 18:12:02 -0500 | [diff] [blame] | 4060 | #define LPFC_ASYNC_LINK_SPEED_100GBPS 0x8 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4061 | #define lpfc_acqe_link_duplex_SHIFT 16 |
| 4062 | #define lpfc_acqe_link_duplex_MASK 0x000000FF |
| 4063 | #define lpfc_acqe_link_duplex_WORD word0 |
| 4064 | #define LPFC_ASYNC_LINK_DUPLEX_NONE 0x0 |
| 4065 | #define LPFC_ASYNC_LINK_DUPLEX_HALF 0x1 |
| 4066 | #define LPFC_ASYNC_LINK_DUPLEX_FULL 0x2 |
| 4067 | #define lpfc_acqe_link_status_SHIFT 8 |
| 4068 | #define lpfc_acqe_link_status_MASK 0x000000FF |
| 4069 | #define lpfc_acqe_link_status_WORD word0 |
| 4070 | #define LPFC_ASYNC_LINK_STATUS_DOWN 0x0 |
| 4071 | #define LPFC_ASYNC_LINK_STATUS_UP 0x1 |
| 4072 | #define LPFC_ASYNC_LINK_STATUS_LOGICAL_DOWN 0x2 |
| 4073 | #define LPFC_ASYNC_LINK_STATUS_LOGICAL_UP 0x3 |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4074 | #define lpfc_acqe_link_type_SHIFT 6 |
| 4075 | #define lpfc_acqe_link_type_MASK 0x00000003 |
| 4076 | #define lpfc_acqe_link_type_WORD word0 |
| 4077 | #define lpfc_acqe_link_number_SHIFT 0 |
| 4078 | #define lpfc_acqe_link_number_MASK 0x0000003F |
| 4079 | #define lpfc_acqe_link_number_WORD word0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4080 | uint32_t word1; |
| 4081 | #define lpfc_acqe_link_fault_SHIFT 0 |
| 4082 | #define lpfc_acqe_link_fault_MASK 0x000000FF |
| 4083 | #define lpfc_acqe_link_fault_WORD word1 |
| 4084 | #define LPFC_ASYNC_LINK_FAULT_NONE 0x0 |
| 4085 | #define LPFC_ASYNC_LINK_FAULT_LOCAL 0x1 |
| 4086 | #define LPFC_ASYNC_LINK_FAULT_REMOTE 0x2 |
James Smart | 23288b7 | 2018-05-04 20:37:53 -0700 | [diff] [blame] | 4087 | #define LPFC_ASYNC_LINK_FAULT_LR_LRR 0x3 |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4088 | #define lpfc_acqe_logical_link_speed_SHIFT 16 |
| 4089 | #define lpfc_acqe_logical_link_speed_MASK 0x0000FFFF |
| 4090 | #define lpfc_acqe_logical_link_speed_WORD word1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4091 | uint32_t event_tag; |
| 4092 | uint32_t trailer; |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4093 | #define LPFC_LINK_EVENT_TYPE_PHYSICAL 0x0 |
| 4094 | #define LPFC_LINK_EVENT_TYPE_VIRTUAL 0x1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4095 | }; |
| 4096 | |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4097 | struct lpfc_acqe_fip { |
James Smart | 6669f9b | 2009-10-02 15:16:45 -0400 | [diff] [blame] | 4098 | uint32_t index; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4099 | uint32_t word1; |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4100 | #define lpfc_acqe_fip_fcf_count_SHIFT 0 |
| 4101 | #define lpfc_acqe_fip_fcf_count_MASK 0x0000FFFF |
| 4102 | #define lpfc_acqe_fip_fcf_count_WORD word1 |
| 4103 | #define lpfc_acqe_fip_event_type_SHIFT 16 |
| 4104 | #define lpfc_acqe_fip_event_type_MASK 0x0000FFFF |
| 4105 | #define lpfc_acqe_fip_event_type_WORD word1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4106 | uint32_t event_tag; |
| 4107 | uint32_t trailer; |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4108 | #define LPFC_FIP_EVENT_TYPE_NEW_FCF 0x1 |
| 4109 | #define LPFC_FIP_EVENT_TYPE_FCF_TABLE_FULL 0x2 |
| 4110 | #define LPFC_FIP_EVENT_TYPE_FCF_DEAD 0x3 |
| 4111 | #define LPFC_FIP_EVENT_TYPE_CVL 0x4 |
| 4112 | #define LPFC_FIP_EVENT_TYPE_FCF_PARAM_MOD 0x5 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4113 | }; |
| 4114 | |
| 4115 | struct lpfc_acqe_dcbx { |
| 4116 | uint32_t tlv_ttl; |
| 4117 | uint32_t reserved; |
| 4118 | uint32_t event_tag; |
| 4119 | uint32_t trailer; |
| 4120 | }; |
| 4121 | |
James Smart | b19a061 | 2010-04-06 14:48:51 -0400 | [diff] [blame] | 4122 | struct lpfc_acqe_grp5 { |
| 4123 | uint32_t word0; |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4124 | #define lpfc_acqe_grp5_type_SHIFT 6 |
| 4125 | #define lpfc_acqe_grp5_type_MASK 0x00000003 |
| 4126 | #define lpfc_acqe_grp5_type_WORD word0 |
| 4127 | #define lpfc_acqe_grp5_number_SHIFT 0 |
| 4128 | #define lpfc_acqe_grp5_number_MASK 0x0000003F |
| 4129 | #define lpfc_acqe_grp5_number_WORD word0 |
James Smart | b19a061 | 2010-04-06 14:48:51 -0400 | [diff] [blame] | 4130 | uint32_t word1; |
| 4131 | #define lpfc_acqe_grp5_llink_spd_SHIFT 16 |
| 4132 | #define lpfc_acqe_grp5_llink_spd_MASK 0x0000FFFF |
| 4133 | #define lpfc_acqe_grp5_llink_spd_WORD word1 |
| 4134 | uint32_t event_tag; |
| 4135 | uint32_t trailer; |
| 4136 | }; |
| 4137 | |
Bart Van Assche | a73cb81 | 2019-03-28 11:06:19 -0700 | [diff] [blame] | 4138 | extern const char *const trunk_errmsg[]; |
James Smart | 1dc5ec2 | 2018-10-23 13:41:11 -0700 | [diff] [blame] | 4139 | |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4140 | struct lpfc_acqe_fc_la { |
| 4141 | uint32_t word0; |
| 4142 | #define lpfc_acqe_fc_la_speed_SHIFT 24 |
| 4143 | #define lpfc_acqe_fc_la_speed_MASK 0x000000FF |
| 4144 | #define lpfc_acqe_fc_la_speed_WORD word0 |
James Smart | 26d830e | 2015-04-07 15:07:17 -0400 | [diff] [blame] | 4145 | #define LPFC_FC_LA_SPEED_UNKNOWN 0x0 |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4146 | #define LPFC_FC_LA_SPEED_1G 0x1 |
| 4147 | #define LPFC_FC_LA_SPEED_2G 0x2 |
| 4148 | #define LPFC_FC_LA_SPEED_4G 0x4 |
| 4149 | #define LPFC_FC_LA_SPEED_8G 0x8 |
| 4150 | #define LPFC_FC_LA_SPEED_10G 0xA |
| 4151 | #define LPFC_FC_LA_SPEED_16G 0x10 |
James Smart | 8647887 | 2015-05-21 13:55:21 -0400 | [diff] [blame] | 4152 | #define LPFC_FC_LA_SPEED_32G 0x20 |
James Smart | fbd8a6b | 2018-02-22 08:18:45 -0800 | [diff] [blame] | 4153 | #define LPFC_FC_LA_SPEED_64G 0x21 |
| 4154 | #define LPFC_FC_LA_SPEED_128G 0x22 |
| 4155 | #define LPFC_FC_LA_SPEED_256G 0x23 |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4156 | #define lpfc_acqe_fc_la_topology_SHIFT 16 |
| 4157 | #define lpfc_acqe_fc_la_topology_MASK 0x000000FF |
| 4158 | #define lpfc_acqe_fc_la_topology_WORD word0 |
| 4159 | #define LPFC_FC_LA_TOP_UNKOWN 0x0 |
| 4160 | #define LPFC_FC_LA_TOP_P2P 0x1 |
| 4161 | #define LPFC_FC_LA_TOP_FCAL 0x2 |
| 4162 | #define LPFC_FC_LA_TOP_INTERNAL_LOOP 0x3 |
| 4163 | #define LPFC_FC_LA_TOP_SERDES_LOOP 0x4 |
| 4164 | #define lpfc_acqe_fc_la_att_type_SHIFT 8 |
| 4165 | #define lpfc_acqe_fc_la_att_type_MASK 0x000000FF |
| 4166 | #define lpfc_acqe_fc_la_att_type_WORD word0 |
| 4167 | #define LPFC_FC_LA_TYPE_LINK_UP 0x1 |
| 4168 | #define LPFC_FC_LA_TYPE_LINK_DOWN 0x2 |
| 4169 | #define LPFC_FC_LA_TYPE_NO_HARD_ALPA 0x3 |
James Smart | 7bdedb3 | 2016-07-06 12:36:00 -0700 | [diff] [blame] | 4170 | #define LPFC_FC_LA_TYPE_MDS_LINK_DOWN 0x4 |
| 4171 | #define LPFC_FC_LA_TYPE_MDS_LOOPBACK 0x5 |
James Smart | aeb3c81 | 2017-04-21 16:05:02 -0700 | [diff] [blame] | 4172 | #define LPFC_FC_LA_TYPE_UNEXP_WWPN 0x6 |
James Smart | 1dc5ec2 | 2018-10-23 13:41:11 -0700 | [diff] [blame] | 4173 | #define LPFC_FC_LA_TYPE_TRUNKING_EVENT 0x7 |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4174 | #define lpfc_acqe_fc_la_port_type_SHIFT 6 |
| 4175 | #define lpfc_acqe_fc_la_port_type_MASK 0x00000003 |
| 4176 | #define lpfc_acqe_fc_la_port_type_WORD word0 |
| 4177 | #define LPFC_LINK_TYPE_ETHERNET 0x0 |
| 4178 | #define LPFC_LINK_TYPE_FC 0x1 |
| 4179 | #define lpfc_acqe_fc_la_port_number_SHIFT 0 |
| 4180 | #define lpfc_acqe_fc_la_port_number_MASK 0x0000003F |
| 4181 | #define lpfc_acqe_fc_la_port_number_WORD word0 |
James Smart | 1dc5ec2 | 2018-10-23 13:41:11 -0700 | [diff] [blame] | 4182 | |
| 4183 | /* Attention Type is 0x07 (Trunking Event) word0 */ |
| 4184 | #define lpfc_acqe_fc_la_trunk_link_status_port0_SHIFT 16 |
| 4185 | #define lpfc_acqe_fc_la_trunk_link_status_port0_MASK 0x0000001 |
| 4186 | #define lpfc_acqe_fc_la_trunk_link_status_port0_WORD word0 |
| 4187 | #define lpfc_acqe_fc_la_trunk_link_status_port1_SHIFT 17 |
| 4188 | #define lpfc_acqe_fc_la_trunk_link_status_port1_MASK 0x0000001 |
| 4189 | #define lpfc_acqe_fc_la_trunk_link_status_port1_WORD word0 |
| 4190 | #define lpfc_acqe_fc_la_trunk_link_status_port2_SHIFT 18 |
| 4191 | #define lpfc_acqe_fc_la_trunk_link_status_port2_MASK 0x0000001 |
| 4192 | #define lpfc_acqe_fc_la_trunk_link_status_port2_WORD word0 |
| 4193 | #define lpfc_acqe_fc_la_trunk_link_status_port3_SHIFT 19 |
| 4194 | #define lpfc_acqe_fc_la_trunk_link_status_port3_MASK 0x0000001 |
| 4195 | #define lpfc_acqe_fc_la_trunk_link_status_port3_WORD word0 |
| 4196 | #define lpfc_acqe_fc_la_trunk_config_port0_SHIFT 20 |
| 4197 | #define lpfc_acqe_fc_la_trunk_config_port0_MASK 0x0000001 |
| 4198 | #define lpfc_acqe_fc_la_trunk_config_port0_WORD word0 |
| 4199 | #define lpfc_acqe_fc_la_trunk_config_port1_SHIFT 21 |
| 4200 | #define lpfc_acqe_fc_la_trunk_config_port1_MASK 0x0000001 |
| 4201 | #define lpfc_acqe_fc_la_trunk_config_port1_WORD word0 |
| 4202 | #define lpfc_acqe_fc_la_trunk_config_port2_SHIFT 22 |
| 4203 | #define lpfc_acqe_fc_la_trunk_config_port2_MASK 0x0000001 |
| 4204 | #define lpfc_acqe_fc_la_trunk_config_port2_WORD word0 |
| 4205 | #define lpfc_acqe_fc_la_trunk_config_port3_SHIFT 23 |
| 4206 | #define lpfc_acqe_fc_la_trunk_config_port3_MASK 0x0000001 |
| 4207 | #define lpfc_acqe_fc_la_trunk_config_port3_WORD word0 |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4208 | uint32_t word1; |
| 4209 | #define lpfc_acqe_fc_la_llink_spd_SHIFT 16 |
| 4210 | #define lpfc_acqe_fc_la_llink_spd_MASK 0x0000FFFF |
| 4211 | #define lpfc_acqe_fc_la_llink_spd_WORD word1 |
| 4212 | #define lpfc_acqe_fc_la_fault_SHIFT 0 |
| 4213 | #define lpfc_acqe_fc_la_fault_MASK 0x000000FF |
| 4214 | #define lpfc_acqe_fc_la_fault_WORD word1 |
James Smart | 1dc5ec2 | 2018-10-23 13:41:11 -0700 | [diff] [blame] | 4215 | #define lpfc_acqe_fc_la_trunk_fault_SHIFT 0 |
| 4216 | #define lpfc_acqe_fc_la_trunk_fault_MASK 0x0000000F |
| 4217 | #define lpfc_acqe_fc_la_trunk_fault_WORD word1 |
| 4218 | #define lpfc_acqe_fc_la_trunk_linkmask_SHIFT 4 |
| 4219 | #define lpfc_acqe_fc_la_trunk_linkmask_MASK 0x000000F |
| 4220 | #define lpfc_acqe_fc_la_trunk_linkmask_WORD word1 |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4221 | #define LPFC_FC_LA_FAULT_NONE 0x0 |
| 4222 | #define LPFC_FC_LA_FAULT_LOCAL 0x1 |
| 4223 | #define LPFC_FC_LA_FAULT_REMOTE 0x2 |
| 4224 | uint32_t event_tag; |
| 4225 | uint32_t trailer; |
| 4226 | #define LPFC_FC_LA_EVENT_TYPE_FC_LINK 0x1 |
| 4227 | #define LPFC_FC_LA_EVENT_TYPE_SHARED_LINK 0x2 |
| 4228 | }; |
| 4229 | |
James Smart | 4b8bae0 | 2012-06-12 13:55:07 -0400 | [diff] [blame] | 4230 | struct lpfc_acqe_misconfigured_event { |
| 4231 | struct { |
| 4232 | uint32_t word0; |
James Smart | 448193b | 2015-12-16 18:12:05 -0500 | [diff] [blame] | 4233 | #define lpfc_sli_misconfigured_port0_state_SHIFT 0 |
| 4234 | #define lpfc_sli_misconfigured_port0_state_MASK 0x000000FF |
| 4235 | #define lpfc_sli_misconfigured_port0_state_WORD word0 |
| 4236 | #define lpfc_sli_misconfigured_port1_state_SHIFT 8 |
| 4237 | #define lpfc_sli_misconfigured_port1_state_MASK 0x000000FF |
| 4238 | #define lpfc_sli_misconfigured_port1_state_WORD word0 |
| 4239 | #define lpfc_sli_misconfigured_port2_state_SHIFT 16 |
| 4240 | #define lpfc_sli_misconfigured_port2_state_MASK 0x000000FF |
| 4241 | #define lpfc_sli_misconfigured_port2_state_WORD word0 |
| 4242 | #define lpfc_sli_misconfigured_port3_state_SHIFT 24 |
| 4243 | #define lpfc_sli_misconfigured_port3_state_MASK 0x000000FF |
| 4244 | #define lpfc_sli_misconfigured_port3_state_WORD word0 |
| 4245 | uint32_t word1; |
| 4246 | #define lpfc_sli_misconfigured_port0_op_SHIFT 0 |
| 4247 | #define lpfc_sli_misconfigured_port0_op_MASK 0x00000001 |
| 4248 | #define lpfc_sli_misconfigured_port0_op_WORD word1 |
| 4249 | #define lpfc_sli_misconfigured_port0_severity_SHIFT 1 |
| 4250 | #define lpfc_sli_misconfigured_port0_severity_MASK 0x00000003 |
| 4251 | #define lpfc_sli_misconfigured_port0_severity_WORD word1 |
| 4252 | #define lpfc_sli_misconfigured_port1_op_SHIFT 8 |
| 4253 | #define lpfc_sli_misconfigured_port1_op_MASK 0x00000001 |
| 4254 | #define lpfc_sli_misconfigured_port1_op_WORD word1 |
| 4255 | #define lpfc_sli_misconfigured_port1_severity_SHIFT 9 |
| 4256 | #define lpfc_sli_misconfigured_port1_severity_MASK 0x00000003 |
| 4257 | #define lpfc_sli_misconfigured_port1_severity_WORD word1 |
| 4258 | #define lpfc_sli_misconfigured_port2_op_SHIFT 16 |
| 4259 | #define lpfc_sli_misconfigured_port2_op_MASK 0x00000001 |
| 4260 | #define lpfc_sli_misconfigured_port2_op_WORD word1 |
| 4261 | #define lpfc_sli_misconfigured_port2_severity_SHIFT 17 |
| 4262 | #define lpfc_sli_misconfigured_port2_severity_MASK 0x00000003 |
| 4263 | #define lpfc_sli_misconfigured_port2_severity_WORD word1 |
| 4264 | #define lpfc_sli_misconfigured_port3_op_SHIFT 24 |
| 4265 | #define lpfc_sli_misconfigured_port3_op_MASK 0x00000001 |
| 4266 | #define lpfc_sli_misconfigured_port3_op_WORD word1 |
| 4267 | #define lpfc_sli_misconfigured_port3_severity_SHIFT 25 |
| 4268 | #define lpfc_sli_misconfigured_port3_severity_MASK 0x00000003 |
| 4269 | #define lpfc_sli_misconfigured_port3_severity_WORD word1 |
James Smart | 4b8bae0 | 2012-06-12 13:55:07 -0400 | [diff] [blame] | 4270 | } theEvent; |
| 4271 | #define LPFC_SLI_EVENT_STATUS_VALID 0x00 |
| 4272 | #define LPFC_SLI_EVENT_STATUS_NOT_PRESENT 0x01 |
| 4273 | #define LPFC_SLI_EVENT_STATUS_WRONG_TYPE 0x02 |
| 4274 | #define LPFC_SLI_EVENT_STATUS_UNSUPPORTED 0x03 |
James Smart | 448193b | 2015-12-16 18:12:05 -0500 | [diff] [blame] | 4275 | #define LPFC_SLI_EVENT_STATUS_UNQUALIFIED 0x04 |
| 4276 | #define LPFC_SLI_EVENT_STATUS_UNCERTIFIED 0x05 |
James Smart | 4b8bae0 | 2012-06-12 13:55:07 -0400 | [diff] [blame] | 4277 | }; |
| 4278 | |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4279 | struct lpfc_acqe_sli { |
| 4280 | uint32_t event_data1; |
| 4281 | uint32_t event_data2; |
| 4282 | uint32_t reserved; |
| 4283 | uint32_t trailer; |
| 4284 | #define LPFC_SLI_EVENT_TYPE_PORT_ERROR 0x1 |
| 4285 | #define LPFC_SLI_EVENT_TYPE_OVER_TEMP 0x2 |
| 4286 | #define LPFC_SLI_EVENT_TYPE_NORM_TEMP 0x3 |
| 4287 | #define LPFC_SLI_EVENT_TYPE_NVLOG_POST 0x4 |
| 4288 | #define LPFC_SLI_EVENT_TYPE_DIAG_DUMP 0x5 |
James Smart | 4b8bae0 | 2012-06-12 13:55:07 -0400 | [diff] [blame] | 4289 | #define LPFC_SLI_EVENT_TYPE_MISCONFIGURED 0x9 |
James Smart | 946727d | 2015-04-07 15:07:09 -0400 | [diff] [blame] | 4290 | #define LPFC_SLI_EVENT_TYPE_REMOTE_DPORT 0xA |
James Smart | e7d8595 | 2019-10-18 14:18:29 -0700 | [diff] [blame] | 4291 | #define LPFC_SLI_EVENT_TYPE_MISCONF_FAWWN 0xF |
James Smart | d11ed16 | 2019-09-21 20:59:03 -0700 | [diff] [blame] | 4292 | #define LPFC_SLI_EVENT_TYPE_EEPROM_FAILURE 0x10 |
James Smart | 70f3c07 | 2010-12-15 17:57:33 -0500 | [diff] [blame] | 4293 | }; |
| 4294 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4295 | /* |
| 4296 | * Define the bootstrap mailbox (bmbx) region used to communicate |
| 4297 | * mailbox command between the host and port. The mailbox consists |
| 4298 | * of a payload area of 256 bytes and a completion queue of length |
| 4299 | * 16 bytes. |
| 4300 | */ |
| 4301 | struct lpfc_bmbx_create { |
| 4302 | struct lpfc_mqe mqe; |
| 4303 | struct lpfc_mcqe mcqe; |
| 4304 | }; |
| 4305 | |
| 4306 | #define SGL_ALIGN_SZ 64 |
| 4307 | #define SGL_PAGE_SIZE 4096 |
| 4308 | /* align SGL addr on a size boundary - adjust address up */ |
James Smart | 6d368e5 | 2011-05-24 11:44:12 -0400 | [diff] [blame] | 4309 | #define NO_XRI 0xffff |
James Smart | 5ffc266 | 2009-11-18 15:39:44 -0500 | [diff] [blame] | 4310 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4311 | struct wqe_common { |
| 4312 | uint32_t word6; |
James Smart | 6669f9b | 2009-10-02 15:16:45 -0400 | [diff] [blame] | 4313 | #define wqe_xri_tag_SHIFT 0 |
| 4314 | #define wqe_xri_tag_MASK 0x0000FFFF |
| 4315 | #define wqe_xri_tag_WORD word6 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4316 | #define wqe_ctxt_tag_SHIFT 16 |
| 4317 | #define wqe_ctxt_tag_MASK 0x0000FFFF |
| 4318 | #define wqe_ctxt_tag_WORD word6 |
| 4319 | uint32_t word7; |
James Smart | f9bb2da | 2011-10-10 21:34:11 -0400 | [diff] [blame] | 4320 | #define wqe_dif_SHIFT 0 |
| 4321 | #define wqe_dif_MASK 0x00000003 |
| 4322 | #define wqe_dif_WORD word7 |
James Smart | 8012cc3 | 2012-10-31 14:44:49 -0400 | [diff] [blame] | 4323 | #define LPFC_WQE_DIF_PASSTHRU 1 |
| 4324 | #define LPFC_WQE_DIF_STRIP 2 |
| 4325 | #define LPFC_WQE_DIF_INSERT 3 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4326 | #define wqe_ct_SHIFT 2 |
| 4327 | #define wqe_ct_MASK 0x00000003 |
| 4328 | #define wqe_ct_WORD word7 |
| 4329 | #define wqe_status_SHIFT 4 |
| 4330 | #define wqe_status_MASK 0x0000000f |
| 4331 | #define wqe_status_WORD word7 |
| 4332 | #define wqe_cmnd_SHIFT 8 |
| 4333 | #define wqe_cmnd_MASK 0x000000ff |
| 4334 | #define wqe_cmnd_WORD word7 |
| 4335 | #define wqe_class_SHIFT 16 |
| 4336 | #define wqe_class_MASK 0x00000007 |
| 4337 | #define wqe_class_WORD word7 |
James Smart | f9bb2da | 2011-10-10 21:34:11 -0400 | [diff] [blame] | 4338 | #define wqe_ar_SHIFT 19 |
| 4339 | #define wqe_ar_MASK 0x00000001 |
| 4340 | #define wqe_ar_WORD word7 |
| 4341 | #define wqe_ag_SHIFT wqe_ar_SHIFT |
| 4342 | #define wqe_ag_MASK wqe_ar_MASK |
| 4343 | #define wqe_ag_WORD wqe_ar_WORD |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4344 | #define wqe_pu_SHIFT 20 |
| 4345 | #define wqe_pu_MASK 0x00000003 |
| 4346 | #define wqe_pu_WORD word7 |
| 4347 | #define wqe_erp_SHIFT 22 |
| 4348 | #define wqe_erp_MASK 0x00000001 |
| 4349 | #define wqe_erp_WORD word7 |
James Smart | f9bb2da | 2011-10-10 21:34:11 -0400 | [diff] [blame] | 4350 | #define wqe_conf_SHIFT wqe_erp_SHIFT |
| 4351 | #define wqe_conf_MASK wqe_erp_MASK |
| 4352 | #define wqe_conf_WORD wqe_erp_WORD |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4353 | #define wqe_lnk_SHIFT 23 |
| 4354 | #define wqe_lnk_MASK 0x00000001 |
| 4355 | #define wqe_lnk_WORD word7 |
| 4356 | #define wqe_tmo_SHIFT 24 |
| 4357 | #define wqe_tmo_MASK 0x000000ff |
| 4358 | #define wqe_tmo_WORD word7 |
| 4359 | uint32_t abort_tag; /* word 8 in WQE */ |
| 4360 | uint32_t word9; |
| 4361 | #define wqe_reqtag_SHIFT 0 |
| 4362 | #define wqe_reqtag_MASK 0x0000FFFF |
| 4363 | #define wqe_reqtag_WORD word9 |
James Smart | c31098c | 2011-04-16 11:03:33 -0400 | [diff] [blame] | 4364 | #define wqe_temp_rpi_SHIFT 16 |
| 4365 | #define wqe_temp_rpi_MASK 0x0000FFFF |
| 4366 | #define wqe_temp_rpi_WORD word9 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4367 | #define wqe_rcvoxid_SHIFT 16 |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4368 | #define wqe_rcvoxid_MASK 0x0000FFFF |
| 4369 | #define wqe_rcvoxid_WORD word9 |
James Smart | e62245d | 2019-08-14 16:57:08 -0700 | [diff] [blame] | 4370 | #define wqe_sof_SHIFT 24 |
| 4371 | #define wqe_sof_MASK 0x000000FF |
| 4372 | #define wqe_sof_WORD word9 |
| 4373 | #define wqe_eof_SHIFT 16 |
| 4374 | #define wqe_eof_MASK 0x000000FF |
| 4375 | #define wqe_eof_WORD word9 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4376 | uint32_t word10; |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4377 | #define wqe_ebde_cnt_SHIFT 0 |
James Smart | 2fcee4b | 2010-12-15 17:57:46 -0500 | [diff] [blame] | 4378 | #define wqe_ebde_cnt_MASK 0x0000000f |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4379 | #define wqe_ebde_cnt_WORD word10 |
James Smart | 895427b | 2017-02-12 13:52:30 -0800 | [diff] [blame] | 4380 | #define wqe_nvme_SHIFT 4 |
| 4381 | #define wqe_nvme_MASK 0x00000001 |
| 4382 | #define wqe_nvme_WORD word10 |
James Smart | 1ba981f | 2014-02-20 09:56:45 -0500 | [diff] [blame] | 4383 | #define wqe_oas_SHIFT 6 |
| 4384 | #define wqe_oas_MASK 0x00000001 |
| 4385 | #define wqe_oas_WORD word10 |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4386 | #define wqe_lenloc_SHIFT 7 |
| 4387 | #define wqe_lenloc_MASK 0x00000003 |
| 4388 | #define wqe_lenloc_WORD word10 |
| 4389 | #define LPFC_WQE_LENLOC_NONE 0 |
| 4390 | #define LPFC_WQE_LENLOC_WORD3 1 |
| 4391 | #define LPFC_WQE_LENLOC_WORD12 2 |
| 4392 | #define LPFC_WQE_LENLOC_WORD4 3 |
| 4393 | #define wqe_qosd_SHIFT 9 |
| 4394 | #define wqe_qosd_MASK 0x00000001 |
| 4395 | #define wqe_qosd_WORD word10 |
| 4396 | #define wqe_xbl_SHIFT 11 |
| 4397 | #define wqe_xbl_MASK 0x00000001 |
| 4398 | #define wqe_xbl_WORD word10 |
| 4399 | #define wqe_iod_SHIFT 13 |
| 4400 | #define wqe_iod_MASK 0x00000001 |
| 4401 | #define wqe_iod_WORD word10 |
James Smart | 5fd1108 | 2018-03-05 12:04:04 -0800 | [diff] [blame] | 4402 | #define LPFC_WQE_IOD_NONE 0 |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4403 | #define LPFC_WQE_IOD_WRITE 0 |
| 4404 | #define LPFC_WQE_IOD_READ 1 |
| 4405 | #define wqe_dbde_SHIFT 14 |
| 4406 | #define wqe_dbde_MASK 0x00000001 |
| 4407 | #define wqe_dbde_WORD word10 |
| 4408 | #define wqe_wqes_SHIFT 15 |
| 4409 | #define wqe_wqes_MASK 0x00000001 |
| 4410 | #define wqe_wqes_WORD word10 |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 4411 | /* Note that this field overlaps above fields */ |
| 4412 | #define wqe_wqid_SHIFT 1 |
James Smart | 9589b062 | 2011-04-16 11:03:17 -0400 | [diff] [blame] | 4413 | #define wqe_wqid_MASK 0x00007fff |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 4414 | #define wqe_wqid_WORD word10 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4415 | #define wqe_pri_SHIFT 16 |
| 4416 | #define wqe_pri_MASK 0x00000007 |
| 4417 | #define wqe_pri_WORD word10 |
| 4418 | #define wqe_pv_SHIFT 19 |
| 4419 | #define wqe_pv_MASK 0x00000001 |
| 4420 | #define wqe_pv_WORD word10 |
| 4421 | #define wqe_xc_SHIFT 21 |
| 4422 | #define wqe_xc_MASK 0x00000001 |
| 4423 | #define wqe_xc_WORD word10 |
James Smart | f9bb2da | 2011-10-10 21:34:11 -0400 | [diff] [blame] | 4424 | #define wqe_sr_SHIFT 22 |
| 4425 | #define wqe_sr_MASK 0x00000001 |
| 4426 | #define wqe_sr_WORD word10 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4427 | #define wqe_ccpe_SHIFT 23 |
| 4428 | #define wqe_ccpe_MASK 0x00000001 |
| 4429 | #define wqe_ccpe_WORD word10 |
| 4430 | #define wqe_ccp_SHIFT 24 |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4431 | #define wqe_ccp_MASK 0x000000ff |
| 4432 | #define wqe_ccp_WORD word10 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4433 | uint32_t word11; |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4434 | #define wqe_cmd_type_SHIFT 0 |
| 4435 | #define wqe_cmd_type_MASK 0x0000000f |
| 4436 | #define wqe_cmd_type_WORD word11 |
| 4437 | #define wqe_els_id_SHIFT 4 |
| 4438 | #define wqe_els_id_MASK 0x00000003 |
| 4439 | #define wqe_els_id_WORD word11 |
| 4440 | #define LPFC_ELS_ID_FLOGI 3 |
| 4441 | #define LPFC_ELS_ID_FDISC 2 |
| 4442 | #define LPFC_ELS_ID_LOGO 1 |
| 4443 | #define LPFC_ELS_ID_DEFAULT 0 |
James Smart | f358dd0 | 2017-02-12 13:52:34 -0800 | [diff] [blame] | 4444 | #define wqe_irsp_SHIFT 4 |
| 4445 | #define wqe_irsp_MASK 0x00000001 |
| 4446 | #define wqe_irsp_WORD word11 |
James Smart | 0bc2b7c | 2018-02-22 08:18:48 -0800 | [diff] [blame] | 4447 | #define wqe_pbde_SHIFT 5 |
| 4448 | #define wqe_pbde_MASK 0x00000001 |
| 4449 | #define wqe_pbde_WORD word11 |
James Smart | f358dd0 | 2017-02-12 13:52:34 -0800 | [diff] [blame] | 4450 | #define wqe_sup_SHIFT 6 |
| 4451 | #define wqe_sup_MASK 0x00000001 |
| 4452 | #define wqe_sup_WORD word11 |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4453 | #define wqe_wqec_SHIFT 7 |
| 4454 | #define wqe_wqec_MASK 0x00000001 |
| 4455 | #define wqe_wqec_WORD word11 |
James Smart | f358dd0 | 2017-02-12 13:52:34 -0800 | [diff] [blame] | 4456 | #define wqe_irsplen_SHIFT 8 |
| 4457 | #define wqe_irsplen_MASK 0x0000000f |
| 4458 | #define wqe_irsplen_WORD word11 |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4459 | #define wqe_cqid_SHIFT 16 |
| 4460 | #define wqe_cqid_MASK 0x0000ffff |
| 4461 | #define wqe_cqid_WORD word11 |
| 4462 | #define LPFC_WQE_CQ_ID_DEFAULT 0xffff |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4463 | }; |
| 4464 | |
| 4465 | struct wqe_did { |
| 4466 | uint32_t word5; |
| 4467 | #define wqe_els_did_SHIFT 0 |
| 4468 | #define wqe_els_did_MASK 0x00FFFFFF |
| 4469 | #define wqe_els_did_WORD word5 |
James Smart | 6669f9b | 2009-10-02 15:16:45 -0400 | [diff] [blame] | 4470 | #define wqe_xmit_bls_pt_SHIFT 28 |
| 4471 | #define wqe_xmit_bls_pt_MASK 0x00000003 |
| 4472 | #define wqe_xmit_bls_pt_WORD word5 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4473 | #define wqe_xmit_bls_ar_SHIFT 30 |
| 4474 | #define wqe_xmit_bls_ar_MASK 0x00000001 |
| 4475 | #define wqe_xmit_bls_ar_WORD word5 |
| 4476 | #define wqe_xmit_bls_xo_SHIFT 31 |
| 4477 | #define wqe_xmit_bls_xo_MASK 0x00000001 |
| 4478 | #define wqe_xmit_bls_xo_WORD word5 |
| 4479 | }; |
| 4480 | |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4481 | struct lpfc_wqe_generic{ |
| 4482 | struct ulp_bde64 bde; |
| 4483 | uint32_t word3; |
| 4484 | uint32_t word4; |
| 4485 | uint32_t word5; |
| 4486 | struct wqe_common wqe_com; |
| 4487 | uint32_t payload[4]; |
| 4488 | }; |
| 4489 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4490 | struct els_request64_wqe { |
| 4491 | struct ulp_bde64 bde; |
| 4492 | uint32_t payload_len; |
| 4493 | uint32_t word4; |
| 4494 | #define els_req64_sid_SHIFT 0 |
| 4495 | #define els_req64_sid_MASK 0x00FFFFFF |
| 4496 | #define els_req64_sid_WORD word4 |
| 4497 | #define els_req64_sp_SHIFT 24 |
| 4498 | #define els_req64_sp_MASK 0x00000001 |
| 4499 | #define els_req64_sp_WORD word4 |
| 4500 | #define els_req64_vf_SHIFT 25 |
| 4501 | #define els_req64_vf_MASK 0x00000001 |
| 4502 | #define els_req64_vf_WORD word4 |
| 4503 | struct wqe_did wqe_dest; |
| 4504 | struct wqe_common wqe_com; /* words 6-11 */ |
| 4505 | uint32_t word12; |
| 4506 | #define els_req64_vfid_SHIFT 1 |
| 4507 | #define els_req64_vfid_MASK 0x00000FFF |
| 4508 | #define els_req64_vfid_WORD word12 |
| 4509 | #define els_req64_pri_SHIFT 13 |
| 4510 | #define els_req64_pri_MASK 0x00000007 |
| 4511 | #define els_req64_pri_WORD word12 |
| 4512 | uint32_t word13; |
| 4513 | #define els_req64_hopcnt_SHIFT 24 |
| 4514 | #define els_req64_hopcnt_MASK 0x000000ff |
| 4515 | #define els_req64_hopcnt_WORD word13 |
James Smart | af22741 | 2013-10-10 12:23:10 -0400 | [diff] [blame] | 4516 | uint32_t word14; |
| 4517 | uint32_t max_response_payload_len; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4518 | }; |
| 4519 | |
| 4520 | struct xmit_els_rsp64_wqe { |
| 4521 | struct ulp_bde64 bde; |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4522 | uint32_t response_payload_len; |
James Smart | 939723a | 2012-05-09 21:19:03 -0400 | [diff] [blame] | 4523 | uint32_t word4; |
| 4524 | #define els_rsp64_sid_SHIFT 0 |
| 4525 | #define els_rsp64_sid_MASK 0x00FFFFFF |
| 4526 | #define els_rsp64_sid_WORD word4 |
| 4527 | #define els_rsp64_sp_SHIFT 24 |
| 4528 | #define els_rsp64_sp_MASK 0x00000001 |
| 4529 | #define els_rsp64_sp_WORD word4 |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4530 | struct wqe_did wqe_dest; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4531 | struct wqe_common wqe_com; /* words 6-11 */ |
James Smart | c31098c | 2011-04-16 11:03:33 -0400 | [diff] [blame] | 4532 | uint32_t word12; |
| 4533 | #define wqe_rsp_temp_rpi_SHIFT 0 |
| 4534 | #define wqe_rsp_temp_rpi_MASK 0x0000FFFF |
| 4535 | #define wqe_rsp_temp_rpi_WORD word12 |
| 4536 | uint32_t rsvd_13_15[3]; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4537 | }; |
| 4538 | |
| 4539 | struct xmit_bls_rsp64_wqe { |
| 4540 | uint32_t payload0; |
James Smart | 6669f9b | 2009-10-02 15:16:45 -0400 | [diff] [blame] | 4541 | /* Payload0 for BA_ACC */ |
| 4542 | #define xmit_bls_rsp64_acc_seq_id_SHIFT 16 |
| 4543 | #define xmit_bls_rsp64_acc_seq_id_MASK 0x000000ff |
| 4544 | #define xmit_bls_rsp64_acc_seq_id_WORD payload0 |
| 4545 | #define xmit_bls_rsp64_acc_seq_id_vald_SHIFT 24 |
| 4546 | #define xmit_bls_rsp64_acc_seq_id_vald_MASK 0x000000ff |
| 4547 | #define xmit_bls_rsp64_acc_seq_id_vald_WORD payload0 |
| 4548 | /* Payload0 for BA_RJT */ |
| 4549 | #define xmit_bls_rsp64_rjt_vspec_SHIFT 0 |
| 4550 | #define xmit_bls_rsp64_rjt_vspec_MASK 0x000000ff |
| 4551 | #define xmit_bls_rsp64_rjt_vspec_WORD payload0 |
| 4552 | #define xmit_bls_rsp64_rjt_expc_SHIFT 8 |
| 4553 | #define xmit_bls_rsp64_rjt_expc_MASK 0x000000ff |
| 4554 | #define xmit_bls_rsp64_rjt_expc_WORD payload0 |
| 4555 | #define xmit_bls_rsp64_rjt_rsnc_SHIFT 16 |
| 4556 | #define xmit_bls_rsp64_rjt_rsnc_MASK 0x000000ff |
| 4557 | #define xmit_bls_rsp64_rjt_rsnc_WORD payload0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4558 | uint32_t word1; |
| 4559 | #define xmit_bls_rsp64_rxid_SHIFT 0 |
| 4560 | #define xmit_bls_rsp64_rxid_MASK 0x0000ffff |
| 4561 | #define xmit_bls_rsp64_rxid_WORD word1 |
| 4562 | #define xmit_bls_rsp64_oxid_SHIFT 16 |
| 4563 | #define xmit_bls_rsp64_oxid_MASK 0x0000ffff |
| 4564 | #define xmit_bls_rsp64_oxid_WORD word1 |
| 4565 | uint32_t word2; |
James Smart | 6669f9b | 2009-10-02 15:16:45 -0400 | [diff] [blame] | 4566 | #define xmit_bls_rsp64_seqcnthi_SHIFT 0 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4567 | #define xmit_bls_rsp64_seqcnthi_MASK 0x0000ffff |
| 4568 | #define xmit_bls_rsp64_seqcnthi_WORD word2 |
James Smart | 6669f9b | 2009-10-02 15:16:45 -0400 | [diff] [blame] | 4569 | #define xmit_bls_rsp64_seqcntlo_SHIFT 16 |
| 4570 | #define xmit_bls_rsp64_seqcntlo_MASK 0x0000ffff |
| 4571 | #define xmit_bls_rsp64_seqcntlo_WORD word2 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4572 | uint32_t rsrvd3; |
| 4573 | uint32_t rsrvd4; |
| 4574 | struct wqe_did wqe_dest; |
| 4575 | struct wqe_common wqe_com; /* words 6-11 */ |
James Smart | 6b5151f | 2012-01-18 16:24:06 -0500 | [diff] [blame] | 4576 | uint32_t word12; |
| 4577 | #define xmit_bls_rsp64_temprpi_SHIFT 0 |
| 4578 | #define xmit_bls_rsp64_temprpi_MASK 0x0000ffff |
| 4579 | #define xmit_bls_rsp64_temprpi_WORD word12 |
| 4580 | uint32_t rsvd_13_15[3]; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4581 | }; |
James Smart | 6669f9b | 2009-10-02 15:16:45 -0400 | [diff] [blame] | 4582 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4583 | struct wqe_rctl_dfctl { |
| 4584 | uint32_t word5; |
| 4585 | #define wqe_si_SHIFT 2 |
| 4586 | #define wqe_si_MASK 0x000000001 |
| 4587 | #define wqe_si_WORD word5 |
| 4588 | #define wqe_la_SHIFT 3 |
| 4589 | #define wqe_la_MASK 0x000000001 |
| 4590 | #define wqe_la_WORD word5 |
James Smart | 1b51197 | 2011-12-13 13:23:09 -0500 | [diff] [blame] | 4591 | #define wqe_xo_SHIFT 6 |
| 4592 | #define wqe_xo_MASK 0x000000001 |
| 4593 | #define wqe_xo_WORD word5 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4594 | #define wqe_ls_SHIFT 7 |
| 4595 | #define wqe_ls_MASK 0x000000001 |
| 4596 | #define wqe_ls_WORD word5 |
| 4597 | #define wqe_dfctl_SHIFT 8 |
| 4598 | #define wqe_dfctl_MASK 0x0000000ff |
| 4599 | #define wqe_dfctl_WORD word5 |
| 4600 | #define wqe_type_SHIFT 16 |
| 4601 | #define wqe_type_MASK 0x0000000ff |
| 4602 | #define wqe_type_WORD word5 |
| 4603 | #define wqe_rctl_SHIFT 24 |
| 4604 | #define wqe_rctl_MASK 0x0000000ff |
| 4605 | #define wqe_rctl_WORD word5 |
| 4606 | }; |
| 4607 | |
| 4608 | struct xmit_seq64_wqe { |
| 4609 | struct ulp_bde64 bde; |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4610 | uint32_t rsvd3; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4611 | uint32_t relative_offset; |
| 4612 | struct wqe_rctl_dfctl wge_ctl; |
| 4613 | struct wqe_common wqe_com; /* words 6-11 */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4614 | uint32_t xmit_len; |
| 4615 | uint32_t rsvd_12_15[3]; |
| 4616 | }; |
| 4617 | struct xmit_bcast64_wqe { |
| 4618 | struct ulp_bde64 bde; |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4619 | uint32_t seq_payload_len; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4620 | uint32_t rsvd4; |
| 4621 | struct wqe_rctl_dfctl wge_ctl; /* word 5 */ |
| 4622 | struct wqe_common wqe_com; /* words 6-11 */ |
| 4623 | uint32_t rsvd_12_15[4]; |
| 4624 | }; |
| 4625 | |
| 4626 | struct gen_req64_wqe { |
| 4627 | struct ulp_bde64 bde; |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4628 | uint32_t request_payload_len; |
| 4629 | uint32_t relative_offset; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4630 | struct wqe_rctl_dfctl wge_ctl; /* word 5 */ |
| 4631 | struct wqe_common wqe_com; /* words 6-11 */ |
James Smart | af22741 | 2013-10-10 12:23:10 -0400 | [diff] [blame] | 4632 | uint32_t rsvd_12_14[3]; |
| 4633 | uint32_t max_response_payload_len; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4634 | }; |
| 4635 | |
James Smart | a0f2d3e | 2017-02-12 13:52:31 -0800 | [diff] [blame] | 4636 | /* Define NVME PRLI request to fabric. NVME is a |
| 4637 | * fabric-only protocol. |
| 4638 | * Updated to red-lined v1.08 on Sept 16, 2016 |
| 4639 | */ |
| 4640 | struct lpfc_nvme_prli { |
| 4641 | uint32_t word1; |
| 4642 | /* The Response Code is defined in the FCP PRLI lpfc_hw.h */ |
| 4643 | #define prli_acc_rsp_code_SHIFT 8 |
| 4644 | #define prli_acc_rsp_code_MASK 0x0000000f |
| 4645 | #define prli_acc_rsp_code_WORD word1 |
| 4646 | #define prli_estabImagePair_SHIFT 13 |
| 4647 | #define prli_estabImagePair_MASK 0x00000001 |
| 4648 | #define prli_estabImagePair_WORD word1 |
| 4649 | #define prli_type_code_ext_SHIFT 16 |
| 4650 | #define prli_type_code_ext_MASK 0x000000ff |
| 4651 | #define prli_type_code_ext_WORD word1 |
| 4652 | #define prli_type_code_SHIFT 24 |
| 4653 | #define prli_type_code_MASK 0x000000ff |
| 4654 | #define prli_type_code_WORD word1 |
| 4655 | uint32_t word_rsvd2; |
| 4656 | uint32_t word_rsvd3; |
James Smart | 0d8af09 | 2019-08-14 16:57:10 -0700 | [diff] [blame] | 4657 | |
James Smart | a0f2d3e | 2017-02-12 13:52:31 -0800 | [diff] [blame] | 4658 | uint32_t word4; |
| 4659 | #define prli_fba_SHIFT 0 |
| 4660 | #define prli_fba_MASK 0x00000001 |
| 4661 | #define prli_fba_WORD word4 |
| 4662 | #define prli_disc_SHIFT 3 |
| 4663 | #define prli_disc_MASK 0x00000001 |
| 4664 | #define prli_disc_WORD word4 |
| 4665 | #define prli_tgt_SHIFT 4 |
| 4666 | #define prli_tgt_MASK 0x00000001 |
| 4667 | #define prli_tgt_WORD word4 |
| 4668 | #define prli_init_SHIFT 5 |
| 4669 | #define prli_init_MASK 0x00000001 |
| 4670 | #define prli_init_WORD word4 |
James Smart | a5ff068 | 2018-01-30 15:58:56 -0800 | [diff] [blame] | 4671 | #define prli_conf_SHIFT 7 |
| 4672 | #define prli_conf_MASK 0x00000001 |
| 4673 | #define prli_conf_WORD word4 |
James Smart | 0d8af09 | 2019-08-14 16:57:10 -0700 | [diff] [blame] | 4674 | #define prli_nsler_SHIFT 8 |
| 4675 | #define prli_nsler_MASK 0x00000001 |
| 4676 | #define prli_nsler_WORD word4 |
James Smart | a0f2d3e | 2017-02-12 13:52:31 -0800 | [diff] [blame] | 4677 | uint32_t word5; |
| 4678 | #define prli_fb_sz_SHIFT 0 |
| 4679 | #define prli_fb_sz_MASK 0x0000ffff |
| 4680 | #define prli_fb_sz_WORD word5 |
James Smart | 2d7dbc4 | 2017-02-12 13:52:35 -0800 | [diff] [blame] | 4681 | #define LPFC_NVMET_FB_SZ_MAX 65536 /* Driver target mode only. */ |
James Smart | a0f2d3e | 2017-02-12 13:52:31 -0800 | [diff] [blame] | 4682 | }; |
| 4683 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4684 | struct create_xri_wqe { |
| 4685 | uint32_t rsrvd[5]; /* words 0-4 */ |
| 4686 | struct wqe_did wqe_dest; /* word 5 */ |
| 4687 | struct wqe_common wqe_com; /* words 6-11 */ |
| 4688 | uint32_t rsvd_12_15[4]; /* word 12-15 */ |
| 4689 | }; |
| 4690 | |
James Smart | 51f8e43 | 2019-09-21 20:58:56 -0700 | [diff] [blame] | 4691 | #define INHIBIT_ABORT 1 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4692 | #define T_REQUEST_TAG 3 |
| 4693 | #define T_XRI_TAG 1 |
| 4694 | |
| 4695 | struct abort_cmd_wqe { |
| 4696 | uint32_t rsrvd[3]; |
| 4697 | uint32_t word3; |
| 4698 | #define abort_cmd_ia_SHIFT 0 |
| 4699 | #define abort_cmd_ia_MASK 0x000000001 |
| 4700 | #define abort_cmd_ia_WORD word3 |
| 4701 | #define abort_cmd_criteria_SHIFT 8 |
| 4702 | #define abort_cmd_criteria_MASK 0x0000000ff |
| 4703 | #define abort_cmd_criteria_WORD word3 |
| 4704 | uint32_t rsrvd4; |
| 4705 | uint32_t rsrvd5; |
| 4706 | struct wqe_common wqe_com; /* words 6-11 */ |
| 4707 | uint32_t rsvd_12_15[4]; /* word 12-15 */ |
| 4708 | }; |
| 4709 | |
| 4710 | struct fcp_iwrite64_wqe { |
| 4711 | struct ulp_bde64 bde; |
James Smart | 0ba4b21 | 2013-10-10 12:22:38 -0400 | [diff] [blame] | 4712 | uint32_t word3; |
| 4713 | #define cmd_buff_len_SHIFT 16 |
| 4714 | #define cmd_buff_len_MASK 0x00000ffff |
| 4715 | #define cmd_buff_len_WORD word3 |
| 4716 | #define payload_offset_len_SHIFT 0 |
| 4717 | #define payload_offset_len_MASK 0x0000ffff |
| 4718 | #define payload_offset_len_WORD word3 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4719 | uint32_t total_xfer_len; |
| 4720 | uint32_t initial_xfer_len; |
| 4721 | struct wqe_common wqe_com; /* words 6-11 */ |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 4722 | uint32_t rsrvd12; |
| 4723 | struct ulp_bde64 ph_bde; /* words 13-15 */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4724 | }; |
| 4725 | |
| 4726 | struct fcp_iread64_wqe { |
| 4727 | struct ulp_bde64 bde; |
James Smart | 0ba4b21 | 2013-10-10 12:22:38 -0400 | [diff] [blame] | 4728 | uint32_t word3; |
| 4729 | #define cmd_buff_len_SHIFT 16 |
| 4730 | #define cmd_buff_len_MASK 0x00000ffff |
| 4731 | #define cmd_buff_len_WORD word3 |
| 4732 | #define payload_offset_len_SHIFT 0 |
| 4733 | #define payload_offset_len_MASK 0x0000ffff |
| 4734 | #define payload_offset_len_WORD word3 |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4735 | uint32_t total_xfer_len; /* word 4 */ |
| 4736 | uint32_t rsrvd5; /* word 5 */ |
| 4737 | struct wqe_common wqe_com; /* words 6-11 */ |
James Smart | fedd3b7 | 2011-02-16 12:39:24 -0500 | [diff] [blame] | 4738 | uint32_t rsrvd12; |
| 4739 | struct ulp_bde64 ph_bde; /* words 13-15 */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4740 | }; |
| 4741 | |
| 4742 | struct fcp_icmnd64_wqe { |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4743 | struct ulp_bde64 bde; /* words 0-2 */ |
James Smart | 0ba4b21 | 2013-10-10 12:22:38 -0400 | [diff] [blame] | 4744 | uint32_t word3; |
| 4745 | #define cmd_buff_len_SHIFT 16 |
| 4746 | #define cmd_buff_len_MASK 0x00000ffff |
| 4747 | #define cmd_buff_len_WORD word3 |
| 4748 | #define payload_offset_len_SHIFT 0 |
| 4749 | #define payload_offset_len_MASK 0x0000ffff |
| 4750 | #define payload_offset_len_WORD word3 |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4751 | uint32_t rsrvd4; /* word 4 */ |
| 4752 | uint32_t rsrvd5; /* word 5 */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4753 | struct wqe_common wqe_com; /* words 6-11 */ |
James Smart | f0d9bcc | 2010-10-22 11:07:09 -0400 | [diff] [blame] | 4754 | uint32_t rsvd_12_15[4]; /* word 12-15 */ |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4755 | }; |
| 4756 | |
James Smart | f358dd0 | 2017-02-12 13:52:34 -0800 | [diff] [blame] | 4757 | struct fcp_trsp64_wqe { |
| 4758 | struct ulp_bde64 bde; |
| 4759 | uint32_t response_len; |
| 4760 | uint32_t rsvd_4_5[2]; |
| 4761 | struct wqe_common wqe_com; /* words 6-11 */ |
| 4762 | uint32_t rsvd_12_15[4]; /* word 12-15 */ |
| 4763 | }; |
| 4764 | |
| 4765 | struct fcp_tsend64_wqe { |
| 4766 | struct ulp_bde64 bde; |
| 4767 | uint32_t payload_offset_len; |
| 4768 | uint32_t relative_offset; |
| 4769 | uint32_t reserved; |
| 4770 | struct wqe_common wqe_com; /* words 6-11 */ |
| 4771 | uint32_t fcp_data_len; /* word 12 */ |
| 4772 | uint32_t rsvd_13_15[3]; /* word 13-15 */ |
| 4773 | }; |
| 4774 | |
| 4775 | struct fcp_treceive64_wqe { |
| 4776 | struct ulp_bde64 bde; |
| 4777 | uint32_t payload_offset_len; |
| 4778 | uint32_t relative_offset; |
| 4779 | uint32_t reserved; |
| 4780 | struct wqe_common wqe_com; /* words 6-11 */ |
| 4781 | uint32_t fcp_data_len; /* word 12 */ |
| 4782 | uint32_t rsvd_13_15[3]; /* word 13-15 */ |
| 4783 | }; |
| 4784 | #define TXRDY_PAYLOAD_LEN 12 |
| 4785 | |
James Smart | ae9e28f | 2017-05-15 15:20:51 -0700 | [diff] [blame] | 4786 | #define CMD_SEND_FRAME 0xE1 |
| 4787 | |
| 4788 | struct send_frame_wqe { |
| 4789 | struct ulp_bde64 bde; /* words 0-2 */ |
| 4790 | uint32_t frame_len; /* word 3 */ |
| 4791 | uint32_t fc_hdr_wd0; /* word 4 */ |
| 4792 | uint32_t fc_hdr_wd1; /* word 5 */ |
| 4793 | struct wqe_common wqe_com; /* words 6-11 */ |
| 4794 | uint32_t fc_hdr_wd2; /* word 12 */ |
| 4795 | uint32_t fc_hdr_wd3; /* word 13 */ |
| 4796 | uint32_t fc_hdr_wd4; /* word 14 */ |
| 4797 | uint32_t fc_hdr_wd5; /* word 15 */ |
| 4798 | }; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4799 | |
James Smart | df3fe76 | 2020-02-10 09:31:55 -0800 | [diff] [blame] | 4800 | #define ELS_RDF_REG_TAG_CNT 1 |
| 4801 | struct lpfc_els_rdf_reg_desc { |
| 4802 | struct fc_df_desc_fpin_reg reg_desc; /* descriptor header */ |
| 4803 | __be32 desc_tags[ELS_RDF_REG_TAG_CNT]; |
| 4804 | /* tags in reg_desc */ |
| 4805 | }; |
| 4806 | |
| 4807 | struct lpfc_els_rdf_req { |
| 4808 | struct fc_els_rdf rdf; /* hdr up to descriptors */ |
| 4809 | struct lpfc_els_rdf_reg_desc reg_d1; /* 1st descriptor */ |
| 4810 | }; |
| 4811 | |
| 4812 | struct lpfc_els_rdf_rsp { |
| 4813 | struct fc_els_rdf_resp rdf_resp; /* hdr up to descriptors */ |
| 4814 | struct lpfc_els_rdf_reg_desc reg_d1; /* 1st descriptor */ |
| 4815 | }; |
| 4816 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4817 | union lpfc_wqe { |
| 4818 | uint32_t words[16]; |
| 4819 | struct lpfc_wqe_generic generic; |
| 4820 | struct fcp_icmnd64_wqe fcp_icmd; |
| 4821 | struct fcp_iread64_wqe fcp_iread; |
| 4822 | struct fcp_iwrite64_wqe fcp_iwrite; |
| 4823 | struct abort_cmd_wqe abort_cmd; |
| 4824 | struct create_xri_wqe create_xri; |
| 4825 | struct xmit_bcast64_wqe xmit_bcast64; |
| 4826 | struct xmit_seq64_wqe xmit_sequence; |
| 4827 | struct xmit_bls_rsp64_wqe xmit_bls_rsp; |
| 4828 | struct xmit_els_rsp64_wqe xmit_els_rsp; |
| 4829 | struct els_request64_wqe els_req; |
| 4830 | struct gen_req64_wqe gen_req; |
James Smart | f358dd0 | 2017-02-12 13:52:34 -0800 | [diff] [blame] | 4831 | struct fcp_trsp64_wqe fcp_trsp; |
| 4832 | struct fcp_tsend64_wqe fcp_tsend; |
| 4833 | struct fcp_treceive64_wqe fcp_treceive; |
James Smart | ae9e28f | 2017-05-15 15:20:51 -0700 | [diff] [blame] | 4834 | struct send_frame_wqe send_frame; |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4835 | }; |
| 4836 | |
James Smart | 0c65187 | 2013-07-15 18:33:23 -0400 | [diff] [blame] | 4837 | union lpfc_wqe128 { |
| 4838 | uint32_t words[32]; |
| 4839 | struct lpfc_wqe_generic generic; |
James Smart | b5c5395 | 2016-03-31 14:12:30 -0700 | [diff] [blame] | 4840 | struct fcp_icmnd64_wqe fcp_icmd; |
| 4841 | struct fcp_iread64_wqe fcp_iread; |
| 4842 | struct fcp_iwrite64_wqe fcp_iwrite; |
James Smart | 205e824 | 2018-03-05 12:04:03 -0800 | [diff] [blame] | 4843 | struct abort_cmd_wqe abort_cmd; |
| 4844 | struct create_xri_wqe create_xri; |
| 4845 | struct xmit_bcast64_wqe xmit_bcast64; |
| 4846 | struct xmit_seq64_wqe xmit_sequence; |
| 4847 | struct xmit_bls_rsp64_wqe xmit_bls_rsp; |
| 4848 | struct xmit_els_rsp64_wqe xmit_els_rsp; |
| 4849 | struct els_request64_wqe els_req; |
| 4850 | struct gen_req64_wqe gen_req; |
James Smart | f358dd0 | 2017-02-12 13:52:34 -0800 | [diff] [blame] | 4851 | struct fcp_trsp64_wqe fcp_trsp; |
| 4852 | struct fcp_tsend64_wqe fcp_tsend; |
| 4853 | struct fcp_treceive64_wqe fcp_treceive; |
James Smart | 205e824 | 2018-03-05 12:04:03 -0800 | [diff] [blame] | 4854 | struct send_frame_wqe send_frame; |
James Smart | 0c65187 | 2013-07-15 18:33:23 -0400 | [diff] [blame] | 4855 | }; |
| 4856 | |
James Smart | 5792a0e | 2019-10-25 11:43:42 -0700 | [diff] [blame] | 4857 | #define MAGIC_NUMBER_G6 0xFEAA0003 |
| 4858 | #define MAGIC_NUMBER_G7 0xFEAA0005 |
James Smart | a72d56b | 2018-05-04 20:37:52 -0700 | [diff] [blame] | 4859 | |
James Smart | 52d5244 | 2011-05-24 11:42:45 -0400 | [diff] [blame] | 4860 | struct lpfc_grp_hdr { |
| 4861 | uint32_t size; |
| 4862 | uint32_t magic_number; |
| 4863 | uint32_t word2; |
| 4864 | #define lpfc_grp_hdr_file_type_SHIFT 24 |
| 4865 | #define lpfc_grp_hdr_file_type_MASK 0x000000FF |
| 4866 | #define lpfc_grp_hdr_file_type_WORD word2 |
| 4867 | #define lpfc_grp_hdr_id_SHIFT 16 |
| 4868 | #define lpfc_grp_hdr_id_MASK 0x000000FF |
| 4869 | #define lpfc_grp_hdr_id_WORD word2 |
| 4870 | uint8_t rev_name[128]; |
James Smart | 88a2cfb | 2011-07-22 18:36:33 -0400 | [diff] [blame] | 4871 | uint8_t date[12]; |
| 4872 | uint8_t revision[32]; |
James Smart | 52d5244 | 2011-05-24 11:42:45 -0400 | [diff] [blame] | 4873 | }; |
| 4874 | |
James Smart | 895427b | 2017-02-12 13:52:30 -0800 | [diff] [blame] | 4875 | /* Defines for WQE command type */ |
| 4876 | #define FCP_COMMAND 0x0 |
| 4877 | #define NVME_READ_CMD 0x0 |
| 4878 | #define FCP_COMMAND_DATA_OUT 0x1 |
| 4879 | #define NVME_WRITE_CMD 0x1 |
| 4880 | #define FCP_COMMAND_TRECEIVE 0x2 |
| 4881 | #define FCP_COMMAND_TRSP 0x3 |
| 4882 | #define FCP_COMMAND_TSEND 0x7 |
| 4883 | #define OTHER_COMMAND 0x8 |
| 4884 | #define ELS_COMMAND_NON_FIP 0xC |
| 4885 | #define ELS_COMMAND_FIP 0xD |
| 4886 | |
| 4887 | #define LPFC_NVME_EMBED_CMD 0x0 |
| 4888 | #define LPFC_NVME_EMBED_WRITE 0x1 |
| 4889 | #define LPFC_NVME_EMBED_READ 0x2 |
| 4890 | |
| 4891 | /* WQE Commands */ |
| 4892 | #define CMD_ABORT_XRI_WQE 0x0F |
| 4893 | #define CMD_XMIT_SEQUENCE64_WQE 0x82 |
| 4894 | #define CMD_XMIT_BCAST64_WQE 0x84 |
| 4895 | #define CMD_ELS_REQUEST64_WQE 0x8A |
| 4896 | #define CMD_XMIT_ELS_RSP64_WQE 0x95 |
| 4897 | #define CMD_XMIT_BLS_RSP64_WQE 0x97 |
| 4898 | #define CMD_FCP_IWRITE64_WQE 0x98 |
| 4899 | #define CMD_FCP_IREAD64_WQE 0x9A |
| 4900 | #define CMD_FCP_ICMND64_WQE 0x9C |
| 4901 | #define CMD_FCP_TSEND64_WQE 0x9F |
| 4902 | #define CMD_FCP_TRECEIVE64_WQE 0xA1 |
| 4903 | #define CMD_FCP_TRSP64_WQE 0xA3 |
| 4904 | #define CMD_GEN_REQUEST64_WQE 0xC2 |
| 4905 | |
| 4906 | #define CMD_WQE_MASK 0xff |
| 4907 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 4908 | |
James Smart | 52d5244 | 2011-05-24 11:42:45 -0400 | [diff] [blame] | 4909 | #define LPFC_FW_DUMP 1 |
| 4910 | #define LPFC_FW_RESET 2 |
| 4911 | #define LPFC_DV_RESET 3 |