soc/intel: Remove blank lines before '}' and after '{'
[coreboot2.git] / src / soc / intel / denverton_ns / systemagent.c
blob6c5149bb9f29755abd3bb5d87265d13ea8db4431
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <cbmem.h>
4 #include <console/console.h>
5 #include <device/mmio.h>
6 #include <device/pci_ops.h>
7 #include <stdint.h>
8 #include <delay.h>
9 #include <device/device.h>
10 #include <device/pci.h>
11 #include <device/pci_ids.h>
12 #include <timer.h>
14 #include <soc/iomap.h>
15 #include <soc/pci_devs.h>
16 #include <soc/ramstage.h>
17 #include <soc/systemagent.h>
18 #include <soc/acpi.h>
20 #define _1ms 1
21 #define WAITING_STEP 100
23 static int get_pcie_bar(struct device *dev, unsigned int index, u32 *base,
24 u32 *len)
26 u32 pciexbar_reg;
28 *base = 0;
29 *len = 0;
31 pciexbar_reg = pci_read_config32(dev, index);
33 if (!(pciexbar_reg & (1 << 0)))
34 return 0;
36 switch ((pciexbar_reg >> 1) & 3) {
37 case 0: /* 256MB */
38 *base = pciexbar_reg &
39 ((1 << 31) | (1 << 30) | (1 << 29) | (1 << 28));
40 *len = 256 * 1024 * 1024;
41 return 1;
42 case 1: /* 128M */
43 *base = pciexbar_reg & ((1 << 31) | (1 << 30) | (1 << 29) |
44 (1 << 28) | (1 << 27));
45 *len = 128 * 1024 * 1024;
46 return 1;
47 case 2: /* 64M */
48 *base = pciexbar_reg & ((1 << 31) | (1 << 30) | (1 << 29) |
49 (1 << 28) | (1 << 27) | (1 << 26));
50 *len = 64 * 1024 * 1024;
51 return 1;
54 return 0;
57 static int get_bar(struct device *dev, unsigned int index, u32 *base, u32 *len)
59 u32 bar;
61 bar = pci_read_config32(dev, index);
63 /* If not enabled don't report it. */
64 if (!(bar & 0x1))
65 return 0;
67 /* Knock down the enable bit. */
68 *base = bar & ~1;
70 return 1;
73 struct fixed_mmio_descriptor {
74 unsigned int index;
75 u32 size;
76 int (*get_resource)(struct device *dev, unsigned int index, u32 *base,
77 u32 *size);
78 const char *description;
81 struct fixed_mmio_descriptor mc_fixed_resources[] = {
82 {PCIEXBAR, 0, get_pcie_bar, "PCIEXBAR"},
83 {MCHBAR, MCH_BASE_SIZE, get_bar, "MCHBAR"},
87 * Add all known fixed MMIO ranges that hang off the host bridge/memory
88 * controller device.
90 static void mc_add_fixed_mmio_resources(struct device *dev)
92 int i;
94 for (i = 0; i < ARRAY_SIZE(mc_fixed_resources); i++) {
95 u32 base;
96 u32 size;
97 struct resource *resource;
98 unsigned int index;
100 size = mc_fixed_resources[i].size;
101 index = mc_fixed_resources[i].index;
102 if (!mc_fixed_resources[i].get_resource(dev, index, &base,
103 &size))
104 continue;
106 resource = new_resource(dev, mc_fixed_resources[i].index);
107 resource->base = base;
108 resource->size = size;
109 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
110 IORESOURCE_STORED | IORESOURCE_RESERVE |
111 IORESOURCE_ASSIGNED;
112 printk(BIOS_DEBUG, "%s: Adding %s @ %x 0x%08lx-0x%08lx.\n",
113 __func__, mc_fixed_resources[i].description, index,
114 (unsigned long)base, (unsigned long)(base + size - 1));
118 struct map_entry {
119 int reg;
120 int is_64_bit;
121 int is_limit;
122 const char *description;
125 static void read_map_entry(struct device *dev, struct map_entry *entry,
126 uint64_t *result)
128 uint64_t value;
129 uint64_t mask;
131 /* All registers are on a 1MiB granularity. */
132 mask = ((1ULL << 20) - 1);
133 mask = ~mask;
135 value = 0;
137 if (entry->is_64_bit) {
138 value = pci_read_config32(dev, entry->reg + 4);
139 value <<= 32;
142 value |= (uint64_t)pci_read_config32(dev, entry->reg);
143 value &= mask;
145 if (entry->is_limit)
146 value |= ~mask;
148 *result = value;
151 #define MAP_ENTRY(reg_, is_64_, is_limit_, desc_) \
153 .reg = reg_, .is_64_bit = is_64_, .is_limit = is_limit_, \
154 .description = desc_, \
157 #define MAP_ENTRY_BASE_64(reg_, desc_) MAP_ENTRY(reg_, 1, 0, desc_)
158 #define MAP_ENTRY_LIMIT_64(reg_, desc_) MAP_ENTRY(reg_, 1, 1, desc_)
159 #define MAP_ENTRY_BASE_32(reg_, desc_) MAP_ENTRY(reg_, 0, 0, desc_)
161 enum {
162 TOUUD_REG,
163 TOLUD_REG,
164 TSEG_REG,
165 /* Must be last. */
166 NUM_MAP_ENTRIES
169 static struct map_entry memory_map[NUM_MAP_ENTRIES] = {
170 [TOUUD_REG] = MAP_ENTRY_BASE_64(TOUUD, "TOUUD"),
171 [TOLUD_REG] = MAP_ENTRY_BASE_32(TOLUD, "TOLUD"),
172 [TSEG_REG] = MAP_ENTRY_BASE_32(TSEGMB, "TSEGMB"),
175 static void mc_read_map_entries(struct device *dev, uint64_t *values)
177 int i;
178 for (i = 0; i < NUM_MAP_ENTRIES; i++)
179 read_map_entry(dev, &memory_map[i], &values[i]);
182 static void mc_report_map_entries(struct device *dev, uint64_t *values)
184 int i;
185 for (i = 0; i < NUM_MAP_ENTRIES; i++) {
186 printk(BIOS_DEBUG, "MC MAP: %s: 0x%llx\n",
187 memory_map[i].description, values[i]);
191 static void mc_add_dram_resources(struct device *dev)
193 unsigned long index;
194 uint64_t mc_values[NUM_MAP_ENTRIES];
196 /* Read in the MAP registers and report their values. */
197 mc_read_map_entries(dev, &mc_values[0]);
198 mc_report_map_entries(dev, &mc_values[0]);
201 * These are the host memory ranges that should be added:
202 * - 0 -> 0xa0000: cacheable
203 * - 0xc0000 -> 0x100000 : reserved
204 * - 0x100000 -> cbmem_top() : cacheable
205 * - cbmem_top() -> TSEG: uncacheable
206 * - TESG -> TOLUD: cacheable with standard MTRRs and reserved
207 * - 4GiB -> TOUUD: cacheable
209 * The default SMRAM space is reserved so that the range doesn't
210 * have to be saved during S3 Resume. Once marked reserved the OS
211 * cannot use the memory. This is a bit of an odd place to reserve
212 * the region, but the CPU devices don't have dev_ops->read_resources()
213 * called on them.
215 * The range 0xa0000 -> 0xc0000 does not have any resources
216 * associated with it to handle legacy VGA memory. If this range
217 * is not omitted the mtrr code will setup the area as cacheable
218 * causing VGA access to not work.
220 * The TSEG region is mapped as cacheable so that one can perform
221 * SMRAM relocation faster. Once the SMRR is enabled the SMRR takes
222 * precedence over the existing MTRRs covering this region.
224 * It should be noted that cacheable entry types need to be added in
225 * order. The reason is that the current MTRR code assumes this and
226 * falls over itself if it isn't.
228 * The resource index starts low and should not meet or exceed
229 * PCI_BASE_ADDRESS_0.
231 index = 0;
234 * 0 - > 0xa0000: RAM
235 * 0xa0000 - 0xbffff: Legacy VGA
236 * 0xc0000 - 0xfffff: RAM
238 ram_range(dev, index++, 0, 0xa0000);
239 mmio_from_to(dev, index++, 0xa0000, 0xc0000);
240 reserved_ram_from_to(dev, index++, 0xc0000, 1 * MiB);
242 /* 0x100000 -> cbmem_top() */
243 ram_from_to(dev, index++, 1 * MiB, (uintptr_t)cbmem_top());
245 /* cbmem_top() -> TSEG */
246 mmio_from_to(dev, index++, (uintptr_t)cbmem_top(), mc_values[TSEG_REG]);
248 /* TSEG -> TOLUD */
249 reserved_ram_from_to(dev, index++, mc_values[TSEG_REG], mc_values[TOLUD_REG]);
251 /* 4GiB -> TOUUD */
252 upper_ram_end(dev, index++, mc_values[TOUUD_REG]);
255 static void systemagent_read_resources(struct device *dev)
257 /* Read standard PCI resources. */
258 pci_dev_read_resources(dev);
260 /* Add all fixed MMIO resources. */
261 mc_add_fixed_mmio_resources(dev);
263 /* Calculate and add DRAM resources. */
264 mc_add_dram_resources(dev);
267 static void systemagent_init(struct device *dev)
269 struct stopwatch sw;
270 void *bios_reset_cpl =
271 (void *)(DEFAULT_MCHBAR + MCH_BAR_BIOS_RESET_CPL);
272 uint32_t reg = read32(bios_reset_cpl);
274 /* Stage0 BIOS Reset Complete (RST_CPL) */
275 reg |= RST_CPL_BIT;
276 write32(bios_reset_cpl, reg);
279 * Poll for bit 8 in same reg (RST_CPL).
280 * We wait here till 1 ms for the bit to get set.
282 stopwatch_init_msecs_expire(&sw, _1ms);
283 while (!(read32(bios_reset_cpl) & PCODE_INIT_DONE)) {
284 if (stopwatch_expired(&sw)) {
285 printk(BIOS_DEBUG, "Failed to set RST_CPL bit\n");
286 return;
288 udelay(WAITING_STEP);
290 printk(BIOS_DEBUG, "Set BIOS_RESET_CPL\n");
293 static struct device_operations systemagent_ops = {
294 .read_resources = systemagent_read_resources,
295 .set_resources = pci_dev_set_resources,
296 .enable_resources = pci_dev_enable_resources,
297 .init = systemagent_init,
298 .ops_pci = &soc_pci_ops,
299 #if CONFIG(HAVE_ACPI_TABLES)
300 .write_acpi_tables = systemagent_write_acpi_tables,
301 #endif
304 /* IDs for System Agent device of Intel Denverton SoC */
305 static const unsigned short systemagent_ids[] = {
306 PCI_DID_INTEL_DNV_SA,
307 PCI_DID_INTEL_DNVAD_SA,
311 static const struct pci_driver systemagent_driver __pci_driver = {
312 .ops = &systemagent_ops,
313 .vendor = PCI_VID_INTEL,
314 .devices = systemagent_ids