1*199767f8SToomas Soome /*- 2*199767f8SToomas Soome * Copyright (c) 1997, Stefan Esser <se@freebsd.org> 3*199767f8SToomas Soome * All rights reserved. 4*199767f8SToomas Soome * 5*199767f8SToomas Soome * Redistribution and use in source and binary forms, with or without 6*199767f8SToomas Soome * modification, are permitted provided that the following conditions 7*199767f8SToomas Soome * are met: 8*199767f8SToomas Soome * 1. Redistributions of source code must retain the above copyright 9*199767f8SToomas Soome * notice unmodified, this list of conditions, and the following 10*199767f8SToomas Soome * disclaimer. 11*199767f8SToomas Soome * 2. Redistributions in binary form must reproduce the above copyright 12*199767f8SToomas Soome * notice, this list of conditions and the following disclaimer in the 13*199767f8SToomas Soome * documentation and/or other materials provided with the distribution. 14*199767f8SToomas Soome * 15*199767f8SToomas Soome * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16*199767f8SToomas Soome * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17*199767f8SToomas Soome * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18*199767f8SToomas Soome * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19*199767f8SToomas Soome * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20*199767f8SToomas Soome * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21*199767f8SToomas Soome * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22*199767f8SToomas Soome * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23*199767f8SToomas Soome * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24*199767f8SToomas Soome * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25*199767f8SToomas Soome * 26*199767f8SToomas Soome * $FreeBSD$ 27*199767f8SToomas Soome * 28*199767f8SToomas Soome */ 29*199767f8SToomas Soome 30*199767f8SToomas Soome /* 31*199767f8SToomas Soome * PCIM_xxx: mask to locate subfield in register 32*199767f8SToomas Soome * PCIR_xxx: config register offset 33*199767f8SToomas Soome * PCIC_xxx: device class 34*199767f8SToomas Soome * PCIS_xxx: device subclass 35*199767f8SToomas Soome * PCIP_xxx: device programming interface 36*199767f8SToomas Soome * PCIV_xxx: PCI vendor ID (only required to fixup ancient devices) 37*199767f8SToomas Soome * PCID_xxx: device ID 38*199767f8SToomas Soome * PCIY_xxx: capability identification number 39*199767f8SToomas Soome * PCIZ_xxx: extended capability identification number 40*199767f8SToomas Soome */ 41*199767f8SToomas Soome 42*199767f8SToomas Soome /* some PCI bus constants */ 43*199767f8SToomas Soome #define PCI_DOMAINMAX 65535 /* highest supported domain number */ 44*199767f8SToomas Soome #define PCI_BUSMAX 255 /* highest supported bus number */ 45*199767f8SToomas Soome #define PCI_SLOTMAX 31 /* highest supported slot number */ 46*199767f8SToomas Soome #define PCI_FUNCMAX 7 /* highest supported function number */ 47*199767f8SToomas Soome #define PCI_REGMAX 255 /* highest supported config register addr. */ 48*199767f8SToomas Soome #define PCIE_REGMAX 4095 /* highest supported config register addr. */ 49*199767f8SToomas Soome #define PCI_MAXHDRTYPE 2 50*199767f8SToomas Soome 51*199767f8SToomas Soome #define PCIE_ARI_SLOTMAX 0 52*199767f8SToomas Soome #define PCIE_ARI_FUNCMAX 255 53*199767f8SToomas Soome 54*199767f8SToomas Soome #define PCI_RID_DOMAIN_SHIFT 16 55*199767f8SToomas Soome #define PCI_RID_BUS_SHIFT 8 56*199767f8SToomas Soome #define PCI_RID_SLOT_SHIFT 3 57*199767f8SToomas Soome #define PCI_RID_FUNC_SHIFT 0 58*199767f8SToomas Soome 59*199767f8SToomas Soome #define PCI_RID(bus, slot, func) \ 60*199767f8SToomas Soome ((((bus) & PCI_BUSMAX) << PCI_RID_BUS_SHIFT) | \ 61*199767f8SToomas Soome (((slot) & PCI_SLOTMAX) << PCI_RID_SLOT_SHIFT) | \ 62*199767f8SToomas Soome (((func) & PCI_FUNCMAX) << PCI_RID_FUNC_SHIFT)) 63*199767f8SToomas Soome 64*199767f8SToomas Soome #define PCI_ARI_RID(bus, func) \ 65*199767f8SToomas Soome ((((bus) & PCI_BUSMAX) << PCI_RID_BUS_SHIFT) | \ 66*199767f8SToomas Soome (((func) & PCIE_ARI_FUNCMAX) << PCI_RID_FUNC_SHIFT)) 67*199767f8SToomas Soome 68*199767f8SToomas Soome #define PCI_RID2BUS(rid) (((rid) >> PCI_RID_BUS_SHIFT) & PCI_BUSMAX) 69*199767f8SToomas Soome #define PCI_RID2SLOT(rid) (((rid) >> PCI_RID_SLOT_SHIFT) & PCI_SLOTMAX) 70*199767f8SToomas Soome #define PCI_RID2FUNC(rid) (((rid) >> PCI_RID_FUNC_SHIFT) & PCI_FUNCMAX) 71*199767f8SToomas Soome 72*199767f8SToomas Soome #define PCIE_ARI_RID2SLOT(rid) (0) 73*199767f8SToomas Soome #define PCIE_ARI_RID2FUNC(rid) \ 74*199767f8SToomas Soome (((rid) >> PCI_RID_FUNC_SHIFT) & PCIE_ARI_FUNCMAX) 75*199767f8SToomas Soome 76*199767f8SToomas Soome #define PCIE_ARI_SLOT(func) (((func) >> PCI_RID_SLOT_SHIFT) & PCI_SLOTMAX) 77*199767f8SToomas Soome #define PCIE_ARI_FUNC(func) (((func) >> PCI_RID_FUNC_SHIFT) & PCI_FUNCMAX) 78*199767f8SToomas Soome 79*199767f8SToomas Soome /* PCI config header registers for all devices */ 80*199767f8SToomas Soome 81*199767f8SToomas Soome #define PCIR_DEVVENDOR 0x00 82*199767f8SToomas Soome #define PCIR_VENDOR 0x00 83*199767f8SToomas Soome #define PCIR_DEVICE 0x02 84*199767f8SToomas Soome #define PCIR_COMMAND 0x04 85*199767f8SToomas Soome #define PCIM_CMD_PORTEN 0x0001 86*199767f8SToomas Soome #define PCIM_CMD_MEMEN 0x0002 87*199767f8SToomas Soome #define PCIM_CMD_BUSMASTEREN 0x0004 88*199767f8SToomas Soome #define PCIM_CMD_SPECIALEN 0x0008 89*199767f8SToomas Soome #define PCIM_CMD_MWRICEN 0x0010 90*199767f8SToomas Soome #define PCIM_CMD_PERRESPEN 0x0040 91*199767f8SToomas Soome #define PCIM_CMD_SERRESPEN 0x0100 92*199767f8SToomas Soome #define PCIM_CMD_BACKTOBACK 0x0200 93*199767f8SToomas Soome #define PCIM_CMD_INTxDIS 0x0400 94*199767f8SToomas Soome #define PCIR_STATUS 0x06 95*199767f8SToomas Soome #define PCIM_STATUS_INTxSTATE 0x0008 96*199767f8SToomas Soome #define PCIM_STATUS_CAPPRESENT 0x0010 97*199767f8SToomas Soome #define PCIM_STATUS_66CAPABLE 0x0020 98*199767f8SToomas Soome #define PCIM_STATUS_BACKTOBACK 0x0080 99*199767f8SToomas Soome #define PCIM_STATUS_MDPERR 0x0100 100*199767f8SToomas Soome #define PCIM_STATUS_SEL_FAST 0x0000 101*199767f8SToomas Soome #define PCIM_STATUS_SEL_MEDIMUM 0x0200 102*199767f8SToomas Soome #define PCIM_STATUS_SEL_SLOW 0x0400 103*199767f8SToomas Soome #define PCIM_STATUS_SEL_MASK 0x0600 104*199767f8SToomas Soome #define PCIM_STATUS_STABORT 0x0800 105*199767f8SToomas Soome #define PCIM_STATUS_RTABORT 0x1000 106*199767f8SToomas Soome #define PCIM_STATUS_RMABORT 0x2000 107*199767f8SToomas Soome #define PCIM_STATUS_SERR 0x4000 108*199767f8SToomas Soome #define PCIM_STATUS_PERR 0x8000 109*199767f8SToomas Soome #define PCIR_REVID 0x08 110*199767f8SToomas Soome #define PCIR_PROGIF 0x09 111*199767f8SToomas Soome #define PCIR_SUBCLASS 0x0a 112*199767f8SToomas Soome #define PCIR_CLASS 0x0b 113*199767f8SToomas Soome #define PCIR_CACHELNSZ 0x0c 114*199767f8SToomas Soome #define PCIR_LATTIMER 0x0d 115*199767f8SToomas Soome #define PCIR_HDRTYPE 0x0e 116*199767f8SToomas Soome #define PCIM_HDRTYPE 0x7f 117*199767f8SToomas Soome #define PCIM_HDRTYPE_NORMAL 0x00 118*199767f8SToomas Soome #define PCIM_HDRTYPE_BRIDGE 0x01 119*199767f8SToomas Soome #define PCIM_HDRTYPE_CARDBUS 0x02 120*199767f8SToomas Soome #define PCIM_MFDEV 0x80 121*199767f8SToomas Soome #define PCIR_BIST 0x0f 122*199767f8SToomas Soome 123*199767f8SToomas Soome /* Capability Register Offsets */ 124*199767f8SToomas Soome 125*199767f8SToomas Soome #define PCICAP_ID 0x0 126*199767f8SToomas Soome #define PCICAP_NEXTPTR 0x1 127*199767f8SToomas Soome 128*199767f8SToomas Soome /* Capability Identification Numbers */ 129*199767f8SToomas Soome 130*199767f8SToomas Soome #define PCIY_PMG 0x01 /* PCI Power Management */ 131*199767f8SToomas Soome #define PCIY_AGP 0x02 /* AGP */ 132*199767f8SToomas Soome #define PCIY_VPD 0x03 /* Vital Product Data */ 133*199767f8SToomas Soome #define PCIY_SLOTID 0x04 /* Slot Identification */ 134*199767f8SToomas Soome #define PCIY_MSI 0x05 /* Message Signaled Interrupts */ 135*199767f8SToomas Soome #define PCIY_CHSWP 0x06 /* CompactPCI Hot Swap */ 136*199767f8SToomas Soome #define PCIY_PCIX 0x07 /* PCI-X */ 137*199767f8SToomas Soome #define PCIY_HT 0x08 /* HyperTransport */ 138*199767f8SToomas Soome #define PCIY_VENDOR 0x09 /* Vendor Unique */ 139*199767f8SToomas Soome #define PCIY_DEBUG 0x0a /* Debug port */ 140*199767f8SToomas Soome #define PCIY_CRES 0x0b /* CompactPCI central resource control */ 141*199767f8SToomas Soome #define PCIY_HOTPLUG 0x0c /* PCI Hot-Plug */ 142*199767f8SToomas Soome #define PCIY_SUBVENDOR 0x0d /* PCI-PCI bridge subvendor ID */ 143*199767f8SToomas Soome #define PCIY_AGP8X 0x0e /* AGP 8x */ 144*199767f8SToomas Soome #define PCIY_SECDEV 0x0f /* Secure Device */ 145*199767f8SToomas Soome #define PCIY_EXPRESS 0x10 /* PCI Express */ 146*199767f8SToomas Soome #define PCIY_MSIX 0x11 /* MSI-X */ 147*199767f8SToomas Soome #define PCIY_SATA 0x12 /* SATA */ 148*199767f8SToomas Soome #define PCIY_PCIAF 0x13 /* PCI Advanced Features */ 149*199767f8SToomas Soome 150*199767f8SToomas Soome /* Extended Capability Register Fields */ 151*199767f8SToomas Soome 152*199767f8SToomas Soome #define PCIR_EXTCAP 0x100 153*199767f8SToomas Soome #define PCIM_EXTCAP_ID 0x0000ffff 154*199767f8SToomas Soome #define PCIM_EXTCAP_VER 0x000f0000 155*199767f8SToomas Soome #define PCIM_EXTCAP_NEXTPTR 0xfff00000 156*199767f8SToomas Soome #define PCI_EXTCAP_ID(ecap) ((ecap) & PCIM_EXTCAP_ID) 157*199767f8SToomas Soome #define PCI_EXTCAP_VER(ecap) (((ecap) & PCIM_EXTCAP_VER) >> 16) 158*199767f8SToomas Soome #define PCI_EXTCAP_NEXTPTR(ecap) (((ecap) & PCIM_EXTCAP_NEXTPTR) >> 20) 159*199767f8SToomas Soome 160*199767f8SToomas Soome /* Extended Capability Identification Numbers */ 161*199767f8SToomas Soome 162*199767f8SToomas Soome #define PCIZ_AER 0x0001 /* Advanced Error Reporting */ 163*199767f8SToomas Soome #define PCIZ_VC 0x0002 /* Virtual Channel if MFVC Ext Cap not set */ 164*199767f8SToomas Soome #define PCIZ_SERNUM 0x0003 /* Device Serial Number */ 165*199767f8SToomas Soome #define PCIZ_PWRBDGT 0x0004 /* Power Budgeting */ 166*199767f8SToomas Soome #define PCIZ_RCLINK_DCL 0x0005 /* Root Complex Link Declaration */ 167*199767f8SToomas Soome #define PCIZ_RCLINK_CTL 0x0006 /* Root Complex Internal Link Control */ 168*199767f8SToomas Soome #define PCIZ_RCEC_ASSOC 0x0007 /* Root Complex Event Collector Association */ 169*199767f8SToomas Soome #define PCIZ_MFVC 0x0008 /* Multi-Function Virtual Channel */ 170*199767f8SToomas Soome #define PCIZ_VC2 0x0009 /* Virtual Channel if MFVC Ext Cap set */ 171*199767f8SToomas Soome #define PCIZ_RCRB 0x000a /* RCRB Header */ 172*199767f8SToomas Soome #define PCIZ_VENDOR 0x000b /* Vendor Unique */ 173*199767f8SToomas Soome #define PCIZ_CAC 0x000c /* Configuration Access Correction -- obsolete */ 174*199767f8SToomas Soome #define PCIZ_ACS 0x000d /* Access Control Services */ 175*199767f8SToomas Soome #define PCIZ_ARI 0x000e /* Alternative Routing-ID Interpretation */ 176*199767f8SToomas Soome #define PCIZ_ATS 0x000f /* Address Translation Services */ 177*199767f8SToomas Soome #define PCIZ_SRIOV 0x0010 /* Single Root IO Virtualization */ 178*199767f8SToomas Soome #define PCIZ_MRIOV 0x0011 /* Multiple Root IO Virtualization */ 179*199767f8SToomas Soome #define PCIZ_MULTICAST 0x0012 /* Multicast */ 180*199767f8SToomas Soome #define PCIZ_PAGE_REQ 0x0013 /* Page Request */ 181*199767f8SToomas Soome #define PCIZ_AMD 0x0014 /* Reserved for AMD */ 182*199767f8SToomas Soome #define PCIZ_RESIZE_BAR 0x0015 /* Resizable BAR */ 183*199767f8SToomas Soome #define PCIZ_DPA 0x0016 /* Dynamic Power Allocation */ 184*199767f8SToomas Soome #define PCIZ_TPH_REQ 0x0017 /* TPH Requester */ 185*199767f8SToomas Soome #define PCIZ_LTR 0x0018 /* Latency Tolerance Reporting */ 186*199767f8SToomas Soome #define PCIZ_SEC_PCIE 0x0019 /* Secondary PCI Express */ 187*199767f8SToomas Soome #define PCIZ_PMUX 0x001a /* Protocol Multiplexing */ 188*199767f8SToomas Soome #define PCIZ_PASID 0x001b /* Process Address Space ID */ 189*199767f8SToomas Soome #define PCIZ_LN_REQ 0x001c /* LN Requester */ 190*199767f8SToomas Soome #define PCIZ_DPC 0x001d /* Downstream Porto Containment */ 191*199767f8SToomas Soome #define PCIZ_L1PM 0x001e /* L1 PM Substates */ 192*199767f8SToomas Soome 193*199767f8SToomas Soome /* config registers for header type 0 devices */ 194*199767f8SToomas Soome 195*199767f8SToomas Soome #define PCIR_BARS 0x10 196*199767f8SToomas Soome #define PCIR_BAR(x) (PCIR_BARS + (x) * 4) 197*199767f8SToomas Soome #define PCIR_MAX_BAR_0 5 198*199767f8SToomas Soome #define PCI_RID2BAR(rid) (((rid) - PCIR_BARS) / 4) 199*199767f8SToomas Soome #define PCI_BAR_IO(x) (((x) & PCIM_BAR_SPACE) == PCIM_BAR_IO_SPACE) 200*199767f8SToomas Soome #define PCI_BAR_MEM(x) (((x) & PCIM_BAR_SPACE) == PCIM_BAR_MEM_SPACE) 201*199767f8SToomas Soome #define PCIM_BAR_SPACE 0x00000001 202*199767f8SToomas Soome #define PCIM_BAR_MEM_SPACE 0 203*199767f8SToomas Soome #define PCIM_BAR_IO_SPACE 1 204*199767f8SToomas Soome #define PCIM_BAR_MEM_TYPE 0x00000006 205*199767f8SToomas Soome #define PCIM_BAR_MEM_32 0 206*199767f8SToomas Soome #define PCIM_BAR_MEM_1MB 2 /* Locate below 1MB in PCI <= 2.1 */ 207*199767f8SToomas Soome #define PCIM_BAR_MEM_64 4 208*199767f8SToomas Soome #define PCIM_BAR_MEM_PREFETCH 0x00000008 209*199767f8SToomas Soome #define PCIM_BAR_MEM_BASE 0xfffffffffffffff0ULL 210*199767f8SToomas Soome #define PCIM_BAR_IO_RESERVED 0x00000002 211*199767f8SToomas Soome #define PCIM_BAR_IO_BASE 0xfffffffc 212*199767f8SToomas Soome #define PCIR_CIS 0x28 213*199767f8SToomas Soome #define PCIM_CIS_ASI_MASK 0x00000007 214*199767f8SToomas Soome #define PCIM_CIS_ASI_CONFIG 0 215*199767f8SToomas Soome #define PCIM_CIS_ASI_BAR0 1 216*199767f8SToomas Soome #define PCIM_CIS_ASI_BAR1 2 217*199767f8SToomas Soome #define PCIM_CIS_ASI_BAR2 3 218*199767f8SToomas Soome #define PCIM_CIS_ASI_BAR3 4 219*199767f8SToomas Soome #define PCIM_CIS_ASI_BAR4 5 220*199767f8SToomas Soome #define PCIM_CIS_ASI_BAR5 6 221*199767f8SToomas Soome #define PCIM_CIS_ASI_ROM 7 222*199767f8SToomas Soome #define PCIM_CIS_ADDR_MASK 0x0ffffff8 223*199767f8SToomas Soome #define PCIM_CIS_ROM_MASK 0xf0000000 224*199767f8SToomas Soome #define PCIM_CIS_CONFIG_MASK 0xff 225*199767f8SToomas Soome #define PCIR_SUBVEND_0 0x2c 226*199767f8SToomas Soome #define PCIR_SUBDEV_0 0x2e 227*199767f8SToomas Soome #define PCIR_BIOS 0x30 228*199767f8SToomas Soome #define PCIM_BIOS_ENABLE 0x01 229*199767f8SToomas Soome #define PCIM_BIOS_ADDR_MASK 0xfffff800 230*199767f8SToomas Soome #define PCIR_CAP_PTR 0x34 231*199767f8SToomas Soome #define PCIR_INTLINE 0x3c 232*199767f8SToomas Soome #define PCIR_INTPIN 0x3d 233*199767f8SToomas Soome #define PCIR_MINGNT 0x3e 234*199767f8SToomas Soome #define PCIR_MAXLAT 0x3f 235*199767f8SToomas Soome 236*199767f8SToomas Soome /* config registers for header type 1 (PCI-to-PCI bridge) devices */ 237*199767f8SToomas Soome 238*199767f8SToomas Soome #define PCIR_MAX_BAR_1 1 239*199767f8SToomas Soome #define PCIR_SECSTAT_1 0x1e 240*199767f8SToomas Soome 241*199767f8SToomas Soome #define PCIR_PRIBUS_1 0x18 242*199767f8SToomas Soome #define PCIR_SECBUS_1 0x19 243*199767f8SToomas Soome #define PCIR_SUBBUS_1 0x1a 244*199767f8SToomas Soome #define PCIR_SECLAT_1 0x1b 245*199767f8SToomas Soome 246*199767f8SToomas Soome #define PCIR_IOBASEL_1 0x1c 247*199767f8SToomas Soome #define PCIR_IOLIMITL_1 0x1d 248*199767f8SToomas Soome #define PCIR_IOBASEH_1 0x30 249*199767f8SToomas Soome #define PCIR_IOLIMITH_1 0x32 250*199767f8SToomas Soome #define PCIM_BRIO_16 0x0 251*199767f8SToomas Soome #define PCIM_BRIO_32 0x1 252*199767f8SToomas Soome #define PCIM_BRIO_MASK 0xf 253*199767f8SToomas Soome 254*199767f8SToomas Soome #define PCIR_MEMBASE_1 0x20 255*199767f8SToomas Soome #define PCIR_MEMLIMIT_1 0x22 256*199767f8SToomas Soome 257*199767f8SToomas Soome #define PCIR_PMBASEL_1 0x24 258*199767f8SToomas Soome #define PCIR_PMLIMITL_1 0x26 259*199767f8SToomas Soome #define PCIR_PMBASEH_1 0x28 260*199767f8SToomas Soome #define PCIR_PMLIMITH_1 0x2c 261*199767f8SToomas Soome #define PCIM_BRPM_32 0x0 262*199767f8SToomas Soome #define PCIM_BRPM_64 0x1 263*199767f8SToomas Soome #define PCIM_BRPM_MASK 0xf 264*199767f8SToomas Soome 265*199767f8SToomas Soome #define PCIR_BIOS_1 0x38 266*199767f8SToomas Soome #define PCIR_BRIDGECTL_1 0x3e 267*199767f8SToomas Soome 268*199767f8SToomas Soome /* config registers for header type 2 (CardBus) devices */ 269*199767f8SToomas Soome 270*199767f8SToomas Soome #define PCIR_MAX_BAR_2 0 271*199767f8SToomas Soome #define PCIR_CAP_PTR_2 0x14 272*199767f8SToomas Soome #define PCIR_SECSTAT_2 0x16 273*199767f8SToomas Soome 274*199767f8SToomas Soome #define PCIR_PRIBUS_2 0x18 275*199767f8SToomas Soome #define PCIR_SECBUS_2 0x19 276*199767f8SToomas Soome #define PCIR_SUBBUS_2 0x1a 277*199767f8SToomas Soome #define PCIR_SECLAT_2 0x1b 278*199767f8SToomas Soome 279*199767f8SToomas Soome #define PCIR_MEMBASE0_2 0x1c 280*199767f8SToomas Soome #define PCIR_MEMLIMIT0_2 0x20 281*199767f8SToomas Soome #define PCIR_MEMBASE1_2 0x24 282*199767f8SToomas Soome #define PCIR_MEMLIMIT1_2 0x28 283*199767f8SToomas Soome #define PCIR_IOBASE0_2 0x2c 284*199767f8SToomas Soome #define PCIR_IOLIMIT0_2 0x30 285*199767f8SToomas Soome #define PCIR_IOBASE1_2 0x34 286*199767f8SToomas Soome #define PCIR_IOLIMIT1_2 0x38 287*199767f8SToomas Soome 288*199767f8SToomas Soome #define PCIR_BRIDGECTL_2 0x3e 289*199767f8SToomas Soome 290*199767f8SToomas Soome #define PCIR_SUBVEND_2 0x40 291*199767f8SToomas Soome #define PCIR_SUBDEV_2 0x42 292*199767f8SToomas Soome 293*199767f8SToomas Soome #define PCIR_PCCARDIF_2 0x44 294*199767f8SToomas Soome 295*199767f8SToomas Soome /* PCI device class, subclass and programming interface definitions */ 296*199767f8SToomas Soome 297*199767f8SToomas Soome #define PCIC_OLD 0x00 298*199767f8SToomas Soome #define PCIS_OLD_NONVGA 0x00 299*199767f8SToomas Soome #define PCIS_OLD_VGA 0x01 300*199767f8SToomas Soome 301*199767f8SToomas Soome #define PCIC_STORAGE 0x01 302*199767f8SToomas Soome #define PCIS_STORAGE_SCSI 0x00 303*199767f8SToomas Soome #define PCIS_STORAGE_IDE 0x01 304*199767f8SToomas Soome #define PCIP_STORAGE_IDE_MODEPRIM 0x01 305*199767f8SToomas Soome #define PCIP_STORAGE_IDE_PROGINDPRIM 0x02 306*199767f8SToomas Soome #define PCIP_STORAGE_IDE_MODESEC 0x04 307*199767f8SToomas Soome #define PCIP_STORAGE_IDE_PROGINDSEC 0x08 308*199767f8SToomas Soome #define PCIP_STORAGE_IDE_MASTERDEV 0x80 309*199767f8SToomas Soome #define PCIS_STORAGE_FLOPPY 0x02 310*199767f8SToomas Soome #define PCIS_STORAGE_IPI 0x03 311*199767f8SToomas Soome #define PCIS_STORAGE_RAID 0x04 312*199767f8SToomas Soome #define PCIS_STORAGE_ATA_ADMA 0x05 313*199767f8SToomas Soome #define PCIS_STORAGE_SATA 0x06 314*199767f8SToomas Soome #define PCIP_STORAGE_SATA_AHCI_1_0 0x01 315*199767f8SToomas Soome #define PCIS_STORAGE_SAS 0x07 316*199767f8SToomas Soome #define PCIS_STORAGE_NVM 0x08 317*199767f8SToomas Soome #define PCIP_STORAGE_NVM_NVMHCI_1_0 0x01 318*199767f8SToomas Soome #define PCIP_STORAGE_NVM_ENTERPRISE_NVMHCI_1_0 0x02 319*199767f8SToomas Soome #define PCIS_STORAGE_OTHER 0x80 320*199767f8SToomas Soome 321*199767f8SToomas Soome #define PCIC_NETWORK 0x02 322*199767f8SToomas Soome #define PCIS_NETWORK_ETHERNET 0x00 323*199767f8SToomas Soome #define PCIS_NETWORK_TOKENRING 0x01 324*199767f8SToomas Soome #define PCIS_NETWORK_FDDI 0x02 325*199767f8SToomas Soome #define PCIS_NETWORK_ATM 0x03 326*199767f8SToomas Soome #define PCIS_NETWORK_ISDN 0x04 327*199767f8SToomas Soome #define PCIS_NETWORK_WORLDFIP 0x05 328*199767f8SToomas Soome #define PCIS_NETWORK_PICMG 0x06 329*199767f8SToomas Soome #define PCIS_NETWORK_OTHER 0x80 330*199767f8SToomas Soome 331*199767f8SToomas Soome #define PCIC_DISPLAY 0x03 332*199767f8SToomas Soome #define PCIS_DISPLAY_VGA 0x00 333*199767f8SToomas Soome #define PCIS_DISPLAY_XGA 0x01 334*199767f8SToomas Soome #define PCIS_DISPLAY_3D 0x02 335*199767f8SToomas Soome #define PCIS_DISPLAY_OTHER 0x80 336*199767f8SToomas Soome 337*199767f8SToomas Soome #define PCIC_MULTIMEDIA 0x04 338*199767f8SToomas Soome #define PCIS_MULTIMEDIA_VIDEO 0x00 339*199767f8SToomas Soome #define PCIS_MULTIMEDIA_AUDIO 0x01 340*199767f8SToomas Soome #define PCIS_MULTIMEDIA_TELE 0x02 341*199767f8SToomas Soome #define PCIS_MULTIMEDIA_HDA 0x03 342*199767f8SToomas Soome #define PCIS_MULTIMEDIA_OTHER 0x80 343*199767f8SToomas Soome 344*199767f8SToomas Soome #define PCIC_MEMORY 0x05 345*199767f8SToomas Soome #define PCIS_MEMORY_RAM 0x00 346*199767f8SToomas Soome #define PCIS_MEMORY_FLASH 0x01 347*199767f8SToomas Soome #define PCIS_MEMORY_OTHER 0x80 348*199767f8SToomas Soome 349*199767f8SToomas Soome #define PCIC_BRIDGE 0x06 350*199767f8SToomas Soome #define PCIS_BRIDGE_HOST 0x00 351*199767f8SToomas Soome #define PCIS_BRIDGE_ISA 0x01 352*199767f8SToomas Soome #define PCIS_BRIDGE_EISA 0x02 353*199767f8SToomas Soome #define PCIS_BRIDGE_MCA 0x03 354*199767f8SToomas Soome #define PCIS_BRIDGE_PCI 0x04 355*199767f8SToomas Soome #define PCIP_BRIDGE_PCI_SUBTRACTIVE 0x01 356*199767f8SToomas Soome #define PCIS_BRIDGE_PCMCIA 0x05 357*199767f8SToomas Soome #define PCIS_BRIDGE_NUBUS 0x06 358*199767f8SToomas Soome #define PCIS_BRIDGE_CARDBUS 0x07 359*199767f8SToomas Soome #define PCIS_BRIDGE_RACEWAY 0x08 360*199767f8SToomas Soome #define PCIS_BRIDGE_PCI_TRANSPARENT 0x09 361*199767f8SToomas Soome #define PCIS_BRIDGE_INFINIBAND 0x0a 362*199767f8SToomas Soome #define PCIS_BRIDGE_OTHER 0x80 363*199767f8SToomas Soome 364*199767f8SToomas Soome #define PCIC_SIMPLECOMM 0x07 365*199767f8SToomas Soome #define PCIS_SIMPLECOMM_UART 0x00 366*199767f8SToomas Soome #define PCIP_SIMPLECOMM_UART_8250 0x00 367*199767f8SToomas Soome #define PCIP_SIMPLECOMM_UART_16450A 0x01 368*199767f8SToomas Soome #define PCIP_SIMPLECOMM_UART_16550A 0x02 369*199767f8SToomas Soome #define PCIP_SIMPLECOMM_UART_16650A 0x03 370*199767f8SToomas Soome #define PCIP_SIMPLECOMM_UART_16750A 0x04 371*199767f8SToomas Soome #define PCIP_SIMPLECOMM_UART_16850A 0x05 372*199767f8SToomas Soome #define PCIP_SIMPLECOMM_UART_16950A 0x06 373*199767f8SToomas Soome #define PCIS_SIMPLECOMM_PAR 0x01 374*199767f8SToomas Soome #define PCIS_SIMPLECOMM_MULSER 0x02 375*199767f8SToomas Soome #define PCIS_SIMPLECOMM_MODEM 0x03 376*199767f8SToomas Soome #define PCIS_SIMPLECOMM_GPIB 0x04 377*199767f8SToomas Soome #define PCIS_SIMPLECOMM_SMART_CARD 0x05 378*199767f8SToomas Soome #define PCIS_SIMPLECOMM_OTHER 0x80 379*199767f8SToomas Soome 380*199767f8SToomas Soome #define PCIC_BASEPERIPH 0x08 381*199767f8SToomas Soome #define PCIS_BASEPERIPH_PIC 0x00 382*199767f8SToomas Soome #define PCIP_BASEPERIPH_PIC_8259A 0x00 383*199767f8SToomas Soome #define PCIP_BASEPERIPH_PIC_ISA 0x01 384*199767f8SToomas Soome #define PCIP_BASEPERIPH_PIC_EISA 0x02 385*199767f8SToomas Soome #define PCIP_BASEPERIPH_PIC_IO_APIC 0x10 386*199767f8SToomas Soome #define PCIP_BASEPERIPH_PIC_IOX_APIC 0x20 387*199767f8SToomas Soome #define PCIS_BASEPERIPH_DMA 0x01 388*199767f8SToomas Soome #define PCIS_BASEPERIPH_TIMER 0x02 389*199767f8SToomas Soome #define PCIS_BASEPERIPH_RTC 0x03 390*199767f8SToomas Soome #define PCIS_BASEPERIPH_PCIHOT 0x04 391*199767f8SToomas Soome #define PCIS_BASEPERIPH_SDHC 0x05 392*199767f8SToomas Soome #define PCIS_BASEPERIPH_IOMMU 0x06 393*199767f8SToomas Soome #define PCIS_BASEPERIPH_OTHER 0x80 394*199767f8SToomas Soome 395*199767f8SToomas Soome #define PCIC_INPUTDEV 0x09 396*199767f8SToomas Soome #define PCIS_INPUTDEV_KEYBOARD 0x00 397*199767f8SToomas Soome #define PCIS_INPUTDEV_DIGITIZER 0x01 398*199767f8SToomas Soome #define PCIS_INPUTDEV_MOUSE 0x02 399*199767f8SToomas Soome #define PCIS_INPUTDEV_SCANNER 0x03 400*199767f8SToomas Soome #define PCIS_INPUTDEV_GAMEPORT 0x04 401*199767f8SToomas Soome #define PCIS_INPUTDEV_OTHER 0x80 402*199767f8SToomas Soome 403*199767f8SToomas Soome #define PCIC_DOCKING 0x0a 404*199767f8SToomas Soome #define PCIS_DOCKING_GENERIC 0x00 405*199767f8SToomas Soome #define PCIS_DOCKING_OTHER 0x80 406*199767f8SToomas Soome 407*199767f8SToomas Soome #define PCIC_PROCESSOR 0x0b 408*199767f8SToomas Soome #define PCIS_PROCESSOR_386 0x00 409*199767f8SToomas Soome #define PCIS_PROCESSOR_486 0x01 410*199767f8SToomas Soome #define PCIS_PROCESSOR_PENTIUM 0x02 411*199767f8SToomas Soome #define PCIS_PROCESSOR_ALPHA 0x10 412*199767f8SToomas Soome #define PCIS_PROCESSOR_POWERPC 0x20 413*199767f8SToomas Soome #define PCIS_PROCESSOR_MIPS 0x30 414*199767f8SToomas Soome #define PCIS_PROCESSOR_COPROC 0x40 415*199767f8SToomas Soome 416*199767f8SToomas Soome #define PCIC_SERIALBUS 0x0c 417*199767f8SToomas Soome #define PCIS_SERIALBUS_FW 0x00 418*199767f8SToomas Soome #define PCIS_SERIALBUS_ACCESS 0x01 419*199767f8SToomas Soome #define PCIS_SERIALBUS_SSA 0x02 420*199767f8SToomas Soome #define PCIS_SERIALBUS_USB 0x03 421*199767f8SToomas Soome #define PCIP_SERIALBUS_USB_UHCI 0x00 422*199767f8SToomas Soome #define PCIP_SERIALBUS_USB_OHCI 0x10 423*199767f8SToomas Soome #define PCIP_SERIALBUS_USB_EHCI 0x20 424*199767f8SToomas Soome #define PCIP_SERIALBUS_USB_XHCI 0x30 425*199767f8SToomas Soome #define PCIP_SERIALBUS_USB_DEVICE 0xfe 426*199767f8SToomas Soome #define PCIS_SERIALBUS_FC 0x04 427*199767f8SToomas Soome #define PCIS_SERIALBUS_SMBUS 0x05 428*199767f8SToomas Soome #define PCIS_SERIALBUS_INFINIBAND 0x06 429*199767f8SToomas Soome #define PCIS_SERIALBUS_IPMI 0x07 430*199767f8SToomas Soome #define PCIP_SERIALBUS_IPMI_SMIC 0x00 431*199767f8SToomas Soome #define PCIP_SERIALBUS_IPMI_KCS 0x01 432*199767f8SToomas Soome #define PCIP_SERIALBUS_IPMI_BT 0x02 433*199767f8SToomas Soome #define PCIS_SERIALBUS_SERCOS 0x08 434*199767f8SToomas Soome #define PCIS_SERIALBUS_CANBUS 0x09 435*199767f8SToomas Soome 436*199767f8SToomas Soome #define PCIC_WIRELESS 0x0d 437*199767f8SToomas Soome #define PCIS_WIRELESS_IRDA 0x00 438*199767f8SToomas Soome #define PCIS_WIRELESS_IR 0x01 439*199767f8SToomas Soome #define PCIS_WIRELESS_RF 0x10 440*199767f8SToomas Soome #define PCIS_WIRELESS_BLUETOOTH 0x11 441*199767f8SToomas Soome #define PCIS_WIRELESS_BROADBAND 0x12 442*199767f8SToomas Soome #define PCIS_WIRELESS_80211A 0x20 443*199767f8SToomas Soome #define PCIS_WIRELESS_80211B 0x21 444*199767f8SToomas Soome #define PCIS_WIRELESS_OTHER 0x80 445*199767f8SToomas Soome 446*199767f8SToomas Soome #define PCIC_INTELLIIO 0x0e 447*199767f8SToomas Soome #define PCIS_INTELLIIO_I2O 0x00 448*199767f8SToomas Soome 449*199767f8SToomas Soome #define PCIC_SATCOM 0x0f 450*199767f8SToomas Soome #define PCIS_SATCOM_TV 0x01 451*199767f8SToomas Soome #define PCIS_SATCOM_AUDIO 0x02 452*199767f8SToomas Soome #define PCIS_SATCOM_VOICE 0x03 453*199767f8SToomas Soome #define PCIS_SATCOM_DATA 0x04 454*199767f8SToomas Soome 455*199767f8SToomas Soome #define PCIC_CRYPTO 0x10 456*199767f8SToomas Soome #define PCIS_CRYPTO_NETCOMP 0x00 457*199767f8SToomas Soome #define PCIS_CRYPTO_ENTERTAIN 0x10 458*199767f8SToomas Soome #define PCIS_CRYPTO_OTHER 0x80 459*199767f8SToomas Soome 460*199767f8SToomas Soome #define PCIC_DASP 0x11 461*199767f8SToomas Soome #define PCIS_DASP_DPIO 0x00 462*199767f8SToomas Soome #define PCIS_DASP_PERFCNTRS 0x01 463*199767f8SToomas Soome #define PCIS_DASP_COMM_SYNC 0x10 464*199767f8SToomas Soome #define PCIS_DASP_MGMT_CARD 0x20 465*199767f8SToomas Soome #define PCIS_DASP_OTHER 0x80 466*199767f8SToomas Soome 467*199767f8SToomas Soome #define PCIC_OTHER 0xff 468*199767f8SToomas Soome 469*199767f8SToomas Soome /* Bridge Control Values. */ 470*199767f8SToomas Soome #define PCIB_BCR_PERR_ENABLE 0x0001 471*199767f8SToomas Soome #define PCIB_BCR_SERR_ENABLE 0x0002 472*199767f8SToomas Soome #define PCIB_BCR_ISA_ENABLE 0x0004 473*199767f8SToomas Soome #define PCIB_BCR_VGA_ENABLE 0x0008 474*199767f8SToomas Soome #define PCIB_BCR_MASTER_ABORT_MODE 0x0020 475*199767f8SToomas Soome #define PCIB_BCR_SECBUS_RESET 0x0040 476*199767f8SToomas Soome #define PCIB_BCR_SECBUS_BACKTOBACK 0x0080 477*199767f8SToomas Soome #define PCIB_BCR_PRI_DISCARD_TIMEOUT 0x0100 478*199767f8SToomas Soome #define PCIB_BCR_SEC_DISCARD_TIMEOUT 0x0200 479*199767f8SToomas Soome #define PCIB_BCR_DISCARD_TIMER_STATUS 0x0400 480*199767f8SToomas Soome #define PCIB_BCR_DISCARD_TIMER_SERREN 0x0800 481*199767f8SToomas Soome 482*199767f8SToomas Soome /* PCI power manangement */ 483*199767f8SToomas Soome #define PCIR_POWER_CAP 0x2 484*199767f8SToomas Soome #define PCIM_PCAP_SPEC 0x0007 485*199767f8SToomas Soome #define PCIM_PCAP_PMEREQCLK 0x0008 486*199767f8SToomas Soome #define PCIM_PCAP_DEVSPECINIT 0x0020 487*199767f8SToomas Soome #define PCIM_PCAP_AUXPWR_0 0x0000 488*199767f8SToomas Soome #define PCIM_PCAP_AUXPWR_55 0x0040 489*199767f8SToomas Soome #define PCIM_PCAP_AUXPWR_100 0x0080 490*199767f8SToomas Soome #define PCIM_PCAP_AUXPWR_160 0x00c0 491*199767f8SToomas Soome #define PCIM_PCAP_AUXPWR_220 0x0100 492*199767f8SToomas Soome #define PCIM_PCAP_AUXPWR_270 0x0140 493*199767f8SToomas Soome #define PCIM_PCAP_AUXPWR_320 0x0180 494*199767f8SToomas Soome #define PCIM_PCAP_AUXPWR_375 0x01c0 495*199767f8SToomas Soome #define PCIM_PCAP_AUXPWRMASK 0x01c0 496*199767f8SToomas Soome #define PCIM_PCAP_D1SUPP 0x0200 497*199767f8SToomas Soome #define PCIM_PCAP_D2SUPP 0x0400 498*199767f8SToomas Soome #define PCIM_PCAP_D0PME 0x0800 499*199767f8SToomas Soome #define PCIM_PCAP_D1PME 0x1000 500*199767f8SToomas Soome #define PCIM_PCAP_D2PME 0x2000 501*199767f8SToomas Soome #define PCIM_PCAP_D3PME_HOT 0x4000 502*199767f8SToomas Soome #define PCIM_PCAP_D3PME_COLD 0x8000 503*199767f8SToomas Soome 504*199767f8SToomas Soome #define PCIR_POWER_STATUS 0x4 505*199767f8SToomas Soome #define PCIM_PSTAT_D0 0x0000 506*199767f8SToomas Soome #define PCIM_PSTAT_D1 0x0001 507*199767f8SToomas Soome #define PCIM_PSTAT_D2 0x0002 508*199767f8SToomas Soome #define PCIM_PSTAT_D3 0x0003 509*199767f8SToomas Soome #define PCIM_PSTAT_DMASK 0x0003 510*199767f8SToomas Soome #define PCIM_PSTAT_NOSOFTRESET 0x0008 511*199767f8SToomas Soome #define PCIM_PSTAT_PMEENABLE 0x0100 512*199767f8SToomas Soome #define PCIM_PSTAT_D0POWER 0x0000 513*199767f8SToomas Soome #define PCIM_PSTAT_D1POWER 0x0200 514*199767f8SToomas Soome #define PCIM_PSTAT_D2POWER 0x0400 515*199767f8SToomas Soome #define PCIM_PSTAT_D3POWER 0x0600 516*199767f8SToomas Soome #define PCIM_PSTAT_D0HEAT 0x0800 517*199767f8SToomas Soome #define PCIM_PSTAT_D1HEAT 0x0a00 518*199767f8SToomas Soome #define PCIM_PSTAT_D2HEAT 0x0c00 519*199767f8SToomas Soome #define PCIM_PSTAT_D3HEAT 0x0e00 520*199767f8SToomas Soome #define PCIM_PSTAT_DATASELMASK 0x1e00 521*199767f8SToomas Soome #define PCIM_PSTAT_DATAUNKN 0x0000 522*199767f8SToomas Soome #define PCIM_PSTAT_DATADIV10 0x2000 523*199767f8SToomas Soome #define PCIM_PSTAT_DATADIV100 0x4000 524*199767f8SToomas Soome #define PCIM_PSTAT_DATADIV1000 0x6000 525*199767f8SToomas Soome #define PCIM_PSTAT_DATADIVMASK 0x6000 526*199767f8SToomas Soome #define PCIM_PSTAT_PME 0x8000 527*199767f8SToomas Soome 528*199767f8SToomas Soome #define PCIR_POWER_BSE 0x6 529*199767f8SToomas Soome #define PCIM_PMCSR_BSE_D3B3 0x00 530*199767f8SToomas Soome #define PCIM_PMCSR_BSE_D3B2 0x40 531*199767f8SToomas Soome #define PCIM_PMCSR_BSE_BPCCE 0x80 532*199767f8SToomas Soome 533*199767f8SToomas Soome #define PCIR_POWER_DATA 0x7 534*199767f8SToomas Soome 535*199767f8SToomas Soome /* VPD capability registers */ 536*199767f8SToomas Soome #define PCIR_VPD_ADDR 0x2 537*199767f8SToomas Soome #define PCIR_VPD_DATA 0x4 538*199767f8SToomas Soome 539*199767f8SToomas Soome /* PCI Message Signalled Interrupts (MSI) */ 540*199767f8SToomas Soome #define PCIR_MSI_CTRL 0x2 541*199767f8SToomas Soome #define PCIM_MSICTRL_VECTOR 0x0100 542*199767f8SToomas Soome #define PCIM_MSICTRL_64BIT 0x0080 543*199767f8SToomas Soome #define PCIM_MSICTRL_MME_MASK 0x0070 544*199767f8SToomas Soome #define PCIM_MSICTRL_MME_1 0x0000 545*199767f8SToomas Soome #define PCIM_MSICTRL_MME_2 0x0010 546*199767f8SToomas Soome #define PCIM_MSICTRL_MME_4 0x0020 547*199767f8SToomas Soome #define PCIM_MSICTRL_MME_8 0x0030 548*199767f8SToomas Soome #define PCIM_MSICTRL_MME_16 0x0040 549*199767f8SToomas Soome #define PCIM_MSICTRL_MME_32 0x0050 550*199767f8SToomas Soome #define PCIM_MSICTRL_MMC_MASK 0x000E 551*199767f8SToomas Soome #define PCIM_MSICTRL_MMC_1 0x0000 552*199767f8SToomas Soome #define PCIM_MSICTRL_MMC_2 0x0002 553*199767f8SToomas Soome #define PCIM_MSICTRL_MMC_4 0x0004 554*199767f8SToomas Soome #define PCIM_MSICTRL_MMC_8 0x0006 555*199767f8SToomas Soome #define PCIM_MSICTRL_MMC_16 0x0008 556*199767f8SToomas Soome #define PCIM_MSICTRL_MMC_32 0x000A 557*199767f8SToomas Soome #define PCIM_MSICTRL_MSI_ENABLE 0x0001 558*199767f8SToomas Soome #define PCIR_MSI_ADDR 0x4 559*199767f8SToomas Soome #define PCIR_MSI_ADDR_HIGH 0x8 560*199767f8SToomas Soome #define PCIR_MSI_DATA 0x8 561*199767f8SToomas Soome #define PCIR_MSI_DATA_64BIT 0xc 562*199767f8SToomas Soome #define PCIR_MSI_MASK 0x10 563*199767f8SToomas Soome #define PCIR_MSI_PENDING 0x14 564*199767f8SToomas Soome 565*199767f8SToomas Soome /* PCI-X definitions */ 566*199767f8SToomas Soome 567*199767f8SToomas Soome /* For header type 0 devices */ 568*199767f8SToomas Soome #define PCIXR_COMMAND 0x2 569*199767f8SToomas Soome #define PCIXM_COMMAND_DPERR_E 0x0001 /* Data Parity Error Recovery */ 570*199767f8SToomas Soome #define PCIXM_COMMAND_ERO 0x0002 /* Enable Relaxed Ordering */ 571*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_READ 0x000c /* Maximum Burst Read Count */ 572*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_READ_512 0x0000 573*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_READ_1024 0x0004 574*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_READ_2048 0x0008 575*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_READ_4096 0x000c 576*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_SPLITS 0x0070 /* Maximum Split Transactions */ 577*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_SPLITS_1 0x0000 578*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_SPLITS_2 0x0010 579*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_SPLITS_3 0x0020 580*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_SPLITS_4 0x0030 581*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_SPLITS_8 0x0040 582*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_SPLITS_12 0x0050 583*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_SPLITS_16 0x0060 584*199767f8SToomas Soome #define PCIXM_COMMAND_MAX_SPLITS_32 0x0070 585*199767f8SToomas Soome #define PCIXM_COMMAND_VERSION 0x3000 586*199767f8SToomas Soome #define PCIXR_STATUS 0x4 587*199767f8SToomas Soome #define PCIXM_STATUS_DEVFN 0x000000FF 588*199767f8SToomas Soome #define PCIXM_STATUS_BUS 0x0000FF00 589*199767f8SToomas Soome #define PCIXM_STATUS_64BIT 0x00010000 590*199767f8SToomas Soome #define PCIXM_STATUS_133CAP 0x00020000 591*199767f8SToomas Soome #define PCIXM_STATUS_SC_DISCARDED 0x00040000 592*199767f8SToomas Soome #define PCIXM_STATUS_UNEXP_SC 0x00080000 593*199767f8SToomas Soome #define PCIXM_STATUS_COMPLEX_DEV 0x00100000 594*199767f8SToomas Soome #define PCIXM_STATUS_MAX_READ 0x00600000 595*199767f8SToomas Soome #define PCIXM_STATUS_MAX_READ_512 0x00000000 596*199767f8SToomas Soome #define PCIXM_STATUS_MAX_READ_1024 0x00200000 597*199767f8SToomas Soome #define PCIXM_STATUS_MAX_READ_2048 0x00400000 598*199767f8SToomas Soome #define PCIXM_STATUS_MAX_READ_4096 0x00600000 599*199767f8SToomas Soome #define PCIXM_STATUS_MAX_SPLITS 0x03800000 600*199767f8SToomas Soome #define PCIXM_STATUS_MAX_SPLITS_1 0x00000000 601*199767f8SToomas Soome #define PCIXM_STATUS_MAX_SPLITS_2 0x00800000 602*199767f8SToomas Soome #define PCIXM_STATUS_MAX_SPLITS_3 0x01000000 603*199767f8SToomas Soome #define PCIXM_STATUS_MAX_SPLITS_4 0x01800000 604*199767f8SToomas Soome #define PCIXM_STATUS_MAX_SPLITS_8 0x02000000 605*199767f8SToomas Soome #define PCIXM_STATUS_MAX_SPLITS_12 0x02800000 606*199767f8SToomas Soome #define PCIXM_STATUS_MAX_SPLITS_16 0x03000000 607*199767f8SToomas Soome #define PCIXM_STATUS_MAX_SPLITS_32 0x03800000 608*199767f8SToomas Soome #define PCIXM_STATUS_MAX_CUM_READ 0x1C000000 609*199767f8SToomas Soome #define PCIXM_STATUS_RCVD_SC_ERR 0x20000000 610*199767f8SToomas Soome #define PCIXM_STATUS_266CAP 0x40000000 611*199767f8SToomas Soome #define PCIXM_STATUS_533CAP 0x80000000 612*199767f8SToomas Soome 613*199767f8SToomas Soome /* For header type 1 devices (PCI-X bridges) */ 614*199767f8SToomas Soome #define PCIXR_SEC_STATUS 0x2 615*199767f8SToomas Soome #define PCIXM_SEC_STATUS_64BIT 0x0001 616*199767f8SToomas Soome #define PCIXM_SEC_STATUS_133CAP 0x0002 617*199767f8SToomas Soome #define PCIXM_SEC_STATUS_SC_DISC 0x0004 618*199767f8SToomas Soome #define PCIXM_SEC_STATUS_UNEXP_SC 0x0008 619*199767f8SToomas Soome #define PCIXM_SEC_STATUS_SC_OVERRUN 0x0010 620*199767f8SToomas Soome #define PCIXM_SEC_STATUS_SR_DELAYED 0x0020 621*199767f8SToomas Soome #define PCIXM_SEC_STATUS_BUS_MODE 0x03c0 622*199767f8SToomas Soome #define PCIXM_SEC_STATUS_VERSION 0x3000 623*199767f8SToomas Soome #define PCIXM_SEC_STATUS_266CAP 0x4000 624*199767f8SToomas Soome #define PCIXM_SEC_STATUS_533CAP 0x8000 625*199767f8SToomas Soome #define PCIXR_BRIDGE_STATUS 0x4 626*199767f8SToomas Soome #define PCIXM_BRIDGE_STATUS_DEVFN 0x000000FF 627*199767f8SToomas Soome #define PCIXM_BRIDGE_STATUS_BUS 0x0000FF00 628*199767f8SToomas Soome #define PCIXM_BRIDGE_STATUS_64BIT 0x00010000 629*199767f8SToomas Soome #define PCIXM_BRIDGE_STATUS_133CAP 0x00020000 630*199767f8SToomas Soome #define PCIXM_BRIDGE_STATUS_SC_DISCARDED 0x00040000 631*199767f8SToomas Soome #define PCIXM_BRIDGE_STATUS_UNEXP_SC 0x00080000 632*199767f8SToomas Soome #define PCIXM_BRIDGE_STATUS_SC_OVERRUN 0x00100000 633*199767f8SToomas Soome #define PCIXM_BRIDGE_STATUS_SR_DELAYED 0x00200000 634*199767f8SToomas Soome #define PCIXM_BRIDGE_STATUS_DEVID_MSGCAP 0x20000000 635*199767f8SToomas Soome #define PCIXM_BRIDGE_STATUS_266CAP 0x40000000 636*199767f8SToomas Soome #define PCIXM_BRIDGE_STATUS_533CAP 0x80000000 637*199767f8SToomas Soome 638*199767f8SToomas Soome /* HT (HyperTransport) Capability definitions */ 639*199767f8SToomas Soome #define PCIR_HT_COMMAND 0x2 640*199767f8SToomas Soome #define PCIM_HTCMD_CAP_MASK 0xf800 /* Capability type. */ 641*199767f8SToomas Soome #define PCIM_HTCAP_SLAVE 0x0000 /* 000xx */ 642*199767f8SToomas Soome #define PCIM_HTCAP_HOST 0x2000 /* 001xx */ 643*199767f8SToomas Soome #define PCIM_HTCAP_SWITCH 0x4000 /* 01000 */ 644*199767f8SToomas Soome #define PCIM_HTCAP_INTERRUPT 0x8000 /* 10000 */ 645*199767f8SToomas Soome #define PCIM_HTCAP_REVISION_ID 0x8800 /* 10001 */ 646*199767f8SToomas Soome #define PCIM_HTCAP_UNITID_CLUMPING 0x9000 /* 10010 */ 647*199767f8SToomas Soome #define PCIM_HTCAP_EXT_CONFIG_SPACE 0x9800 /* 10011 */ 648*199767f8SToomas Soome #define PCIM_HTCAP_ADDRESS_MAPPING 0xa000 /* 10100 */ 649*199767f8SToomas Soome #define PCIM_HTCAP_MSI_MAPPING 0xa800 /* 10101 */ 650*199767f8SToomas Soome #define PCIM_HTCAP_DIRECT_ROUTE 0xb000 /* 10110 */ 651*199767f8SToomas Soome #define PCIM_HTCAP_VCSET 0xb800 /* 10111 */ 652*199767f8SToomas Soome #define PCIM_HTCAP_RETRY_MODE 0xc000 /* 11000 */ 653*199767f8SToomas Soome #define PCIM_HTCAP_X86_ENCODING 0xc800 /* 11001 */ 654*199767f8SToomas Soome #define PCIM_HTCAP_GEN3 0xd000 /* 11010 */ 655*199767f8SToomas Soome #define PCIM_HTCAP_FLE 0xd800 /* 11011 */ 656*199767f8SToomas Soome #define PCIM_HTCAP_PM 0xe000 /* 11100 */ 657*199767f8SToomas Soome #define PCIM_HTCAP_HIGH_NODE_COUNT 0xe800 /* 11101 */ 658*199767f8SToomas Soome 659*199767f8SToomas Soome /* HT MSI Mapping Capability definitions. */ 660*199767f8SToomas Soome #define PCIM_HTCMD_MSI_ENABLE 0x0001 661*199767f8SToomas Soome #define PCIM_HTCMD_MSI_FIXED 0x0002 662*199767f8SToomas Soome #define PCIR_HTMSI_ADDRESS_LO 0x4 663*199767f8SToomas Soome #define PCIR_HTMSI_ADDRESS_HI 0x8 664*199767f8SToomas Soome 665*199767f8SToomas Soome /* PCI Vendor capability definitions */ 666*199767f8SToomas Soome #define PCIR_VENDOR_LENGTH 0x2 667*199767f8SToomas Soome #define PCIR_VENDOR_DATA 0x3 668*199767f8SToomas Soome 669*199767f8SToomas Soome /* PCI EHCI Debug Port definitions */ 670*199767f8SToomas Soome #define PCIR_DEBUG_PORT 0x2 671*199767f8SToomas Soome #define PCIM_DEBUG_PORT_OFFSET 0x1FFF 672*199767f8SToomas Soome #define PCIM_DEBUG_PORT_BAR 0xe000 673*199767f8SToomas Soome 674*199767f8SToomas Soome /* PCI-PCI Bridge Subvendor definitions */ 675*199767f8SToomas Soome #define PCIR_SUBVENDCAP_ID 0x4 676*199767f8SToomas Soome 677*199767f8SToomas Soome /* PCI Express definitions */ 678*199767f8SToomas Soome #define PCIER_FLAGS 0x2 679*199767f8SToomas Soome #define PCIEM_FLAGS_VERSION 0x000F 680*199767f8SToomas Soome #define PCIEM_FLAGS_TYPE 0x00F0 681*199767f8SToomas Soome #define PCIEM_TYPE_ENDPOINT 0x0000 682*199767f8SToomas Soome #define PCIEM_TYPE_LEGACY_ENDPOINT 0x0010 683*199767f8SToomas Soome #define PCIEM_TYPE_ROOT_PORT 0x0040 684*199767f8SToomas Soome #define PCIEM_TYPE_UPSTREAM_PORT 0x0050 685*199767f8SToomas Soome #define PCIEM_TYPE_DOWNSTREAM_PORT 0x0060 686*199767f8SToomas Soome #define PCIEM_TYPE_PCI_BRIDGE 0x0070 687*199767f8SToomas Soome #define PCIEM_TYPE_PCIE_BRIDGE 0x0080 688*199767f8SToomas Soome #define PCIEM_TYPE_ROOT_INT_EP 0x0090 689*199767f8SToomas Soome #define PCIEM_TYPE_ROOT_EC 0x00a0 690*199767f8SToomas Soome #define PCIEM_FLAGS_SLOT 0x0100 691*199767f8SToomas Soome #define PCIEM_FLAGS_IRQ 0x3e00 692*199767f8SToomas Soome #define PCIER_DEVICE_CAP 0x4 693*199767f8SToomas Soome #define PCIEM_CAP_MAX_PAYLOAD 0x00000007 694*199767f8SToomas Soome #define PCIEM_CAP_PHANTHOM_FUNCS 0x00000018 695*199767f8SToomas Soome #define PCIEM_CAP_EXT_TAG_FIELD 0x00000020 696*199767f8SToomas Soome #define PCIEM_CAP_L0S_LATENCY 0x000001c0 697*199767f8SToomas Soome #define PCIEM_CAP_L1_LATENCY 0x00000e00 698*199767f8SToomas Soome #define PCIEM_CAP_ROLE_ERR_RPT 0x00008000 699*199767f8SToomas Soome #define PCIEM_CAP_SLOT_PWR_LIM_VAL 0x03fc0000 700*199767f8SToomas Soome #define PCIEM_CAP_SLOT_PWR_LIM_SCALE 0x0c000000 701*199767f8SToomas Soome #define PCIEM_CAP_FLR 0x10000000 702*199767f8SToomas Soome #define PCIER_DEVICE_CTL 0x8 703*199767f8SToomas Soome #define PCIEM_CTL_COR_ENABLE 0x0001 704*199767f8SToomas Soome #define PCIEM_CTL_NFER_ENABLE 0x0002 705*199767f8SToomas Soome #define PCIEM_CTL_FER_ENABLE 0x0004 706*199767f8SToomas Soome #define PCIEM_CTL_URR_ENABLE 0x0008 707*199767f8SToomas Soome #define PCIEM_CTL_RELAXED_ORD_ENABLE 0x0010 708*199767f8SToomas Soome #define PCIEM_CTL_MAX_PAYLOAD 0x00e0 709*199767f8SToomas Soome #define PCIEM_CTL_EXT_TAG_FIELD 0x0100 710*199767f8SToomas Soome #define PCIEM_CTL_PHANTHOM_FUNCS 0x0200 711*199767f8SToomas Soome #define PCIEM_CTL_AUX_POWER_PM 0x0400 712*199767f8SToomas Soome #define PCIEM_CTL_NOSNOOP_ENABLE 0x0800 713*199767f8SToomas Soome #define PCIEM_CTL_MAX_READ_REQUEST 0x7000 714*199767f8SToomas Soome #define PCIEM_CTL_BRDG_CFG_RETRY 0x8000 /* PCI-E - PCI/PCI-X bridges */ 715*199767f8SToomas Soome #define PCIEM_CTL_INITIATE_FLR 0x8000 /* FLR capable endpoints */ 716*199767f8SToomas Soome #define PCIER_DEVICE_STA 0xa 717*199767f8SToomas Soome #define PCIEM_STA_CORRECTABLE_ERROR 0x0001 718*199767f8SToomas Soome #define PCIEM_STA_NON_FATAL_ERROR 0x0002 719*199767f8SToomas Soome #define PCIEM_STA_FATAL_ERROR 0x0004 720*199767f8SToomas Soome #define PCIEM_STA_UNSUPPORTED_REQ 0x0008 721*199767f8SToomas Soome #define PCIEM_STA_AUX_POWER 0x0010 722*199767f8SToomas Soome #define PCIEM_STA_TRANSACTION_PND 0x0020 723*199767f8SToomas Soome #define PCIER_LINK_CAP 0xc 724*199767f8SToomas Soome #define PCIEM_LINK_CAP_MAX_SPEED 0x0000000f 725*199767f8SToomas Soome #define PCIEM_LINK_CAP_MAX_WIDTH 0x000003f0 726*199767f8SToomas Soome #define PCIEM_LINK_CAP_ASPM 0x00000c00 727*199767f8SToomas Soome #define PCIEM_LINK_CAP_L0S_EXIT 0x00007000 728*199767f8SToomas Soome #define PCIEM_LINK_CAP_L1_EXIT 0x00038000 729*199767f8SToomas Soome #define PCIEM_LINK_CAP_CLOCK_PM 0x00040000 730*199767f8SToomas Soome #define PCIEM_LINK_CAP_SURPRISE_DOWN 0x00080000 731*199767f8SToomas Soome #define PCIEM_LINK_CAP_DL_ACTIVE 0x00100000 732*199767f8SToomas Soome #define PCIEM_LINK_CAP_LINK_BW_NOTIFY 0x00200000 733*199767f8SToomas Soome #define PCIEM_LINK_CAP_ASPM_COMPLIANCE 0x00400000 734*199767f8SToomas Soome #define PCIEM_LINK_CAP_PORT 0xff000000 735*199767f8SToomas Soome #define PCIER_LINK_CTL 0x10 736*199767f8SToomas Soome #define PCIEM_LINK_CTL_ASPMC_DIS 0x0000 737*199767f8SToomas Soome #define PCIEM_LINK_CTL_ASPMC_L0S 0x0001 738*199767f8SToomas Soome #define PCIEM_LINK_CTL_ASPMC_L1 0x0002 739*199767f8SToomas Soome #define PCIEM_LINK_CTL_ASPMC 0x0003 740*199767f8SToomas Soome #define PCIEM_LINK_CTL_RCB 0x0008 741*199767f8SToomas Soome #define PCIEM_LINK_CTL_LINK_DIS 0x0010 742*199767f8SToomas Soome #define PCIEM_LINK_CTL_RETRAIN_LINK 0x0020 743*199767f8SToomas Soome #define PCIEM_LINK_CTL_COMMON_CLOCK 0x0040 744*199767f8SToomas Soome #define PCIEM_LINK_CTL_EXTENDED_SYNC 0x0080 745*199767f8SToomas Soome #define PCIEM_LINK_CTL_ECPM 0x0100 746*199767f8SToomas Soome #define PCIEM_LINK_CTL_HAWD 0x0200 747*199767f8SToomas Soome #define PCIEM_LINK_CTL_LBMIE 0x0400 748*199767f8SToomas Soome #define PCIEM_LINK_CTL_LABIE 0x0800 749*199767f8SToomas Soome #define PCIER_LINK_STA 0x12 750*199767f8SToomas Soome #define PCIEM_LINK_STA_SPEED 0x000f 751*199767f8SToomas Soome #define PCIEM_LINK_STA_WIDTH 0x03f0 752*199767f8SToomas Soome #define PCIEM_LINK_STA_TRAINING_ERROR 0x0400 753*199767f8SToomas Soome #define PCIEM_LINK_STA_TRAINING 0x0800 754*199767f8SToomas Soome #define PCIEM_LINK_STA_SLOT_CLOCK 0x1000 755*199767f8SToomas Soome #define PCIEM_LINK_STA_DL_ACTIVE 0x2000 756*199767f8SToomas Soome #define PCIEM_LINK_STA_LINK_BW_MGMT 0x4000 757*199767f8SToomas Soome #define PCIEM_LINK_STA_LINK_AUTO_BW 0x8000 758*199767f8SToomas Soome #define PCIER_SLOT_CAP 0x14 759*199767f8SToomas Soome #define PCIEM_SLOT_CAP_APB 0x00000001 760*199767f8SToomas Soome #define PCIEM_SLOT_CAP_PCP 0x00000002 761*199767f8SToomas Soome #define PCIEM_SLOT_CAP_MRLSP 0x00000004 762*199767f8SToomas Soome #define PCIEM_SLOT_CAP_AIP 0x00000008 763*199767f8SToomas Soome #define PCIEM_SLOT_CAP_PIP 0x00000010 764*199767f8SToomas Soome #define PCIEM_SLOT_CAP_HPS 0x00000020 765*199767f8SToomas Soome #define PCIEM_SLOT_CAP_HPC 0x00000040 766*199767f8SToomas Soome #define PCIEM_SLOT_CAP_SPLV 0x00007f80 767*199767f8SToomas Soome #define PCIEM_SLOT_CAP_SPLS 0x00018000 768*199767f8SToomas Soome #define PCIEM_SLOT_CAP_EIP 0x00020000 769*199767f8SToomas Soome #define PCIEM_SLOT_CAP_NCCS 0x00040000 770*199767f8SToomas Soome #define PCIEM_SLOT_CAP_PSN 0xfff80000 771*199767f8SToomas Soome #define PCIER_SLOT_CTL 0x18 772*199767f8SToomas Soome #define PCIEM_SLOT_CTL_ABPE 0x0001 773*199767f8SToomas Soome #define PCIEM_SLOT_CTL_PFDE 0x0002 774*199767f8SToomas Soome #define PCIEM_SLOT_CTL_MRLSCE 0x0004 775*199767f8SToomas Soome #define PCIEM_SLOT_CTL_PDCE 0x0008 776*199767f8SToomas Soome #define PCIEM_SLOT_CTL_CCIE 0x0010 777*199767f8SToomas Soome #define PCIEM_SLOT_CTL_HPIE 0x0020 778*199767f8SToomas Soome #define PCIEM_SLOT_CTL_AIC 0x00c0 779*199767f8SToomas Soome #define PCIEM_SLOT_CTL_PIC 0x0300 780*199767f8SToomas Soome #define PCIEM_SLOT_CTL_PCC 0x0400 781*199767f8SToomas Soome #define PCIEM_SLOT_CTL_EIC 0x0800 782*199767f8SToomas Soome #define PCIEM_SLOT_CTL_DLLSCE 0x1000 783*199767f8SToomas Soome #define PCIER_SLOT_STA 0x1a 784*199767f8SToomas Soome #define PCIEM_SLOT_STA_ABP 0x0001 785*199767f8SToomas Soome #define PCIEM_SLOT_STA_PFD 0x0002 786*199767f8SToomas Soome #define PCIEM_SLOT_STA_MRLSC 0x0004 787*199767f8SToomas Soome #define PCIEM_SLOT_STA_PDC 0x0008 788*199767f8SToomas Soome #define PCIEM_SLOT_STA_CC 0x0010 789*199767f8SToomas Soome #define PCIEM_SLOT_STA_MRLSS 0x0020 790*199767f8SToomas Soome #define PCIEM_SLOT_STA_PDS 0x0040 791*199767f8SToomas Soome #define PCIEM_SLOT_STA_EIS 0x0080 792*199767f8SToomas Soome #define PCIEM_SLOT_STA_DLLSC 0x0100 793*199767f8SToomas Soome #define PCIER_ROOT_CTL 0x1c 794*199767f8SToomas Soome #define PCIEM_ROOT_CTL_SERR_CORR 0x0001 795*199767f8SToomas Soome #define PCIEM_ROOT_CTL_SERR_NONFATAL 0x0002 796*199767f8SToomas Soome #define PCIEM_ROOT_CTL_SERR_FATAL 0x0004 797*199767f8SToomas Soome #define PCIEM_ROOT_CTL_PME 0x0008 798*199767f8SToomas Soome #define PCIEM_ROOT_CTL_CRS_VIS 0x0010 799*199767f8SToomas Soome #define PCIER_ROOT_CAP 0x1e 800*199767f8SToomas Soome #define PCIEM_ROOT_CAP_CRS_VIS 0x0001 801*199767f8SToomas Soome #define PCIER_ROOT_STA 0x20 802*199767f8SToomas Soome #define PCIEM_ROOT_STA_PME_REQID_MASK 0x0000ffff 803*199767f8SToomas Soome #define PCIEM_ROOT_STA_PME_STATUS 0x00010000 804*199767f8SToomas Soome #define PCIEM_ROOT_STA_PME_PEND 0x00020000 805*199767f8SToomas Soome #define PCIER_DEVICE_CAP2 0x24 806*199767f8SToomas Soome #define PCIEM_CAP2_ARI 0x20 807*199767f8SToomas Soome #define PCIER_DEVICE_CTL2 0x28 808*199767f8SToomas Soome #define PCIEM_CTL2_COMP_TIMEOUT_VAL 0x000f 809*199767f8SToomas Soome #define PCIEM_CTL2_COMP_TIMEOUT_DIS 0x0010 810*199767f8SToomas Soome #define PCIEM_CTL2_ARI 0x0020 811*199767f8SToomas Soome #define PCIEM_CTL2_ATOMIC_REQ_ENABLE 0x0040 812*199767f8SToomas Soome #define PCIEM_CTL2_ATOMIC_EGR_BLOCK 0x0080 813*199767f8SToomas Soome #define PCIEM_CTL2_ID_ORDERED_REQ_EN 0x0100 814*199767f8SToomas Soome #define PCIEM_CTL2_ID_ORDERED_CMP_EN 0x0200 815*199767f8SToomas Soome #define PCIEM_CTL2_LTR_ENABLE 0x0400 816*199767f8SToomas Soome #define PCIEM_CTL2_OBFF 0x6000 817*199767f8SToomas Soome #define PCIEM_OBFF_DISABLE 0x0000 818*199767f8SToomas Soome #define PCIEM_OBFF_MSGA_ENABLE 0x2000 819*199767f8SToomas Soome #define PCIEM_OBFF_MSGB_ENABLE 0x4000 820*199767f8SToomas Soome #define PCIEM_OBFF_WAKE_ENABLE 0x6000 821*199767f8SToomas Soome #define PCIEM_CTL2_END2END_TLP 0x8000 822*199767f8SToomas Soome #define PCIER_DEVICE_STA2 0x2a 823*199767f8SToomas Soome #define PCIER_LINK_CAP2 0x2c 824*199767f8SToomas Soome #define PCIER_LINK_CTL2 0x30 825*199767f8SToomas Soome #define PCIER_LINK_STA2 0x32 826*199767f8SToomas Soome #define PCIER_SLOT_CAP2 0x34 827*199767f8SToomas Soome #define PCIER_SLOT_CTL2 0x38 828*199767f8SToomas Soome #define PCIER_SLOT_STA2 0x3a 829*199767f8SToomas Soome 830*199767f8SToomas Soome /* MSI-X definitions */ 831*199767f8SToomas Soome #define PCIR_MSIX_CTRL 0x2 832*199767f8SToomas Soome #define PCIM_MSIXCTRL_MSIX_ENABLE 0x8000 833*199767f8SToomas Soome #define PCIM_MSIXCTRL_FUNCTION_MASK 0x4000 834*199767f8SToomas Soome #define PCIM_MSIXCTRL_TABLE_SIZE 0x07FF 835*199767f8SToomas Soome #define PCIR_MSIX_TABLE 0x4 836*199767f8SToomas Soome #define PCIR_MSIX_PBA 0x8 837*199767f8SToomas Soome #define PCIM_MSIX_BIR_MASK 0x7 838*199767f8SToomas Soome #define PCIM_MSIX_BIR_BAR_10 0 839*199767f8SToomas Soome #define PCIM_MSIX_BIR_BAR_14 1 840*199767f8SToomas Soome #define PCIM_MSIX_BIR_BAR_18 2 841*199767f8SToomas Soome #define PCIM_MSIX_BIR_BAR_1C 3 842*199767f8SToomas Soome #define PCIM_MSIX_BIR_BAR_20 4 843*199767f8SToomas Soome #define PCIM_MSIX_BIR_BAR_24 5 844*199767f8SToomas Soome #define PCIM_MSIX_VCTRL_MASK 0x1 845*199767f8SToomas Soome 846*199767f8SToomas Soome /* PCI Advanced Features definitions */ 847*199767f8SToomas Soome #define PCIR_PCIAF_CAP 0x3 848*199767f8SToomas Soome #define PCIM_PCIAFCAP_TP 0x01 849*199767f8SToomas Soome #define PCIM_PCIAFCAP_FLR 0x02 850*199767f8SToomas Soome #define PCIR_PCIAF_CTRL 0x4 851*199767f8SToomas Soome #define PCIR_PCIAFCTRL_FLR 0x01 852*199767f8SToomas Soome #define PCIR_PCIAF_STATUS 0x5 853*199767f8SToomas Soome #define PCIR_PCIAFSTATUS_TP 0x01 854*199767f8SToomas Soome 855*199767f8SToomas Soome /* Advanced Error Reporting */ 856*199767f8SToomas Soome #define PCIR_AER_UC_STATUS 0x04 857*199767f8SToomas Soome #define PCIM_AER_UC_TRAINING_ERROR 0x00000001 858*199767f8SToomas Soome #define PCIM_AER_UC_DL_PROTOCOL_ERROR 0x00000010 859*199767f8SToomas Soome #define PCIM_AER_UC_SURPRISE_LINK_DOWN 0x00000020 860*199767f8SToomas Soome #define PCIM_AER_UC_POISONED_TLP 0x00001000 861*199767f8SToomas Soome #define PCIM_AER_UC_FC_PROTOCOL_ERROR 0x00002000 862*199767f8SToomas Soome #define PCIM_AER_UC_COMPLETION_TIMEOUT 0x00004000 863*199767f8SToomas Soome #define PCIM_AER_UC_COMPLETER_ABORT 0x00008000 864*199767f8SToomas Soome #define PCIM_AER_UC_UNEXPECTED_COMPLETION 0x00010000 865*199767f8SToomas Soome #define PCIM_AER_UC_RECEIVER_OVERFLOW 0x00020000 866*199767f8SToomas Soome #define PCIM_AER_UC_MALFORMED_TLP 0x00040000 867*199767f8SToomas Soome #define PCIM_AER_UC_ECRC_ERROR 0x00080000 868*199767f8SToomas Soome #define PCIM_AER_UC_UNSUPPORTED_REQUEST 0x00100000 869*199767f8SToomas Soome #define PCIM_AER_UC_ACS_VIOLATION 0x00200000 870*199767f8SToomas Soome #define PCIM_AER_UC_INTERNAL_ERROR 0x00400000 871*199767f8SToomas Soome #define PCIM_AER_UC_MC_BLOCKED_TLP 0x00800000 872*199767f8SToomas Soome #define PCIM_AER_UC_ATOMIC_EGRESS_BLK 0x01000000 873*199767f8SToomas Soome #define PCIM_AER_UC_TLP_PREFIX_BLOCKED 0x02000000 874*199767f8SToomas Soome #define PCIR_AER_UC_MASK 0x08 /* Shares bits with UC_STATUS */ 875*199767f8SToomas Soome #define PCIR_AER_UC_SEVERITY 0x0c /* Shares bits with UC_STATUS */ 876*199767f8SToomas Soome #define PCIR_AER_COR_STATUS 0x10 877*199767f8SToomas Soome #define PCIM_AER_COR_RECEIVER_ERROR 0x00000001 878*199767f8SToomas Soome #define PCIM_AER_COR_BAD_TLP 0x00000040 879*199767f8SToomas Soome #define PCIM_AER_COR_BAD_DLLP 0x00000080 880*199767f8SToomas Soome #define PCIM_AER_COR_REPLAY_ROLLOVER 0x00000100 881*199767f8SToomas Soome #define PCIM_AER_COR_REPLAY_TIMEOUT 0x00001000 882*199767f8SToomas Soome #define PCIM_AER_COR_ADVISORY_NF_ERROR 0x00002000 883*199767f8SToomas Soome #define PCIM_AER_COR_INTERNAL_ERROR 0x00004000 884*199767f8SToomas Soome #define PCIM_AER_COR_HEADER_LOG_OVFLOW 0x00008000 885*199767f8SToomas Soome #define PCIR_AER_COR_MASK 0x14 /* Shares bits with COR_STATUS */ 886*199767f8SToomas Soome #define PCIR_AER_CAP_CONTROL 0x18 887*199767f8SToomas Soome #define PCIM_AER_FIRST_ERROR_PTR 0x0000001f 888*199767f8SToomas Soome #define PCIM_AER_ECRC_GEN_CAPABLE 0x00000020 889*199767f8SToomas Soome #define PCIM_AER_ECRC_GEN_ENABLE 0x00000040 890*199767f8SToomas Soome #define PCIM_AER_ECRC_CHECK_CAPABLE 0x00000080 891*199767f8SToomas Soome #define PCIM_AER_ECRC_CHECK_ENABLE 0x00000100 892*199767f8SToomas Soome #define PCIM_AER_MULT_HDR_CAPABLE 0x00000200 893*199767f8SToomas Soome #define PCIM_AER_MULT_HDR_ENABLE 0x00000400 894*199767f8SToomas Soome #define PCIM_AER_TLP_PREFIX_LOG_PRESENT 0x00000800 895*199767f8SToomas Soome #define PCIR_AER_HEADER_LOG 0x1c 896*199767f8SToomas Soome #define PCIR_AER_ROOTERR_CMD 0x2c /* Only for root complex ports */ 897*199767f8SToomas Soome #define PCIM_AER_ROOTERR_COR_ENABLE 0x00000001 898*199767f8SToomas Soome #define PCIM_AER_ROOTERR_NF_ENABLE 0x00000002 899*199767f8SToomas Soome #define PCIM_AER_ROOTERR_F_ENABLE 0x00000004 900*199767f8SToomas Soome #define PCIR_AER_ROOTERR_STATUS 0x30 /* Only for root complex ports */ 901*199767f8SToomas Soome #define PCIM_AER_ROOTERR_COR_ERR 0x00000001 902*199767f8SToomas Soome #define PCIM_AER_ROOTERR_MULTI_COR_ERR 0x00000002 903*199767f8SToomas Soome #define PCIM_AER_ROOTERR_UC_ERR 0x00000004 904*199767f8SToomas Soome #define PCIM_AER_ROOTERR_MULTI_UC_ERR 0x00000008 905*199767f8SToomas Soome #define PCIM_AER_ROOTERR_FIRST_UC_FATAL 0x00000010 906*199767f8SToomas Soome #define PCIM_AER_ROOTERR_NF_ERR 0x00000020 907*199767f8SToomas Soome #define PCIM_AER_ROOTERR_F_ERR 0x00000040 908*199767f8SToomas Soome #define PCIM_AER_ROOTERR_INT_MESSAGE 0xf8000000 909*199767f8SToomas Soome #define PCIR_AER_COR_SOURCE_ID 0x34 /* Only for root complex ports */ 910*199767f8SToomas Soome #define PCIR_AER_ERR_SOURCE_ID 0x36 /* Only for root complex ports */ 911*199767f8SToomas Soome #define PCIR_AER_TLP_PREFIX_LOG 0x38 /* Only for TLP prefix functions */ 912*199767f8SToomas Soome 913*199767f8SToomas Soome /* Virtual Channel definitions */ 914*199767f8SToomas Soome #define PCIR_VC_CAP1 0x04 915*199767f8SToomas Soome #define PCIM_VC_CAP1_EXT_COUNT 0x00000007 916*199767f8SToomas Soome #define PCIM_VC_CAP1_LOWPRI_EXT_COUNT 0x00000070 917*199767f8SToomas Soome #define PCIR_VC_CAP2 0x08 918*199767f8SToomas Soome #define PCIR_VC_CONTROL 0x0C 919*199767f8SToomas Soome #define PCIR_VC_STATUS 0x0E 920*199767f8SToomas Soome #define PCIR_VC_RESOURCE_CAP(n) (0x10 + (n) * 0x0C) 921*199767f8SToomas Soome #define PCIR_VC_RESOURCE_CTL(n) (0x14 + (n) * 0x0C) 922*199767f8SToomas Soome #define PCIR_VC_RESOURCE_STA(n) (0x18 + (n) * 0x0C) 923*199767f8SToomas Soome 924*199767f8SToomas Soome /* Serial Number definitions */ 925*199767f8SToomas Soome #define PCIR_SERIAL_LOW 0x04 926*199767f8SToomas Soome #define PCIR_SERIAL_HIGH 0x08 927*199767f8SToomas Soome 928*199767f8SToomas Soome /* SR-IOV definitions */ 929*199767f8SToomas Soome #define PCIR_SRIOV_CTL 0x08 930*199767f8SToomas Soome #define PCIM_SRIOV_VF_EN 0x01 931*199767f8SToomas Soome #define PCIM_SRIOV_VF_MSE 0x08 /* Memory space enable. */ 932*199767f8SToomas Soome #define PCIM_SRIOV_ARI_EN 0x10 933*199767f8SToomas Soome #define PCIR_SRIOV_TOTAL_VFS 0x0E 934*199767f8SToomas Soome #define PCIR_SRIOV_NUM_VFS 0x10 935*199767f8SToomas Soome #define PCIR_SRIOV_VF_OFF 0x14 936*199767f8SToomas Soome #define PCIR_SRIOV_VF_STRIDE 0x16 937*199767f8SToomas Soome #define PCIR_SRIOV_VF_DID 0x1A 938*199767f8SToomas Soome #define PCIR_SRIOV_PAGE_CAP 0x1C 939*199767f8SToomas Soome #define PCIR_SRIOV_PAGE_SIZE 0x20 940*199767f8SToomas Soome 941*199767f8SToomas Soome #define PCI_SRIOV_BASE_PAGE_SHIFT 12 942*199767f8SToomas Soome 943*199767f8SToomas Soome #define PCIR_SRIOV_BARS 0x24 944*199767f8SToomas Soome #define PCIR_SRIOV_BAR(x) (PCIR_SRIOV_BARS + (x) * 4) 945*199767f8SToomas Soome 946