1ece92f85SJason Jin /**************************************************************************** 2ece92f85SJason Jin * 3ece92f85SJason Jin * Realmode X86 Emulator Library 4ece92f85SJason Jin * 5ece92f85SJason Jin * Copyright (C) 1996-1999 SciTech Software, Inc. 6ece92f85SJason Jin * Copyright (C) David Mosberger-Tang 7ece92f85SJason Jin * Copyright (C) 1999 Egbert Eich 8ece92f85SJason Jin * 9ece92f85SJason Jin * ======================================================================== 10ece92f85SJason Jin * 11ece92f85SJason Jin * Permission to use, copy, modify, distribute, and sell this software and 12ece92f85SJason Jin * its documentation for any purpose is hereby granted without fee, 13ece92f85SJason Jin * provided that the above copyright notice appear in all copies and that 14ece92f85SJason Jin * both that copyright notice and this permission notice appear in 15ece92f85SJason Jin * supporting documentation, and that the name of the authors not be used 16ece92f85SJason Jin * in advertising or publicity pertaining to distribution of the software 17ece92f85SJason Jin * without specific, written prior permission. The authors makes no 18ece92f85SJason Jin * representations about the suitability of this software for any purpose. 19ece92f85SJason Jin * It is provided "as is" without express or implied warranty. 20ece92f85SJason Jin * 21ece92f85SJason Jin * THE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 22ece92f85SJason Jin * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 23ece92f85SJason Jin * EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR 24ece92f85SJason Jin * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF 25ece92f85SJason Jin * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 26ece92f85SJason Jin * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 27ece92f85SJason Jin * PERFORMANCE OF THIS SOFTWARE. 28ece92f85SJason Jin * 29ece92f85SJason Jin * ======================================================================== 30ece92f85SJason Jin * 31ece92f85SJason Jin * Language: ANSI C 32ece92f85SJason Jin * Environment: Any 33ece92f85SJason Jin * Developer: Kendall Bennett 34ece92f85SJason Jin * 35ece92f85SJason Jin * Description: Header file for public specific functions. 36ece92f85SJason Jin * Any application linking against us should only 37ece92f85SJason Jin * include this header 38ece92f85SJason Jin * 39ece92f85SJason Jin ****************************************************************************/ 40ece92f85SJason Jin 41ece92f85SJason Jin #ifndef __X86EMU_X86EMU_H 42ece92f85SJason Jin #define __X86EMU_X86EMU_H 43ece92f85SJason Jin 44ece92f85SJason Jin #include <asm/types.h> 45ece92f85SJason Jin #include <common.h> 46ece92f85SJason Jin #include <pci.h> 47ece92f85SJason Jin #include <asm/io.h> 48ece92f85SJason Jin #define X86API 49ece92f85SJason Jin #define X86APIP * 50ece92f85SJason Jin typedef u16 X86EMU_pioAddr; 51ece92f85SJason Jin 52ece92f85SJason Jin #include "x86emu/regs.h" 53ece92f85SJason Jin 54ece92f85SJason Jin /*---------------------- Macros and type definitions ----------------------*/ 55ece92f85SJason Jin 5630c6a241SAnatolij Gustschin #if defined(CONFIG_ARM) 5730c6a241SAnatolij Gustschin #define GAS_LINE_COMMENT "@" 58ad6edca3SSimon Glass #elif defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_X86) 5930c6a241SAnatolij Gustschin #define GAS_LINE_COMMENT "#" 6030c6a241SAnatolij Gustschin #elif defined (CONFIG_SH) 6130c6a241SAnatolij Gustschin #define GAS_LINE_COMMENT "!" 6230c6a241SAnatolij Gustschin #endif 6330c6a241SAnatolij Gustschin 6430c6a241SAnatolij Gustschin #define GOT2_TYPE ".got2,\"aw\"\t"GAS_LINE_COMMENT 6530c6a241SAnatolij Gustschin 66ece92f85SJason Jin #pragma pack(1) 67ece92f85SJason Jin 68ece92f85SJason Jin /**************************************************************************** 69ece92f85SJason Jin REMARKS: 70ece92f85SJason Jin Data structure containing ponters to programmed I/O functions used by the 71ece92f85SJason Jin emulator. This is used so that the user program can hook all programmed 72ece92f85SJason Jin I/O for the emulator to handled as necessary by the user program. By 73ece92f85SJason Jin default the emulator contains simple functions that do not do access the 74ece92f85SJason Jin hardware in any way. To allow the emualtor access the hardware, you will 75ece92f85SJason Jin need to override the programmed I/O functions using the X86EMU_setupPioFuncs 76ece92f85SJason Jin function. 77ece92f85SJason Jin 78ece92f85SJason Jin HEADER: 79ece92f85SJason Jin x86emu.h 80ece92f85SJason Jin 81ece92f85SJason Jin MEMBERS: 82ece92f85SJason Jin inb - Function to read a byte from an I/O port 83ece92f85SJason Jin inw - Function to read a word from an I/O port 84ece92f85SJason Jin inl - Function to read a dword from an I/O port 85ece92f85SJason Jin outb - Function to write a byte to an I/O port 86ece92f85SJason Jin outw - Function to write a word to an I/O port 87ece92f85SJason Jin outl - Function to write a dword to an I/O port 88ece92f85SJason Jin ****************************************************************************/ 89ece92f85SJason Jin typedef struct { 90ece92f85SJason Jin u8(X86APIP inb) (X86EMU_pioAddr addr); 91ece92f85SJason Jin u16(X86APIP inw) (X86EMU_pioAddr addr); 92ece92f85SJason Jin u32(X86APIP inl) (X86EMU_pioAddr addr); 93ece92f85SJason Jin void (X86APIP outb) (X86EMU_pioAddr addr, u8 val); 94ece92f85SJason Jin void (X86APIP outw) (X86EMU_pioAddr addr, u16 val); 95ece92f85SJason Jin void (X86APIP outl) (X86EMU_pioAddr addr, u32 val); 96ece92f85SJason Jin } X86EMU_pioFuncs; 97ece92f85SJason Jin 98ece92f85SJason Jin /**************************************************************************** 99ece92f85SJason Jin REMARKS: 100ece92f85SJason Jin Data structure containing ponters to memory access functions used by the 101ece92f85SJason Jin emulator. This is used so that the user program can hook all memory 102ece92f85SJason Jin access functions as necessary for the emulator. By default the emulator 103ece92f85SJason Jin contains simple functions that only access the internal memory of the 104ece92f85SJason Jin emulator. If you need specialised functions to handle access to different 105ece92f85SJason Jin types of memory (ie: hardware framebuffer accesses and BIOS memory access 106ece92f85SJason Jin etc), you will need to override this using the X86EMU_setupMemFuncs 107ece92f85SJason Jin function. 108ece92f85SJason Jin 109ece92f85SJason Jin HEADER: 110ece92f85SJason Jin x86emu.h 111ece92f85SJason Jin 112ece92f85SJason Jin MEMBERS: 113ece92f85SJason Jin rdb - Function to read a byte from an address 114ece92f85SJason Jin rdw - Function to read a word from an address 115ece92f85SJason Jin rdl - Function to read a dword from an address 116ece92f85SJason Jin wrb - Function to write a byte to an address 117ece92f85SJason Jin wrw - Function to write a word to an address 118ece92f85SJason Jin wrl - Function to write a dword to an address 119ece92f85SJason Jin ****************************************************************************/ 120ece92f85SJason Jin typedef struct { 121ece92f85SJason Jin u8(X86APIP rdb) (u32 addr); 122ece92f85SJason Jin u16(X86APIP rdw) (u32 addr); 123ece92f85SJason Jin u32(X86APIP rdl) (u32 addr); 124ece92f85SJason Jin void (X86APIP wrb) (u32 addr, u8 val); 125ece92f85SJason Jin void (X86APIP wrw) (u32 addr, u16 val); 126ece92f85SJason Jin void (X86APIP wrl) (u32 addr, u32 val); 127ece92f85SJason Jin } X86EMU_memFuncs; 128ece92f85SJason Jin 129ece92f85SJason Jin /**************************************************************************** 130ece92f85SJason Jin Here are the default memory read and write 131ece92f85SJason Jin function in case they are needed as fallbacks. 132ece92f85SJason Jin ***************************************************************************/ 133ece92f85SJason Jin extern u8 X86API rdb(u32 addr); 134ece92f85SJason Jin extern u16 X86API rdw(u32 addr); 135ece92f85SJason Jin extern u32 X86API rdl(u32 addr); 136ece92f85SJason Jin extern void X86API wrb(u32 addr, u8 val); 137ece92f85SJason Jin extern void X86API wrw(u32 addr, u16 val); 138ece92f85SJason Jin extern void X86API wrl(u32 addr, u32 val); 139ece92f85SJason Jin 140ece92f85SJason Jin #pragma pack() 141ece92f85SJason Jin 142ece92f85SJason Jin /*--------------------- type definitions -----------------------------------*/ 143ece92f85SJason Jin 144ece92f85SJason Jin typedef void (X86APIP X86EMU_intrFuncs) (int num); 145ece92f85SJason Jin extern X86EMU_intrFuncs _X86EMU_intrTab[256]; 146ece92f85SJason Jin 147ece92f85SJason Jin /*-------------------------- Function Prototypes --------------------------*/ 148ece92f85SJason Jin 149ece92f85SJason Jin #ifdef __cplusplus 150ece92f85SJason Jin extern "C" { /* Use "C" linkage when in C++ mode */ 151ece92f85SJason Jin #endif 152ece92f85SJason Jin 153ece92f85SJason Jin void X86EMU_setupMemFuncs(X86EMU_memFuncs * funcs); 154ece92f85SJason Jin void X86EMU_setupPioFuncs(X86EMU_pioFuncs * funcs); 155ece92f85SJason Jin void X86EMU_setupIntrFuncs(X86EMU_intrFuncs funcs[]); 156a3c700ecSSimon Glass void X86EMU_setupIntrFunc(int intnum, X86EMU_intrFuncs func); 157ece92f85SJason Jin void X86EMU_prepareForInt(int num); 158ece92f85SJason Jin 159ece92f85SJason Jin /* decode.c */ 160ece92f85SJason Jin 161ece92f85SJason Jin void X86EMU_exec(void); 162ece92f85SJason Jin void X86EMU_halt_sys(void); 163ece92f85SJason Jin 164*b3521f2eSSimon Glass #ifdef CONFIG_X86EMU_DEBUG 165ece92f85SJason Jin #define HALT_SYS() \ 166ece92f85SJason Jin printf("halt_sys: file %s, line %d\n", __FILE__, __LINE__), \ 167ece92f85SJason Jin X86EMU_halt_sys() 168ece92f85SJason Jin #else 169ece92f85SJason Jin #define HALT_SYS() X86EMU_halt_sys() 170ece92f85SJason Jin #endif 171ece92f85SJason Jin 172ece92f85SJason Jin /* Debug options */ 173ece92f85SJason Jin 174ece92f85SJason Jin #define DEBUG_DECODE_F 0x0001 /* print decoded instruction */ 175ece92f85SJason Jin #define DEBUG_TRACE_F 0x0002 /* dump regs before/after execution */ 176ece92f85SJason Jin #define DEBUG_STEP_F 0x0004 177ece92f85SJason Jin #define DEBUG_DISASSEMBLE_F 0x0008 178ece92f85SJason Jin #define DEBUG_BREAK_F 0x0010 179ece92f85SJason Jin #define DEBUG_SVC_F 0x0020 180ece92f85SJason Jin #define DEBUG_SAVE_CS_IP 0x0040 181ece92f85SJason Jin #define DEBUG_FS_F 0x0080 182ece92f85SJason Jin #define DEBUG_PROC_F 0x0100 183ece92f85SJason Jin #define DEBUG_SYSINT_F 0x0200 /* bios system interrupts. */ 184ece92f85SJason Jin #define DEBUG_TRACECALL_F 0x0400 185ece92f85SJason Jin #define DEBUG_INSTRUMENT_F 0x0800 186ece92f85SJason Jin #define DEBUG_MEM_TRACE_F 0x1000 187ece92f85SJason Jin #define DEBUG_IO_TRACE_F 0x2000 188ece92f85SJason Jin #define DEBUG_TRACECALL_REGS_F 0x4000 189ece92f85SJason Jin #define DEBUG_DECODE_NOPRINT_F 0x8000 190ece92f85SJason Jin #define DEBUG_EXIT 0x10000 191ece92f85SJason Jin #define DEBUG_SYS_F (DEBUG_SVC_F|DEBUG_FS_F|DEBUG_PROC_F) 192ece92f85SJason Jin 193ece92f85SJason Jin void X86EMU_trace_regs(void); 194ece92f85SJason Jin void X86EMU_trace_xregs(void); 195ece92f85SJason Jin void X86EMU_dump_memory(u16 seg, u16 off, u32 amt); 196ece92f85SJason Jin int X86EMU_trace_on(void); 197ece92f85SJason Jin int X86EMU_trace_off(void); 198ece92f85SJason Jin 199ece92f85SJason Jin #ifdef __cplusplus 200ece92f85SJason Jin } /* End of "C" linkage for C++ */ 201ece92f85SJason Jin #endif 202ece92f85SJason Jin #endif /* __X86EMU_X86EMU_H */ 203