blob: 6324cd34390f76d8301ef4e0e6c97ab41547a327 [file] [log] [blame]
Jason Jinece92f82007-07-06 08:34:56 +08001/****************************************************************************
2*
3* Realmode X86 Emulator Library
4*
5* Copyright (C) 1991-2004 SciTech Software, Inc.
6* Copyright (C) David Mosberger-Tang
7* Copyright (C) 1999 Egbert Eich
8*
9* ========================================================================
10*
11* Permission to use, copy, modify, distribute, and sell this software and
12* its documentation for any purpose is hereby granted without fee,
13* provided that the above copyright notice appear in all copies and that
14* both that copyright notice and this permission notice appear in
15* supporting documentation, and that the name of the authors not be used
16* in advertising or publicity pertaining to distribution of the software
17* without specific, written prior permission. The authors makes no
18* representations about the suitability of this software for any purpose.
19* It is provided "as is" without express or implied warranty.
20*
21* THE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
22* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
23* EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
24* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
25* USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
26* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
27* PERFORMANCE OF THIS SOFTWARE.
28*
29* ========================================================================
30*
31* Language: ANSI C
32* Environment: Any
33* Developer: Kendall Bennett
34*
35* Description: This file includes subroutines which are related to
36* programmed I/O and memory access. Included in this module
37* are default functions that do nothing. For real uses these
38* functions will have to be overriden by the user library.
39*
40****************************************************************************/
41
Jason Jince981dc2007-08-08 08:33:11 +080042#if defined(CONFIG_BIOSEMU)
43
Michal Simek5b4de932007-08-15 21:15:05 +020044#include "x86emu/x86emui.h"
45
Jason Jinece92f82007-07-06 08:34:56 +080046/*------------------------- Global Variables ------------------------------*/
47
48X86EMU_sysEnv _X86EMU_env; /* Global emulator machine state */
49X86EMU_intrFuncs _X86EMU_intrTab[256];
50
51int debug_intr;
52
53/*----------------------------- Implementation ----------------------------*/
54
55/****************************************************************************
56PARAMETERS:
57addr - Emulator memory address to read
58
59RETURNS:
60Byte value read from emulator memory.
61
62REMARKS:
63Reads a byte value from the emulator memory.
64****************************************************************************/
65u8 X86API rdb(u32 addr)
66{
67 return 0;
68}
69
70/****************************************************************************
71PARAMETERS:
72addr - Emulator memory address to read
73
74RETURNS:
75Word value read from emulator memory.
76
77REMARKS:
78Reads a word value from the emulator memory.
79****************************************************************************/
80u16 X86API rdw(u32 addr)
81{
82 return 0;
83}
84
85/****************************************************************************
86PARAMETERS:
87addr - Emulator memory address to read
88
89RETURNS:
90Long value read from emulator memory.
91REMARKS:
92Reads a long value from the emulator memory.
93****************************************************************************/
94u32 X86API rdl(u32 addr)
95{
96 return 0;
97}
98
99/****************************************************************************
100PARAMETERS:
101addr - Emulator memory address to read
102val - Value to store
103
104REMARKS:
105Writes a byte value to emulator memory.
106****************************************************************************/
107void X86API wrb(u32 addr, u8 val)
108{
109}
110
111/****************************************************************************
112PARAMETERS:
113addr - Emulator memory address to read
114val - Value to store
115
116REMARKS:
117Writes a word value to emulator memory.
118****************************************************************************/
119void X86API wrw(u32 addr, u16 val)
120{
121}
122
123/****************************************************************************
124PARAMETERS:
125addr - Emulator memory address to read
126val - Value to store
127
128REMARKS:
129Writes a long value to emulator memory.
130****************************************************************************/
131void X86API wrl(u32 addr, u32 val)
132{
133}
134
135/****************************************************************************
136PARAMETERS:
137addr - PIO address to read
138RETURN:
1390
140REMARKS:
141Default PIO byte read function. Doesn't perform real inb.
142****************************************************************************/
143static u8 X86API p_inb(X86EMU_pioAddr addr)
144{
145 DB(if (DEBUG_IO_TRACE())
146 printk("inb %#04x \n", addr);)
147 return 0;
148}
149
150/****************************************************************************
151PARAMETERS:
152addr - PIO address to read
153RETURN:
1540
155REMARKS:
156Default PIO word read function. Doesn't perform real inw.
157****************************************************************************/
158static u16 X86API p_inw(X86EMU_pioAddr addr)
159{
160 DB(if (DEBUG_IO_TRACE())
161 printk("inw %#04x \n", addr);)
162 return 0;
163}
164
165/****************************************************************************
166PARAMETERS:
167addr - PIO address to read
168RETURN:
1690
170REMARKS:
171Default PIO long read function. Doesn't perform real inl.
172****************************************************************************/
173static u32 X86API p_inl(X86EMU_pioAddr addr)
174{
175 DB(if (DEBUG_IO_TRACE())
176 printk("inl %#04x \n", addr);)
177 return 0;
178}
179
180/****************************************************************************
181PARAMETERS:
182addr - PIO address to write
183val - Value to store
184REMARKS:
185Default PIO byte write function. Doesn't perform real outb.
186****************************************************************************/
187static void X86API p_outb(X86EMU_pioAddr addr, u8 val)
188{
189 DB(if (DEBUG_IO_TRACE())
190 printk("outb %#02x -> %#04x \n", val, addr);)
191 return;
192}
193
194/****************************************************************************
195PARAMETERS:
196addr - PIO address to write
197val - Value to store
198REMARKS:
199Default PIO word write function. Doesn't perform real outw.
200****************************************************************************/
201static void X86API p_outw(X86EMU_pioAddr addr, u16 val)
202{
203 DB(if (DEBUG_IO_TRACE())
204 printk("outw %#04x -> %#04x \n", val, addr);)
205 return;
206}
207
208/****************************************************************************
209PARAMETERS:
210addr - PIO address to write
211val - Value to store
212REMARKS:
213Default PIO ;ong write function. Doesn't perform real outl.
214****************************************************************************/
215static void X86API p_outl(X86EMU_pioAddr addr, u32 val)
216{
217 DB(if (DEBUG_IO_TRACE())
218 printk("outl %#08x -> %#04x \n", val, addr);)
219 return;
220}
221
222/*------------------------- Global Variables ------------------------------*/
223
224u8(X86APIP sys_rdb) (u32 addr) = rdb;
225u16(X86APIP sys_rdw) (u32 addr) = rdw;
226u32(X86APIP sys_rdl) (u32 addr) = rdl;
227void (X86APIP sys_wrb) (u32 addr, u8 val) = wrb;
228void (X86APIP sys_wrw) (u32 addr, u16 val) = wrw;
229void (X86APIP sys_wrl) (u32 addr, u32 val) = wrl;
230u8(X86APIP sys_inb) (X86EMU_pioAddr addr) = p_inb;
231u16(X86APIP sys_inw) (X86EMU_pioAddr addr) = p_inw;
232u32(X86APIP sys_inl) (X86EMU_pioAddr addr) = p_inl;
233void (X86APIP sys_outb) (X86EMU_pioAddr addr, u8 val) = p_outb;
234void (X86APIP sys_outw) (X86EMU_pioAddr addr, u16 val) = p_outw;
235void (X86APIP sys_outl) (X86EMU_pioAddr addr, u32 val) = p_outl;
236
237/*----------------------------- Setup -------------------------------------*/
238
239/****************************************************************************
240PARAMETERS:
241funcs - New memory function pointers to make active
242
243REMARKS:
244This function is used to set the pointers to functions which access
245memory space, allowing the user application to override these functions
246and hook them out as necessary for their application.
247****************************************************************************/
248void X86EMU_setupMemFuncs(X86EMU_memFuncs * funcs)
249{
250 sys_rdb = funcs->rdb;
251 sys_rdw = funcs->rdw;
252 sys_rdl = funcs->rdl;
253 sys_wrb = funcs->wrb;
254 sys_wrw = funcs->wrw;
255 sys_wrl = funcs->wrl;
256}
257
258/****************************************************************************
259PARAMETERS:
260funcs - New programmed I/O function pointers to make active
261
262REMARKS:
263This function is used to set the pointers to functions which access
264I/O space, allowing the user application to override these functions
265and hook them out as necessary for their application.
266****************************************************************************/
267void X86EMU_setupPioFuncs(X86EMU_pioFuncs * funcs)
268{
269 sys_inb = funcs->inb;
270 sys_inw = funcs->inw;
271 sys_inl = funcs->inl;
272 sys_outb = funcs->outb;
273 sys_outw = funcs->outw;
274 sys_outl = funcs->outl;
275}
276
277/****************************************************************************
278PARAMETERS:
279funcs - New interrupt vector table to make active
280
281REMARKS:
282This function is used to set the pointers to functions which handle
283interrupt processing in the emulator, allowing the user application to
284hook interrupts as necessary for their application. Any interrupts that
285are not hooked by the user application, and reflected and handled internally
286in the emulator via the interrupt vector table. This allows the application
287to get control when the code being emulated executes specific software
288interrupts.
289****************************************************************************/
290void X86EMU_setupIntrFuncs(X86EMU_intrFuncs funcs[])
291{
292 int i;
293
294 for (i = 0; i < 256; i++)
295 _X86EMU_intrTab[i] = NULL;
296 if (funcs) {
297 for (i = 0; i < 256; i++)
298 _X86EMU_intrTab[i] = funcs[i];
299 }
300}
301
302/****************************************************************************
303PARAMETERS:
304int - New software interrupt to prepare for
305
306REMARKS:
307This function is used to set up the emulator state to exceute a software
308interrupt. This can be used by the user application code to allow an
309interrupt to be hooked, examined and then reflected back to the emulator
310so that the code in the emulator will continue processing the software
311interrupt as per normal. This essentially allows system code to actively
312hook and handle certain software interrupts as necessary.
313****************************************************************************/
314void X86EMU_prepareForInt(int num)
315{
316 push_word((u16) M.x86.R_FLG);
317 CLEAR_FLAG(F_IF);
318 CLEAR_FLAG(F_TF);
319 push_word(M.x86.R_CS);
320 M.x86.R_CS = mem_access_word(num * 4 + 2);
321 push_word(M.x86.R_IP);
322 M.x86.R_IP = mem_access_word(num * 4);
323 M.x86.intr = 0;
324}
Jason Jince981dc2007-08-08 08:33:11 +0800325
326#endif