]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
6854f87c SG |
2 | /* |
3 | * From coreboot file of same name | |
6854f87c SG |
4 | */ |
5 | ||
6 | #ifndef _PCI_ROM_H | |
7 | #define _PCI_ROM_H | |
8 | ||
9 | #define PCI_ROM_HDR 0xaa55 | |
6854f87c SG |
10 | |
11 | struct pci_rom_header { | |
12 | uint16_t signature; | |
13 | uint8_t size; | |
14 | uint8_t init[3]; | |
15 | uint8_t reserved[0x12]; | |
16 | uint16_t data; | |
17 | }; | |
18 | ||
19 | struct pci_rom_data { | |
20 | uint32_t signature; | |
21 | uint16_t vendor; | |
22 | uint16_t device; | |
23 | uint16_t reserved_1; | |
24 | uint16_t dlen; | |
25 | uint8_t drevision; | |
26 | uint8_t class_lo; | |
27 | uint16_t class_hi; | |
28 | uint16_t ilen; | |
29 | uint16_t irevision; | |
30 | uint8_t type; | |
31 | uint8_t indicator; | |
32 | uint16_t reserved_2; | |
33 | }; | |
34 | ||
bc17d8f4 SG |
35 | /* |
36 | * Determines which execution method is used and whether we allow falling back | |
37 | * to the other if the requested method is not available. | |
38 | */ | |
39 | enum pci_rom_emul { | |
40 | PCI_ROM_EMULATE = 0 << 0, | |
41 | PCI_ROM_USE_NATIVE = 1 << 0, | |
42 | PCI_ROM_ALLOW_FALLBACK = 1 << 1, | |
43 | }; | |
44 | ||
6854f87c | 45 | /** |
3f4e1e8e | 46 | * dm_pci_run_vga_bios() - Run the VGA BIOS in an x86 PC |
6854f87c SG |
47 | * |
48 | * @dev: Video device containing the BIOS | |
49 | * @int15_handler: Function to call to handle int 0x15 | |
bc17d8f4 | 50 | * @exec_method: flags from enum pci_rom_emul |
6854f87c | 51 | */ |
3f4e1e8e SG |
52 | int dm_pci_run_vga_bios(struct udevice *dev, int (*int15_handler)(void), |
53 | int exec_method); | |
6854f87c SG |
54 | |
55 | /** | |
56 | * board_map_oprom_vendev() - map several PCI IDs to the one the ROM expects | |
57 | * | |
58 | * Some VGA option roms are used for several chipsets but they only have one | |
59 | * PCI ID in their header. If we encounter such an option rom, we need to do | |
60 | * the mapping ourselves. | |
61 | * | |
62 | * @vendev: Vendor and device for the video device | |
185f812c | 63 | * Return: standard vendor and device expected by the ROM |
6854f87c SG |
64 | */ |
65 | uint32_t board_map_oprom_vendev(uint32_t vendev); | |
66 | ||
67 | #endif |