Beispiel #1
0
void clear_ioapic(void *ioapic_base)
{
    u32 low, high;
    u32 i, ioapic_interrupts;

    printk(BIOS_DEBUG, "IOAPIC: Clearing IOAPIC at %p\n", ioapic_base);

    ioapic_interrupts = ioapic_interrupt_count(ioapic_base);

    low = DISABLED;
    high = NONE;

    for (i = 0; i < ioapic_interrupts; i++) {
        io_apic_write(ioapic_base, i * 2 + 0x10, low);
        io_apic_write(ioapic_base, i * 2 + 0x11, high);

        printk(BIOS_SPEW, "IOAPIC: reg 0x%08x value 0x%08x 0x%08x\n",
               i, high, low);
    }

    if (io_apic_read(ioapic_base, 0x10) == 0xffffffff) {
        printk(BIOS_WARNING, "IOAPIC not responding.\n");
        return;
    }
}
Beispiel #2
0
static void load_vectors(void *ioapic_base)
{
    u32 bsp_lapicid = lapicid();
    u32 low, high;
    u32 i, ioapic_interrupts;

    ioapic_interrupts = ioapic_interrupt_count(ioapic_base);

#if CONFIG_IOAPIC_INTERRUPTS_ON_FSB
    /*
     * For the Pentium 4 and above APICs deliver their interrupts
     * on the front side bus, enable that.
     */
    printk(BIOS_DEBUG, "IOAPIC: Enabling interrupts on FSB\n");
    io_apic_write(ioapic_base, 0x03,
                  io_apic_read(ioapic_base, 0x03) | (1 << 0));
#endif
#if CONFIG_IOAPIC_INTERRUPTS_ON_APIC_SERIAL_BUS
    printk(BIOS_DEBUG, "IOAPIC: Enabling interrupts on APIC serial bus\n");
    io_apic_write(ioapic_base, 0x03, 0);
#endif

    /* Enable Virtual Wire Mode. */
    low = ENABLED | TRIGGER_EDGE | POLARITY_HIGH | PHYSICAL_DEST | ExtINT;
    high = bsp_lapicid << (56 - 32);

    io_apic_write(ioapic_base, 0x10, low);
    io_apic_write(ioapic_base, 0x11, high);

    if (io_apic_read(ioapic_base, 0x10) == 0xffffffff) {
        printk(BIOS_WARNING, "IOAPIC not responding.\n");
        return;
    }

    printk(BIOS_SPEW, "IOAPIC: reg 0x%08x value 0x%08x 0x%08x\n",
           0, high, low);
    low = DISABLED;
    high = NONE;
    for (i = 1; i < ioapic_interrupts; i++) {
        io_apic_write(ioapic_base, i * 2 + 0x10, low);
        io_apic_write(ioapic_base, i * 2 + 0x11, high);

        printk(BIOS_SPEW, "IOAPIC: reg 0x%08x value 0x%08x 0x%08x\n",
               i, high, low);
    }
}
Beispiel #3
0
void set_ioapic_id(void *ioapic_base, u8 ioapic_id)
{
    u32 bsp_lapicid = lapicid();
    int i;

    printk(BIOS_DEBUG, "IOAPIC: Initializing IOAPIC at 0x%p\n",
           ioapic_base);
    printk(BIOS_DEBUG, "IOAPIC: Bootstrap Processor Local APIC = 0x%02x\n",
           bsp_lapicid);

    if (ioapic_id) {
        printk(BIOS_DEBUG, "IOAPIC: ID = 0x%02x\n", ioapic_id);
        /* Set IOAPIC ID if it has been specified. */
        io_apic_write(ioapic_base, 0x00,
                      (io_apic_read(ioapic_base, 0x00) & 0xf0ffffff) |
                      (ioapic_id << 24));
    }

    printk(BIOS_SPEW, "IOAPIC: Dumping registers\n");
    for (i = 0; i < 3; i++)
        printk(BIOS_SPEW, "  reg 0x%04x: 0x%08x\n", i,
               io_apic_read(ioapic_base, i));

}
Beispiel #4
0
static int apic_enable_irq(sysarg_t irq)
{
	io_redirection_reg_t reg;

	if (irq > APIC_MAX_IRQ)
		return ELIMIT;

	int pin = irq_to_pin(irq);
 	if (pin == -1)
		return ENOENT;

	reg.lo = io_apic_read((uint8_t) (IOREDTBL + pin * 2));
	reg.masked = false;
	io_apic_write((uint8_t) (IOREDTBL + pin * 2), reg.lo);

	return EOK;
}
Beispiel #5
0
/**
 * Set miscellanous static southbridge features.
 *
 * @param dev PCI device with I/O APIC control registers
 */
