Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 1 | // Option rom scanning code. |
| 2 | // |
| 3 | // Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net> |
| 4 | // Copyright (C) 2002 MandrakeSoft S.A. |
| 5 | // |
Kevin O'Connor | b1b7c2a | 2009-01-15 20:52:58 -0500 | [diff] [blame] | 6 | // This file may be distributed under the terms of the GNU LGPLv3 license. |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 7 | |
| 8 | #include "bregs.h" // struct bregs |
Kevin O'Connor | 35ae726 | 2009-01-19 15:44:44 -0500 | [diff] [blame] | 9 | #include "farptr.h" // FLATPTR_TO_SEG |
Kevin O'Connor | c659fde | 2008-12-28 23:43:20 -0500 | [diff] [blame] | 10 | #include "config.h" // CONFIG_* |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 11 | #include "util.h" // dprintf |
Kevin O'Connor | 51fd0a1 | 2009-09-12 13:20:14 -0400 | [diff] [blame] | 12 | #include "pci.h" // foreachpci |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 13 | #include "pci_regs.h" // PCI_ROM_ADDRESS |
| 14 | #include "pci_ids.h" // PCI_CLASS_DISPLAY_VGA |
Kevin O'Connor | c659fde | 2008-12-28 23:43:20 -0500 | [diff] [blame] | 15 | #include "boot.h" // IPL |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 16 | |
| 17 | |
| 18 | /**************************************************************** |
| 19 | * Definitions |
| 20 | ****************************************************************/ |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 21 | |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 22 | struct rom_header { |
| 23 | u16 signature; |
| 24 | u8 size; |
| 25 | u8 initVector[4]; |
| 26 | u8 reserved[17]; |
| 27 | u16 pcioffset; |
| 28 | u16 pnpoffset; |
| 29 | } PACKED; |
| 30 | |
| 31 | struct pci_data { |
| 32 | u32 signature; |
| 33 | u16 vendor; |
| 34 | u16 device; |
| 35 | u16 vitaldata; |
| 36 | u16 dlen; |
| 37 | u8 drevision; |
| 38 | u8 class_lo; |
| 39 | u16 class_hi; |
| 40 | u16 ilen; |
| 41 | u16 irevision; |
| 42 | u8 type; |
| 43 | u8 indicator; |
| 44 | u16 reserved; |
| 45 | } PACKED; |
| 46 | |
| 47 | struct pnp_data { |
| 48 | u32 signature; |
| 49 | u8 revision; |
| 50 | u8 len; |
| 51 | u16 nextoffset; |
| 52 | u8 reserved_08; |
| 53 | u8 checksum; |
| 54 | u32 devid; |
| 55 | u16 manufacturer; |
| 56 | u16 productname; |
| 57 | u8 type_lo; |
| 58 | u16 type_hi; |
| 59 | u8 dev_flags; |
| 60 | u16 bcv; |
| 61 | u16 dv; |
| 62 | u16 bev; |
| 63 | u16 reserved_1c; |
| 64 | u16 staticresource; |
| 65 | } PACKED; |
| 66 | |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 67 | #define OPTION_ROM_SIGNATURE 0xaa55 |
| 68 | #define OPTION_ROM_ALIGN 2048 |
| 69 | #define OPTION_ROM_INITVECTOR offsetof(struct rom_header, initVector[0]) |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 70 | #define PCI_ROM_SIGNATURE 0x52494350 // PCIR |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 71 | #define PCIROM_CODETYPE_X86 0 |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 72 | |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 73 | // The end of the last deployed rom. |
| 74 | u32 RomEnd; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 75 | |
| 76 | |
| 77 | /**************************************************************** |
| 78 | * Helper functions |
| 79 | ****************************************************************/ |
| 80 | |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 81 | // Execute a given option rom. |
| 82 | static void |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 83 | __callrom(struct rom_header *rom, u16 offset, u16 bdf) |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 84 | { |
Kevin O'Connor | 35ae726 | 2009-01-19 15:44:44 -0500 | [diff] [blame] | 85 | u16 seg = FLATPTR_TO_SEG(rom); |
Kevin O'Connor | 91b53a7 | 2009-05-05 22:52:09 -0400 | [diff] [blame] | 86 | dprintf(1, "Running option rom at %04x:%04x\n", seg, offset); |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 87 | |
| 88 | struct bregs br; |
| 89 | memset(&br, 0, sizeof(br)); |
Kevin O'Connor | f8e800d | 2009-09-24 21:01:16 -0400 | [diff] [blame] | 90 | br.flags = F_IF; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 91 | br.ax = bdf; |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 92 | br.bx = 0xffff; |
| 93 | br.dx = 0xffff; |
| 94 | br.es = SEG_BIOS; |
Kevin O'Connor | 0c3068d | 2008-12-21 17:51:36 -0500 | [diff] [blame] | 95 | br.di = get_pnp_offset(); |
Kevin O'Connor | 9f98542 | 2009-09-09 11:34:39 -0400 | [diff] [blame] | 96 | br.code = SEGOFF(seg, offset); |
Kevin O'Connor | 6e5b4a4 | 2008-12-06 13:03:52 -0500 | [diff] [blame] | 97 | call16big(&br); |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 98 | |
| 99 | debug_serial_setup(); |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 100 | } |
| 101 | |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 102 | // Execute a given option rom at the standard entry vector. |
| 103 | static void |
| 104 | callrom(struct rom_header *rom, u16 bdf) |
| 105 | { |
| 106 | __callrom(rom, OPTION_ROM_INITVECTOR, bdf); |
| 107 | } |
| 108 | |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 109 | // Execute a BCV option rom registered via add_bcv(). |
| 110 | void |
| 111 | call_bcv(u16 seg, u16 ip) |
| 112 | { |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 113 | __callrom(MAKE_FLATPTR(seg, 0), ip, 0); |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 114 | } |
| 115 | |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 116 | // Verify that an option rom looks valid |
| 117 | static int |
| 118 | is_valid_rom(struct rom_header *rom) |
| 119 | { |
Kevin O'Connor | c36273f | 2009-04-16 20:43:07 -0400 | [diff] [blame] | 120 | dprintf(6, "Checking rom %p (sig %x size %d)\n" |
| 121 | , rom, rom->signature, rom->size); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 122 | if (rom->signature != OPTION_ROM_SIGNATURE) |
| 123 | return 0; |
Kevin O'Connor | 674e460 | 2009-04-13 19:19:22 -0400 | [diff] [blame] | 124 | if (! rom->size) |
| 125 | return 0; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 126 | u32 len = rom->size * 512; |
Kevin O'Connor | 94fd47e | 2009-02-15 15:21:10 -0500 | [diff] [blame] | 127 | u8 sum = checksum(rom, len); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 128 | if (sum != 0) { |
| 129 | dprintf(1, "Found option rom with bad checksum: loc=%p len=%d sum=%x\n" |
| 130 | , rom, len, sum); |
| 131 | return 0; |
| 132 | } |
| 133 | return 1; |
| 134 | } |
| 135 | |
| 136 | // Check if a valid option rom has a pnp struct; return it if so. |
| 137 | static struct pnp_data * |
| 138 | get_pnp_rom(struct rom_header *rom) |
| 139 | { |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 140 | struct pnp_data *pnp = (void*)((u8*)rom + rom->pnpoffset); |
Kevin O'Connor | 0c3068d | 2008-12-21 17:51:36 -0500 | [diff] [blame] | 141 | if (pnp->signature != PNP_SIGNATURE) |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 142 | return NULL; |
| 143 | return pnp; |
| 144 | } |
| 145 | |
Kevin O'Connor | 3f57b5c | 2008-12-20 23:32:16 -0500 | [diff] [blame] | 146 | // Check for multiple pnp option rom headers. |
| 147 | static struct pnp_data * |
| 148 | get_pnp_next(struct rom_header *rom, struct pnp_data *pnp) |
| 149 | { |
| 150 | if (! pnp->nextoffset) |
| 151 | return NULL; |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 152 | pnp = (void*)((u8*)rom + pnp->nextoffset); |
Kevin O'Connor | 0c3068d | 2008-12-21 17:51:36 -0500 | [diff] [blame] | 153 | if (pnp->signature != PNP_SIGNATURE) |
Kevin O'Connor | 3f57b5c | 2008-12-20 23:32:16 -0500 | [diff] [blame] | 154 | return NULL; |
| 155 | return pnp; |
| 156 | } |
| 157 | |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 158 | // Check if a valid option rom has a pci struct; return it if so. |
| 159 | static struct pci_data * |
| 160 | get_pci_rom(struct rom_header *rom) |
| 161 | { |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 162 | struct pci_data *pci = (void*)((u32)rom + rom->pcioffset); |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 163 | if (pci->signature != PCI_ROM_SIGNATURE) |
| 164 | return NULL; |
| 165 | return pci; |
| 166 | } |
| 167 | |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 168 | // Return the memory position up to which roms may be located. |
| 169 | static inline u32 |
| 170 | max_rom() |
| 171 | { |
| 172 | extern u8 code32_start[]; |
| 173 | if ((u32)code32_start > BUILD_BIOS_ADDR) |
| 174 | return BUILD_BIOS_ADDR; |
| 175 | return (u32)code32_start; |
| 176 | } |
| 177 | |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 178 | // Copy a rom to its permanent location below 1MiB |
| 179 | static struct rom_header * |
| 180 | copy_rom(struct rom_header *rom) |
| 181 | { |
| 182 | u32 romsize = rom->size * 512; |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 183 | if (RomEnd + romsize > max_rom()) { |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 184 | // Option rom doesn't fit. |
| 185 | dprintf(1, "Option rom %p doesn't fit.\n", rom); |
| 186 | return NULL; |
| 187 | } |
Kevin O'Connor | c36273f | 2009-04-16 20:43:07 -0400 | [diff] [blame] | 188 | dprintf(4, "Copying option rom (size %d) from %p to %x\n" |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 189 | , romsize, rom, RomEnd); |
Kevin O'Connor | 3403696 | 2009-12-05 18:51:53 -0500 | [diff] [blame^] | 190 | iomemcpy((void*)RomEnd, rom, romsize); |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 191 | return (void*)RomEnd; |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 192 | } |
| 193 | |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 194 | // Run rom init code and note rom size. |
| 195 | static int |
| 196 | init_optionrom(struct rom_header *rom, u16 bdf, int isvga) |
| 197 | { |
| 198 | if (! is_valid_rom(rom)) |
| 199 | return -1; |
| 200 | |
| 201 | if (isvga || get_pnp_rom(rom)) |
| 202 | // Only init vga and PnP roms here. |
| 203 | callrom(rom, bdf); |
| 204 | |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 205 | RomEnd = (u32)rom + ALIGN(rom->size * 512, OPTION_ROM_ALIGN); |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 206 | |
| 207 | return 0; |
| 208 | } |
| 209 | |
| 210 | |
| 211 | /**************************************************************** |
| 212 | * Roms in CBFS |
| 213 | ****************************************************************/ |
| 214 | |
| 215 | // Check if an option rom is at a hardcoded location or in CBFS. |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 216 | static struct rom_header * |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 217 | lookup_hardcode(u32 vendev) |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 218 | { |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 219 | if (OPTIONROM_VENDEV_1 |
| 220 | && ((OPTIONROM_VENDEV_1 >> 16) |
| 221 | | ((OPTIONROM_VENDEV_1 & 0xffff)) << 16) == vendev) |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 222 | return copy_rom((void*)OPTIONROM_MEM_1); |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 223 | if (OPTIONROM_VENDEV_2 |
| 224 | && ((OPTIONROM_VENDEV_2 >> 16) |
| 225 | | ((OPTIONROM_VENDEV_2 & 0xffff)) << 16) == vendev) |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 226 | return copy_rom((void*)OPTIONROM_MEM_2); |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 227 | int ret = cbfs_copy_optionrom((void*)RomEnd, max_rom() - RomEnd, vendev); |
Kevin O'Connor | cbd6ca0 | 2009-04-27 21:51:13 -0400 | [diff] [blame] | 228 | if (ret < 0) |
| 229 | return NULL; |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 230 | return (void*)RomEnd; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 231 | } |
| 232 | |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 233 | // Run all roms in a given CBFS directory. |
| 234 | static void |
| 235 | run_cbfs_roms(const char *prefix, int isvga) |
| 236 | { |
Kevin O'Connor | 1f83625 | 2009-08-16 20:17:35 -0400 | [diff] [blame] | 237 | struct cbfs_file *file = NULL; |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 238 | for (;;) { |
Kevin O'Connor | 0088259 | 2009-08-18 22:21:10 -0400 | [diff] [blame] | 239 | file = cbfs_findprefix(prefix, file); |
Kevin O'Connor | 1f83625 | 2009-08-16 20:17:35 -0400 | [diff] [blame] | 240 | if (!file) |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 241 | break; |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 242 | int ret = cbfs_copyfile(file, (void*)RomEnd, max_rom() - RomEnd); |
Kevin O'Connor | 1f83625 | 2009-08-16 20:17:35 -0400 | [diff] [blame] | 243 | if (ret > 0) |
| 244 | init_optionrom((void*)RomEnd, 0, isvga); |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 245 | } |
| 246 | } |
| 247 | |
| 248 | |
| 249 | /**************************************************************** |
| 250 | * PCI roms |
| 251 | ****************************************************************/ |
| 252 | |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 253 | // Map the option rom of a given PCI device. |
| 254 | static struct rom_header * |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 255 | map_pcirom(u16 bdf, u32 vendev) |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 256 | { |
Kevin O'Connor | 91b53a7 | 2009-05-05 22:52:09 -0400 | [diff] [blame] | 257 | dprintf(6, "Attempting to map option rom on dev %02x:%02x.%x\n" |
| 258 | , pci_bdf_to_bus(bdf), pci_bdf_to_dev(bdf), pci_bdf_to_fn(bdf)); |
Kevin O'Connor | e5a36d5 | 2008-11-12 20:10:13 -0500 | [diff] [blame] | 259 | |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 260 | u8 htype = pci_config_readb(bdf, PCI_HEADER_TYPE); |
| 261 | if ((htype & 0x7f) != PCI_HEADER_TYPE_NORMAL) { |
| 262 | dprintf(6, "Skipping non-normal pci device (type=%x)\n", htype); |
| 263 | return NULL; |
| 264 | } |
| 265 | |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 266 | u32 orig = pci_config_readl(bdf, PCI_ROM_ADDRESS); |
| 267 | pci_config_writel(bdf, PCI_ROM_ADDRESS, ~PCI_ROM_ADDRESS_ENABLE); |
| 268 | u32 sz = pci_config_readl(bdf, PCI_ROM_ADDRESS); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 269 | |
Kevin O'Connor | e5a36d5 | 2008-11-12 20:10:13 -0500 | [diff] [blame] | 270 | dprintf(6, "Option rom sizing returned %x %x\n", orig, sz); |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 271 | orig &= ~PCI_ROM_ADDRESS_ENABLE; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 272 | if (!sz || sz == 0xffffffff) |
| 273 | goto fail; |
| 274 | |
Kevin O'Connor | 64cf2fb | 2009-04-18 17:01:02 -0400 | [diff] [blame] | 275 | if (orig == sz || (u32)(orig + 4*1024*1024) < 20*1024*1024) { |
| 276 | // Don't try to map to a pci addresses at its max, in the last |
| 277 | // 4MiB of ram, or the first 16MiB of ram. |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 278 | dprintf(6, "Preset rom address doesn't look valid\n"); |
| 279 | goto fail; |
| 280 | } |
| 281 | |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 282 | // Looks like a rom - enable it. |
| 283 | pci_config_writel(bdf, PCI_ROM_ADDRESS, orig | PCI_ROM_ADDRESS_ENABLE); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 284 | |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 285 | struct rom_header *rom = (void*)orig; |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 286 | for (;;) { |
Kevin O'Connor | c95d2ce | 2009-07-29 20:41:39 -0400 | [diff] [blame] | 287 | dprintf(5, "Inspecting possible rom at %p (dv=%08x bdf=%x)\n" |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 288 | , rom, vendev, bdf); |
| 289 | if (rom->signature != OPTION_ROM_SIGNATURE) { |
| 290 | dprintf(6, "No option rom signature (got %x)\n", rom->signature); |
| 291 | goto fail; |
| 292 | } |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 293 | struct pci_data *pci = get_pci_rom(rom); |
| 294 | if (! pci) { |
| 295 | dprintf(6, "No valid pci signature found\n"); |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 296 | goto fail; |
| 297 | } |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 298 | |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 299 | u32 vd = (pci->device << 16) | pci->vendor; |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 300 | if (vd == vendev && pci->type == PCIROM_CODETYPE_X86) |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 301 | // A match |
| 302 | break; |
Kevin O'Connor | c95d2ce | 2009-07-29 20:41:39 -0400 | [diff] [blame] | 303 | dprintf(6, "Didn't match dev/ven (got %08x) or type (got %d)\n" |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 304 | , vd, pci->type); |
| 305 | if (pci->indicator & 0x80) { |
| 306 | dprintf(6, "No more images left\n"); |
| 307 | goto fail; |
| 308 | } |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 309 | rom = (void*)((u32)rom + pci->ilen * 512); |
Kevin O'Connor | e5a36d5 | 2008-11-12 20:10:13 -0500 | [diff] [blame] | 310 | } |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 311 | |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 312 | rom = copy_rom(rom); |
| 313 | pci_config_writel(bdf, PCI_ROM_ADDRESS, orig); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 314 | return rom; |
| 315 | fail: |
| 316 | // Not valid - restore original and exit. |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 317 | pci_config_writel(bdf, PCI_ROM_ADDRESS, orig); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 318 | return NULL; |
| 319 | } |
| 320 | |
| 321 | // Attempt to map and initialize the option rom on a given PCI device. |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 322 | static int |
| 323 | init_pcirom(u16 bdf, int isvga) |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 324 | { |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 325 | u32 vendev = pci_config_readl(bdf, PCI_VENDOR_ID); |
Kevin O'Connor | c95d2ce | 2009-07-29 20:41:39 -0400 | [diff] [blame] | 326 | dprintf(4, "Attempting to init PCI bdf %02x:%02x.%x (dev/ven %08x)\n" |
Kevin O'Connor | 91b53a7 | 2009-05-05 22:52:09 -0400 | [diff] [blame] | 327 | , pci_bdf_to_bus(bdf), pci_bdf_to_dev(bdf), pci_bdf_to_fn(bdf) |
| 328 | , vendev); |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 329 | struct rom_header *rom = lookup_hardcode(vendev); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 330 | if (! rom) |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 331 | rom = map_pcirom(bdf, vendev); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 332 | if (! rom) |
| 333 | // No ROM present. |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 334 | return -1; |
| 335 | return init_optionrom(rom, bdf, isvga); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | |
| 339 | /**************************************************************** |
| 340 | * Non-VGA option rom init |
| 341 | ****************************************************************/ |
| 342 | |
| 343 | void |
| 344 | optionrom_setup() |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 345 | { |
| 346 | if (! CONFIG_OPTIONROMS) |
| 347 | return; |
| 348 | |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 349 | dprintf(1, "Scan for option roms\n"); |
| 350 | |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 351 | u32 post_vga = RomEnd; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 352 | |
| 353 | if (CONFIG_OPTIONROMS_DEPLOYED) { |
| 354 | // Option roms are already deployed on the system. |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 355 | u32 pos = RomEnd; |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 356 | while (pos < max_rom()) { |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 357 | int ret = init_optionrom((void*)pos, 0, 0); |
| 358 | if (ret) |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 359 | pos += OPTION_ROM_ALIGN; |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 360 | else |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 361 | pos = RomEnd; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 362 | } |
| 363 | } else { |
| 364 | // Find and deploy PCI roms. |
Kevin O'Connor | e633832 | 2008-11-29 20:31:49 -0500 | [diff] [blame] | 365 | int bdf, max; |
Kevin O'Connor | 4132e02 | 2008-12-04 19:39:10 -0500 | [diff] [blame] | 366 | foreachpci(bdf, max) { |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 367 | u16 v = pci_config_readw(bdf, PCI_CLASS_DEVICE); |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 368 | if (v == 0x0000 || v == 0xffff || v == PCI_CLASS_DISPLAY_VGA |
| 369 | || (CONFIG_ATA && v == PCI_CLASS_STORAGE_IDE)) |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 370 | continue; |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 371 | init_pcirom(bdf, 0); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 372 | } |
Kevin O'Connor | 1edc89d | 2009-04-30 21:50:35 -0400 | [diff] [blame] | 373 | |
| 374 | // Find and deploy CBFS roms not associated with a device. |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 375 | run_cbfs_roms("genroms/", 0); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | // All option roms found and deployed - now build BEV/BCV vectors. |
| 379 | |
| 380 | u32 pos = post_vga; |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 381 | while (pos < RomEnd) { |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 382 | struct rom_header *rom = (void*)pos; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 383 | if (! is_valid_rom(rom)) { |
| 384 | pos += OPTION_ROM_ALIGN; |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 385 | continue; |
| 386 | } |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 387 | pos += ALIGN(rom->size * 512, OPTION_ROM_ALIGN); |
| 388 | struct pnp_data *pnp = get_pnp_rom(rom); |
| 389 | if (! pnp) { |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 390 | // Legacy rom. |
| 391 | add_bcv(FLATPTR_TO_SEG(rom), OPTION_ROM_INITVECTOR, 0); |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 392 | continue; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 393 | } |
| 394 | // PnP rom. |
| 395 | if (pnp->bev) |
| 396 | // Can boot system - add to IPL list. |
Kevin O'Connor | 9f4e1d9 | 2009-02-08 15:44:08 -0500 | [diff] [blame] | 397 | add_bev(FLATPTR_TO_SEG(rom), pnp->bev, pnp->productname); |
Kevin O'Connor | 3f57b5c | 2008-12-20 23:32:16 -0500 | [diff] [blame] | 398 | else |
| 399 | // Check for BCV (there may be multiple). |
| 400 | while (pnp && pnp->bcv) { |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 401 | add_bcv(FLATPTR_TO_SEG(rom), pnp->bcv, pnp->productname); |
Kevin O'Connor | 3f57b5c | 2008-12-20 23:32:16 -0500 | [diff] [blame] | 402 | pnp = get_pnp_next(rom, pnp); |
| 403 | } |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 404 | } |
| 405 | } |
| 406 | |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 407 | |
| 408 | /**************************************************************** |
| 409 | * VGA init |
| 410 | ****************************************************************/ |
| 411 | |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 412 | // Call into vga code to turn on console. |
| 413 | void |
| 414 | vga_setup() |
| 415 | { |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 416 | VGAbdf = -1; |
| 417 | RomEnd = BUILD_ROM_START; |
| 418 | |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 419 | if (! CONFIG_OPTIONROMS) |
| 420 | return; |
| 421 | |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 422 | dprintf(1, "Scan for VGA option rom\n"); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 423 | |
| 424 | if (CONFIG_OPTIONROMS_DEPLOYED) { |
| 425 | // Option roms are already deployed on the system. |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 426 | init_optionrom((void*)BUILD_ROM_START, 0, 1); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 427 | } else { |
| 428 | // Find and deploy PCI VGA rom. |
Kevin O'Connor | 04eece2 | 2009-07-19 19:05:30 -0400 | [diff] [blame] | 429 | int bdf = VGAbdf = pci_find_vga(); |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 430 | if (bdf >= 0) |
| 431 | init_pcirom(bdf, 1); |
Kevin O'Connor | 09880da | 2009-06-17 20:35:41 -0400 | [diff] [blame] | 432 | |
| 433 | // Find and deploy CBFS vga-style roms not associated with a device. |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 434 | run_cbfs_roms("vgaroms/", 1); |
| 435 | } |
| 436 | |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 437 | if (RomEnd == BUILD_ROM_START) { |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 438 | // No VGA rom found |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 439 | RomEnd += OPTION_ROM_ALIGN; |
Kevin O'Connor | e8f00ee | 2009-07-04 04:04:36 -0400 | [diff] [blame] | 440 | return; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 441 | } |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 442 | |
| 443 | dprintf(1, "Turning on vga console\n"); |
| 444 | struct bregs br; |
| 445 | memset(&br, 0, sizeof(br)); |
Kevin O'Connor | f8e800d | 2009-09-24 21:01:16 -0400 | [diff] [blame] | 446 | br.flags = F_IF; |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 447 | br.ax = 0x0003; |
| 448 | call16_int(0x10, &br); |
| 449 | |
| 450 | // Write to screen. |
Kevin O'Connor | c95d2ce | 2009-07-29 20:41:39 -0400 | [diff] [blame] | 451 | printf("Starting SeaBIOS (version %s)\n\n", VERSION); |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 452 | } |
Kevin O'Connor | d282af7 | 2009-07-04 04:10:32 -0400 | [diff] [blame] | 453 | |
| 454 | void |
| 455 | s3_resume_vga_init() |
| 456 | { |
| 457 | if (!CONFIG_S3_RESUME_VGA_INIT) |
| 458 | return; |
Kevin O'Connor | e773930 | 2009-07-26 19:16:09 -0400 | [diff] [blame] | 459 | struct rom_header *rom = (void*)BUILD_ROM_START; |
Kevin O'Connor | d282af7 | 2009-07-04 04:10:32 -0400 | [diff] [blame] | 460 | if (! is_valid_rom(rom)) |
| 461 | return; |
| 462 | callrom(rom, 0); |
| 463 | } |