blob: 06d4ad380f3e4ed6676e53a33e64352331052cd9 [file] [log] [blame]
Jason Jinece92f82007-07-06 08:34:56 +08001/****************************************************************************
2*
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +02003* BIOS emulator and interface
4* to Realmode X86 Emulator Library
Jason Jinece92f82007-07-06 08:34:56 +08005*
6* Copyright (C) 2007 Freescale Semiconductor, Inc. All rights reserved.
7* Jason Jin <Jason.jin@freescale.com>
8*
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +02009* Copyright (C) 1996-1999 SciTech Software, Inc.
Jason Jinece92f82007-07-06 08:34:56 +080010*
11* ========================================================================
12*
13* Permission to use, copy, modify, distribute, and sell this software and
14* its documentation for any purpose is hereby granted without fee,
15* provided that the above copyright notice appear in all copies and that
16* both that copyright notice and this permission notice appear in
17* supporting documentation, and that the name of the authors not be used
18* in advertising or publicity pertaining to distribution of the software
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +020019* without specific, written prior permission. The authors makes no
Jason Jinece92f82007-07-06 08:34:56 +080020* representations about the suitability of this software for any purpose.
21* It is provided "as is" without express or implied warranty.
22*
23* THE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
24* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
25* EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
26* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
27* USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
28* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
29* PERFORMANCE OF THIS SOFTWARE.
30*
31* ========================================================================
32*
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +020033* Language: ANSI C
34* Environment: Any
35* Developer: Kendall Bennett
Jason Jinece92f82007-07-06 08:34:56 +080036*
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +020037* Description: Module implementing the system specific functions. This
38* module is always compiled and linked in the OS depedent
39* libraries, and never in a binary portable driver.
Jason Jinece92f82007-07-06 08:34:56 +080040*
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +020041* Jason ported this file to u-boot to run the ATI video card BIOS
42* in u-boot. Made all the video memory be emulated during the
43* BIOS runing process which may affect the VGA function but the
44* frambuffer function can work after run the BIOS.
Jason Jinece92f82007-07-06 08:34:56 +080045*
46****************************************************************************/
47
48#include "biosemui.h"
49#include <malloc.h>
50
51BE_sysEnv _BE_env = {{0}};
52static X86EMU_memFuncs _BE_mem __attribute__((section(".got2"))) = {
53 BE_rdb,
54 BE_rdw,
55 BE_rdl,
56 BE_wrb,
57 BE_wrw,
58 BE_wrl,
59 };
60
61static X86EMU_pioFuncs _BE_pio __attribute__((section(".got2"))) = {
62 BE_inb,
63 BE_inw,
64 BE_inl,
65 BE_outb,
66 BE_outw,
67 BE_outl,
68 };
69
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +020070#define OFF(addr) (u16)(((addr) >> 0) & 0xffff)
71#define SEG(addr) (u16)(((addr) >> 4) & 0xf000)
Jason Jinece92f82007-07-06 08:34:56 +080072
73/****************************************************************************
74PARAMETERS:
75debugFlags - Flags to enable debugging options (debug builds only)
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +020076memSize - Amount of memory to allocate for real mode machine
77info - Pointer to default VGA device information
Jason Jinece92f82007-07-06 08:34:56 +080078
79REMARKS:
80This functions initialises the BElib, and uses the passed in
81BIOS image as the BIOS that is used and emulated at 0xC0000.
82****************************************************************************/
83int X86API BE_init(u32 debugFlags, int memSize, BE_VGAInfo * info, int shared)
84{
85#if !defined(__DRIVER__) && !defined(__KERNEL__)
86
87 PM_init();
88#endif
89 memset(&M, 0, sizeof(M));
90 if (memSize < 20480){
91 printf("Emulator requires at least 20Kb of memory!\n");
92 return 0;
93 }
94
95 M.mem_base = (unsigned long)malloc(memSize);
96
97 if (M.mem_base == NULL){
98 printf("Biosemu:Out of memory!");
99 return 0;
100 }
101 M.mem_size = memSize;
102
103 _BE_env.emulateVGA = 0;
104 _BE_env.busmem_base = (unsigned long)malloc(128 * 1024);
105 if (_BE_env.busmem_base == NULL){
106 printf("Biosemu:Out of memory!");
107 return 0;
108 }
109 M.x86.debug = debugFlags;
110 _BE_bios_init((u32*)info->LowMem);
111 X86EMU_setupMemFuncs(&_BE_mem);
112 X86EMU_setupPioFuncs(&_BE_pio);
113 BE_setVGA(info);
114 return 1;
115}
116
117/****************************************************************************
118PARAMETERS:
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +0200119info - Pointer to VGA device information to make current
Jason Jinece92f82007-07-06 08:34:56 +0800120
121REMARKS:
122This function sets the VGA BIOS functions in the emulator to point to the
123specific VGA BIOS in use. This includes swapping the BIOS interrupt
124vectors, BIOS image and BIOS data area to the new BIOS. This allows the
125real mode BIOS to be swapped without resetting the entire emulator.
126****************************************************************************/
127void X86API BE_setVGA(BE_VGAInfo * info)
128{
129
130#ifdef __KERNEL__
131 _BE_env.vgaInfo.function = info->function;
132 _BE_env.vgaInfo.device = info->device;
133 _BE_env.vgaInfo.bus = info->bus;
134 _BE_env.vgaInfo.pcidev = info->pcidev;
135#else
136 _BE_env.vgaInfo.pciInfo = info->pciInfo;
137#endif
138 _BE_env.vgaInfo.BIOSImage = info->BIOSImage;
139 if (info->BIOSImage) {
140 _BE_env.biosmem_base = (ulong) info->BIOSImage;
141 _BE_env.biosmem_limit = 0xC0000 + info->BIOSImageLen - 1;
142 } else {
143 _BE_env.biosmem_base = _BE_env.busmem_base + 0x20000;
144 _BE_env.biosmem_limit = 0xC7FFF;
145 }
146 if (*((u32 *) info->LowMem) == 0)
147 _BE_bios_init((u32 *) info->LowMem);
148 memcpy((u8 *) M.mem_base, info->LowMem, sizeof(info->LowMem));
149}
150
151/****************************************************************************
152PARAMETERS:
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +0200153info - Pointer to VGA device information to retrieve current
Jason Jinece92f82007-07-06 08:34:56 +0800154
155REMARKS:
156This function returns the VGA BIOS functions currently active in the
157emulator, so they can be restored at a later date.
158****************************************************************************/
159void X86API BE_getVGA(BE_VGAInfo * info)
160{
161#ifdef __KERNEL__
162 info->function = _BE_env.vgaInfo.function;
163 info->device = _BE_env.vgaInfo.device;
164 info->bus = _BE_env.vgaInfo.bus;
165 info->pcidev = _BE_env.vgaInfo.pcidev;
166#else
167 info->pciInfo = _BE_env.vgaInfo.pciInfo;
168#endif
169 info->BIOSImage = _BE_env.vgaInfo.BIOSImage;
170 memcpy(info->LowMem, (u8 *) M.mem_base, sizeof(info->LowMem));
171}
172
173/****************************************************************************
174PARAMETERS:
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +0200175r_seg - Segment for pointer to convert
176r_off - Offset for pointer to convert
Jason Jinece92f82007-07-06 08:34:56 +0800177
178REMARKS:
179This function maps a real mode pointer in the emulator memory to a protected
180mode pointer that can be used to directly access the memory.
181
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +0200182NOTE: The memory is *always* in little endian format, son on non-x86
183 systems you will need to do endian translations to access this
184 memory.
Jason Jinece92f82007-07-06 08:34:56 +0800185****************************************************************************/
186void *X86API BE_mapRealPointer(uint r_seg, uint r_off)
187{
188 u32 addr = ((u32) r_seg << 4) + r_off;
189
190 if (addr >= 0xC0000 && addr <= _BE_env.biosmem_limit) {
191 return (void *)(_BE_env.biosmem_base + addr - 0xC0000);
192 } else if (addr >= 0xA0000 && addr <= 0xFFFFF) {
193 return (void *)(_BE_env.busmem_base + addr - 0xA0000);
194 }
195 return (void *)(M.mem_base + addr);
196}
197
198/****************************************************************************
199PARAMETERS:
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +0200200len - Return the length of the VESA buffer
201rseg - Place to store VESA buffer segment
202roff - Place to store VESA buffer offset
Jason Jinece92f82007-07-06 08:34:56 +0800203
204REMARKS:
205This function returns the address of the VESA transfer buffer in real
206_BE_piomode emulator memory. The VESA transfer buffer is always 1024 bytes long,
207and located at 15Kb into the start of the real mode memory (16Kb is where
208we put the real mode code we execute for issuing interrupts).
209
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +0200210NOTE: The memory is *always* in little endian format, son on non-x86
211 systems you will need to do endian translations to access this
212 memory.
Jason Jinece92f82007-07-06 08:34:56 +0800213****************************************************************************/
214void *X86API BE_getVESABuf(uint * len, uint * rseg, uint * roff)
215{
216 *len = 1024;
217 *rseg = SEG(0x03C00);
218 *roff = OFF(0x03C00);
219 return (void *)(M.mem_base + ((u32) * rseg << 4) + *roff);
220}
221
222/****************************************************************************
223REMARKS:
224Cleans up and exits the emulator.
225****************************************************************************/
226void X86API BE_exit(void)
227{
228 free(M.mem_base);
229 free(_BE_env.busmem_base);
230}
231
232/****************************************************************************
233PARAMETERS:
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +0200234seg - Segment of code to call
235off - Offset of code to call
236regs - Real mode registers to load
237sregs - Real mode segment registers to load
Jason Jinece92f82007-07-06 08:34:56 +0800238
239REMARKS:
240This functions calls a real mode far function at the specified address,
241and loads all the x86 registers from the passed in registers structure.
242On exit the registers returned from the call are returned in the same
243structures.
244****************************************************************************/
245void X86API BE_callRealMode(uint seg, uint off, RMREGS * regs, RMSREGS * sregs)
246{
247 M.x86.R_EAX = regs->e.eax;
248 M.x86.R_EBX = regs->e.ebx;
249 M.x86.R_ECX = regs->e.ecx;
250 M.x86.R_EDX = regs->e.edx;
251 M.x86.R_ESI = regs->e.esi;
252 M.x86.R_EDI = regs->e.edi;
253 M.x86.R_DS = sregs->ds;
254 M.x86.R_ES = sregs->es;
255 M.x86.R_FS = sregs->fs;
256 M.x86.R_GS = sregs->gs;
257
258 ((u8 *) M.mem_base)[0x4000] = 0x9A;
259 ((u8 *) M.mem_base)[0x4001] = (u8) off;
260 ((u8 *) M.mem_base)[0x4002] = (u8) (off >> 8);
261 ((u8 *) M.mem_base)[0x4003] = (u8) seg;
262 ((u8 *) M.mem_base)[0x4004] = (u8) (seg >> 8);
263 ((u8 *) M.mem_base)[0x4005] = 0xF1; /* Illegal op-code */
264 M.x86.R_CS = SEG(0x04000);
265 M.x86.R_IP = OFF(0x04000);
266
267 M.x86.R_SS = SEG(M.mem_size - 2);
268 M.x86.R_SP = OFF(M.mem_size - 2) + 2;
269
270 X86EMU_exec();
271
272 regs->e.cflag = M.x86.R_EFLG & F_CF;
273 regs->e.eax = M.x86.R_EAX;
274 regs->e.ebx = M.x86.R_EBX;
275 regs->e.ecx = M.x86.R_ECX;
276 regs->e.edx = M.x86.R_EDX;
277 regs->e.esi = M.x86.R_ESI;
278 regs->e.edi = M.x86.R_EDI;
279 sregs->ds = M.x86.R_DS;
280 sregs->es = M.x86.R_ES;
281 sregs->fs = M.x86.R_FS;
282 sregs->gs = M.x86.R_GS;
283}
284
285/****************************************************************************
286PARAMETERS:
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +0200287intno - Interrupt number to execute
288in - Real mode registers to load
289out - Place to store resulting real mode registers
Jason Jinece92f82007-07-06 08:34:56 +0800290
291REMARKS:
292This functions calls a real mode interrupt function at the specified address,
293and loads all the x86 registers from the passed in registers structure.
294On exit the registers returned from the call are returned in out stucture.
295****************************************************************************/
296int X86API BE_int86(int intno, RMREGS * in, RMREGS * out)
297{
298 M.x86.R_EAX = in->e.eax;
299 M.x86.R_EBX = in->e.ebx;
300 M.x86.R_ECX = in->e.ecx;
301 M.x86.R_EDX = in->e.edx;
302 M.x86.R_ESI = in->e.esi;
303 M.x86.R_EDI = in->e.edi;
304 ((u8 *) M.mem_base)[0x4000] = 0xCD;
305 ((u8 *) M.mem_base)[0x4001] = (u8) intno;
306 ((u8 *) M.mem_base)[0x4002] = 0xF1;
307 M.x86.R_CS = SEG(0x04000);
308 M.x86.R_IP = OFF(0x04000);
309
310 M.x86.R_SS = SEG(M.mem_size - 1);
311 M.x86.R_SP = OFF(M.mem_size - 1) - 1;
312
313 X86EMU_exec();
314 out->e.cflag = M.x86.R_EFLG & F_CF;
315 out->e.eax = M.x86.R_EAX;
316 out->e.ebx = M.x86.R_EBX;
317 out->e.ecx = M.x86.R_ECX;
318 out->e.edx = M.x86.R_EDX;
319 out->e.esi = M.x86.R_ESI;
320 out->e.edi = M.x86.R_EDI;
321 return out->x.ax;
322}
323
324/****************************************************************************
325PARAMETERS:
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +0200326intno - Interrupt number to execute
327in - Real mode registers to load
328out - Place to store resulting real mode registers
329sregs - Real mode segment registers to load
Jason Jinece92f82007-07-06 08:34:56 +0800330
331REMARKS:
332This functions calls a real mode interrupt function at the specified address,
333and loads all the x86 registers from the passed in registers structure.
334On exit the registers returned from the call are returned in out stucture.
335****************************************************************************/
336int X86API BE_int86x(int intno, RMREGS * in, RMREGS * out, RMSREGS * sregs)
337{
338 M.x86.R_EAX = in->e.eax;
339 M.x86.R_EBX = in->e.ebx;
340 M.x86.R_ECX = in->e.ecx;
341 M.x86.R_EDX = in->e.edx;
342 M.x86.R_ESI = in->e.esi;
343 M.x86.R_EDI = in->e.edi;
344 M.x86.R_DS = sregs->ds;
345 M.x86.R_ES = sregs->es;
346 M.x86.R_FS = sregs->fs;
347 M.x86.R_GS = sregs->gs;
348 ((u8 *) M.mem_base)[0x4000] = 0xCD;
349 ((u8 *) M.mem_base)[0x4001] = (u8) intno;
350 ((u8 *) M.mem_base)[0x4002] = 0xF1;
351 M.x86.R_CS = SEG(0x04000);
352 M.x86.R_IP = OFF(0x04000);
353
354 M.x86.R_SS = SEG(M.mem_size - 1);
355 M.x86.R_SP = OFF(M.mem_size - 1) - 1;
356
357 X86EMU_exec();
358 out->e.cflag = M.x86.R_EFLG & F_CF;
359 out->e.eax = M.x86.R_EAX;
360 out->e.ebx = M.x86.R_EBX;
361 out->e.ecx = M.x86.R_ECX;
362 out->e.edx = M.x86.R_EDX;
363 out->e.esi = M.x86.R_ESI;
364 out->e.edi = M.x86.R_EDI;
365 sregs->ds = M.x86.R_DS;
366 sregs->es = M.x86.R_ES;
367 sregs->fs = M.x86.R_FS;
368 sregs->gs = M.x86.R_GS;
369 return out->x.ax;
370}