blob: a12e36bc589fb3895127bd1351fb86d205c2e0dd [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00002
3#include <console/console.h>
4#include <device/device.h>
5#include <device/pci.h>
6#include <device/pci_ids.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +02007#include <option.h>
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00008#include <pc80/mc146818rtc.h>
9#include <pc80/isa-dma.h>
Stefan Reinauer54309d62009-01-20 22:53:10 +000010#include <pc80/i8259.h>
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000011#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020012#include <device/pci_ops.h>
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000013#include <arch/ioapic.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070014#include <acpi/acpi.h>
Sven Schnellef4dc1a72011-06-05 11:33:41 +020015#include <cpu/x86/smm.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070016#include <acpi/acpigen.h>
Vladimir Serbinenkod5d94ea2014-10-18 02:13:11 +020017#include <arch/smp/mpspec.h>
Arthur Heymansa8a9f342017-12-24 08:11:13 +010018#include <southbridge/intel/common/acpi_pirq_gen.h>
Tim Wawrzynczakf62c4942021-02-26 10:30:52 -070019#include <southbridge/intel/common/rcba_pirq.h>
Angel Ponseef43432021-01-12 22:25:28 +010020#include <southbridge/intel/common/hpet.h>
Elyes HAOUAS71187012019-02-10 14:58:13 +010021#include <southbridge/intel/common/pmbase.h>
Arthur Heymansb429c5b2019-05-28 13:24:15 +020022#include <southbridge/intel/common/spi.h>
Elyes HAOUAS71187012019-02-10 14:58:13 +010023
Arthur Heymans742df5a2019-06-03 16:24:41 +020024#include "chip.h"
Elyes HAOUAS71187012019-02-10 14:58:13 +010025#include "i82801gx.h"
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000026
Stefan Reinauer573f7d42009-07-21 21:50:34 +000027#define NMI_OFF 0
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000028
Paul Menzelddddf152013-04-23 14:40:23 +020029/**
Martin Roth2ed0aa22016-01-05 20:58:58 -070030 * Set miscellaneous static southbridge features.
Paul Menzelddddf152013-04-23 14:40:23 +020031 *
32 * @param dev PCI device with I/O APIC control registers
33 */
34static void i82801gx_enable_ioapic(struct device *dev)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000035{
Kyösti Mälkki682613f2021-06-08 11:31:19 +030036 setup_ioapic(VIO_APIC_VADDR, 0x02);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000037}
38
39static void i82801gx_enable_serial_irqs(struct device *dev)
40{
41 /* Set packet length and toggle silent mode bit for one frame. */
Elyes HAOUAS92646ea2020-04-04 13:43:03 +020042 pci_write_config8(dev, SERIRQ_CNTL, (1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0));
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000043}
44
Stefan Reinauer573f7d42009-07-21 21:50:34 +000045/* PIRQ[n]_ROUT[3:0] - PIRQ Routing Control
46 * 0x00 - 0000 = Reserved
47 * 0x01 - 0001 = Reserved
48 * 0x02 - 0010 = Reserved
49 * 0x03 - 0011 = IRQ3
50 * 0x04 - 0100 = IRQ4
51 * 0x05 - 0101 = IRQ5
52 * 0x06 - 0110 = IRQ6
53 * 0x07 - 0111 = IRQ7
54 * 0x08 - 1000 = Reserved
55 * 0x09 - 1001 = IRQ9
56 * 0x0A - 1010 = IRQ10
57 * 0x0B - 1011 = IRQ11
58 * 0x0C - 1100 = IRQ12
59 * 0x0D - 1101 = Reserved
60 * 0x0E - 1110 = IRQ14
61 * 0x0F - 1111 = IRQ15
62 * PIRQ[n]_ROUT[7] - PIRQ Routing Control
63 * 0x80 - The PIRQ is not routed.
64 */
65
Elyes HAOUAS99667032018-05-13 12:47:28 +020066static void i82801gx_pirq_init(struct device *dev)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000067{
Elyes HAOUAS99667032018-05-13 12:47:28 +020068 struct device *irq_dev;
Stefan Reinauer54309d62009-01-20 22:53:10 +000069 /* Get the chip configuration */
Elyes HAOUAS8d9a6f12020-04-28 04:57:27 +020070 const struct southbridge_intel_i82801gx_config *config = dev->chip_info;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000071
Stefan Reinauer54309d62009-01-20 22:53:10 +000072 pci_write_config8(dev, PIRQA_ROUT, config->pirqa_routing);
73 pci_write_config8(dev, PIRQB_ROUT, config->pirqb_routing);
74 pci_write_config8(dev, PIRQC_ROUT, config->pirqc_routing);
75 pci_write_config8(dev, PIRQD_ROUT, config->pirqd_routing);
76
77 pci_write_config8(dev, PIRQE_ROUT, config->pirqe_routing);
78 pci_write_config8(dev, PIRQF_ROUT, config->pirqf_routing);
79 pci_write_config8(dev, PIRQG_ROUT, config->pirqg_routing);
80 pci_write_config8(dev, PIRQH_ROUT, config->pirqh_routing);
81
82 /* Eric Biederman once said we should let the OS do this.
83 * I am not so sure anymore he was right.
84 */
85
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020086 for (irq_dev = all_devices; irq_dev; irq_dev = irq_dev->next) {
Arthur Heymans3f111b02017-03-09 12:02:52 +010087 u8 int_pin = 0, int_line = 0;
Stefan Reinauer54309d62009-01-20 22:53:10 +000088
89 if (!irq_dev->enabled || irq_dev->path.type != DEVICE_PATH_PCI)
90 continue;
91
92 int_pin = pci_read_config8(irq_dev, PCI_INTERRUPT_PIN);
93
94 switch (int_pin) {
Arthur Heymans3f111b02017-03-09 12:02:52 +010095 case 1:
96 /* INTA# */ int_line = config->pirqa_routing; break;
97 case 2:
98 /* INTB# */ int_line = config->pirqb_routing; break;
99 case 3:
100 /* INTC# */ int_line = config->pirqc_routing; break;
101 case 4:
102 /* INTD# */ int_line = config->pirqd_routing; break;
Stefan Reinauer54309d62009-01-20 22:53:10 +0000103 }
104
105 if (!int_line)
106 continue;
107
108 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE, int_line);
109 }
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000110}
111
Elyes HAOUAS99667032018-05-13 12:47:28 +0200112static void i82801gx_gpi_routing(struct device *dev)
Stefan Reinauera8e11682009-03-11 14:54:18 +0000113{
114 /* Get the chip configuration */
Elyes HAOUAS8d9a6f12020-04-28 04:57:27 +0200115 const struct southbridge_intel_i82801gx_config *config = dev->chip_info;
Stefan Reinauera8e11682009-03-11 14:54:18 +0000116 u32 reg32 = 0;
117
Elyes HAOUAS92646ea2020-04-04 13:43:03 +0200118 /* An array would be much nicer here, or some other method of doing this. */
Stefan Reinauera8e11682009-03-11 14:54:18 +0000119 reg32 |= (config->gpi0_routing & 0x03) << 0;
120 reg32 |= (config->gpi1_routing & 0x03) << 2;
121 reg32 |= (config->gpi2_routing & 0x03) << 4;
122 reg32 |= (config->gpi3_routing & 0x03) << 6;
123 reg32 |= (config->gpi4_routing & 0x03) << 8;
124 reg32 |= (config->gpi5_routing & 0x03) << 10;
125 reg32 |= (config->gpi6_routing & 0x03) << 12;
126 reg32 |= (config->gpi7_routing & 0x03) << 14;
127 reg32 |= (config->gpi8_routing & 0x03) << 16;
128 reg32 |= (config->gpi9_routing & 0x03) << 18;
129 reg32 |= (config->gpi10_routing & 0x03) << 20;
130 reg32 |= (config->gpi11_routing & 0x03) << 22;
131 reg32 |= (config->gpi12_routing & 0x03) << 24;
132 reg32 |= (config->gpi13_routing & 0x03) << 26;
133 reg32 |= (config->gpi14_routing & 0x03) << 28;
134 reg32 |= (config->gpi15_routing & 0x03) << 30;
135
Kyösti Mälkkib85a87b2014-12-29 11:32:27 +0200136 pci_write_config32(dev, GPIO_ROUT, reg32);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000137}
138
Elyes HAOUAS99667032018-05-13 12:47:28 +0200139static void i82801gx_power_options(struct device *dev)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000140{
141 u8 reg8;
Elyes HAOUAS71187012019-02-10 14:58:13 +0100142 u16 reg16;
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000143 u32 reg32;
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000144 const char *state;
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000145 /* Get the chip configuration */
Elyes HAOUAS8d9a6f12020-04-28 04:57:27 +0200146 const struct southbridge_intel_i82801gx_config *config = dev->chip_info;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000147
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000148 /* Which state do we want to goto after g3 (power restored)?
149 * 0 == S0 Full On
150 * 1 == S5 Soft Off
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000151 *
152 * If the option is not existent (Laptops), use MAINBOARD_POWER_ON.
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000153 */
Angel Pons88dcb312021-04-26 17:10:28 +0200154 const unsigned int pwr_on = get_uint_option("power_on_after_fail", MAINBOARD_POWER_ON);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000155
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000156 reg8 = pci_read_config8(dev, GEN_PMCON_3);
157 reg8 &= 0xfe;
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000158 switch (pwr_on) {
159 case MAINBOARD_POWER_OFF:
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000160 reg8 |= 1;
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000161 state = "off";
162 break;
163 case MAINBOARD_POWER_ON:
164 reg8 &= ~1;
165 state = "on";
166 break;
167 case MAINBOARD_POWER_KEEP:
168 reg8 &= ~1;
169 state = "state keep";
170 break;
171 default:
172 state = "undefined";
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000173 }
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000174
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000175 reg8 |= (3 << 4); /* avoid #S4 assertions */
Martin Roth2ed0aa22016-01-05 20:58:58 -0700176 reg8 &= ~(1 << 3); /* minimum assertion is 1 to 2 RTCCLK */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000177
178 pci_write_config8(dev, GEN_PMCON_3, reg8);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000179 printk(BIOS_INFO, "Set power %s after power failure.\n", state);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000180
181 /* Set up NMI on errors. */
182 reg8 = inb(0x61);
183 reg8 &= 0x0f; /* Higher Nibble must be 0 */
184 reg8 &= ~(1 << 3); /* IOCHK# NMI Enable */
185 // reg8 &= ~(1 << 2); /* PCI SERR# Enable */
186 reg8 |= (1 << 2); /* PCI SERR# Disable for now */
187 outb(reg8, 0x61);
188
189 reg8 = inb(0x70);
Angel Pons88dcb312021-04-26 17:10:28 +0200190 const unsigned int nmi_option = get_uint_option("nmi", NMI_OFF);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000191 if (nmi_option) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000192 printk(BIOS_INFO, "NMI sources enabled.\n");
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000193 reg8 &= ~(1 << 7); /* Set NMI. */
194 } else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000195 printk(BIOS_INFO, "NMI sources disabled.\n");
Arthur Heymans3f111b02017-03-09 12:02:52 +0100196 reg8 |= (1 << 7); /* Can't mask NMI from PCI-E and NMI_NOW */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000197 }
198 outb(reg8, 0x70);
199
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000200 /* Enable CPU_SLP# and Intel Speedstep, set SMI# rate down */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000201 reg16 = pci_read_config16(dev, GEN_PMCON_1);
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000202 reg16 &= ~(3 << 0); // SMI# rate 1 minute
203 reg16 |= (1 << 2); // CLKRUN_EN - Mobile/Ultra only
204 reg16 |= (1 << 3); // Speedstep Enable - Mobile/Ultra only
205 reg16 |= (1 << 5); // CPUSLP_EN Desktop only
Sven Schnelle906f9ae2011-10-23 16:35:01 +0200206
207 if (config->c4onc3_enable)
208 reg16 |= (1 << 7);
209
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000210 // another laptop wants this?
211 // reg16 &= ~(1 << 10); // BIOS_PCI_EXP_EN - Desktop/Mobile only
212 reg16 |= (1 << 10); // BIOS_PCI_EXP_EN - Desktop/Mobile only
Kyösti Mälkki94464472020-06-13 13:45:42 +0300213 if (CONFIG(DEBUG_PERIODIC_SMI))
214 reg16 |= (3 << 0); // Periodic SMI every 8s
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000215 pci_write_config16(dev, GEN_PMCON_1, reg16);
216
Stefan Reinauera8e11682009-03-11 14:54:18 +0000217 // Set the board's GPI routing.
218 i82801gx_gpi_routing(dev);
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000219
Elyes HAOUAS71187012019-02-10 14:58:13 +0100220 write_pmbase32(GPE0_EN, config->gpe0_en);
221 write_pmbase16(ALT_GP_SMI_EN, config->alt_gp_smi_en);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000222
223 /* Set up power management block and determine sleep mode */
Elyes HAOUAS71187012019-02-10 14:58:13 +0100224 reg32 = read_pmbase32(PM1_CNT);
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000225
226 reg32 &= ~(7 << 10); // SLP_TYP
227 reg32 |= (1 << 1); // enable C3->C0 transition on bus master
228 reg32 |= (1 << 0); // SCI_EN
Elyes HAOUAS71187012019-02-10 14:58:13 +0100229 write_pmbase32(PM1_CNT, reg32);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000230}
231
Elyes HAOUAS99667032018-05-13 12:47:28 +0200232static void i82801gx_configure_cstates(struct device *dev)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000233{
Angel Ponsd19332c2020-06-08 12:32:54 +0200234 // Enable Popup & Popdown
235 pci_or_config8(dev, 0xa9, (1 << 4) | (1 << 3) | (1 << 2));
Stefan Reinauera8e11682009-03-11 14:54:18 +0000236
237 // Set Deeper Sleep configuration to recommended values
Angel Ponsd19332c2020-06-08 12:32:54 +0200238 // Deeper Sleep to Stop CPU: 34-40us
239 // Deeper Sleep to Sleep: 15us
240 pci_update_config8(dev, 0xaa, 0xf0, (2 << 2) | (2 << 0));
Stefan Reinauera8e11682009-03-11 14:54:18 +0000241}
242
243static void i82801gx_rtc_init(struct device *dev)
244{
245 u8 reg8;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000246 int rtc_failed;
247
248 reg8 = pci_read_config8(dev, GEN_PMCON_3);
249 rtc_failed = reg8 & RTC_BATTERY_DEAD;
250 if (rtc_failed) {
251 reg8 &= ~RTC_BATTERY_DEAD;
252 pci_write_config8(dev, GEN_PMCON_3, reg8);
253 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000254 printk(BIOS_DEBUG, "rtc_failed = 0x%x\n", rtc_failed);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000255
Gabe Blackb3f08c62014-04-30 17:12:25 -0700256 cmos_init(rtc_failed);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000257}
258
Stefan Reinauera8e11682009-03-11 14:54:18 +0000259static void enable_clock_gating(void)
260{
261 u32 reg32;
Stefan Reinauer109ab312009-08-12 16:08:05 +0000262
Stefan Reinauera8e11682009-03-11 14:54:18 +0000263 /* Enable Clock Gating for most devices */
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000264 reg32 = RCBA32(CG);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000265 reg32 |= (1 << 31); // LPC clock gating
266 reg32 |= (1 << 30); // PATA clock gating
267 // SATA clock gating
268 reg32 |= (1 << 27) | (1 << 26) | (1 << 25) | (1 << 24);
269 reg32 |= (1 << 23); // AC97 clock gating
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000270 reg32 |= (1 << 19); // USB EHCI clock gating
Stefan Reinauera8e11682009-03-11 14:54:18 +0000271 reg32 |= (1 << 3) | (1 << 1); // DMI clock gating
272 reg32 |= (1 << 2); // PCIe clock gating;
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000273 reg32 &= ~(1 << 20); // No static clock gating for USB
Arthur Heymans3f111b02017-03-09 12:02:52 +0100274 reg32 &= ~((1 << 29) | (1 << 28)); // Disable UHCI clock gating
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000275 RCBA32(CG) = reg32;
Stefan Reinauera8e11682009-03-11 14:54:18 +0000276}
Stefan Reinauer269563a2009-01-19 21:20:22 +0000277
Kyösti Mälkki83d6a8a2019-07-12 08:16:53 +0300278static void i82801gx_set_acpi_mode(struct device *dev)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000279{
Kyösti Mälkkiad882c32020-06-02 05:05:30 +0300280 if (!acpi_is_wakeup_s3()) {
281 apm_control(APM_CNT_ACPI_DISABLE);
282 } else {
283 apm_control(APM_CNT_ACPI_ENABLE);
Sven Schnellee2618072011-06-05 11:39:12 +0200284 }
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000285}
286
Stefan Reinauera8e11682009-03-11 14:54:18 +0000287#define SPIBASE 0x3020
288static void i82801gx_spi_init(void)
289{
290 u16 spicontrol;
291
292 spicontrol = RCBA16(SPIBASE + 2);
293 spicontrol &= ~(1 << 0); // SPI Access Request
294 RCBA16(SPIBASE + 2) = spicontrol;
295}
296
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000297static void i82801gx_fixups(struct device *dev)
Stefan Reinauera8e11682009-03-11 14:54:18 +0000298{
299 /* This needs to happen after PCI enumeration */
300 RCBA32(0x1d40) |= 1;
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000301
302 /* USB Transient Disconnect Detect:
303 * Prevent a SE0 condition on the USB ports from being
304 * interpreted by the UHCI controller as a disconnect
305 */
306 pci_write_config8(dev, 0xad, 0x3);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000307}
308
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000309static void lpc_init(struct device *dev)
310{
Elyes HAOUASbfc255a2020-03-07 13:05:14 +0100311 printk(BIOS_DEBUG, "i82801gx: %s\n", __func__);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000312
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000313 /* IO APIC initialization. */
Paul Menzelddddf152013-04-23 14:40:23 +0200314 i82801gx_enable_ioapic(dev);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000315
316 i82801gx_enable_serial_irqs(dev);
317
318 /* Setup the PIRQ. */
319 i82801gx_pirq_init(dev);
320
321 /* Setup power options. */
322 i82801gx_power_options(dev);
323
Stefan Reinauera8e11682009-03-11 14:54:18 +0000324 /* Configure Cx state registers */
325 i82801gx_configure_cstates(dev);
326
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000327 /* Initialize the real time clock. */
328 i82801gx_rtc_init(dev);
329
330 /* Initialize ISA DMA. */
331 isa_dma_init();
332
333 /* Initialize the High Precision Event Timers, if present. */
Stefan Reinauera8e11682009-03-11 14:54:18 +0000334 enable_hpet();
335
336 /* Initialize Clock Gating */
337 enable_clock_gating();
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000338
339 setup_i8259();
340
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000341 /* The OS should do this? */
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000342 /* Interrupt 9 should be level triggered (SCI) */
343 i8259_configure_irq_trigger(9, 1);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000344
Kyösti Mälkki44da9e72019-10-09 12:32:16 +0300345 i82801gx_set_acpi_mode(dev);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000346
347 i82801gx_spi_init();
348
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000349 i82801gx_fixups(dev);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000350}
351
Vladimir Serbinenkod5d94ea2014-10-18 02:13:11 +0200352unsigned long acpi_fill_madt(unsigned long current)
353{
354 /* Local APICs */
355 current = acpi_create_madt_lapics(current);
356
357 /* IOAPIC */
Elyes HAOUAS92646ea2020-04-04 13:43:03 +0200358 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, 2, IO_APIC_ADDR, 0);
Vladimir Serbinenkod5d94ea2014-10-18 02:13:11 +0200359
360 /* LAPIC_NMI */
361 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)
362 current, 0,
363 MP_IRQ_POLARITY_HIGH |
364 MP_IRQ_TRIGGER_EDGE, 0x01);
365 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)
366 current, 1, MP_IRQ_POLARITY_HIGH |
367 MP_IRQ_TRIGGER_EDGE, 0x01);
368
369 /* INT_SRC_OVR */
370 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
371 current, 0, 0, 2, MP_IRQ_POLARITY_HIGH | MP_IRQ_TRIGGER_EDGE);
372 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
373 current, 0, 9, 9, MP_IRQ_POLARITY_HIGH | MP_IRQ_TRIGGER_LEVEL);
374
Vladimir Serbinenkod5d94ea2014-10-18 02:13:11 +0200375 return current;
376}
377
Elyes HAOUAS99667032018-05-13 12:47:28 +0200378static void i82801gx_lpc_read_resources(struct device *dev)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000379{
380 struct resource *res;
Vladimir Serbinenkof119f082014-11-24 21:05:56 +0100381 u8 io_index = 0;
382 int i;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000383
384 /* Get the normal PCI resources of this device. */
385 pci_dev_read_resources(dev);
386
387 /* Add an extra subtractive resource for both memory and I/O. */
Vladimir Serbinenkof119f082014-11-24 21:05:56 +0100388 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
Myles Watson29cc9ed2009-07-02 18:56:24 +0000389 res->base = 0;
390 res->size = 0x1000;
391 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
392 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000393
Vladimir Serbinenkof119f082014-11-24 21:05:56 +0100394 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
Myles Watson29cc9ed2009-07-02 18:56:24 +0000395 res->base = 0xff800000;
396 res->size = 0x00800000; /* 8 MB for flash */
397 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
398 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
399
400 res = new_resource(dev, 3); /* IOAPIC */
Uwe Hermann74d1a6e2010-10-12 17:34:08 +0000401 res->base = IO_APIC_ADDR;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000402 res->size = 0x00001000;
403 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Vladimir Serbinenkof119f082014-11-24 21:05:56 +0100404
405 /* Set IO decode ranges if required.*/
406 for (i = 0; i < 4; i++) {
407 u32 gen_dec;
408 gen_dec = pci_read_config32(dev, 0x84 + 4 * i);
409
410 if ((gen_dec & 0xFFFC) > 0x1000) {
411 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
412 res->base = gen_dec & 0xFFFC;
413 res->size = (gen_dec >> 16) & 0xFC;
414 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
415 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
416 }
417 }
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000418}
419
Arthur Heymans36646472018-01-22 14:42:18 +0100420#define SPIBAR16(x) RCBA16(0x3020 + x)
421#define SPIBAR32(x) RCBA32(0x3020 + x)
422
423static void lpc_final(struct device *dev)
424{
425 u16 tco1_cnt;
426
Julius Wernercd49cce2019-03-05 16:53:33 -0800427 if (!CONFIG(INTEL_CHIPSET_LOCKDOWN))
Arthur Heymans36646472018-01-22 14:42:18 +0100428 return;
429
Arthur Heymans767de0a2019-11-15 19:19:53 +0100430 if (CONFIG(BOOT_DEVICE_SPI_FLASH))
431 spi_finalize_ops();
Arthur Heymans36646472018-01-22 14:42:18 +0100432
433 /* Lock SPIBAR */
434 SPIBAR16(0) = SPIBAR16(0) | (1 << 15);
435
436 /* BIOS Interface Lockdown */
437 RCBA32(0x3410) |= 1 << 0;
438
439 /* Global SMI Lock */
440 pci_or_config16(dev, GEN_PMCON_1, 1 << 4);
441
442 /* TCO_Lock */
443 tco1_cnt = inw(DEFAULT_PMBASE + 0x60 + TCO1_CNT);
444 tco1_cnt |= (1 << 12); /* TCO lock */
445 outw(tco1_cnt, DEFAULT_PMBASE + 0x60 + TCO1_CNT);
446
447 /* Indicate finalize step with post code */
448 outb(POST_OS_BOOT, 0x80);
449}
450
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100451static const char *lpc_acpi_name(const struct device *dev)
452{
453 return "LPCB";
454}
455
Furquan Shaikh7536a392020-04-24 21:59:21 -0700456static void southbridge_fill_ssdt(const struct device *device)
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100457{
458 intel_acpi_gen_def_acpi_pirq(device);
459}
460
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000461static struct device_operations device_ops = {
462 .read_resources = i82801gx_lpc_read_resources,
463 .set_resources = pci_dev_set_resources,
Myles Watson7eac4452010-06-17 16:16:56 +0000464 .enable_resources = pci_dev_enable_resources,
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200465 .write_acpi_tables = acpi_write_hpet,
Nico Huber68680dd2020-03-31 17:34:52 +0200466 .acpi_fill_ssdt = southbridge_fill_ssdt,
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100467 .acpi_name = lpc_acpi_name,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000468 .init = lpc_init,
Nico Huber51b75ae2019-03-14 16:02:05 +0100469 .scan_bus = scan_static_bus,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000470 .enable = i82801gx_enable,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200471 .ops_pci = &pci_dev_ops_pci,
Arthur Heymans36646472018-01-22 14:42:18 +0100472 .final = lpc_final,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000473};
474
Damien Zammitef33e032015-11-14 01:03:39 +1100475static const unsigned short pci_device_ids[] = {
Elyes HAOUAS92646ea2020-04-04 13:43:03 +0200476 0x27b0, /* 82801GH (ICH7 DH) */
477 0x27b8, /* 82801GB/GR (ICH7/ICH7R) */
478 0x27b9, /* 82801GBM/GU (ICH7-M/ICH7-U) */
479 0x27bc, /* 82NM10 (NM10) */
480 0x27bd, /* 82801GHM (ICH7-M DH) */
481 0
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000482};
483
Damien Zammitef33e032015-11-14 01:03:39 +1100484static const struct pci_driver ich7_lpc __pci_driver = {
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000485 .ops = &device_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100486 .vendor = PCI_VID_INTEL,
Damien Zammitef33e032015-11-14 01:03:39 +1100487 .devices = pci_device_ids,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000488};