blob: 075f1a1f7653f024d3f46df3f185280ec5c3143d [file] [log] [blame]
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -07001/* SPDX-License-Identifier: GPL-2.0-only */
2
Felix Helddd882f32021-05-12 01:23:50 +02003#include <acpi/acpigen.h>
Raul E Rangel0b123dd2021-02-12 15:13:57 -07004#include <amdblocks/acpi.h>
Felix Helddd882f32021-05-12 01:23:50 +02005#include <amdblocks/alib.h>
Felix Held1ed5a632021-05-04 21:51:43 +02006#include <amdblocks/ioapic.h>
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -07007#include <amdblocks/memmap.h>
Felix Held1ed5a632021-05-04 21:51:43 +02008#include <arch/ioapic.h>
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -07009#include <cbmem.h>
10#include <console/console.h>
11#include <cpu/amd/msr.h>
12#include <device/device.h>
13#include <device/pci.h>
14#include <device/pci_ids.h>
15#include <fsp/util.h>
Felix Held1ed5a632021-05-04 21:51:43 +020016#include <soc/iomap.h>
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -070017#include <stdint.h>
Felix Helddd882f32021-05-12 01:23:50 +020018#include "chip.h"
19
20#define DPTC_TOTAL_UPDATE_PARAMS 4
21
22struct dptc_input {
23 uint16_t size;
24 struct alib_dptc_param params[DPTC_TOTAL_UPDATE_PARAMS];
25} __packed;
26
27#define DPTC_INPUTS(_thermctllmit, _sustained, _fast, _slow) \
28 { \
29 .size = sizeof(struct dptc_input), \
30 .params = { \
31 { \
32 .id = ALIB_DPTC_THERMAL_CONTROL_LIMIT_ID, \
33 .value = _thermctllmit, \
34 }, \
35 { \
36 .id = ALIB_DPTC_SUSTAINED_POWER_LIMIT_ID, \
37 .value = _sustained, \
38 }, \
39 { \
40 .id = ALIB_DPTC_FAST_PPT_LIMIT_ID, \
41 .value = _fast, \
42 }, \
43 { \
44 .id = ALIB_DPTC_SLOW_PPT_LIMIT_ID, \
45 .value = _slow, \
46 }, \
47 }, \
48 }
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -070049
50/*
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
69 * | romstage |
70 * | (ROMSTAGE_SIZE) |
71 * +--------------------------------+ ROMSTAGE_ADDR = BOOTBLOCK_END
72 * | | X86_RESET_VECTOR = BOOTBLOCK_END - 0x10
73 * | bootblock |
74 * | (C_ENV_BOOTBLOCK_SIZE) |
75 * +--------------------------------+ BOOTBLOCK_ADDR = BOOTBLOCK_END - C_ENV_BOOTBLOCK_SIZE
76 * | 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 */
103static 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;
Felix Held1ed5a632021-05-04 21:51:43 +0200109 struct resource *gnb_apic;
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700110
111 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
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700120 /* 0x0 - 0x9ffff */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300121 ram_resource_kb(dev, idx++, 0, 0xa0000 / KiB);
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700122
123 /* 0xa0000 - 0xbffff: legacy VGA */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300124 mmio_resource_kb(dev, idx++, 0xa0000 / KiB, 0x20000 / KiB);
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700125
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);
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700128
129 /* 1MiB - 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,
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -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,
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700135 (early_reserved_dram_end - early_reserved_dram_start) / KiB);
136
137 /*
138 * top of DRAM consumed early - low top usable RAM
139 * cbmem_top() accounts for low UMA and TSEG if they are used.
140 */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300141 ram_resource_kb(dev, idx++, early_reserved_dram_end / KiB,
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700142 (mem_usable - early_reserved_dram_end) / KiB);
143
Felix Held56b037b2022-03-02 22:57:01 +0100144 mmconf_resource(dev, idx++);
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700145
146 if (!hob) {
Julius Wernere9665952022-01-21 17:06:20 -0800147 printk(BIOS_ERR, "%s incomplete because no HOB list was found\n",
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700148 __func__);
149 return;
150 }
151
152 for (; hob->type != HOB_TYPE_END_OF_HOB_LIST; hob = fsp_next_hob(hob)) {
153
154 if (hob->type != HOB_TYPE_RESOURCE_DESCRIPTOR)
155 continue;
156
157 res = fsp_hob_header_to_resource(hob);
158
159 if (res->type == EFI_RESOURCE_SYSTEM_MEMORY && res->addr < mem_usable)
160 continue; /* 0 through low usable was set above */
161 if (res->type == EFI_RESOURCE_MEMORY_MAPPED_IO)
162 continue; /* Done separately */
163
164 if (res->type == EFI_RESOURCE_SYSTEM_MEMORY)
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300165 ram_resource_kb(dev, idx++, res->addr / KiB, res->length / KiB);
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700166 else if (res->type == EFI_RESOURCE_MEMORY_RESERVED)
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300167 reserved_ram_resource_kb(dev, idx++, res->addr / KiB, res->length / KiB);
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700168 else
Julius Wernere9665952022-01-21 17:06:20 -0800169 printk(BIOS_ERR, "failed to set resources for type %d\n",
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700170 res->type);
171 }
Felix Held1ed5a632021-05-04 21:51:43 +0200172
173 /* GNB IOAPIC resource */
Felix Heldb1197af2022-03-02 23:02:31 +0100174 gnb_apic = new_resource(dev, idx++);
Felix Held1ed5a632021-05-04 21:51:43 +0200175 gnb_apic->base = GNB_IO_APIC_ADDR;
176 gnb_apic->size = 0x00001000;
177 gnb_apic->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
178}
179
180static void root_complex_init(struct device *dev)
181{
182 setup_ioapic((u8 *)GNB_IO_APIC_ADDR, GNB_IOAPIC_ID);
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700183}
184
Felix Helddd882f32021-05-12 01:23:50 +0200185static void acipgen_dptci(void)
186{
187 const struct soc_amd_cezanne_config *config = config_of_soc();
188
189 if (!config->dptc_enable)
190 return;
191
192 struct dptc_input default_input = DPTC_INPUTS(config->thermctl_limit_degreeC,
193 config->sustained_power_limit_mW,
194 config->fast_ppt_limit_mW,
195 config->slow_ppt_limit_mW);
196 struct dptc_input tablet_mode_input = DPTC_INPUTS(
197 config->thermctl_limit_tablet_mode_degreeC,
198 config->sustained_power_limit_tablet_mode_mW,
199 config->fast_ppt_limit_tablet_mode_mW,
200 config->slow_ppt_limit_tablet_mode_mW);
Felix Helddd882f32021-05-12 01:23:50 +0200201
Felix Held2d0bf342021-05-12 01:42:37 +0200202 acpigen_write_alib_dptc((uint8_t *)&default_input, sizeof(default_input),
203 (uint8_t *)&tablet_mode_input, sizeof(tablet_mode_input));
Felix Helddd882f32021-05-12 01:23:50 +0200204}
205
Raul E Rangel0b123dd2021-02-12 15:13:57 -0700206static void root_complex_fill_ssdt(const struct device *device)
207{
208 acpi_fill_root_complex_tom(device);
Felix Helddd882f32021-05-12 01:23:50 +0200209 acipgen_dptci();
Raul E Rangel0b123dd2021-02-12 15:13:57 -0700210}
211
Felix Heldb28401302021-02-17 00:05:34 +0100212static const char *gnb_acpi_name(const struct device *dev)
213{
214 return "GNB";
215}
216
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700217static struct device_operations root_complex_operations = {
218 .read_resources = read_resources,
219 .set_resources = noop_set_resources,
220 .enable_resources = pci_dev_enable_resources,
Felix Held1ed5a632021-05-04 21:51:43 +0200221 .init = root_complex_init,
Felix Heldb28401302021-02-17 00:05:34 +0100222 .acpi_name = gnb_acpi_name,
Raul E Rangel0b123dd2021-02-12 15:13:57 -0700223 .acpi_fill_ssdt = root_complex_fill_ssdt,
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700224};
225
226static const struct pci_driver family17_root_complex __pci_driver = {
227 .ops = &root_complex_operations,
Felix Singer43b7f412022-03-07 04:34:52 +0100228 .vendor = PCI_VID_AMD,
229 .device = PCI_DID_AMD_17H_MODEL_606F_NB,
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700230};