1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #ifndef _BIOS_EMUL_H
- #define _BIOS_EMUL_H
- #include "../drivers/bios_emulator/include/x86emu/regs.h"
- #include <pci.h>
- typedef struct {
- int function;
- int device;
- int bus;
- u32 VendorID;
- u32 DeviceID;
- #ifdef CONFIG_DM_PCI
- struct udevice *pcidev;
- #else
- pci_dev_t pcidev;
- #endif
- void *BIOSImage;
- u32 BIOSImageLen;
- u8 LowMem[1536];
- } BE_VGAInfo;
- struct vbe_mode_info;
- #ifdef CONFIG_DM_PCI
- int BootVideoCardBIOS(struct udevice *pcidev, BE_VGAInfo **pVGAInfo,
- int clean_up);
- #else
- int BootVideoCardBIOS(pci_dev_t pcidev, BE_VGAInfo **pVGAInfo, int clean_up);
- #endif
- void bios_run_on_x86(struct udevice *dev, unsigned long addr, int vesa_mode,
- struct vbe_mode_info *mode_info);
- void bios_set_interrupt_handler(int intnum, int (*int_handler_func)(void));
- void biosemu_set_interrupt_handler(int intnum, int (*int_func)(void));
- #ifdef CONFIG_DM_PCI
- int biosemu_setup(struct udevice *pcidev, BE_VGAInfo **pVGAInfo);
- int biosemu_run(struct udevice *dev, uchar *bios_rom, int bios_len,
- BE_VGAInfo *vga_info, int clean_up, int vesa_mode,
- struct vbe_mode_info *mode_info);
- #else
- int biosemu_setup(pci_dev_t pcidev, BE_VGAInfo **pVGAInfo);
- int biosemu_run(pci_dev_t pcidev, uchar *bios_rom, int bios_len,
- BE_VGAInfo *vga_info, int clean_up, int vesa_mode,
- struct vbe_mode_info *mode_info);
- #endif
- #endif
|