Blame view

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