blob: 5293000463a93b5df76feb4c2eeed2a457ae4edc [file] [log] [blame]
Patrick Georgi11f00792020-03-04 15:10:45 +01001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Eric Biederman5899fd82003-04-24 06:25:08 +00003
Kyösti Mälkki13f66502019-03-03 08:01:05 +02004#include <device/mmio.h>
Stefan Reinauer0401bd82010-01-16 18:31:34 +00005#include <arch/ioapic.h>
6#include <console/console.h>
7#include <cpu/x86/lapic.h>
8
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -08009u32 io_apic_read(void *ioapic_base, u32 reg)
Eric Biederman5899fd82003-04-24 06:25:08 +000010{
Stefan Reinauer0401bd82010-01-16 18:31:34 +000011 write32(ioapic_base, reg);
12 return read32(ioapic_base + 0x10);
13}
Eric Biederman5899fd82003-04-24 06:25:08 +000014
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080015void io_apic_write(void *ioapic_base, u32 reg, u32 value)
Stefan Reinauer0401bd82010-01-16 18:31:34 +000016{
17 write32(ioapic_base, reg);
18 write32(ioapic_base + 0x10, value);
19}
20
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080021static int ioapic_interrupt_count(void *ioapic_base)
Patrick Georgid1de45e2013-01-23 13:45:23 +010022{
23 /* Read the available number of interrupts. */
24 int ioapic_interrupts = (io_apic_read(ioapic_base, 0x01) >> 16) & 0xff;
25 if (ioapic_interrupts == 0xff)
26 ioapic_interrupts = 23;
27 ioapic_interrupts += 1; /* Bits 23-16 specify the maximum redirection
28 entry, which is the number of interrupts
29 minus 1. */
30 printk(BIOS_DEBUG, "IOAPIC: %d interrupts\n", ioapic_interrupts);
31
32 return ioapic_interrupts;
33}
34
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080035void clear_ioapic(void *ioapic_base)
Stefan Reinauer0401bd82010-01-16 18:31:34 +000036{
37 u32 low, high;
38 u32 i, ioapic_interrupts;
39
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080040 printk(BIOS_DEBUG, "IOAPIC: Clearing IOAPIC at %p\n", ioapic_base);
Stefan Reinauer0401bd82010-01-16 18:31:34 +000041
Patrick Georgid1de45e2013-01-23 13:45:23 +010042 ioapic_interrupts = ioapic_interrupt_count(ioapic_base);
Stefan Reinauer0401bd82010-01-16 18:31:34 +000043
Marc Jonesf7dc9722018-03-31 22:45:35 -060044 low = INT_DISABLED;
Stefan Reinauer0401bd82010-01-16 18:31:34 +000045 high = NONE;
46
47 for (i = 0; i < ioapic_interrupts; i++) {
48 io_apic_write(ioapic_base, i * 2 + 0x10, low);
49 io_apic_write(ioapic_base, i * 2 + 0x11, high);
50
Uwe Hermanne49903652010-10-14 23:40:10 +000051 printk(BIOS_SPEW, "IOAPIC: reg 0x%08x value 0x%08x 0x%08x\n",
52 i, high, low);
Stefan Reinauer0401bd82010-01-16 18:31:34 +000053 }
54
55 if (io_apic_read(ioapic_base, 0x10) == 0xffffffff) {
Uwe Hermanne49903652010-10-14 23:40:10 +000056 printk(BIOS_WARNING, "IOAPIC not responding.\n");
Stefan Reinauer0401bd82010-01-16 18:31:34 +000057 return;
58 }
59}
60
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080061void set_ioapic_id(void *ioapic_base, u8 ioapic_id)
Stefan Reinauer0401bd82010-01-16 18:31:34 +000062{
63 u32 bsp_lapicid = lapicid();
Paul Menzel1b3e1762013-04-23 14:49:41 +020064 int i;
Stefan Reinauer0401bd82010-01-16 18:31:34 +000065
Julius Werner540a9802019-12-09 13:03:29 -080066 printk(BIOS_DEBUG, "IOAPIC: Initializing IOAPIC at %p\n",
Uwe Hermanne49903652010-10-14 23:40:10 +000067 ioapic_base);
68 printk(BIOS_DEBUG, "IOAPIC: Bootstrap Processor Local APIC = 0x%02x\n",
69 bsp_lapicid);
Stefan Reinauer0401bd82010-01-16 18:31:34 +000070
71 if (ioapic_id) {
Stefan Reinauer14e22772010-04-27 06:56:47 +000072 printk(BIOS_DEBUG, "IOAPIC: ID = 0x%02x\n", ioapic_id);
Uwe Hermanne49903652010-10-14 23:40:10 +000073 /* Set IOAPIC ID if it has been specified. */
Stefan Reinauer14e22772010-04-27 06:56:47 +000074 io_apic_write(ioapic_base, 0x00,
Kyösti Mälkki939103c2011-10-19 07:23:51 +030075 (io_apic_read(ioapic_base, 0x00) & 0xf0ffffff) |
Uwe Hermanne49903652010-10-14 23:40:10 +000076 (ioapic_id << 24));
Stefan Reinauer0401bd82010-01-16 18:31:34 +000077 }
Paul Menzel1b3e1762013-04-23 14:49:41 +020078
79 printk(BIOS_SPEW, "IOAPIC: Dumping registers\n");
80 for (i = 0; i < 3; i++)
81 printk(BIOS_SPEW, " reg 0x%04x: 0x%08x\n", i,
82 io_apic_read(ioapic_base, i));
83
Kyösti Mälkkidb4f8752012-01-31 17:24:12 +020084}
85
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080086static void load_vectors(void *ioapic_base)
Kyösti Mälkkidb4f8752012-01-31 17:24:12 +020087{
88 u32 bsp_lapicid = lapicid();
89 u32 low, high;
90 u32 i, ioapic_interrupts;
Stefan Reinauer0401bd82010-01-16 18:31:34 +000091
Patrick Georgid1de45e2013-01-23 13:45:23 +010092 ioapic_interrupts = ioapic_interrupt_count(ioapic_base);
Stefan Reinauer0401bd82010-01-16 18:31:34 +000093
Julius Wernercd49cce2019-03-05 16:53:33 -080094 if (CONFIG(IOAPIC_INTERRUPTS_ON_FSB)) {
Martin Roth898a7752017-06-01 11:39:59 -060095 /*
96 * For the Pentium 4 and above APICs deliver their interrupts
97 * on the front side bus, enable that.
98 */
99 printk(BIOS_DEBUG, "IOAPIC: Enabling interrupts on FSB\n");
100 io_apic_write(ioapic_base, 0x03,
101 io_apic_read(ioapic_base, 0x03) | (1 << 0));
Julius Wernercd49cce2019-03-05 16:53:33 -0800102 } else if (CONFIG(IOAPIC_INTERRUPTS_ON_APIC_SERIAL_BUS)) {
Martin Roth898a7752017-06-01 11:39:59 -0600103 printk(BIOS_DEBUG,
104 "IOAPIC: Enabling interrupts on APIC serial bus\n");
105 io_apic_write(ioapic_base, 0x03, 0);
106 }
Stefan Reinauer0401bd82010-01-16 18:31:34 +0000107
Uwe Hermanne49903652010-10-14 23:40:10 +0000108 /* Enable Virtual Wire Mode. */
Marc Jonesf7dc9722018-03-31 22:45:35 -0600109 low = INT_ENABLED | TRIGGER_EDGE | POLARITY_HIGH | PHYSICAL_DEST | ExtINT;
Stefan Reinauer0401bd82010-01-16 18:31:34 +0000110 high = bsp_lapicid << (56 - 32);
111
112 io_apic_write(ioapic_base, 0x10, low);
113 io_apic_write(ioapic_base, 0x11, high);
114
115 if (io_apic_read(ioapic_base, 0x10) == 0xffffffff) {
Uwe Hermanne49903652010-10-14 23:40:10 +0000116 printk(BIOS_WARNING, "IOAPIC not responding.\n");
Stefan Reinauer0401bd82010-01-16 18:31:34 +0000117 return;
118 }
119
Uwe Hermanne49903652010-10-14 23:40:10 +0000120 printk(BIOS_SPEW, "IOAPIC: reg 0x%08x value 0x%08x 0x%08x\n",
121 0, high, low);
Marc Jonesf7dc9722018-03-31 22:45:35 -0600122 low = INT_DISABLED;
Stefan Reinauer0401bd82010-01-16 18:31:34 +0000123 high = NONE;
Stefan Reinauer0401bd82010-01-16 18:31:34 +0000124 for (i = 1; i < ioapic_interrupts; i++) {
125 io_apic_write(ioapic_base, i * 2 + 0x10, low);
126 io_apic_write(ioapic_base, i * 2 + 0x11, high);
127
Uwe Hermanne49903652010-10-14 23:40:10 +0000128 printk(BIOS_SPEW, "IOAPIC: reg 0x%08x value 0x%08x 0x%08x\n",
129 i, high, low);
Eric Biederman5899fd82003-04-24 06:25:08 +0000130 }
131}
Kyösti Mälkkidb4f8752012-01-31 17:24:12 +0200132
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800133void setup_ioapic(void *ioapic_base, u8 ioapic_id)
Kyösti Mälkkidb4f8752012-01-31 17:24:12 +0200134{
135 set_ioapic_id(ioapic_base, ioapic_id);
136 load_vectors(ioapic_base);
137}