2002-11-18 00:14:45 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
2011-08-04 16:45:45 +00:00
|
|
|
* Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
|
2003-06-27 21:31:46 +00:00
|
|
|
*
|
2002-11-18 00:14:45 +00:00
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/ptrace.h>
|
2002-11-21 23:11:29 +00:00
|
|
|
#include <asm/realmode.h>
|
2002-11-18 00:14:45 +00:00
|
|
|
|
2011-11-08 02:33:15 +00:00
|
|
|
#define REALMODE_MAILBOX ((char *)0xe00)
|
2002-11-18 00:14:45 +00:00
|
|
|
|
2003-05-31 18:35:21 +00:00
|
|
|
int realmode_setup(void)
|
2002-11-18 00:14:45 +00:00
|
|
|
{
|
2011-11-12 16:34:48 +00:00
|
|
|
/* The realmode section is not relocated and still in the ROM. */
|
|
|
|
ulong realmode_start = (ulong)&__realmode_start;
|
2010-10-07 09:03:31 +00:00
|
|
|
ulong realmode_size = (ulong)&__realmode_size;
|
2009-11-24 09:04:20 +00:00
|
|
|
|
2002-11-18 00:14:45 +00:00
|
|
|
/* copy the realmode switch code */
|
2011-02-12 04:11:24 +00:00
|
|
|
if (realmode_size > (REALMODE_MAILBOX - (char *)REALMODE_BASE)) {
|
2003-06-27 21:31:46 +00:00
|
|
|
printf("realmode switch too large (%ld bytes, max is %d)\n",
|
2011-02-12 04:11:24 +00:00
|
|
|
realmode_size,
|
2011-10-20 18:29:17 +00:00
|
|
|
(int)(REALMODE_MAILBOX - (char *)REALMODE_BASE));
|
2002-11-18 00:14:45 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2011-02-12 04:11:24 +00:00
|
|
|
memcpy((char *)REALMODE_BASE, (void *)realmode_start, realmode_size);
|
2003-05-31 18:35:21 +00:00
|
|
|
asm("wbinvd\n");
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2003-05-31 18:35:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2003-05-31 18:35:21 +00:00
|
|
|
int enter_realmode(u16 seg, u16 off, struct pt_regs *in, struct pt_regs *out)
|
|
|
|
{
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2003-05-31 18:35:21 +00:00
|
|
|
/* setup out thin bios emulation */
|
2011-04-13 09:43:26 +00:00
|
|
|
if (bios_setup())
|
2003-05-31 18:35:21 +00:00
|
|
|
return -1;
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2011-04-13 09:43:26 +00:00
|
|
|
if (realmode_setup())
|
2003-05-31 18:35:21 +00:00
|
|
|
return -1;
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2002-11-18 00:14:45 +00:00
|
|
|
in->eip = off;
|
|
|
|
in->xcs = seg;
|
2011-11-08 02:33:15 +00:00
|
|
|
if ((in->esp & 0xffff) < 4)
|
2002-11-18 00:14:45 +00:00
|
|
|
printf("Warning: entering realmode with sp < 4 will fail\n");
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2002-11-18 00:14:45 +00:00
|
|
|
memcpy(REALMODE_MAILBOX, in, sizeof(struct pt_regs));
|
2003-05-31 18:35:21 +00:00
|
|
|
asm("wbinvd\n");
|
2003-06-27 21:31:46 +00:00
|
|
|
|
|
|
|
__asm__ volatile (
|
2011-11-08 02:33:15 +00:00
|
|
|
"lcall $0x20,%0\n" : : "i" (&realmode_enter));
|
2002-11-18 00:14:45 +00:00
|
|
|
|
2003-05-31 18:35:21 +00:00
|
|
|
asm("wbinvd\n");
|
2002-11-18 00:14:45 +00:00
|
|
|
memcpy(out, REALMODE_MAILBOX, sizeof(struct pt_regs));
|
|
|
|
|
|
|
|
return out->eax;
|
|
|
|
}
|
|
|
|
|
2011-11-08 02:33:15 +00:00
|
|
|
/*
|
|
|
|
* This code is supposed to access a realmode interrupt
|
|
|
|
* it does currently not work for me
|
|
|
|
*/
|
2003-05-31 18:35:21 +00:00
|
|
|
int enter_realmode_int(u8 lvl, struct pt_regs *in, struct pt_regs *out)
|
|
|
|
{
|
|
|
|
/* place two instructions at 0x700 */
|
|
|
|
writeb(0xcd, 0x700); /* int $lvl */
|
|
|
|
writeb(lvl, 0x701);
|
|
|
|
writeb(0xcb, 0x702); /* lret */
|
|
|
|
asm("wbinvd\n");
|
2003-06-27 21:31:46 +00:00
|
|
|
|
|
|
|
enter_realmode(0x00, 0x700, in, out);
|
|
|
|
|
2011-11-08 02:33:15 +00:00
|
|
|
return out->eflags & 0x00000001;
|
2003-05-31 18:35:21 +00:00
|
|
|
}
|