blob: caa215106bff27b2108d71ed8bfbbc276c877c03 [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'Connor862d5fb2011-06-20 22:19:17 -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
Julian Pidancetbc6097b2011-12-19 05:07:54 +000016#include "optionroms.h" // struct rom_header
Kevin O'Connorceea03c2008-11-08 21:36:35 -050017
Kevin O'Connorceea03c2008-11-08 21:36:35 -050018
19/****************************************************************
20 * Helper functions
21 ****************************************************************/
22
Kevin O'Connor714325c2008-11-01 20:32:27 -040023// Execute a given option rom.
24static void
Kevin O'Connore8f00ee2009-07-04 04:04:36 -040025__callrom(struct rom_header *rom, u16 offset, u16 bdf)
Kevin O'Connor714325c2008-11-01 20:32:27 -040026{
Kevin O'Connor35ae7262009-01-19 15:44:44 -050027 u16 seg = FLATPTR_TO_SEG(rom);
Kevin O'Connor91b53a72009-05-05 22:52:09 -040028 dprintf(1, "Running option rom at %04x:%04x\n", seg, offset);
Kevin O'Connor714325c2008-11-01 20:32:27 -040029
30 struct bregs br;
31 memset(&br, 0, sizeof(br));
Kevin O'Connorf8e800d2009-09-24 21:01:16 -040032 br.flags = F_IF;
Kevin O'Connorceea03c2008-11-08 21:36:35 -050033 br.ax = bdf;
Kevin O'Connor714325c2008-11-01 20:32:27 -040034 br.bx = 0xffff;
35 br.dx = 0xffff;
36 br.es = SEG_BIOS;
Kevin O'Connor0c3068d2008-12-21 17:51:36 -050037 br.di = get_pnp_offset();
Kevin O'Connor9f985422009-09-09 11:34:39 -040038 br.code = SEGOFF(seg, offset);
Kevin O'Connorad901592009-12-13 11:25:25 -050039 start_preempt();
Kevin O'Connorc7ffbac2012-03-25 11:04:10 -040040 farcall16big(&br);
Kevin O'Connorad901592009-12-13 11:25:25 -050041 finish_preempt();
Kevin O'Connor714325c2008-11-01 20:32:27 -040042
Kevin O'Connord83c87b2013-01-21 01:14:12 -050043 debug_serial_preinit();
Kevin O'Connor714325c2008-11-01 20:32:27 -040044}
45
Kevin O'Connore8f00ee2009-07-04 04:04:36 -040046// Execute a given option rom at the standard entry vector.
David Woodhouse5c8dd962013-01-25 19:31:47 -060047void
Kevin O'Connore8f00ee2009-07-04 04:04:36 -040048callrom(struct rom_header *rom, u16 bdf)
49{
50 __callrom(rom, OPTION_ROM_INITVECTOR, bdf);
51}
52
Kevin O'Connor0a924122009-02-08 19:43:47 -050053// Execute a BCV option rom registered via add_bcv().
54void
55call_bcv(u16 seg, u16 ip)
56{
Kevin O'Connore8f00ee2009-07-04 04:04:36 -040057 __callrom(MAKE_FLATPTR(seg, 0), ip, 0);
Kevin O'Connor0a924122009-02-08 19:43:47 -050058}
59
Kevin O'Connore010d852011-07-05 20:47:35 -040060static int EnforceChecksum;
61
Kevin O'Connorceea03c2008-11-08 21:36:35 -050062// Verify that an option rom looks valid
63static int
64is_valid_rom(struct rom_header *rom)
65{
Kevin O'Connorc36273f2009-04-16 20:43:07 -040066 dprintf(6, "Checking rom %p (sig %x size %d)\n"
67 , rom, rom->signature, rom->size);
Kevin O'Connorceea03c2008-11-08 21:36:35 -050068 if (rom->signature != OPTION_ROM_SIGNATURE)
69 return 0;
Kevin O'Connor674e4602009-04-13 19:19:22 -040070 if (! rom->size)
71 return 0;
Kevin O'Connorceea03c2008-11-08 21:36:35 -050072 u32 len = rom->size * 512;
Kevin O'Connor94fd47e2009-02-15 15:21:10 -050073 u8 sum = checksum(rom, len);
Kevin O'Connorceea03c2008-11-08 21:36:35 -050074 if (sum != 0) {
75 dprintf(1, "Found option rom with bad checksum: loc=%p len=%d sum=%x\n"
76 , rom, len, sum);
Kevin O'Connore010d852011-07-05 20:47:35 -040077 if (EnforceChecksum)
Kevin O'Connorcc975642011-03-06 19:22:46 -050078 return 0;
Kevin O'Connorceea03c2008-11-08 21:36:35 -050079 }
80 return 1;
81}
82
83// Check if a valid option rom has a pnp struct; return it if so.
84static struct pnp_data *
85get_pnp_rom(struct rom_header *rom)
86{
Kevin O'Connore8f00ee2009-07-04 04:04:36 -040087 struct pnp_data *pnp = (void*)((u8*)rom + rom->pnpoffset);
Kevin O'Connor0c3068d2008-12-21 17:51:36 -050088 if (pnp->signature != PNP_SIGNATURE)
Kevin O'Connorceea03c2008-11-08 21:36:35 -050089 return NULL;
90 return pnp;
91}
92
Kevin O'Connor3f57b5c2008-12-20 23:32:16 -050093// Check for multiple pnp option rom headers.
94static struct pnp_data *
95get_pnp_next(struct rom_header *rom, struct pnp_data *pnp)
96{
97 if (! pnp->nextoffset)
98 return NULL;
Kevin O'Connore8f00ee2009-07-04 04:04:36 -040099 pnp = (void*)((u8*)rom + pnp->nextoffset);
Kevin O'Connor0c3068d2008-12-21 17:51:36 -0500100 if (pnp->signature != PNP_SIGNATURE)
Kevin O'Connor3f57b5c2008-12-20 23:32:16 -0500101 return NULL;
102 return pnp;
103}
104
Kevin O'Connor62eea672008-12-06 11:57:45 -0500105// Check if a valid option rom has a pci struct; return it if so.
106static struct pci_data *
107get_pci_rom(struct rom_header *rom)
108{
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400109 struct pci_data *pd = (void*)((u32)rom + rom->pcioffset);
110 if (pd->signature != PCI_ROM_SIGNATURE)
Kevin O'Connor62eea672008-12-06 11:57:45 -0500111 return NULL;
Kevin O'Connor97dce0f2013-02-15 22:46:09 -0500112 if (rom->pcioffset & 3)
113 dprintf(1, "WARNING! Found unaligned PCI rom (vd=%04x:%04x)\n"
114 , pd->vendor, pd->device);
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400115 return pd;
Kevin O'Connor62eea672008-12-06 11:57:45 -0500116}
117
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400118// Run rom init code and note rom size.
119static int
120init_optionrom(struct rom_header *rom, u16 bdf, int isvga)
121{
122 if (! is_valid_rom(rom))
123 return -1;
Kevin O'Connor5e019082012-05-20 21:11:43 -0400124 struct rom_header *newrom = rom_reserve(rom->size * 512);
125 if (!newrom) {
126 warn_noalloc();
127 return -1;
128 }
129 if (newrom != rom)
130 memmove(newrom, rom, rom->size * 512);
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400131
Kevin O'Connor5e019082012-05-20 21:11:43 -0400132 if (isvga || get_pnp_rom(newrom))
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400133 // Only init vga and PnP roms here.
Kevin O'Connor5e019082012-05-20 21:11:43 -0400134 callrom(newrom, bdf);
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400135
Kevin O'Connor5e019082012-05-20 21:11:43 -0400136 return rom_confirm(newrom->size * 512);
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400137}
138
Kevin O'Connorbca3a872010-12-24 14:42:42 -0500139#define RS_PCIROM (1LL<<33)
140
141static void
142setRomSource(u64 *sources, struct rom_header *rom, u64 source)
143{
144 if (sources)
145 sources[((u32)rom - BUILD_ROM_START) / OPTION_ROM_ALIGN] = source;
146}
147
Kevin O'Connor031ef552010-12-27 19:26:57 -0500148static int
149getRomPriority(u64 *sources, struct rom_header *rom, int instance)
150{
151 u64 source = sources[((u32)rom - BUILD_ROM_START) / OPTION_ROM_ALIGN];
152 if (!source)
153 return -1;
154 if (source & RS_PCIROM)
Kevin O'Connorfce91892011-07-09 14:47:47 -0400155 return bootprio_find_pci_rom((void*)(u32)source, instance);
Kevin O'Connor59d6ca52012-05-31 00:20:55 -0400156 struct romfile_s *file = (void*)(u32)source;
157 return bootprio_find_named_rom(file->name, instance);
Kevin O'Connor031ef552010-12-27 19:26:57 -0500158}
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400159
Kevin O'Connorc1de91b2011-07-02 13:50:21 -0400160
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400161/****************************************************************
162 * Roms in CBFS
163 ****************************************************************/
164
Kevin O'Connor5e019082012-05-20 21:11:43 -0400165static struct rom_header *
Kevin O'Connor59d6ca52012-05-31 00:20:55 -0400166deploy_romfile(struct romfile_s *file)
Kevin O'Connor5e019082012-05-20 21:11:43 -0400167{
Kevin O'Connor59d6ca52012-05-31 00:20:55 -0400168 u32 size = file->size;
Kevin O'Connor5e019082012-05-20 21:11:43 -0400169 struct rom_header *rom = rom_reserve(size);
170 if (!rom) {
171 warn_noalloc();
172 return NULL;
173 }
Kevin O'Connor59d6ca52012-05-31 00:20:55 -0400174 int ret = file->copy(file, rom, size);
Kevin O'Connor5e019082012-05-20 21:11:43 -0400175 if (ret <= 0)
176 return NULL;
177 return rom;
178}
179
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400180// Check if an option rom is at a hardcoded location or in CBFS.
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500181static struct rom_header *
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400182lookup_hardcode(struct pci_device *pci)
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500183{
Kevin O'Connore2304262010-06-13 16:05:17 -0400184 char fname[17];
185 snprintf(fname, sizeof(fname), "pci%04x,%04x.rom"
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400186 , pci->vendor, pci->device);
Kevin O'Connor59d6ca52012-05-31 00:20:55 -0400187 struct romfile_s *file = romfile_find(fname);
Kevin O'Connor5e019082012-05-20 21:11:43 -0400188 if (file)
189 return deploy_romfile(file);
190 return NULL;
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500191}
192
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400193// Run all roms in a given CBFS directory.
194static void
Kevin O'Connorbca3a872010-12-24 14:42:42 -0500195run_file_roms(const char *prefix, int isvga, u64 *sources)
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400196{
Kevin O'Connor59d6ca52012-05-31 00:20:55 -0400197 struct romfile_s *file = NULL;
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400198 for (;;) {
Kevin O'Connore2304262010-06-13 16:05:17 -0400199 file = romfile_findprefix(prefix, file);
Kevin O'Connor1f836252009-08-16 20:17:35 -0400200 if (!file)
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400201 break;
Kevin O'Connor5e019082012-05-20 21:11:43 -0400202 struct rom_header *rom = deploy_romfile(file);
203 if (rom) {
Kevin O'Connor59d6ca52012-05-31 00:20:55 -0400204 setRomSource(sources, rom, (u32)file);
Kevin O'Connorbca3a872010-12-24 14:42:42 -0500205 init_optionrom(rom, 0, isvga);
206 }
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400207 }
208}
209
210
211/****************************************************************
212 * PCI roms
213 ****************************************************************/
214
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400215// Verify device is a vga device with legacy address decoding enabled.
216static int
217is_pci_vga(struct pci_device *pci)
218{
219 if (pci->class != PCI_CLASS_DISPLAY_VGA)
220 return 0;
221 u16 cmd = pci_config_readw(pci->bdf, PCI_COMMAND);
222 if (!(cmd & PCI_COMMAND_IO && cmd & PCI_COMMAND_MEMORY))
223 return 0;
224 while (pci->parent) {
225 pci = pci->parent;
226 u32 ctrl = pci_config_readb(pci->bdf, PCI_BRIDGE_CONTROL);
227 if (!(ctrl & PCI_BRIDGE_CTL_VGA))
228 return 0;
229 }
230 return 1;
231}
232
Kevin O'Connor5e019082012-05-20 21:11:43 -0400233// Copy a rom to its permanent location below 1MiB
234static struct rom_header *
235copy_rom(struct rom_header *rom)
236{
237 u32 romsize = rom->size * 512;
238 struct rom_header *newrom = rom_reserve(romsize);
239 if (!newrom) {
240 warn_noalloc();
241 return NULL;
242 }
243 dprintf(4, "Copying option rom (size %d) from %p to %p\n"
244 , romsize, rom, newrom);
245 iomemcpy(newrom, rom, romsize);
246 return newrom;
247}
248
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500249// Map the option rom of a given PCI device.
250static struct rom_header *
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400251map_pcirom(struct pci_device *pci)
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500252{
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400253 u16 bdf = pci->bdf;
Kevin O'Connor91b53a72009-05-05 22:52:09 -0400254 dprintf(6, "Attempting to map option rom on dev %02x:%02x.%x\n"
255 , pci_bdf_to_bus(bdf), pci_bdf_to_dev(bdf), pci_bdf_to_fn(bdf));
Kevin O'Connore5a36d52008-11-12 20:10:13 -0500256
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400257 if ((pci->header_type & 0x7f) != PCI_HEADER_TYPE_NORMAL) {
258 dprintf(6, "Skipping non-normal pci device (type=%x)\n"
259 , pci->header_type);
Kevin O'Connor62eea672008-12-06 11:57:45 -0500260 return NULL;
261 }
262
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -0500263 u32 orig = pci_config_readl(bdf, PCI_ROM_ADDRESS);
264 pci_config_writel(bdf, PCI_ROM_ADDRESS, ~PCI_ROM_ADDRESS_ENABLE);
265 u32 sz = pci_config_readl(bdf, PCI_ROM_ADDRESS);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500266
Kevin O'Connore5a36d52008-11-12 20:10:13 -0500267 dprintf(6, "Option rom sizing returned %x %x\n", orig, sz);
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500268 orig &= ~PCI_ROM_ADDRESS_ENABLE;
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500269 if (!sz || sz == 0xffffffff)
270 goto fail;
271
Kevin O'Connor64cf2fb2009-04-18 17:01:02 -0400272 if (orig == sz || (u32)(orig + 4*1024*1024) < 20*1024*1024) {
273 // Don't try to map to a pci addresses at its max, in the last
274 // 4MiB of ram, or the first 16MiB of ram.
Kevin O'Connor62eea672008-12-06 11:57:45 -0500275 dprintf(6, "Preset rom address doesn't look valid\n");
276 goto fail;
277 }
278
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500279 // Looks like a rom - enable it.
280 pci_config_writel(bdf, PCI_ROM_ADDRESS, orig | PCI_ROM_ADDRESS_ENABLE);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500281
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400282 struct rom_header *rom = (void*)orig;
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500283 for (;;) {
Kevin O'Connor49cc72b2010-05-23 10:22:23 -0400284 dprintf(5, "Inspecting possible rom at %p (vd=%04x:%04x"
285 " bdf=%02x:%02x.%x)\n"
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400286 , rom, pci->vendor, pci->device
Kevin O'Connor49cc72b2010-05-23 10:22:23 -0400287 , pci_bdf_to_bus(bdf), pci_bdf_to_dev(bdf), pci_bdf_to_fn(bdf));
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500288 if (rom->signature != OPTION_ROM_SIGNATURE) {
289 dprintf(6, "No option rom signature (got %x)\n", rom->signature);
290 goto fail;
291 }
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400292 struct pci_data *pd = get_pci_rom(rom);
293 if (! pd) {
Kevin O'Connor62eea672008-12-06 11:57:45 -0500294 dprintf(6, "No valid pci signature found\n");
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500295 goto fail;
296 }
Kevin O'Connor62eea672008-12-06 11:57:45 -0500297
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400298 if (pd->vendor == pci->vendor && pd->device == pci->device
299 && pd->type == PCIROM_CODETYPE_X86)
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500300 // A match
301 break;
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400302 dprintf(6, "Didn't match dev/ven (got %04x:%04x) or type (got %d)\n"
303 , pd->vendor, pd->device, pd->type);
304 if (pd->indicator & 0x80) {
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500305 dprintf(6, "No more images left\n");
306 goto fail;
307 }
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400308 rom = (void*)((u32)rom + pd->ilen * 512);
Kevin O'Connore5a36d52008-11-12 20:10:13 -0500309 }
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500310
Kevin O'Connor5a1b8282008-11-29 20:39:06 -0500311 rom = copy_rom(rom);
312 pci_config_writel(bdf, PCI_ROM_ADDRESS, orig);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500313 return rom;
314fail:
315 // Not valid - restore original and exit.
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -0500316 pci_config_writel(bdf, PCI_ROM_ADDRESS, orig);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500317 return NULL;
318}
319
320// Attempt to map and initialize the option rom on a given PCI device.
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400321static int
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400322init_pcirom(struct pci_device *pci, int isvga, u64 *sources)
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500323{
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400324 u16 bdf = pci->bdf;
Kevin O'Connor49cc72b2010-05-23 10:22:23 -0400325 dprintf(4, "Attempting to init PCI bdf %02x:%02x.%x (vd %04x:%04x)\n"
Kevin O'Connor91b53a72009-05-05 22:52:09 -0400326 , pci_bdf_to_bus(bdf), pci_bdf_to_dev(bdf), pci_bdf_to_fn(bdf)
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400327 , pci->vendor, pci->device);
328 struct rom_header *rom = lookup_hardcode(pci);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500329 if (! rom)
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400330 rom = map_pcirom(pci);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500331 if (! rom)
332 // No ROM present.
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400333 return -1;
Kevin O'Connorfce91892011-07-09 14:47:47 -0400334 setRomSource(sources, rom, RS_PCIROM | (u32)pci);
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400335 return init_optionrom(rom, bdf, isvga);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500336}
337
338
339/****************************************************************
340 * Non-VGA option rom init
341 ****************************************************************/
342
343void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500344optionrom_setup(void)
Kevin O'Connor714325c2008-11-01 20:32:27 -0400345{
346 if (! CONFIG_OPTIONROMS)
347 return;
348
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500349 dprintf(1, "Scan for option roms\n");
Kevin O'Connorbca3a872010-12-24 14:42:42 -0500350 u64 sources[(BUILD_BIOS_ADDR - BUILD_ROM_START) / OPTION_ROM_ALIGN];
351 memset(sources, 0, sizeof(sources));
Kevin O'Connor5e019082012-05-20 21:11:43 -0400352 u32 post_vga = rom_get_last();
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500353
354 if (CONFIG_OPTIONROMS_DEPLOYED) {
355 // Option roms are already deployed on the system.
Kevin O'Connor5e019082012-05-20 21:11:43 -0400356 u32 pos = post_vga;
Kevin O'Connor3733f6f2013-02-17 12:44:23 -0500357 while (pos < rom_get_max()) {
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400358 int ret = init_optionrom((void*)pos, 0, 0);
359 if (ret)
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500360 pos += OPTION_ROM_ALIGN;
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400361 else
Kevin O'Connor5e019082012-05-20 21:11:43 -0400362 pos = rom_get_last();
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500363 }
364 } else {
365 // Find and deploy PCI roms.
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400366 struct pci_device *pci;
367 foreachpci(pci) {
Kevin O'Connor76b5e712011-06-21 22:52:51 -0400368 if (pci->class == PCI_CLASS_DISPLAY_VGA || pci->have_driver)
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -0500369 continue;
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400370 init_pcirom(pci, 0, sources);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500371 }
Kevin O'Connor1edc89d2009-04-30 21:50:35 -0400372
373 // Find and deploy CBFS roms not associated with a device.
Kevin O'Connorbca3a872010-12-24 14:42:42 -0500374 run_file_roms("genroms/", 0, sources);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500375 }
Kevin O'Connor5e019082012-05-20 21:11:43 -0400376 rom_reserve(0);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500377
378 // All option roms found and deployed - now build BEV/BCV vectors.
379
380 u32 pos = post_vga;
Kevin O'Connor5e019082012-05-20 21:11:43 -0400381 while (pos < rom_get_last()) {
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400382 struct rom_header *rom = (void*)pos;
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500383 if (! is_valid_rom(rom)) {
384 pos += OPTION_ROM_ALIGN;
Kevin O'Connor714325c2008-11-01 20:32:27 -0400385 continue;
386 }
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500387 pos += ALIGN(rom->size * 512, OPTION_ROM_ALIGN);
388 struct pnp_data *pnp = get_pnp_rom(rom);
389 if (! pnp) {
Kevin O'Connor0a924122009-02-08 19:43:47 -0500390 // Legacy rom.
Kevin O'Connor031ef552010-12-27 19:26:57 -0500391 boot_add_bcv(FLATPTR_TO_SEG(rom), OPTION_ROM_INITVECTOR, 0
392 , getRomPriority(sources, rom, 0));
Kevin O'Connor714325c2008-11-01 20:32:27 -0400393 continue;
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500394 }
Kevin O'Connor1e157252012-01-14 11:55:35 -0500395 // PnP rom - check for BEV and BCV boot capabilities.
396 int instance = 0;
397 while (pnp) {
398 if (pnp->bev)
399 boot_add_bev(FLATPTR_TO_SEG(rom), pnp->bev, pnp->productname
400 , getRomPriority(sources, rom, instance++));
401 else if (pnp->bcv)
Kevin O'Connor031ef552010-12-27 19:26:57 -0500402 boot_add_bcv(FLATPTR_TO_SEG(rom), pnp->bcv, pnp->productname
403 , getRomPriority(sources, rom, instance++));
Kevin O'Connor1e157252012-01-14 11:55:35 -0500404 else
405 break;
406 pnp = get_pnp_next(rom, pnp);
Kevin O'Connor031ef552010-12-27 19:26:57 -0500407 }
Kevin O'Connor714325c2008-11-01 20:32:27 -0400408 }
409}
410
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500411
412/****************************************************************
413 * VGA init
414 ****************************************************************/
415
Kevin O'Connord83c87b2013-01-21 01:14:12 -0500416static int S3ResumeVga;
Kevin O'Connor422263d2011-07-05 20:56:07 -0400417int ScreenAndDebug;
Kevin O'Connor5e019082012-05-20 21:11:43 -0400418struct rom_header *VgaROM;
Kevin O'Connor8b0c5092011-07-05 20:50:32 -0400419
Kevin O'Connor714325c2008-11-01 20:32:27 -0400420// Call into vga code to turn on console.
421void
Kevin O'Connord83c87b2013-01-21 01:14:12 -0500422vgarom_setup(void)
Kevin O'Connor714325c2008-11-01 20:32:27 -0400423{
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500424 if (! CONFIG_OPTIONROMS)
425 return;
426
Kevin O'Connor714325c2008-11-01 20:32:27 -0400427 dprintf(1, "Scan for VGA option rom\n");
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500428
Kevin O'Connor422263d2011-07-05 20:56:07 -0400429 // Load some config settings that impact VGA.
Kevin O'Connore010d852011-07-05 20:47:35 -0400430 EnforceChecksum = romfile_loadint("etc/optionroms-checksum", 1);
Kevin O'Connor897fb112013-02-07 23:32:48 -0500431 S3ResumeVga = romfile_loadint("etc/s3-resume-vga-init", CONFIG_QEMU);
Kevin O'Connor422263d2011-07-05 20:56:07 -0400432 ScreenAndDebug = romfile_loadint("etc/screen-and-debug", 1);
Kevin O'Connore010d852011-07-05 20:47:35 -0400433
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500434 if (CONFIG_OPTIONROMS_DEPLOYED) {
435 // Option roms are already deployed on the system.
Kevin O'Connore7739302009-07-26 19:16:09 -0400436 init_optionrom((void*)BUILD_ROM_START, 0, 1);
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500437 } else {
Kevin O'Connore8264652010-09-15 22:06:19 -0400438 // Clear option rom memory
Kevin O'Connor3733f6f2013-02-17 12:44:23 -0500439 memset((void*)BUILD_ROM_START, 0, rom_get_max() - BUILD_ROM_START);
Kevin O'Connore8264652010-09-15 22:06:19 -0400440
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500441 // Find and deploy PCI VGA rom.
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400442 struct pci_device *pci;
443 foreachpci(pci) {
444 if (!is_pci_vga(pci))
445 continue;
Kevin O'Connorc1de91b2011-07-02 13:50:21 -0400446 vgahook_setup(pci);
Kevin O'Connor862d5fb2011-06-20 22:19:17 -0400447 init_pcirom(pci, 1, NULL);
448 break;
449 }
Kevin O'Connor09880da2009-06-17 20:35:41 -0400450
451 // Find and deploy CBFS vga-style roms not associated with a device.
Kevin O'Connorbca3a872010-12-24 14:42:42 -0500452 run_file_roms("vgaroms/", 1, NULL);
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400453 }
Kevin O'Connor5e019082012-05-20 21:11:43 -0400454 rom_reserve(0);
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400455
Kevin O'Connor5e019082012-05-20 21:11:43 -0400456 if (rom_get_last() == BUILD_ROM_START)
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400457 // No VGA rom found
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400458 return;
Kevin O'Connor714325c2008-11-01 20:32:27 -0400459
Kevin O'Connor5e019082012-05-20 21:11:43 -0400460 VgaROM = (void*)BUILD_ROM_START;
Kevin O'Connorafbed1b2010-06-28 07:34:53 -0400461 enable_vga_console();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400462}
Kevin O'Connord282af72009-07-04 04:10:32 -0400463
464void
Kevin O'Connord83c87b2013-01-21 01:14:12 -0500465s3_resume_vga(void)
Kevin O'Connord282af72009-07-04 04:10:32 -0400466{
Kevin O'Connord83c87b2013-01-21 01:14:12 -0500467 if (!S3ResumeVga)
Kevin O'Connord282af72009-07-04 04:10:32 -0400468 return;
Kevin O'Connor5e019082012-05-20 21:11:43 -0400469 if (!VgaROM || ! is_valid_rom(VgaROM))
Kevin O'Connord282af72009-07-04 04:10:32 -0400470 return;
Kevin O'Connor5e019082012-05-20 21:11:43 -0400471 callrom(VgaROM, 0);
Kevin O'Connord282af72009-07-04 04:10:32 -0400472}