blob: d1918657c8291bef2866cdd2320cce0f5357bb09 [file] [log] [blame]
Uwe Hermann9da69f82007-11-30 02:08:26 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermann9da69f82007-11-30 02:08:26 +00003 *
Uwe Hermann9da69f82007-11-30 02:08:26 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Uwe Hermann9da69f82007-11-30 02:08:26 +000014 */
15
16#include <stdint.h>
17#include <console/console.h>
18#include <device/device.h>
19#include <device/pci.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020020#include <device/pci_ops.h>
Uwe Hermann9da69f82007-11-30 02:08:26 +000021#include <device/pci_ids.h>
22#include <pc80/isa-dma.h>
23#include <pc80/mc146818rtc.h>
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000024#include <arch/ioapic.h>
Julius Wernercd49cce2019-03-05 16:53:33 -080025#if CONFIG(HAVE_ACPI_TABLES)
Furquan Shaikh76cedd22020-05-02 10:24:23 -070026#include <acpi/acpi.h>
27#include <acpi/acpigen.h>
Vladimir Serbinenko41877d82014-09-01 22:18:01 +020028#endif
Uwe Hermann9da69f82007-11-30 02:08:26 +000029#include "i82371eb.h"
Keith Huice622382020-01-11 03:49:17 -050030#include "chip.h"
Uwe Hermann9da69f82007-11-30 02:08:26 +000031
32static void isa_init(struct device *dev)
33{
Uwe Hermann9da69f82007-11-30 02:08:26 +000034 u32 reg32;
Keith Huice622382020-01-11 03:49:17 -050035 struct southbridge_intel_i82371eb_config *sb = dev->chip_info;
Uwe Hermann9da69f82007-11-30 02:08:26 +000036
37 /* Initialize the real time clock (RTC). */
Gabe Blackb3f08c62014-04-30 17:12:25 -070038 cmos_init(0);
Uwe Hermann9da69f82007-11-30 02:08:26 +000039
Uwe Hermann9da69f82007-11-30 02:08:26 +000040 /*
Tobias Diedriche87c38e2010-11-27 09:40:16 +000041 * Enable special cycles, needed for soft poweroff.
42 */
43 reg32 = pci_read_config16(dev, PCI_COMMAND);
44 reg32 |= PCI_COMMAND_SPECIAL;
45 pci_write_config16(dev, PCI_COMMAND, reg32);
46
47 /*
Uwe Hermann9da69f82007-11-30 02:08:26 +000048 * The PIIX4 can support the full ISA bus, or the Extended I/O (EIO)
49 * bus, which is a subset of ISA. We select the full ISA bus here.
50 */
51 reg32 = pci_read_config32(dev, GENCFG);
52 reg32 |= ISA; /* Select ISA, not EIO. */
Keith Huice622382020-01-11 03:49:17 -050053
54 /* Some boards use GPO22/23. Select it if configured. */
55 reg32 = ONOFF(sb->gpo22_enable, reg32, GPO2223);
56 pci_write_config32(dev, GENCFG, reg32);
Uwe Hermann9da69f82007-11-30 02:08:26 +000057
58 /* Initialize ISA DMA. */
59 isa_dma_init();
Uwe Hermann77180542010-10-28 08:19:22 +000060
Uwe Hermann77180542010-10-28 08:19:22 +000061 /*
62 * Unlike most other southbridges the 82371EB doesn't have a built-in
63 * IOAPIC. Instead, 82371EB-based boards that support multiple CPUs
64 * have a discrete IOAPIC (Intel 82093AA) soldered onto the board.
65 *
66 * Thus, we can/must only enable the IOAPIC if it actually exists,
67 * i.e. the respective mainboard does "select IOAPIC".
68 */
Keith Hui2f3c37b2020-01-27 18:00:40 -050069 if (CONFIG(IOAPIC)) {
70 u16 reg16;
71 u8 ioapic_id = 2;
72 volatile u32 *ioapic_index = (volatile u32 *)(IO_APIC_ADDR);
73 volatile u32 *ioapic_data = (volatile u32 *)(IO_APIC_ADDR + 0x10);
74
75 /* Enable IOAPIC. */
76 reg16 = pci_read_config16(dev, XBCS);
77 reg16 |= (1 << 8); /* APIC Chip Select */
78 pci_write_config16(dev, XBCS, reg16);
79
80 /* Set the IOAPIC ID. */
81 *ioapic_index = 0;
82 *ioapic_data = ioapic_id << 24;
83
84 /* Read back and verify the IOAPIC ID. */
85 *ioapic_index = 0;
86 reg32 = (*ioapic_data >> 24) & 0x0f;
87 printk(BIOS_DEBUG, "IOAPIC ID = %x\n", reg32);
88 if (reg32 != ioapic_id)
89 die("IOAPIC error!\n");
90 }
Uwe Hermann9da69f82007-11-30 02:08:26 +000091}
92
Myles Watson29cc9ed2009-07-02 18:56:24 +000093static void sb_read_resources(struct device *dev)
94{
95 struct resource *res;
96
97 pci_dev_read_resources(dev);
98
99 res = new_resource(dev, 1);
100 res->base = 0x0UL;
101 res->size = 0x1000UL;
102 res->limit = 0xffffUL;
103 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
104
105 res = new_resource(dev, 2);
106 res->base = 0xff800000UL;
107 res->size = 0x00800000UL; /* 8 MB for flash */
Tobias Diedriche87c38e2010-11-27 09:40:16 +0000108 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED |
109 IORESOURCE_RESERVE;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000110
Julius Wernercd49cce2019-03-05 16:53:33 -0800111#if CONFIG(IOAPIC)
Myles Watson29cc9ed2009-07-02 18:56:24 +0000112 res = new_resource(dev, 3); /* IOAPIC */
Uwe Hermann74d1a6e2010-10-12 17:34:08 +0000113 res->base = IO_APIC_ADDR;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000114 res->size = 0x00001000;
Tobias Diedriche87c38e2010-11-27 09:40:16 +0000115 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED |
116 IORESOURCE_RESERVE;
117#endif
Myles Watson29cc9ed2009-07-02 18:56:24 +0000118}
119
Julius Wernercd49cce2019-03-05 16:53:33 -0800120#if CONFIG(HAVE_ACPI_TABLES)
Furquan Shaikh7536a392020-04-24 21:59:21 -0700121static void southbridge_acpi_fill_ssdt_generator(const struct device *device)
Vladimir Serbinenko41877d82014-09-01 22:18:01 +0200122{
123 acpigen_write_mainboard_resources("\\_SB.PCI0.MBRS", "_CRS");
Alexander Couzens5eea4582015-04-12 22:18:55 +0200124 generate_cpu_entries(device);
Vladimir Serbinenko41877d82014-09-01 22:18:01 +0200125}
126#endif
127
Uwe Hermann312673c2009-10-27 21:49:33 +0000128static const struct device_operations isa_ops = {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000129 .read_resources = sb_read_resources,
Uwe Hermann9da69f82007-11-30 02:08:26 +0000130 .set_resources = pci_dev_set_resources,
131 .enable_resources = pci_dev_enable_resources,
Julius Wernercd49cce2019-03-05 16:53:33 -0800132#if CONFIG(HAVE_ACPI_TABLES)
Nico Huber68680dd2020-03-31 17:34:52 +0200133 .write_acpi_tables = acpi_write_hpet,
134 .acpi_fill_ssdt = southbridge_acpi_fill_ssdt_generator,
Vladimir Serbinenko41877d82014-09-01 22:18:01 +0200135#endif
Uwe Hermann9da69f82007-11-30 02:08:26 +0000136 .init = isa_init,
Nico Huber51b75ae2019-03-14 16:02:05 +0100137 .scan_bus = scan_static_bus,
Uwe Hermann9da69f82007-11-30 02:08:26 +0000138 .ops_pci = 0, /* No subsystem IDs on 82371EB! */
139};
140
141static const struct pci_driver isa_driver __pci_driver = {
142 .ops = &isa_ops,
143 .vendor = PCI_VENDOR_ID_INTEL,
144 .device = PCI_DEVICE_ID_INTEL_82371AB_ISA,
145};
Patrick Georgi17dda3a2020-03-03 17:05:25 +0000146
147static const struct pci_driver isa_SB_driver __pci_driver = {
148 .ops = &isa_ops,
149 .vendor = PCI_VENDOR_ID_INTEL,
150 .device = PCI_DEVICE_ID_INTEL_82371SB_ISA,
151};