Corey Tabaka | b0bd183 | 2009-04-03 01:17:52 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2009 Corey Tabaka |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining |
| 5 | * a copy of this software and associated documentation files |
| 6 | * (the "Software"), to deal in the Software without restriction, |
| 7 | * including without limitation the rights to use, copy, modify, merge, |
| 8 | * publish, distribute, sublicense, and/or sell copies of the Software, |
| 9 | * and to permit persons to whom the Software is furnished to do so, |
| 10 | * subject to the following conditions: |
| 11 | * |
| 12 | * The above copyright notice and this permission notice shall be |
| 13 | * included in all copies or substantial portions of the Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 16 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 17 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
| 18 | * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY |
| 19 | * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, |
| 20 | * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
| 21 | * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 22 | */ |
| 23 | #ifndef __PCI_H |
| 24 | #define __PCI_H |
| 25 | |
| 26 | #include <sys/types.h> |
| 27 | #include <compiler.h> |
| 28 | |
| 29 | /* |
| 30 | * PCI access return codes |
| 31 | */ |
| 32 | #define _PCI_SUCCESSFUL 0x00 |
| 33 | #define _PCI_FUNC_NOT_SUPPORTED 0x81 |
| 34 | #define _PCI_BAD_VENDOR_ID 0x83 |
| 35 | #define _PCI_DEVICE_NOT_FOUND 0x86 |
| 36 | #define _PCI_BAD_REGISTER_NUMBER 0x87 |
| 37 | #define _PCI_SET_FAILED 0x88 |
| 38 | #define _PCI_BUFFER_TOO_SMALL 0x89 |
| 39 | |
| 40 | /* |
| 41 | * PCI configuration space offsets |
| 42 | */ |
| 43 | #define PCI_CONFIG_VENDOR_ID 0x00 |
| 44 | #define PCI_CONFIG_DEVICE_ID 0x02 |
| 45 | #define PCI_CONFIG_COMMAND 0x04 |
| 46 | #define PCI_CONFIG_STATUS 0x06 |
| 47 | #define PCI_CONFIG_REVISION_ID 0x08 |
| 48 | #define PCI_CONFIG_CLASS_CODE 0x09 |
| 49 | #define PCI_CONFIG_CACHE_LINE_SIZE 0x0c |
| 50 | #define PCI_CONFIG_LATENCY_TIMER 0x0d |
| 51 | #define PCI_CONFIG_HEADER_TYPE 0x0e |
| 52 | #define PCI_CONFIG_BIST 0x0f |
| 53 | #define PCI_CONFIG_BASE_ADDRESSES 0x10 |
| 54 | #define PCI_CONFIG_CARDBUS_CIS_PTR 0x28 |
| 55 | #define PCI_CONFIG_SUBSYS_VENDOR_ID 0x2c |
| 56 | #define PCI_CONFIG_SUBSYS_ID 0x2e |
| 57 | #define PCI_CONFIG_EXP_ROM_ADDRESS 0x30 |
| 58 | #define PCI_CONFIG_CAPABILITIES 0x34 |
| 59 | #define PCI_CONFIG_INTERRUPT_LINE 0x3c |
| 60 | #define PCI_CONFIG_INTERRUPT_PIN 0x3d |
| 61 | #define PCI_CONFIG_MIN_GRANT 0x3e |
| 62 | #define PCI_CONFIG_MAX_LATENCY 0x3f |
| 63 | |
| 64 | /* |
| 65 | * PCI header type register bits |
| 66 | */ |
| 67 | #define PCI_HEADER_TYPE_MASK 0x7f |
| 68 | #define PCI_HEADER_TYPE_MULTI_FN 0x80 |
| 69 | |
| 70 | /* |
| 71 | * PCI header types |
| 72 | */ |
| 73 | #define PCI_HEADER_TYPE_STANDARD 0x00 |
| 74 | #define PCI_HEADER_TYPE_PCI_BRIDGE 0x01 |
| 75 | #define PCI_HEADER_TYPE_CARD_BUS 0x02 |
| 76 | |
| 77 | /* |
| 78 | * PCI command register bits |
| 79 | */ |
| 80 | #define PCI_COMMAND_IO_EN 0x0001 |
| 81 | #define PCI_COMMAND_MEM_EN 0x0002 |
| 82 | #define PCI_COMMAND_BUS_MASTER_EN 0x0004 |
| 83 | #define PCI_COMMAND_SPECIAL_EN 0x0008 |
| 84 | #define PCI_COMMAND_MEM_WR_INV_EN 0x0010 |
| 85 | #define PCI_COMMAND_PAL_SNOOP_EN 0x0020 |
| 86 | #define PCI_COMMAND_PERR_RESP_EN 0x0040 |
| 87 | #define PCI_COMMAND_AD_STEP_EN 0x0080 |
| 88 | #define PCI_COMMAND_SERR_EN 0x0100 |
| 89 | #define PCI_COMMAND_FAST_B2B_EN 0x0200 |
| 90 | |
| 91 | /* |
| 92 | * PCI status register bits |
| 93 | */ |
| 94 | #define PCI_STATUS_NEW_CAPS 0x0010 |
| 95 | #define PCI_STATUS_66_MHZ 0x0020 |
| 96 | #define PCI_STATUS_FAST_B2B 0x0080 |
| 97 | #define PCI_STATUS_MSTR_PERR 0x0100 |
| 98 | #define PCI_STATUS_DEVSEL_MASK 0x0600 |
| 99 | #define PCI_STATUS_TARG_ABORT_SIG 0x0800 |
| 100 | #define PCI_STATUS_TARG_ABORT_RCV 0x1000 |
| 101 | #define PCI_STATUS_MSTR_ABORT_RCV 0x2000 |
| 102 | #define PCI_STATUS_SERR_SIG 0x4000 |
| 103 | #define PCI_STATUS_PERR 0x8000 |
| 104 | |
| 105 | typedef struct { |
| 106 | uint16_t vendor_id; |
| 107 | uint16_t device_id; |
| 108 | uint16_t command; |
| 109 | uint16_t status; |
| 110 | uint8_t revision_id_0; |
| 111 | uint8_t program_interface; |
| 112 | uint8_t sub_class; |
| 113 | uint8_t base_class; |
| 114 | uint8_t cache_line_size; |
| 115 | uint8_t latency_timer; |
| 116 | uint8_t header_type; |
| 117 | uint8_t bist; |
| 118 | uint32_t base_addresses[6]; |
| 119 | uint32_t cardbus_cis_ptr; |
| 120 | uint16_t subsystem_vendor_id; |
| 121 | uint16_t subsystem_id; |
| 122 | uint32_t expansion_rom_address; |
| 123 | uint8_t capabilities_ptr; |
| 124 | uint8_t reserved_0[3]; |
| 125 | uint32_t reserved_1; |
| 126 | uint8_t interrupt_line; |
| 127 | uint8_t interrupt_pin; |
| 128 | uint8_t min_grant; |
| 129 | uint8_t max_latency; |
| 130 | } __PACKED pci_config_t; |
| 131 | |
| 132 | /* |
| 133 | * PCI address structure |
| 134 | */ |
| 135 | typedef struct |
| 136 | { |
| 137 | uint8_t bus; |
| 138 | uint8_t dev_fn; |
| 139 | } pci_location_t; |
| 140 | |
| 141 | typedef struct { |
| 142 | uint8_t id; |
| 143 | uint8_t next; |
| 144 | } __PACKED pci_capability_t; |
| 145 | |
| 146 | typedef struct { |
| 147 | uint8_t bus; |
| 148 | uint8_t device; |
| 149 | uint8_t link_int_a; |
| 150 | uint16_t irq_int_a; |
| 151 | uint8_t link_int_b; |
| 152 | uint16_t irq_int_b; |
| 153 | uint8_t link_int_c; |
| 154 | uint16_t irq_int_c; |
| 155 | uint8_t link_int_d; |
| 156 | uint16_t irq_int_d; |
| 157 | uint8_t slot; |
| 158 | uint8_t reserved; |
| 159 | } __PACKED irq_routing_entry; |
| 160 | |
| 161 | void pci_init(void); |
| 162 | |
| 163 | int pci_get_last_bus(void); |
| 164 | |
| 165 | int pci_find_pci_device(pci_location_t *state, uint16_t device_id, uint16_t vendor_id, uint16_t index); |
| 166 | int pci_find_pci_class_code(pci_location_t *state, uint32_t class_code, uint16_t index); |
| 167 | |
| 168 | int pci_read_config_byte(const pci_location_t *state, uint32_t reg, uint8_t *value); |
| 169 | int pci_read_config_half(const pci_location_t *state, uint32_t reg, uint16_t *value); |
| 170 | int pci_read_config_word(const pci_location_t *state, uint32_t reg, uint32_t *value); |
| 171 | |
| 172 | int pci_write_config_byte(const pci_location_t *state, uint32_t reg, uint8_t value); |
| 173 | int pci_write_config_half(const pci_location_t *state, uint32_t reg, uint16_t value); |
| 174 | int pci_write_config_word(const pci_location_t *state, uint32_t reg, uint32_t value); |
| 175 | |
| 176 | int pci_get_irq_routing_options(irq_routing_entry *entries, uint16_t *count, uint16_t *pci_irqs); |
| 177 | int pci_set_irq_hw_int(const pci_location_t *state, uint8_t int_pin, uint8_t irq); |
| 178 | |
| 179 | #endif |