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 | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 12 | #include "pci.h" // pci_find_class |
| 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_START 0xc0000 |
| 68 | #define OPTION_ROM_SIGNATURE 0xaa55 |
| 69 | #define OPTION_ROM_ALIGN 2048 |
| 70 | #define OPTION_ROM_INITVECTOR offsetof(struct rom_header, initVector[0]) |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 71 | #define PCI_ROM_SIGNATURE 0x52494350 // PCIR |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 72 | #define PCIROM_CODETYPE_X86 0 |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 73 | |
| 74 | // Next available position for an option rom. |
| 75 | static u32 next_rom; |
| 76 | |
| 77 | |
| 78 | /**************************************************************** |
| 79 | * Helper functions |
| 80 | ****************************************************************/ |
| 81 | |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 82 | // Execute a given option rom. |
| 83 | static void |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 84 | callrom(struct rom_header *rom, u16 offset, u16 bdf) |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 85 | { |
Kevin O'Connor | 35ae726 | 2009-01-19 15:44:44 -0500 | [diff] [blame] | 86 | u16 seg = FLATPTR_TO_SEG(rom); |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 87 | dprintf(1, "Running option rom at %x:%x\n", seg, offset); |
| 88 | |
| 89 | struct bregs br; |
| 90 | memset(&br, 0, sizeof(br)); |
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 | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 96 | br.cs = seg; |
| 97 | br.ip = offset; |
Kevin O'Connor | 6e5b4a4 | 2008-12-06 13:03:52 -0500 | [diff] [blame] | 98 | call16big(&br); |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 99 | |
| 100 | debug_serial_setup(); |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 101 | } |
| 102 | |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 103 | // Execute a BCV option rom registered via add_bcv(). |
| 104 | void |
| 105 | call_bcv(u16 seg, u16 ip) |
| 106 | { |
| 107 | callrom(MAKE_FLATPTR(seg, 0), ip, 0); |
| 108 | } |
| 109 | |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 110 | // Verify that an option rom looks valid |
| 111 | static int |
| 112 | is_valid_rom(struct rom_header *rom) |
| 113 | { |
Kevin O'Connor | c36273f | 2009-04-16 20:43:07 -0400 | [diff] [blame] | 114 | dprintf(6, "Checking rom %p (sig %x size %d)\n" |
| 115 | , rom, rom->signature, rom->size); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 116 | if (rom->signature != OPTION_ROM_SIGNATURE) |
| 117 | return 0; |
Kevin O'Connor | 674e460 | 2009-04-13 19:19:22 -0400 | [diff] [blame] | 118 | if (! rom->size) |
| 119 | return 0; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 120 | u32 len = rom->size * 512; |
Kevin O'Connor | 94fd47e | 2009-02-15 15:21:10 -0500 | [diff] [blame] | 121 | u8 sum = checksum(rom, len); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 122 | if (sum != 0) { |
| 123 | dprintf(1, "Found option rom with bad checksum: loc=%p len=%d sum=%x\n" |
| 124 | , rom, len, sum); |
| 125 | return 0; |
| 126 | } |
| 127 | return 1; |
| 128 | } |
| 129 | |
| 130 | // Check if a valid option rom has a pnp struct; return it if so. |
| 131 | static struct pnp_data * |
| 132 | get_pnp_rom(struct rom_header *rom) |
| 133 | { |
| 134 | struct pnp_data *pnp = (struct pnp_data *)((u8*)rom + rom->pnpoffset); |
Kevin O'Connor | 0c3068d | 2008-12-21 17:51:36 -0500 | [diff] [blame] | 135 | if (pnp->signature != PNP_SIGNATURE) |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 136 | return NULL; |
| 137 | return pnp; |
| 138 | } |
| 139 | |
Kevin O'Connor | 3f57b5c | 2008-12-20 23:32:16 -0500 | [diff] [blame] | 140 | // Check for multiple pnp option rom headers. |
| 141 | static struct pnp_data * |
| 142 | get_pnp_next(struct rom_header *rom, struct pnp_data *pnp) |
| 143 | { |
| 144 | if (! pnp->nextoffset) |
| 145 | return NULL; |
| 146 | pnp = (struct pnp_data *)((u8*)rom + pnp->nextoffset); |
Kevin O'Connor | 0c3068d | 2008-12-21 17:51:36 -0500 | [diff] [blame] | 147 | if (pnp->signature != PNP_SIGNATURE) |
Kevin O'Connor | 3f57b5c | 2008-12-20 23:32:16 -0500 | [diff] [blame] | 148 | return NULL; |
| 149 | return pnp; |
| 150 | } |
| 151 | |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 152 | // Check if a valid option rom has a pci struct; return it if so. |
| 153 | static struct pci_data * |
| 154 | get_pci_rom(struct rom_header *rom) |
| 155 | { |
| 156 | struct pci_data *pci = (struct pci_data *)((u32)rom + rom->pcioffset); |
| 157 | if (pci->signature != PCI_ROM_SIGNATURE) |
| 158 | return NULL; |
| 159 | return pci; |
| 160 | } |
| 161 | |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 162 | // Copy a rom to its permanent location below 1MiB |
| 163 | static struct rom_header * |
| 164 | copy_rom(struct rom_header *rom) |
| 165 | { |
| 166 | u32 romsize = rom->size * 512; |
| 167 | if (next_rom + romsize > BUILD_BIOS_ADDR) { |
| 168 | // Option rom doesn't fit. |
| 169 | dprintf(1, "Option rom %p doesn't fit.\n", rom); |
| 170 | return NULL; |
| 171 | } |
Kevin O'Connor | c36273f | 2009-04-16 20:43:07 -0400 | [diff] [blame] | 172 | dprintf(4, "Copying option rom (size %d) from %p to %x\n" |
| 173 | , romsize, rom, next_rom); |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 174 | memcpy((void*)next_rom, rom, romsize); |
| 175 | return (struct rom_header *)next_rom; |
| 176 | } |
| 177 | |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 178 | // Check if an option rom is at a hardcoded location for a device. |
| 179 | static struct rom_header * |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 180 | lookup_hardcode(u32 vendev) |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 181 | { |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 182 | if (OPTIONROM_VENDEV_1 |
| 183 | && ((OPTIONROM_VENDEV_1 >> 16) |
| 184 | | ((OPTIONROM_VENDEV_1 & 0xffff)) << 16) == vendev) |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 185 | return copy_rom((struct rom_header *)OPTIONROM_MEM_1); |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 186 | if (OPTIONROM_VENDEV_2 |
| 187 | && ((OPTIONROM_VENDEV_2 >> 16) |
| 188 | | ((OPTIONROM_VENDEV_2 & 0xffff)) << 16) == vendev) |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 189 | return copy_rom((struct rom_header *)OPTIONROM_MEM_2); |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 190 | struct rom_header *rom = cb_find_optionrom(vendev); |
| 191 | if (rom) |
| 192 | return copy_rom(rom); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 193 | return NULL; |
| 194 | } |
| 195 | |
| 196 | // Map the option rom of a given PCI device. |
| 197 | static struct rom_header * |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 198 | map_optionrom(u16 bdf, u32 vendev) |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 199 | { |
Kevin O'Connor | e5a36d5 | 2008-11-12 20:10:13 -0500 | [diff] [blame] | 200 | dprintf(6, "Attempting to map option rom on dev %x\n", bdf); |
| 201 | |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 202 | u8 htype = pci_config_readb(bdf, PCI_HEADER_TYPE); |
| 203 | if ((htype & 0x7f) != PCI_HEADER_TYPE_NORMAL) { |
| 204 | dprintf(6, "Skipping non-normal pci device (type=%x)\n", htype); |
| 205 | return NULL; |
| 206 | } |
| 207 | |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 208 | u32 orig = pci_config_readl(bdf, PCI_ROM_ADDRESS); |
| 209 | pci_config_writel(bdf, PCI_ROM_ADDRESS, ~PCI_ROM_ADDRESS_ENABLE); |
| 210 | u32 sz = pci_config_readl(bdf, PCI_ROM_ADDRESS); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 211 | |
Kevin O'Connor | e5a36d5 | 2008-11-12 20:10:13 -0500 | [diff] [blame] | 212 | dprintf(6, "Option rom sizing returned %x %x\n", orig, sz); |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 213 | orig &= ~PCI_ROM_ADDRESS_ENABLE; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 214 | if (!sz || sz == 0xffffffff) |
| 215 | goto fail; |
| 216 | |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 217 | if (orig < 16*1024*1024) { |
| 218 | dprintf(6, "Preset rom address doesn't look valid\n"); |
| 219 | goto fail; |
| 220 | } |
| 221 | |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 222 | // Looks like a rom - enable it. |
| 223 | 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] | 224 | |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 225 | struct rom_header *rom = (struct rom_header *)orig; |
| 226 | for (;;) { |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 227 | dprintf(5, "Inspecting possible rom at %p (dv=%x bdf=%x)\n" |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 228 | , rom, vendev, bdf); |
| 229 | if (rom->signature != OPTION_ROM_SIGNATURE) { |
| 230 | dprintf(6, "No option rom signature (got %x)\n", rom->signature); |
| 231 | goto fail; |
| 232 | } |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 233 | struct pci_data *pci = get_pci_rom(rom); |
| 234 | if (! pci) { |
| 235 | dprintf(6, "No valid pci signature found\n"); |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 236 | goto fail; |
| 237 | } |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 238 | |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 239 | u32 vd = (pci->device << 16) | pci->vendor; |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 240 | if (vd == vendev && pci->type == PCIROM_CODETYPE_X86) |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 241 | // A match |
| 242 | break; |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 243 | dprintf(6, "Didn't match dev/ven (got %x) or type (got %d)\n" |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 244 | , vd, pci->type); |
| 245 | if (pci->indicator & 0x80) { |
| 246 | dprintf(6, "No more images left\n"); |
| 247 | goto fail; |
| 248 | } |
| 249 | rom = (struct rom_header *)((u32)rom + pci->ilen * 512); |
Kevin O'Connor | e5a36d5 | 2008-11-12 20:10:13 -0500 | [diff] [blame] | 250 | } |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 251 | |
Kevin O'Connor | 5a1b828 | 2008-11-29 20:39:06 -0500 | [diff] [blame] | 252 | rom = copy_rom(rom); |
| 253 | pci_config_writel(bdf, PCI_ROM_ADDRESS, orig); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 254 | return rom; |
| 255 | fail: |
| 256 | // Not valid - restore original and exit. |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 257 | pci_config_writel(bdf, PCI_ROM_ADDRESS, orig); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 258 | return NULL; |
| 259 | } |
| 260 | |
| 261 | // Attempt to map and initialize the option rom on a given PCI device. |
| 262 | static struct rom_header * |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 263 | init_optionrom(u16 bdf) |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 264 | { |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 265 | u32 vendev = pci_config_readl(bdf, PCI_VENDOR_ID); |
| 266 | dprintf(4, "Attempting to init PCI bdf %x (dev/ven %x)\n", bdf, vendev); |
| 267 | struct rom_header *rom = lookup_hardcode(vendev); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 268 | if (! rom) |
Kevin O'Connor | 4c0c85a | 2009-04-11 23:31:29 -0400 | [diff] [blame] | 269 | rom = map_optionrom(bdf, vendev); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 270 | if (! rom) |
| 271 | // No ROM present. |
| 272 | return NULL; |
| 273 | |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 274 | if (! is_valid_rom(rom)) |
| 275 | return NULL; |
| 276 | |
| 277 | if (get_pnp_rom(rom)) |
| 278 | // Init the PnP rom. |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 279 | callrom(rom, OPTION_ROM_INITVECTOR, bdf); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 280 | |
| 281 | next_rom += ALIGN(rom->size * 512, OPTION_ROM_ALIGN); |
| 282 | |
| 283 | return rom; |
| 284 | } |
| 285 | |
| 286 | |
| 287 | /**************************************************************** |
| 288 | * Non-VGA option rom init |
| 289 | ****************************************************************/ |
| 290 | |
| 291 | void |
| 292 | optionrom_setup() |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 293 | { |
| 294 | if (! CONFIG_OPTIONROMS) |
| 295 | return; |
| 296 | |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 297 | dprintf(1, "Scan for option roms\n"); |
| 298 | |
| 299 | u32 post_vga = next_rom; |
| 300 | |
| 301 | if (CONFIG_OPTIONROMS_DEPLOYED) { |
| 302 | // Option roms are already deployed on the system. |
| 303 | u32 pos = next_rom; |
| 304 | while (pos < BUILD_BIOS_ADDR) { |
| 305 | struct rom_header *rom = (struct rom_header *)pos; |
| 306 | if (! is_valid_rom(rom)) { |
| 307 | pos += OPTION_ROM_ALIGN; |
| 308 | continue; |
| 309 | } |
| 310 | if (get_pnp_rom(rom)) |
| 311 | callrom(rom, OPTION_ROM_INITVECTOR, 0); |
| 312 | pos += ALIGN(rom->size * 512, OPTION_ROM_ALIGN); |
| 313 | next_rom = pos; |
| 314 | } |
| 315 | } else { |
| 316 | // Find and deploy PCI roms. |
Kevin O'Connor | e633832 | 2008-11-29 20:31:49 -0500 | [diff] [blame] | 317 | int bdf, max; |
Kevin O'Connor | 4132e02 | 2008-12-04 19:39:10 -0500 | [diff] [blame] | 318 | foreachpci(bdf, max) { |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 319 | u16 v = pci_config_readw(bdf, PCI_CLASS_DEVICE); |
Kevin O'Connor | 62eea67 | 2008-12-06 11:57:45 -0500 | [diff] [blame] | 320 | if (v == 0x0000 || v == 0xffff || v == PCI_CLASS_DISPLAY_VGA |
| 321 | || (CONFIG_ATA && v == PCI_CLASS_STORAGE_IDE)) |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 322 | continue; |
| 323 | init_optionrom(bdf); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 324 | } |
| 325 | } |
| 326 | |
| 327 | // All option roms found and deployed - now build BEV/BCV vectors. |
| 328 | |
| 329 | u32 pos = post_vga; |
| 330 | while (pos < next_rom) { |
| 331 | struct rom_header *rom = (struct rom_header *)pos; |
| 332 | if (! is_valid_rom(rom)) { |
| 333 | pos += OPTION_ROM_ALIGN; |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 334 | continue; |
| 335 | } |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 336 | pos += ALIGN(rom->size * 512, OPTION_ROM_ALIGN); |
| 337 | struct pnp_data *pnp = get_pnp_rom(rom); |
| 338 | if (! pnp) { |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 339 | // Legacy rom. |
| 340 | add_bcv(FLATPTR_TO_SEG(rom), OPTION_ROM_INITVECTOR, 0); |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 341 | continue; |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 342 | } |
| 343 | // PnP rom. |
| 344 | if (pnp->bev) |
| 345 | // Can boot system - add to IPL list. |
Kevin O'Connor | 9f4e1d9 | 2009-02-08 15:44:08 -0500 | [diff] [blame] | 346 | add_bev(FLATPTR_TO_SEG(rom), pnp->bev, pnp->productname); |
Kevin O'Connor | 3f57b5c | 2008-12-20 23:32:16 -0500 | [diff] [blame] | 347 | else |
| 348 | // Check for BCV (there may be multiple). |
| 349 | while (pnp && pnp->bcv) { |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 350 | add_bcv(FLATPTR_TO_SEG(rom), pnp->bcv, pnp->productname); |
Kevin O'Connor | 3f57b5c | 2008-12-20 23:32:16 -0500 | [diff] [blame] | 351 | pnp = get_pnp_next(rom, pnp); |
| 352 | } |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 353 | } |
| 354 | } |
| 355 | |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 356 | |
| 357 | /**************************************************************** |
| 358 | * VGA init |
| 359 | ****************************************************************/ |
| 360 | |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 361 | // Call into vga code to turn on console. |
| 362 | void |
| 363 | vga_setup() |
| 364 | { |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 365 | if (! CONFIG_OPTIONROMS) |
| 366 | return; |
| 367 | |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 368 | dprintf(1, "Scan for VGA option rom\n"); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 369 | next_rom = OPTION_ROM_START; |
| 370 | |
| 371 | if (CONFIG_OPTIONROMS_DEPLOYED) { |
| 372 | // Option roms are already deployed on the system. |
| 373 | struct rom_header *rom = (struct rom_header *)OPTION_ROM_START; |
| 374 | if (! is_valid_rom(rom)) |
| 375 | return; |
| 376 | callrom(rom, OPTION_ROM_INITVECTOR, 0); |
| 377 | next_rom += ALIGN(rom->size * 512, OPTION_ROM_ALIGN); |
| 378 | } else { |
| 379 | // Find and deploy PCI VGA rom. |
Kevin O'Connor | 4132e02 | 2008-12-04 19:39:10 -0500 | [diff] [blame] | 380 | int bdf = pci_find_class(PCI_CLASS_DISPLAY_VGA); |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 381 | if (bdf < 0) |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 382 | // Device not found |
| 383 | return; |
| 384 | |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 385 | struct rom_header *rom = init_optionrom(bdf); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 386 | if (rom && !get_pnp_rom(rom)) |
| 387 | // Call rom even if it isn't a pnp rom. |
Kevin O'Connor | be19cdc | 2008-11-09 15:33:47 -0500 | [diff] [blame] | 388 | callrom(rom, OPTION_ROM_INITVECTOR, bdf); |
Kevin O'Connor | ceea03c | 2008-11-08 21:36:35 -0500 | [diff] [blame] | 389 | } |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 390 | |
| 391 | dprintf(1, "Turning on vga console\n"); |
| 392 | struct bregs br; |
| 393 | memset(&br, 0, sizeof(br)); |
| 394 | br.ax = 0x0003; |
| 395 | call16_int(0x10, &br); |
| 396 | |
| 397 | // Write to screen. |
| 398 | printf("Starting SeaBIOS\n\n"); |
| 399 | } |