blob: 4e32c1dab784c2c9d283204daa9ee196966e0e75 [file] [log] [blame]
Patrick Georgi02363b52020-05-05 20:48:50 +02001/* This file is part of the coreboot project. */
Uwe Hermann9da69f82007-11-30 02:08:26 +00002/*
Uwe Hermann9da69f82007-11-30 02:08:26 +00003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Uwe Hermann9da69f82007-11-30 02:08:26 +000013 */
14
15#include <stdint.h>
16#include <console/console.h>
17#include <device/device.h>
18#include <device/pci.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020019#include <device/pci_ops.h>
Uwe Hermann9da69f82007-11-30 02:08:26 +000020#include <device/pci_ids.h>
21#include <pc80/isa-dma.h>
22#include <pc80/mc146818rtc.h>
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000023#include <arch/ioapic.h>
Julius Wernercd49cce2019-03-05 16:53:33 -080024#if CONFIG(HAVE_ACPI_TABLES)
Furquan Shaikh76cedd22020-05-02 10:24:23 -070025#include <acpi/acpi.h>
26#include <acpi/acpigen.h>
Vladimir Serbinenko41877d82014-09-01 22:18:01 +020027#endif
Uwe Hermann9da69f82007-11-30 02:08:26 +000028#include "i82371eb.h"
Keith Huice622382020-01-11 03:49:17 -050029#include "chip.h"
Uwe Hermann9da69f82007-11-30 02:08:26 +000030
31static void isa_init(struct device *dev)
32{
Uwe Hermann9da69f82007-11-30 02:08:26 +000033 u32 reg32;
Keith Huice622382020-01-11 03:49:17 -050034 struct southbridge_intel_i82371eb_config *sb = dev->chip_info;
Uwe Hermann9da69f82007-11-30 02:08:26 +000035
36 /* Initialize the real time clock (RTC). */
Gabe Blackb3f08c62014-04-30 17:12:25 -070037 cmos_init(0);
Uwe Hermann9da69f82007-11-30 02:08:26 +000038
Uwe Hermann9da69f82007-11-30 02:08:26 +000039 /*
Tobias Diedriche87c38e2010-11-27 09:40:16 +000040 * Enable special cycles, needed for soft poweroff.
41 */
42 reg32 = pci_read_config16(dev, PCI_COMMAND);
43 reg32 |= PCI_COMMAND_SPECIAL;
44 pci_write_config16(dev, PCI_COMMAND, reg32);
45
46 /*
Uwe Hermann9da69f82007-11-30 02:08:26 +000047 * The PIIX4 can support the full ISA bus, or the Extended I/O (EIO)
48 * bus, which is a subset of ISA. We select the full ISA bus here.
49 */
50 reg32 = pci_read_config32(dev, GENCFG);
51 reg32 |= ISA; /* Select ISA, not EIO. */
Keith Huice622382020-01-11 03:49:17 -050052
53 /* Some boards use GPO22/23. Select it if configured. */
54 reg32 = ONOFF(sb->gpo22_enable, reg32, GPO2223);
55 pci_write_config32(dev, GENCFG, reg32);
Uwe Hermann9da69f82007-11-30 02:08:26 +000056
57 /* Initialize ISA DMA. */
58 isa_dma_init();
Uwe Hermann77180542010-10-28 08:19:22 +000059
Uwe Hermann77180542010-10-28 08:19:22 +000060 /*
61 * Unlike most other southbridges the 82371EB doesn't have a built-in
62 * IOAPIC. Instead, 82371EB-based boards that support multiple CPUs
63 * have a discrete IOAPIC (Intel 82093AA) soldered onto the board.
64 *
65 * Thus, we can/must only enable the IOAPIC if it actually exists,
66 * i.e. the respective mainboard does "select IOAPIC".
67 */
Keith Hui2f3c37b2020-01-27 18:00:40 -050068 if (CONFIG(IOAPIC)) {
69 u16 reg16;
70 u8 ioapic_id = 2;
71 volatile u32 *ioapic_index = (volatile u32 *)(IO_APIC_ADDR);
72 volatile u32 *ioapic_data = (volatile u32 *)(IO_APIC_ADDR + 0x10);
73
74 /* Enable IOAPIC. */
75 reg16 = pci_read_config16(dev, XBCS);
76 reg16 |= (1 << 8); /* APIC Chip Select */
77 pci_write_config16(dev, XBCS, reg16);
78
79 /* Set the IOAPIC ID. */
80 *ioapic_index = 0;
81 *ioapic_data = ioapic_id << 24;
82
83 /* Read back and verify the IOAPIC ID. */
84 *ioapic_index = 0;
85 reg32 = (*ioapic_data >> 24) & 0x0f;
86 printk(BIOS_DEBUG, "IOAPIC ID = %x\n", reg32);
87 if (reg32 != ioapic_id)
88 die("IOAPIC error!\n");
89 }
Uwe Hermann9da69f82007-11-30 02:08:26 +000090}
91
Myles Watson29cc9ed2009-07-02 18:56:24 +000092static void sb_read_resources(struct device *dev)
93{
94 struct resource *res;
95
96 pci_dev_read_resources(dev);
97
98 res = new_resource(dev, 1);
99 res->base = 0x0UL;
100 res->size = 0x1000UL;
101 res->limit = 0xffffUL;
102 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
103
104 res = new_resource(dev, 2);
105 res->base = 0xff800000UL;
106 res->size = 0x00800000UL; /* 8 MB for flash */
Tobias Diedriche87c38e2010-11-27 09:40:16 +0000107 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED |
108 IORESOURCE_RESERVE;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000109
Julius Wernercd49cce2019-03-05 16:53:33 -0800110#if CONFIG(IOAPIC)
Myles Watson29cc9ed2009-07-02 18:56:24 +0000111 res = new_resource(dev, 3); /* IOAPIC */
Uwe Hermann74d1a6e2010-10-12 17:34:08 +0000112 res->base = IO_APIC_ADDR;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000113 res->size = 0x00001000;
Tobias Diedriche87c38e2010-11-27 09:40:16 +0000114 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED |
115 IORESOURCE_RESERVE;
116#endif
Myles Watson29cc9ed2009-07-02 18:56:24 +0000117}
118
Julius Wernercd49cce2019-03-05 16:53:33 -0800119#if CONFIG(HAVE_ACPI_TABLES)
Furquan Shaikh7536a392020-04-24 21:59:21 -0700120static void southbridge_acpi_fill_ssdt_generator(const struct device *device)
Vladimir Serbinenko41877d82014-09-01 22:18:01 +0200121{
122 acpigen_write_mainboard_resources("\\_SB.PCI0.MBRS", "_CRS");
Alexander Couzens5eea4582015-04-12 22:18:55 +0200123 generate_cpu_entries(device);
Vladimir Serbinenko41877d82014-09-01 22:18:01 +0200124}
125#endif
126
Uwe Hermann312673c2009-10-27 21:49:33 +0000127static const struct device_operations isa_ops = {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000128 .read_resources = sb_read_resources,
Uwe Hermann9da69f82007-11-30 02:08:26 +0000129 .set_resources = pci_dev_set_resources,
130 .enable_resources = pci_dev_enable_resources,
Julius Wernercd49cce2019-03-05 16:53:33 -0800131#if CONFIG(HAVE_ACPI_TABLES)
Nico Huber68680dd2020-03-31 17:34:52 +0200132 .write_acpi_tables = acpi_write_hpet,
133 .acpi_fill_ssdt = southbridge_acpi_fill_ssdt_generator,
Vladimir Serbinenko41877d82014-09-01 22:18:01 +0200134#endif
Uwe Hermann9da69f82007-11-30 02:08:26 +0000135 .init = isa_init,
Nico Huber51b75ae2019-03-14 16:02:05 +0100136 .scan_bus = scan_static_bus,
Uwe Hermann9da69f82007-11-30 02:08:26 +0000137 .ops_pci = 0, /* No subsystem IDs on 82371EB! */
138};
139
140static const struct pci_driver isa_driver __pci_driver = {
141 .ops = &isa_ops,
142 .vendor = PCI_VENDOR_ID_INTEL,
143 .device = PCI_DEVICE_ID_INTEL_82371AB_ISA,
144};
Patrick Georgi17dda3a2020-03-03 17:05:25 +0000145
146static const struct pci_driver isa_SB_driver __pci_driver = {
147 .ops = &isa_ops,
148 .vendor = PCI_VENDOR_ID_INTEL,
149 .device = PCI_DEVICE_ID_INTEL_82371SB_ISA,
150};