Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /* |
| 16 | * pci.h: PCI definitions. |
| 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | |
| 40 | #ifndef included_vlib_pci_config_h |
| 41 | #define included_vlib_pci_config_h |
| 42 | |
| 43 | #include <vppinfra/byte_order.h> |
| 44 | #include <vppinfra/error.h> |
| 45 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 46 | typedef enum |
| 47 | { |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 48 | PCI_CLASS_NOT_DEFINED = 0x0000, |
| 49 | PCI_CLASS_NOT_DEFINED_VGA = 0x0001, |
| 50 | |
| 51 | PCI_CLASS_STORAGE_SCSI = 0x0100, |
| 52 | PCI_CLASS_STORAGE_IDE = 0x0101, |
| 53 | PCI_CLASS_STORAGE_FLOPPY = 0x0102, |
| 54 | PCI_CLASS_STORAGE_IPI = 0x0103, |
| 55 | PCI_CLASS_STORAGE_RAID = 0x0104, |
| 56 | PCI_CLASS_STORAGE_OTHER = 0x0180, |
| 57 | PCI_CLASS_STORAGE = 0x0100, |
| 58 | |
| 59 | PCI_CLASS_NETWORK_ETHERNET = 0x0200, |
| 60 | PCI_CLASS_NETWORK_TOKEN_RING = 0x0201, |
| 61 | PCI_CLASS_NETWORK_FDDI = 0x0202, |
| 62 | PCI_CLASS_NETWORK_ATM = 0x0203, |
| 63 | PCI_CLASS_NETWORK_OTHER = 0x0280, |
| 64 | PCI_CLASS_NETWORK = 0x0200, |
| 65 | |
| 66 | PCI_CLASS_DISPLAY_VGA = 0x0300, |
| 67 | PCI_CLASS_DISPLAY_XGA = 0x0301, |
| 68 | PCI_CLASS_DISPLAY_3D = 0x0302, |
| 69 | PCI_CLASS_DISPLAY_OTHER = 0x0380, |
| 70 | PCI_CLASS_DISPLAY = 0x0300, |
| 71 | |
| 72 | PCI_CLASS_MULTIMEDIA_VIDEO = 0x0400, |
| 73 | PCI_CLASS_MULTIMEDIA_AUDIO = 0x0401, |
| 74 | PCI_CLASS_MULTIMEDIA_PHONE = 0x0402, |
| 75 | PCI_CLASS_MULTIMEDIA_OTHER = 0x0480, |
| 76 | PCI_CLASS_MULTIMEDIA = 0x0400, |
| 77 | |
| 78 | PCI_CLASS_MEMORY_RAM = 0x0500, |
| 79 | PCI_CLASS_MEMORY_FLASH = 0x0501, |
| 80 | PCI_CLASS_MEMORY_OTHER = 0x0580, |
| 81 | PCI_CLASS_MEMORY = 0x0500, |
| 82 | |
| 83 | PCI_CLASS_BRIDGE_HOST = 0x0600, |
| 84 | PCI_CLASS_BRIDGE_ISA = 0x0601, |
| 85 | PCI_CLASS_BRIDGE_EISA = 0x0602, |
| 86 | PCI_CLASS_BRIDGE_MC = 0x0603, |
| 87 | PCI_CLASS_BRIDGE_PCI = 0x0604, |
| 88 | PCI_CLASS_BRIDGE_PCMCIA = 0x0605, |
| 89 | PCI_CLASS_BRIDGE_NUBUS = 0x0606, |
| 90 | PCI_CLASS_BRIDGE_CARDBUS = 0x0607, |
| 91 | PCI_CLASS_BRIDGE_RACEWAY = 0x0608, |
| 92 | PCI_CLASS_BRIDGE_OTHER = 0x0680, |
| 93 | PCI_CLASS_BRIDGE = 0x0600, |
| 94 | |
| 95 | PCI_CLASS_COMMUNICATION_SERIAL = 0x0700, |
| 96 | PCI_CLASS_COMMUNICATION_PARALLEL = 0x0701, |
| 97 | PCI_CLASS_COMMUNICATION_MULTISERIAL = 0x0702, |
| 98 | PCI_CLASS_COMMUNICATION_MODEM = 0x0703, |
| 99 | PCI_CLASS_COMMUNICATION_OTHER = 0x0780, |
| 100 | PCI_CLASS_COMMUNICATION = 0x0700, |
| 101 | |
| 102 | PCI_CLASS_SYSTEM_PIC = 0x0800, |
| 103 | PCI_CLASS_SYSTEM_DMA = 0x0801, |
| 104 | PCI_CLASS_SYSTEM_TIMER = 0x0802, |
| 105 | PCI_CLASS_SYSTEM_RTC = 0x0803, |
| 106 | PCI_CLASS_SYSTEM_PCI_HOTPLUG = 0x0804, |
| 107 | PCI_CLASS_SYSTEM_OTHER = 0x0880, |
| 108 | PCI_CLASS_SYSTEM = 0x0800, |
| 109 | |
| 110 | PCI_CLASS_INPUT_KEYBOARD = 0x0900, |
| 111 | PCI_CLASS_INPUT_PEN = 0x0901, |
| 112 | PCI_CLASS_INPUT_MOUSE = 0x0902, |
| 113 | PCI_CLASS_INPUT_SCANNER = 0x0903, |
| 114 | PCI_CLASS_INPUT_GAMEPORT = 0x0904, |
| 115 | PCI_CLASS_INPUT_OTHER = 0x0980, |
| 116 | PCI_CLASS_INPUT = 0x0900, |
| 117 | |
| 118 | PCI_CLASS_DOCKING_GENERIC = 0x0a00, |
| 119 | PCI_CLASS_DOCKING_OTHER = 0x0a80, |
| 120 | PCI_CLASS_DOCKING = 0x0a00, |
| 121 | |
| 122 | PCI_CLASS_PROCESSOR_386 = 0x0b00, |
| 123 | PCI_CLASS_PROCESSOR_486 = 0x0b01, |
| 124 | PCI_CLASS_PROCESSOR_PENTIUM = 0x0b02, |
| 125 | PCI_CLASS_PROCESSOR_ALPHA = 0x0b10, |
| 126 | PCI_CLASS_PROCESSOR_POWERPC = 0x0b20, |
| 127 | PCI_CLASS_PROCESSOR_MIPS = 0x0b30, |
| 128 | PCI_CLASS_PROCESSOR_CO = 0x0b40, |
| 129 | PCI_CLASS_PROCESSOR = 0x0b00, |
| 130 | |
| 131 | PCI_CLASS_SERIAL_FIREWIRE = 0x0c00, |
| 132 | PCI_CLASS_SERIAL_ACCESS = 0x0c01, |
| 133 | PCI_CLASS_SERIAL_SSA = 0x0c02, |
| 134 | PCI_CLASS_SERIAL_USB = 0x0c03, |
| 135 | PCI_CLASS_SERIAL_FIBER = 0x0c04, |
| 136 | PCI_CLASS_SERIAL_SMBUS = 0x0c05, |
| 137 | PCI_CLASS_SERIAL = 0x0c00, |
| 138 | |
| 139 | PCI_CLASS_INTELLIGENT_I2O = 0x0e00, |
| 140 | PCI_CLASS_INTELLIGENT = 0x0e00, |
| 141 | |
| 142 | PCI_CLASS_SATELLITE_TV = 0x0f00, |
| 143 | PCI_CLASS_SATELLITE_AUDIO = 0x0f01, |
| 144 | PCI_CLASS_SATELLITE_VOICE = 0x0f03, |
| 145 | PCI_CLASS_SATELLITE_DATA = 0x0f04, |
| 146 | PCI_CLASS_SATELLITE = 0x0f00, |
| 147 | |
| 148 | PCI_CLASS_CRYPT_NETWORK = 0x1000, |
| 149 | PCI_CLASS_CRYPT_ENTERTAINMENT = 0x1001, |
| 150 | PCI_CLASS_CRYPT_OTHER = 0x1080, |
| 151 | PCI_CLASS_CRYPT = 0x1000, |
| 152 | |
| 153 | PCI_CLASS_SP_DPIO = 0x1100, |
| 154 | PCI_CLASS_SP_OTHER = 0x1180, |
| 155 | PCI_CLASS_SP = 0x1100, |
| 156 | } pci_device_class_t; |
| 157 | |
| 158 | static inline pci_device_class_t |
| 159 | pci_device_class_base (pci_device_class_t c) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 160 | { |
| 161 | return c & ~0xff; |
| 162 | } |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 163 | |
| 164 | /* |
| 165 | * Under PCI, each device has 256 bytes of configuration address space, |
| 166 | * of which the first 64 bytes are standardized as follows: |
| 167 | */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 168 | typedef struct |
| 169 | { |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 170 | u16 vendor_id; |
| 171 | u16 device_id; |
| 172 | |
| 173 | u16 command; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 174 | #define PCI_COMMAND_IO (1 << 0) /* Enable response in I/O space */ |
| 175 | #define PCI_COMMAND_MEMORY (1 << 1) /* Enable response in Memory space */ |
| 176 | #define PCI_COMMAND_BUS_MASTER (1 << 2) /* Enable bus mastering */ |
| 177 | #define PCI_COMMAND_SPECIAL (1 << 3) /* Enable response to special cycles */ |
| 178 | #define PCI_COMMAND_WRITE_INVALIDATE (1 << 4) /* Use memory write and invalidate */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 179 | #define PCI_COMMAND_VGA_PALETTE_SNOOP (1 << 5) |
| 180 | #define PCI_COMMAND_PARITY (1 << 6) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 181 | #define PCI_COMMAND_WAIT (1 << 7) /* Enable address/data stepping */ |
| 182 | #define PCI_COMMAND_SERR (1 << 8) /* Enable SERR */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 183 | #define PCI_COMMAND_BACK_TO_BACK_WRITE (1 << 9) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 184 | #define PCI_COMMAND_INTX_DISABLE (1 << 10) /* INTx Emulation Disable */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 185 | |
| 186 | u16 status; |
| 187 | #define PCI_STATUS_INTX_PENDING (1 << 3) |
| 188 | #define PCI_STATUS_CAPABILITY_LIST (1 << 4) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 189 | #define PCI_STATUS_66MHZ (1 << 5) /* Support 66 Mhz PCI 2.1 bus */ |
| 190 | #define PCI_STATUS_UDF (1 << 6) /* Support User Definable Features (obsolete) */ |
| 191 | #define PCI_STATUS_BACK_TO_BACK_WRITE (1 << 7) /* Accept fast-back to back */ |
| 192 | #define PCI_STATUS_PARITY_ERROR (1 << 8) /* Detected parity error */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 193 | #define PCI_STATUS_DEVSEL_GET(x) ((x >> 9) & 3) /* DEVSEL timing */ |
| 194 | #define PCI_STATUS_DEVSEL_FAST (0 << 9) |
| 195 | #define PCI_STATUS_DEVSEL_MEDIUM (1 << 9) |
| 196 | #define PCI_STATUS_DEVSEL_SLOW (2 << 9) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 197 | #define PCI_STATUS_SIG_TARGET_ABORT (1 << 11) /* Set on target abort */ |
| 198 | #define PCI_STATUS_REC_TARGET_ABORT (1 << 12) /* Master ack of " */ |
| 199 | #define PCI_STATUS_REC_MASTER_ABORT (1 << 13) /* Set on master abort */ |
| 200 | #define PCI_STATUS_SIG_SYSTEM_ERROR (1 << 14) /* Set when we drive SERR */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 201 | #define PCI_STATUS_DETECTED_PARITY_ERROR (1 << 15) |
| 202 | |
| 203 | u8 revision_id; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 204 | u8 programming_interface_class; /* Reg. Level Programming Interface */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 205 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 206 | pci_device_class_t device_class:16; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 207 | |
| 208 | u8 cache_size; |
| 209 | u8 latency_timer; |
| 210 | |
| 211 | u8 header_type; |
| 212 | #define PCI_HEADER_TYPE_NORMAL 0 |
| 213 | #define PCI_HEADER_TYPE_BRIDGE 1 |
| 214 | #define PCI_HEADER_TYPE_CARDBUS 2 |
| 215 | |
| 216 | u8 bist; |
| 217 | #define PCI_BIST_CODE_MASK 0x0f /* Return result */ |
| 218 | #define PCI_BIST_START 0x40 /* 1 to start BIST, 2 secs or less */ |
| 219 | #define PCI_BIST_CAPABLE 0x80 /* 1 if BIST capable */ |
| 220 | } pci_config_header_t; |
| 221 | |
| 222 | /* Byte swap config header. */ |
| 223 | always_inline void |
| 224 | pci_config_header_little_to_host (pci_config_header_t * r) |
| 225 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 226 | if (!CLIB_ARCH_IS_BIG_ENDIAN) |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 227 | return; |
| 228 | #define _(f,t) r->f = clib_byte_swap_##t (r->f) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 229 | _(vendor_id, u16); |
| 230 | _(device_id, u16); |
| 231 | _(command, u16); |
| 232 | _(status, u16); |
| 233 | _(device_class, u16); |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 234 | #undef _ |
| 235 | } |
| 236 | |
| 237 | /* Header type 0 (normal devices) */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 238 | typedef struct |
| 239 | { |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 240 | pci_config_header_t header; |
| 241 | |
| 242 | /* |
| 243 | * Base addresses specify locations in memory or I/O space. |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 244 | * Decoded size can be determined by writing a value of |
| 245 | * 0xffffffff to the register, and reading it back. Only |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 246 | * 1 bits are decoded. |
| 247 | */ |
| 248 | u32 base_address[6]; |
| 249 | |
| 250 | u16 cardbus_cis; |
| 251 | |
| 252 | u16 subsystem_vendor_id; |
| 253 | u16 subsystem_id; |
| 254 | |
| 255 | u32 rom_address; |
| 256 | #define PCI_ROM_ADDRESS 0x30 /* Bits 31..11 are address, 10..1 reserved */ |
| 257 | #define PCI_ROM_ADDRESS_ENABLE 0x01 |
| 258 | #define PCI_ROM_ADDRESS_MASK (~0x7ffUL) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 259 | |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 260 | u8 first_capability_offset; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 261 | CLIB_PAD_FROM_TO (0x35, 0x3c); |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 262 | |
| 263 | u8 interrupt_line; |
| 264 | u8 interrupt_pin; |
| 265 | u8 min_grant; |
| 266 | u8 max_latency; |
| 267 | |
| 268 | u8 capability_data[0]; |
| 269 | } pci_config_type0_regs_t; |
| 270 | |
| 271 | always_inline void |
| 272 | pci_config_type0_little_to_host (pci_config_type0_regs_t * r) |
| 273 | { |
| 274 | int i; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 275 | if (!CLIB_ARCH_IS_BIG_ENDIAN) |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 276 | return; |
| 277 | pci_config_header_little_to_host (&r->header); |
| 278 | #define _(f,t) r->f = clib_byte_swap_##t (r->f) |
| 279 | for (i = 0; i < ARRAY_LEN (r->base_address); i++) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 280 | _(base_address[i], u32); |
| 281 | _(cardbus_cis, u16); |
| 282 | _(subsystem_vendor_id, u16); |
| 283 | _(subsystem_id, u16); |
| 284 | _(rom_address, u32); |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 285 | #undef _ |
| 286 | } |
| 287 | |
| 288 | /* Header type 1 (PCI-to-PCI bridges) */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 289 | typedef struct |
| 290 | { |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 291 | pci_config_header_t header; |
| 292 | |
| 293 | u32 base_address[2]; |
| 294 | |
| 295 | /* Primary/secondary bus number. */ |
| 296 | u8 primary_bus; |
| 297 | u8 secondary_bus; |
| 298 | |
| 299 | /* Highest bus number behind the bridge */ |
| 300 | u8 subordinate_bus; |
| 301 | |
| 302 | u8 secondary_bus_latency_timer; |
| 303 | |
| 304 | /* I/O range behind bridge. */ |
| 305 | u8 io_base, io_limit; |
| 306 | |
| 307 | /* Secondary status register, only bit 14 used */ |
| 308 | u16 secondary_status; |
| 309 | |
| 310 | /* Memory range behind bridge in units of 64k bytes. */ |
| 311 | u16 memory_base, memory_limit; |
| 312 | #define PCI_MEMORY_RANGE_TYPE_MASK 0x0fUL |
| 313 | #define PCI_MEMORY_RANGE_MASK (~0x0fUL) |
| 314 | |
| 315 | u16 prefetchable_memory_base, prefetchable_memory_limit; |
| 316 | #define PCI_PREF_RANGE_TYPE_MASK 0x0fUL |
| 317 | #define PCI_PREF_RANGE_TYPE_32 0x00 |
| 318 | #define PCI_PREF_RANGE_TYPE_64 0x01 |
| 319 | #define PCI_PREF_RANGE_MASK (~0x0fUL) |
| 320 | |
| 321 | u32 prefetchable_memory_base_upper_32bits; |
| 322 | u32 prefetchable_memory_limit_upper_32bits; |
| 323 | u16 io_base_upper_16bits; |
| 324 | u16 io_limit_upper_16bits; |
| 325 | |
| 326 | /* Same as for type 0. */ |
| 327 | u8 capability_list_offset; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 328 | CLIB_PAD_FROM_TO (0x35, 0x37); |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 329 | |
| 330 | u32 rom_address; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 331 | CLIB_PAD_FROM_TO (0x3c, 0x3e); |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 332 | |
| 333 | u16 bridge_control; |
| 334 | #define PCI_BRIDGE_CTL_PARITY 0x01 /* Enable parity detection on secondary interface */ |
| 335 | #define PCI_BRIDGE_CTL_SERR 0x02 /* The same for SERR forwarding */ |
| 336 | #define PCI_BRIDGE_CTL_NO_ISA 0x04 /* Disable bridging of ISA ports */ |
| 337 | #define PCI_BRIDGE_CTL_VGA 0x08 /* Forward VGA addresses */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 338 | #define PCI_BRIDGE_CTL_MASTER_ABORT 0x20 /* Report master aborts */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 339 | #define PCI_BRIDGE_CTL_BUS_RESET 0x40 /* Secondary bus reset */ |
| 340 | #define PCI_BRIDGE_CTL_FAST_BACK 0x80 /* Fast Back2Back enabled on secondary interface */ |
| 341 | |
| 342 | u8 capability_data[0]; |
| 343 | } pci_config_type1_regs_t; |
| 344 | |
| 345 | always_inline void |
| 346 | pci_config_type1_little_to_host (pci_config_type1_regs_t * r) |
| 347 | { |
| 348 | int i; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 349 | if (!CLIB_ARCH_IS_BIG_ENDIAN) |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 350 | return; |
| 351 | pci_config_header_little_to_host (&r->header); |
| 352 | #define _(f,t) r->f = clib_byte_swap_##t (r->f) |
| 353 | for (i = 0; i < ARRAY_LEN (r->base_address); i++) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 354 | _(base_address[i], u32); |
| 355 | _(secondary_status, u16); |
| 356 | _(memory_base, u16); |
| 357 | _(memory_limit, u16); |
| 358 | _(prefetchable_memory_base, u16); |
| 359 | _(prefetchable_memory_limit, u16); |
| 360 | _(prefetchable_memory_base_upper_32bits, u32); |
| 361 | _(prefetchable_memory_limit_upper_32bits, u32); |
| 362 | _(io_base_upper_16bits, u16); |
| 363 | _(io_limit_upper_16bits, u16); |
| 364 | _(rom_address, u32); |
| 365 | _(bridge_control, u16); |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 366 | #undef _ |
| 367 | } |
| 368 | |
| 369 | /* Capabilities. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 370 | typedef enum pci_capability_type |
| 371 | { |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 372 | /* Power Management */ |
| 373 | PCI_CAP_ID_PM = 1, |
| 374 | |
| 375 | /* Accelerated Graphics Port */ |
| 376 | PCI_CAP_ID_AGP = 2, |
| 377 | |
| 378 | /* Vital Product Data */ |
| 379 | PCI_CAP_ID_VPD = 3, |
| 380 | |
| 381 | /* Slot Identification */ |
| 382 | PCI_CAP_ID_SLOTID = 4, |
| 383 | |
| 384 | /* Message Signalled Interrupts */ |
| 385 | PCI_CAP_ID_MSI = 5, |
| 386 | |
| 387 | /* CompactPCI HotSwap */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 388 | PCI_CAP_ID_CHSWP = 6, |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 389 | |
| 390 | /* PCI-X */ |
| 391 | PCI_CAP_ID_PCIX = 7, |
| 392 | |
| 393 | /* Hypertransport. */ |
| 394 | PCI_CAP_ID_HYPERTRANSPORT = 8, |
| 395 | |
| 396 | /* PCI Standard Hot-Plug Controller */ |
| 397 | PCI_CAP_ID_SHPC = 0xc, |
| 398 | |
| 399 | /* PCI Express */ |
| 400 | PCI_CAP_ID_PCIE = 0x10, |
| 401 | |
| 402 | /* MSI-X */ |
| 403 | PCI_CAP_ID_MSIX = 0x11, |
| 404 | } pci_capability_type_t; |
| 405 | |
| 406 | /* Common header for capabilities. */ |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 407 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 408 | typedef CLIB_PACKED (struct |
| 409 | { |
| 410 | enum pci_capability_type type:8; |
| 411 | u8 next_offset;}) pci_capability_regs_t; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 412 | /* *INDENT-ON* */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 413 | |
| 414 | always_inline void * |
| 415 | pci_config_find_capability (pci_config_type0_regs_t * t, int cap_type) |
| 416 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 417 | pci_capability_regs_t *c; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 418 | u32 next_offset; |
| 419 | u32 ttl = 48; |
| 420 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 421 | if (!(t->header.status & PCI_STATUS_CAPABILITY_LIST)) |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 422 | return 0; |
| 423 | |
| 424 | next_offset = t->first_capability_offset; |
| 425 | while (ttl-- && next_offset >= 0x40) |
| 426 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 427 | c = (void *) t + (next_offset & ~3); |
Damjan Marion | e39a7b8 | 2016-04-26 14:54:57 +0200 | [diff] [blame] | 428 | if ((u8) c->type == 0xff) |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 429 | break; |
| 430 | if (c->type == cap_type) |
| 431 | return c; |
| 432 | next_offset = c->next_offset; |
| 433 | } |
| 434 | return 0; |
| 435 | } |
| 436 | |
| 437 | /* Power Management Registers */ |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 438 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 439 | typedef CLIB_PACKED (struct |
| 440 | { |
| 441 | pci_capability_regs_t header; u16 capabilities; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 442 | #define PCI_PM_CAP_VER_MASK 0x0007 /* Version */ |
| 443 | #define PCI_PM_CAP_PME_CLOCK 0x0008 /* PME clock required */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 444 | #define PCI_PM_CAP_RESERVED 0x0010 /* Reserved field */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 445 | #define PCI_PM_CAP_DSI 0x0020 /* Device specific initialization */ |
| 446 | #define PCI_PM_CAP_AUX_POWER 0x01C0 /* Auxilliary power support mask */ |
| 447 | #define PCI_PM_CAP_D1 0x0200 /* D1 power state support */ |
| 448 | #define PCI_PM_CAP_D2 0x0400 /* D2 power state support */ |
| 449 | #define PCI_PM_CAP_PME 0x0800 /* PME pin supported */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 450 | #define PCI_PM_CAP_PME_MASK 0xF800 /* PME Mask of all supported states */ |
| 451 | #define PCI_PM_CAP_PME_D0 0x0800 /* PME# from D0 */ |
| 452 | #define PCI_PM_CAP_PME_D1 0x1000 /* PME# from D1 */ |
| 453 | #define PCI_PM_CAP_PME_D2 0x2000 /* PME# from D2 */ |
| 454 | #define PCI_PM_CAP_PME_D3 0x4000 /* PME# from D3 (hot) */ |
| 455 | #define PCI_PM_CAP_PME_D3cold 0x8000 /* PME# from D3 (cold) */ |
| 456 | u16 control; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 457 | #define PCI_PM_CTRL_STATE_MASK 0x0003 /* Current power state (D0 to D3) */ |
| 458 | #define PCI_PM_CTRL_PME_ENABLE 0x0100 /* PME pin enable */ |
| 459 | #define PCI_PM_CTRL_DATA_SEL_MASK 0x1e00 /* Data select (??) */ |
| 460 | #define PCI_PM_CTRL_DATA_SCALE_MASK 0x6000 /* Data scale (??) */ |
| 461 | #define PCI_PM_CTRL_PME_STATUS 0x8000 /* PME pin status */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 462 | u8 extensions; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 463 | #define PCI_PM_PPB_B2_B3 0x40 /* Stop clock when in D3hot (??) */ |
| 464 | #define PCI_PM_BPCC_ENABLE 0x80 /* Bus power/clock control enable (??) */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 465 | u8 data;}) pci_power_management_regs_t; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 466 | /* *INDENT-ON* */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 467 | |
| 468 | /* AGP registers */ |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 469 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 470 | typedef CLIB_PACKED (struct |
| 471 | { |
| 472 | pci_capability_regs_t header; u8 version; |
| 473 | u8 rest_of_capability_flags; u32 status; u32 command; |
| 474 | /* Command & status common bits. */ |
| 475 | #define PCI_AGP_RQ_MASK 0xff000000 /* Maximum number of requests - 1 */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 476 | #define PCI_AGP_SBA 0x0200 /* Sideband addressing supported */ |
| 477 | #define PCI_AGP_64BIT 0x0020 /* 64-bit addressing supported */ |
| 478 | #define PCI_AGP_ALLOW_TRANSACTIONS 0x0100 /* Allow processing of AGP transactions */ |
| 479 | #define PCI_AGP_FW 0x0010 /* FW transfers supported/forced */ |
| 480 | #define PCI_AGP_RATE4 0x0004 /* 4x transfer rate supported */ |
| 481 | #define PCI_AGP_RATE2 0x0002 /* 2x transfer rate supported */ |
| 482 | #define PCI_AGP_RATE1 0x0001 /* 1x transfer rate supported */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 483 | }) pci_agp_regs_t; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 484 | /* *INDENT-ON* */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 485 | |
| 486 | /* Vital Product Data */ |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 487 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 488 | typedef CLIB_PACKED (struct |
| 489 | { |
| 490 | pci_capability_regs_t header; u16 address; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 491 | #define PCI_VPD_ADDR_MASK 0x7fff /* Address mask */ |
| 492 | #define PCI_VPD_ADDR_F 0x8000 /* Write 0, 1 indicates completion */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 493 | u32 data;}) pci_vpd_regs_t; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 494 | /* *INDENT-ON* */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 495 | |
| 496 | /* Slot Identification */ |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 497 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 498 | typedef CLIB_PACKED (struct |
| 499 | { |
| 500 | pci_capability_regs_t header; u8 esr; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 501 | #define PCI_SID_ESR_NSLOTS 0x1f /* Number of expansion slots available */ |
| 502 | #define PCI_SID_ESR_FIC 0x20 /* First In Chassis Flag */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 503 | u8 chassis;}) pci_sid_regs_t; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 504 | /* *INDENT-ON* */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 505 | |
| 506 | /* Message Signalled Interrupts registers */ |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 507 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 508 | typedef CLIB_PACKED (struct |
| 509 | { |
| 510 | pci_capability_regs_t header; u16 flags; |
| 511 | #define PCI_MSI_FLAGS_ENABLE (1 << 0) /* MSI feature enabled */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 512 | #define PCI_MSI_FLAGS_GET_MAX_QUEUE_SIZE(x) ((x >> 1) & 0x7) |
| 513 | #define PCI_MSI_FLAGS_MAX_QUEUE_SIZE(x) (((x) & 0x7) << 1) |
| 514 | #define PCI_MSI_FLAGS_GET_QUEUE_SIZE(x) ((x >> 4) & 0x7) |
| 515 | #define PCI_MSI_FLAGS_QUEUE_SIZE(x) (((x) & 0x7) << 4) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 516 | #define PCI_MSI_FLAGS_64BIT (1 << 7) /* 64-bit addresses allowed */ |
| 517 | #define PCI_MSI_FLAGS_MASKBIT (1 << 8) /* 64-bit mask bits allowed */ |
| 518 | u32 address; u32 data; u32 mask_bits;}) pci_msi32_regs_t; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 519 | /* *INDENT-ON* */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 520 | |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 521 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 522 | typedef CLIB_PACKED (struct |
| 523 | { |
| 524 | pci_capability_regs_t header; u16 flags; |
| 525 | u32 address[2]; |
| 526 | u32 data; u32 mask_bits;}) pci_msi64_regs_t; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 527 | /* *INDENT-ON* */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 528 | |
| 529 | /* CompactPCI Hotswap Register */ |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 530 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 531 | typedef CLIB_PACKED (struct |
| 532 | { |
| 533 | pci_capability_regs_t header; u16 control_status; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 534 | #define PCI_CHSWP_DHA 0x01 /* Device Hiding Arm */ |
| 535 | #define PCI_CHSWP_EIM 0x02 /* ENUM# Signal Mask */ |
| 536 | #define PCI_CHSWP_PIE 0x04 /* Pending Insert or Extract */ |
| 537 | #define PCI_CHSWP_LOO 0x08 /* LED On / Off */ |
| 538 | #define PCI_CHSWP_PI 0x30 /* Programming Interface */ |
| 539 | #define PCI_CHSWP_EXT 0x40 /* ENUM# status - extraction */ |
| 540 | #define PCI_CHSWP_INS 0x80 /* ENUM# status - insertion */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 541 | }) pci_chswp_regs_t; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 542 | /* *INDENT-ON* */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 543 | |
| 544 | /* PCIX registers */ |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 545 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 546 | typedef CLIB_PACKED (struct |
| 547 | { |
| 548 | pci_capability_regs_t header; u16 command; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 549 | #define PCIX_CMD_DPERR_E 0x0001 /* Data Parity Error Recovery Enable */ |
| 550 | #define PCIX_CMD_ERO 0x0002 /* Enable Relaxed Ordering */ |
| 551 | #define PCIX_CMD_MAX_READ 0x000c /* Max Memory Read Byte Count */ |
| 552 | #define PCIX_CMD_MAX_SPLIT 0x0070 /* Max Outstanding Split Transactions */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 553 | #define PCIX_CMD_VERSION(x) (((x) >> 12) & 3) /* Version */ |
| 554 | u32 status; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 555 | #define PCIX_STATUS_DEVFN 0x000000ff /* A copy of devfn */ |
| 556 | #define PCIX_STATUS_BUS 0x0000ff00 /* A copy of bus nr */ |
| 557 | #define PCIX_STATUS_64BIT 0x00010000 /* 64-bit device */ |
| 558 | #define PCIX_STATUS_133MHZ 0x00020000 /* 133 MHz capable */ |
| 559 | #define PCIX_STATUS_SPL_DISC 0x00040000 /* Split Completion Discarded */ |
| 560 | #define PCIX_STATUS_UNX_SPL 0x00080000 /* Unexpected Split Completion */ |
| 561 | #define PCIX_STATUS_COMPLEX 0x00100000 /* Device Complexity */ |
| 562 | #define PCIX_STATUS_MAX_READ 0x00600000 /* Designed Max Memory Read Count */ |
| 563 | #define PCIX_STATUS_MAX_SPLIT 0x03800000 /* Designed Max Outstanding Split Transactions */ |
| 564 | #define PCIX_STATUS_MAX_CUM 0x1c000000 /* Designed Max Cumulative Read Size */ |
| 565 | #define PCIX_STATUS_SPL_ERR 0x20000000 /* Rcvd Split Completion Error Msg */ |
| 566 | #define PCIX_STATUS_266MHZ 0x40000000 /* 266 MHz capable */ |
| 567 | #define PCIX_STATUS_533MHZ 0x80000000 /* 533 MHz capable */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 568 | }) pcix_config_regs_t; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 569 | /* *INDENT-ON* */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 570 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 571 | static inline int |
| 572 | pcie_size_to_code (int bytes) |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 573 | { |
| 574 | ASSERT (is_pow2 (bytes)); |
| 575 | ASSERT (bytes <= 4096); |
| 576 | return min_log2 (bytes) - 7; |
| 577 | } |
| 578 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 579 | static inline int |
| 580 | pcie_code_to_size (int code) |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 581 | { |
| 582 | int size = 1 << (code + 7); |
| 583 | ASSERT (size <= 4096); |
| 584 | return size; |
| 585 | } |
| 586 | |
| 587 | /* PCI Express capability registers */ |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 588 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 589 | typedef CLIB_PACKED (struct |
| 590 | { |
| 591 | pci_capability_regs_t header; u16 pcie_capabilities; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 592 | #define PCIE_CAP_VERSION(x) (((x) >> 0) & 0xf) |
| 593 | #define PCIE_CAP_DEVICE_TYPE(x) (((x) >> 4) & 0xf) |
| 594 | #define PCIE_DEVICE_TYPE_ENDPOINT 0 |
| 595 | #define PCIE_DEVICE_TYPE_LEGACY_ENDPOINT 1 |
| 596 | #define PCIE_DEVICE_TYPE_ROOT_PORT 4 |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 597 | /* Upstream/downstream port of PCI Express switch. */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 598 | #define PCIE_DEVICE_TYPE_SWITCH_UPSTREAM 5 |
| 599 | #define PCIE_DEVICE_TYPE_SWITCH_DOWNSTREAM 6 |
| 600 | #define PCIE_DEVICE_TYPE_PCIE_TO_PCI_BRIDGE 7 |
| 601 | #define PCIE_DEVICE_TYPE_PCI_TO_PCIE_BRIDGE 8 |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 602 | /* Root complex integrated endpoint. */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 603 | #define PCIE_DEVICE_TYPE_ROOT_COMPLEX_ENDPOINT 9 |
| 604 | #define PCIE_DEVICE_TYPE_ROOT_COMPLEX_EVENT_COLLECTOR 10 |
| 605 | #define PCIE_CAP_SLOW_IMPLEMENTED (1 << 8) |
| 606 | #define PCIE_CAP_MSI_IRQ(x) (((x) >> 9) & 0x1f) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 607 | u32 dev_capabilities; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 608 | #define PCIE_DEVCAP_MAX_PAYLOAD(x) (128 << (((x) >> 0) & 0x7)) |
| 609 | #define PCIE_DEVCAP_PHANTOM_BITS(x) (((x) >> 3) & 0x3) |
| 610 | #define PCIE_DEVCAP_EXTENTED_TAG (1 << 5) |
| 611 | #define PCIE_DEVCAP_L0S 0x1c0 /* L0s Acceptable Latency */ |
| 612 | #define PCIE_DEVCAP_L1 0xe00 /* L1 Acceptable Latency */ |
| 613 | #define PCIE_DEVCAP_ATN_BUT 0x1000 /* Attention Button Present */ |
| 614 | #define PCIE_DEVCAP_ATN_IND 0x2000 /* Attention Indicator Present */ |
| 615 | #define PCIE_DEVCAP_PWR_IND 0x4000 /* Power Indicator Present */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 616 | #define PCIE_DEVCAP_PWR_VAL 0x3fc0000 /* Slot Power Limit Value */ |
| 617 | #define PCIE_DEVCAP_PWR_SCL 0xc000000 /* Slot Power Limit Scale */ |
| 618 | u16 dev_control; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 619 | #define PCIE_CTRL_CERE 0x0001 /* Correctable Error Reporting En. */ |
| 620 | #define PCIE_CTRL_NFERE 0x0002 /* Non-Fatal Error Reporting Enable */ |
| 621 | #define PCIE_CTRL_FERE 0x0004 /* Fatal Error Reporting Enable */ |
| 622 | #define PCIE_CTRL_URRE 0x0008 /* Unsupported Request Reporting En. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 623 | #define PCIE_CTRL_RELAX_EN 0x0010 /* Enable relaxed ordering */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 624 | #define PCIE_CTRL_MAX_PAYLOAD(n) (((n) & 7) << 5) |
| 625 | #define PCIE_CTRL_EXT_TAG 0x0100 /* Extended Tag Field Enable */ |
| 626 | #define PCIE_CTRL_PHANTOM 0x0200 /* Phantom Functions Enable */ |
| 627 | #define PCIE_CTRL_AUX_PME 0x0400 /* Auxiliary Power PM Enable */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 628 | #define PCIE_CTRL_NOSNOOP_EN 0x0800 /* Enable No Snoop */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 629 | #define PCIE_CTRL_MAX_READ_REQUEST(n) (((n) & 7) << 12) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 630 | u16 dev_status; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 631 | #define PCIE_DEVSTA_AUXPD 0x10 /* AUX Power Detected */ |
| 632 | #define PCIE_DEVSTA_TRPND 0x20 /* Transactions Pending */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 633 | u32 link_capabilities; u16 link_control; u16 link_status; |
| 634 | u32 slot_capabilities; |
| 635 | u16 slot_control; u16 slot_status; u16 root_control; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 636 | #define PCIE_RTCTL_SECEE 0x01 /* System Error on Correctable Error */ |
| 637 | #define PCIE_RTCTL_SENFEE 0x02 /* System Error on Non-Fatal Error */ |
| 638 | #define PCIE_RTCTL_SEFEE 0x04 /* System Error on Fatal Error */ |
| 639 | #define PCIE_RTCTL_PMEIE 0x08 /* PME Interrupt Enable */ |
| 640 | #define PCIE_RTCTL_CRSSVE 0x10 /* CRS Software Visibility Enable */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 641 | u16 root_capabilities; |
| 642 | u32 root_status; |
| 643 | u32 dev_capabilities2; |
| 644 | u16 dev_control2; |
| 645 | u16 dev_status2; |
| 646 | u32 link_capabilities2; |
| 647 | u16 link_control2; |
| 648 | u16 link_status2; |
| 649 | u32 slot_capabilities2; u16 slot_control2; |
| 650 | u16 slot_status2;}) pcie_config_regs_t; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 651 | /* *INDENT-ON* */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 652 | |
| 653 | /* PCI express extended capabilities. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 654 | typedef enum pcie_capability_type |
| 655 | { |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 656 | PCIE_CAP_ADVANCED_ERROR = 1, |
| 657 | PCIE_CAP_VC = 2, |
| 658 | PCIE_CAP_DSN = 3, |
| 659 | PCIE_CAP_PWR = 4, |
| 660 | } pcie_capability_type_t; |
| 661 | |
| 662 | /* Common header for capabilities. */ |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 663 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 664 | typedef CLIB_PACKED (struct |
| 665 | { |
| 666 | enum pcie_capability_type type:16; u16 version: 4; u16 next_capability:12;}) |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 667 | /* *INDENT-ON* */ |
| 668 | pcie_capability_regs_t; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 669 | |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 670 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 671 | typedef CLIB_PACKED (struct |
| 672 | { |
| 673 | pcie_capability_regs_t header; u32 uncorrectable_status; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 674 | #define PCIE_ERROR_UNC_LINK_TRAINING (1 << 0) |
| 675 | #define PCIE_ERROR_UNC_DATA_LINK_PROTOCOL (1 << 4) |
| 676 | #define PCIE_ERROR_UNC_SURPRISE_DOWN (1 << 5) |
| 677 | #define PCIE_ERROR_UNC_POISONED_TLP (1 << 12) |
| 678 | #define PCIE_ERROR_UNC_FLOW_CONTROL (1 << 13) |
| 679 | #define PCIE_ERROR_UNC_COMPLETION_TIMEOUT (1 << 14) |
| 680 | #define PCIE_ERROR_UNC_COMPLETER_ABORT (1 << 15) |
| 681 | #define PCIE_ERROR_UNC_UNEXPECTED_COMPLETION (1 << 16) |
| 682 | #define PCIE_ERROR_UNC_RX_OVERFLOW (1 << 17) |
| 683 | #define PCIE_ERROR_UNC_MALFORMED_TLP (1 << 18) |
| 684 | #define PCIE_ERROR_UNC_CRC_ERROR (1 << 19) |
| 685 | #define PCIE_ERROR_UNC_UNSUPPORTED_REQUEST (1 << 20) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 686 | u32 uncorrectable_mask; |
| 687 | u32 uncorrectable_severity; u32 correctable_status; |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 688 | #define PCIE_ERROR_COR_RX_ERROR (1 << 0) |
| 689 | #define PCIE_ERROR_COR_BAD_TLP (1 << 6) |
| 690 | #define PCIE_ERROR_COR_BAD_DLLP (1 << 7) |
| 691 | #define PCIE_ERROR_COR_REPLAY_ROLLOVER (1 << 8) |
| 692 | #define PCIE_ERROR_COR_REPLAY_TIMER (1 << 12) |
| 693 | #define PCIE_ERROR_COR_ADVISORY (1 << 13) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 694 | u32 correctable_mask; |
| 695 | u32 control; |
| 696 | u32 log[4]; |
| 697 | u32 root_command; |
| 698 | u32 root_status; u16 correctable_error_source; |
| 699 | u16 error_source;}) pcie_advanced_error_regs_t; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 700 | /* *INDENT-ON* */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 701 | |
| 702 | /* Virtual Channel */ |
| 703 | #define PCI_VC_PORT_REG1 4 |
| 704 | #define PCI_VC_PORT_REG2 8 |
| 705 | #define PCI_VC_PORT_CTRL 12 |
| 706 | #define PCI_VC_PORT_STATUS 14 |
| 707 | #define PCI_VC_RES_CAP 16 |
| 708 | #define PCI_VC_RES_CTRL 20 |
| 709 | #define PCI_VC_RES_STATUS 26 |
| 710 | |
| 711 | /* Power Budgeting */ |
| 712 | #define PCI_PWR_DSR 4 /* Data Select Register */ |
| 713 | #define PCI_PWR_DATA 8 /* Data Register */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 714 | #define PCI_PWR_DATA_BASE(x) ((x) & 0xff) /* Base Power */ |
| 715 | #define PCI_PWR_DATA_SCALE(x) (((x) >> 8) & 3) /* Data Scale */ |
| 716 | #define PCI_PWR_DATA_PM_SUB(x) (((x) >> 10) & 7) /* PM Sub State */ |
| 717 | #define PCI_PWR_DATA_PM_STATE(x) (((x) >> 13) & 3) /* PM State */ |
| 718 | #define PCI_PWR_DATA_TYPE(x) (((x) >> 15) & 7) /* Type */ |
| 719 | #define PCI_PWR_DATA_RAIL(x) (((x) >> 18) & 7) /* Power Rail */ |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 720 | #define PCI_PWR_CAP 12 /* Capability */ |
| 721 | #define PCI_PWR_CAP_BUDGET(x) ((x) & 1) /* Included in system budget */ |
| 722 | |
| 723 | #endif /* included_vlib_pci_config_h */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 724 | |
| 725 | /* |
| 726 | * fd.io coding-style-patch-verification: ON |
| 727 | * |
| 728 | * Local Variables: |
| 729 | * eval: (c-set-style "gnu") |
| 730 | * End: |
| 731 | */ |