blob: 1fbff532fd2f9d9e52ea2660667d4a06b7cc77fc [file] [log] [blame]
Angel Ponsae593872020-04-04 18:50:57 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Marc Jones24484842017-05-04 21:17:45 -06002
Felix Held390a2802021-10-21 03:13:42 +02003#include <arch/ioapic.h>
Marc Jones24484842017-05-04 21:17:45 -06004#include <console/console.h>
5#include <device/device.h>
6#include <device/pci.h>
7#include <device/pnp.h>
Marc Jones24484842017-05-04 21:17:45 -06008#include <device/pci_ops.h>
Marc Jones24484842017-05-04 21:17:45 -06009#include <pc80/mc146818rtc.h>
10#include <pc80/isa-dma.h>
Marc Jones24484842017-05-04 21:17:45 -060011#include <pc80/i8254.h>
12#include <pc80/i8259.h>
Raul E Rangel0f3bc812021-02-10 16:36:33 -070013#include <amdblocks/acpi.h>
Marshall Dawson69486ca2019-05-02 12:03:45 -060014#include <amdblocks/acpimmio.h>
Furquan Shaikh511aa442020-05-04 23:42:46 -070015#include <amdblocks/espi.h>
Felix Held390a2802021-10-21 03:13:42 +020016#include <amdblocks/ioapic.h>
Felix Held199b10f2022-08-13 00:29:23 +020017#include <amdblocks/iomap.h>
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060018#include <amdblocks/lpc.h>
Kyösti Mälkkie742b682023-04-10 17:03:32 +030019#include <soc/acpi.h>
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060020#include <soc/iomap.h>
Raul E Rangel466edb52021-02-09 11:24:13 -070021#include <soc/lpc.h>
22#include <soc/southbridge.h>
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060023
Marshall Dawson8d9b8782020-06-29 17:56:02 -060024static void setup_serirq(void)
25{
26 u8 byte;
27
28 /* Set up SERIRQ, enable continuous mode */
Raul E Rangela91eb902021-02-24 16:26:34 -070029 byte = PM_SERIRQ_NUM_BITS_21;
30 if (!CONFIG(SOC_AMD_COMMON_BLOCK_USE_ESPI))
31 byte |= PM_SERIRQ_ENABLE;
Marshall Dawson8d9b8782020-06-29 17:56:02 -060032 if (!CONFIG(SERIRQ_CONTINUOUS_MODE))
33 byte |= PM_SERIRQ_MODE;
34
35 pm_write8(PM_SERIRQ_CONF, byte);
36}
37
Kyösti Mälkkie742b682023-04-10 17:03:32 +030038void ioapic_get_sci_pin(u8 *gsi, u8 *irq, u8 *flags)
39{
40 *gsi = ACPI_SCI_IRQ;
41 *irq = ACPI_SCI_IRQ;
42 *flags = MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW;
43}
44
Felix Held390a2802021-10-21 03:13:42 +020045static void fch_ioapic_init(void)
46{
47 fch_enable_ioapic_decode();
Kyösti Mälkki2e65e9c2021-06-16 11:00:40 +030048 register_new_ioapic_gsi0(VIO_APIC_VADDR);
Felix Held390a2802021-10-21 03:13:42 +020049}
50
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020051static void lpc_init(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -060052{
53 u8 byte;
Marc Jones24484842017-05-04 21:17:45 -060054
55 /* Initialize isa dma */
56 isa_dma_init();
57
58 /* Enable DMA transaction on the LPC bus */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060059 byte = pci_read_config8(dev, LPC_PCI_CONTROL);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070060 byte |= LEGACY_DMA_EN;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060061 pci_write_config8(dev, LPC_PCI_CONTROL, byte);
Marc Jones24484842017-05-04 21:17:45 -060062
63 /* Disable the timeout mechanism on LPC */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060064 byte = pci_read_config8(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070065 byte &= ~LPC_SYNC_TIMEOUT_COUNT_ENABLE;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060066 pci_write_config8(dev, LPC_IO_OR_MEM_DECODE_ENABLE, byte);
Marc Jones24484842017-05-04 21:17:45 -060067
68 /* Disable LPC MSI Capability */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060069 byte = pci_read_config8(dev, LPC_MISC_CONTROL_BITS);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070070 /* BIT 1 is not defined in public datasheet. */
Marc Jones24484842017-05-04 21:17:45 -060071 byte &= ~(1 << 1);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070072
Marshall Dawson1bc04e32019-05-02 18:56:54 -060073 pci_write_config8(dev, LPC_MISC_CONTROL_BITS, byte);
Marc Jones24484842017-05-04 21:17:45 -060074
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070075 /*
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060076 * Enable hand-instance of the pulse generator and SPI prefetch from
77 * host (earlier is recommended for boot speed).
Marshall Dawson4e101ad2017-06-15 12:17:38 -060078 */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060079 byte = pci_read_config8(dev, LPC_HOST_CONTROL);
Richard Spiegelee098782018-07-30 12:05:22 -070080 byte |= PREFETCH_EN_SPI_FROM_HOST | T_START_ENH;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060081 pci_write_config8(dev, LPC_HOST_CONTROL, byte);
Marc Jones24484842017-05-04 21:17:45 -060082
83 cmos_check_update_date();
84
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070085 /*
86 * Initialize the real time clock.
Marc Jones24484842017-05-04 21:17:45 -060087 * The 0 argument tells cmos_init not to
88 * update CMOS unless it is invalid.
89 * 1 tells cmos_init to always initialize the CMOS.
90 */
Aaron Durbin9fde0d72017-09-15 11:01:17 -060091 cmos_init(0);
Marc Jones24484842017-05-04 21:17:45 -060092
93 /* Initialize i8259 pic */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060094 setup_i8259();
Marc Jones24484842017-05-04 21:17:45 -060095
96 /* Initialize i8254 timers */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060097 setup_i8254();
Marc Jones24484842017-05-04 21:17:45 -060098
Raul E Rangela91eb902021-02-24 16:26:34 -070099 setup_serirq();
Felix Held390a2802021-10-21 03:13:42 +0200100
101 fch_ioapic_init();
102 fch_configure_hpet();
Marc Jones24484842017-05-04 21:17:45 -0600103}
104
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200105static void lpc_read_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600106{
107 struct resource *res;
108
109 /* Get the normal pci resources of this device */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600110 pci_dev_read_resources(dev);
Marc Jones24484842017-05-04 21:17:45 -0600111
112 /* Add an extra subtractive resource for both memory and I/O. */
113 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
114 res->base = 0;
115 res->size = 0x1000;
116 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
117 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
118
Felix Held199b10f2022-08-13 00:29:23 +0200119 /* Only up to 16 MByte of the SPI flash can be mapped right below 4 GB */
Marc Jones24484842017-05-04 21:17:45 -0600120 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
Felix Held199b10f2022-08-13 00:29:23 +0200121 res->base = FLASH_BELOW_4GB_MAPPING_REGION_BASE;
122 res->size = FLASH_BELOW_4GB_MAPPING_REGION_SIZE;
Marc Jones24484842017-05-04 21:17:45 -0600123 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
124 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
125
126 /* Add a memory resource for the SPI BAR. */
Kyösti Mälkki8b894242022-05-26 15:42:59 +0300127 mmio_range(dev, 2, SPI_BASE_ADDRESS, 1 * KiB);
Marc Jones24484842017-05-04 21:17:45 -0600128
129 res = new_resource(dev, 3); /* IOAPIC */
130 res->base = IO_APIC_ADDR;
131 res->size = 0x00001000;
132 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
133
134 compact_resources(dev);
135}
136
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600137static void lpc_set_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600138{
139 struct resource *res;
140 u32 spi_enable_bits;
141
142 /* Special case. The SpiRomEnable and other enables should STAY set. */
143 res = find_resource(dev, 2);
Felix Held697fa742022-03-03 20:54:38 +0100144 spi_enable_bits = pci_read_config32(dev, SPI_BASE_ADDRESS_REGISTER);
Marshall Dawsoneceaa972019-05-05 18:35:12 -0600145 spi_enable_bits &= SPI_BASE_ALIGNMENT - 1;
Felix Held697fa742022-03-03 20:54:38 +0100146 pci_write_config32(dev, SPI_BASE_ADDRESS_REGISTER,
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600147 res->base | spi_enable_bits);
Marc Jones24484842017-05-04 21:17:45 -0600148
149 pci_dev_set_resources(dev);
150}
151
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700152static void configure_child_lpc_windows(struct device *dev, struct device *child)
Richard Spiegelaa183852017-10-05 18:53:31 -0700153{
154 struct resource *res;
155 u32 base, end;
156 u32 rsize = 0, set = 0, set_x = 0;
Richard Spiegelb5f96452017-11-22 15:28:25 -0700157 int wideio_index;
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700158 u32 reg, reg_x;
159
160 reg = pci_read_config32(dev, LPC_IO_PORT_DECODE_ENABLE);
161 reg_x = pci_read_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
162
Richard Spiegel7a39e022017-11-09 10:54:04 -0700163 /*
164 * Be a bit relaxed, tolerate that LPC region might be bigger than
165 * resource we try to fit, do it like this for all regions < 16 bytes.
166 * If there is a resource > 16 bytes it must be 512 bytes to be able
167 * to allocate the fresh LPC window.
168 *
169 * AGESA and early initialization can set a wide IO port. This code
170 * will verify if required region was previously set and will avoid
171 * setting a new wide IO resource if one is already set.
172 */
173
Richard Spiegelaa183852017-10-05 18:53:31 -0700174 for (res = child->resource_list; res; res = res->next) {
175 if (!(res->flags & IORESOURCE_IO))
176 continue;
177 base = res->base;
178 end = resource_end(res);
Richard Spiegelaa183852017-10-05 18:53:31 -0700179 printk(BIOS_DEBUG,
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700180 "Southbridge LPC decode:%s, base=0x%08x, end=0x%08x\n",
181 dev_path(child), base, end);
182 /* find a resource size */
Richard Spiegelaa183852017-10-05 18:53:31 -0700183 switch (base) {
184 case 0x60: /* KB */
185 case 0x64: /* MS */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700186 set |= DECODE_ENABLE_KBC_PORT;
Richard Spiegelaa183852017-10-05 18:53:31 -0700187 rsize = 1;
188 break;
189 case 0x3f8: /* COM1 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700190 set |= DECODE_ENABLE_SERIAL_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700191 rsize = 8;
192 break;
193 case 0x2f8: /* COM2 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700194 set |= DECODE_ENABLE_SERIAL_PORT1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700195 rsize = 8;
196 break;
197 case 0x378: /* Parallel 1 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700198 set |= DECODE_ENABLE_PARALLEL_PORT0;
199 /* enable 0x778 for ECP mode */
200 set |= DECODE_ENABLE_PARALLEL_PORT1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700201 rsize = 8;
202 break;
203 case 0x3f0: /* FD0 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700204 set |= DECODE_ENABLE_FDC_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700205 rsize = 8;
206 break;
207 case 0x220: /* 0x220 - 0x227 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700208 set |= DECODE_ENABLE_SERIAL_PORT2;
Richard Spiegelaa183852017-10-05 18:53:31 -0700209 rsize = 8;
210 break;
211 case 0x228: /* 0x228 - 0x22f */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700212 set |= DECODE_ENABLE_SERIAL_PORT3;
Richard Spiegelaa183852017-10-05 18:53:31 -0700213 rsize = 8;
214 break;
215 case 0x238: /* 0x238 - 0x23f */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700216 set |= DECODE_ENABLE_SERIAL_PORT4;
Richard Spiegelaa183852017-10-05 18:53:31 -0700217 rsize = 8;
218 break;
219 case 0x300: /* 0x300 - 0x301 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700220 set |= DECODE_ENABLE_MIDI_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700221 rsize = 2;
222 break;
223 case 0x400:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700224 set_x |= DECODE_IO_PORT_ENABLE0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700225 rsize = 0x40;
226 break;
227 case 0x480:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700228 set_x |= DECODE_IO_PORT_ENABLE1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700229 rsize = 0x40;
230 break;
231 case 0x500:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700232 set_x |= DECODE_IO_PORT_ENABLE2;
Richard Spiegelaa183852017-10-05 18:53:31 -0700233 rsize = 0x40;
234 break;
235 case 0x580:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700236 set_x |= DECODE_IO_PORT_ENABLE3;
Richard Spiegelaa183852017-10-05 18:53:31 -0700237 rsize = 0x40;
238 break;
239 case 0x4700:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700240 set_x |= DECODE_IO_PORT_ENABLE5;
Richard Spiegelaa183852017-10-05 18:53:31 -0700241 rsize = 0xc;
242 break;
243 case 0xfd60:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700244 set_x |= DECODE_IO_PORT_ENABLE6;
Richard Spiegelaa183852017-10-05 18:53:31 -0700245 rsize = 16;
246 break;
247 default:
248 rsize = 0;
Marshall Dawson6ab5ed32019-05-29 09:24:18 -0600249 wideio_index = lpc_find_wideio_range(base, res->size);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700250 if (wideio_index != WIDEIO_RANGE_ERROR) {
Marshall Dawson6ab5ed32019-05-29 09:24:18 -0600251 rsize = lpc_wideio_size(wideio_index);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700252 printk(BIOS_DEBUG, "Covered by wideIO");
253 printk(BIOS_DEBUG, " %d\n", wideio_index);
Richard Spiegel7a39e022017-11-09 10:54:04 -0700254 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700255 }
256 /* check if region found and matches the enable */
257 if (res->size <= rsize) {
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700258 reg |= set;
259 reg_x |= set_x;
Richard Spiegelaa183852017-10-05 18:53:31 -0700260 /* check if we can fit resource in variable range */
Richard Spiegelaa183852017-10-05 18:53:31 -0700261 } else {
Marshall Dawson6ab5ed32019-05-29 09:24:18 -0600262 wideio_index = lpc_set_wideio_range(base, res->size);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700263 if (wideio_index != WIDEIO_RANGE_ERROR) {
264 /* preserve wide IO related bits. */
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700265 reg_x = pci_read_config32(dev,
Richard Spiegelb5f96452017-11-22 15:28:25 -0700266 LPC_IO_OR_MEM_DECODE_ENABLE);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700267 printk(BIOS_DEBUG,
268 "Range assigned to wide IO %d\n",
269 wideio_index);
270 } else {
271 printk(BIOS_ERR,
272 "cannot fit LPC decode region:");
273 printk(BIOS_ERR,
274 "%s, base = 0x%08x, end = 0x%08x\n",
275 dev_path(child), base, end);
276 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700277 }
278 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700279
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700280 pci_write_config32(dev, LPC_IO_PORT_DECODE_ENABLE, reg);
281 pci_write_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE, reg_x);
Marc Jones24484842017-05-04 21:17:45 -0600282}
283
Furquan Shaikh511aa442020-05-04 23:42:46 -0700284static void configure_child_espi_windows(struct device *child)
285{
286 struct resource *res;
287
288 for (res = child->resource_list; res; res = res->next) {
289 if (res->flags & IORESOURCE_IO)
290 espi_open_io_window(res->base, res->size);
291 else if (res->flags & IORESOURCE_MEM)
292 espi_open_mmio_window(res->base, res->size);
293 }
294}
295
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700296static void lpc_enable_children_resources(struct device *dev)
297{
298 struct bus *link;
299 struct device *child;
300
301 for (link = dev->link_list; link; link = link->next) {
302 for (child = link->children; child; child = child->sibling) {
303 if (!child->enabled)
304 continue;
305 if (child->path.type != DEVICE_PATH_PNP)
306 continue;
Furquan Shaikh511aa442020-05-04 23:42:46 -0700307 if (CONFIG(SOC_AMD_COMMON_BLOCK_USE_ESPI))
308 configure_child_espi_windows(child);
309 else
310 configure_child_lpc_windows(dev, child);
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700311 }
312 }
313}
314
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200315static void lpc_enable_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600316{
317 pci_dev_enable_resources(dev);
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700318 lpc_enable_children_resources(dev);
Marc Jones24484842017-05-04 21:17:45 -0600319}
320
Felix Held3e29ca92021-02-16 23:52:58 +0100321#if CONFIG(HAVE_ACPI_TABLES)
322static const char *lpc_acpi_name(const struct device *dev)
323{
324 return "LPCB";
325}
326#endif
327
Arthur Heymansc6f029c2022-10-05 21:48:07 +0200328struct device_operations amd_lpc_ops = {
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600329 .read_resources = lpc_read_resources,
330 .set_resources = lpc_set_resources,
331 .enable_resources = lpc_enable_resources,
Zheng Baobdd50312021-01-26 18:27:46 +0800332#if CONFIG(HAVE_ACPI_TABLES)
Felix Held3e29ca92021-02-16 23:52:58 +0100333 .acpi_name = lpc_acpi_name,
Marc Jones257db582017-06-18 17:33:30 -0600334 .write_acpi_tables = southbridge_write_acpi_tables,
Zheng Baobdd50312021-01-26 18:27:46 +0800335#endif
Marc Jones24484842017-05-04 21:17:45 -0600336 .init = lpc_init,
Nico Huber51b75ae2019-03-14 16:02:05 +0100337 .scan_bus = scan_static_bus,
Furquan Shaikh40454b72020-05-04 20:52:08 -0700338 .ops_pci = &pci_dev_ops_pci,
Marc Jones24484842017-05-04 21:17:45 -0600339};