blob: f6a4ac0b3e76d7f03bb10b52adadf1e763461812 [file] [log] [blame]
Kyösti Mälkki7b73e8522022-11-08 04:43:41 +00001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <arch/ioapic.h>
4#include <device/device.h>
5#include <device/pci.h>
6#include <device/pci_ids.h>
7#include <device/pci_ops.h>
8#include <assert.h>
9#include "82870.h"
10
Kyösti Mälkki7b73e8522022-11-08 04:43:41 +000011static void p64h2_ioapic_enable(struct device *dev)
12{
13 /* We have to enable MEM and Bus Master for IOAPIC */
14 uint16_t command = PCI_COMMAND_SERR | PCI_COMMAND_PARITY | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
15
16 pci_write_config16(dev, PCI_COMMAND, command);
17}
18
19/**
20 * Configure one of the IOAPICs in a P64H2.
21 *
22 * Note that a PCI bus scan will detect both IOAPICs, so this function
23 * will be called twice for each P64H2 in the system.
24 *
25 * @param dev PCI bus/device/function of P64H2 IOAPIC.
26 * NOTE: There are two IOAPICs per P64H2, at D28:F0 and D30:F0.
27 */
28static void p64h2_ioapic_init(struct device *dev)
29{
30 uint32_t memoryBase;
Kyösti Mälkki7b73e8522022-11-08 04:43:41 +000031
32 // Read the MBAR address for setting up the IOAPIC in memory space
33 // NOTE: this address was assigned during enumeration of the bus
34
35 memoryBase = pci_read_config32(dev, PCI_BASE_ADDRESS_0);
36
Kyösti Mälkki71c64872021-06-08 11:31:19 +030037 register_new_ioapic((void *)memoryBase);
Kyösti Mälkki7b73e8522022-11-08 04:43:41 +000038
39 // Use Processor System Bus to deliver interrupts
40 ioapic_set_boot_config((void *)memoryBase, true);
41}
42
43static struct device_operations ioapic_ops = {
44 .read_resources = pci_dev_read_resources,
45 .set_resources = pci_dev_set_resources,
46 .enable_resources = pci_dev_enable_resources,
47 .init = p64h2_ioapic_init,
48 .enable = p64h2_ioapic_enable,
49};
50
51static const struct pci_driver ioapic_driver __pci_driver = {
52 .ops = &ioapic_ops,
53 .vendor = PCI_VID_INTEL,
54 .device = PCI_DID_INTEL_82870_1E0,
55
56};