blob: ccf1c45fcdc43b82f436c91c79bf443ed84f791d [file] [log] [blame]
Marshall Dawsoneb724872019-07-16 15:46:35 -06001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <acpi/acpigen.h>
Raul E Rangel58a8ad12021-02-18 16:36:08 -07004#include <amdblocks/acpi.h>
Felix Held95f1bb82021-05-07 18:46:36 +02005#include <amdblocks/alib.h>
Raul E Rangel899be1b2021-02-05 15:50:20 -07006#include <amdblocks/memmap.h>
Felix Held604ffa62021-02-12 00:43:20 +01007#include <amdblocks/ioapic.h>
Felix Heldf9608cd2020-12-03 16:57:02 +01008#include <arch/ioapic.h>
John Zhaof6f1f732020-06-26 10:00:02 -07009#include <assert.h>
Marshall Dawsoneb724872019-07-16 15:46:35 -060010#include <cbmem.h>
11#include <console/console.h>
12#include <cpu/amd/msr.h>
Marshall Dawsoneb724872019-07-16 15:46:35 -060013#include <device/device.h>
14#include <device/pci.h>
15#include <device/pci_ids.h>
16#include <fsp/util.h>
17#include <stdint.h>
Marshall Dawson39c64b02020-09-04 12:07:27 -060018#include <soc/iomap.h>
Chris Wang4735b1c2020-07-13 23:29:29 +080019#include "chip.h"
Marshall Dawsoneb724872019-07-16 15:46:35 -060020
Felix Heldef511572021-05-07 19:02:45 +020021#define DPTC_TOTAL_UPDATE_PARAMS 4
22
Chris Wang4735b1c2020-07-13 23:29:29 +080023struct dptc_input {
24 uint16_t size;
Felix Heldf0610172021-05-07 19:21:08 +020025 struct alib_dptc_param params[DPTC_TOTAL_UPDATE_PARAMS];
Chris Wang4735b1c2020-07-13 23:29:29 +080026} __packed;
27
Kevin Chiucdd9f5c2020-09-18 17:30:30 +080028#define DPTC_INPUTS(_thermctllmit, _sustained, _fast, _slow) \
Felix Held3acafa22021-05-07 19:17:51 +020029 { \
30 .size = sizeof(struct dptc_input), \
31 .params = { \
32 { \
33 .id = ALIB_DPTC_THERMAL_CONTROL_LIMIT_ID, \
34 .value = _thermctllmit, \
Chris Wang4735b1c2020-07-13 23:29:29 +080035 }, \
Felix Held3acafa22021-05-07 19:17:51 +020036 { \
37 .id = ALIB_DPTC_SUSTAINED_POWER_LIMIT_ID, \
38 .value = _sustained, \
39 }, \
40 { \
41 .id = ALIB_DPTC_FAST_PPT_LIMIT_ID, \
42 .value = _fast, \
43 }, \
44 { \
45 .id = ALIB_DPTC_SLOW_PPT_LIMIT_ID, \
46 .value = _slow, \
47 }, \
48 }, \
49 }
Furquan Shaikhbc456502020-06-10 16:37:23 -070050/*
51 *
52 * +--------------------------------+
53 * | |
54 * | |
55 * | |
56 * | |
57 * | |
58 * | |
59 * | |
60 * reserved_dram_end +--------------------------------+
61 * | |
62 * | verstage (if reqd) |
63 * | (VERSTAGE_SIZE) |
64 * +--------------------------------+ VERSTAGE_ADDR
65 * | |
66 * | FSP-M |
67 * | (FSP_M_SIZE) |
68 * +--------------------------------+ FSP_M_ADDR
Furquan Shaikhbc456502020-06-10 16:37:23 -070069 * | romstage |
70 * | (ROMSTAGE_SIZE) |
Kyösti Mälkkib3621f82020-12-04 19:51:17 +020071 * +--------------------------------+ ROMSTAGE_ADDR = BOOTBLOCK_END
72 * | | X86_RESET_VECTOR = BOOTBLOCK_END - 0x10
Furquan Shaikhbc456502020-06-10 16:37:23 -070073 * | bootblock |
74 * | (C_ENV_BOOTBLOCK_SIZE) |
Kyösti Mälkkib3621f82020-12-04 19:51:17 +020075 * +--------------------------------+ BOOTBLOCK_ADDR = BOOTBLOCK_END - C_ENV_BOOTBLOCK_SIZE
Furquan Shaikhbc456502020-06-10 16:37:23 -070076 * | Unused hole |
77 * | (86KiB) |
78 * +--------------------------------+
79 * | FMAP cache (FMAP_SIZE) |
80 * +--------------------------------+ PSP_SHAREDMEM_BASE + PSP_SHAREDMEM_SIZE + PRERAM_CBMEM_CONSOLE_SIZE + 0x200
81 * | Early Timestamp region (512B) |
82 * +--------------------------------+ PSP_SHAREDMEM_BASE + PSP_SHAREDMEM_SIZE + PRERAM_CBMEM_CONSOLE_SIZE
83 * | Preram CBMEM console |
84 * | (PRERAM_CBMEM_CONSOLE_SIZE) |
85 * +--------------------------------+ PSP_SHAREDMEM_BASE + PSP_SHAREDMEM_SIZE
86 * | PSP shared (vboot workbuf) |
87 * | (PSP_SHAREDMEM_SIZE) |
88 * +--------------------------------+ PSP_SHAREDMEM_BASE
89 * | APOB (64KiB) |
90 * +--------------------------------+ PSP_APOB_DRAM_ADDRESS
91 * | Early BSP stack |
92 * | (EARLYRAM_BSP_STACK_SIZE) |
93 * reserved_dram_start +--------------------------------+ EARLY_RESERVED_DRAM_BASE
94 * | DRAM |
95 * +--------------------------------+ 0x100000
96 * | Option ROM |
97 * +--------------------------------+ 0xc0000
98 * | Legacy VGA |
99 * +--------------------------------+ 0xa0000
100 * | DRAM |
101 * +--------------------------------+ 0x0
102 */
Marshall Dawsoneb724872019-07-16 15:46:35 -0600103static void read_resources(struct device *dev)
104{
105 uint32_t mem_usable = (uintptr_t)cbmem_top();
106 unsigned int idx = 0;
107 const struct hob_header *hob = fsp_get_hob_list();
108 const struct hob_resource *res;
Marshall Dawson39c64b02020-09-04 12:07:27 -0600109 struct resource *gnb_apic;
Marshall Dawsoneb724872019-07-16 15:46:35 -0600110
Furquan Shaikhbc456502020-06-10 16:37:23 -0700111 uintptr_t early_reserved_dram_start, early_reserved_dram_end;
112 const struct memmap_early_dram *e = memmap_get_early_dram_usage();
113
114 early_reserved_dram_start = e->base;
115 early_reserved_dram_end = e->base + e->size;
116
Felix Heldaf17f0b2022-03-02 23:36:55 +0100117 /* The root complex has no PCI BARs implemented, so there's no need to call
118 pci_dev_read_resources for it */
119
Marshall Dawsoneb724872019-07-16 15:46:35 -0600120 /* 0x0 - 0x9ffff */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300121 ram_resource_kb(dev, idx++, 0, 0xa0000 / KiB);
Marshall Dawsoneb724872019-07-16 15:46:35 -0600122
123 /* 0xa0000 - 0xbffff: legacy VGA */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300124 mmio_resource_kb(dev, idx++, 0xa0000 / KiB, 0x20000 / KiB);
Marshall Dawsoneb724872019-07-16 15:46:35 -0600125
126 /* 0xc0000 - 0xfffff: Option ROM */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300127 reserved_ram_resource_kb(dev, idx++, 0xc0000 / KiB, 0x40000 / KiB);
Marshall Dawsoneb724872019-07-16 15:46:35 -0600128
Furquan Shaikhbc456502020-06-10 16:37:23 -0700129 /* 1MB - bottom of DRAM reserved for early coreboot usage */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300130 ram_resource_kb(dev, idx++, (1 * MiB) / KiB,
Furquan Shaikhbc456502020-06-10 16:37:23 -0700131 (early_reserved_dram_start - (1 * MiB)) / KiB);
132
133 /* DRAM reserved for early coreboot usage */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300134 reserved_ram_resource_kb(dev, idx++, early_reserved_dram_start / KiB,
Furquan Shaikhbc456502020-06-10 16:37:23 -0700135 (early_reserved_dram_end - early_reserved_dram_start) / KiB);
136
137 /* top of DRAM consumed early - low top usable RAM
138 * cbmem_top() accounts for low UMA and TSEG if they are used. */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300139 ram_resource_kb(dev, idx++, early_reserved_dram_end / KiB,
Furquan Shaikhbc456502020-06-10 16:37:23 -0700140 (mem_usable - early_reserved_dram_end) / KiB);
Marshall Dawsoneb724872019-07-16 15:46:35 -0600141
Felix Held56b037b2022-03-02 22:57:01 +0100142 mmconf_resource(dev, idx++);
Marshall Dawsoneb724872019-07-16 15:46:35 -0600143
144 if (!hob) {
Julius Wernere9665952022-01-21 17:06:20 -0800145 printk(BIOS_ERR, "%s incomplete because no HOB list was found\n",
Marshall Dawsoneb724872019-07-16 15:46:35 -0600146 __func__);
147 return;
148 }
149
150 for (; hob->type != HOB_TYPE_END_OF_HOB_LIST; hob = fsp_next_hob(hob)) {
151
152 if (hob->type != HOB_TYPE_RESOURCE_DESCRIPTOR)
153 continue;
154
155 res = fsp_hob_header_to_resource(hob);
156
157 if (res->type == EFI_RESOURCE_SYSTEM_MEMORY && res->addr < mem_usable)
158 continue; /* 0 through low usable was set above */
159 if (res->type == EFI_RESOURCE_MEMORY_MAPPED_IO)
160 continue; /* Done separately */
161
162 if (res->type == EFI_RESOURCE_SYSTEM_MEMORY)
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300163 ram_resource_kb(dev, idx++, res->addr / KiB, res->length / KiB);
Marshall Dawsoneb724872019-07-16 15:46:35 -0600164 else if (res->type == EFI_RESOURCE_MEMORY_RESERVED)
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300165 reserved_ram_resource_kb(dev, idx++, res->addr / KiB, res->length / KiB);
Marshall Dawsoneb724872019-07-16 15:46:35 -0600166 else
Julius Wernere9665952022-01-21 17:06:20 -0800167 printk(BIOS_ERR, "failed to set resources for type %d\n",
Marshall Dawsoneb724872019-07-16 15:46:35 -0600168 res->type);
169 }
Marshall Dawson39c64b02020-09-04 12:07:27 -0600170
171 /* GNB IOAPIC resource */
Felix Heldb1197af2022-03-02 23:02:31 +0100172 gnb_apic = new_resource(dev, idx++);
Marshall Dawson39c64b02020-09-04 12:07:27 -0600173 gnb_apic->base = GNB_IO_APIC_ADDR;
174 gnb_apic->size = 0x00001000;
175 gnb_apic->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Marshall Dawsoneb724872019-07-16 15:46:35 -0600176}
177
Felix Heldf9608cd2020-12-03 16:57:02 +0100178static void root_complex_init(struct device *dev)
179{
Felix Held604ffa62021-02-12 00:43:20 +0100180 setup_ioapic((u8 *)GNB_IO_APIC_ADDR, GNB_IOAPIC_ID);
Felix Heldf9608cd2020-12-03 16:57:02 +0100181}
182
Chris Wang4735b1c2020-07-13 23:29:29 +0800183static void acipgen_dptci(void)
184{
Felix Held507fc032020-12-05 01:55:27 +0100185 const struct soc_amd_picasso_config *config = config_of_soc();
Chris Wang4735b1c2020-07-13 23:29:29 +0800186
187 if (!config->dptc_enable)
188 return;
189
Zheng Bao795d73c2020-10-27 15:36:55 +0800190 struct dptc_input default_input = DPTC_INPUTS(config->thermctl_limit_degreeC,
191 config->sustained_power_limit_mW,
192 config->fast_ppt_limit_mW,
193 config->slow_ppt_limit_mW);
Chris Wang4735b1c2020-07-13 23:29:29 +0800194 struct dptc_input tablet_mode_input = DPTC_INPUTS(
Zheng Bao795d73c2020-10-27 15:36:55 +0800195 config->thermctl_limit_tablet_mode_degreeC,
196 config->sustained_power_limit_tablet_mode_mW,
197 config->fast_ppt_limit_tablet_mode_mW,
198 config->slow_ppt_limit_tablet_mode_mW);
Chris Wang4735b1c2020-07-13 23:29:29 +0800199
Felix Held2d0bf342021-05-12 01:42:37 +0200200 acpigen_write_alib_dptc((uint8_t *)&default_input, sizeof(default_input),
201 (uint8_t *)&tablet_mode_input, sizeof(tablet_mode_input));
Chris Wang4735b1c2020-07-13 23:29:29 +0800202}
203
Marshall Dawsoneb724872019-07-16 15:46:35 -0600204static void root_complex_fill_ssdt(const struct device *device)
205{
Raul E Rangel58a8ad12021-02-18 16:36:08 -0700206 acpi_fill_root_complex_tom(device);
Chris Wang4735b1c2020-07-13 23:29:29 +0800207 acipgen_dptci();
Marshall Dawsoneb724872019-07-16 15:46:35 -0600208}
209
Felix Heldff092d42021-02-17 00:04:59 +0100210static const char *gnb_acpi_name(const struct device *dev)
211{
212 return "GNB";
213}
214
Marshall Dawsoneb724872019-07-16 15:46:35 -0600215static struct device_operations root_complex_operations = {
216 .read_resources = read_resources,
Felix Held9541d172021-01-05 00:56:10 +0100217 .set_resources = noop_set_resources,
Marshall Dawsoneb724872019-07-16 15:46:35 -0600218 .enable_resources = pci_dev_enable_resources,
Felix Heldf9608cd2020-12-03 16:57:02 +0100219 .init = root_complex_init,
Felix Heldff092d42021-02-17 00:04:59 +0100220 .acpi_name = gnb_acpi_name,
Marshall Dawsoneb724872019-07-16 15:46:35 -0600221 .acpi_fill_ssdt = root_complex_fill_ssdt,
222};
223
224static const struct pci_driver family17_root_complex __pci_driver = {
225 .ops = &root_complex_operations,
Felix Singer43b7f412022-03-07 04:34:52 +0100226 .vendor = PCI_VID_AMD,
227 .device = PCI_DID_AMD_17H_MODEL_101F_NB,
Marshall Dawsoneb724872019-07-16 15:46:35 -0600228};