blob: 1741e92e0c724682475c5b8d5350a065ba5f5aa5 [file] [log] [blame]
Marc Jones24484842017-05-04 21:17:45 -06001/*
2 * This file is part of the coreboot project.
3 *
Richard Spiegel7a39e022017-11-09 10:54:04 -07004 * Copyright (C) 2010-2017 Advanced Micro Devices, Inc.
Marc Jones24484842017-05-04 21:17:45 -06005 * Copyright (C) 2014 Sage Electronic Engineering, LLC
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
Marc Jones257db582017-06-18 17:33:30 -060017#include <cbmem.h>
Marc Jones24484842017-05-04 21:17:45 -060018#include <console/console.h>
19#include <device/device.h>
20#include <device/pci.h>
21#include <device/pnp.h>
22#include <device/pci_ids.h>
23#include <device/pci_ops.h>
24#include <device/pci_def.h>
25#include <pc80/mc146818rtc.h>
26#include <pc80/isa-dma.h>
Marc Jones24484842017-05-04 21:17:45 -060027#include <arch/ioapic.h>
Marc Jones24484842017-05-04 21:17:45 -060028#include <pc80/i8254.h>
29#include <pc80/i8259.h>
Marshall Dawson69486ca2019-05-02 12:03:45 -060030#include <amdblocks/acpimmio.h>
Marc Jones257db582017-06-18 17:33:30 -060031#include <soc/acpi.h>
Marshall Dawson4e101ad2017-06-15 12:17:38 -060032#include <soc/pci_devs.h>
Marc Jonesdfeb1c42017-08-07 19:08:24 -060033#include <soc/southbridge.h>
Marc Jones257db582017-06-18 17:33:30 -060034#include <soc/nvs.h>
Marc Jones24484842017-05-04 21:17:45 -060035
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020036static void lpc_init(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -060037{
38 u8 byte;
Marc Jones24484842017-05-04 21:17:45 -060039
40 /* Initialize isa dma */
41 isa_dma_init();
42
43 /* Enable DMA transaction on the LPC bus */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060044 byte = pci_read_config8(dev, LPC_PCI_CONTROL);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070045 byte |= LEGACY_DMA_EN;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060046 pci_write_config8(dev, LPC_PCI_CONTROL, byte);
Marc Jones24484842017-05-04 21:17:45 -060047
48 /* Disable the timeout mechanism on LPC */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060049 byte = pci_read_config8(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070050 byte &= ~LPC_SYNC_TIMEOUT_COUNT_ENABLE;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060051 pci_write_config8(dev, LPC_IO_OR_MEM_DECODE_ENABLE, byte);
Marc Jones24484842017-05-04 21:17:45 -060052
53 /* Disable LPC MSI Capability */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060054 byte = pci_read_config8(dev, LPC_MISC_CONTROL_BITS);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070055 /* BIT 1 is not defined in public datasheet. */
Marc Jones24484842017-05-04 21:17:45 -060056 byte &= ~(1 << 1);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070057
58 /*
59 * Keep the old way. i.e., when bus master/DMA cycle is going
Marshall Dawson4e101ad2017-06-15 12:17:38 -060060 * on on LPC, it holds PCI grant, so no LPC slave cycle can
61 * interrupt and visit LPC.
62 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070063 byte &= ~LPC_NOHOG;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060064 pci_write_config8(dev, LPC_MISC_CONTROL_BITS, byte);
Marc Jones24484842017-05-04 21:17:45 -060065
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070066 /*
Richard Spiegelee098782018-07-30 12:05:22 -070067 * Enable hand-instance of the pulse generator and SPI
68 * controller prefetch of flash.
Marshall Dawson4e101ad2017-06-15 12:17:38 -060069 */
Marshall Dawson1bc04e32019-05-02 18:56:54 -060070 byte = pci_read_config8(dev, LPC_HOST_CONTROL);
Richard Spiegelee098782018-07-30 12:05:22 -070071 byte |= PREFETCH_EN_SPI_FROM_HOST | T_START_ENH;
Marshall Dawson1bc04e32019-05-02 18:56:54 -060072 pci_write_config8(dev, LPC_HOST_CONTROL, byte);
Marc Jones24484842017-05-04 21:17:45 -060073
74 cmos_check_update_date();
75
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070076 /*
77 * Initialize the real time clock.
Marc Jones24484842017-05-04 21:17:45 -060078 * The 0 argument tells cmos_init not to
79 * update CMOS unless it is invalid.
80 * 1 tells cmos_init to always initialize the CMOS.
81 */
Aaron Durbin9fde0d72017-09-15 11:01:17 -060082 cmos_init(0);
Marc Jones24484842017-05-04 21:17:45 -060083
84 /* Initialize i8259 pic */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060085 setup_i8259();
Marc Jones24484842017-05-04 21:17:45 -060086
87 /* Initialize i8254 timers */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060088 setup_i8254();
Marc Jones24484842017-05-04 21:17:45 -060089
90 /* Set up SERIRQ, enable continuous mode */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070091 byte = (PM_SERIRQ_NUM_BITS_21 | PM_SERIRQ_ENABLE);
Julius Wernercd49cce2019-03-05 16:53:33 -080092 if (!CONFIG(SERIRQ_CONTINUOUS_MODE))
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070093 byte |= PM_SERIRQ_MODE;
Marc Jones24484842017-05-04 21:17:45 -060094
95 pm_write8(PM_SERIRQ_CONF, byte);
96}
97
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020098static void lpc_read_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -060099{
100 struct resource *res;
Marc Jones257db582017-06-18 17:33:30 -0600101 global_nvs_t *gnvs;
Marc Jones24484842017-05-04 21:17:45 -0600102
103 /* Get the normal pci resources of this device */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600104 pci_dev_read_resources(dev);
Marc Jones24484842017-05-04 21:17:45 -0600105
106 /* Add an extra subtractive resource for both memory and I/O. */
107 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
108 res->base = 0;
109 res->size = 0x1000;
110 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
111 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
112
113 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700114 res->base = FLASH_BASE_ADDR;
115 res->size = CONFIG_ROM_SIZE;
Marc Jones24484842017-05-04 21:17:45 -0600116 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
117 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
118
119 /* Add a memory resource for the SPI BAR. */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600120 fixed_mem_resource(dev, 2, SPI_BASE_ADDRESS / 1024, 1,
121 IORESOURCE_SUBTRACTIVE);
Marc Jones24484842017-05-04 21:17:45 -0600122
123 res = new_resource(dev, 3); /* IOAPIC */
124 res->base = IO_APIC_ADDR;
125 res->size = 0x00001000;
126 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
127
Chris Ching6fc39d42017-12-20 16:06:03 -0700128 /* I2C devices (all 4 devices) */
129 res = new_resource(dev, 4);
130 res->base = I2C_BASE_ADDRESS;
131 res->size = I2C_DEVICE_SIZE * I2C_DEVICE_COUNT;
132 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
133
Marc Jones24484842017-05-04 21:17:45 -0600134 compact_resources(dev);
Marc Jones257db582017-06-18 17:33:30 -0600135
136 /* Allocate ACPI NVS in CBMEM */
137 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(global_nvs_t));
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700138 printk(BIOS_DEBUG, "ACPI GNVS at %p\n", gnvs);
Marc Jones24484842017-05-04 21:17:45 -0600139}
140
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600141static void lpc_set_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600142{
143 struct resource *res;
144 u32 spi_enable_bits;
145
146 /* Special case. The SpiRomEnable and other enables should STAY set. */
147 res = find_resource(dev, 2);
148 spi_enable_bits = pci_read_config32(dev, SPIROM_BASE_ADDRESS_REGISTER);
Marshall Dawsoneceaa972019-05-05 18:35:12 -0600149 spi_enable_bits &= SPI_BASE_ALIGNMENT - 1;
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600150 pci_write_config32(dev, SPIROM_BASE_ADDRESS_REGISTER,
151 res->base | spi_enable_bits);
Marc Jones24484842017-05-04 21:17:45 -0600152
153 pci_dev_set_resources(dev);
154}
155
Marshall Dawson1bc04e32019-05-02 18:56:54 -0600156static void set_child_resource(struct device *dev, struct device *child,
157 u32 *reg, u32 *reg_x)
Richard Spiegelaa183852017-10-05 18:53:31 -0700158{
159 struct resource *res;
160 u32 base, end;
161 u32 rsize = 0, set = 0, set_x = 0;
Richard Spiegelb5f96452017-11-22 15:28:25 -0700162 int wideio_index;
Richard Spiegelaa183852017-10-05 18:53:31 -0700163
Richard Spiegel7a39e022017-11-09 10:54:04 -0700164 /*
165 * Be a bit relaxed, tolerate that LPC region might be bigger than
166 * resource we try to fit, do it like this for all regions < 16 bytes.
167 * If there is a resource > 16 bytes it must be 512 bytes to be able
168 * to allocate the fresh LPC window.
169 *
170 * AGESA and early initialization can set a wide IO port. This code
171 * will verify if required region was previously set and will avoid
172 * setting a new wide IO resource if one is already set.
173 */
174
Richard Spiegelaa183852017-10-05 18:53:31 -0700175 for (res = child->resource_list; res; res = res->next) {
176 if (!(res->flags & IORESOURCE_IO))
177 continue;
178 base = res->base;
179 end = resource_end(res);
Richard Spiegelaa183852017-10-05 18:53:31 -0700180 printk(BIOS_DEBUG,
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700181 "Southbridge LPC decode:%s, base=0x%08x, end=0x%08x\n",
182 dev_path(child), base, end);
183 /* find a resource size */
Richard Spiegelaa183852017-10-05 18:53:31 -0700184 switch (base) {
185 case 0x60: /* KB */
186 case 0x64: /* MS */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700187 set |= DECODE_ENABLE_KBC_PORT;
Richard Spiegelaa183852017-10-05 18:53:31 -0700188 rsize = 1;
189 break;
190 case 0x3f8: /* COM1 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700191 set |= DECODE_ENABLE_SERIAL_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700192 rsize = 8;
193 break;
194 case 0x2f8: /* COM2 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700195 set |= DECODE_ENABLE_SERIAL_PORT1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700196 rsize = 8;
197 break;
198 case 0x378: /* Parallel 1 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700199 set |= DECODE_ENABLE_PARALLEL_PORT0;
200 /* enable 0x778 for ECP mode */
201 set |= DECODE_ENABLE_PARALLEL_PORT1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700202 rsize = 8;
203 break;
204 case 0x3f0: /* FD0 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700205 set |= DECODE_ENABLE_FDC_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700206 rsize = 8;
207 break;
208 case 0x220: /* 0x220 - 0x227 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700209 set |= DECODE_ENABLE_SERIAL_PORT2;
Richard Spiegelaa183852017-10-05 18:53:31 -0700210 rsize = 8;
211 break;
212 case 0x228: /* 0x228 - 0x22f */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700213 set |= DECODE_ENABLE_SERIAL_PORT3;
Richard Spiegelaa183852017-10-05 18:53:31 -0700214 rsize = 8;
215 break;
216 case 0x238: /* 0x238 - 0x23f */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700217 set |= DECODE_ENABLE_SERIAL_PORT4;
Richard Spiegelaa183852017-10-05 18:53:31 -0700218 rsize = 8;
219 break;
220 case 0x300: /* 0x300 - 0x301 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700221 set |= DECODE_ENABLE_MIDI_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700222 rsize = 2;
223 break;
224 case 0x400:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700225 set_x |= DECODE_IO_PORT_ENABLE0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700226 rsize = 0x40;
227 break;
228 case 0x480:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700229 set_x |= DECODE_IO_PORT_ENABLE1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700230 rsize = 0x40;
231 break;
232 case 0x500:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700233 set_x |= DECODE_IO_PORT_ENABLE2;
Richard Spiegelaa183852017-10-05 18:53:31 -0700234 rsize = 0x40;
235 break;
236 case 0x580:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700237 set_x |= DECODE_IO_PORT_ENABLE3;
Richard Spiegelaa183852017-10-05 18:53:31 -0700238 rsize = 0x40;
239 break;
240 case 0x4700:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700241 set_x |= DECODE_IO_PORT_ENABLE5;
Richard Spiegelaa183852017-10-05 18:53:31 -0700242 rsize = 0xc;
243 break;
244 case 0xfd60:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700245 set_x |= DECODE_IO_PORT_ENABLE6;
Richard Spiegelaa183852017-10-05 18:53:31 -0700246 rsize = 16;
247 break;
248 default:
249 rsize = 0;
Richard Spiegelb5f96452017-11-22 15:28:25 -0700250 wideio_index = sb_find_wideio_range(base, res->size);
251 if (wideio_index != WIDEIO_RANGE_ERROR) {
252 rsize = sb_wideio_size(wideio_index);
253 printk(BIOS_DEBUG, "Covered by wideIO");
254 printk(BIOS_DEBUG, " %d\n", wideio_index);
Richard Spiegel7a39e022017-11-09 10:54:04 -0700255 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700256 }
257 /* check if region found and matches the enable */
258 if (res->size <= rsize) {
259 *reg |= set;
260 *reg_x |= set_x;
261 /* check if we can fit resource in variable range */
Richard Spiegelaa183852017-10-05 18:53:31 -0700262 } else {
Richard Spiegelb5f96452017-11-22 15:28:25 -0700263 wideio_index = sb_set_wideio_range(base, res->size);
264 if (wideio_index != WIDEIO_RANGE_ERROR) {
265 /* preserve wide IO related bits. */
Marshall Dawson1bc04e32019-05-02 18:56:54 -0600266 *reg_x = pci_read_config32(dev,
Richard Spiegelb5f96452017-11-22 15:28:25 -0700267 LPC_IO_OR_MEM_DECODE_ENABLE);
268
269 printk(BIOS_DEBUG,
270 "Range assigned to wide IO %d\n",
271 wideio_index);
272 } else {
273 printk(BIOS_ERR,
274 "cannot fit LPC decode region:");
275 printk(BIOS_ERR,
276 "%s, base = 0x%08x, end = 0x%08x\n",
277 dev_path(child), base, end);
278 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700279 }
280 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700281}
282
Marc Jones24484842017-05-04 21:17:45 -0600283/**
284 * @brief Enable resources for children devices
285 *
286 * @param dev the device whose children's resources are to be enabled
287 *
288 */
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200289static void lpc_enable_childrens_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600290{
291 struct bus *link;
292 u32 reg, reg_x;
Marc Jones24484842017-05-04 21:17:45 -0600293
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700294 reg = pci_read_config32(dev, LPC_IO_PORT_DECODE_ENABLE);
295 reg_x = pci_read_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
Marc Jones24484842017-05-04 21:17:45 -0600296
Richard Spiegelaa183852017-10-05 18:53:31 -0700297 for (link = dev->link_list; link; link = link->next) {
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200298 struct device *child;
Marc Jones24484842017-05-04 21:17:45 -0600299 for (child = link->children; child;
300 child = child->sibling) {
301 if (child->enabled
Marshall Dawson1bc04e32019-05-02 18:56:54 -0600302 && (child->path.type == DEVICE_PATH_PNP))
303 set_child_resource(dev, child, &reg, &reg_x);
Marc Jones24484842017-05-04 21:17:45 -0600304 }
305 }
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700306 pci_write_config32(dev, LPC_IO_PORT_DECODE_ENABLE, reg);
307 pci_write_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE, reg_x);
Marc Jones24484842017-05-04 21:17:45 -0600308}
309
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200310static void lpc_enable_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600311{
312 pci_dev_enable_resources(dev);
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600313 lpc_enable_childrens_resources(dev);
Marc Jones24484842017-05-04 21:17:45 -0600314}
315
Marc Jones24484842017-05-04 21:17:45 -0600316static struct pci_operations lops_pci = {
317 .set_subsystem = pci_dev_set_subsystem,
318};
319
320static 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,
Marc Jones257db582017-06-18 17:33:30 -0600324 .acpi_inject_dsdt_generator = southbridge_inject_dsdt,
325 .write_acpi_tables = southbridge_write_acpi_tables,
Marc Jones24484842017-05-04 21:17:45 -0600326 .init = lpc_init,
327 .scan_bus = scan_lpc_bus,
328 .ops_pci = &lops_pci,
329};
330
331static const unsigned short pci_device_ids[] = {
332 PCI_DEVICE_ID_AMD_SB900_LPC,
333 PCI_DEVICE_ID_AMD_CZ_LPC,
334 0
335};
336static const struct pci_driver lpc_driver __pci_driver = {
337 .ops = &lpc_ops,
338 .vendor = PCI_VENDOR_ID_AMD,
339 .devices = pci_device_ids,
340};