blob: ee8f7e48143b0223b549065314df1c97afa4b2fb [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
3#include <console/console.h>
4#include <device/device.h>
5#include <device/pci.h>
6#include <device/pnp.h>
7#include <device/pci_ids.h>
8#include <device/pci_ops.h>
9#include <device/pci_def.h>
10#include <pc80/mc146818rtc.h>
11#include <pc80/isa-dma.h>
Marc Jones24484842017-05-04 21:17:45 -060012#include <arch/ioapic.h>
Marc Jones24484842017-05-04 21:17:45 -060013#include <pc80/i8254.h>
14#include <pc80/i8259.h>
Raul E Rangel0f3bc812021-02-10 16:36:33 -070015#include <amdblocks/acpi.h>
Marshall Dawson69486ca2019-05-02 12:03:45 -060016#include <amdblocks/acpimmio.h>
Furquan Shaikh511aa442020-05-04 23:42:46 -070017#include <amdblocks/espi.h>
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060018#include <amdblocks/lpc.h>
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060019#include <soc/iomap.h>
Raul E Rangel466edb52021-02-09 11:24:13 -070020#include <soc/lpc.h>
21#include <soc/southbridge.h>
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060022
Marshall Dawson8d9b8782020-06-29 17:56:02 -060023static void setup_serirq(void)
24{
25 u8 byte;
26
27 /* Set up SERIRQ, enable continuous mode */
Raul E Rangela91eb902021-02-24 16:26:34 -070028 byte = PM_SERIRQ_NUM_BITS_21;
29 if (!CONFIG(SOC_AMD_COMMON_BLOCK_USE_ESPI))
30 byte |= PM_SERIRQ_ENABLE;
Marshall Dawson8d9b8782020-06-29 17:56:02 -060031 if (!CONFIG(SERIRQ_CONTINUOUS_MODE))
32 byte |= PM_SERIRQ_MODE;
33
34 pm_write8(PM_SERIRQ_CONF, byte);
35}
36
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020037static void lpc_init(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -060038{
39 u8 byte;
Marc Jones24484842017-05-04 21:17:45 -060040
41 /* Initialize isa dma */
42 isa_dma_init();
43
44 /* Enable DMA transaction on the LPC bus */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060045 byte = pci_read_config8(dev, LPC_PCI_CONTROL);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070046 byte |= LEGACY_DMA_EN;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060047 pci_write_config8(dev, LPC_PCI_CONTROL, byte);
Marc Jones24484842017-05-04 21:17:45 -060048
49 /* Disable the timeout mechanism on LPC */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060050 byte = pci_read_config8(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070051 byte &= ~LPC_SYNC_TIMEOUT_COUNT_ENABLE;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060052 pci_write_config8(dev, LPC_IO_OR_MEM_DECODE_ENABLE, byte);
Marc Jones24484842017-05-04 21:17:45 -060053
54 /* Disable LPC MSI Capability */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060055 byte = pci_read_config8(dev, LPC_MISC_CONTROL_BITS);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070056 /* BIT 1 is not defined in public datasheet. */
Marc Jones24484842017-05-04 21:17:45 -060057 byte &= ~(1 << 1);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070058
Marshall Dawson1bc04e32019-05-02 18:56:54 -060059 pci_write_config8(dev, LPC_MISC_CONTROL_BITS, byte);
Marc Jones24484842017-05-04 21:17:45 -060060
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070061 /*
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060062 * Enable hand-instance of the pulse generator and SPI prefetch from
63 * host (earlier is recommended for boot speed).
Marshall Dawson4e101ad2017-06-15 12:17:38 -060064 */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060065 byte = pci_read_config8(dev, LPC_HOST_CONTROL);
Richard Spiegelee098782018-07-30 12:05:22 -070066 byte |= PREFETCH_EN_SPI_FROM_HOST | T_START_ENH;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060067 pci_write_config8(dev, LPC_HOST_CONTROL, byte);
Marc Jones24484842017-05-04 21:17:45 -060068
69 cmos_check_update_date();
70
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070071 /*
72 * Initialize the real time clock.
Marc Jones24484842017-05-04 21:17:45 -060073 * The 0 argument tells cmos_init not to
74 * update CMOS unless it is invalid.
75 * 1 tells cmos_init to always initialize the CMOS.
76 */
Aaron Durbin9fde0d72017-09-15 11:01:17 -060077 cmos_init(0);
Marc Jones24484842017-05-04 21:17:45 -060078
79 /* Initialize i8259 pic */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060080 setup_i8259();
Marc Jones24484842017-05-04 21:17:45 -060081
82 /* Initialize i8254 timers */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060083 setup_i8254();
Marc Jones24484842017-05-04 21:17:45 -060084
Raul E Rangela91eb902021-02-24 16:26:34 -070085 setup_serirq();
Marc Jones24484842017-05-04 21:17:45 -060086}
87
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020088static void lpc_read_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -060089{
90 struct resource *res;
91
92 /* Get the normal pci resources of this device */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060093 pci_dev_read_resources(dev);
Marc Jones24484842017-05-04 21:17:45 -060094
95 /* Add an extra subtractive resource for both memory and I/O. */
96 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
97 res->base = 0;
98 res->size = 0x1000;
99 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
100 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
101
102 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700103 res->base = FLASH_BASE_ADDR;
104 res->size = CONFIG_ROM_SIZE;
Marc Jones24484842017-05-04 21:17:45 -0600105 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
106 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
107
108 /* Add a memory resource for the SPI BAR. */
Felix Held6ebcdf32021-10-12 21:39:27 +0200109 fixed_mem_resource(dev, 2, SPI_BASE_ADDRESS / KiB, 1,
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600110 IORESOURCE_SUBTRACTIVE);
Marc Jones24484842017-05-04 21:17:45 -0600111
112 res = new_resource(dev, 3); /* IOAPIC */
113 res->base = IO_APIC_ADDR;
114 res->size = 0x00001000;
115 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
116
117 compact_resources(dev);
118}
119
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600120static void lpc_set_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600121{
122 struct resource *res;
123 u32 spi_enable_bits;
124
125 /* Special case. The SpiRomEnable and other enables should STAY set. */
126 res = find_resource(dev, 2);
127 spi_enable_bits = pci_read_config32(dev, SPIROM_BASE_ADDRESS_REGISTER);
Marshall Dawsoneceaa972019-05-05 18:35:12 -0600128 spi_enable_bits &= SPI_BASE_ALIGNMENT - 1;
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600129 pci_write_config32(dev, SPIROM_BASE_ADDRESS_REGISTER,
130 res->base | spi_enable_bits);
Marc Jones24484842017-05-04 21:17:45 -0600131
132 pci_dev_set_resources(dev);
133}
134
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700135static void configure_child_lpc_windows(struct device *dev, struct device *child)
Richard Spiegelaa183852017-10-05 18:53:31 -0700136{
137 struct resource *res;
138 u32 base, end;
139 u32 rsize = 0, set = 0, set_x = 0;
Richard Spiegelb5f96452017-11-22 15:28:25 -0700140 int wideio_index;
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700141 u32 reg, reg_x;
142
143 reg = pci_read_config32(dev, LPC_IO_PORT_DECODE_ENABLE);
144 reg_x = pci_read_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
145
Richard Spiegel7a39e022017-11-09 10:54:04 -0700146 /*
147 * Be a bit relaxed, tolerate that LPC region might be bigger than
148 * resource we try to fit, do it like this for all regions < 16 bytes.
149 * If there is a resource > 16 bytes it must be 512 bytes to be able
150 * to allocate the fresh LPC window.
151 *
152 * AGESA and early initialization can set a wide IO port. This code
153 * will verify if required region was previously set and will avoid
154 * setting a new wide IO resource if one is already set.
155 */
156
Richard Spiegelaa183852017-10-05 18:53:31 -0700157 for (res = child->resource_list; res; res = res->next) {
158 if (!(res->flags & IORESOURCE_IO))
159 continue;
160 base = res->base;
161 end = resource_end(res);
Richard Spiegelaa183852017-10-05 18:53:31 -0700162 printk(BIOS_DEBUG,
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700163 "Southbridge LPC decode:%s, base=0x%08x, end=0x%08x\n",
164 dev_path(child), base, end);
165 /* find a resource size */
Richard Spiegelaa183852017-10-05 18:53:31 -0700166 switch (base) {
167 case 0x60: /* KB */
168 case 0x64: /* MS */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700169 set |= DECODE_ENABLE_KBC_PORT;
Richard Spiegelaa183852017-10-05 18:53:31 -0700170 rsize = 1;
171 break;
172 case 0x3f8: /* COM1 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700173 set |= DECODE_ENABLE_SERIAL_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700174 rsize = 8;
175 break;
176 case 0x2f8: /* COM2 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700177 set |= DECODE_ENABLE_SERIAL_PORT1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700178 rsize = 8;
179 break;
180 case 0x378: /* Parallel 1 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700181 set |= DECODE_ENABLE_PARALLEL_PORT0;
182 /* enable 0x778 for ECP mode */
183 set |= DECODE_ENABLE_PARALLEL_PORT1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700184 rsize = 8;
185 break;
186 case 0x3f0: /* FD0 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700187 set |= DECODE_ENABLE_FDC_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700188 rsize = 8;
189 break;
190 case 0x220: /* 0x220 - 0x227 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700191 set |= DECODE_ENABLE_SERIAL_PORT2;
Richard Spiegelaa183852017-10-05 18:53:31 -0700192 rsize = 8;
193 break;
194 case 0x228: /* 0x228 - 0x22f */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700195 set |= DECODE_ENABLE_SERIAL_PORT3;
Richard Spiegelaa183852017-10-05 18:53:31 -0700196 rsize = 8;
197 break;
198 case 0x238: /* 0x238 - 0x23f */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700199 set |= DECODE_ENABLE_SERIAL_PORT4;
Richard Spiegelaa183852017-10-05 18:53:31 -0700200 rsize = 8;
201 break;
202 case 0x300: /* 0x300 - 0x301 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700203 set |= DECODE_ENABLE_MIDI_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700204 rsize = 2;
205 break;
206 case 0x400:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700207 set_x |= DECODE_IO_PORT_ENABLE0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700208 rsize = 0x40;
209 break;
210 case 0x480:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700211 set_x |= DECODE_IO_PORT_ENABLE1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700212 rsize = 0x40;
213 break;
214 case 0x500:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700215 set_x |= DECODE_IO_PORT_ENABLE2;
Richard Spiegelaa183852017-10-05 18:53:31 -0700216 rsize = 0x40;
217 break;
218 case 0x580:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700219 set_x |= DECODE_IO_PORT_ENABLE3;
Richard Spiegelaa183852017-10-05 18:53:31 -0700220 rsize = 0x40;
221 break;
222 case 0x4700:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700223 set_x |= DECODE_IO_PORT_ENABLE5;
Richard Spiegelaa183852017-10-05 18:53:31 -0700224 rsize = 0xc;
225 break;
226 case 0xfd60:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700227 set_x |= DECODE_IO_PORT_ENABLE6;
Richard Spiegelaa183852017-10-05 18:53:31 -0700228 rsize = 16;
229 break;
230 default:
231 rsize = 0;
Marshall Dawson6ab5ed32019-05-29 09:24:18 -0600232 wideio_index = lpc_find_wideio_range(base, res->size);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700233 if (wideio_index != WIDEIO_RANGE_ERROR) {
Marshall Dawson6ab5ed32019-05-29 09:24:18 -0600234 rsize = lpc_wideio_size(wideio_index);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700235 printk(BIOS_DEBUG, "Covered by wideIO");
236 printk(BIOS_DEBUG, " %d\n", wideio_index);
Richard Spiegel7a39e022017-11-09 10:54:04 -0700237 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700238 }
239 /* check if region found and matches the enable */
240 if (res->size <= rsize) {
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700241 reg |= set;
242 reg_x |= set_x;
Richard Spiegelaa183852017-10-05 18:53:31 -0700243 /* check if we can fit resource in variable range */
Richard Spiegelaa183852017-10-05 18:53:31 -0700244 } else {
Marshall Dawson6ab5ed32019-05-29 09:24:18 -0600245 wideio_index = lpc_set_wideio_range(base, res->size);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700246 if (wideio_index != WIDEIO_RANGE_ERROR) {
247 /* preserve wide IO related bits. */
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700248 reg_x = pci_read_config32(dev,
Richard Spiegelb5f96452017-11-22 15:28:25 -0700249 LPC_IO_OR_MEM_DECODE_ENABLE);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700250 printk(BIOS_DEBUG,
251 "Range assigned to wide IO %d\n",
252 wideio_index);
253 } else {
254 printk(BIOS_ERR,
255 "cannot fit LPC decode region:");
256 printk(BIOS_ERR,
257 "%s, base = 0x%08x, end = 0x%08x\n",
258 dev_path(child), base, end);
259 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700260 }
261 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700262
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700263 pci_write_config32(dev, LPC_IO_PORT_DECODE_ENABLE, reg);
264 pci_write_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE, reg_x);
Marc Jones24484842017-05-04 21:17:45 -0600265}
266
Furquan Shaikh511aa442020-05-04 23:42:46 -0700267static void configure_child_espi_windows(struct device *child)
268{
269 struct resource *res;
270
271 for (res = child->resource_list; res; res = res->next) {
272 if (res->flags & IORESOURCE_IO)
273 espi_open_io_window(res->base, res->size);
274 else if (res->flags & IORESOURCE_MEM)
275 espi_open_mmio_window(res->base, res->size);
276 }
277}
278
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700279static void lpc_enable_children_resources(struct device *dev)
280{
281 struct bus *link;
282 struct device *child;
283
284 for (link = dev->link_list; link; link = link->next) {
285 for (child = link->children; child; child = child->sibling) {
286 if (!child->enabled)
287 continue;
288 if (child->path.type != DEVICE_PATH_PNP)
289 continue;
Furquan Shaikh511aa442020-05-04 23:42:46 -0700290 if (CONFIG(SOC_AMD_COMMON_BLOCK_USE_ESPI))
291 configure_child_espi_windows(child);
292 else
293 configure_child_lpc_windows(dev, child);
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700294 }
295 }
296}
297
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200298static void lpc_enable_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600299{
300 pci_dev_enable_resources(dev);
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700301 lpc_enable_children_resources(dev);
Marc Jones24484842017-05-04 21:17:45 -0600302}
303
Felix Held3e29ca92021-02-16 23:52:58 +0100304#if CONFIG(HAVE_ACPI_TABLES)
305static const char *lpc_acpi_name(const struct device *dev)
306{
307 return "LPCB";
308}
309#endif
310
Marc Jones24484842017-05-04 21:17:45 -0600311static struct device_operations lpc_ops = {
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600312 .read_resources = lpc_read_resources,
313 .set_resources = lpc_set_resources,
314 .enable_resources = lpc_enable_resources,
Zheng Baobdd50312021-01-26 18:27:46 +0800315#if CONFIG(HAVE_ACPI_TABLES)
Felix Held3e29ca92021-02-16 23:52:58 +0100316 .acpi_name = lpc_acpi_name,
Marc Jones257db582017-06-18 17:33:30 -0600317 .write_acpi_tables = southbridge_write_acpi_tables,
Zheng Baobdd50312021-01-26 18:27:46 +0800318#endif
Marc Jones24484842017-05-04 21:17:45 -0600319 .init = lpc_init,
Nico Huber51b75ae2019-03-14 16:02:05 +0100320 .scan_bus = scan_static_bus,
Furquan Shaikh40454b72020-05-04 20:52:08 -0700321 .ops_pci = &pci_dev_ops_pci,
Marc Jones24484842017-05-04 21:17:45 -0600322};
323
324static const unsigned short pci_device_ids[] = {
Felix Held43cf27d2021-10-27 18:31:16 +0200325 /* PCI device ID is used on all discrete FCHs and Family 16h Models 00h-3Fh */
Felix Singer43b7f412022-03-07 04:34:52 +0100326 PCI_DID_AMD_SB900_LPC,
Felix Held43cf27d2021-10-27 18:31:16 +0200327 /* PCI device ID is used on all integrated FCHs except Family 16h Models 00h-3Fh */
Felix Singer43b7f412022-03-07 04:34:52 +0100328 PCI_DID_AMD_CZ_LPC,
Marc Jones24484842017-05-04 21:17:45 -0600329 0
330};
331static const struct pci_driver lpc_driver __pci_driver = {
332 .ops = &lpc_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100333 .vendor = PCI_VID_AMD,
Marc Jones24484842017-05-04 21:17:45 -0600334 .devices = pci_device_ids,
335};