blob: 1e57bc05e5b0d004a7dcf5b5f091ba9b059b3a7a [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
Marc Jones257db582017-06-18 17:33:30 -06003#include <cbmem.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>
8#include <device/pci_ids.h>
9#include <device/pci_ops.h>
10#include <device/pci_def.h>
11#include <pc80/mc146818rtc.h>
12#include <pc80/isa-dma.h>
Marc Jones24484842017-05-04 21:17:45 -060013#include <arch/ioapic.h>
Marc Jones24484842017-05-04 21:17:45 -060014#include <pc80/i8254.h>
15#include <pc80/i8259.h>
Marshall Dawson69486ca2019-05-02 12:03:45 -060016#include <amdblocks/acpimmio.h>
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060017#include <amdblocks/lpc.h>
Marc Jones257db582017-06-18 17:33:30 -060018#include <soc/acpi.h>
Marc Jonesdfeb1c42017-08-07 19:08:24 -060019#include <soc/southbridge.h>
Marc Jones257db582017-06-18 17:33:30 -060020#include <soc/nvs.h>
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060021#include <soc/iomap.h>
22
23/* Most systems should have already enabled the bridge */
24void __weak soc_late_lpc_bridge_enable(void) { }
Marc Jones24484842017-05-04 21:17:45 -060025
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020026static void lpc_init(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -060027{
28 u8 byte;
Marc Jones24484842017-05-04 21:17:45 -060029
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060030 soc_late_lpc_bridge_enable();
31
Marc Jones24484842017-05-04 21:17:45 -060032 /* Initialize isa dma */
33 isa_dma_init();
34
35 /* Enable DMA transaction on the LPC bus */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060036 byte = pci_read_config8(dev, LPC_PCI_CONTROL);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070037 byte |= LEGACY_DMA_EN;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060038 pci_write_config8(dev, LPC_PCI_CONTROL, byte);
Marc Jones24484842017-05-04 21:17:45 -060039
40 /* Disable the timeout mechanism on LPC */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060041 byte = pci_read_config8(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070042 byte &= ~LPC_SYNC_TIMEOUT_COUNT_ENABLE;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060043 pci_write_config8(dev, LPC_IO_OR_MEM_DECODE_ENABLE, byte);
Marc Jones24484842017-05-04 21:17:45 -060044
45 /* Disable LPC MSI Capability */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060046 byte = pci_read_config8(dev, LPC_MISC_CONTROL_BITS);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070047 /* BIT 1 is not defined in public datasheet. */
Marc Jones24484842017-05-04 21:17:45 -060048 byte &= ~(1 << 1);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070049
50 /*
51 * Keep the old way. i.e., when bus master/DMA cycle is going
Marshall Dawson4e101ad2017-06-15 12:17:38 -060052 * on on LPC, it holds PCI grant, so no LPC slave cycle can
53 * interrupt and visit LPC.
54 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070055 byte &= ~LPC_NOHOG;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060056 pci_write_config8(dev, LPC_MISC_CONTROL_BITS, byte);
Marc Jones24484842017-05-04 21:17:45 -060057
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070058 /*
Marshall Dawson6ab5ed32019-05-29 09:24:18 -060059 * Enable hand-instance of the pulse generator and SPI prefetch from
60 * host (earlier is recommended for boot speed).
Marshall Dawson4e101ad2017-06-15 12:17:38 -060061 */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060062 byte = pci_read_config8(dev, LPC_HOST_CONTROL);
Richard Spiegelee098782018-07-30 12:05:22 -070063 byte |= PREFETCH_EN_SPI_FROM_HOST | T_START_ENH;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060064 pci_write_config8(dev, LPC_HOST_CONTROL, byte);
Marc Jones24484842017-05-04 21:17:45 -060065
66 cmos_check_update_date();
67
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070068 /*
69 * Initialize the real time clock.
Marc Jones24484842017-05-04 21:17:45 -060070 * The 0 argument tells cmos_init not to
71 * update CMOS unless it is invalid.
72 * 1 tells cmos_init to always initialize the CMOS.
73 */
Aaron Durbin9fde0d72017-09-15 11:01:17 -060074 cmos_init(0);
Marc Jones24484842017-05-04 21:17:45 -060075
76 /* Initialize i8259 pic */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060077 setup_i8259();
Marc Jones24484842017-05-04 21:17:45 -060078
79 /* Initialize i8254 timers */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060080 setup_i8254();
Marc Jones24484842017-05-04 21:17:45 -060081
82 /* Set up SERIRQ, enable continuous mode */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070083 byte = (PM_SERIRQ_NUM_BITS_21 | PM_SERIRQ_ENABLE);
Julius Wernercd49cce2019-03-05 16:53:33 -080084 if (!CONFIG(SERIRQ_CONTINUOUS_MODE))
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070085 byte |= PM_SERIRQ_MODE;
Marc Jones24484842017-05-04 21:17:45 -060086
87 pm_write8(PM_SERIRQ_CONF, byte);
88}
89
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020090static void lpc_read_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -060091{
92 struct resource *res;
Marc Jones257db582017-06-18 17:33:30 -060093 global_nvs_t *gnvs;
Marc Jones24484842017-05-04 21:17:45 -060094
95 /* Get the normal pci resources of this device */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060096 pci_dev_read_resources(dev);
Marc Jones24484842017-05-04 21:17:45 -060097
98 /* Add an extra subtractive resource for both memory and I/O. */
99 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
100 res->base = 0;
101 res->size = 0x1000;
102 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
103 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
104
105 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700106 res->base = FLASH_BASE_ADDR;
107 res->size = CONFIG_ROM_SIZE;
Marc Jones24484842017-05-04 21:17:45 -0600108 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
109 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
110
111 /* Add a memory resource for the SPI BAR. */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600112 fixed_mem_resource(dev, 2, SPI_BASE_ADDRESS / 1024, 1,
113 IORESOURCE_SUBTRACTIVE);
Marc Jones24484842017-05-04 21:17:45 -0600114
115 res = new_resource(dev, 3); /* IOAPIC */
116 res->base = IO_APIC_ADDR;
117 res->size = 0x00001000;
118 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
119
Martin Roth7e78e562019-11-03 23:29:02 -0700120 /* I2C devices */
Chris Ching6fc39d42017-12-20 16:06:03 -0700121 res = new_resource(dev, 4);
122 res->base = I2C_BASE_ADDRESS;
123 res->size = I2C_DEVICE_SIZE * I2C_DEVICE_COUNT;
124 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
125
Marc Jones24484842017-05-04 21:17:45 -0600126 compact_resources(dev);
Marc Jones257db582017-06-18 17:33:30 -0600127
128 /* Allocate ACPI NVS in CBMEM */
129 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(global_nvs_t));
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700130 printk(BIOS_DEBUG, "ACPI GNVS at %p\n", gnvs);
Marc Jones24484842017-05-04 21:17:45 -0600131}
132
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600133static void lpc_set_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600134{
135 struct resource *res;
136 u32 spi_enable_bits;
137
138 /* Special case. The SpiRomEnable and other enables should STAY set. */
139 res = find_resource(dev, 2);
140 spi_enable_bits = pci_read_config32(dev, SPIROM_BASE_ADDRESS_REGISTER);
Marshall Dawsoneceaa972019-05-05 18:35:12 -0600141 spi_enable_bits &= SPI_BASE_ALIGNMENT - 1;
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600142 pci_write_config32(dev, SPIROM_BASE_ADDRESS_REGISTER,
143 res->base | spi_enable_bits);
Marc Jones24484842017-05-04 21:17:45 -0600144
145 pci_dev_set_resources(dev);
146}
147
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700148static void configure_child_lpc_windows(struct device *dev, struct device *child)
Richard Spiegelaa183852017-10-05 18:53:31 -0700149{
150 struct resource *res;
151 u32 base, end;
152 u32 rsize = 0, set = 0, set_x = 0;
Richard Spiegelb5f96452017-11-22 15:28:25 -0700153 int wideio_index;
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700154 u32 reg, reg_x;
155
156 reg = pci_read_config32(dev, LPC_IO_PORT_DECODE_ENABLE);
157 reg_x = pci_read_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
158
Richard Spiegelaa183852017-10-05 18:53:31 -0700159
Richard Spiegel7a39e022017-11-09 10:54:04 -0700160 /*
161 * Be a bit relaxed, tolerate that LPC region might be bigger than
162 * resource we try to fit, do it like this for all regions < 16 bytes.
163 * If there is a resource > 16 bytes it must be 512 bytes to be able
164 * to allocate the fresh LPC window.
165 *
166 * AGESA and early initialization can set a wide IO port. This code
167 * will verify if required region was previously set and will avoid
168 * setting a new wide IO resource if one is already set.
169 */
170
Richard Spiegelaa183852017-10-05 18:53:31 -0700171 for (res = child->resource_list; res; res = res->next) {
172 if (!(res->flags & IORESOURCE_IO))
173 continue;
174 base = res->base;
175 end = resource_end(res);
Richard Spiegelaa183852017-10-05 18:53:31 -0700176 printk(BIOS_DEBUG,
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700177 "Southbridge LPC decode:%s, base=0x%08x, end=0x%08x\n",
178 dev_path(child), base, end);
179 /* find a resource size */
Richard Spiegelaa183852017-10-05 18:53:31 -0700180 switch (base) {
181 case 0x60: /* KB */
182 case 0x64: /* MS */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700183 set |= DECODE_ENABLE_KBC_PORT;
Richard Spiegelaa183852017-10-05 18:53:31 -0700184 rsize = 1;
185 break;
186 case 0x3f8: /* COM1 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700187 set |= DECODE_ENABLE_SERIAL_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700188 rsize = 8;
189 break;
190 case 0x2f8: /* COM2 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700191 set |= DECODE_ENABLE_SERIAL_PORT1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700192 rsize = 8;
193 break;
194 case 0x378: /* Parallel 1 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700195 set |= DECODE_ENABLE_PARALLEL_PORT0;
196 /* enable 0x778 for ECP mode */
197 set |= DECODE_ENABLE_PARALLEL_PORT1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700198 rsize = 8;
199 break;
200 case 0x3f0: /* FD0 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700201 set |= DECODE_ENABLE_FDC_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700202 rsize = 8;
203 break;
204 case 0x220: /* 0x220 - 0x227 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700205 set |= DECODE_ENABLE_SERIAL_PORT2;
Richard Spiegelaa183852017-10-05 18:53:31 -0700206 rsize = 8;
207 break;
208 case 0x228: /* 0x228 - 0x22f */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700209 set |= DECODE_ENABLE_SERIAL_PORT3;
Richard Spiegelaa183852017-10-05 18:53:31 -0700210 rsize = 8;
211 break;
212 case 0x238: /* 0x238 - 0x23f */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700213 set |= DECODE_ENABLE_SERIAL_PORT4;
Richard Spiegelaa183852017-10-05 18:53:31 -0700214 rsize = 8;
215 break;
216 case 0x300: /* 0x300 - 0x301 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700217 set |= DECODE_ENABLE_MIDI_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700218 rsize = 2;
219 break;
220 case 0x400:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700221 set_x |= DECODE_IO_PORT_ENABLE0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700222 rsize = 0x40;
223 break;
224 case 0x480:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700225 set_x |= DECODE_IO_PORT_ENABLE1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700226 rsize = 0x40;
227 break;
228 case 0x500:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700229 set_x |= DECODE_IO_PORT_ENABLE2;
Richard Spiegelaa183852017-10-05 18:53:31 -0700230 rsize = 0x40;
231 break;
232 case 0x580:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700233 set_x |= DECODE_IO_PORT_ENABLE3;
Richard Spiegelaa183852017-10-05 18:53:31 -0700234 rsize = 0x40;
235 break;
236 case 0x4700:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700237 set_x |= DECODE_IO_PORT_ENABLE5;
Richard Spiegelaa183852017-10-05 18:53:31 -0700238 rsize = 0xc;
239 break;
240 case 0xfd60:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700241 set_x |= DECODE_IO_PORT_ENABLE6;
Richard Spiegelaa183852017-10-05 18:53:31 -0700242 rsize = 16;
243 break;
244 default:
245 rsize = 0;
Marshall Dawson6ab5ed32019-05-29 09:24:18 -0600246 wideio_index = lpc_find_wideio_range(base, res->size);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700247 if (wideio_index != WIDEIO_RANGE_ERROR) {
Marshall Dawson6ab5ed32019-05-29 09:24:18 -0600248 rsize = lpc_wideio_size(wideio_index);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700249 printk(BIOS_DEBUG, "Covered by wideIO");
250 printk(BIOS_DEBUG, " %d\n", wideio_index);
Richard Spiegel7a39e022017-11-09 10:54:04 -0700251 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700252 }
253 /* check if region found and matches the enable */
254 if (res->size <= rsize) {
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700255 reg |= set;
256 reg_x |= set_x;
Richard Spiegelaa183852017-10-05 18:53:31 -0700257 /* check if we can fit resource in variable range */
Richard Spiegelaa183852017-10-05 18:53:31 -0700258 } else {
Marshall Dawson6ab5ed32019-05-29 09:24:18 -0600259 wideio_index = lpc_set_wideio_range(base, res->size);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700260 if (wideio_index != WIDEIO_RANGE_ERROR) {
261 /* preserve wide IO related bits. */
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700262 reg_x = pci_read_config32(dev,
Richard Spiegelb5f96452017-11-22 15:28:25 -0700263 LPC_IO_OR_MEM_DECODE_ENABLE);
Richard Spiegelb5f96452017-11-22 15:28:25 -0700264 printk(BIOS_DEBUG,
265 "Range assigned to wide IO %d\n",
266 wideio_index);
267 } else {
268 printk(BIOS_ERR,
269 "cannot fit LPC decode region:");
270 printk(BIOS_ERR,
271 "%s, base = 0x%08x, end = 0x%08x\n",
272 dev_path(child), base, end);
273 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700274 }
275 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700276
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700277 pci_write_config32(dev, LPC_IO_PORT_DECODE_ENABLE, reg);
278 pci_write_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE, reg_x);
Marc Jones24484842017-05-04 21:17:45 -0600279}
280
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700281static void lpc_enable_children_resources(struct device *dev)
282{
283 struct bus *link;
284 struct device *child;
285
286 for (link = dev->link_list; link; link = link->next) {
287 for (child = link->children; child; child = child->sibling) {
288 if (!child->enabled)
289 continue;
290 if (child->path.type != DEVICE_PATH_PNP)
291 continue;
292 configure_child_lpc_windows(dev, child);
293 }
294 }
295}
296
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200297static void lpc_enable_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600298{
299 pci_dev_enable_resources(dev);
Furquan Shaikh1e279a52020-05-04 21:22:22 -0700300 lpc_enable_children_resources(dev);
Marc Jones24484842017-05-04 21:17:45 -0600301}
302
Marc Jones24484842017-05-04 21:17:45 -0600303static struct device_operations lpc_ops = {
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600304 .read_resources = lpc_read_resources,
305 .set_resources = lpc_set_resources,
306 .enable_resources = lpc_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200307 .acpi_inject_dsdt = southbridge_inject_dsdt,
Marc Jones257db582017-06-18 17:33:30 -0600308 .write_acpi_tables = southbridge_write_acpi_tables,
Marc Jones24484842017-05-04 21:17:45 -0600309 .init = lpc_init,
Nico Huber51b75ae2019-03-14 16:02:05 +0100310 .scan_bus = scan_static_bus,
Furquan Shaikh40454b72020-05-04 20:52:08 -0700311 .ops_pci = &pci_dev_ops_pci,
Marc Jones24484842017-05-04 21:17:45 -0600312};
313
314static const unsigned short pci_device_ids[] = {
315 PCI_DEVICE_ID_AMD_SB900_LPC,
316 PCI_DEVICE_ID_AMD_CZ_LPC,
Furquan Shaikha1cd7eb2020-04-15 23:58:22 -0700317 PCI_DEVICE_ID_AMD_FAM17H_LPC,
Marc Jones24484842017-05-04 21:17:45 -0600318 0
319};
320static const struct pci_driver lpc_driver __pci_driver = {
321 .ops = &lpc_ops,
322 .vendor = PCI_VENDOR_ID_AMD,
323 .devices = pci_device_ids,
324};