blob: 0a56d18e73cc20723d0291ca22afed1dbfe8f967 [file] [log] [blame]
Frank Vibrans39fca802011-02-14 18:35:15 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Frank Vibrans39fca802011-02-14 18:35:15 +000014 */
15
16#include <console/console.h>
17#include <arch/io.h>
Kyösti Mälkki8ae16a42014-06-19 20:44:34 +030018#include <arch/acpi.h>
Kyösti Mälkki68a83df2014-11-26 09:51:14 +020019#include <arch/acpigen.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000020#include <stdint.h>
21#include <device/device.h>
22#include <device/pci.h>
23#include <device/pci_ids.h>
24#include <device/hypertransport.h>
25#include <stdlib.h>
26#include <string.h>
Ronald G. Minnich5079a0d2012-11-27 11:32:38 -080027#include <lib.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000028#include <cpu/cpu.h>
Marc Jones5750ed22012-03-15 13:21:41 -060029#include <cbmem.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000030#include <cpu/x86/lapic.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020031#include <cpu/amd/msr.h>
Kyösti Mälkki55fff9302012-07-11 08:02:39 +030032#include <cpu/amd/mtrr.h>
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020033#include <northbridge/amd/agesa/state_machine.h>
Kyösti Mälkkid610c582017-03-05 06:28:18 +020034#include <northbridge/amd/agesa/agesa_helper.h>
Kerry Shefeed3292011-08-18 18:03:44 +080035#include <sb_cimx.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000036
Frank Vibrans39fca802011-02-14 18:35:15 +000037#define FX_DEVS 1
38
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030039static struct device *__f0_dev[FX_DEVS];
40static struct device *__f1_dev[FX_DEVS];
41static struct device *__f2_dev[FX_DEVS];
42static struct device *__f4_dev[FX_DEVS];
Marc Jones8d595692012-03-15 12:55:26 -060043static unsigned fx_devs = 0;
Frank Vibrans39fca802011-02-14 18:35:15 +000044
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030045static struct device *get_node_pci(u32 nodeid, u32 fn)
Frank Vibrans39fca802011-02-14 18:35:15 +000046{
Kyösti Mälkki113f6702018-05-20 20:12:32 +030047 return dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB + nodeid, fn));
Frank Vibrans39fca802011-02-14 18:35:15 +000048}
49
Frank Vibrans39fca802011-02-14 18:35:15 +000050static void get_fx_devs(void)
51{
Marc Jones8d595692012-03-15 12:55:26 -060052 int i;
53 for (i = 0; i < FX_DEVS; i++) {
54 __f0_dev[i] = get_node_pci(i, 0);
55 __f1_dev[i] = get_node_pci(i, 1);
56 __f2_dev[i] = get_node_pci(i, 2);
57 __f4_dev[i] = get_node_pci(i, 4);
58 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
59 fx_devs = i + 1;
60 }
61 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
62 die("Cannot find 0:0x18.[0|1]\n");
63 }
Frank Vibrans39fca802011-02-14 18:35:15 +000064}
65
Frank Vibrans39fca802011-02-14 18:35:15 +000066static u32 f1_read_config32(unsigned reg)
67{
Marc Jones8d595692012-03-15 12:55:26 -060068 if (fx_devs == 0)
69 get_fx_devs();
70 return pci_read_config32(__f1_dev[0], reg);
Frank Vibrans39fca802011-02-14 18:35:15 +000071}
72
Frank Vibrans39fca802011-02-14 18:35:15 +000073static void f1_write_config32(unsigned reg, u32 value)
74{
Marc Jones8d595692012-03-15 12:55:26 -060075 int i;
76 if (fx_devs == 0)
77 get_fx_devs();
78 for (i = 0; i < fx_devs; i++) {
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +020079 struct device *dev;
Marc Jones8d595692012-03-15 12:55:26 -060080 dev = __f1_dev[i];
81 if (dev && dev->enabled) {
82 pci_write_config32(dev, reg, value);
83 }
84 }
Frank Vibrans39fca802011-02-14 18:35:15 +000085}
86
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +020087static u32 amdfam14_nodeid(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +000088{
Marc Jones8d595692012-03-15 12:55:26 -060089 return (dev->path.pci.devfn >> 3) - CONFIG_CDB;
Frank Vibrans39fca802011-02-14 18:35:15 +000090}
91
Frank Vibrans39fca802011-02-14 18:35:15 +000092#include "amdfam14_conf.c"
93
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +020094static void northbridge_init(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +000095{
Marc Jones8d595692012-03-15 12:55:26 -060096 printk(BIOS_DEBUG, "Northbridge init\n");
Frank Vibrans39fca802011-02-14 18:35:15 +000097}
98
Frank Vibrans39fca802011-02-14 18:35:15 +000099static void set_vga_enable_reg(u32 nodeid, u32 linkn)
100{
Marc Jones8d595692012-03-15 12:55:26 -0600101 u32 val;
Frank Vibrans39fca802011-02-14 18:35:15 +0000102
Marc Jones8d595692012-03-15 12:55:26 -0600103 val = 1 | (nodeid << 4) | (linkn << 12);
104 /* it will routing (1)mmio 0xa0000:0xbffff (2) io 0x3b0:0x3bb,
105 0x3c0:0x3df */
106 f1_write_config32(0xf4, val);
Frank Vibrans39fca802011-02-14 18:35:15 +0000107
108}
109
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200110static int reg_useable(unsigned reg, struct device *goal_dev,
111 unsigned goal_nodeid, unsigned goal_link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000112{
Marc Jones8d595692012-03-15 12:55:26 -0600113 struct resource *res;
114 unsigned nodeid, link = 0;
115 int result;
116 res = 0;
117 for (nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200118 struct device *dev;
Marc Jones8d595692012-03-15 12:55:26 -0600119 dev = __f0_dev[nodeid];
120 if (!dev)
121 continue;
122 for (link = 0; !res && (link < 8); link++) {
123 res = probe_resource(dev, IOINDEX(0x1000 + reg, link));
124 }
125 }
126 result = 2;
127 if (res) {
128 result = 0;
129 if ((goal_link == (link - 1)) &&
130 (goal_nodeid == (nodeid - 1)) && (res->flags <= 1)) {
131 result = 1;
132 }
133 }
134 return result;
Frank Vibrans39fca802011-02-14 18:35:15 +0000135}
136
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200137static struct resource *amdfam14_find_iopair(struct device *dev,
138 unsigned nodeid, unsigned link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000139{
Marc Jones8d595692012-03-15 12:55:26 -0600140 struct resource *resource;
141 u32 result, reg;
142 resource = 0;
143 reg = 0;
144 result = reg_useable(0xc0, dev, nodeid, link);
145 if (result >= 1) {
146 /* I have been allocated this one */
147 reg = 0xc0;
148 }
149 /* Ext conf space */
150 if (!reg) {
151 /* Because of Extend conf space, we will never run out of reg,
Elyes HAOUASa342f392018-10-17 10:56:26 +0200152 * but we need one index to differ them. So,same node and same
Marc Jones8d595692012-03-15 12:55:26 -0600153 * link can have multi range
154 */
155 u32 index = get_io_addr_index(nodeid, link);
156 reg = 0x110 + (index << 24) + (4 << 20); // index could be 0, 255
157 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000158
Marc Jones8d595692012-03-15 12:55:26 -0600159 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
Frank Vibrans39fca802011-02-14 18:35:15 +0000160
Marc Jones8d595692012-03-15 12:55:26 -0600161 return resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000162}
163
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200164static struct resource *amdfam14_find_mempair(struct device *dev, u32 nodeid,
Marc Jones8d595692012-03-15 12:55:26 -0600165 u32 link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000166{
Marc Jones8d595692012-03-15 12:55:26 -0600167 struct resource *resource;
168 u32 free_reg, reg;
169 resource = 0;
170 free_reg = 0;
171 for (reg = 0x80; reg <= 0xb8; reg += 0x8) {
172 int result;
173 result = reg_useable(reg, dev, nodeid, link);
174 if (result == 1) {
175 /* I have been allocated this one */
176 break;
177 } else if (result > 1) {
178 /* I have a free register pair */
179 free_reg = reg;
180 }
181 }
182 if (reg > 0xb8) {
183 reg = free_reg;
184 }
185 /* Ext conf space */
186 if (!reg) {
187 /* Because of Extend conf space, we will never run out of reg,
Elyes HAOUASa342f392018-10-17 10:56:26 +0200188 * but we need one index to differ them. So,same node and same
Marc Jones8d595692012-03-15 12:55:26 -0600189 * link can have multi range
190 */
191 u32 index = get_mmio_addr_index(nodeid, link);
192 reg = 0x110 + (index << 24) + (6 << 20); // index could be 0, 63
Frank Vibrans39fca802011-02-14 18:35:15 +0000193
Marc Jones8d595692012-03-15 12:55:26 -0600194 }
195 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
196 return resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000197}
198
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200199static void amdfam14_link_read_bases(struct device *dev, u32 nodeid, u32 link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000200{
Marc Jones8d595692012-03-15 12:55:26 -0600201 struct resource *resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000202
Marc Jones8d595692012-03-15 12:55:26 -0600203 /* Initialize the io space constraints on the current bus */
204 resource = amdfam14_find_iopair(dev, nodeid, link);
205 if (resource) {
206 u32 align;
Kyösti Mälkkiac7402d2014-12-14 08:30:17 +0200207 align = log2(HT_IO_HOST_ALIGN);
Marc Jones8d595692012-03-15 12:55:26 -0600208 resource->base = 0;
209 resource->size = 0;
210 resource->align = align;
211 resource->gran = align;
212 resource->limit = 0xffffUL;
213 resource->flags = IORESOURCE_IO | IORESOURCE_BRIDGE;
214 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000215
Marc Jones8d595692012-03-15 12:55:26 -0600216 /* Initialize the prefetchable memory constraints on the current bus */
217 resource = amdfam14_find_mempair(dev, nodeid, link);
218 if (resource) {
219 resource->base = 0;
220 resource->size = 0;
221 resource->align = log2(HT_MEM_HOST_ALIGN);
222 resource->gran = log2(HT_MEM_HOST_ALIGN);
223 resource->limit = 0xffffffffffULL;
224 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
225 resource->flags |= IORESOURCE_BRIDGE;
Marc Jones8d595692012-03-15 12:55:26 -0600226 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000227
Marc Jones8d595692012-03-15 12:55:26 -0600228 /* Initialize the memory constraints on the current bus */
229 resource = amdfam14_find_mempair(dev, nodeid, link);
230 if (resource) {
231 resource->base = 0;
232 resource->size = 0;
233 resource->align = log2(HT_MEM_HOST_ALIGN);
234 resource->gran = log2(HT_MEM_HOST_ALIGN);
235 resource->limit = 0xffffffffffULL;
236 resource->flags = IORESOURCE_MEM | IORESOURCE_BRIDGE;
Marc Jones8d595692012-03-15 12:55:26 -0600237 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000238}
239
240static u32 my_find_pci_tolm(struct bus *bus, u32 tolm)
241{
Marc Jones8d595692012-03-15 12:55:26 -0600242 struct resource *min;
243 min = 0;
244 search_bus_resources(bus, IORESOURCE_MEM, IORESOURCE_MEM, tolm_test,
245 &min);
246 if (min && tolm > min->base) {
247 tolm = min->base;
248 }
249 return tolm;
Frank Vibrans39fca802011-02-14 18:35:15 +0000250}
251
252#if CONFIG_HW_MEM_HOLE_SIZEK != 0
253
254struct hw_mem_hole_info {
Marc Jones8d595692012-03-15 12:55:26 -0600255 unsigned hole_startk;
256 int node_id;
Frank Vibrans39fca802011-02-14 18:35:15 +0000257};
258
259static struct hw_mem_hole_info get_hw_mem_hole_info(void)
260{
Marc Jones8d595692012-03-15 12:55:26 -0600261 struct hw_mem_hole_info mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000262
Marc Jones8d595692012-03-15 12:55:26 -0600263 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
264 mem_hole.node_id = -1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000265
Marc Jones8d595692012-03-15 12:55:26 -0600266 struct dram_base_mask_t d;
267 u32 hole;
268 d = get_dram_base_mask(0);
269 if (d.mask & 1) {
270 hole = pci_read_config32(__f1_dev[0], 0xf0);
271 if (hole & 1) { // we find the hole
272 mem_hole.hole_startk = (hole & (0xff << 24)) >> 10;
273 mem_hole.node_id = 0; // record the node No with hole
274 }
275 }
Marc Jones8d595692012-03-15 12:55:26 -0600276 return mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000277}
278#endif
279
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200280static void nb_read_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000281{
Marc Jones8d595692012-03-15 12:55:26 -0600282 u32 nodeid;
283 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000284
Mike Loptien58089e82013-01-29 15:45:09 -0700285 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000286
Marc Jones8d595692012-03-15 12:55:26 -0600287 nodeid = amdfam14_nodeid(dev);
288 for (link = dev->link_list; link; link = link->next) {
289 if (link->children) {
290 amdfam14_link_read_bases(dev, nodeid, link->link_num);
291 }
292 }
Marc Jonesd5c998b2013-01-16 17:14:24 -0700293
294 /*
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800295 * This MMCONF resource must be reserved in the PCI domain.
Marc Jonesd5c998b2013-01-16 17:14:24 -0700296 * It is not honored by the coreboot resource allocator if it is in
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800297 * the CPU_CLUSTER.
Marc Jonesd5c998b2013-01-16 17:14:24 -0700298 */
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200299 mmconf_resource(dev, MMIO_CONF_BASE);
Frank Vibrans39fca802011-02-14 18:35:15 +0000300}
301
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200302static void set_resource(struct device *dev, struct resource *resource,
303 u32 nodeid)
Frank Vibrans39fca802011-02-14 18:35:15 +0000304{
Marc Jones8d595692012-03-15 12:55:26 -0600305 resource_t rbase, rend;
306 unsigned reg, link_num;
307 char buf[50];
Frank Vibrans39fca802011-02-14 18:35:15 +0000308
Mike Loptien58089e82013-01-29 15:45:09 -0700309 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000310
Marc Jones8d595692012-03-15 12:55:26 -0600311 /* Make certain the resource has actually been set */
312 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
313 return;
314 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000315
Marc Jones8d595692012-03-15 12:55:26 -0600316 /* If I have already stored this resource don't worry about it */
317 if (resource->flags & IORESOURCE_STORED) {
318 return;
319 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000320
Marc Jones8d595692012-03-15 12:55:26 -0600321 /* Only handle PCI memory and IO resources */
322 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
323 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000324
Marc Jones8d595692012-03-15 12:55:26 -0600325 /* Ensure I am actually looking at a resource of function 1 */
326 if ((resource->index & 0xffff) < 0x1000) {
327 return;
328 }
329 /* Get the base address */
330 rbase = resource->base;
Frank Vibrans39fca802011-02-14 18:35:15 +0000331
Marc Jones8d595692012-03-15 12:55:26 -0600332 /* Get the limit (rounded up) */
333 rend = resource_end(resource);
Frank Vibrans39fca802011-02-14 18:35:15 +0000334
Marc Jones8d595692012-03-15 12:55:26 -0600335 /* Get the register and link */
336 reg = resource->index & 0xfff; // 4k
337 link_num = IOINDEX_LINK(resource->index);
Frank Vibrans39fca802011-02-14 18:35:15 +0000338
Marc Jones8d595692012-03-15 12:55:26 -0600339 if (resource->flags & IORESOURCE_IO) {
340 set_io_addr_reg(dev, nodeid, link_num, reg, rbase >> 8,
341 rend >> 8);
342 } else if (resource->flags & IORESOURCE_MEM) {
343 set_mmio_addr_reg(nodeid, link_num, reg, (resource->index >> 24),
344 rbase >> 8, rend >> 8, 1); // [39:8]
345 }
346 resource->flags |= IORESOURCE_STORED;
Elyes HAOUAS0d4b11a2016-10-03 21:57:21 +0200347 snprintf(buf, sizeof(buf), " <node %x link %x>", nodeid, link_num);
Marc Jones8d595692012-03-15 12:55:26 -0600348 report_resource_stored(dev, resource, buf);
Frank Vibrans39fca802011-02-14 18:35:15 +0000349}
350
Martin Roth77a58b92017-06-24 14:45:48 -0600351#if IS_ENABLED(CONFIG_CONSOLE_VGA_MULTI)
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300352extern struct device *vga_pri; // the primary vga device, defined in device.c
Frank Vibrans39fca802011-02-14 18:35:15 +0000353#endif
354
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200355static void create_vga_resource(struct device *dev, unsigned nodeid)
Frank Vibrans39fca802011-02-14 18:35:15 +0000356{
Marc Jones8d595692012-03-15 12:55:26 -0600357 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000358
Mike Loptien58089e82013-01-29 15:45:09 -0700359 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000360
Marc Jones8d595692012-03-15 12:55:26 -0600361 /* find out which link the VGA card is connected,
362 * we only deal with the 'first' vga card */
363 for (link = dev->link_list; link; link = link->next) {
364 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
Martin Roth77a58b92017-06-24 14:45:48 -0600365#if IS_ENABLED(CONFIG_CONSOLE_VGA_MULTI)
Marc Jones8d595692012-03-15 12:55:26 -0600366 printk(BIOS_DEBUG,
367 "VGA: vga_pri bus num = %d bus range [%d,%d]\n",
368 vga_pri->bus->secondary, link->secondary,
369 link->subordinate);
370 /* We need to make sure the vga_pri is under the link */
371 if ((vga_pri->bus->secondary >= link->secondary) &&
372 (vga_pri->bus->secondary <= link->subordinate))
Frank Vibrans39fca802011-02-14 18:35:15 +0000373#endif
Marc Jones8d595692012-03-15 12:55:26 -0600374 break;
375 }
376 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000377
Marc Jones8d595692012-03-15 12:55:26 -0600378 /* no VGA card installed */
379 if (link == NULL)
380 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000381
Marc Jones8d595692012-03-15 12:55:26 -0600382 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n",
383 dev_path(dev), nodeid, link->link_num);
384 set_vga_enable_reg(nodeid, link->link_num);
Frank Vibrans39fca802011-02-14 18:35:15 +0000385}
386
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200387static void nb_set_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000388{
Marc Jones8d595692012-03-15 12:55:26 -0600389 unsigned nodeid;
390 struct bus *bus;
391 struct resource *res;
Frank Vibrans39fca802011-02-14 18:35:15 +0000392
Mike Loptien58089e82013-01-29 15:45:09 -0700393 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
efdesign9805a89ab2011-06-20 17:38:49 -0700394
Marc Jones8d595692012-03-15 12:55:26 -0600395 /* Find the nodeid */
396 nodeid = amdfam14_nodeid(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000397
Marc Jones8d595692012-03-15 12:55:26 -0600398 create_vga_resource(dev, nodeid);
Frank Vibrans39fca802011-02-14 18:35:15 +0000399
Marc Jones8d595692012-03-15 12:55:26 -0600400 /* Set each resource we have found */
401 for (res = dev->resource_list; res; res = res->next) {
402 set_resource(dev, res, nodeid);
403 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000404
Marc Jones8d595692012-03-15 12:55:26 -0600405 for (bus = dev->link_list; bus; bus = bus->next) {
406 if (bus->children) {
407 assign_resources(bus);
408 }
409 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000410}
411
Frank Vibrans39fca802011-02-14 18:35:15 +0000412/* Domain/Root Complex related code */
413
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200414static void domain_read_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000415{
Marc Jones8d595692012-03-15 12:55:26 -0600416 unsigned reg;
Frank Vibrans39fca802011-02-14 18:35:15 +0000417
Mike Loptien58089e82013-01-29 15:45:09 -0700418 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000419
Marc Jones8d595692012-03-15 12:55:26 -0600420 /* Find the already assigned resource pairs */
421 get_fx_devs();
422 for (reg = 0x80; reg <= 0xc0; reg += 0x08) {
423 u32 base, limit;
424 base = f1_read_config32(reg);
425 limit = f1_read_config32(reg + 0x04);
426 /* Is this register allocated? */
427 if ((base & 3) != 0) {
428 unsigned nodeid, reg_link;
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200429 struct device *reg_dev;
Marc Jones8d595692012-03-15 12:55:26 -0600430 if (reg < 0xc0) { // mmio
431 nodeid = (limit & 0xf) + (base & 0x30);
432 } else { // io
433 nodeid = (limit & 0xf) + ((base >> 4) & 0x30);
434 }
435 reg_link = (limit >> 4) & 7;
436 reg_dev = __f0_dev[nodeid];
437 if (reg_dev) {
438 /* Reserve the resource */
439 struct resource *res;
440 res =
441 new_resource(reg_dev,
442 IOINDEX(0x1000 + reg,
443 reg_link));
444 if (res) {
445 res->flags = 1;
446 }
447 }
448 }
449 }
450 /* FIXME: do we need to check extend conf space?
451 I don't believe that much preset value */
Frank Vibrans39fca802011-02-14 18:35:15 +0000452
Marc Jones8d595692012-03-15 12:55:26 -0600453 pci_domain_read_resources(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000454}
455
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200456static void domain_set_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000457{
Mike Loptien58089e82013-01-29 15:45:09 -0700458 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Stefan Reinauer29e65482015-06-18 01:18:09 -0700459 printk(BIOS_DEBUG, " amsr - incoming dev = %p\n", dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000460
Marc Jones8d595692012-03-15 12:55:26 -0600461 unsigned long mmio_basek;
462 u32 pci_tolm;
463 int idx;
464 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000465#if CONFIG_HW_MEM_HOLE_SIZEK != 0
Marc Jones8d595692012-03-15 12:55:26 -0600466 struct hw_mem_hole_info mem_hole;
467 u32 reset_memhole = 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000468#endif
469
Marc Jones8d595692012-03-15 12:55:26 -0600470 pci_tolm = 0xffffffffUL;
471 for (link = dev->link_list; link; link = link->next) {
472 pci_tolm = my_find_pci_tolm(link, pci_tolm);
473 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000474
Marc Jones8d595692012-03-15 12:55:26 -0600475 // FIXME handle interleaved nodes. If you fix this here, please fix
476 // amdk8, too.
477 mmio_basek = pci_tolm >> 10;
478 /* Round mmio_basek to something the processor can support */
479 mmio_basek &= ~((1 << 6) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000480
Marc Jones8d595692012-03-15 12:55:26 -0600481 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
482 // MMIO hole. If you fix this here, please fix amdk8, too.
483 /* Round the mmio hole to 64M */
484 mmio_basek &= ~((64 * 1024) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000485
486#if CONFIG_HW_MEM_HOLE_SIZEK != 0
487/* if the hw mem hole is already set in raminit stage, here we will compare
488 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
489 * use hole_basek as mmio_basek and we don't need to reset hole.
490 * otherwise We reset the hole to the mmio_basek
491 */
492
Marc Jones8d595692012-03-15 12:55:26 -0600493 mem_hole = get_hw_mem_hole_info();
Frank Vibrans39fca802011-02-14 18:35:15 +0000494
Marc Jones8d595692012-03-15 12:55:26 -0600495 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
496 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
497 mmio_basek = mem_hole.hole_startk;
498 reset_memhole = 0;
499 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000500#endif
501
Marc Jones8d595692012-03-15 12:55:26 -0600502 idx = 0x10;
Frank Vibrans39fca802011-02-14 18:35:15 +0000503
Marc Jones8d595692012-03-15 12:55:26 -0600504 struct dram_base_mask_t d;
505 resource_t basek, limitk, sizek; // 4 1T
Frank Vibrans39fca802011-02-14 18:35:15 +0000506
Marc Jones8d595692012-03-15 12:55:26 -0600507 d = get_dram_base_mask(0);
Frank Vibrans39fca802011-02-14 18:35:15 +0000508
Marc Jones8d595692012-03-15 12:55:26 -0600509 if (d.mask & 1) {
510 basek = ((resource_t) ((u64) d.base)) << 8;
511 limitk = (resource_t) (((u64) d.mask << 8) | 0xFFFFFF);
512 printk(BIOS_DEBUG,
513 "adsr: (before) basek = %llx, limitk = %llx.\n", basek,
514 limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000515
Marc Jones8d595692012-03-15 12:55:26 -0600516 /* Convert these values to multiples of 1K for ease of math. */
517 basek >>= 10;
518 limitk >>= 10;
519 sizek = limitk - basek + 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000520
Marc Jones8d595692012-03-15 12:55:26 -0600521 printk(BIOS_DEBUG,
522 "adsr: (after) basek = %llx, limitk = %llx, sizek = %llx.\n",
523 basek, limitk, sizek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000524
Marc Jones8d595692012-03-15 12:55:26 -0600525 /* see if we need a hole from 0xa0000 to 0xbffff */
526 if ((basek < 640) && (sizek > 768)) {
527 printk(BIOS_DEBUG,"adsr - 0xa0000 to 0xbffff resource.\n");
528 ram_resource(dev, (idx | 0), basek, 640 - basek);
529 idx += 0x10;
530 basek = 768;
531 sizek = limitk - 768;
532 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000533
Marc Jones8d595692012-03-15 12:55:26 -0600534 printk(BIOS_DEBUG,
535 "adsr: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
536 mmio_basek, basek, limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000537
Kyösti Mälkki26c65432014-06-26 05:30:54 +0300538 /* split the region to accommodate pci memory space */
Marc Jones8d595692012-03-15 12:55:26 -0600539 if ((basek < 4 * 1024 * 1024) && (limitk > mmio_basek)) {
540 if (basek <= mmio_basek) {
541 unsigned pre_sizek;
542 pre_sizek = mmio_basek - basek;
543 if (pre_sizek > 0) {
544 ram_resource(dev, idx, basek,
545 pre_sizek);
546 idx += 0x10;
547 sizek -= pre_sizek;
Marc Jones8d595692012-03-15 12:55:26 -0600548 }
Marc Jones8d595692012-03-15 12:55:26 -0600549 basek = mmio_basek;
550 }
551 if ((basek + sizek) <= 4 * 1024 * 1024) {
552 sizek = 0;
553 } else {
554 basek = 4 * 1024 * 1024;
555 sizek -= (4 * 1024 * 1024 - mmio_basek);
556 }
557 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000558
Marc Jones8d595692012-03-15 12:55:26 -0600559 ram_resource(dev, (idx | 0), basek, sizek);
560 idx += 0x10;
Marc Jones8d595692012-03-15 12:55:26 -0600561 printk(BIOS_DEBUG,
562 "%d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n", 0,
563 mmio_basek, basek, limitk);
Marc Jones8d595692012-03-15 12:55:26 -0600564 }
565 printk(BIOS_DEBUG, " adsr - mmio_basek = %lx.\n", mmio_basek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000566
Kyösti Mälkki61be3602017-04-15 20:07:53 +0300567 add_uma_resource_below_tolm(dev, 7);
Frank Vibrans39fca802011-02-14 18:35:15 +0000568
Marc Jones8d595692012-03-15 12:55:26 -0600569 for (link = dev->link_list; link; link = link->next) {
570 if (link->children) {
571 assign_resources(link);
572 }
573 }
574 printk(BIOS_DEBUG, " adsr - leaving this lovely routine.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000575}
576
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600577static const char *domain_acpi_name(const struct device *dev)
Tobias Diedrichd8a2c1f2017-02-20 02:46:19 +0100578{
579 if (dev->path.type == DEVICE_PATH_DOMAIN)
580 return "PCI0";
581
582 return NULL;
583}
584
Frank Vibrans39fca802011-02-14 18:35:15 +0000585/* Bus related code */
586
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200587static void cpu_bus_scan(struct device *dev)
zbaof7223732012-04-13 13:42:15 +0800588{
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300589 struct bus *cpu_bus = dev->link_list;
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200590 struct device *cpu;
zbaof7223732012-04-13 13:42:15 +0800591 int apic_id, cores_found;
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000592
zbaof7223732012-04-13 13:42:15 +0800593 /* There is only one node for fam14, but there may be multiple cores. */
594 cpu = dev_find_slot(0, PCI_DEVFN(0x18, 0));
595 if (!cpu)
596 printk(BIOS_ERR, "ERROR: %02x:%02x.0 not found", 0, 0x18);
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000597
zbaof7223732012-04-13 13:42:15 +0800598 cores_found = (pci_read_config32(dev_find_slot(0,PCI_DEVFN(0x18,0x3)), 0xe8) >> 12) & 3;
599 printk(BIOS_DEBUG, " AP siblings=%d\n", cores_found);
600
zbaof7223732012-04-13 13:42:15 +0800601 for (apic_id = 0; apic_id <= cores_found; apic_id++) {
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300602 cpu = add_cpu_device(cpu_bus, apic_id, 1);
603 if (cpu)
604 amd_cpu_topology(cpu, 0, apic_id);
Marc Jones8d595692012-03-15 12:55:26 -0600605 }
zbaof7223732012-04-13 13:42:15 +0800606}
607
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200608static void cpu_bus_init(struct device *dev)
zbaof7223732012-04-13 13:42:15 +0800609{
610 initialize_cpus(dev->link_list);
Frank Vibrans39fca802011-02-14 18:35:15 +0000611}
612
Frank Vibrans39fca802011-02-14 18:35:15 +0000613/* North Bridge Structures */
614
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300615static void northbridge_fill_ssdt_generator(struct device *device)
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200616{
617 msr_t msr;
618 char pscope[] = "\\_SB.PCI0";
619
620 acpigen_write_scope(pscope);
621 msr = rdmsr(TOP_MEM);
622 acpigen_write_name_dword("TOM1", msr.lo);
623 msr = rdmsr(TOP_MEM2);
624 /*
625 * Since XP only implements parts of ACPI 2.0, we can't use a qword
626 * here.
627 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
628 * slide 22ff.
629 * Shift value right by 20 bit to make it fit into 32bit,
630 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
631 */
632 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
633 acpigen_pop_len();
634}
635
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100636static unsigned long acpi_fill_hest(acpi_hest_t *hest)
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200637{
638 void *addr, *current;
639
640 /* Skip the HEST header. */
641 current = (void *)(hest + 1);
642
643 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
644 if (addr != NULL)
Stefan Reinauer29e65482015-06-18 01:18:09 -0700645 current += acpi_create_hest_error_source(hest, current, 0,
646 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200647
648 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
649 if (addr != NULL)
Stefan Reinauer29e65482015-06-18 01:18:09 -0700650 current += acpi_create_hest_error_source(hest, current, 1,
651 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200652
653 return (unsigned long)current;
654}
655
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300656static unsigned long agesa_write_acpi_tables(struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200657 unsigned long current,
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200658 acpi_rsdp_t *rsdp)
659{
660 acpi_srat_t *srat;
661 acpi_slit_t *slit;
662 acpi_header_t *ssdt;
663 acpi_header_t *alib;
664 acpi_hest_t *hest;
665
666 /* HEST */
667 current = ALIGN(current, 8);
668 hest = (acpi_hest_t *)current;
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100669 acpi_write_hest((void *)current, acpi_fill_hest);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200670 acpi_add_table(rsdp, (void *)current);
671 current += ((acpi_header_t *)current)->length;
672
673 /* SRAT */
674 current = ALIGN(current, 8);
675 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
676 srat = (acpi_srat_t *) agesawrapper_getlateinitptr (PICK_SRAT);
677 if (srat != NULL) {
678 memcpy((void *)current, srat, srat->header.length);
679 srat = (acpi_srat_t *) current;
680 current += srat->header.length;
681 acpi_add_table(rsdp, srat);
682 }
683 else {
684 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
685 }
686
687 /* SLIT */
688 current = ALIGN(current, 8);
689 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
690 slit = (acpi_slit_t *) agesawrapper_getlateinitptr (PICK_SLIT);
691 if (slit != NULL) {
692 memcpy((void *)current, slit, slit->header.length);
693 slit = (acpi_slit_t *) current;
694 current += slit->header.length;
695 acpi_add_table(rsdp, slit);
696 }
697 else {
698 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
699 }
700
701 /* SSDT */
702 current = ALIGN(current, 16);
703 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
704 alib = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_ALIB);
705 if (alib != NULL) {
706 memcpy((void *)current, alib, alib->length);
707 alib = (acpi_header_t *) current;
708 current += alib->length;
709 acpi_add_table(rsdp, (void *)alib);
710 } else {
711 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL. Skipping.\n");
712 }
713
714 /* The DSDT needs additional work for the AGESA SSDT Pstate table */
715 /* Keep the comment for a while. */
716 current = ALIGN(current, 16);
717 printk(BIOS_DEBUG, "ACPI: * AGESA SSDT Pstate at %lx\n", current);
718 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_PSTATE);
719 if (ssdt != NULL) {
720 memcpy((void *)current, ssdt, ssdt->length);
721 ssdt = (acpi_header_t *) current;
722 current += ssdt->length;
723 acpi_add_table(rsdp,ssdt);
724 } else {
725 printk(BIOS_DEBUG, " AGESA SSDT Pstate table NULL. Skipping.\n");
726 }
727
728 return current;
729}
730
Frank Vibrans39fca802011-02-14 18:35:15 +0000731static struct device_operations northbridge_operations = {
Marc Jones8a49ac72013-01-16 17:02:20 -0700732 .read_resources = nb_read_resources,
733 .set_resources = nb_set_resources,
Marc Jones8d595692012-03-15 12:55:26 -0600734 .enable_resources = pci_dev_enable_resources,
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200735 .acpi_fill_ssdt_generator = northbridge_fill_ssdt_generator,
736 .write_acpi_tables = agesa_write_acpi_tables,
Marc Jones8d595692012-03-15 12:55:26 -0600737 .init = northbridge_init,
738 .enable = 0,.ops_pci = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000739};
740
Frank Vibrans39fca802011-02-14 18:35:15 +0000741static const struct pci_driver northbridge_driver __pci_driver = {
Marc Jones8d595692012-03-15 12:55:26 -0600742 .ops = &northbridge_operations,
743 .vendor = PCI_VENDOR_ID_AMD,
744 .device = 0x1510,
Frank Vibrans39fca802011-02-14 18:35:15 +0000745};
746
efdesign9805a89ab2011-06-20 17:38:49 -0700747struct chip_operations northbridge_amd_agesa_family14_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600748 CHIP_NAME("AMD Family 14h Northbridge")
749 .enable_dev = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000750};
751
Frank Vibrans39fca802011-02-14 18:35:15 +0000752/* Root Complex Structures */
753
Frank Vibrans39fca802011-02-14 18:35:15 +0000754static struct device_operations pci_domain_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600755 .read_resources = domain_read_resources,
756 .set_resources = domain_set_resources,
Edward O'Callaghane9e1d7a2015-01-02 15:11:49 +1100757 .init = DEVICE_NOOP,
Marc Jones8d595692012-03-15 12:55:26 -0600758 .scan_bus = pci_domain_scan_bus,
Tobias Diedrichd8a2c1f2017-02-20 02:46:19 +0100759 .acpi_name = domain_acpi_name,
Frank Vibrans39fca802011-02-14 18:35:15 +0000760};
761
Frank Vibrans39fca802011-02-14 18:35:15 +0000762static struct device_operations cpu_bus_ops = {
Edward O'Callaghan2837ab22014-11-06 08:57:40 +1100763 .read_resources = DEVICE_NOOP,
764 .set_resources = DEVICE_NOOP,
Edward O'Callaghane9e1d7a2015-01-02 15:11:49 +1100765 .enable_resources = DEVICE_NOOP,
Marc Jones8d595692012-03-15 12:55:26 -0600766 .init = cpu_bus_init,
zbaof7223732012-04-13 13:42:15 +0800767 .scan_bus = cpu_bus_scan,
Frank Vibrans39fca802011-02-14 18:35:15 +0000768};
769
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300770static void root_complex_enable_dev(struct device *dev)
771{
772 static int done = 0;
773
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300774 if (!done) {
775 setup_bsp_ramtop();
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300776 done = 1;
777 }
778
Marc Jones8d595692012-03-15 12:55:26 -0600779 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800780 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Marc Jones8d595692012-03-15 12:55:26 -0600781 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800782 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Marc Jones8d595692012-03-15 12:55:26 -0600783 dev->ops = &cpu_bus_ops;
784 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000785}
786
efdesign9805a89ab2011-06-20 17:38:49 -0700787struct chip_operations northbridge_amd_agesa_family14_root_complex_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600788 CHIP_NAME("AMD Family 14h Root Complex")
789 .enable_dev = root_complex_enable_dev,
Frank Vibrans39fca802011-02-14 18:35:15 +0000790};