2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2006-10-02 19:08:21 +04:00
|
|
|
// $Id: ioapic.cc,v 1.33 2006-10-02 15:08:21 vruppert Exp $
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2006-03-07 01:03:16 +03:00
|
|
|
// Copyright (C) 2002 MandrakeSoft S.A.
|
|
|
|
//
|
|
|
|
// MandrakeSoft S.A.
|
|
|
|
// 43, rue d'Aboukir
|
|
|
|
// 75002 Paris - France
|
|
|
|
// http://www.linux-mandrake.com/
|
|
|
|
// http://www.mandrakesoft.com/
|
|
|
|
//
|
|
|
|
// 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2004-06-19 19:20:15 +04:00
|
|
|
|
2006-03-07 01:03:16 +03:00
|
|
|
#include "bochs.h"
|
|
|
|
#include "cpu/apic.h"
|
2004-06-19 19:20:15 +04:00
|
|
|
#include "iodev.h"
|
2006-03-07 01:03:16 +03:00
|
|
|
|
2002-11-19 08:47:45 +03:00
|
|
|
#if BX_SUPPORT_APIC
|
2001-05-23 11:48:11 +04:00
|
|
|
|
|
|
|
class bx_ioapic_c bx_ioapic;
|
|
|
|
#define LOG_THIS bx_ioapic.
|
|
|
|
|
2006-02-27 22:04:01 +03:00
|
|
|
static bx_bool ioapic_read(unsigned long a20addr, unsigned long len, void *data, void *param)
|
|
|
|
{
|
|
|
|
bx_ioapic.read(a20addr, data, len);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bx_bool ioapic_write(unsigned long a20addr, unsigned long len, void *data, void *param)
|
|
|
|
{
|
|
|
|
if (len != 4) {
|
2006-10-02 19:08:21 +04:00
|
|
|
BX_PANIC (("I/O apic write with len=%ld (should be 4)", len));
|
2006-02-27 22:04:01 +03:00
|
|
|
}
|
|
|
|
bx_ioapic.write(a20addr, (Bit32u*) data, len);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-02-24 12:46:10 +03:00
|
|
|
void bx_io_redirect_entry_t::sprintf_self(char *buf)
|
2001-05-23 11:48:11 +04:00
|
|
|
{
|
2006-02-24 12:46:10 +03:00
|
|
|
sprintf(buf, "dest=%02x, masked=%d, trig_mode=%d, remote_irr=%d, polarity=%d, delivery_status=%d, dest_mode=%d, delivery_mode=%d, vector=%02x",
|
|
|
|
(unsigned) destination(),
|
|
|
|
(unsigned) is_masked(),
|
|
|
|
(unsigned) trigger_mode(),
|
|
|
|
(unsigned) remote_irr(),
|
|
|
|
(unsigned) pin_polarity(),
|
|
|
|
(unsigned) delivery_status(),
|
|
|
|
(unsigned) destination_mode(),
|
|
|
|
(unsigned) delivery_mode(),
|
|
|
|
(unsigned) vector());
|
2001-05-23 11:48:11 +04:00
|
|
|
}
|
|
|
|
|
2006-05-27 19:54:49 +04:00
|
|
|
#if BX_SUPPORT_SAVE_RESTORE
|
|
|
|
void bx_io_redirect_entry_t::register_state(bx_param_c *parent)
|
|
|
|
{
|
2006-05-28 21:07:57 +04:00
|
|
|
BXRS_HEX_PARAM_SIMPLE(parent, lo);
|
|
|
|
BXRS_HEX_PARAM_SIMPLE(parent, hi);
|
2006-05-27 19:54:49 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-03-07 01:03:16 +03:00
|
|
|
#define BX_IOAPIC_BASE_ADDR (0xfec00000)
|
|
|
|
|
2006-02-24 12:46:10 +03:00
|
|
|
bx_ioapic_c::bx_ioapic_c()
|
2006-03-07 01:03:16 +03:00
|
|
|
: bx_generic_apic_c(BX_IOAPIC_BASE_ADDR)
|
2001-05-23 11:48:11 +04:00
|
|
|
{
|
2001-06-27 23:16:01 +04:00
|
|
|
put("IOAP");
|
2001-05-23 11:48:11 +04:00
|
|
|
settype(IOAPICLOG);
|
|
|
|
}
|
|
|
|
|
2006-02-24 12:46:10 +03:00
|
|
|
bx_ioapic_c::~bx_ioapic_c() {}
|
2001-05-23 11:48:11 +04:00
|
|
|
|
2006-01-18 21:35:38 +03:00
|
|
|
#define BX_IOAPIC_DEFAULT_ID (BX_SMP_PROCESSORS)
|
|
|
|
|
2006-02-27 22:04:01 +03:00
|
|
|
void bx_ioapic_c::init(void)
|
2001-05-23 11:48:11 +04:00
|
|
|
{
|
2006-02-24 12:46:10 +03:00
|
|
|
bx_generic_apic_c::init();
|
2005-04-27 22:09:27 +04:00
|
|
|
BX_INFO(("initializing I/O APIC"));
|
2006-03-07 01:03:16 +03:00
|
|
|
base_addr = BX_IOAPIC_BASE_ADDR;
|
2004-09-16 01:48:57 +04:00
|
|
|
set_id(BX_IOAPIC_DEFAULT_ID);
|
2001-05-23 11:48:11 +04:00
|
|
|
ioregsel = 0;
|
2006-02-27 22:04:01 +03:00
|
|
|
DEV_register_memory_handlers(&bx_ioapic,
|
|
|
|
ioapic_read, ioapic_write, base_addr, base_addr + 0xfff);
|
2001-05-23 11:48:11 +04:00
|
|
|
// all interrupts masked
|
|
|
|
for (int i=0; i<BX_IOAPIC_NUM_PINS; i++) {
|
2006-02-24 12:46:10 +03:00
|
|
|
ioredtbl[i].set_lo_part(0x00010000);
|
|
|
|
ioredtbl[i].set_hi_part(0x00000000);
|
2001-05-23 11:48:11 +04:00
|
|
|
}
|
2006-01-08 15:01:25 +03:00
|
|
|
intin = 0;
|
2001-05-23 11:48:11 +04:00
|
|
|
irr = 0;
|
|
|
|
}
|
|
|
|
|
2006-06-05 09:39:21 +04:00
|
|
|
void bx_ioapic_c::read_aligned(bx_phy_address address, Bit32u *data)
|
2001-05-23 11:48:11 +04:00
|
|
|
{
|
2006-06-05 09:39:21 +04:00
|
|
|
BX_DEBUG(("IOAPIC: read aligned addr=%08x", address));
|
2001-05-23 11:48:11 +04:00
|
|
|
address &= 0xff;
|
|
|
|
if (address == 0x00) {
|
|
|
|
// select register
|
|
|
|
*data = ioregsel;
|
|
|
|
return;
|
2006-02-24 12:46:10 +03:00
|
|
|
} else {
|
|
|
|
if (address != 0x10)
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_PANIC(("IOAPIC: read from unsupported address"));
|
2001-05-23 11:48:11 +04:00
|
|
|
}
|
|
|
|
// only reached when reading data register
|
|
|
|
switch (ioregsel) {
|
2004-09-16 01:48:57 +04:00
|
|
|
case 0x00: // APIC ID, note this is 4bits, the upper 4 are reserved
|
|
|
|
*data = ((id & APIC_ID_MASK) << 24);
|
2001-05-23 11:48:11 +04:00
|
|
|
return;
|
|
|
|
case 0x01: // version
|
2005-12-13 23:27:23 +03:00
|
|
|
*data = BX_IOAPIC_VERSION_ID;
|
2001-05-23 11:48:11 +04:00
|
|
|
return;
|
|
|
|
case 0x02:
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_INFO(("IOAPIC: arbitration ID unsupported, returned 0"));
|
2001-05-23 11:48:11 +04:00
|
|
|
*data = 0;
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
int index = (ioregsel - 0x10) >> 1;
|
|
|
|
if (index >= 0 && index < BX_IOAPIC_NUM_PINS) {
|
|
|
|
bx_io_redirect_entry_t *entry = ioredtbl + index;
|
2006-02-24 12:46:10 +03:00
|
|
|
*data = (ioregsel&1) ? entry->get_hi_part() : entry->get_lo_part();
|
2001-05-23 11:48:11 +04:00
|
|
|
return;
|
|
|
|
}
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_PANIC(("IOAPIC: IOREGSEL points to undefined register %02x", ioregsel));
|
2001-05-23 11:48:11 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-05 09:39:21 +04:00
|
|
|
void bx_ioapic_c::write_aligned(bx_phy_address address, Bit32u *value)
|
2001-05-23 11:48:11 +04:00
|
|
|
{
|
2006-06-05 09:39:21 +04:00
|
|
|
BX_DEBUG(("IOAPIC: write aligned addr=%08x, data=%08x", address, *value));
|
2001-05-23 11:48:11 +04:00
|
|
|
address &= 0xff;
|
|
|
|
if (address == 0x00) {
|
|
|
|
ioregsel = *value;
|
|
|
|
return;
|
2006-02-24 12:46:10 +03:00
|
|
|
} else {
|
|
|
|
if (address != 0x10)
|
|
|
|
BX_PANIC(("IOAPIC: write to unsupported address"));
|
2001-05-23 11:48:11 +04:00
|
|
|
}
|
|
|
|
// only reached when writing data register
|
|
|
|
switch (ioregsel) {
|
|
|
|
case 0x00: // set APIC ID
|
|
|
|
{
|
2004-09-16 01:48:57 +04:00
|
|
|
Bit8u newid = (*value >> 24) & APIC_ID_MASK;
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_INFO(("IOAPIC: setting id to 0x%x", newid));
|
2001-05-23 11:48:11 +04:00
|
|
|
set_id (newid);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
case 0x01: // version
|
|
|
|
case 0x02: // arbitration id
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_INFO(("IOAPIC: could not write, IOREGSEL=0x%02x", ioregsel));
|
2001-05-23 11:48:11 +04:00
|
|
|
return;
|
|
|
|
default:
|
|
|
|
int index = (ioregsel - 0x10) >> 1;
|
|
|
|
if (index >= 0 && index < BX_IOAPIC_NUM_PINS) {
|
|
|
|
bx_io_redirect_entry_t *entry = ioredtbl + index;
|
|
|
|
if (ioregsel&1)
|
2006-02-24 12:46:10 +03:00
|
|
|
entry->set_hi_part(*value);
|
2001-05-23 11:48:11 +04:00
|
|
|
else
|
2006-02-24 12:46:10 +03:00
|
|
|
entry->set_lo_part(*value);
|
2001-05-23 11:48:11 +04:00
|
|
|
char buf[1024];
|
2006-02-24 12:46:10 +03:00
|
|
|
entry->sprintf_self(buf);
|
2002-03-20 05:41:19 +03:00
|
|
|
BX_DEBUG(("IOAPIC: now entry[%d] is %s", index, buf));
|
2006-02-24 12:46:10 +03:00
|
|
|
service_ioapic();
|
2001-05-23 11:48:11 +04:00
|
|
|
return;
|
|
|
|
}
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_PANIC(("IOAPIC: IOREGSEL points to undefined register %02x", ioregsel));
|
2001-05-23 11:48:11 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-01 14:33:06 +03:00
|
|
|
void bx_ioapic_c::set_irq_level(Bit8u int_in, bx_bool level)
|
2001-05-23 11:48:11 +04:00
|
|
|
{
|
2006-01-01 14:33:06 +03:00
|
|
|
BX_DEBUG(("set_irq_level(): INTIN%d: level=%d", int_in, level));
|
|
|
|
if (int_in < BX_IOAPIC_NUM_PINS) {
|
|
|
|
Bit32u bit = 1<<int_in;
|
2006-01-08 15:01:25 +03:00
|
|
|
if ((level<<int_in) != (intin & bit)) {
|
|
|
|
bx_io_redirect_entry_t *entry = ioredtbl + int_in;
|
2006-02-24 12:46:10 +03:00
|
|
|
if (entry->trigger_mode()) {
|
2006-01-08 15:01:25 +03:00
|
|
|
// level triggered
|
|
|
|
if (level) {
|
|
|
|
intin |= bit;
|
|
|
|
irr |= bit;
|
2006-02-24 12:46:10 +03:00
|
|
|
service_ioapic();
|
2006-01-08 15:01:25 +03:00
|
|
|
} else {
|
|
|
|
intin &= ~bit;
|
|
|
|
irr &= ~bit;
|
|
|
|
}
|
2006-01-01 14:33:06 +03:00
|
|
|
} else {
|
2006-01-08 15:01:25 +03:00
|
|
|
// edge triggered
|
|
|
|
if (level) {
|
|
|
|
intin |= bit;
|
|
|
|
irr |= bit;
|
2006-02-24 12:46:10 +03:00
|
|
|
service_ioapic();
|
2006-01-08 15:01:25 +03:00
|
|
|
} else {
|
|
|
|
intin &= ~bit;
|
|
|
|
}
|
2006-01-01 14:33:06 +03:00
|
|
|
}
|
2005-12-31 17:46:21 +03:00
|
|
|
}
|
|
|
|
}
|
2001-05-23 11:48:11 +04:00
|
|
|
}
|
|
|
|
|
2006-01-10 09:13:26 +03:00
|
|
|
void bx_ioapic_c::receive_eoi(Bit8u vector)
|
|
|
|
{
|
|
|
|
BX_DEBUG(("IOAPIC: received EOI for vector %d", vector));
|
|
|
|
}
|
|
|
|
|
2006-02-24 12:46:10 +03:00
|
|
|
void bx_ioapic_c::service_ioapic()
|
2001-05-23 11:48:11 +04:00
|
|
|
{
|
2004-09-16 01:48:57 +04:00
|
|
|
static unsigned int stuck = 0;
|
2006-10-02 19:08:21 +04:00
|
|
|
Bit8u vector = 0;
|
2001-05-23 11:48:11 +04:00
|
|
|
// look in IRR and deliver any interrupts that are not masked.
|
2002-03-20 05:41:19 +03:00
|
|
|
BX_DEBUG(("IOAPIC: servicing"));
|
2001-05-23 11:48:11 +04:00
|
|
|
for (unsigned bit=0; bit < BX_IOAPIC_NUM_PINS; bit++) {
|
2006-01-01 14:33:06 +03:00
|
|
|
Bit32u mask = 1<<bit;
|
|
|
|
if (irr & mask) {
|
2001-05-23 11:48:11 +04:00
|
|
|
bx_io_redirect_entry_t *entry = ioredtbl + bit;
|
2006-02-24 12:46:10 +03:00
|
|
|
if (! entry->is_masked()) {
|
2006-01-01 14:33:06 +03:00
|
|
|
// clear irr bit and deliver
|
2006-02-24 12:46:10 +03:00
|
|
|
if (entry->delivery_mode() == 7) {
|
2006-10-02 19:08:21 +04:00
|
|
|
vector = DEV_pic_iac();
|
|
|
|
} else {
|
|
|
|
vector = entry->vector();
|
2006-01-01 14:33:06 +03:00
|
|
|
}
|
2006-10-02 19:08:21 +04:00
|
|
|
bx_bool done = apic_bus_deliver_interrupt(vector, entry->destination(), entry->delivery_mode(), entry->destination_mode(), entry->pin_polarity(), entry->trigger_mode());
|
2006-01-01 14:33:06 +03:00
|
|
|
if (done) {
|
2006-02-24 12:46:10 +03:00
|
|
|
if (! entry->trigger_mode())
|
2006-01-01 14:33:06 +03:00
|
|
|
irr &= ~mask;
|
2006-02-24 12:46:10 +03:00
|
|
|
entry->clear_delivery_status();
|
2006-01-01 14:33:06 +03:00
|
|
|
stuck = 0;
|
|
|
|
} else {
|
2006-02-24 12:46:10 +03:00
|
|
|
entry->set_delivery_status();
|
2006-01-01 14:33:06 +03:00
|
|
|
stuck++;
|
|
|
|
if (stuck > 5)
|
2006-10-02 19:08:21 +04:00
|
|
|
BX_INFO(("vector %#x stuck?", vector));
|
2006-01-01 14:33:06 +03:00
|
|
|
}
|
2001-05-23 11:48:11 +04:00
|
|
|
}
|
2006-02-24 12:46:10 +03:00
|
|
|
else {
|
|
|
|
BX_DEBUG(("service_ioapic(): INTIN%d is masked", bit));
|
|
|
|
}
|
2001-05-23 11:48:11 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-11-19 08:47:45 +03:00
|
|
|
|
2006-05-27 19:54:49 +04:00
|
|
|
#if BX_SUPPORT_SAVE_RESTORE
|
|
|
|
void bx_ioapic_c::register_state(void)
|
|
|
|
{
|
|
|
|
bx_list_c *list = new bx_list_c(SIM->get_sr_root(), "ioapic", "IOAPIC State");
|
2006-05-28 21:07:57 +04:00
|
|
|
BXRS_HEX_PARAM_SIMPLE(list, ioregsel);
|
|
|
|
BXRS_HEX_PARAM_SIMPLE(list, intin);
|
|
|
|
BXRS_HEX_PARAM_SIMPLE(list, irr);
|
|
|
|
|
2006-05-27 19:54:49 +04:00
|
|
|
bx_list_c *table = new bx_list_c(list, "ioredtbl", BX_IOAPIC_NUM_PINS);
|
2006-05-28 21:07:57 +04:00
|
|
|
for (unsigned i=0; i<BX_IOAPIC_NUM_PINS; i++) {
|
|
|
|
char name[6];
|
2006-05-27 19:54:49 +04:00
|
|
|
sprintf(name, "0x%02x", i);
|
2006-05-30 02:33:38 +04:00
|
|
|
bx_list_c *entry = new bx_list_c(table, name, 2);
|
2006-05-27 19:54:49 +04:00
|
|
|
ioredtbl[i].register_state(entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-11-19 08:47:45 +03:00
|
|
|
#endif /* if BX_SUPPORT_APIC */
|