blob: 219970fc00cdff8a901a23847288ed53e13c152c [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>
Frank Vibrans39fca802011-02-14 18:35:15 +000029#include <cpu/x86/lapic.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020030#include <cpu/amd/msr.h>
Kyösti Mälkki55fff9302012-07-11 08:02:39 +030031#include <cpu/amd/mtrr.h>
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +020032#include <northbridge/amd/agesa/nb_common.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älkki2b218e32019-01-15 11:14:28 +020045
46struct dram_base_mask_t {
47 u32 base; //[47:27] at [28:8]
48 u32 mask; //[47:27] at [28:8] and enable at bit 0
49};
50
51static struct dram_base_mask_t get_dram_base_mask(u32 nodeid)
52{
53 struct device *dev;
54 struct dram_base_mask_t d;
55#if defined(__PRE_RAM__)
56 dev = PCI_DEV(0, DEV_CDB, 1);
57#else
58 dev = __f1_dev[0];
59#endif // defined(__PRE_RAM__)
60
61 u32 temp;
62 temp = pci_read_config32(dev, 0x44); //[39:24] at [31:16]
63 d.mask = (temp & 0xffff0000); // mask out DramMask [26:24] too
64
65 temp = pci_read_config32(dev, 0x40); //[35:24] at [27:16]
66 d.mask |= (temp & 1); // read enable bit
67
68 d.base = (temp & 0x0fff0000); // mask out DramBase [26:24) too
69
70 return d;
71}
72
73static u32 get_io_addr_index(u32 nodeid, u32 linkn)
74{
75 return 0;
76}
77
78static u32 get_mmio_addr_index(u32 nodeid, u32 linkn)
79{
80 return 0;
81}
82
83static void set_io_addr_reg(struct device *dev, u32 nodeid, u32 linkn, u32 reg,
84 u32 io_min, u32 io_max)
85{
86
87 u32 tempreg;
88 /* io range allocation */
89 tempreg = (nodeid & 0xf) | ((nodeid & 0x30) << (8 - 4)) | (linkn << 4) |
90 ((io_max & 0xf0) << (12 - 4)); //limit
91 pci_write_config32(__f1_dev[0], reg+4, tempreg);
92
93 tempreg = 3 | ((io_min & 0xf0) << (12 - 4)); //base :ISA and VGA ?
94 pci_write_config32(__f1_dev[0], reg, tempreg);
95}
96
97static void set_mmio_addr_reg(u32 nodeid, u32 linkn, u32 reg, u32 index,
98 u32 mmio_min, u32 mmio_max, u32 nodes)
99{
100
101 u32 tempreg;
102 /* io range allocation */
103 tempreg = (nodeid & 0xf) | (linkn << 4) | (mmio_max & 0xffffff00);
104 pci_write_config32(__f1_dev[0], reg + 4, tempreg);
105 tempreg = 3 | (nodeid & 0x30) | (mmio_min & 0xffffff00);
106 pci_write_config32(__f1_dev[0], reg, tempreg);
107}
108
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300109static struct device *get_node_pci(u32 nodeid, u32 fn)
Frank Vibrans39fca802011-02-14 18:35:15 +0000110{
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +0200111 return pcidev_on_root(DEV_CDB + nodeid, fn);
Frank Vibrans39fca802011-02-14 18:35:15 +0000112}
113
Frank Vibrans39fca802011-02-14 18:35:15 +0000114static void get_fx_devs(void)
115{
Marc Jones8d595692012-03-15 12:55:26 -0600116 int i;
117 for (i = 0; i < FX_DEVS; i++) {
118 __f0_dev[i] = get_node_pci(i, 0);
119 __f1_dev[i] = get_node_pci(i, 1);
120 __f2_dev[i] = get_node_pci(i, 2);
121 __f4_dev[i] = get_node_pci(i, 4);
122 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
123 fx_devs = i + 1;
124 }
125 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
126 die("Cannot find 0:0x18.[0|1]\n");
127 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000128}
129
Frank Vibrans39fca802011-02-14 18:35:15 +0000130static u32 f1_read_config32(unsigned reg)
131{
Marc Jones8d595692012-03-15 12:55:26 -0600132 if (fx_devs == 0)
133 get_fx_devs();
134 return pci_read_config32(__f1_dev[0], reg);
Frank Vibrans39fca802011-02-14 18:35:15 +0000135}
136
Frank Vibrans39fca802011-02-14 18:35:15 +0000137static void f1_write_config32(unsigned reg, u32 value)
138{
Marc Jones8d595692012-03-15 12:55:26 -0600139 int i;
140 if (fx_devs == 0)
141 get_fx_devs();
142 for (i = 0; i < fx_devs; i++) {
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200143 struct device *dev;
Marc Jones8d595692012-03-15 12:55:26 -0600144 dev = __f1_dev[i];
145 if (dev && dev->enabled) {
146 pci_write_config32(dev, reg, value);
147 }
148 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000149}
150
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200151static u32 amdfam14_nodeid(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000152{
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +0200153 return (dev->path.pci.devfn >> 3) - DEV_CDB;
Frank Vibrans39fca802011-02-14 18:35:15 +0000154}
155
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200156static void northbridge_init(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000157{
Marc Jones8d595692012-03-15 12:55:26 -0600158 printk(BIOS_DEBUG, "Northbridge init\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000159}
160
Frank Vibrans39fca802011-02-14 18:35:15 +0000161static void set_vga_enable_reg(u32 nodeid, u32 linkn)
162{
Marc Jones8d595692012-03-15 12:55:26 -0600163 u32 val;
Frank Vibrans39fca802011-02-14 18:35:15 +0000164
Marc Jones8d595692012-03-15 12:55:26 -0600165 val = 1 | (nodeid << 4) | (linkn << 12);
166 /* it will routing (1)mmio 0xa0000:0xbffff (2) io 0x3b0:0x3bb,
167 0x3c0:0x3df */
168 f1_write_config32(0xf4, val);
Frank Vibrans39fca802011-02-14 18:35:15 +0000169
170}
171
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200172static int reg_useable(unsigned reg, struct device *goal_dev,
173 unsigned goal_nodeid, unsigned goal_link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000174{
Marc Jones8d595692012-03-15 12:55:26 -0600175 struct resource *res;
176 unsigned nodeid, link = 0;
177 int result;
178 res = 0;
179 for (nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200180 struct device *dev;
Marc Jones8d595692012-03-15 12:55:26 -0600181 dev = __f0_dev[nodeid];
182 if (!dev)
183 continue;
184 for (link = 0; !res && (link < 8); link++) {
185 res = probe_resource(dev, IOINDEX(0x1000 + reg, link));
186 }
187 }
188 result = 2;
189 if (res) {
190 result = 0;
191 if ((goal_link == (link - 1)) &&
192 (goal_nodeid == (nodeid - 1)) && (res->flags <= 1)) {
193 result = 1;
194 }
195 }
196 return result;
Frank Vibrans39fca802011-02-14 18:35:15 +0000197}
198
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200199static struct resource *amdfam14_find_iopair(struct device *dev,
200 unsigned nodeid, unsigned link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000201{
Marc Jones8d595692012-03-15 12:55:26 -0600202 struct resource *resource;
203 u32 result, reg;
204 resource = 0;
205 reg = 0;
206 result = reg_useable(0xc0, dev, nodeid, link);
207 if (result >= 1) {
208 /* I have been allocated this one */
209 reg = 0xc0;
210 }
211 /* Ext conf space */
212 if (!reg) {
213 /* Because of Extend conf space, we will never run out of reg,
Elyes HAOUASa342f392018-10-17 10:56:26 +0200214 * but we need one index to differ them. So,same node and same
Marc Jones8d595692012-03-15 12:55:26 -0600215 * link can have multi range
216 */
217 u32 index = get_io_addr_index(nodeid, link);
218 reg = 0x110 + (index << 24) + (4 << 20); // index could be 0, 255
219 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000220
Marc Jones8d595692012-03-15 12:55:26 -0600221 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
Frank Vibrans39fca802011-02-14 18:35:15 +0000222
Marc Jones8d595692012-03-15 12:55:26 -0600223 return resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000224}
225
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200226static struct resource *amdfam14_find_mempair(struct device *dev, u32 nodeid,
Marc Jones8d595692012-03-15 12:55:26 -0600227 u32 link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000228{
Marc Jones8d595692012-03-15 12:55:26 -0600229 struct resource *resource;
230 u32 free_reg, reg;
231 resource = 0;
232 free_reg = 0;
233 for (reg = 0x80; reg <= 0xb8; reg += 0x8) {
234 int result;
235 result = reg_useable(reg, dev, nodeid, link);
236 if (result == 1) {
237 /* I have been allocated this one */
238 break;
239 } else if (result > 1) {
240 /* I have a free register pair */
241 free_reg = reg;
242 }
243 }
244 if (reg > 0xb8) {
245 reg = free_reg;
246 }
247 /* Ext conf space */
248 if (!reg) {
249 /* Because of Extend conf space, we will never run out of reg,
Elyes HAOUASa342f392018-10-17 10:56:26 +0200250 * but we need one index to differ them. So,same node and same
Marc Jones8d595692012-03-15 12:55:26 -0600251 * link can have multi range
252 */
253 u32 index = get_mmio_addr_index(nodeid, link);
254 reg = 0x110 + (index << 24) + (6 << 20); // index could be 0, 63
Frank Vibrans39fca802011-02-14 18:35:15 +0000255
Marc Jones8d595692012-03-15 12:55:26 -0600256 }
257 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
258 return resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000259}
260
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200261static void amdfam14_link_read_bases(struct device *dev, u32 nodeid, u32 link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000262{
Marc Jones8d595692012-03-15 12:55:26 -0600263 struct resource *resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000264
Marc Jones8d595692012-03-15 12:55:26 -0600265 /* Initialize the io space constraints on the current bus */
266 resource = amdfam14_find_iopair(dev, nodeid, link);
267 if (resource) {
268 u32 align;
Kyösti Mälkkiac7402d2014-12-14 08:30:17 +0200269 align = log2(HT_IO_HOST_ALIGN);
Marc Jones8d595692012-03-15 12:55:26 -0600270 resource->base = 0;
271 resource->size = 0;
272 resource->align = align;
273 resource->gran = align;
274 resource->limit = 0xffffUL;
275 resource->flags = IORESOURCE_IO | IORESOURCE_BRIDGE;
276 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000277
Marc Jones8d595692012-03-15 12:55:26 -0600278 /* Initialize the prefetchable memory constraints on the current bus */
279 resource = amdfam14_find_mempair(dev, nodeid, link);
280 if (resource) {
281 resource->base = 0;
282 resource->size = 0;
283 resource->align = log2(HT_MEM_HOST_ALIGN);
284 resource->gran = log2(HT_MEM_HOST_ALIGN);
285 resource->limit = 0xffffffffffULL;
286 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
287 resource->flags |= IORESOURCE_BRIDGE;
Marc Jones8d595692012-03-15 12:55:26 -0600288 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000289
Marc Jones8d595692012-03-15 12:55:26 -0600290 /* Initialize the memory constraints on the current bus */
291 resource = amdfam14_find_mempair(dev, nodeid, link);
292 if (resource) {
293 resource->base = 0;
294 resource->size = 0;
295 resource->align = log2(HT_MEM_HOST_ALIGN);
296 resource->gran = log2(HT_MEM_HOST_ALIGN);
297 resource->limit = 0xffffffffffULL;
298 resource->flags = IORESOURCE_MEM | IORESOURCE_BRIDGE;
Marc Jones8d595692012-03-15 12:55:26 -0600299 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000300}
301
302static u32 my_find_pci_tolm(struct bus *bus, u32 tolm)
303{
Marc Jones8d595692012-03-15 12:55:26 -0600304 struct resource *min;
305 min = 0;
306 search_bus_resources(bus, IORESOURCE_MEM, IORESOURCE_MEM, tolm_test,
307 &min);
308 if (min && tolm > min->base) {
309 tolm = min->base;
310 }
311 return tolm;
Frank Vibrans39fca802011-02-14 18:35:15 +0000312}
313
314#if CONFIG_HW_MEM_HOLE_SIZEK != 0
315
316struct hw_mem_hole_info {
Marc Jones8d595692012-03-15 12:55:26 -0600317 unsigned hole_startk;
318 int node_id;
Frank Vibrans39fca802011-02-14 18:35:15 +0000319};
320
321static struct hw_mem_hole_info get_hw_mem_hole_info(void)
322{
Marc Jones8d595692012-03-15 12:55:26 -0600323 struct hw_mem_hole_info mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000324
Marc Jones8d595692012-03-15 12:55:26 -0600325 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
326 mem_hole.node_id = -1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000327
Marc Jones8d595692012-03-15 12:55:26 -0600328 struct dram_base_mask_t d;
329 u32 hole;
330 d = get_dram_base_mask(0);
331 if (d.mask & 1) {
332 hole = pci_read_config32(__f1_dev[0], 0xf0);
333 if (hole & 1) { // we find the hole
334 mem_hole.hole_startk = (hole & (0xff << 24)) >> 10;
335 mem_hole.node_id = 0; // record the node No with hole
336 }
337 }
Marc Jones8d595692012-03-15 12:55:26 -0600338 return mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000339}
340#endif
341
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200342static void nb_read_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000343{
Marc Jones8d595692012-03-15 12:55:26 -0600344 u32 nodeid;
345 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000346
Mike Loptien58089e82013-01-29 15:45:09 -0700347 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000348
Marc Jones8d595692012-03-15 12:55:26 -0600349 nodeid = amdfam14_nodeid(dev);
350 for (link = dev->link_list; link; link = link->next) {
351 if (link->children) {
352 amdfam14_link_read_bases(dev, nodeid, link->link_num);
353 }
354 }
Marc Jonesd5c998b2013-01-16 17:14:24 -0700355
356 /*
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800357 * This MMCONF resource must be reserved in the PCI domain.
Marc Jonesd5c998b2013-01-16 17:14:24 -0700358 * It is not honored by the coreboot resource allocator if it is in
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800359 * the CPU_CLUSTER.
Marc Jonesd5c998b2013-01-16 17:14:24 -0700360 */
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200361 mmconf_resource(dev, MMIO_CONF_BASE);
Frank Vibrans39fca802011-02-14 18:35:15 +0000362}
363
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200364static void set_resource(struct device *dev, struct resource *resource,
365 u32 nodeid)
Frank Vibrans39fca802011-02-14 18:35:15 +0000366{
Marc Jones8d595692012-03-15 12:55:26 -0600367 resource_t rbase, rend;
368 unsigned reg, link_num;
369 char buf[50];
Frank Vibrans39fca802011-02-14 18:35:15 +0000370
Mike Loptien58089e82013-01-29 15:45:09 -0700371 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000372
Marc Jones8d595692012-03-15 12:55:26 -0600373 /* Make certain the resource has actually been set */
374 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
375 return;
376 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000377
Marc Jones8d595692012-03-15 12:55:26 -0600378 /* If I have already stored this resource don't worry about it */
379 if (resource->flags & IORESOURCE_STORED) {
380 return;
381 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000382
Marc Jones8d595692012-03-15 12:55:26 -0600383 /* Only handle PCI memory and IO resources */
384 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
385 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000386
Marc Jones8d595692012-03-15 12:55:26 -0600387 /* Ensure I am actually looking at a resource of function 1 */
388 if ((resource->index & 0xffff) < 0x1000) {
389 return;
390 }
391 /* Get the base address */
392 rbase = resource->base;
Frank Vibrans39fca802011-02-14 18:35:15 +0000393
Marc Jones8d595692012-03-15 12:55:26 -0600394 /* Get the limit (rounded up) */
395 rend = resource_end(resource);
Frank Vibrans39fca802011-02-14 18:35:15 +0000396
Marc Jones8d595692012-03-15 12:55:26 -0600397 /* Get the register and link */
398 reg = resource->index & 0xfff; // 4k
399 link_num = IOINDEX_LINK(resource->index);
Frank Vibrans39fca802011-02-14 18:35:15 +0000400
Marc Jones8d595692012-03-15 12:55:26 -0600401 if (resource->flags & IORESOURCE_IO) {
402 set_io_addr_reg(dev, nodeid, link_num, reg, rbase >> 8,
403 rend >> 8);
404 } else if (resource->flags & IORESOURCE_MEM) {
405 set_mmio_addr_reg(nodeid, link_num, reg, (resource->index >> 24),
406 rbase >> 8, rend >> 8, 1); // [39:8]
407 }
408 resource->flags |= IORESOURCE_STORED;
Elyes HAOUAS0d4b11a2016-10-03 21:57:21 +0200409 snprintf(buf, sizeof(buf), " <node %x link %x>", nodeid, link_num);
Marc Jones8d595692012-03-15 12:55:26 -0600410 report_resource_stored(dev, resource, buf);
Frank Vibrans39fca802011-02-14 18:35:15 +0000411}
412
Martin Roth77a58b92017-06-24 14:45:48 -0600413#if IS_ENABLED(CONFIG_CONSOLE_VGA_MULTI)
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300414extern struct device *vga_pri; // the primary vga device, defined in device.c
Frank Vibrans39fca802011-02-14 18:35:15 +0000415#endif
416
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200417static void create_vga_resource(struct device *dev, unsigned nodeid)
Frank Vibrans39fca802011-02-14 18:35:15 +0000418{
Marc Jones8d595692012-03-15 12:55:26 -0600419 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000420
Mike Loptien58089e82013-01-29 15:45:09 -0700421 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000422
Marc Jones8d595692012-03-15 12:55:26 -0600423 /* find out which link the VGA card is connected,
424 * we only deal with the 'first' vga card */
425 for (link = dev->link_list; link; link = link->next) {
426 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
Martin Roth77a58b92017-06-24 14:45:48 -0600427#if IS_ENABLED(CONFIG_CONSOLE_VGA_MULTI)
Marc Jones8d595692012-03-15 12:55:26 -0600428 printk(BIOS_DEBUG,
429 "VGA: vga_pri bus num = %d bus range [%d,%d]\n",
430 vga_pri->bus->secondary, link->secondary,
431 link->subordinate);
432 /* We need to make sure the vga_pri is under the link */
433 if ((vga_pri->bus->secondary >= link->secondary) &&
434 (vga_pri->bus->secondary <= link->subordinate))
Frank Vibrans39fca802011-02-14 18:35:15 +0000435#endif
Marc Jones8d595692012-03-15 12:55:26 -0600436 break;
437 }
438 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000439
Marc Jones8d595692012-03-15 12:55:26 -0600440 /* no VGA card installed */
441 if (link == NULL)
442 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000443
Marc Jones8d595692012-03-15 12:55:26 -0600444 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n",
445 dev_path(dev), nodeid, link->link_num);
446 set_vga_enable_reg(nodeid, link->link_num);
Frank Vibrans39fca802011-02-14 18:35:15 +0000447}
448
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200449static void nb_set_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000450{
Marc Jones8d595692012-03-15 12:55:26 -0600451 unsigned nodeid;
452 struct bus *bus;
453 struct resource *res;
Frank Vibrans39fca802011-02-14 18:35:15 +0000454
Mike Loptien58089e82013-01-29 15:45:09 -0700455 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
efdesign9805a89ab2011-06-20 17:38:49 -0700456
Marc Jones8d595692012-03-15 12:55:26 -0600457 /* Find the nodeid */
458 nodeid = amdfam14_nodeid(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000459
Marc Jones8d595692012-03-15 12:55:26 -0600460 create_vga_resource(dev, nodeid);
Frank Vibrans39fca802011-02-14 18:35:15 +0000461
Marc Jones8d595692012-03-15 12:55:26 -0600462 /* Set each resource we have found */
463 for (res = dev->resource_list; res; res = res->next) {
464 set_resource(dev, res, nodeid);
465 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000466
Marc Jones8d595692012-03-15 12:55:26 -0600467 for (bus = dev->link_list; bus; bus = bus->next) {
468 if (bus->children) {
469 assign_resources(bus);
470 }
471 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000472}
473
Frank Vibrans39fca802011-02-14 18:35:15 +0000474/* Domain/Root Complex related code */
475
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200476static void domain_read_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000477{
Marc Jones8d595692012-03-15 12:55:26 -0600478 unsigned reg;
Frank Vibrans39fca802011-02-14 18:35:15 +0000479
Mike Loptien58089e82013-01-29 15:45:09 -0700480 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000481
Marc Jones8d595692012-03-15 12:55:26 -0600482 /* Find the already assigned resource pairs */
483 get_fx_devs();
484 for (reg = 0x80; reg <= 0xc0; reg += 0x08) {
485 u32 base, limit;
486 base = f1_read_config32(reg);
487 limit = f1_read_config32(reg + 0x04);
488 /* Is this register allocated? */
489 if ((base & 3) != 0) {
490 unsigned nodeid, reg_link;
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200491 struct device *reg_dev;
Marc Jones8d595692012-03-15 12:55:26 -0600492 if (reg < 0xc0) { // mmio
493 nodeid = (limit & 0xf) + (base & 0x30);
494 } else { // io
495 nodeid = (limit & 0xf) + ((base >> 4) & 0x30);
496 }
497 reg_link = (limit >> 4) & 7;
498 reg_dev = __f0_dev[nodeid];
499 if (reg_dev) {
500 /* Reserve the resource */
501 struct resource *res;
502 res =
503 new_resource(reg_dev,
504 IOINDEX(0x1000 + reg,
505 reg_link));
506 if (res) {
507 res->flags = 1;
508 }
509 }
510 }
511 }
512 /* FIXME: do we need to check extend conf space?
513 I don't believe that much preset value */
Frank Vibrans39fca802011-02-14 18:35:15 +0000514
Marc Jones8d595692012-03-15 12:55:26 -0600515 pci_domain_read_resources(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000516}
517
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200518static void domain_set_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000519{
Mike Loptien58089e82013-01-29 15:45:09 -0700520 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Stefan Reinauer29e65482015-06-18 01:18:09 -0700521 printk(BIOS_DEBUG, " amsr - incoming dev = %p\n", dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000522
Marc Jones8d595692012-03-15 12:55:26 -0600523 unsigned long mmio_basek;
524 u32 pci_tolm;
525 int idx;
526 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000527#if CONFIG_HW_MEM_HOLE_SIZEK != 0
Marc Jones8d595692012-03-15 12:55:26 -0600528 struct hw_mem_hole_info mem_hole;
529 u32 reset_memhole = 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000530#endif
531
Marc Jones8d595692012-03-15 12:55:26 -0600532 pci_tolm = 0xffffffffUL;
533 for (link = dev->link_list; link; link = link->next) {
534 pci_tolm = my_find_pci_tolm(link, pci_tolm);
535 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000536
Marc Jones8d595692012-03-15 12:55:26 -0600537 // FIXME handle interleaved nodes. If you fix this here, please fix
538 // amdk8, too.
539 mmio_basek = pci_tolm >> 10;
540 /* Round mmio_basek to something the processor can support */
541 mmio_basek &= ~((1 << 6) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000542
Marc Jones8d595692012-03-15 12:55:26 -0600543 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
544 // MMIO hole. If you fix this here, please fix amdk8, too.
545 /* Round the mmio hole to 64M */
546 mmio_basek &= ~((64 * 1024) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000547
548#if CONFIG_HW_MEM_HOLE_SIZEK != 0
549/* if the hw mem hole is already set in raminit stage, here we will compare
550 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
551 * use hole_basek as mmio_basek and we don't need to reset hole.
552 * otherwise We reset the hole to the mmio_basek
553 */
554
Marc Jones8d595692012-03-15 12:55:26 -0600555 mem_hole = get_hw_mem_hole_info();
Frank Vibrans39fca802011-02-14 18:35:15 +0000556
Marc Jones8d595692012-03-15 12:55:26 -0600557 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
558 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
559 mmio_basek = mem_hole.hole_startk;
560 reset_memhole = 0;
561 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000562#endif
563
Marc Jones8d595692012-03-15 12:55:26 -0600564 idx = 0x10;
Frank Vibrans39fca802011-02-14 18:35:15 +0000565
Marc Jones8d595692012-03-15 12:55:26 -0600566 struct dram_base_mask_t d;
567 resource_t basek, limitk, sizek; // 4 1T
Frank Vibrans39fca802011-02-14 18:35:15 +0000568
Marc Jones8d595692012-03-15 12:55:26 -0600569 d = get_dram_base_mask(0);
Frank Vibrans39fca802011-02-14 18:35:15 +0000570
Marc Jones8d595692012-03-15 12:55:26 -0600571 if (d.mask & 1) {
572 basek = ((resource_t) ((u64) d.base)) << 8;
573 limitk = (resource_t) (((u64) d.mask << 8) | 0xFFFFFF);
574 printk(BIOS_DEBUG,
575 "adsr: (before) basek = %llx, limitk = %llx.\n", basek,
576 limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000577
Marc Jones8d595692012-03-15 12:55:26 -0600578 /* Convert these values to multiples of 1K for ease of math. */
579 basek >>= 10;
580 limitk >>= 10;
581 sizek = limitk - basek + 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000582
Marc Jones8d595692012-03-15 12:55:26 -0600583 printk(BIOS_DEBUG,
584 "adsr: (after) basek = %llx, limitk = %llx, sizek = %llx.\n",
585 basek, limitk, sizek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000586
Marc Jones8d595692012-03-15 12:55:26 -0600587 /* see if we need a hole from 0xa0000 to 0xbffff */
588 if ((basek < 640) && (sizek > 768)) {
589 printk(BIOS_DEBUG,"adsr - 0xa0000 to 0xbffff resource.\n");
590 ram_resource(dev, (idx | 0), basek, 640 - basek);
591 idx += 0x10;
592 basek = 768;
593 sizek = limitk - 768;
594 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000595
Marc Jones8d595692012-03-15 12:55:26 -0600596 printk(BIOS_DEBUG,
597 "adsr: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
598 mmio_basek, basek, limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000599
Kyösti Mälkki26c65432014-06-26 05:30:54 +0300600 /* split the region to accommodate pci memory space */
Marc Jones8d595692012-03-15 12:55:26 -0600601 if ((basek < 4 * 1024 * 1024) && (limitk > mmio_basek)) {
602 if (basek <= mmio_basek) {
603 unsigned pre_sizek;
604 pre_sizek = mmio_basek - basek;
605 if (pre_sizek > 0) {
606 ram_resource(dev, idx, basek,
607 pre_sizek);
608 idx += 0x10;
609 sizek -= pre_sizek;
Marc Jones8d595692012-03-15 12:55:26 -0600610 }
Marc Jones8d595692012-03-15 12:55:26 -0600611 basek = mmio_basek;
612 }
613 if ((basek + sizek) <= 4 * 1024 * 1024) {
614 sizek = 0;
615 } else {
616 basek = 4 * 1024 * 1024;
617 sizek -= (4 * 1024 * 1024 - mmio_basek);
618 }
619 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000620
Marc Jones8d595692012-03-15 12:55:26 -0600621 ram_resource(dev, (idx | 0), basek, sizek);
622 idx += 0x10;
Marc Jones8d595692012-03-15 12:55:26 -0600623 printk(BIOS_DEBUG,
624 "%d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n", 0,
625 mmio_basek, basek, limitk);
Marc Jones8d595692012-03-15 12:55:26 -0600626 }
627 printk(BIOS_DEBUG, " adsr - mmio_basek = %lx.\n", mmio_basek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000628
Kyösti Mälkki61be3602017-04-15 20:07:53 +0300629 add_uma_resource_below_tolm(dev, 7);
Frank Vibrans39fca802011-02-14 18:35:15 +0000630
Marc Jones8d595692012-03-15 12:55:26 -0600631 for (link = dev->link_list; link; link = link->next) {
632 if (link->children) {
633 assign_resources(link);
634 }
635 }
636 printk(BIOS_DEBUG, " adsr - leaving this lovely routine.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000637}
638
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600639static const char *domain_acpi_name(const struct device *dev)
Tobias Diedrichd8a2c1f2017-02-20 02:46:19 +0100640{
641 if (dev->path.type == DEVICE_PATH_DOMAIN)
642 return "PCI0";
643
644 return NULL;
645}
646
Frank Vibrans39fca802011-02-14 18:35:15 +0000647/* Bus related code */
648
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200649static void cpu_bus_scan(struct device *dev)
zbaof7223732012-04-13 13:42:15 +0800650{
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300651 struct bus *cpu_bus = dev->link_list;
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200652 struct device *cpu;
zbaof7223732012-04-13 13:42:15 +0800653 int apic_id, cores_found;
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000654
zbaof7223732012-04-13 13:42:15 +0800655 /* There is only one node for fam14, but there may be multiple cores. */
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300656 cpu = pcidev_on_root(0x18, 0);
zbaof7223732012-04-13 13:42:15 +0800657 if (!cpu)
658 printk(BIOS_ERR, "ERROR: %02x:%02x.0 not found", 0, 0x18);
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000659
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300660 cores_found = (pci_read_config32(pcidev_on_root(0x18, 0x3),
661 0xe8) >> 12) & 3;
zbaof7223732012-04-13 13:42:15 +0800662 printk(BIOS_DEBUG, " AP siblings=%d\n", cores_found);
663
zbaof7223732012-04-13 13:42:15 +0800664 for (apic_id = 0; apic_id <= cores_found; apic_id++) {
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300665 cpu = add_cpu_device(cpu_bus, apic_id, 1);
666 if (cpu)
667 amd_cpu_topology(cpu, 0, apic_id);
Marc Jones8d595692012-03-15 12:55:26 -0600668 }
zbaof7223732012-04-13 13:42:15 +0800669}
670
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200671static void cpu_bus_init(struct device *dev)
zbaof7223732012-04-13 13:42:15 +0800672{
673 initialize_cpus(dev->link_list);
Frank Vibrans39fca802011-02-14 18:35:15 +0000674}
675
Frank Vibrans39fca802011-02-14 18:35:15 +0000676/* North Bridge Structures */
677
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300678static void northbridge_fill_ssdt_generator(struct device *device)
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200679{
680 msr_t msr;
681 char pscope[] = "\\_SB.PCI0";
682
683 acpigen_write_scope(pscope);
684 msr = rdmsr(TOP_MEM);
685 acpigen_write_name_dword("TOM1", msr.lo);
686 msr = rdmsr(TOP_MEM2);
687 /*
688 * Since XP only implements parts of ACPI 2.0, we can't use a qword
689 * here.
690 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
691 * slide 22ff.
692 * Shift value right by 20 bit to make it fit into 32bit,
693 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
694 */
695 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
696 acpigen_pop_len();
697}
698
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100699static unsigned long acpi_fill_hest(acpi_hest_t *hest)
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200700{
701 void *addr, *current;
702
703 /* Skip the HEST header. */
704 current = (void *)(hest + 1);
705
706 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
707 if (addr != NULL)
Stefan Reinauer29e65482015-06-18 01:18:09 -0700708 current += acpi_create_hest_error_source(hest, current, 0,
709 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200710
711 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
712 if (addr != NULL)
Stefan Reinauer29e65482015-06-18 01:18:09 -0700713 current += acpi_create_hest_error_source(hest, current, 1,
714 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200715
716 return (unsigned long)current;
717}
718
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300719static unsigned long agesa_write_acpi_tables(struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200720 unsigned long current,
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200721 acpi_rsdp_t *rsdp)
722{
723 acpi_srat_t *srat;
724 acpi_slit_t *slit;
725 acpi_header_t *ssdt;
726 acpi_header_t *alib;
727 acpi_hest_t *hest;
728
729 /* HEST */
730 current = ALIGN(current, 8);
731 hest = (acpi_hest_t *)current;
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100732 acpi_write_hest((void *)current, acpi_fill_hest);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200733 acpi_add_table(rsdp, (void *)current);
734 current += ((acpi_header_t *)current)->length;
735
736 /* SRAT */
737 current = ALIGN(current, 8);
738 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
739 srat = (acpi_srat_t *) agesawrapper_getlateinitptr (PICK_SRAT);
740 if (srat != NULL) {
741 memcpy((void *)current, srat, srat->header.length);
742 srat = (acpi_srat_t *) current;
743 current += srat->header.length;
744 acpi_add_table(rsdp, srat);
745 }
746 else {
747 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
748 }
749
750 /* SLIT */
751 current = ALIGN(current, 8);
752 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
753 slit = (acpi_slit_t *) agesawrapper_getlateinitptr (PICK_SLIT);
754 if (slit != NULL) {
755 memcpy((void *)current, slit, slit->header.length);
756 slit = (acpi_slit_t *) current;
757 current += slit->header.length;
758 acpi_add_table(rsdp, slit);
759 }
760 else {
761 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
762 }
763
764 /* SSDT */
765 current = ALIGN(current, 16);
766 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
767 alib = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_ALIB);
768 if (alib != NULL) {
769 memcpy((void *)current, alib, alib->length);
770 alib = (acpi_header_t *) current;
771 current += alib->length;
772 acpi_add_table(rsdp, (void *)alib);
773 } else {
774 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL. Skipping.\n");
775 }
776
777 /* The DSDT needs additional work for the AGESA SSDT Pstate table */
778 /* Keep the comment for a while. */
779 current = ALIGN(current, 16);
780 printk(BIOS_DEBUG, "ACPI: * AGESA SSDT Pstate at %lx\n", current);
781 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_PSTATE);
782 if (ssdt != NULL) {
783 memcpy((void *)current, ssdt, ssdt->length);
784 ssdt = (acpi_header_t *) current;
785 current += ssdt->length;
786 acpi_add_table(rsdp,ssdt);
787 } else {
788 printk(BIOS_DEBUG, " AGESA SSDT Pstate table NULL. Skipping.\n");
789 }
790
791 return current;
792}
793
Frank Vibrans39fca802011-02-14 18:35:15 +0000794static struct device_operations northbridge_operations = {
Marc Jones8a49ac72013-01-16 17:02:20 -0700795 .read_resources = nb_read_resources,
796 .set_resources = nb_set_resources,
Marc Jones8d595692012-03-15 12:55:26 -0600797 .enable_resources = pci_dev_enable_resources,
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200798 .acpi_fill_ssdt_generator = northbridge_fill_ssdt_generator,
799 .write_acpi_tables = agesa_write_acpi_tables,
Marc Jones8d595692012-03-15 12:55:26 -0600800 .init = northbridge_init,
801 .enable = 0,.ops_pci = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000802};
803
Frank Vibrans39fca802011-02-14 18:35:15 +0000804static const struct pci_driver northbridge_driver __pci_driver = {
Marc Jones8d595692012-03-15 12:55:26 -0600805 .ops = &northbridge_operations,
806 .vendor = PCI_VENDOR_ID_AMD,
807 .device = 0x1510,
Frank Vibrans39fca802011-02-14 18:35:15 +0000808};
809
efdesign9805a89ab2011-06-20 17:38:49 -0700810struct chip_operations northbridge_amd_agesa_family14_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600811 CHIP_NAME("AMD Family 14h Northbridge")
812 .enable_dev = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000813};
814
Frank Vibrans39fca802011-02-14 18:35:15 +0000815/* Root Complex Structures */
816
Frank Vibrans39fca802011-02-14 18:35:15 +0000817static struct device_operations pci_domain_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600818 .read_resources = domain_read_resources,
819 .set_resources = domain_set_resources,
Edward O'Callaghane9e1d7a2015-01-02 15:11:49 +1100820 .init = DEVICE_NOOP,
Marc Jones8d595692012-03-15 12:55:26 -0600821 .scan_bus = pci_domain_scan_bus,
Tobias Diedrichd8a2c1f2017-02-20 02:46:19 +0100822 .acpi_name = domain_acpi_name,
Frank Vibrans39fca802011-02-14 18:35:15 +0000823};
824
Frank Vibrans39fca802011-02-14 18:35:15 +0000825static struct device_operations cpu_bus_ops = {
Edward O'Callaghan2837ab22014-11-06 08:57:40 +1100826 .read_resources = DEVICE_NOOP,
827 .set_resources = DEVICE_NOOP,
Edward O'Callaghane9e1d7a2015-01-02 15:11:49 +1100828 .enable_resources = DEVICE_NOOP,
Marc Jones8d595692012-03-15 12:55:26 -0600829 .init = cpu_bus_init,
zbaof7223732012-04-13 13:42:15 +0800830 .scan_bus = cpu_bus_scan,
Frank Vibrans39fca802011-02-14 18:35:15 +0000831};
832
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300833static void root_complex_enable_dev(struct device *dev)
834{
835 static int done = 0;
836
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300837 if (!done) {
838 setup_bsp_ramtop();
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300839 done = 1;
840 }
841
Marc Jones8d595692012-03-15 12:55:26 -0600842 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800843 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Marc Jones8d595692012-03-15 12:55:26 -0600844 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800845 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Marc Jones8d595692012-03-15 12:55:26 -0600846 dev->ops = &cpu_bus_ops;
847 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000848}
849
efdesign9805a89ab2011-06-20 17:38:49 -0700850struct chip_operations northbridge_amd_agesa_family14_root_complex_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600851 CHIP_NAME("AMD Family 14h Root Complex")
852 .enable_dev = root_complex_enable_dev,
Frank Vibrans39fca802011-02-14 18:35:15 +0000853};
Kyösti Mälkki2b218e32019-01-15 11:14:28 +0200854
855/********************************************************************
856* Change the vendor / device IDs to match the generic VBIOS header.
857********************************************************************/
858u32 map_oprom_vendev(u32 vendev)
859{
860 u32 new_vendev = vendev;
861
862 switch (vendev) {
863 case 0x10029809:
864 case 0x10029808:
865 case 0x10029807:
866 case 0x10029806:
867 case 0x10029805:
868 case 0x10029804:
869 case 0x10029803:
870 new_vendev = 0x10029802;
871 break;
872 }
873
874 return new_vendev;
875}