40 #ifndef included_vlib_pci_config_h 41 #define included_vlib_pci_config_h 159 {
return c &~ 0xff; }
170 #define PCI_COMMAND_IO (1 << 0) 171 #define PCI_COMMAND_MEMORY (1 << 1) 172 #define PCI_COMMAND_BUS_MASTER (1 << 2) 173 #define PCI_COMMAND_SPECIAL (1 << 3) 174 #define PCI_COMMAND_WRITE_INVALIDATE (1 << 4) 175 #define PCI_COMMAND_VGA_PALETTE_SNOOP (1 << 5) 176 #define PCI_COMMAND_PARITY (1 << 6) 177 #define PCI_COMMAND_WAIT (1 << 7) 178 #define PCI_COMMAND_SERR (1 << 8) 179 #define PCI_COMMAND_BACK_TO_BACK_WRITE (1 << 9) 180 #define PCI_COMMAND_INTX_DISABLE (1 << 10) 183 #define PCI_STATUS_INTX_PENDING (1 << 3) 184 #define PCI_STATUS_CAPABILITY_LIST (1 << 4) 185 #define PCI_STATUS_66MHZ (1 << 5) 186 #define PCI_STATUS_UDF (1 << 6) 187 #define PCI_STATUS_BACK_TO_BACK_WRITE (1 << 7) 188 #define PCI_STATUS_PARITY_ERROR (1 << 8) 189 #define PCI_STATUS_DEVSEL_GET(x) ((x >> 9) & 3) 190 #define PCI_STATUS_DEVSEL_FAST (0 << 9) 191 #define PCI_STATUS_DEVSEL_MEDIUM (1 << 9) 192 #define PCI_STATUS_DEVSEL_SLOW (2 << 9) 193 #define PCI_STATUS_SIG_TARGET_ABORT (1 << 11) 194 #define PCI_STATUS_REC_TARGET_ABORT (1 << 12) 195 #define PCI_STATUS_REC_MASTER_ABORT (1 << 13) 196 #define PCI_STATUS_SIG_SYSTEM_ERROR (1 << 14) 197 #define PCI_STATUS_DETECTED_PARITY_ERROR (1 << 15) 208 #define PCI_HEADER_TYPE_NORMAL 0 209 #define PCI_HEADER_TYPE_BRIDGE 1 210 #define PCI_HEADER_TYPE_CARDBUS 2 213 #define PCI_BIST_CODE_MASK 0x0f 214 #define PCI_BIST_START 0x40 215 #define PCI_BIST_CAPABLE 0x80 224 #define _(f,t) r->f = clib_byte_swap_##t (r->f) 229 _ (device_class,
u16);
251 #define PCI_ROM_ADDRESS 0x30 252 #define PCI_ROM_ADDRESS_ENABLE 0x01 253 #define PCI_ROM_ADDRESS_MASK (~0x7ffUL) 263 u8 capability_data[0];
273 #define _(f,t) r->f = clib_byte_swap_##t (r->f) 275 _ (base_address[i],
u32);
276 _ (cardbus_cis,
u16);
277 _ (subsystem_vendor_id,
u16);
278 _ (subsystem_id,
u16);
279 _ (rom_address,
u32);
306 #define PCI_MEMORY_RANGE_TYPE_MASK 0x0fUL 307 #define PCI_MEMORY_RANGE_MASK (~0x0fUL) 310 #define PCI_PREF_RANGE_TYPE_MASK 0x0fUL 311 #define PCI_PREF_RANGE_TYPE_32 0x00 312 #define PCI_PREF_RANGE_TYPE_64 0x01 313 #define PCI_PREF_RANGE_MASK (~0x0fUL) 328 #define PCI_BRIDGE_CTL_PARITY 0x01 329 #define PCI_BRIDGE_CTL_SERR 0x02 330 #define PCI_BRIDGE_CTL_NO_ISA 0x04 331 #define PCI_BRIDGE_CTL_VGA 0x08 332 #define PCI_BRIDGE_CTL_MASTER_ABORT 0x20 333 #define PCI_BRIDGE_CTL_BUS_RESET 0x40 334 #define PCI_BRIDGE_CTL_FAST_BACK 0x80 336 u8 capability_data[0];
346 #define _(f,t) r->f = clib_byte_swap_##t (r->f) 348 _ (base_address[i],
u32);
349 _ (secondary_status,
u16);
350 _ (memory_base,
u16);
351 _ (memory_limit,
u16);
352 _ (prefetchable_memory_base,
u16);
353 _ (prefetchable_memory_limit,
u16);
354 _ (prefetchable_memory_base_upper_32bits,
u32);
355 _ (prefetchable_memory_limit_upper_32bits,
u32);
356 _ (io_base_upper_16bits,
u16);
357 _ (io_limit_upper_16bits,
u16);
358 _ (rom_address,
u32);
359 _ (bridge_control,
u16);
404 }) pci_capability_regs_t;
409 pci_capability_regs_t * c;
417 while (ttl-- && next_offset >= 0x40)
419 c = (
void *) t + (next_offset &~ 3);
420 if ((
u8) c->type == 0xff)
422 if (c->type == cap_type)
424 next_offset = c->next_offset;
431 pci_capability_regs_t header;
434 #define PCI_PM_CAP_VER_MASK 0x0007 435 #define PCI_PM_CAP_PME_CLOCK 0x0008 436 #define PCI_PM_CAP_RESERVED 0x0010 437 #define PCI_PM_CAP_DSI 0x0020 438 #define PCI_PM_CAP_AUX_POWER 0x01C0 439 #define PCI_PM_CAP_D1 0x0200 440 #define PCI_PM_CAP_D2 0x0400 441 #define PCI_PM_CAP_PME 0x0800 442 #define PCI_PM_CAP_PME_MASK 0xF800 443 #define PCI_PM_CAP_PME_D0 0x0800 444 #define PCI_PM_CAP_PME_D1 0x1000 445 #define PCI_PM_CAP_PME_D2 0x2000 446 #define PCI_PM_CAP_PME_D3 0x4000 447 #define PCI_PM_CAP_PME_D3cold 0x8000 450 #define PCI_PM_CTRL_STATE_MASK 0x0003 451 #define PCI_PM_CTRL_PME_ENABLE 0x0100 452 #define PCI_PM_CTRL_DATA_SEL_MASK 0x1e00 453 #define PCI_PM_CTRL_DATA_SCALE_MASK 0x6000 454 #define PCI_PM_CTRL_PME_STATUS 0x8000 457 #define PCI_PM_PPB_B2_B3 0x40 458 #define PCI_PM_BPCC_ENABLE 0x80 461 }) pci_power_management_regs_t;
465 pci_capability_regs_t header;
467 u8 rest_of_capability_flags;
472 #define PCI_AGP_RQ_MASK 0xff000000 473 #define PCI_AGP_SBA 0x0200 474 #define PCI_AGP_64BIT 0x0020 475 #define PCI_AGP_ALLOW_TRANSACTIONS 0x0100 476 #define PCI_AGP_FW 0x0010 477 #define PCI_AGP_RATE4 0x0004 478 #define PCI_AGP_RATE2 0x0002 479 #define PCI_AGP_RATE1 0x0001 484 pci_capability_regs_t header;
486 #define PCI_VPD_ADDR_MASK 0x7fff 487 #define PCI_VPD_ADDR_F 0x8000 494 pci_capability_regs_t header;
496 #define PCI_SID_ESR_NSLOTS 0x1f 497 #define PCI_SID_ESR_FIC 0x20 503 pci_capability_regs_t header;
506 #define PCI_MSI_FLAGS_ENABLE (1 << 0) 507 #define PCI_MSI_FLAGS_GET_MAX_QUEUE_SIZE(x) ((x >> 1) & 0x7) 508 #define PCI_MSI_FLAGS_MAX_QUEUE_SIZE(x) (((x) & 0x7) << 1) 509 #define PCI_MSI_FLAGS_GET_QUEUE_SIZE(x) ((x >> 4) & 0x7) 510 #define PCI_MSI_FLAGS_QUEUE_SIZE(x) (((x) & 0x7) << 4) 511 #define PCI_MSI_FLAGS_64BIT (1 << 7) 512 #define PCI_MSI_FLAGS_MASKBIT (1 << 8) 520 pci_capability_regs_t header;
529 pci_capability_regs_t header;
532 #define PCI_CHSWP_DHA 0x01 533 #define PCI_CHSWP_EIM 0x02 534 #define PCI_CHSWP_PIE 0x04 535 #define PCI_CHSWP_LOO 0x08 536 #define PCI_CHSWP_PI 0x30 537 #define PCI_CHSWP_EXT 0x40 538 #define PCI_CHSWP_INS 0x80 543 pci_capability_regs_t header;
546 #define PCIX_CMD_DPERR_E 0x0001 547 #define PCIX_CMD_ERO 0x0002 548 #define PCIX_CMD_MAX_READ 0x000c 549 #define PCIX_CMD_MAX_SPLIT 0x0070 550 #define PCIX_CMD_VERSION(x) (((x) >> 12) & 3) 553 #define PCIX_STATUS_DEVFN 0x000000ff 554 #define PCIX_STATUS_BUS 0x0000ff00 555 #define PCIX_STATUS_64BIT 0x00010000 556 #define PCIX_STATUS_133MHZ 0x00020000 557 #define PCIX_STATUS_SPL_DISC 0x00040000 558 #define PCIX_STATUS_UNX_SPL 0x00080000 559 #define PCIX_STATUS_COMPLEX 0x00100000 560 #define PCIX_STATUS_MAX_READ 0x00600000 561 #define PCIX_STATUS_MAX_SPLIT 0x03800000 562 #define PCIX_STATUS_MAX_CUM 0x1c000000 563 #define PCIX_STATUS_SPL_ERR 0x20000000 564 #define PCIX_STATUS_266MHZ 0x40000000 565 #define PCIX_STATUS_533MHZ 0x80000000 566 }) pcix_config_regs_t;
577 int size = 1 << (code + 7);
584 pci_capability_regs_t header;
586 u16 pcie_capabilities;
587 #define PCIE_CAP_VERSION(x) (((x) >> 0) & 0xf) 588 #define PCIE_CAP_DEVICE_TYPE(x) (((x) >> 4) & 0xf) 589 #define PCIE_DEVICE_TYPE_ENDPOINT 0 590 #define PCIE_DEVICE_TYPE_LEGACY_ENDPOINT 1 591 #define PCIE_DEVICE_TYPE_ROOT_PORT 4 593 #define PCIE_DEVICE_TYPE_SWITCH_UPSTREAM 5 594 #define PCIE_DEVICE_TYPE_SWITCH_DOWNSTREAM 6 595 #define PCIE_DEVICE_TYPE_PCIE_TO_PCI_BRIDGE 7 596 #define PCIE_DEVICE_TYPE_PCI_TO_PCIE_BRIDGE 8 598 #define PCIE_DEVICE_TYPE_ROOT_COMPLEX_ENDPOINT 9 599 #define PCIE_DEVICE_TYPE_ROOT_COMPLEX_EVENT_COLLECTOR 10 600 #define PCIE_CAP_SLOW_IMPLEMENTED (1 << 8) 601 #define PCIE_CAP_MSI_IRQ(x) (((x) >> 9) & 0x1f) 603 u32 dev_capabilities;
604 #define PCIE_DEVCAP_MAX_PAYLOAD(x) (128 << (((x) >> 0) & 0x7)) 605 #define PCIE_DEVCAP_PHANTOM_BITS(x) (((x) >> 3) & 0x3) 606 #define PCIE_DEVCAP_EXTENTED_TAG (1 << 5) 607 #define PCIE_DEVCAP_L0S 0x1c0 608 #define PCIE_DEVCAP_L1 0xe00 609 #define PCIE_DEVCAP_ATN_BUT 0x1000 610 #define PCIE_DEVCAP_ATN_IND 0x2000 611 #define PCIE_DEVCAP_PWR_IND 0x4000 612 #define PCIE_DEVCAP_PWR_VAL 0x3fc0000 613 #define PCIE_DEVCAP_PWR_SCL 0xc000000 616 #define PCIE_CTRL_CERE 0x0001 617 #define PCIE_CTRL_NFERE 0x0002 618 #define PCIE_CTRL_FERE 0x0004 619 #define PCIE_CTRL_URRE 0x0008 620 #define PCIE_CTRL_RELAX_EN 0x0010 621 #define PCIE_CTRL_MAX_PAYLOAD(n) (((n) & 7) << 5) 622 #define PCIE_CTRL_EXT_TAG 0x0100 623 #define PCIE_CTRL_PHANTOM 0x0200 624 #define PCIE_CTRL_AUX_PME 0x0400 625 #define PCIE_CTRL_NOSNOOP_EN 0x0800 626 #define PCIE_CTRL_MAX_READ_REQUEST(n) (((n) & 7) << 12) 629 #define PCIE_DEVSTA_AUXPD 0x10 630 #define PCIE_DEVSTA_TRPND 0x20 632 u32 link_capabilities;
636 u32 slot_capabilities;
641 #define PCIE_RTCTL_SECEE 0x01 642 #define PCIE_RTCTL_SENFEE 0x02 643 #define PCIE_RTCTL_SEFEE 0x04 644 #define PCIE_RTCTL_PMEIE 0x08 645 #define PCIE_RTCTL_CRSSVE 0x10 647 u16 root_capabilities;
649 }) pcie_config_regs_t;
665 u16 next_capability : 12;
666 }) pcie_capability_regs_t;
669 pcie_capability_regs_t header;
671 u32 uncorrectable_status;
672 #define PCIE_ERROR_UNC_LINK_TRAINING (1 << 0) 673 #define PCIE_ERROR_UNC_DATA_LINK_PROTOCOL (1 << 4) 674 #define PCIE_ERROR_UNC_SURPRISE_DOWN (1 << 5) 675 #define PCIE_ERROR_UNC_POISONED_TLP (1 << 12) 676 #define PCIE_ERROR_UNC_FLOW_CONTROL (1 << 13) 677 #define PCIE_ERROR_UNC_COMPLETION_TIMEOUT (1 << 14) 678 #define PCIE_ERROR_UNC_COMPLETER_ABORT (1 << 15) 679 #define PCIE_ERROR_UNC_UNEXPECTED_COMPLETION (1 << 16) 680 #define PCIE_ERROR_UNC_RX_OVERFLOW (1 << 17) 681 #define PCIE_ERROR_UNC_MALFORMED_TLP (1 << 18) 682 #define PCIE_ERROR_UNC_CRC_ERROR (1 << 19) 683 #define PCIE_ERROR_UNC_UNSUPPORTED_REQUEST (1 << 20) 684 u32 uncorrectable_mask;
685 u32 uncorrectable_severity;
687 u32 correctable_status;
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) 695 u32 correctable_mask;
702 u16 correctable_error_source;
704 }) pcie_advanced_error_regs_t;
707 #define PCI_VC_PORT_REG1 4 708 #define PCI_VC_PORT_REG2 8 709 #define PCI_VC_PORT_CTRL 12 710 #define PCI_VC_PORT_STATUS 14 711 #define PCI_VC_RES_CAP 16 712 #define PCI_VC_RES_CTRL 20 713 #define PCI_VC_RES_STATUS 26 716 #define PCI_PWR_DSR 4 717 #define PCI_PWR_DATA 8 718 #define PCI_PWR_DATA_BASE(x) ((x) & 0xff) 719 #define PCI_PWR_DATA_SCALE(x) (((x) >> 8) & 3) 720 #define PCI_PWR_DATA_PM_SUB(x) (((x) >> 10) & 7) 721 #define PCI_PWR_DATA_PM_STATE(x) (((x) >> 13) & 3) 722 #define PCI_PWR_DATA_TYPE(x) (((x) >> 15) & 7) 723 #define PCI_PWR_DATA_RAIL(x) (((x) >> 18) & 7) 724 #define PCI_PWR_CAP 12 725 #define PCI_PWR_CAP_BUDGET(x) ((x) & 1) static pci_device_class_t pci_device_class_base(pci_device_class_t c)
pci_config_header_t header
sll srl srl sll sra u16x4 i
u8 capability_list_offset
bad routing header type(not 4)") sr_error (NO_MORE_SEGMENTS
enum pcie_capability_type pcie_capability_type_t
enum pci_capability_type pci_capability_type_t
u16 prefetchable_memory_limit
u16 io_limit_upper_16bits
#define CLIB_PAD_FROM_TO(from, to)
u8 first_capability_offset
static int pcie_size_to_code(int bytes)
always_inline void pci_config_type1_little_to_host(pci_config_type1_regs_t *r)
u8 secondary_bus_latency_timer
always_inline void pci_config_header_little_to_host(pci_config_header_t *r)
always_inline void * pci_config_find_capability(pci_config_type0_regs_t *t, int cap_type)
#define PCI_STATUS_CAPABILITY_LIST
always_inline uword is_pow2(uword x)
typedef CLIB_PACKED(struct{enum pci_capability_type type:8;u8 next_offset;}) pci_capability_regs_t
#define CLIB_ARCH_IS_BIG_ENDIAN
u32 prefetchable_memory_limit_upper_32bits
static int pcie_code_to_size(int code)
always_inline uword min_log2(uword x)
always_inline void pci_config_type0_little_to_host(pci_config_type0_regs_t *r)
u32 prefetchable_memory_base_upper_32bits
pci_config_header_t header