1
2
3
4
5
6
7#ifndef _BIOS_EMUL_H
8#define _BIOS_EMUL_H
9
10
11#include "../drivers/bios_emulator/include/x86emu/regs.h"
12#include <pci.h>
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28typedef struct {
29 int function;
30 int device;
31 int bus;
32 u32 VendorID;
33 u32 DeviceID;
34#ifdef CONFIG_DM_PCI
35 struct udevice *pcidev;
36#else
37 pci_dev_t pcidev;
38#endif
39 void *BIOSImage;
40 u32 BIOSImageLen;
41 u8 LowMem[1536];
42} BE_VGAInfo;
43
44struct vbe_mode_info;
45
46#ifdef CONFIG_DM_PCI
47int BootVideoCardBIOS(struct udevice *pcidev, BE_VGAInfo **pVGAInfo,
48 int clean_up);
49#else
50int BootVideoCardBIOS(pci_dev_t pcidev, BE_VGAInfo **pVGAInfo, int clean_up);
51#endif
52
53
54void bios_run_on_x86(struct udevice *dev, unsigned long addr, int vesa_mode,
55 struct vbe_mode_info *mode_info);
56
57
58
59
60
61
62
63
64
65void bios_set_interrupt_handler(int intnum, int (*int_handler_func)(void));
66
67void biosemu_set_interrupt_handler(int intnum, int (*int_func)(void));
68
69#ifdef CONFIG_DM_PCI
70int biosemu_setup(struct udevice *pcidev, BE_VGAInfo **pVGAInfo);
71
72int biosemu_run(struct udevice *dev, uchar *bios_rom, int bios_len,
73 BE_VGAInfo *vga_info, int clean_up, int vesa_mode,
74 struct vbe_mode_info *mode_info);
75#else
76int biosemu_setup(pci_dev_t pcidev, BE_VGAInfo **pVGAInfo);
77
78int biosemu_run(pci_dev_t pcidev, uchar *bios_rom, int bios_len,
79 BE_VGAInfo *vga_info, int clean_up, int vesa_mode,
80 struct vbe_mode_info *mode_info);
81#endif
82
83#endif
84