blob: df1f093a23c8db23d01b77cb1ce1ebfac9b1a0be [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +03002
Michał Żygowskif3db2ae2019-11-24 13:26:10 +01003#include <amdblocks/acpimmio.h>
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +03004#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>
Kyösti Mälkkif3758b62019-10-08 19:25:57 +030013#include <arch/io.h>
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030014#include <arch/ioapic.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070015#include <acpi/acpi.h>
Dave Frodin8d9a1bd2015-03-31 16:10:58 -060016#include <pc80/i8254.h>
17#include <pc80/i8259.h>
Elyes HAOUASab89edb2019-05-15 21:10:44 +020018#include <types.h>
19
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030020#include "hudson.h"
Philipp Deppenwiese30670122017-03-01 02:24:33 +010021#include "pci_devs.h"
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030022
Elyes HAOUASd9ef5462018-05-19 17:08:23 +020023static void lpc_init(struct device *dev)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030024{
25 u8 byte;
26 u32 dword;
Elyes HAOUASd9ef5462018-05-19 17:08:23 +020027 struct device *sm_dev;
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030028
29 /* Enable the LPC Controller */
Kyösti Mälkki33ff44c2018-05-22 01:15:22 +030030 sm_dev = pcidev_on_root(0x14, 0);
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030031 dword = pci_read_config32(sm_dev, 0x64);
32 dword |= 1 << 20;
33 pci_write_config32(sm_dev, 0x64, dword);
34
35 /* Initialize isa dma */
36 isa_dma_init();
37
38 /* Enable DMA transaction on the LPC bus */
39 byte = pci_read_config8(dev, 0x40);
40 byte |= (1 << 2);
41 pci_write_config8(dev, 0x40, byte);
42
43 /* Disable the timeout mechanism on LPC */
44 byte = pci_read_config8(dev, 0x48);
45 byte &= ~(1 << 7);
46 pci_write_config8(dev, 0x48, byte);
47
48 /* Disable LPC MSI Capability */
49 byte = pci_read_config8(dev, 0x78);
50 byte &= ~(1 << 1);
51 byte &= ~(1 << 0); /* Keep the old way. i.e., when bus master/DMA cycle is going
52 on on LPC, it holds PCI grant, so no LPC slave cycle can
53 interrupt and visit LPC. */
54 pci_write_config8(dev, 0x78, byte);
55
Elyes HAOUAS1bcd7fc2016-07-28 21:20:04 +020056 /* bit0: Enable prefetch a cacheline (64 bytes) when Host reads code from SPI ROM */
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030057 /* bit3: Fix SPI_CS# timing issue when running at 66M. TODO:A12. */
58 byte = pci_read_config8(dev, 0xBB);
59 byte |= 1 << 0 | 1 << 3;
60 pci_write_config8(dev, 0xBB, byte);
61
Gabe Black03abaee212014-04-30 21:31:44 -070062 cmos_check_update_date();
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030063
64 /* Initialize the real time clock.
65 * The 0 argument tells cmos_init not to
66 * update CMOS unless it is invalid.
67 * 1 tells cmos_init to always initialize the CMOS.
68 */
Aaron Durbin9fde0d72017-09-15 11:01:17 -060069 cmos_init(0);
Dave Frodin8d9a1bd2015-03-31 16:10:58 -060070
71 /* Initialize i8259 pic */
72 setup_i8259 ();
73
74 /* Initialize i8254 timers */
75 setup_i8254 ();
Marc Jones3eec9dd2017-04-09 18:00:40 -060076
Paul Menzel4c402292017-04-14 17:23:49 +020077 /* Set up SERIRQ, enable continuous mode */
Marc Jones3eec9dd2017-04-09 18:00:40 -060078 byte = (BIT(4) | BIT(7));
Julius Wernercd49cce2019-03-05 16:53:33 -080079 if (!CONFIG(SERIRQ_CONTINUOUS_MODE))
Marc Jones3eec9dd2017-04-09 18:00:40 -060080 byte |= BIT(6);
81
82 pm_write8(PM_SERIRQ_CONF, byte);
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030083}
84
Elyes HAOUASd9ef5462018-05-19 17:08:23 +020085static void hudson_lpc_read_resources(struct device *dev)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030086{
87 struct resource *res;
88
89 /* Get the normal pci resources of this device */
90 pci_dev_read_resources(dev); /* We got one for APIC, or one more for TRAP */
91
92 /* Add an extra subtractive resource for both memory and I/O. */
93 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
94 res->base = 0;
95 res->size = 0x1000;
96 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
97 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
98
99 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
100 res->base = 0xff800000;
101 res->size = 0x00800000; /* 8 MB for flash */
102 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
103 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
104
105 /* Add a memory resource for the SPI BAR. */
106 fixed_mem_resource(dev, 2, SPI_BASE_ADDRESS / 1024, 1, IORESOURCE_SUBTRACTIVE);
107
108 res = new_resource(dev, 3); /* IOAPIC */
109 res->base = IO_APIC_ADDR;
110 res->size = 0x00001000;
111 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
112
113 compact_resources(dev);
114}
115
116static void hudson_lpc_set_resources(struct device *dev)
117{
118 struct resource *res;
Marc Jones6fcaaef2017-04-20 16:48:42 -0600119 u32 spi_enable_bits;
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300120
Marc Jones6fcaaef2017-04-20 16:48:42 -0600121 /* Special case. The SpiRomEnable and other enables should STAY set. */
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300122 res = find_resource(dev, 2);
Marc Jones6fcaaef2017-04-20 16:48:42 -0600123 spi_enable_bits = pci_read_config32(dev, SPIROM_BASE_ADDRESS_REGISTER);
124 spi_enable_bits &= 0xF;
125 pci_write_config32(dev, SPIROM_BASE_ADDRESS_REGISTER, res->base | spi_enable_bits);
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300126
127 pci_dev_set_resources(dev);
128}
129
130/**
131 * @brief Enable resources for children devices
132 *
Edward O'Callaghan4565aea2015-06-07 19:42:47 +1000133 * @param dev the device whose children's resources are to be enabled
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300134 *
135 */
Elyes HAOUASd9ef5462018-05-19 17:08:23 +0200136static void hudson_lpc_enable_childrens_resources(struct device *dev)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300137{
138 struct bus *link;
139 u32 reg, reg_x;
140 int var_num = 0;
141 u16 reg_var[3];
142 u16 reg_size[1] = {512};
143 u8 wiosize = pci_read_config8(dev, 0x74);
144
145 /* Be bit relaxed, tolerate that LPC region might be bigger than resource we try to fit,
146 * do it like this for all regions < 16 bytes. If there is a resource > 16 bytes
147 * it must be 512 bytes to be able to allocate the fresh LPC window.
148 *
149 * AGESA likes to enable already one LPC region in wide port base 0x64-0x65,
150 * using DFLT_SIO_PME_BASE_ADDRESS, 512 bytes size
151 * The code tries to check if resource can fit into this region
152 */
153
154 reg = pci_read_config32(dev, 0x44);
155 reg_x = pci_read_config32(dev, 0x48);
156
157 /* check if ranges are free and not use them if entry is just already taken */
158 if (reg_x & (1 << 2))
159 var_num = 1;
160 /* just in case check if someone did not manually set other ranges too */
161 if (reg_x & (1 << 24))
162 var_num = 2;
163
164 if (reg_x & (1 << 25))
165 var_num = 3;
166
167 /* check AGESA region size */
168 if (wiosize & (1 << 0))
169 reg_size[0] = 16;
170
171 reg_var[2] = pci_read_config16(dev, 0x90);
172 reg_var[1] = pci_read_config16(dev, 0x66);
173 reg_var[0] = pci_read_config16(dev, 0x64);
174
175 for (link = dev->link_list; link; link = link->next) {
Elyes HAOUASd9ef5462018-05-19 17:08:23 +0200176 struct device *child;
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300177 for (child = link->children; child;
178 child = child->sibling) {
179 if (child->enabled
180 && (child->path.type == DEVICE_PATH_PNP)) {
181 struct resource *res;
182 for (res = child->resource_list; res; res = res->next) {
183 u32 base, end; /* don't need long long */
184 u32 rsize, set = 0, set_x = 0;
185 if (!(res->flags & IORESOURCE_IO))
186 continue;
187 base = res->base;
188 end = resource_end(res);
189 /* find a resource size */
190 printk(BIOS_DEBUG, "hudson lpc decode:%s, base=0x%08x, end=0x%08x\n",
191 dev_path(child), base, end);
192 switch (base) {
193 case 0x60: /* KB */
194 case 0x64: /* MS */
195 set |= (1 << 29);
196 rsize = 1;
197 break;
198 case 0x3f8: /* COM1 */
199 set |= (1 << 6);
200 rsize = 8;
201 break;
202 case 0x2f8: /* COM2 */
203 set |= (1 << 7);
204 rsize = 8;
205 break;
206 case 0x378: /* Parallel 1 */
207 set |= (1 << 0);
208 set |= (1 << 1); /* + 0x778 for ECP */
209 rsize = 8;
210 break;
211 case 0x3f0: /* FD0 */
212 set |= (1 << 26);
213 rsize = 8;
214 break;
215 case 0x220: /* 0x220 - 0x227 */
216 set |= (1 << 8);
217 rsize = 8;
218 break;
219 case 0x228: /* 0x228 - 0x22f */
220 set |= (1 << 9);
221 rsize = 8;
222 break;
223 case 0x238: /* 0x238 - 0x23f */
224 set |= (1 << 10);
225 rsize = 8;
226 break;
227 case 0x300: /* 0x300 -0x301 */
228 set |= (1 << 18);
229 rsize = 2;
230 break;
231 case 0x400:
232 set_x |= (1 << 16);
233 rsize = 0x40;
234 break;
235 case 0x480:
236 set_x |= (1 << 17);
237 rsize = 0x40;
238 break;
239 case 0x500:
240 set_x |= (1 << 18);
241 rsize = 0x40;
242 break;
243 case 0x580:
244 set_x |= (1 << 19);
245 rsize = 0x40;
246 break;
247 case 0x4700:
248 set_x |= (1 << 22);
249 rsize = 0xc;
250 break;
251 case 0xfd60:
252 set_x |= (1 << 23);
253 rsize = 16;
254 break;
255 default:
256 rsize = 0;
257 /* try AGESA allocated region in region 0 */
258 if ((var_num > 0) && ((base >=reg_var[0]) &&
259 ((base + res->size) <= (reg_var[0] + reg_size[0]))))
260 rsize = reg_size[0];
261 }
262 /* check if region found and matches the enable */
263 if (res->size <= rsize) {
264 reg |= set;
265 reg_x |= set_x;
266 /* check if we can fit resource in variable range */
267 } else if ((var_num < 3) &&
268 ((res->size <= 16) || (res->size == 512))) {
269 /* use variable ranges if pre-defined do not match */
270 switch (var_num) {
271 case 0:
272 reg_x |= (1 << 2);
273 if (res->size <= 16) {
274 wiosize |= (1 << 0);
275 }
276 break;
277 case 1:
278 reg_x |= (1 << 24);
279 if (res->size <= 16)
280 wiosize |= (1 << 2);
281 break;
282 case 2:
283 reg_x |= (1 << 25);
284 if (res->size <= 16)
285 wiosize |= (1 << 3);
286 break;
287 }
288 reg_var[var_num++] =
289 base & 0xffff;
290 } else {
291 printk(BIOS_ERR, "cannot fit LPC decode region:%s, base=0x%08x, end=0x%08x\n",
292 dev_path(child), base, end);
293 }
294 }
295 }
296 }
297 }
298 pci_write_config32(dev, 0x44, reg);
299 pci_write_config32(dev, 0x48, reg_x);
300 /* Set WideIO for as many IOs found (fall through is on purpose) */
301 switch (var_num) {
302 case 3:
303 pci_write_config16(dev, 0x90, reg_var[2]);
Arthur Heymansfff20212021-03-15 14:56:16 +0100304 __fallthrough;
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300305 case 2:
306 pci_write_config16(dev, 0x66, reg_var[1]);
Arthur Heymansfff20212021-03-15 14:56:16 +0100307 __fallthrough;
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300308 case 1:
309 pci_write_config16(dev, 0x64, reg_var[0]);
310 break;
311 }
312 pci_write_config8(dev, 0x74, wiosize);
313}
314
Elyes HAOUASd9ef5462018-05-19 17:08:23 +0200315static void hudson_lpc_enable_resources(struct device *dev)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300316{
317 pci_dev_enable_resources(dev);
318 hudson_lpc_enable_childrens_resources(dev);
319}
320
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600321static const char *lpc_acpi_name(const struct device *dev)
Philipp Deppenwiese30670122017-03-01 02:24:33 +0100322{
323 if (dev->path.type != DEVICE_PATH_PCI)
324 return NULL;
325
326 if (dev->path.pci.devfn == LPC_DEVFN)
327 return "LIBR";
328
329 return NULL;
330}
331
Kyösti Mälkkif3758b62019-10-08 19:25:57 +0300332static void lpc_final(struct device *dev)
333{
334 if (!acpi_is_wakeup_s3()) {
335 if (CONFIG(HAVE_SMI_HANDLER))
336 outl(0x0, ACPI_PM1_CNT_BLK); /* clear SCI_EN */
337 else
338 outl(0x1, ACPI_PM1_CNT_BLK); /* set SCI_EN */
339 }
340}
341
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300342static struct device_operations lpc_ops = {
343 .read_resources = hudson_lpc_read_resources,
344 .set_resources = hudson_lpc_set_resources,
345 .enable_resources = hudson_lpc_enable_resources,
Julius Wernercd49cce2019-03-05 16:53:33 -0800346#if CONFIG(HAVE_ACPI_TABLES)
Dave Frodin5c015f02015-01-27 07:19:04 -0700347 .write_acpi_tables = acpi_write_hpet,
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200348#endif
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300349 .init = lpc_init,
Kyösti Mälkkif3758b62019-10-08 19:25:57 +0300350 .final = lpc_final,
Nico Huber51b75ae2019-03-14 16:02:05 +0100351 .scan_bus = scan_static_bus,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200352 .ops_pci = &pci_dev_ops_pci,
Philipp Deppenwiese30670122017-03-01 02:24:33 +0100353 .acpi_name = lpc_acpi_name,
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300354};
WANG Siyuanf2dfef02015-05-20 14:41:01 +0800355
356static const unsigned short pci_device_ids[] = {
Felix Held43cf27d2021-10-27 18:31:16 +0200357 /* PCI device ID is used on all discrete FCHs and Family 16h Models 00h-3Fh */
Felix Singer43b7f412022-03-07 04:34:52 +0100358 PCI_DID_AMD_SB900_LPC,
Felix Held43cf27d2021-10-27 18:31:16 +0200359 /* PCI device ID is used on all integrated FCHs except Family 16h Models 00h-3Fh */
Felix Singer43b7f412022-03-07 04:34:52 +0100360 PCI_DID_AMD_CZ_LPC,
WANG Siyuanf2dfef02015-05-20 14:41:01 +0800361 0
362};
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300363static const struct pci_driver lpc_driver __pci_driver = {
364 .ops = &lpc_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100365 .vendor = PCI_VID_AMD,
WANG Siyuanf2dfef02015-05-20 14:41:01 +0800366 .devices = pci_device_ids,
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +0300367};