blob: 5e18aad0bb5b9816436a32b1c6e4ae56f74dc7a2 [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
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +03003#include <acpi/acpi_gnvs.h>
Marc Jones257db582017-06-18 17:33:30 -06004#include <cbmem.h>
Marc Jones24484842017-05-04 21:17:45 -06005#include <console/console.h>
6#include <device/device.h>
7#include <device/pci.h>
8#include <device/pnp.h>
9#include <device/pci_ids.h>
10#include <device/pci_ops.h>
11#include <device/pci_def.h>
12#include <pc80/mc146818rtc.h>
13#include <pc80/isa-dma.h>
Marc Jones24484842017-05-04 21:17:45 -060014#include <arch/ioapic.h>
Marc Jones24484842017-05-04 21:17:45 -060015#include <pc80/i8254.h>
16#include <pc80/i8259.h>
Marshall Dawson69486ca2019-05-02 12:03:45 -060017#include <amdblocks/acpimmio.h>
Furquan Shaikh511aa442020-05-04 23:42:46 -070018#include <amdblocks/espi.h>
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060019#include <amdblocks/lpc.h>
Marc Jones257db582017-06-18 17:33:30 -060020#include <soc/acpi.h>
Marc Jonesdfeb1c42017-08-07 19:08:24 -060021#include <soc/southbridge.h>
Marc Jones257db582017-06-18 17:33:30 -060022#include <soc/nvs.h>
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060023#include <soc/iomap.h>
24
25/* Most systems should have already enabled the bridge */
26void __weak soc_late_lpc_bridge_enable(void) { }
Marc Jones24484842017-05-04 21:17:45 -060027
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020028static void lpc_init(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -060029{
30 u8 byte;
Marc Jones24484842017-05-04 21:17:45 -060031
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060032 soc_late_lpc_bridge_enable();
33
Marc Jones24484842017-05-04 21:17:45 -060034 /* Initialize isa dma */
35 isa_dma_init();
36
37 /* Enable DMA transaction on the LPC bus */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060038 byte = pci_read_config8(dev, LPC_PCI_CONTROL);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070039 byte |= LEGACY_DMA_EN;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060040 pci_write_config8(dev, LPC_PCI_CONTROL, byte);
Marc Jones24484842017-05-04 21:17:45 -060041
42 /* Disable the timeout mechanism on LPC */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060043 byte = pci_read_config8(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070044 byte &= ~LPC_SYNC_TIMEOUT_COUNT_ENABLE;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060045 pci_write_config8(dev, LPC_IO_OR_MEM_DECODE_ENABLE, byte);
Marc Jones24484842017-05-04 21:17:45 -060046
47 /* Disable LPC MSI Capability */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060048 byte = pci_read_config8(dev, LPC_MISC_CONTROL_BITS);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070049 /* BIT 1 is not defined in public datasheet. */
Marc Jones24484842017-05-04 21:17:45 -060050 byte &= ~(1 << 1);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070051
52 /*
53 * Keep the old way. i.e., when bus master/DMA cycle is going
Marshall Dawson4e101ad2017-06-15 12:17:38 -060054 * on on LPC, it holds PCI grant, so no LPC slave cycle can
55 * interrupt and visit LPC.
56 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070057 byte &= ~LPC_NOHOG;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060058 pci_write_config8(dev, LPC_MISC_CONTROL_BITS, byte);
Marc Jones24484842017-05-04 21:17:45 -060059
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070060 /*
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060061 * Enable hand-instance of the pulse generator and SPI prefetch from
62 * host (earlier is recommended for boot speed).
Marshall Dawson4e101ad2017-06-15 12:17:38 -060063 */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060064 byte = pci_read_config8(dev, LPC_HOST_CONTROL);
Richard Spiegelee098782018-07-30 12:05:22 -070065 byte |= PREFETCH_EN_SPI_FROM_HOST | T_START_ENH;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060066 pci_write_config8(dev, LPC_HOST_CONTROL, byte);
Marc Jones24484842017-05-04 21:17:45 -060067
68 cmos_check_update_date();
69
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070070 /*
71 * Initialize the real time clock.
Marc Jones24484842017-05-04 21:17:45 -060072 * The 0 argument tells cmos_init not to
73 * update CMOS unless it is invalid.
74 * 1 tells cmos_init to always initialize the CMOS.
75 */
Aaron Durbin9fde0d72017-09-15 11:01:17 -060076 cmos_init(0);
Marc Jones24484842017-05-04 21:17:45 -060077
78 /* Initialize i8259 pic */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060079 setup_i8259();
Marc Jones24484842017-05-04 21:17:45 -060080
81 /* Initialize i8254 timers */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060082 setup_i8254();
Marc Jones24484842017-05-04 21:17:45 -060083
84 /* Set up SERIRQ, enable continuous mode */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070085 byte = (PM_SERIRQ_NUM_BITS_21 | PM_SERIRQ_ENABLE);
Julius Wernercd49cce2019-03-05 16:53:33 -080086 if (!CONFIG(SERIRQ_CONTINUOUS_MODE))
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070087 byte |= PM_SERIRQ_MODE;
Marc Jones24484842017-05-04 21:17:45 -060088
89 pm_write8(PM_SERIRQ_CONF, byte);
90}
91
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020092static void lpc_read_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -060093{
94 struct resource *res;
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +030095 struct global_nvs *gnvs;
Marc Jones24484842017-05-04 21:17:45 -060096
97 /* Get the normal pci resources of this device */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060098 pci_dev_read_resources(dev);
Marc Jones24484842017-05-04 21:17:45 -060099
100 /* Add an extra subtractive resource for both memory and I/O. */
101 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
102 res->base = 0;
103 res->size = 0x1000;
104 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
105 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
106
107 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700108 res->base = FLASH_BASE_ADDR;
109 res->size = CONFIG_ROM_SIZE;
Marc Jones24484842017-05-04 21:17:45 -0600110 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
111 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
112
113 /* Add a memory resource for the SPI BAR. */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600114 fixed_mem_resource(dev, 2, SPI_BASE_ADDRESS / 1024, 1,
115 IORESOURCE_SUBTRACTIVE);
Marc Jones24484842017-05-04 21:17:45 -0600116
117 res = new_resource(dev, 3); /* IOAPIC */
118 res->base = IO_APIC_ADDR;
119 res->size = 0x00001000;
120 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
121
Martin Roth7e78e562019-11-03 23:29:02 -0700122 /* I2C devices */
Chris Ching6fc39d42017-12-20 16:06:03 -0700123 res = new_resource(dev, 4);
124 res->base = I2C_BASE_ADDRESS;
125 res->size = I2C_DEVICE_SIZE * I2C_DEVICE_COUNT;
126 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
127
Marc Jones24484842017-05-04 21:17:45 -0600128 compact_resources(dev);
Marc Jones257db582017-06-18 17:33:30 -0600129
130 /* Allocate ACPI NVS in CBMEM */
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300131 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(struct global_nvs));
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700132 printk(BIOS_DEBUG, "ACPI GNVS at %p\n", gnvs);
Marc Jones24484842017-05-04 21:17:45 -0600133}
134
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600135static void lpc_set_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600136{
137 struct resource *res;
138 u32 spi_enable_bits;
139
140 /* Special case. The SpiRomEnable and other enables should STAY set. */
141 res = find_resource(dev, 2);
142 spi_enable_bits = pci_read_config32(dev, SPIROM_BASE_ADDRESS_REGISTER);
Marshall Dawsoneceaa972019-05-05 18:35:12 -0600143 spi_enable_bits &= SPI_BASE_ALIGNMENT - 1;
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600144 pci_write_config32(dev, SPIROM_BASE_ADDRESS_REGISTER,
145 res->base | spi_enable_bits);
Marc Jones24484842017-05-04 21:17:45 -0600146
147 pci_dev_set_resources(dev);
148}
149
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700150static void configure_child_lpc_windows(struct device *dev, struct device *child)
Richard Spiegelaa183852017-10-05 18:53:31 -0700151{
152 struct resource *res;
153 u32 base, end;
154 u32 rsize = 0, set = 0, set_x = 0;
Richard Spiegelb5f96452017-11-22 15:28:25 -0700155 int wideio_index;
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700156 u32 reg, reg_x;
157
158 reg = pci_read_config32(dev, LPC_IO_PORT_DECODE_ENABLE);
159 reg_x = pci_read_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
160
Richard Spiegelaa183852017-10-05 18:53:31 -0700161
Richard Spiegel7a39e022017-11-09 10:54:04 -0700162 /*
163 * Be a bit relaxed, tolerate that LPC region might be bigger than
164 * resource we try to fit, do it like this for all regions < 16 bytes.
165 * If there is a resource > 16 bytes it must be 512 bytes to be able
166 * to allocate the fresh LPC window.
167 *
168 * AGESA and early initialization can set a wide IO port. This code
169 * will verify if required region was previously set and will avoid
170 * setting a new wide IO resource if one is already set.
171 */
172
Richard Spiegelaa183852017-10-05 18:53:31 -0700173 for (res = child->resource_list; res; res = res->next) {
174 if (!(res->flags & IORESOURCE_IO))
175 continue;
176 base = res->base;
177 end = resource_end(res);
Richard Spiegelaa183852017-10-05 18:53:31 -0700178 printk(BIOS_DEBUG,
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700179 "Southbridge LPC decode:%s, base=0x%08x, end=0x%08x\n",
180 dev_path(child), base, end);
181 /* find a resource size */
Richard Spiegelaa183852017-10-05 18:53:31 -0700182 switch (base) {
183 case 0x60: /* KB */
184 case 0x64: /* MS */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700185 set |= DECODE_ENABLE_KBC_PORT;
Richard Spiegelaa183852017-10-05 18:53:31 -0700186 rsize = 1;
187 break;
188 case 0x3f8: /* COM1 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700189 set |= DECODE_ENABLE_SERIAL_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700190 rsize = 8;
191 break;
192 case 0x2f8: /* COM2 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700193 set |= DECODE_ENABLE_SERIAL_PORT1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700194 rsize = 8;
195 break;
196 case 0x378: /* Parallel 1 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700197 set |= DECODE_ENABLE_PARALLEL_PORT0;
198 /* enable 0x778 for ECP mode */
199 set |= DECODE_ENABLE_PARALLEL_PORT1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700200 rsize = 8;
201 break;
202 case 0x3f0: /* FD0 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700203 set |= DECODE_ENABLE_FDC_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700204 rsize = 8;
205 break;
206 case 0x220: /* 0x220 - 0x227 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700207 set |= DECODE_ENABLE_SERIAL_PORT2;
Richard Spiegelaa183852017-10-05 18:53:31 -0700208 rsize = 8;
209 break;
210 case 0x228: /* 0x228 - 0x22f */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700211 set |= DECODE_ENABLE_SERIAL_PORT3;
Richard Spiegelaa183852017-10-05 18:53:31 -0700212 rsize = 8;
213 break;
214 case 0x238: /* 0x238 - 0x23f */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700215 set |= DECODE_ENABLE_SERIAL_PORT4;
Richard Spiegelaa183852017-10-05 18:53:31 -0700216 rsize = 8;
217 break;
218 case 0x300: /* 0x300 - 0x301 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700219 set |= DECODE_ENABLE_MIDI_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700220 rsize = 2;
221 break;
222 case 0x400:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700223 set_x |= DECODE_IO_PORT_ENABLE0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700224 rsize = 0x40;
225 break;
226 case 0x480:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700227 set_x |= DECODE_IO_PORT_ENABLE1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700228 rsize = 0x40;
229 break;
230 case 0x500:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700231 set_x |= DECODE_IO_PORT_ENABLE2;
Richard Spiegelaa183852017-10-05 18:53:31 -0700232 rsize = 0x40;
233 break;
234 case 0x580:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700235 set_x |= DECODE_IO_PORT_ENABLE3;
Richard Spiegelaa183852017-10-05 18:53:31 -0700236 rsize = 0x40;
237 break;
238 case 0x4700:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700239 set_x |= DECODE_IO_PORT_ENABLE5;
Richard Spiegelaa183852017-10-05 18:53:31 -0700240 rsize = 0xc;
241 break;
242 case 0xfd60:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700243 set_x |= DECODE_IO_PORT_ENABLE6;
Richard Spiegelaa183852017-10-05 18:53:31 -0700244 rsize = 16;
245 break;
246 default:
247 rsize = 0;
Marshall Dawson6ab5ed32019-05-29 09:24:18 -0600248 wideio_index = lpc_find_wideio_range(base, res->size);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700249 if (wideio_index != WIDEIO_RANGE_ERROR) {
Marshall Dawson6ab5ed32019-05-29 09:24:18 -0600250 rsize = lpc_wideio_size(wideio_index);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700251 printk(BIOS_DEBUG, "Covered by wideIO");
252 printk(BIOS_DEBUG, " %d\n", wideio_index);
Richard Spiegel7a39e022017-11-09 10:54:04 -0700253 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700254 }
255 /* check if region found and matches the enable */
256 if (res->size <= rsize) {
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700257 reg |= set;
258 reg_x |= set_x;
Richard Spiegelaa183852017-10-05 18:53:31 -0700259 /* check if we can fit resource in variable range */
Richard Spiegelaa183852017-10-05 18:53:31 -0700260 } else {
Marshall Dawson6ab5ed32019-05-29 09:24:18 -0600261 wideio_index = lpc_set_wideio_range(base, res->size);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700262 if (wideio_index != WIDEIO_RANGE_ERROR) {
263 /* preserve wide IO related bits. */
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700264 reg_x = pci_read_config32(dev,
Richard Spiegelb5f96452017-11-22 15:28:25 -0700265 LPC_IO_OR_MEM_DECODE_ENABLE);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700266 printk(BIOS_DEBUG,
267 "Range assigned to wide IO %d\n",
268 wideio_index);
269 } else {
270 printk(BIOS_ERR,
271 "cannot fit LPC decode region:");
272 printk(BIOS_ERR,
273 "%s, base = 0x%08x, end = 0x%08x\n",
274 dev_path(child), base, end);
275 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700276 }
277 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700278
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700279 pci_write_config32(dev, LPC_IO_PORT_DECODE_ENABLE, reg);
280 pci_write_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE, reg_x);
Marc Jones24484842017-05-04 21:17:45 -0600281}
282
Furquan Shaikh511aa442020-05-04 23:42:46 -0700283static void configure_child_espi_windows(struct device *child)
284{
285 struct resource *res;
286
287 for (res = child->resource_list; res; res = res->next) {
288 if (res->flags & IORESOURCE_IO)
289 espi_open_io_window(res->base, res->size);
290 else if (res->flags & IORESOURCE_MEM)
291 espi_open_mmio_window(res->base, res->size);
292 }
293}
294
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700295static void lpc_enable_children_resources(struct device *dev)
296{
297 struct bus *link;
298 struct device *child;
299
300 for (link = dev->link_list; link; link = link->next) {
301 for (child = link->children; child; child = child->sibling) {
302 if (!child->enabled)
303 continue;
304 if (child->path.type != DEVICE_PATH_PNP)
305 continue;
Furquan Shaikh511aa442020-05-04 23:42:46 -0700306 if (CONFIG(SOC_AMD_COMMON_BLOCK_USE_ESPI))
307 configure_child_espi_windows(child);
308 else
309 configure_child_lpc_windows(dev, child);
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700310 }
311 }
312}
313
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200314static void lpc_enable_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600315{
316 pci_dev_enable_resources(dev);
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700317 lpc_enable_children_resources(dev);
Marc Jones24484842017-05-04 21:17:45 -0600318}
319
Marc Jones24484842017-05-04 21:17:45 -0600320static struct device_operations lpc_ops = {
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600321 .read_resources = lpc_read_resources,
322 .set_resources = lpc_set_resources,
323 .enable_resources = lpc_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200324 .acpi_inject_dsdt = southbridge_inject_dsdt,
Marc Jones257db582017-06-18 17:33:30 -0600325 .write_acpi_tables = southbridge_write_acpi_tables,
Marc Jones24484842017-05-04 21:17:45 -0600326 .init = lpc_init,
Nico Huber51b75ae2019-03-14 16:02:05 +0100327 .scan_bus = scan_static_bus,
Furquan Shaikh40454b72020-05-04 20:52:08 -0700328 .ops_pci = &pci_dev_ops_pci,
Marc Jones24484842017-05-04 21:17:45 -0600329};
330
331static const unsigned short pci_device_ids[] = {
332 PCI_DEVICE_ID_AMD_SB900_LPC,
333 PCI_DEVICE_ID_AMD_CZ_LPC,
Furquan Shaikha1cd7eb2020-04-15 23:58:22 -0700334 PCI_DEVICE_ID_AMD_FAM17H_LPC,
Marc Jones24484842017-05-04 21:17:45 -0600335 0
336};
337static const struct pci_driver lpc_driver __pci_driver = {
338 .ops = &lpc_ops,
339 .vendor = PCI_VENDOR_ID_AMD,
340 .devices = pci_device_ids,
341};