blob: 0bfe8eb52fdda3e7e0046559800ebe50f6c41ef7 [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>
Vladimir Serbinenko0e646172014-08-31 00:27:05 +020018#include <cbmem.h>
19#include <string.h>
Arthur Heymansa8a9f342017-12-24 08:11:13 +010020#include <southbridge/intel/common/acpi_pirq_gen.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"
Vladimir Serbinenko0e646172014-08-31 00:27:05 +020026#include "nvs.h"
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000027
Stefan Reinauer573f7d42009-07-21 21:50:34 +000028#define NMI_OFF 0
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000029
Stefan Reinauer54309d62009-01-20 22:53:10 +000030typedef struct southbridge_intel_i82801gx_config config_t;
31
Paul Menzelddddf152013-04-23 14:40:23 +020032/**
Martin Roth2ed0aa22016-01-05 20:58:58 -070033 * Set miscellaneous static southbridge features.
Paul Menzelddddf152013-04-23 14:40:23 +020034 *
35 * @param dev PCI device with I/O APIC control registers
36 */
37static void i82801gx_enable_ioapic(struct device *dev)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000038{
Paul Menzelddddf152013-04-23 14:40:23 +020039 /* Enable ACPI I/O range decode */
Kyösti Mälkki1cca3402013-02-26 19:21:39 +020040 pci_write_config8(dev, ACPI_CNTL, ACPI_EN);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000041
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080042 set_ioapic_id(VIO_APIC_VADDR, 0x02);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000043
Paul Menzelddddf152013-04-23 14:40:23 +020044 /*
45 * Select Boot Configuration register (0x03) and
46 * use Processor System Bus (0x01) to deliver interrupts.
47 */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080048 io_apic_write(VIO_APIC_VADDR, 0x03, 0x01);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000049}
50
51static void i82801gx_enable_serial_irqs(struct device *dev)
52{
53 /* Set packet length and toggle silent mode bit for one frame. */
Elyes HAOUAS92646ea2020-04-04 13:43:03 +020054 pci_write_config8(dev, SERIRQ_CNTL, (1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0));
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000055}
56
Stefan Reinauer573f7d42009-07-21 21:50:34 +000057/* PIRQ[n]_ROUT[3:0] - PIRQ Routing Control
58 * 0x00 - 0000 = Reserved
59 * 0x01 - 0001 = Reserved
60 * 0x02 - 0010 = Reserved
61 * 0x03 - 0011 = IRQ3
62 * 0x04 - 0100 = IRQ4
63 * 0x05 - 0101 = IRQ5
64 * 0x06 - 0110 = IRQ6
65 * 0x07 - 0111 = IRQ7
66 * 0x08 - 1000 = Reserved
67 * 0x09 - 1001 = IRQ9
68 * 0x0A - 1010 = IRQ10
69 * 0x0B - 1011 = IRQ11
70 * 0x0C - 1100 = IRQ12
71 * 0x0D - 1101 = Reserved
72 * 0x0E - 1110 = IRQ14
73 * 0x0F - 1111 = IRQ15
74 * PIRQ[n]_ROUT[7] - PIRQ Routing Control
75 * 0x80 - The PIRQ is not routed.
76 */
77
Elyes HAOUAS99667032018-05-13 12:47:28 +020078static void i82801gx_pirq_init(struct device *dev)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000079{
Elyes HAOUAS99667032018-05-13 12:47:28 +020080 struct device *irq_dev;
Stefan Reinauer54309d62009-01-20 22:53:10 +000081 /* Get the chip configuration */
82 config_t *config = dev->chip_info;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000083
Stefan Reinauer54309d62009-01-20 22:53:10 +000084 pci_write_config8(dev, PIRQA_ROUT, config->pirqa_routing);
85 pci_write_config8(dev, PIRQB_ROUT, config->pirqb_routing);
86 pci_write_config8(dev, PIRQC_ROUT, config->pirqc_routing);
87 pci_write_config8(dev, PIRQD_ROUT, config->pirqd_routing);
88
89 pci_write_config8(dev, PIRQE_ROUT, config->pirqe_routing);
90 pci_write_config8(dev, PIRQF_ROUT, config->pirqf_routing);
91 pci_write_config8(dev, PIRQG_ROUT, config->pirqg_routing);
92 pci_write_config8(dev, PIRQH_ROUT, config->pirqh_routing);
93
94 /* Eric Biederman once said we should let the OS do this.
95 * I am not so sure anymore he was right.
96 */
97
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020098 for (irq_dev = all_devices; irq_dev; irq_dev = irq_dev->next) {
Arthur Heymans3f111b02017-03-09 12:02:52 +010099 u8 int_pin = 0, int_line = 0;
Stefan Reinauer54309d62009-01-20 22:53:10 +0000100
101 if (!irq_dev->enabled || irq_dev->path.type != DEVICE_PATH_PCI)
102 continue;
103
104 int_pin = pci_read_config8(irq_dev, PCI_INTERRUPT_PIN);
105
106 switch (int_pin) {
Arthur Heymans3f111b02017-03-09 12:02:52 +0100107 case 1:
108 /* INTA# */ int_line = config->pirqa_routing; break;
109 case 2:
110 /* INTB# */ int_line = config->pirqb_routing; break;
111 case 3:
112 /* INTC# */ int_line = config->pirqc_routing; break;
113 case 4:
114 /* INTD# */ int_line = config->pirqd_routing; break;
Stefan Reinauer54309d62009-01-20 22:53:10 +0000115 }
116
117 if (!int_line)
118 continue;
119
120 pci_write_config8(irq_dev, PCI_INTERRUPT_LINE, int_line);
121 }
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000122}
123
Elyes HAOUAS99667032018-05-13 12:47:28 +0200124static void i82801gx_gpi_routing(struct device *dev)
Stefan Reinauera8e11682009-03-11 14:54:18 +0000125{
126 /* Get the chip configuration */
127 config_t *config = dev->chip_info;
128 u32 reg32 = 0;
129
Elyes HAOUAS92646ea2020-04-04 13:43:03 +0200130 /* An array would be much nicer here, or some other method of doing this. */
Stefan Reinauera8e11682009-03-11 14:54:18 +0000131 reg32 |= (config->gpi0_routing & 0x03) << 0;
132 reg32 |= (config->gpi1_routing & 0x03) << 2;
133 reg32 |= (config->gpi2_routing & 0x03) << 4;
134 reg32 |= (config->gpi3_routing & 0x03) << 6;
135 reg32 |= (config->gpi4_routing & 0x03) << 8;
136 reg32 |= (config->gpi5_routing & 0x03) << 10;
137 reg32 |= (config->gpi6_routing & 0x03) << 12;
138 reg32 |= (config->gpi7_routing & 0x03) << 14;
139 reg32 |= (config->gpi8_routing & 0x03) << 16;
140 reg32 |= (config->gpi9_routing & 0x03) << 18;
141 reg32 |= (config->gpi10_routing & 0x03) << 20;
142 reg32 |= (config->gpi11_routing & 0x03) << 22;
143 reg32 |= (config->gpi12_routing & 0x03) << 24;
144 reg32 |= (config->gpi13_routing & 0x03) << 26;
145 reg32 |= (config->gpi14_routing & 0x03) << 28;
146 reg32 |= (config->gpi15_routing & 0x03) << 30;
147
Kyösti Mälkkib85a87b2014-12-29 11:32:27 +0200148 pci_write_config32(dev, GPIO_ROUT, reg32);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000149}
150
Elyes HAOUAS99667032018-05-13 12:47:28 +0200151static void i82801gx_power_options(struct device *dev)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000152{
153 u8 reg8;
Elyes HAOUAS71187012019-02-10 14:58:13 +0100154 u16 reg16;
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000155 u32 reg32;
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000156 const char *state;
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000157 /* Get the chip configuration */
158 config_t *config = dev->chip_info;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000159
Nico Huber9faae2b2018-11-14 00:00:35 +0100160 int pwr_on = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
Luc Verhaegena9c5ea02009-06-03 14:19:33 +0000161 int nmi_option;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000162
163 /* Which state do we want to goto after g3 (power restored)?
164 * 0 == S0 Full On
165 * 1 == S5 Soft Off
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000166 *
167 * If the option is not existent (Laptops), use MAINBOARD_POWER_ON.
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000168 */
Varad Gautam06ef0462015-03-11 09:54:41 +0530169 pwr_on = MAINBOARD_POWER_ON;
170 get_option(&pwr_on, "power_on_after_fail");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000171
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000172 reg8 = pci_read_config8(dev, GEN_PMCON_3);
173 reg8 &= 0xfe;
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000174 switch (pwr_on) {
175 case MAINBOARD_POWER_OFF:
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000176 reg8 |= 1;
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000177 state = "off";
178 break;
179 case MAINBOARD_POWER_ON:
180 reg8 &= ~1;
181 state = "on";
182 break;
183 case MAINBOARD_POWER_KEEP:
184 reg8 &= ~1;
185 state = "state keep";
186 break;
187 default:
188 state = "undefined";
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000189 }
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000190
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000191 reg8 |= (3 << 4); /* avoid #S4 assertions */
Martin Roth2ed0aa22016-01-05 20:58:58 -0700192 reg8 &= ~(1 << 3); /* minimum assertion is 1 to 2 RTCCLK */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000193
194 pci_write_config8(dev, GEN_PMCON_3, reg8);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000195 printk(BIOS_INFO, "Set power %s after power failure.\n", state);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000196
197 /* Set up NMI on errors. */
198 reg8 = inb(0x61);
199 reg8 &= 0x0f; /* Higher Nibble must be 0 */
200 reg8 &= ~(1 << 3); /* IOCHK# NMI Enable */
201 // reg8 &= ~(1 << 2); /* PCI SERR# Enable */
202 reg8 |= (1 << 2); /* PCI SERR# Disable for now */
203 outb(reg8, 0x61);
204
205 reg8 = inb(0x70);
206 nmi_option = NMI_OFF;
Luc Verhaegena9c5ea02009-06-03 14:19:33 +0000207 get_option(&nmi_option, "nmi");
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000208 if (nmi_option) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000209 printk(BIOS_INFO, "NMI sources enabled.\n");
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000210 reg8 &= ~(1 << 7); /* Set NMI. */
211 } else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000212 printk(BIOS_INFO, "NMI sources disabled.\n");
Arthur Heymans3f111b02017-03-09 12:02:52 +0100213 reg8 |= (1 << 7); /* Can't mask NMI from PCI-E and NMI_NOW */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000214 }
215 outb(reg8, 0x70);
216
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000217 /* Enable CPU_SLP# and Intel Speedstep, set SMI# rate down */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000218 reg16 = pci_read_config16(dev, GEN_PMCON_1);
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000219 reg16 &= ~(3 << 0); // SMI# rate 1 minute
220 reg16 |= (1 << 2); // CLKRUN_EN - Mobile/Ultra only
221 reg16 |= (1 << 3); // Speedstep Enable - Mobile/Ultra only
222 reg16 |= (1 << 5); // CPUSLP_EN Desktop only
Sven Schnelle906f9ae2011-10-23 16:35:01 +0200223
224 if (config->c4onc3_enable)
225 reg16 |= (1 << 7);
226
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000227 // another laptop wants this?
228 // reg16 &= ~(1 << 10); // BIOS_PCI_EXP_EN - Desktop/Mobile only
229 reg16 |= (1 << 10); // BIOS_PCI_EXP_EN - Desktop/Mobile only
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000230#if DEBUG_PERIODIC_SMIS
231 /* Set DEBUG_PERIODIC_SMIS in i82801gx.h to debug using
232 * periodic SMIs.
233 */
234 reg16 |= (3 << 0); // Periodic SMI every 8s
235#endif
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000236 pci_write_config16(dev, GEN_PMCON_1, reg16);
237
Stefan Reinauera8e11682009-03-11 14:54:18 +0000238 // Set the board's GPI routing.
239 i82801gx_gpi_routing(dev);
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000240
Elyes HAOUAS71187012019-02-10 14:58:13 +0100241 write_pmbase32(GPE0_EN, config->gpe0_en);
242 write_pmbase16(ALT_GP_SMI_EN, config->alt_gp_smi_en);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000243
244 /* Set up power management block and determine sleep mode */
Elyes HAOUAS71187012019-02-10 14:58:13 +0100245 reg32 = read_pmbase32(PM1_CNT);
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000246
247 reg32 &= ~(7 << 10); // SLP_TYP
248 reg32 |= (1 << 1); // enable C3->C0 transition on bus master
249 reg32 |= (1 << 0); // SCI_EN
Elyes HAOUAS71187012019-02-10 14:58:13 +0100250 write_pmbase32(PM1_CNT, reg32);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000251}
252
Elyes HAOUAS99667032018-05-13 12:47:28 +0200253static void i82801gx_configure_cstates(struct device *dev)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000254{
255 u8 reg8;
Stefan Reinauer109ab312009-08-12 16:08:05 +0000256
Stefan Reinauera8e11682009-03-11 14:54:18 +0000257 reg8 = pci_read_config8(dev, 0xa9); // Cx state configuration
258 reg8 |= (1 << 4) | (1 << 3) | (1 << 2); // Enable Popup & Popdown
259 pci_write_config8(dev, 0xa9, reg8);
260
261 // Set Deeper Sleep configuration to recommended values
262 reg8 = pci_read_config8(dev, 0xaa);
263 reg8 &= 0xf0;
264 reg8 |= (2 << 2); // Deeper Sleep to Stop CPU: 34-40us
265 reg8 |= (2 << 0); // Deeper Sleep to Sleep: 15us
266 pci_write_config8(dev, 0xaa, reg8);
267}
268
269static void i82801gx_rtc_init(struct device *dev)
270{
271 u8 reg8;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000272 int rtc_failed;
273
274 reg8 = pci_read_config8(dev, GEN_PMCON_3);
275 rtc_failed = reg8 & RTC_BATTERY_DEAD;
276 if (rtc_failed) {
277 reg8 &= ~RTC_BATTERY_DEAD;
278 pci_write_config8(dev, GEN_PMCON_3, reg8);
279 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000280 printk(BIOS_DEBUG, "rtc_failed = 0x%x\n", rtc_failed);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000281
Gabe Blackb3f08c62014-04-30 17:12:25 -0700282 cmos_init(rtc_failed);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000283}
284
Stefan Reinauera8e11682009-03-11 14:54:18 +0000285static void enable_hpet(void)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000286{
Stefan Reinauera8e11682009-03-11 14:54:18 +0000287 u32 reg32;
Stefan Reinauer109ab312009-08-12 16:08:05 +0000288
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000289 /* Move HPET to default address 0xfed00000 and enable it */
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000290 reg32 = RCBA32(HPTC);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000291 reg32 |= (1 << 7); // HPET Address Enable
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000292 reg32 &= ~(3 << 0);
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000293 RCBA32(HPTC) = reg32;
Arthur Heymansc73c9232019-10-02 14:57:50 +0200294 /* On NM10 this only works if read back */
295 RCBA32(HPTC);
296
297 write32((u32 *)0xfed00010, read32((u32 *)0xfed00010) | 1);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000298}
299
Stefan Reinauera8e11682009-03-11 14:54:18 +0000300static void enable_clock_gating(void)
301{
302 u32 reg32;
Stefan Reinauer109ab312009-08-12 16:08:05 +0000303
Stefan Reinauera8e11682009-03-11 14:54:18 +0000304 /* Enable Clock Gating for most devices */
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000305 reg32 = RCBA32(CG);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000306 reg32 |= (1 << 31); // LPC clock gating
307 reg32 |= (1 << 30); // PATA clock gating
308 // SATA clock gating
309 reg32 |= (1 << 27) | (1 << 26) | (1 << 25) | (1 << 24);
310 reg32 |= (1 << 23); // AC97 clock gating
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000311 reg32 |= (1 << 19); // USB EHCI clock gating
Stefan Reinauera8e11682009-03-11 14:54:18 +0000312 reg32 |= (1 << 3) | (1 << 1); // DMI clock gating
313 reg32 |= (1 << 2); // PCIe clock gating;
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000314 reg32 &= ~(1 << 20); // No static clock gating for USB
Arthur Heymans3f111b02017-03-09 12:02:52 +0100315 reg32 &= ~((1 << 29) | (1 << 28)); // Disable UHCI clock gating
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000316 RCBA32(CG) = reg32;
Stefan Reinauera8e11682009-03-11 14:54:18 +0000317}
Stefan Reinauer269563a2009-01-19 21:20:22 +0000318
Kyösti Mälkki83d6a8a2019-07-12 08:16:53 +0300319static void i82801gx_set_acpi_mode(struct device *dev)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000320{
Kyösti Mälkki44da9e72019-10-09 12:32:16 +0300321 if (CONFIG(HAVE_SMI_HANDLER)) {
322 if (!acpi_is_wakeup_s3()) {
323 printk(BIOS_DEBUG, "Disabling ACPI via APMC:\n");
324 outb(APM_CNT_ACPI_DISABLE, APM_CNT); // Disable ACPI mode
325 printk(BIOS_DEBUG, "done.\n");
326 } else {
327 printk(BIOS_DEBUG, "S3 wakeup, enabling ACPI via APMC\n");
328 outb(APM_CNT_ACPI_ENABLE, APM_CNT);
329 }
Sven Schnellee2618072011-06-05 11:39:12 +0200330 }
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000331}
332
Stefan Reinauera8e11682009-03-11 14:54:18 +0000333#define SPIBASE 0x3020
334static void i82801gx_spi_init(void)
335{
336 u16 spicontrol;
337
338 spicontrol = RCBA16(SPIBASE + 2);
339 spicontrol &= ~(1 << 0); // SPI Access Request
340 RCBA16(SPIBASE + 2) = spicontrol;
341}
342
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000343static void i82801gx_fixups(struct device *dev)
Stefan Reinauera8e11682009-03-11 14:54:18 +0000344{
345 /* This needs to happen after PCI enumeration */
346 RCBA32(0x1d40) |= 1;
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000347
348 /* USB Transient Disconnect Detect:
349 * Prevent a SE0 condition on the USB ports from being
350 * interpreted by the UHCI controller as a disconnect
351 */
352 pci_write_config8(dev, 0xad, 0x3);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000353}
354
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000355static void lpc_init(struct device *dev)
356{
Elyes HAOUASbfc255a2020-03-07 13:05:14 +0100357 printk(BIOS_DEBUG, "i82801gx: %s\n", __func__);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000358
359 /* Set the value for PCI command register. */
360 pci_write_config16(dev, PCI_COMMAND, 0x000f);
361
362 /* IO APIC initialization. */
Paul Menzelddddf152013-04-23 14:40:23 +0200363 i82801gx_enable_ioapic(dev);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000364
365 i82801gx_enable_serial_irqs(dev);
366
367 /* Setup the PIRQ. */
368 i82801gx_pirq_init(dev);
369
370 /* Setup power options. */
371 i82801gx_power_options(dev);
372
Stefan Reinauera8e11682009-03-11 14:54:18 +0000373 /* Configure Cx state registers */
374 i82801gx_configure_cstates(dev);
375
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000376 /* Set the state of the GPIO lines. */
377 //gpio_init(dev);
378
379 /* Initialize the real time clock. */
380 i82801gx_rtc_init(dev);
381
382 /* Initialize ISA DMA. */
383 isa_dma_init();
384
385 /* Initialize the High Precision Event Timers, if present. */
Stefan Reinauera8e11682009-03-11 14:54:18 +0000386 enable_hpet();
387
388 /* Initialize Clock Gating */
389 enable_clock_gating();
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000390
391 setup_i8259();
392
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000393 /* The OS should do this? */
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000394 /* Interrupt 9 should be level triggered (SCI) */
395 i8259_configure_irq_trigger(9, 1);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000396
Kyösti Mälkki44da9e72019-10-09 12:32:16 +0300397 i82801gx_set_acpi_mode(dev);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000398
399 i82801gx_spi_init();
400
Stefan Reinauer7a3d0952010-01-17 13:49:07 +0000401 i82801gx_fixups(dev);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000402}
403
Vladimir Serbinenkod5d94ea2014-10-18 02:13:11 +0200404unsigned long acpi_fill_madt(unsigned long current)
405{
406 /* Local APICs */
407 current = acpi_create_madt_lapics(current);
408
409 /* IOAPIC */
Elyes HAOUAS92646ea2020-04-04 13:43:03 +0200410 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, 2, IO_APIC_ADDR, 0);
Vladimir Serbinenkod5d94ea2014-10-18 02:13:11 +0200411
412 /* LAPIC_NMI */
413 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)
414 current, 0,
415 MP_IRQ_POLARITY_HIGH |
416 MP_IRQ_TRIGGER_EDGE, 0x01);
417 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)
418 current, 1, MP_IRQ_POLARITY_HIGH |
419 MP_IRQ_TRIGGER_EDGE, 0x01);
420
421 /* INT_SRC_OVR */
422 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
423 current, 0, 0, 2, MP_IRQ_POLARITY_HIGH | MP_IRQ_TRIGGER_EDGE);
424 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
425 current, 0, 9, 9, MP_IRQ_POLARITY_HIGH | MP_IRQ_TRIGGER_LEVEL);
426
427
428 return current;
429}
430
Arthur Heymans3f111b02017-03-09 12:02:52 +0100431void acpi_fill_fadt(acpi_fadt_t *fadt)
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200432{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300433 struct device *dev = pcidev_on_root(0x1f, 0);
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200434 config_t *chip = dev->chip_info;
Elyes HAOUAS71187012019-02-10 14:58:13 +0100435 u16 pmbase = lpc_get_pmbase();
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200436
437 fadt->pm1a_evt_blk = pmbase;
438 fadt->pm1b_evt_blk = 0x0;
Elyes HAOUAS71187012019-02-10 14:58:13 +0100439 fadt->pm1a_cnt_blk = pmbase + PM1_CNT;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200440 fadt->pm1b_cnt_blk = 0x0;
Elyes HAOUAS71187012019-02-10 14:58:13 +0100441 fadt->pm2_cnt_blk = pmbase + PM2_CNT;
442 fadt->pm_tmr_blk = pmbase + PM1_TMR;
443 fadt->gpe0_blk = pmbase + GPE0_STS;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200444 fadt->gpe1_blk = 0;
445
446 fadt->pm1_evt_len = 4;
447 fadt->pm1_cnt_len = 2;
448 fadt->pm2_cnt_len = 1;
449 fadt->pm_tmr_len = 4;
450 fadt->gpe0_blk_len = 8;
451 fadt->gpe1_blk_len = 0;
452 fadt->gpe1_base = 0;
453
454 fadt->reset_reg.space_id = 1;
455 fadt->reset_reg.bit_width = 8;
456 fadt->reset_reg.bit_offset = 0;
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200457 fadt->reset_reg.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200458 fadt->reset_reg.addrl = 0xcf9;
459 fadt->reset_reg.addrh = 0;
460
461 fadt->reset_value = 6;
462
463 fadt->x_pm1a_evt_blk.space_id = 1;
464 fadt->x_pm1a_evt_blk.bit_width = 32;
465 fadt->x_pm1a_evt_blk.bit_offset = 0;
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200466 fadt->x_pm1a_evt_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200467 fadt->x_pm1a_evt_blk.addrl = pmbase;
468 fadt->x_pm1a_evt_blk.addrh = 0x0;
469
470 fadt->x_pm1b_evt_blk.space_id = 0;
471 fadt->x_pm1b_evt_blk.bit_width = 0;
472 fadt->x_pm1b_evt_blk.bit_offset = 0;
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200473 fadt->x_pm1b_evt_blk.access_size = 0;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200474 fadt->x_pm1b_evt_blk.addrl = 0x0;
475 fadt->x_pm1b_evt_blk.addrh = 0x0;
476
477 fadt->x_pm1a_cnt_blk.space_id = 1;
478 fadt->x_pm1a_cnt_blk.bit_width = 16;
479 fadt->x_pm1a_cnt_blk.bit_offset = 0;
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200480 fadt->x_pm1a_cnt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
Elyes HAOUAS71187012019-02-10 14:58:13 +0100481 fadt->x_pm1a_cnt_blk.addrl = pmbase + PM1_CNT;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200482 fadt->x_pm1a_cnt_blk.addrh = 0x0;
483
484 fadt->x_pm1b_cnt_blk.space_id = 0;
485 fadt->x_pm1b_cnt_blk.bit_width = 0;
486 fadt->x_pm1b_cnt_blk.bit_offset = 0;
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200487 fadt->x_pm1b_cnt_blk.access_size = 0;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200488 fadt->x_pm1b_cnt_blk.addrl = 0x0;
489 fadt->x_pm1b_cnt_blk.addrh = 0x0;
490
491 fadt->x_pm2_cnt_blk.space_id = 1;
492 fadt->x_pm2_cnt_blk.bit_width = 8;
493 fadt->x_pm2_cnt_blk.bit_offset = 0;
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200494 fadt->x_pm2_cnt_blk.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
Elyes HAOUAS71187012019-02-10 14:58:13 +0100495 fadt->x_pm2_cnt_blk.addrl = pmbase + PM2_CNT;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200496 fadt->x_pm2_cnt_blk.addrh = 0x0;
497
498 fadt->x_pm_tmr_blk.space_id = 1;
499 fadt->x_pm_tmr_blk.bit_width = 32;
500 fadt->x_pm_tmr_blk.bit_offset = 0;
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200501 fadt->x_pm_tmr_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
Elyes HAOUAS71187012019-02-10 14:58:13 +0100502 fadt->x_pm_tmr_blk.addrl = pmbase + PM1_TMR;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200503 fadt->x_pm_tmr_blk.addrh = 0x0;
504
505 fadt->x_gpe0_blk.space_id = 1;
506 fadt->x_gpe0_blk.bit_width = 64;
507 fadt->x_gpe0_blk.bit_offset = 0;
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200508 fadt->x_gpe0_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
Elyes HAOUAS71187012019-02-10 14:58:13 +0100509 fadt->x_gpe0_blk.addrl = pmbase + GPE0_STS;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200510 fadt->x_gpe0_blk.addrh = 0x0;
511
512 fadt->x_gpe1_blk.space_id = 0;
513 fadt->x_gpe1_blk.bit_width = 0;
514 fadt->x_gpe1_blk.bit_offset = 0;
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200515 fadt->x_gpe1_blk.access_size = 0;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200516 fadt->x_gpe1_blk.addrl = 0x0;
517 fadt->x_gpe1_blk.addrh = 0x0;
518 fadt->day_alrm = 0xd;
519 fadt->mon_alrm = 0x00;
520 fadt->century = 0x32;
521
Elyes HAOUAS0d4de2a2019-02-28 13:04:29 +0100522 fadt->reserved = 0;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200523 fadt->sci_int = 0x9;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200524
Kyösti Mälkki0a9e72e2019-08-11 01:22:28 +0300525 if (permanent_smi_handler()) {
Kyösti Mälkkic328a682019-11-23 07:23:40 +0200526 fadt->smi_cmd = APM_CNT;
527 fadt->acpi_enable = APM_CNT_ACPI_ENABLE;
528 fadt->acpi_disable = APM_CNT_ACPI_DISABLE;
529 fadt->pstate_cnt = APM_CNT_PST_CONTROL;
530 fadt->cst_cnt = APM_CNT_CST_CONTROL;
531 }
532
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200533 fadt->p_lvl2_lat = 1;
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200534 fadt->p_lvl3_lat = chip->c3_latency;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200535 fadt->flush_size = 0;
536 fadt->flush_stride = 0;
537 fadt->duty_offset = 1;
Arthur Heymans3f111b02017-03-09 12:02:52 +0100538 if (chip->p_cnt_throttling_supported)
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200539 fadt->duty_width = 3;
Arthur Heymans3f111b02017-03-09 12:02:52 +0100540 else
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200541 fadt->duty_width = 0;
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200542 fadt->iapc_boot_arch = 0x03;
543 fadt->flags = (ACPI_FADT_WBINVD | ACPI_FADT_C1_SUPPORTED
544 | ACPI_FADT_SLEEP_BUTTON | ACPI_FADT_S4_RTC_WAKE
545 | ACPI_FADT_PLATFORM_CLOCK | ACPI_FADT_RESET_REGISTER
546 | ACPI_FADT_C2_MP_SUPPORTED);
Arthur Heymans3f111b02017-03-09 12:02:52 +0100547 if (chip->docking_supported)
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +0200548 fadt->flags |= ACPI_FADT_DOCKING_SUPPORTED;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200549}
550
Elyes HAOUAS99667032018-05-13 12:47:28 +0200551static void i82801gx_lpc_read_resources(struct device *dev)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000552{
553 struct resource *res;
Vladimir Serbinenkof119f082014-11-24 21:05:56 +0100554 u8 io_index = 0;
555 int i;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000556
557 /* Get the normal PCI resources of this device. */
558 pci_dev_read_resources(dev);
559
560 /* Add an extra subtractive resource for both memory and I/O. */
Vladimir Serbinenkof119f082014-11-24 21:05:56 +0100561 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
Myles Watson29cc9ed2009-07-02 18:56:24 +0000562 res->base = 0;
563 res->size = 0x1000;
564 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
565 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000566
Vladimir Serbinenkof119f082014-11-24 21:05:56 +0100567 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
Myles Watson29cc9ed2009-07-02 18:56:24 +0000568 res->base = 0xff800000;
569 res->size = 0x00800000; /* 8 MB for flash */
570 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
571 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
572
573 res = new_resource(dev, 3); /* IOAPIC */
Uwe Hermann74d1a6e2010-10-12 17:34:08 +0000574 res->base = IO_APIC_ADDR;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000575 res->size = 0x00001000;
576 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Vladimir Serbinenkof119f082014-11-24 21:05:56 +0100577
578 /* Set IO decode ranges if required.*/
579 for (i = 0; i < 4; i++) {
580 u32 gen_dec;
581 gen_dec = pci_read_config32(dev, 0x84 + 4 * i);
582
583 if ((gen_dec & 0xFFFC) > 0x1000) {
584 res = new_resource(dev, IOINDEX_SUBTRACTIVE(io_index++, 0));
585 res->base = gen_dec & 0xFFFC;
586 res->size = (gen_dec >> 16) & 0xFC;
587 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
588 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
589 }
590 }
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000591}
592
Arthur Heymans36646472018-01-22 14:42:18 +0100593#define SPIBAR16(x) RCBA16(0x3020 + x)
594#define SPIBAR32(x) RCBA32(0x3020 + x)
595
596static void lpc_final(struct device *dev)
597{
598 u16 tco1_cnt;
599
Julius Wernercd49cce2019-03-05 16:53:33 -0800600 if (!CONFIG(INTEL_CHIPSET_LOCKDOWN))
Arthur Heymans36646472018-01-22 14:42:18 +0100601 return;
602
Arthur Heymans767de0a2019-11-15 19:19:53 +0100603 if (CONFIG(BOOT_DEVICE_SPI_FLASH))
604 spi_finalize_ops();
Arthur Heymans36646472018-01-22 14:42:18 +0100605
606 /* Lock SPIBAR */
607 SPIBAR16(0) = SPIBAR16(0) | (1 << 15);
608
609 /* BIOS Interface Lockdown */
610 RCBA32(0x3410) |= 1 << 0;
611
612 /* Global SMI Lock */
613 pci_or_config16(dev, GEN_PMCON_1, 1 << 4);
614
615 /* TCO_Lock */
616 tco1_cnt = inw(DEFAULT_PMBASE + 0x60 + TCO1_CNT);
617 tco1_cnt |= (1 << 12); /* TCO lock */
618 outw(tco1_cnt, DEFAULT_PMBASE + 0x60 + TCO1_CNT);
619
620 /* Indicate finalize step with post code */
621 outb(POST_OS_BOOT, 0x80);
622}
623
Furquan Shaikh338fd9a2020-04-24 22:57:05 -0700624static void southbridge_inject_dsdt(const struct device *dev)
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200625{
Arthur Heymans3f111b02017-03-09 12:02:52 +0100626 global_nvs_t *gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(*gnvs));
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200627
628 if (gnvs) {
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200629 memset(gnvs, 0, sizeof(*gnvs));
Vladimir Serbinenko385743a2014-10-18 02:26:21 +0200630
631 gnvs->apic = 1;
632 gnvs->mpen = 1; /* Enable Multi Processing */
633
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200634 acpi_create_gnvs(gnvs);
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +0100635
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200636 /* And tell SMI about it */
637 smm_setup_structures(gnvs, NULL, NULL);
638
639 /* Add it to SSDT. */
Vladimir Serbinenko1bad88e2014-11-04 21:20:56 +0100640 acpigen_write_scope("\\");
641 acpigen_write_name_dword("NVSA", (u32) gnvs);
642 acpigen_pop_len();
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200643 }
644}
645
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100646static const char *lpc_acpi_name(const struct device *dev)
647{
648 return "LPCB";
649}
650
Furquan Shaikh7536a392020-04-24 21:59:21 -0700651static void southbridge_fill_ssdt(const struct device *device)
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100652{
653 intel_acpi_gen_def_acpi_pirq(device);
654}
655
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000656static struct device_operations device_ops = {
657 .read_resources = i82801gx_lpc_read_resources,
658 .set_resources = pci_dev_set_resources,
Myles Watson7eac4452010-06-17 16:16:56 +0000659 .enable_resources = pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200660 .acpi_inject_dsdt = southbridge_inject_dsdt,
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200661 .write_acpi_tables = acpi_write_hpet,
Nico Huber68680dd2020-03-31 17:34:52 +0200662 .acpi_fill_ssdt = southbridge_fill_ssdt,
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100663 .acpi_name = lpc_acpi_name,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000664 .init = lpc_init,
Nico Huber51b75ae2019-03-14 16:02:05 +0100665 .scan_bus = scan_static_bus,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000666 .enable = i82801gx_enable,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200667 .ops_pci = &pci_dev_ops_pci,
Arthur Heymans36646472018-01-22 14:42:18 +0100668 .final = lpc_final,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000669};
670
Damien Zammitef33e032015-11-14 01:03:39 +1100671static const unsigned short pci_device_ids[] = {
Elyes HAOUAS92646ea2020-04-04 13:43:03 +0200672 0x27b0, /* 82801GH (ICH7 DH) */
673 0x27b8, /* 82801GB/GR (ICH7/ICH7R) */
674 0x27b9, /* 82801GBM/GU (ICH7-M/ICH7-U) */
675 0x27bc, /* 82NM10 (NM10) */
676 0x27bd, /* 82801GHM (ICH7-M DH) */
677 0
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000678};
679
Damien Zammitef33e032015-11-14 01:03:39 +1100680static const struct pci_driver ich7_lpc __pci_driver = {
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000681 .ops = &device_ops,
682 .vendor = PCI_VENDOR_ID_INTEL,
Damien Zammitef33e032015-11-14 01:03:39 +1100683 .devices = pci_device_ids,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000684};