Overhaul PCI config functions.
[seabios.git] / src / optionroms.c
1 // Option rom scanning code.
2 //
3 // Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
4 // Copyright (C) 2002  MandrakeSoft S.A.
5 //
6 // This file may be distributed under the terms of the GNU GPLv3 license.
7
8 #include "bregs.h" // struct bregs
9 #include "biosvar.h" // struct ipl_entry_s
10 #include "util.h" // dprintf
11 #include "pci.h" // pci_find_class
12 #include "pci_regs.h" // PCI_ROM_ADDRESS
13 #include "pci_ids.h" // PCI_CLASS_DISPLAY_VGA
14
15
16 /****************************************************************
17  * Definitions
18  ****************************************************************/
19
20 // $PnP string with special alignment in romlayout.S
21 extern char pnp_string[];
22
23 struct 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
32 struct 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
48 struct 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
68 #define OPTIONROM_BDF_1 0x0000
69 #define OPTIONROM_MEM_1 0x00000000
70 #define OPTIONROM_BDF_2 0x0000
71 #define OPTIONROM_MEM_2 0x00000000
72
73 #define OPTION_ROM_START 0xc0000
74 #define OPTION_ROM_SIGNATURE 0xaa55
75 #define OPTION_ROM_ALIGN 2048
76 #define OPTION_ROM_INITVECTOR offsetof(struct rom_header, initVector[0])
77
78 // Next available position for an option rom.
79 static u32 next_rom;
80
81
82 /****************************************************************
83  * Helper functions
84  ****************************************************************/
85
86 // Execute a given option rom.
87 static void
88 callrom(struct rom_header *rom, u16 offset, u16 bdf)
89 {
90     u16 seg = FARPTR_TO_SEG(rom);
91     dprintf(1, "Running option rom at %x:%x\n", seg, offset);
92
93     struct bregs br;
94     memset(&br, 0, sizeof(br));
95     br.ax = bdf;
96     br.bx = 0xffff;
97     br.dx = 0xffff;
98     br.es = SEG_BIOS;
99     br.di = (u32)pnp_string - BUILD_BIOS_ADDR;
100     br.cs = seg;
101     br.ip = offset;
102     call16(&br);
103
104     debug_serial_setup();
105
106     if (GET_BDA(ebda_seg) != SEG_EBDA)
107         BX_PANIC("Option rom at %x:%x attempted to move ebda from %x to %x\n"
108                  , seg, offset, SEG_EBDA, GET_BDA(ebda_seg));
109 }
110
111 // Verify that an option rom looks valid
112 static int
113 is_valid_rom(struct rom_header *rom)
114 {
115     if (rom->signature != OPTION_ROM_SIGNATURE)
116         return 0;
117     u32 len = rom->size * 512;
118     u8 sum = checksum((void*)rom, len);
119     if (sum != 0) {
120         dprintf(1, "Found option rom with bad checksum: loc=%p len=%d sum=%x\n"
121                 , rom, len, sum);
122         return 0;
123     }
124     return 1;
125 }
126
127 // Check if a valid option rom has a pnp struct; return it if so.
128 static struct pnp_data *
129 get_pnp_rom(struct rom_header *rom)
130 {
131     struct pnp_data *pnp = (struct pnp_data *)((u8*)rom + rom->pnpoffset);
132     if (pnp->signature != *(u32*)pnp_string)
133         return NULL;
134     return pnp;
135 }
136
137 // Add a BEV vector for a given pnp compatible option rom.
138 static void
139 add_ipl(struct rom_header *rom, struct pnp_data *pnp)
140 {
141 #define ebda ((struct extended_bios_data_area_s *)MAKE_FARPTR(SEG_EBDA, 0))
142
143     // Found a device that thinks it can boot the system.  Record
144     // its BEV and product name string.
145
146     if (! CONFIG_BOOT)
147         return;
148
149     if (ebda->ipl.count >= ARRAY_SIZE(ebda->ipl.table))
150         return;
151
152     struct ipl_entry_s *ip = &ebda->ipl.table[ebda->ipl.count];
153     ip->type = IPL_TYPE_BEV;
154     ip->vector = (FARPTR_TO_SEG(rom) << 16) | pnp->bev;
155
156     u16 desc = pnp->productname;
157     if (desc)
158         ip->description = MAKE_FARPTR(FARPTR_TO_SEG(rom), desc);
159
160     ebda->ipl.count++;
161 }
162
163 // Check if an option rom is at a hardcoded location for a device.
164 static struct rom_header *
165 lookup_hardcode(u16 bdf)
166 {
167     if (OPTIONROM_BDF_1 && OPTIONROM_BDF_1 == bdf)
168         return (struct rom_header *)OPTIONROM_MEM_1;
169     else if (OPTIONROM_BDF_2 && OPTIONROM_BDF_2 == bdf)
170         return (struct rom_header *)OPTIONROM_MEM_2;
171     // XXX - check LAR when in coreboot?
172     return NULL;
173 }
174
175 // Map the option rom of a given PCI device.
176 static struct rom_header *
177 map_optionrom(u16 bdf)
178 {
179     u32 orig = pci_config_readl(bdf, PCI_ROM_ADDRESS);
180     pci_config_writel(bdf, PCI_ROM_ADDRESS, ~PCI_ROM_ADDRESS_ENABLE);
181     u32 sz = pci_config_readl(bdf, PCI_ROM_ADDRESS);
182
183     if (!sz || sz == 0xffffffff)
184         goto fail;
185
186     // Looks like a rom - map it to just above end of memory.
187     u32 mappos = ALIGN(GET_EBDA(ram_size), OPTION_ROM_ALIGN);
188     pci_config_writel(bdf, PCI_ROM_ADDRESS, mappos | PCI_ROM_ADDRESS_ENABLE);
189
190     struct rom_header *rom = (struct rom_header *)mappos;
191     if (rom->signature != OPTION_ROM_SIGNATURE)
192         goto fail;
193
194     return rom;
195 fail:
196     // Not valid - restore original and exit.
197     pci_config_writel(bdf, PCI_ROM_ADDRESS, orig);
198     return NULL;
199 }
200
201 // Attempt to map and initialize the option rom on a given PCI device.
202 static struct rom_header *
203 init_optionrom(u16 bdf)
204 {
205     struct rom_header *rom = lookup_hardcode(bdf);
206     if (! rom)
207         rom = map_optionrom(bdf);
208     if (! rom)
209         // No ROM present.
210         return NULL;
211
212     u32 romsize = rom->size * 512;
213     if (next_rom + romsize > BUILD_BIOS_ADDR) {
214         // Option rom doesn't fit.
215         dprintf(1, "Option rom %x doesn't fit.", bdf);
216         pci_config_writel(bdf, PCI_ROM_ADDRESS, next_rom);
217         return NULL;
218     }
219     memcpy((void*)next_rom, rom, romsize);
220     pci_config_writel(bdf, PCI_ROM_ADDRESS, next_rom);
221     rom = (struct rom_header *)next_rom;
222
223     if (! is_valid_rom(rom))
224         return NULL;
225
226     if (get_pnp_rom(rom))
227         // Init the PnP rom.
228         callrom(rom, OPTION_ROM_INITVECTOR, bdf);
229
230     next_rom += ALIGN(rom->size * 512, OPTION_ROM_ALIGN);
231
232     return rom;
233 }
234
235
236 /****************************************************************
237  * Non-VGA option rom init
238  ****************************************************************/
239
240 void
241 optionrom_setup()
242 {
243     if (! CONFIG_OPTIONROMS)
244         return;
245
246     dprintf(1, "Scan for option roms\n");
247
248     u32 post_vga = next_rom;
249
250     if (CONFIG_OPTIONROMS_DEPLOYED) {
251         // Option roms are already deployed on the system.
252         u32 pos = next_rom;
253         while (pos < BUILD_BIOS_ADDR) {
254             struct rom_header *rom = (struct rom_header *)pos;
255             if (! is_valid_rom(rom)) {
256                 pos += OPTION_ROM_ALIGN;
257                 continue;
258             }
259             if (get_pnp_rom(rom))
260                 callrom(rom, OPTION_ROM_INITVECTOR, 0);
261             pos += ALIGN(rom->size * 512, OPTION_ROM_ALIGN);
262             next_rom = pos;
263         }
264     } else {
265         // Find and deploy PCI roms.
266         int max = GET_VAR(CS, MaxBDF);
267         int bdf;
268         for (bdf=0; bdf < max; bdf++) {
269             u16 v = pci_config_readw(bdf, PCI_CLASS_DEVICE);
270             if (v == 0x0000 || v == 0xffff || v == PCI_CLASS_DISPLAY_VGA)
271                 continue;
272             init_optionrom(bdf);
273         }
274     }
275
276     // All option roms found and deployed - now build BEV/BCV vectors.
277
278     u32 pos = post_vga;
279     while (pos < next_rom) {
280         struct rom_header *rom = (struct rom_header *)pos;
281         if (! is_valid_rom(rom)) {
282             pos += OPTION_ROM_ALIGN;
283             continue;
284         }
285         pos += ALIGN(rom->size * 512, OPTION_ROM_ALIGN);
286         struct pnp_data *pnp = get_pnp_rom(rom);
287         if (! pnp) {
288             // Legacy rom - run init vector now.
289             callrom(rom, OPTION_ROM_INITVECTOR, 0);
290             continue;
291         }
292         // PnP rom.
293         if (pnp->bev)
294             // Can boot system - add to IPL list.
295             add_ipl(rom, pnp);
296         else if (pnp->bcv)
297             // Has BCV - run it now.
298             callrom(rom, pnp->bcv, 0);
299     }
300 }
301
302
303 /****************************************************************
304  * VGA init
305  ****************************************************************/
306
307 // Call into vga code to turn on console.
308 void
309 vga_setup()
310 {
311     if (! CONFIG_OPTIONROMS)
312         return;
313
314     dprintf(1, "Scan for VGA option rom\n");
315     next_rom = OPTION_ROM_START;
316
317     if (CONFIG_OPTIONROMS_DEPLOYED) {
318         // Option roms are already deployed on the system.
319         struct rom_header *rom = (struct rom_header *)OPTION_ROM_START;
320         if (! is_valid_rom(rom))
321             return;
322         callrom(rom, OPTION_ROM_INITVECTOR, 0);
323         next_rom += ALIGN(rom->size * 512, OPTION_ROM_ALIGN);
324     } else {
325         // Find and deploy PCI VGA rom.
326         int bdf = pci_find_class(PCI_CLASS_DISPLAY_VGA, 0);
327         if (bdf < 0)
328             // Device not found
329             return;
330
331         struct rom_header *rom = init_optionrom(bdf);
332         if (rom && !get_pnp_rom(rom))
333             // Call rom even if it isn't a pnp rom.
334             callrom(rom, OPTION_ROM_INITVECTOR, bdf);
335     }
336
337     dprintf(1, "Turning on vga console\n");
338     struct bregs br;
339     memset(&br, 0, sizeof(br));
340     br.ax = 0x0003;
341     call16_int(0x10, &br);
342
343     // Write to screen.
344     printf("Starting SeaBIOS\n\n");
345 }