4b4f80e6cb
patches from the kvm tree. The code was written by Avi Kivity and Alex Williamson. Sebastian Herbszt added checks for CPUID_MTRR and CPUID_MSR.
69 lines
2.4 KiB
C
69 lines
2.4 KiB
C
/////////////////////////////////////////////////////////////////////////
|
|
// $Id: rombios.h,v 1.9 2009-01-26 09:21:00 vruppert Exp $
|
|
/////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2006 Volker Ruppert
|
|
//
|
|
// This library is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
// License as published by the Free Software Foundation; either
|
|
// version 2 of the License, or (at your option) any later version.
|
|
//
|
|
// This library 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
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
/* define it to include QEMU specific code */
|
|
//#define BX_QEMU
|
|
|
|
#ifndef LEGACY
|
|
# define BX_ROMBIOS32 1
|
|
#else
|
|
# define BX_ROMBIOS32 0
|
|
#endif
|
|
#define DEBUG_ROMBIOS 0
|
|
|
|
#define PANIC_PORT 0x400
|
|
#define PANIC_PORT2 0x401
|
|
#define INFO_PORT 0x402
|
|
#define DEBUG_PORT 0x403
|
|
|
|
#define BIOS_PRINTF_HALT 1
|
|
#define BIOS_PRINTF_SCREEN 2
|
|
#define BIOS_PRINTF_INFO 4
|
|
#define BIOS_PRINTF_DEBUG 8
|
|
#define BIOS_PRINTF_ALL (BIOS_PRINTF_SCREEN | BIOS_PRINTF_INFO)
|
|
#define BIOS_PRINTF_DEBHALT (BIOS_PRINTF_SCREEN | BIOS_PRINTF_INFO | BIOS_PRINTF_HALT)
|
|
|
|
#define printf(format, p...) bios_printf(BIOS_PRINTF_SCREEN, format, ##p)
|
|
|
|
// Defines the output macros.
|
|
// BX_DEBUG goes to INFO port until we can easily choose debug info on a
|
|
// per-device basis. Debug info are sent only in debug mode
|
|
#if DEBUG_ROMBIOS
|
|
# define BX_DEBUG(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p)
|
|
#else
|
|
# define BX_DEBUG(format, p...)
|
|
#endif
|
|
#define BX_INFO(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p)
|
|
#define BX_PANIC(format, p...) bios_printf(BIOS_PRINTF_DEBHALT, format, ##p)
|
|
|
|
#define ACPI_DATA_SIZE 0x00010000L
|
|
#define PM_IO_BASE 0xb000
|
|
#define SMB_IO_BASE 0xb100
|
|
#define SMP_MSR_ADDR 0x0510
|
|
|
|
// Define the application NAME
|
|
#if defined(BX_QEMU)
|
|
# define BX_APPNAME "QEMU"
|
|
#elif defined(PLEX86)
|
|
# define BX_APPNAME "Plex86"
|
|
#else
|
|
# define BX_APPNAME "Bochs"
|
|
#endif
|