blob: 854c33fd1d44e2a2648a809bb6c570c43f2a1b31 [file] [log] [blame]
Kevin O'Connor714325c2008-11-01 20:32:27 -04001// 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'Connorb1b7c2a2009-01-15 20:52:58 -05006// This file may be distributed under the terms of the GNU LGPLv3 license.
Kevin O'Connor714325c2008-11-01 20:32:27 -04007
8#include "bregs.h" // struct bregs
Kevin O'Connor35ae7262009-01-19 15:44:44 -05009#include "farptr.h" // FLATPTR_TO_SEG
Kevin O'Connorc659fde2008-12-28 23:43:20 -050010#include "config.h" // CONFIG_*
Kevin O'Connor714325c2008-11-01 20:32:27 -040011#include "util.h" // dprintf
Kevin O'Connor51fd0a12009-09-12 13:20:14 -040012#include "pci.h" // foreachpci
Kevin O'Connorceea03c2008-11-08 21:36:35 -050013#include "pci_regs.h" // PCI_ROM_ADDRESS
14#include "pci_ids.h" // PCI_CLASS_DISPLAY_VGA
Kevin O'Connorc659fde2008-12-28 23:43:20 -050015#include "boot.h" // IPL
Gerd Hoffmannc4c9fae2009-12-18 12:16:04 +010016#include "paravirt.h" // qemu_cfg_*
Kevin O'Connorceea03c2008-11-08 21:36:35 -050017
18
19/****************************************************************
20 * Definitions
21 ****************************************************************/
Kevin O'Connor714325c2008-11-01 20:32:27 -040022
Kevin O'Connor714325c2008-11-01 20:32:27 -040023struct rom_header {
24 u16 signature;
25 u8 size;
26 u8 initVector[4];
27 u8 reserved[17];
28 u16 pcioffset;
29 u16 pnpoffset;
30} PACKED;
31
32struct pci_data {
33 u32 signature;
34 u16 vendor;
35 u16 device;
36 u16 vitaldata;
37 u16 dlen;
38 u8 drevision;
39 u8 class_lo;
40 u16 class_hi;
41 u16 ilen;
42 u16 irevision;
43 u8 type;
44 u8 indicator;
45 u16 reserved;
46} PACKED;
47
48struct pnp_data {
49 u32 signature;
50 u8 revision;
51 u8 len;
52 u16 nextoffset;
53 u8 reserved_08;
54 u8 checksum;
55 u32 devid;
56 u16 manufacturer;
57 u16 productname;
58 u8 type_lo;
59 u16 type_hi;
60 u8 dev_flags;
61 u16 bcv;
62 u16 dv;
63 u16 bev;
64 u16 reserved_1c;
65 u16 staticresource;
66} PACKED;
67
Kevin O'Connorceea03c2008-11-08 21:36:35 -050068#define OPTION_ROM_SIGNATURE 0xaa55
69#define OPTION_ROM_ALIGN 2048
70#define OPTION_ROM_INITVECTOR offsetof(struct rom_header, initVector[0])
Kevin O'Connor5a1b8282008-11-29 20:39:06 -050071#define PCI_ROM_SIGNATURE 0x52494350 // PCIR
Kevin O'Connor62eea672008-12-06 11:57:45 -050072#define PCIROM_CODETYPE_X86 0
Kevin O'Connorceea03c2008-11-08 21:36:35 -050073
Kevin O'Connore7739302009-07-26 19:16:09 -040074// The end of the last deployed rom.
Kevin O'Connor4d96edc2010-09-25 14:53:15 -040075u32 RomEnd = BUILD_ROM_START;
Kevin O'Connorceea03c2008-11-08 21:36:35 -050076
77
78/****************************************************************
79 * Helper functions
80 ****************************************************************/
81
Kevin O'Connor714325c2008-11-01 20:32:27 -040082// Execute a given option rom.
83static void
Kevin O'Connore8f00ee2009-07-04 04:04:36 -040084__callrom(struct rom_header *rom, u16 offset, u16 bdf)
Kevin O'Connor714325c2008-11-01 20:32:27 -040085{
Kevin O'Connor35ae7262009-01-19 15:44:44 -050086 u16 seg = FLATPTR_TO_SEG(rom);
Kevin O'Connor91b53a72009-05-05 22:52:09 -040087 dprintf(1, "Running option rom at %04x:%04x\n", seg, offset);
Kevin O'Connor714325c2008-11-01 20:32:27 -040088
89 struct bregs br;
90 memset(&br, 0, sizeof(br));
Kevin O'Connorf8e800d2009-09-24 21:01:16 -040091 br.flags = F_IF;
Kevin O'Connorceea03c2008-11-08 21:36:35 -050092 br.ax = bdf;
Kevin O'Connor714325c2008-11-01 20:32:27 -040093 br.bx = 0xffff;
94 br.dx = 0xffff;
95 br.es = SEG_BIOS;
Kevin O'Connor0c3068d2008-12-21 17:51:36 -050096 br.di = get_pnp_offset();
Kevin O'Connor9f985422009-09-09 11:34:39 -040097 br.code = SEGOFF(seg, offset);
Kevin O'Connorad901592009-12-13 11:25:25 -050098 start_preempt();
Kevin O'Connor6e5b4a42008-12-06 13:03:52 -050099 call16big(&br);
Kevin O'Connorad901592009-12-13 11:25:25 -0500100 finish_preempt();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400101
102 debug_serial_setup();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400103}
104
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400105// Execute a given option rom at the standard entry vector.
106static void
107callrom(struct rom_header *rom, u16 bdf)
108{
109 __callrom(rom, OPTION_ROM_INITVECTOR, bdf);
110}
111
Kevin O'Connor0a924122009-02-08 19:43:47 -0500112// Execute a BCV option rom registered via add_bcv().
113void
114call_bcv(u16 seg, u16 ip)
115{
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400116 __callrom(MAKE_FLATPTR(seg, 0), ip, 0);
Kevin O'Connor0a924122009-02-08 19:43:47 -0500117}
118
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500119// Verify that an option rom looks valid
120static int
121is_valid_rom(struct rom_header *rom)
122{
Kevin O'Connorc36273f2009-04-16 20:43:07 -0400123 dprintf(6, "Checking rom %p (sig %x size %d)\n"
124 , rom, rom->signature, rom->size);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500125 if (rom->signature != OPTION_ROM_SIGNATURE)
126 return 0;
Kevin O'Connor674e4602009-04-13 19:19:22 -0400127 if (! rom->size)
128 return 0;
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500129 u32 len = rom->size * 512;
Kevin O'Connor94fd47e2009-02-15 15:21:10 -0500130 u8 sum = checksum(rom, len);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500131 if (sum != 0) {
132 dprintf(1, "Found option rom with bad checksum: loc=%p len=%d sum=%x\n"
133 , rom, len, sum);
134 return 0;
135 }
136 return 1;
137}
138
139// Check if a valid option rom has a pnp struct; return it if so.
140static struct pnp_data *
141get_pnp_rom(struct rom_header *rom)
142{
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400143 struct pnp_data *pnp = (void*)((u8*)rom + rom->pnpoffset);
Kevin O'Connor0c3068d2008-12-21 17:51:36 -0500144 if (pnp->signature != PNP_SIGNATURE)
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500145 return NULL;
146 return pnp;
147}
148
Kevin O'Connor3f57b5c2008-12-20 23:32:16 -0500149// Check for multiple pnp option rom headers.
150static struct pnp_data *
151get_pnp_next(struct rom_header *rom, struct pnp_data *pnp)
152{
153 if (! pnp->nextoffset)
154 return NULL;
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400155 pnp = (void*)((u8*)rom + pnp->nextoffset);
Kevin O'Connor0c3068d2008-12-21 17:51:36 -0500156 if (pnp->signature != PNP_SIGNATURE)
Kevin O'Connor3f57b5c2008-12-20 23:32:16 -0500157 return NULL;
158 return pnp;
159}
160
Kevin O'Connor62eea672008-12-06 11:57:45 -0500161// Check if a valid option rom has a pci struct; return it if so.
162static struct pci_data *
163get_pci_rom(struct rom_header *rom)
164{
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400165 struct pci_data *pci = (void*)((u32)rom + rom->pcioffset);
Kevin O'Connor62eea672008-12-06 11:57:45 -0500166 if (pci->signature != PCI_ROM_SIGNATURE)
167 return NULL;
168 return pci;
169}
170
Kevin O'Connore8264652010-09-15 22:06:19 -0400171// Return start of code in 0xc0000-0xf0000 space.
172static inline u32 _max_rom(void) {
173 extern u8 code32flat_start[], code32init_end[];
Kevin O'Connor4a446d72010-09-25 12:46:38 -0400174 return CONFIG_RELOCATE_INIT ? (u32)code32init_end : (u32)code32flat_start;
Kevin O'Connore8264652010-09-15 22:06:19 -0400175}
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400176// Return the memory position up to which roms may be located.
Kevin O'Connore8264652010-09-15 22:06:19 -0400177static inline u32 max_rom(void) {
178 u32 end = _max_rom();
179 return end > BUILD_BIOS_ADDR ? BUILD_BIOS_ADDR : end;
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400180}
181
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500182// Copy a rom to its permanent location below 1MiB
183static struct rom_header *
184copy_rom(struct rom_header *rom)
185{
186 u32 romsize = rom->size * 512;
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400187 if (RomEnd + romsize > max_rom()) {
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500188 // Option rom doesn't fit.
Kevin O'Connorcfdc13f2010-02-14 13:07:54 -0500189 warn_noalloc();
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500190 return NULL;
191 }
Kevin O'Connorc36273f2009-04-16 20:43:07 -0400192 dprintf(4, "Copying option rom (size %d) from %p to %x\n"
Kevin O'Connore7739302009-07-26 19:16:09 -0400193 , romsize, rom, RomEnd);
Kevin O'Connor34036962009-12-05 18:51:53 -0500194 iomemcpy((void*)RomEnd, rom, romsize);
Kevin O'Connore7739302009-07-26 19:16:09 -0400195 return (void*)RomEnd;
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500196}
197
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400198// Run rom init code and note rom size.
199static int
200init_optionrom(struct rom_header *rom, u16 bdf, int isvga)
201{
202 if (! is_valid_rom(rom))
203 return -1;
204
205 if (isvga || get_pnp_rom(rom))
206 // Only init vga and PnP roms here.
207 callrom(rom, bdf);
208
Kevin O'Connore7739302009-07-26 19:16:09 -0400209 RomEnd = (u32)rom + ALIGN(rom->size * 512, OPTION_ROM_ALIGN);
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400210
211 return 0;
212}
213
214
215/****************************************************************
216 * Roms in CBFS
217 ****************************************************************/
218
219// Check if an option rom is at a hardcoded location or in CBFS.
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500220static struct rom_header *
Kevin O'Connor4c0c85a2009-04-11 23:31:29 -0400221lookup_hardcode(u32 vendev)
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500222{
Kevin O'Connor4c0c85a2009-04-11 23:31:29 -0400223 if (OPTIONROM_VENDEV_1
224 && ((OPTIONROM_VENDEV_1 >> 16)
225 | ((OPTIONROM_VENDEV_1 & 0xffff)) << 16) == vendev)
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400226 return copy_rom((void*)OPTIONROM_MEM_1);
Kevin O'Connor4c0c85a2009-04-11 23:31:29 -0400227 if (OPTIONROM_VENDEV_2
228 && ((OPTIONROM_VENDEV_2 >> 16)
229 | ((OPTIONROM_VENDEV_2 & 0xffff)) << 16) == vendev)
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400230 return copy_rom((void*)OPTIONROM_MEM_2);
Kevin O'Connore2304262010-06-13 16:05:17 -0400231 char fname[17];
232 snprintf(fname, sizeof(fname), "pci%04x,%04x.rom"
233 , pci_vd_to_ven(vendev), pci_vd_to_dev(vendev));
234 int ret = romfile_copy(romfile_find(fname), (void*)RomEnd
235 , max_rom() - RomEnd);
236 if (ret <= 0)
Kevin O'Connorcbd6ca02009-04-27 21:51:13 -0400237 return NULL;
Kevin O'Connore7739302009-07-26 19:16:09 -0400238 return (void*)RomEnd;
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500239}
240
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400241// Run all roms in a given CBFS directory.
242static void
Kevin O'Connore2304262010-06-13 16:05:17 -0400243run_file_roms(const char *prefix, int isvga)
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400244{
Kevin O'Connore2304262010-06-13 16:05:17 -0400245 u32 file = 0;
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400246 for (;;) {
Kevin O'Connore2304262010-06-13 16:05:17 -0400247 file = romfile_findprefix(prefix, file);
Kevin O'Connor1f836252009-08-16 20:17:35 -0400248 if (!file)
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400249 break;
Kevin O'Connore2304262010-06-13 16:05:17 -0400250 int ret = romfile_copy(file, (void*)RomEnd, max_rom() - RomEnd);
Kevin O'Connor1f836252009-08-16 20:17:35 -0400251 if (ret > 0)
252 init_optionrom((void*)RomEnd, 0, isvga);
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400253 }
254}
255
256
257/****************************************************************
258 * PCI roms
259 ****************************************************************/
260
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500261// Map the option rom of a given PCI device.
262static struct rom_header *
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400263map_pcirom(u16 bdf, u32 vendev)
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500264{
Kevin O'Connor91b53a72009-05-05 22:52:09 -0400265 dprintf(6, "Attempting to map option rom on dev %02x:%02x.%x\n"
266 , pci_bdf_to_bus(bdf), pci_bdf_to_dev(bdf), pci_bdf_to_fn(bdf));
Kevin O'Connore5a36d52008-11-12 20:10:13 -0500267
Kevin O'Connor62eea672008-12-06 11:57:45 -0500268 u8 htype = pci_config_readb(bdf, PCI_HEADER_TYPE);
269 if ((htype & 0x7f) != PCI_HEADER_TYPE_NORMAL) {
270 dprintf(6, "Skipping non-normal pci device (type=%x)\n", htype);
271 return NULL;
272 }
273
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -0500274 u32 orig = pci_config_readl(bdf, PCI_ROM_ADDRESS);
275 pci_config_writel(bdf, PCI_ROM_ADDRESS, ~PCI_ROM_ADDRESS_ENABLE);
276 u32 sz = pci_config_readl(bdf, PCI_ROM_ADDRESS);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500277
Kevin O'Connore5a36d52008-11-12 20:10:13 -0500278 dprintf(6, "Option rom sizing returned %x %x\n", orig, sz);
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500279 orig &= ~PCI_ROM_ADDRESS_ENABLE;
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500280 if (!sz || sz == 0xffffffff)
281 goto fail;
282
Kevin O'Connor64cf2fb2009-04-18 17:01:02 -0400283 if (orig == sz || (u32)(orig + 4*1024*1024) < 20*1024*1024) {
284 // Don't try to map to a pci addresses at its max, in the last
285 // 4MiB of ram, or the first 16MiB of ram.
Kevin O'Connor62eea672008-12-06 11:57:45 -0500286 dprintf(6, "Preset rom address doesn't look valid\n");
287 goto fail;
288 }
289
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500290 // Looks like a rom - enable it.
291 pci_config_writel(bdf, PCI_ROM_ADDRESS, orig | PCI_ROM_ADDRESS_ENABLE);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500292
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400293 struct rom_header *rom = (void*)orig;
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500294 for (;;) {
Kevin O'Connor49cc72b2010-05-23 10:22:23 -0400295 dprintf(5, "Inspecting possible rom at %p (vd=%04x:%04x"
296 " bdf=%02x:%02x.%x)\n"
297 , rom, pci_vd_to_ven(vendev), pci_vd_to_dev(vendev)
298 , pci_bdf_to_bus(bdf), pci_bdf_to_dev(bdf), pci_bdf_to_fn(bdf));
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500299 if (rom->signature != OPTION_ROM_SIGNATURE) {
300 dprintf(6, "No option rom signature (got %x)\n", rom->signature);
301 goto fail;
302 }
Kevin O'Connor62eea672008-12-06 11:57:45 -0500303 struct pci_data *pci = get_pci_rom(rom);
304 if (! pci) {
305 dprintf(6, "No valid pci signature found\n");
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500306 goto fail;
307 }
Kevin O'Connor62eea672008-12-06 11:57:45 -0500308
Kevin O'Connor49cc72b2010-05-23 10:22:23 -0400309 u32 vd = pci_vd(pci->vendor, pci->device);
Kevin O'Connor62eea672008-12-06 11:57:45 -0500310 if (vd == vendev && pci->type == PCIROM_CODETYPE_X86)
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500311 // A match
312 break;
Kevin O'Connorc95d2ce2009-07-29 20:41:39 -0400313 dprintf(6, "Didn't match dev/ven (got %08x) or type (got %d)\n"
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500314 , vd, pci->type);
315 if (pci->indicator & 0x80) {
316 dprintf(6, "No more images left\n");
317 goto fail;
318 }
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400319 rom = (void*)((u32)rom + pci->ilen * 512);
Kevin O'Connore5a36d52008-11-12 20:10:13 -0500320 }
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500321
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500322 rom = copy_rom(rom);
323 pci_config_writel(bdf, PCI_ROM_ADDRESS, orig);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500324 return rom;
325fail:
326 // Not valid - restore original and exit.
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -0500327 pci_config_writel(bdf, PCI_ROM_ADDRESS, orig);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500328 return NULL;
329}
330
331// Attempt to map and initialize the option rom on a given PCI device.
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400332static int
333init_pcirom(u16 bdf, int isvga)
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500334{
Kevin O'Connor4c0c85a2009-04-11 23:31:29 -0400335 u32 vendev = pci_config_readl(bdf, PCI_VENDOR_ID);
Kevin O'Connor49cc72b2010-05-23 10:22:23 -0400336 dprintf(4, "Attempting to init PCI bdf %02x:%02x.%x (vd %04x:%04x)\n"
Kevin O'Connor91b53a72009-05-05 22:52:09 -0400337 , pci_bdf_to_bus(bdf), pci_bdf_to_dev(bdf), pci_bdf_to_fn(bdf)
Kevin O'Connor49cc72b2010-05-23 10:22:23 -0400338 , pci_vd_to_ven(vendev), pci_vd_to_dev(vendev));
Kevin O'Connor4c0c85a2009-04-11 23:31:29 -0400339 struct rom_header *rom = lookup_hardcode(vendev);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500340 if (! rom)
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400341 rom = map_pcirom(bdf, vendev);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500342 if (! rom)
343 // No ROM present.
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400344 return -1;
345 return init_optionrom(rom, bdf, isvga);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500346}
347
348
349/****************************************************************
350 * Non-VGA option rom init
351 ****************************************************************/
352
353void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500354optionrom_setup(void)
Kevin O'Connor714325c2008-11-01 20:32:27 -0400355{
356 if (! CONFIG_OPTIONROMS)
357 return;
358
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500359 dprintf(1, "Scan for option roms\n");
360
Kevin O'Connore7739302009-07-26 19:16:09 -0400361 u32 post_vga = RomEnd;
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500362
363 if (CONFIG_OPTIONROMS_DEPLOYED) {
364 // Option roms are already deployed on the system.
Kevin O'Connore7739302009-07-26 19:16:09 -0400365 u32 pos = RomEnd;
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400366 while (pos < max_rom()) {
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400367 int ret = init_optionrom((void*)pos, 0, 0);
368 if (ret)
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500369 pos += OPTION_ROM_ALIGN;
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400370 else
Kevin O'Connore7739302009-07-26 19:16:09 -0400371 pos = RomEnd;
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500372 }
373 } else {
374 // Find and deploy PCI roms.
Kevin O'Connore6338322008-11-29 20:31:49 -0500375 int bdf, max;
Kevin O'Connor4132e022008-12-04 19:39:10 -0500376 foreachpci(bdf, max) {
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -0500377 u16 v = pci_config_readw(bdf, PCI_CLASS_DEVICE);
Kevin O'Connor62eea672008-12-06 11:57:45 -0500378 if (v == 0x0000 || v == 0xffff || v == PCI_CLASS_DISPLAY_VGA
379 || (CONFIG_ATA && v == PCI_CLASS_STORAGE_IDE))
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -0500380 continue;
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400381 init_pcirom(bdf, 0);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500382 }
Kevin O'Connor1edc89d2009-04-30 21:50:35 -0400383
384 // Find and deploy CBFS roms not associated with a device.
Kevin O'Connore2304262010-06-13 16:05:17 -0400385 run_file_roms("genroms/", 0);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500386 }
387
388 // All option roms found and deployed - now build BEV/BCV vectors.
389
390 u32 pos = post_vga;
Kevin O'Connore7739302009-07-26 19:16:09 -0400391 while (pos < RomEnd) {
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400392 struct rom_header *rom = (void*)pos;
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500393 if (! is_valid_rom(rom)) {
394 pos += OPTION_ROM_ALIGN;
Kevin O'Connor714325c2008-11-01 20:32:27 -0400395 continue;
396 }
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500397 pos += ALIGN(rom->size * 512, OPTION_ROM_ALIGN);
398 struct pnp_data *pnp = get_pnp_rom(rom);
399 if (! pnp) {
Kevin O'Connor0a924122009-02-08 19:43:47 -0500400 // Legacy rom.
401 add_bcv(FLATPTR_TO_SEG(rom), OPTION_ROM_INITVECTOR, 0);
Kevin O'Connor714325c2008-11-01 20:32:27 -0400402 continue;
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500403 }
404 // PnP rom.
405 if (pnp->bev)
406 // Can boot system - add to IPL list.
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500407 add_bev(FLATPTR_TO_SEG(rom), pnp->bev, pnp->productname);
Kevin O'Connor3f57b5c2008-12-20 23:32:16 -0500408 else
409 // Check for BCV (there may be multiple).
410 while (pnp && pnp->bcv) {
Kevin O'Connor0a924122009-02-08 19:43:47 -0500411 add_bcv(FLATPTR_TO_SEG(rom), pnp->bcv, pnp->productname);
Kevin O'Connor3f57b5c2008-12-20 23:32:16 -0500412 pnp = get_pnp_next(rom, pnp);
413 }
Kevin O'Connor714325c2008-11-01 20:32:27 -0400414 }
415}
416
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500417
418/****************************************************************
419 * VGA init
420 ****************************************************************/
421
Kevin O'Connor714325c2008-11-01 20:32:27 -0400422// Call into vga code to turn on console.
423void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500424vga_setup(void)
Kevin O'Connor714325c2008-11-01 20:32:27 -0400425{
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500426 if (! CONFIG_OPTIONROMS)
427 return;
428
Kevin O'Connor714325c2008-11-01 20:32:27 -0400429 dprintf(1, "Scan for VGA option rom\n");
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500430
431 if (CONFIG_OPTIONROMS_DEPLOYED) {
432 // Option roms are already deployed on the system.
Kevin O'Connore7739302009-07-26 19:16:09 -0400433 init_optionrom((void*)BUILD_ROM_START, 0, 1);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500434 } else {
Kevin O'Connore8264652010-09-15 22:06:19 -0400435 // Clear option rom memory
436 memset((void*)RomEnd, 0, _max_rom() - RomEnd);
437
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500438 // Find and deploy PCI VGA rom.
Kevin O'Connor04eece22009-07-19 19:05:30 -0400439 int bdf = VGAbdf = pci_find_vga();
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400440 if (bdf >= 0)
441 init_pcirom(bdf, 1);
Kevin O'Connor09880da2009-06-17 20:35:41 -0400442
443 // Find and deploy CBFS vga-style roms not associated with a device.
Kevin O'Connore2304262010-06-13 16:05:17 -0400444 run_file_roms("vgaroms/", 1);
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400445 }
446
Kevin O'Connore7739302009-07-26 19:16:09 -0400447 if (RomEnd == BUILD_ROM_START) {
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400448 // No VGA rom found
Kevin O'Connore7739302009-07-26 19:16:09 -0400449 RomEnd += OPTION_ROM_ALIGN;
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400450 return;
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500451 }
Kevin O'Connor714325c2008-11-01 20:32:27 -0400452
Kevin O'Connorafbed1b2010-06-28 07:34:53 -0400453 enable_vga_console();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400454}
Kevin O'Connord282af72009-07-04 04:10:32 -0400455
456void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500457s3_resume_vga_init(void)
Kevin O'Connord282af72009-07-04 04:10:32 -0400458{
459 if (!CONFIG_S3_RESUME_VGA_INIT)
460 return;
Kevin O'Connore7739302009-07-26 19:16:09 -0400461 struct rom_header *rom = (void*)BUILD_ROM_START;
Kevin O'Connord282af72009-07-04 04:10:32 -0400462 if (! is_valid_rom(rom))
463 return;
464 callrom(rom, 0);
465}