blob: f101680228fc34b644e06fe452ded5d7e5a5d4b5 [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
117 /* 0x0 - 0x9ffff */
118 ram_resource(dev, idx++, 0, 0xa0000 / KiB);
119
120 /* 0xa0000 - 0xbffff: legacy VGA */
121 mmio_resource(dev, idx++, 0xa0000 / KiB, 0x20000 / KiB);
122
123 /* 0xc0000 - 0xfffff: Option ROM */
124 reserved_ram_resource(dev, idx++, 0xc0000 / KiB, 0x40000 / KiB);
125
126 /* 1MiB - bottom of DRAM reserved for early coreboot usage */
127 ram_resource(dev, idx++, (1 * MiB) / KiB,
128 (early_reserved_dram_start - (1 * MiB)) / KiB);
129
130 /* DRAM reserved for early coreboot usage */
131 reserved_ram_resource(dev, idx++, early_reserved_dram_start / KiB,
132 (early_reserved_dram_end - early_reserved_dram_start) / KiB);
133
134 /*
135 * top of DRAM consumed early - low top usable RAM
136 * cbmem_top() accounts for low UMA and TSEG if they are used.
137 */
138 ram_resource(dev, idx++, early_reserved_dram_end / KiB,
139 (mem_usable - early_reserved_dram_end) / KiB);
140
141 mmconf_resource(dev, MMIO_CONF_BASE);
142
143 if (!hob) {
144 printk(BIOS_ERR, "Error: %s incomplete because no HOB list was found\n",
145 __func__);
146 return;
147 }
148
149 for (; hob->type != HOB_TYPE_END_OF_HOB_LIST; hob = fsp_next_hob(hob)) {
150
151 if (hob->type != HOB_TYPE_RESOURCE_DESCRIPTOR)
152 continue;
153
154 res = fsp_hob_header_to_resource(hob);
155
156 if (res->type == EFI_RESOURCE_SYSTEM_MEMORY && res->addr < mem_usable)
157 continue; /* 0 through low usable was set above */
158 if (res->type == EFI_RESOURCE_MEMORY_MAPPED_IO)
159 continue; /* Done separately */
160
161 if (res->type == EFI_RESOURCE_SYSTEM_MEMORY)
162 ram_resource(dev, idx++, res->addr / KiB, res->length / KiB);
163 else if (res->type == EFI_RESOURCE_MEMORY_RESERVED)
164 reserved_ram_resource(dev, idx++, res->addr / KiB, res->length / KiB);
165 else
166 printk(BIOS_ERR, "Error: failed to set resources for type %d\n",
167 res->type);
168 }
Felix Held1ed5a632021-05-04 21:51:43 +0200169
170 /* GNB IOAPIC resource */
171 gnb_apic = new_resource(dev, GNB_IO_APIC_ADDR);
172 gnb_apic->base = GNB_IO_APIC_ADDR;
173 gnb_apic->size = 0x00001000;
174 gnb_apic->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
175}
176
177static void root_complex_init(struct device *dev)
178{
179 setup_ioapic((u8 *)GNB_IO_APIC_ADDR, GNB_IOAPIC_ID);
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700180}
181
Felix Helddd882f32021-05-12 01:23:50 +0200182static void acipgen_dptci(void)
183{
184 const struct soc_amd_cezanne_config *config = config_of_soc();
185
186 if (!config->dptc_enable)
187 return;
188
189 struct dptc_input default_input = DPTC_INPUTS(config->thermctl_limit_degreeC,
190 config->sustained_power_limit_mW,
191 config->fast_ppt_limit_mW,
192 config->slow_ppt_limit_mW);
193 struct dptc_input tablet_mode_input = DPTC_INPUTS(
194 config->thermctl_limit_tablet_mode_degreeC,
195 config->sustained_power_limit_tablet_mode_mW,
196 config->fast_ppt_limit_tablet_mode_mW,
197 config->slow_ppt_limit_tablet_mode_mW);
Felix Helddd882f32021-05-12 01:23:50 +0200198
Felix Held2d0bf342021-05-12 01:42:37 +0200199 acpigen_write_alib_dptc((uint8_t *)&default_input, sizeof(default_input),
200 (uint8_t *)&tablet_mode_input, sizeof(tablet_mode_input));
Felix Helddd882f32021-05-12 01:23:50 +0200201}
202
Raul E Rangel0b123dd2021-02-12 15:13:57 -0700203static void root_complex_fill_ssdt(const struct device *device)
204{
205 acpi_fill_root_complex_tom(device);
Felix Helddd882f32021-05-12 01:23:50 +0200206 acipgen_dptci();
Raul E Rangel0b123dd2021-02-12 15:13:57 -0700207}
208
Felix Heldb28401302021-02-17 00:05:34 +0100209static const char *gnb_acpi_name(const struct device *dev)
210{
211 return "GNB";
212}
213
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700214static struct device_operations root_complex_operations = {
215 .read_resources = read_resources,
216 .set_resources = noop_set_resources,
217 .enable_resources = pci_dev_enable_resources,
Felix Held1ed5a632021-05-04 21:51:43 +0200218 .init = root_complex_init,
Felix Heldb28401302021-02-17 00:05:34 +0100219 .acpi_name = gnb_acpi_name,
Raul E Rangel0b123dd2021-02-12 15:13:57 -0700220 .acpi_fill_ssdt = root_complex_fill_ssdt,
Raul E Rangelcf6dc7d2021-02-05 16:00:41 -0700221};
222
223static const struct pci_driver family17_root_complex __pci_driver = {
224 .ops = &root_complex_operations,
225 .vendor = PCI_VENDOR_ID_AMD,
226 .device = PCI_DEVICE_ID_AMD_17H_MODEL_606F_NB,
227};