blob: 4bf5a4f1b487e432d953fbbd2161988c8e0ea271 [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>
27#include <arch/io.h>
28#include <arch/ioapic.h>
29#include <arch/acpi.h>
30#include <pc80/i8254.h>
31#include <pc80/i8259.h>
Marc Jones257db582017-06-18 17:33:30 -060032#include <soc/acpi.h>
Marshall Dawson4e101ad2017-06-15 12:17:38 -060033#include <soc/pci_devs.h>
Marc Jonesdfeb1c42017-08-07 19:08:24 -060034#include <soc/southbridge.h>
Marc Jones257db582017-06-18 17:33:30 -060035#include <soc/nvs.h>
Marc Jones24484842017-05-04 21:17:45 -060036
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;
40 u32 dword;
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020041 struct device *sm_dev;
Marc Jones24484842017-05-04 21:17:45 -060042
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070043 /*
44 * Enable the LPC Controller
45 * SMBus register 0x64 is not defined in public datasheet.
46 */
Chris Ching6a35fab2017-10-19 11:45:30 -060047 sm_dev = dev_find_slot(0, SMBUS_DEVFN);
Marc Jones24484842017-05-04 21:17:45 -060048 dword = pci_read_config32(sm_dev, 0x64);
49 dword |= 1 << 20;
50 pci_write_config32(sm_dev, 0x64, dword);
51
52 /* Initialize isa dma */
53 isa_dma_init();
54
55 /* Enable DMA transaction on the LPC bus */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070056 byte = pci_read_config8(dev, LPC_PCI_CONTROL);
57 byte |= LEGACY_DMA_EN;
58 pci_write_config8(dev, LPC_PCI_CONTROL, byte);
Marc Jones24484842017-05-04 21:17:45 -060059
60 /* Disable the timeout mechanism on LPC */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070061 byte = pci_read_config8(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
62 byte &= ~LPC_SYNC_TIMEOUT_COUNT_ENABLE;
63 pci_write_config8(dev, LPC_IO_OR_MEM_DECODE_ENABLE, byte);
Marc Jones24484842017-05-04 21:17:45 -060064
65 /* Disable LPC MSI Capability */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070066 byte = pci_read_config8(dev, LPC_MISC_CONTROL_BITS);
67 /* BIT 1 is not defined in public datasheet. */
Marc Jones24484842017-05-04 21:17:45 -060068 byte &= ~(1 << 1);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070069
70 /*
71 * Keep the old way. i.e., when bus master/DMA cycle is going
Marshall Dawson4e101ad2017-06-15 12:17:38 -060072 * on on LPC, it holds PCI grant, so no LPC slave cycle can
73 * interrupt and visit LPC.
74 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070075 byte &= ~LPC_NOHOG;
76 pci_write_config8(dev, LPC_MISC_CONTROL_BITS, byte);
Marc Jones24484842017-05-04 21:17:45 -060077
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070078 /*
Richard Spiegelbbcfa8a2018-04-12 10:22:31 -070079 * IMC is not used, but some of its registers and ports need to be
80 * programmed/accessed. So enable CPU access to them. This fixes
81 * SPI_CS# timing issue when running at 66MHz.
Marshall Dawson4e101ad2017-06-15 12:17:38 -060082 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070083 byte = pci_read_config8(dev, LPC_HOST_CONTROL);
Richard Spiegelbbcfa8a2018-04-12 10:22:31 -070084 byte |= IMC_PAGE_FROM_HOST_EN | IMC_PORT_FROM_HOST_EN;
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070085 pci_write_config8(dev, LPC_HOST_CONTROL, byte);
Marc Jones24484842017-05-04 21:17:45 -060086
87 cmos_check_update_date();
88
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -070089 /*
90 * Initialize the real time clock.
Marc Jones24484842017-05-04 21:17:45 -060091 * The 0 argument tells cmos_init not to
92 * update CMOS unless it is invalid.
93 * 1 tells cmos_init to always initialize the CMOS.
94 */
Aaron Durbin9fde0d72017-09-15 11:01:17 -060095 cmos_init(0);
Marc Jones24484842017-05-04 21:17:45 -060096
97 /* Initialize i8259 pic */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060098 setup_i8259();
Marc Jones24484842017-05-04 21:17:45 -060099
100 /* Initialize i8254 timers */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600101 setup_i8254();
Marc Jones24484842017-05-04 21:17:45 -0600102
103 /* Set up SERIRQ, enable continuous mode */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700104 byte = (PM_SERIRQ_NUM_BITS_21 | PM_SERIRQ_ENABLE);
Marc Jones24484842017-05-04 21:17:45 -0600105 if (!IS_ENABLED(CONFIG_SERIRQ_CONTINUOUS_MODE))
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700106 byte |= PM_SERIRQ_MODE;
Marc Jones24484842017-05-04 21:17:45 -0600107
108 pm_write8(PM_SERIRQ_CONF, byte);
109}
110
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200111static void lpc_read_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600112{
113 struct resource *res;
Marc Jones257db582017-06-18 17:33:30 -0600114 global_nvs_t *gnvs;
Marc Jones24484842017-05-04 21:17:45 -0600115
116 /* Get the normal pci resources of this device */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600117 pci_dev_read_resources(dev);
Marc Jones24484842017-05-04 21:17:45 -0600118
119 /* Add an extra subtractive resource for both memory and I/O. */
120 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
121 res->base = 0;
122 res->size = 0x1000;
123 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
124 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
125
126 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700127 res->base = FLASH_BASE_ADDR;
128 res->size = CONFIG_ROM_SIZE;
Marc Jones24484842017-05-04 21:17:45 -0600129 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
130 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
131
132 /* Add a memory resource for the SPI BAR. */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600133 fixed_mem_resource(dev, 2, SPI_BASE_ADDRESS / 1024, 1,
134 IORESOURCE_SUBTRACTIVE);
Marc Jones24484842017-05-04 21:17:45 -0600135
136 res = new_resource(dev, 3); /* IOAPIC */
137 res->base = IO_APIC_ADDR;
138 res->size = 0x00001000;
139 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
140
Chris Ching6fc39d42017-12-20 16:06:03 -0700141 /* I2C devices (all 4 devices) */
142 res = new_resource(dev, 4);
143 res->base = I2C_BASE_ADDRESS;
144 res->size = I2C_DEVICE_SIZE * I2C_DEVICE_COUNT;
145 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
146
Marc Jones24484842017-05-04 21:17:45 -0600147 compact_resources(dev);
Marc Jones257db582017-06-18 17:33:30 -0600148
149 /* Allocate ACPI NVS in CBMEM */
150 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(global_nvs_t));
Marc Jones24484842017-05-04 21:17:45 -0600151}
152
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600153static void lpc_set_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600154{
155 struct resource *res;
156 u32 spi_enable_bits;
157
158 /* Special case. The SpiRomEnable and other enables should STAY set. */
159 res = find_resource(dev, 2);
160 spi_enable_bits = pci_read_config32(dev, SPIROM_BASE_ADDRESS_REGISTER);
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700161 spi_enable_bits &= SPI_PRESERVE_BITS;
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600162 pci_write_config32(dev, SPIROM_BASE_ADDRESS_REGISTER,
163 res->base | spi_enable_bits);
Marc Jones24484842017-05-04 21:17:45 -0600164
165 pci_dev_set_resources(dev);
166}
167
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200168static void set_child_resource(struct device *child,
Richard Spiegelaa183852017-10-05 18:53:31 -0700169 u32 *reg,
Richard Spiegelb5f96452017-11-22 15:28:25 -0700170 u32 *reg_x)
Richard Spiegelaa183852017-10-05 18:53:31 -0700171{
172 struct resource *res;
173 u32 base, end;
174 u32 rsize = 0, set = 0, set_x = 0;
Richard Spiegelb5f96452017-11-22 15:28:25 -0700175 int wideio_index;
Richard Spiegelaa183852017-10-05 18:53:31 -0700176
Richard Spiegel7a39e022017-11-09 10:54:04 -0700177 /*
178 * Be a bit relaxed, tolerate that LPC region might be bigger than
179 * resource we try to fit, do it like this for all regions < 16 bytes.
180 * If there is a resource > 16 bytes it must be 512 bytes to be able
181 * to allocate the fresh LPC window.
182 *
183 * AGESA and early initialization can set a wide IO port. This code
184 * will verify if required region was previously set and will avoid
185 * setting a new wide IO resource if one is already set.
186 */
187
Richard Spiegelaa183852017-10-05 18:53:31 -0700188 for (res = child->resource_list; res; res = res->next) {
189 if (!(res->flags & IORESOURCE_IO))
190 continue;
191 base = res->base;
192 end = resource_end(res);
Richard Spiegelaa183852017-10-05 18:53:31 -0700193 printk(BIOS_DEBUG,
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700194 "Southbridge LPC decode:%s, base=0x%08x, end=0x%08x\n",
195 dev_path(child), base, end);
196 /* find a resource size */
Richard Spiegelaa183852017-10-05 18:53:31 -0700197 switch (base) {
198 case 0x60: /* KB */
199 case 0x64: /* MS */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700200 set |= DECODE_ENABLE_KBC_PORT;
Richard Spiegelaa183852017-10-05 18:53:31 -0700201 rsize = 1;
202 break;
203 case 0x3f8: /* COM1 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700204 set |= DECODE_ENABLE_SERIAL_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700205 rsize = 8;
206 break;
207 case 0x2f8: /* COM2 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700208 set |= DECODE_ENABLE_SERIAL_PORT1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700209 rsize = 8;
210 break;
211 case 0x378: /* Parallel 1 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700212 set |= DECODE_ENABLE_PARALLEL_PORT0;
213 /* enable 0x778 for ECP mode */
214 set |= DECODE_ENABLE_PARALLEL_PORT1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700215 rsize = 8;
216 break;
217 case 0x3f0: /* FD0 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700218 set |= DECODE_ENABLE_FDC_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700219 rsize = 8;
220 break;
221 case 0x220: /* 0x220 - 0x227 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700222 set |= DECODE_ENABLE_SERIAL_PORT2;
Richard Spiegelaa183852017-10-05 18:53:31 -0700223 rsize = 8;
224 break;
225 case 0x228: /* 0x228 - 0x22f */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700226 set |= DECODE_ENABLE_SERIAL_PORT3;
Richard Spiegelaa183852017-10-05 18:53:31 -0700227 rsize = 8;
228 break;
229 case 0x238: /* 0x238 - 0x23f */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700230 set |= DECODE_ENABLE_SERIAL_PORT4;
Richard Spiegelaa183852017-10-05 18:53:31 -0700231 rsize = 8;
232 break;
233 case 0x300: /* 0x300 - 0x301 */
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700234 set |= DECODE_ENABLE_MIDI_PORT0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700235 rsize = 2;
236 break;
237 case 0x400:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700238 set_x |= DECODE_IO_PORT_ENABLE0;
Richard Spiegelaa183852017-10-05 18:53:31 -0700239 rsize = 0x40;
240 break;
241 case 0x480:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700242 set_x |= DECODE_IO_PORT_ENABLE1;
Richard Spiegelaa183852017-10-05 18:53:31 -0700243 rsize = 0x40;
244 break;
245 case 0x500:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700246 set_x |= DECODE_IO_PORT_ENABLE2;
Richard Spiegelaa183852017-10-05 18:53:31 -0700247 rsize = 0x40;
248 break;
249 case 0x580:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700250 set_x |= DECODE_IO_PORT_ENABLE3;
Richard Spiegelaa183852017-10-05 18:53:31 -0700251 rsize = 0x40;
252 break;
253 case 0x4700:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700254 set_x |= DECODE_IO_PORT_ENABLE5;
Richard Spiegelaa183852017-10-05 18:53:31 -0700255 rsize = 0xc;
256 break;
257 case 0xfd60:
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700258 set_x |= DECODE_IO_PORT_ENABLE6;
Richard Spiegelaa183852017-10-05 18:53:31 -0700259 rsize = 16;
260 break;
261 default:
262 rsize = 0;
Richard Spiegelb5f96452017-11-22 15:28:25 -0700263 wideio_index = sb_find_wideio_range(base, res->size);
264 if (wideio_index != WIDEIO_RANGE_ERROR) {
265 rsize = sb_wideio_size(wideio_index);
266 printk(BIOS_DEBUG, "Covered by wideIO");
267 printk(BIOS_DEBUG, " %d\n", wideio_index);
Richard Spiegel7a39e022017-11-09 10:54:04 -0700268 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700269 }
270 /* check if region found and matches the enable */
271 if (res->size <= rsize) {
272 *reg |= set;
273 *reg_x |= set_x;
274 /* check if we can fit resource in variable range */
Richard Spiegelaa183852017-10-05 18:53:31 -0700275 } else {
Richard Spiegelb5f96452017-11-22 15:28:25 -0700276 wideio_index = sb_set_wideio_range(base, res->size);
277 if (wideio_index != WIDEIO_RANGE_ERROR) {
278 /* preserve wide IO related bits. */
279 *reg_x = pci_read_config32(SOC_LPC_DEV,
280 LPC_IO_OR_MEM_DECODE_ENABLE);
281
282 printk(BIOS_DEBUG,
283 "Range assigned to wide IO %d\n",
284 wideio_index);
285 } else {
286 printk(BIOS_ERR,
287 "cannot fit LPC decode region:");
288 printk(BIOS_ERR,
289 "%s, base = 0x%08x, end = 0x%08x\n",
290 dev_path(child), base, end);
291 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700292 }
293 }
Richard Spiegelaa183852017-10-05 18:53:31 -0700294}
295
Marc Jones24484842017-05-04 21:17:45 -0600296/**
297 * @brief Enable resources for children devices
298 *
299 * @param dev the device whose children's resources are to be enabled
300 *
301 */
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200302static void lpc_enable_childrens_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600303{
304 struct bus *link;
305 u32 reg, reg_x;
Marc Jones24484842017-05-04 21:17:45 -0600306
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700307 reg = pci_read_config32(dev, LPC_IO_PORT_DECODE_ENABLE);
308 reg_x = pci_read_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
Marc Jones24484842017-05-04 21:17:45 -0600309
Richard Spiegelaa183852017-10-05 18:53:31 -0700310 for (link = dev->link_list; link; link = link->next) {
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200311 struct device *child;
Marc Jones24484842017-05-04 21:17:45 -0600312 for (child = link->children; child;
313 child = child->sibling) {
314 if (child->enabled
315 && (child->path.type == DEVICE_PATH_PNP)) {
Richard Spiegel7a39e022017-11-09 10:54:04 -0700316 set_child_resource(child,
Richard Spiegelaa183852017-10-05 18:53:31 -0700317 &reg,
Richard Spiegelb5f96452017-11-22 15:28:25 -0700318 &reg_x);
Marc Jones24484842017-05-04 21:17:45 -0600319 }
320 }
321 }
Richard Spiegelc5ecd3e2017-09-29 10:05:35 -0700322 pci_write_config32(dev, LPC_IO_PORT_DECODE_ENABLE, reg);
323 pci_write_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE, reg_x);
Marc Jones24484842017-05-04 21:17:45 -0600324}
325
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200326static void lpc_enable_resources(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600327{
328 pci_dev_enable_resources(dev);
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600329 lpc_enable_childrens_resources(dev);
Marc Jones24484842017-05-04 21:17:45 -0600330}
331
332unsigned long acpi_fill_mcfg(unsigned long current)
333{
334 /* Just a dummy */
335 return current;
336}
337
338static struct pci_operations lops_pci = {
339 .set_subsystem = pci_dev_set_subsystem,
340};
341
342static struct device_operations lpc_ops = {
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600343 .read_resources = lpc_read_resources,
344 .set_resources = lpc_set_resources,
345 .enable_resources = lpc_enable_resources,
Marc Jones257db582017-06-18 17:33:30 -0600346 .acpi_inject_dsdt_generator = southbridge_inject_dsdt,
347 .write_acpi_tables = southbridge_write_acpi_tables,
Marc Jones24484842017-05-04 21:17:45 -0600348 .init = lpc_init,
349 .scan_bus = scan_lpc_bus,
350 .ops_pci = &lops_pci,
351};
352
353static const unsigned short pci_device_ids[] = {
354 PCI_DEVICE_ID_AMD_SB900_LPC,
355 PCI_DEVICE_ID_AMD_CZ_LPC,
356 0
357};
358static const struct pci_driver lpc_driver __pci_driver = {
359 .ops = &lpc_ops,
360 .vendor = PCI_VENDOR_ID_AMD,
361 .devices = pci_device_ids,
362};