static void pch_enable_ioapic(struct device *dev)
{
	u32 reg32;

	/* Enable ACPI I/O range decode */
	pci_write_config8(dev, ACPI_CNTL, ACPI_EN);

	set_ioapic_id(VIO_APIC_VADDR, 0x01);
	/* affirm full set of redirection table entries ("write once") */
	reg32 = io_apic_read(VIO_APIC_VADDR, 0x01);
	io_apic_write(VIO_APIC_VADDR, 0x01, reg32);

	/*
	 * Select Boot Configuration register (0x03) and
	 * use Processor System Bus (0x01) to deliver interrupts.
	 */
	io_apic_write(VIO_APIC_VADDR, 0x03, 0x01);
}
Beispiel #6
0
/**
 * Set miscellaneous static southbridge features.
 *
 * @param dev PCI device with I/O APIC control registers
 */
static void pch_enable_ioapic(struct device *dev)
{
	u32 reg32;

	set_ioapic_id((void *)IO_APIC_ADDR, IO_APIC0);

	/* affirm full set of redirection table entries ("write once") */
	reg32 = io_apic_read((void *)IO_APIC_ADDR, 0x01);

	reg32 &= ~0x00ff0000;
	reg32 |= (PCH_LP_REDIR_ETR - 1) << 16;

	io_apic_write((void *)IO_APIC_ADDR, 0x01, reg32);

	/*
	 * Select Boot Configuration register (0x03) and
	 * use Processor System Bus (0x01) to deliver interrupts.
	 */
	io_apic_write((void *)IO_APIC_ADDR, 0x03, 0x01);
}
Beispiel #7
0
static void pch_enable_ioapic(struct device *dev)
{
	u32 reg32;

	set_ioapic_id(VIO_APIC_VADDR, 0x02);

	/* affirm full set of redirection table entries ("write once") */
	reg32 = io_apic_read(VIO_APIC_VADDR, 0x01);

	/* PCH-LP has 39 redirection entries */
	reg32 &= ~0x00ff0000;
	reg32 |= 0x00270000;

	io_apic_write(VIO_APIC_VADDR, 0x01, reg32);

	/*
	 * Select Boot Configuration register (0x03) and
	 * use Processor System Bus (0x01) to deliver interrupts.
	 */
	io_apic_write(VIO_APIC_VADDR, 0x03, 0x01);
}
Beispiel #8
0
static void pch_enable_ioapic(void)
{
	u32 reg32;

	/* Make sure this is a unique ID within system */
	io_apic_set_id(0x04);

	/* affirm full set of redirection table entries ("write once") */
	reg32 = io_apic_read(0x01);

	/* PCH-LP has 39 redirection entries */
	reg32 &= ~0x00ff0000;
	reg32 |= 0x00270000;

	io_apic_write(0x01, reg32);

	/*
	 * Select Boot Configuration register (0x03) and
	 * use Processor System Bus (0x01) to deliver interrupts.
	 */
	io_apic_write(0x03, 0x01);
}
Beispiel #9
0
static void pch_enable_ioapic(const struct device *dev)
{
	u32 reg32;
	/* PCH-LP has 120 redirection entries */
	const int redir_entries = 120;

	set_ioapic_id((void *)IO_APIC_ADDR, 0x02);

	/* affirm full set of redirection table entries ("write once") */
	reg32 = io_apic_read((void *)IO_APIC_ADDR, 0x01);

	reg32 &= ~0x00ff0000;
	reg32 |= (redir_entries - 1) << 16;

	io_apic_write((void *)IO_APIC_ADDR, 0x01, reg32);

	/*
	 * Select Boot Configuration register (0x03) and
	 * use Processor System Bus (0x01) to deliver interrupts.
	 */
	io_apic_write((void *)IO_APIC_ADDR, 0x03, 0x01);
}
Beispiel #10
0
struct IO_APIC_route_entry ioapic_read_entry(void)
{
  union entry_union eu;
  eu.w1 = io_apic_read();
  return eu.entry;
}