blob: f1a2051233403ba7d363b29c6d35208893bbdb00 [file] [log] [blame]
zbao2c08f6a2012-07-02 15:32:58 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 Advanced Micro Devices, Inc.
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +03005 * Copyright (C) 2014 Edward O'Callaghan <eocallaghan@alterapraxis.com>
zbao2c08f6a2012-07-02 15:32:58 +08006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
zbao2c08f6a2012-07-02 15:32:58 +080015 */
16
17#include <console/console.h>
18#include <arch/io.h>
Kyösti Mälkki8ae16a42014-06-19 20:44:34 +030019#include <arch/acpi.h>
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +020020#include <arch/acpigen.h>
zbao2c08f6a2012-07-02 15:32:58 +080021#include <stdint.h>
22#include <device/device.h>
23#include <device/pci.h>
24#include <device/pci_ids.h>
25#include <device/hypertransport.h>
26#include <stdlib.h>
27#include <string.h>
Ronald G. Minnich5079a0d2012-11-27 11:32:38 -080028#include <lib.h>
zbao2c08f6a2012-07-02 15:32:58 +080029#include <cpu/cpu.h>
Martin Roth73e86a82013-01-17 16:28:30 -070030#include <AGESA.h>
zbao2c08f6a2012-07-02 15:32:58 +080031#include <cpu/x86/lapic.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020032#include <cpu/amd/msr.h>
Kyösti Mälkkidbc47392012-08-05 12:11:40 +030033#include <cpu/amd/mtrr.h>
zbao2c08f6a2012-07-02 15:32:58 +080034#include <Porting.h>
zbao2c08f6a2012-07-02 15:32:58 +080035#include <Options.h>
36#include <Topology.h>
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020037#include <northbridge/amd/agesa/state_machine.h>
Kyösti Mälkkid610c582017-03-05 06:28:18 +020038#include <northbridge/amd/agesa/agesa_helper.h>
zbao2c08f6a2012-07-02 15:32:58 +080039
Kyösti Mälkki113f6702018-05-20 20:12:32 +030040#define MAX_NODE_NUMS MAX_NODES
zbao2c08f6a2012-07-02 15:32:58 +080041
zbao2c08f6a2012-07-02 15:32:58 +080042typedef struct dram_base_mask {
43 u32 base; //[47:27] at [28:8]
44 u32 mask; //[47:27] at [28:8] and enable at bit 0
45} dram_base_mask_t;
46
47static unsigned node_nums;
48static unsigned sblink;
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030049static struct device *__f0_dev[MAX_NODE_NUMS];
50static struct device *__f1_dev[MAX_NODE_NUMS];
51static struct device *__f2_dev[MAX_NODE_NUMS];
52static struct device *__f4_dev[MAX_NODE_NUMS];
zbao2c08f6a2012-07-02 15:32:58 +080053static unsigned fx_devs = 0;
54
55static dram_base_mask_t get_dram_base_mask(u32 nodeid)
56{
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030057 struct device *dev;
zbao2c08f6a2012-07-02 15:32:58 +080058 dram_base_mask_t d;
59 dev = __f1_dev[0];
60 u32 temp;
61 temp = pci_read_config32(dev, 0x44 + (nodeid << 3)); //[39:24] at [31:16]
62 d.mask = ((temp & 0xfff80000)>>(8+3)); // mask out DramMask [26:24] too
63 temp = pci_read_config32(dev, 0x144 + (nodeid <<3)) & 0xff; //[47:40] at [7:0]
Elyes HAOUAS27e18012017-06-27 23:14:51 +020064 d.mask |= temp << 21;
zbao2c08f6a2012-07-02 15:32:58 +080065 temp = pci_read_config32(dev, 0x40 + (nodeid << 3)); //[39:24] at [31:16]
66 d.mask |= (temp & 1); // enable bit
67 d.base = ((temp & 0xfff80000)>>(8+3)); // mask out DramBase [26:24) too
68 temp = pci_read_config32(dev, 0x140 + (nodeid <<3)) & 0xff; //[47:40] at [7:0]
Elyes HAOUAS27e18012017-06-27 23:14:51 +020069 d.base |= temp << 21;
zbao2c08f6a2012-07-02 15:32:58 +080070 return d;
71}
72
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030073static void set_io_addr_reg(struct device *dev, u32 nodeid, u32 linkn, u32 reg,
zbao2c08f6a2012-07-02 15:32:58 +080074 u32 io_min, u32 io_max)
75{
76 u32 i;
77 u32 tempreg;
78 /* io range allocation */
Elyes HAOUAS27e18012017-06-27 23:14:51 +020079 tempreg = (nodeid&0xf) | ((nodeid & 0x30)<<(8-4)) | (linkn << 4) | ((io_max&0xf0)<<(12-4)); //limit
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +020080 for (i = 0; i < node_nums; i++)
zbao2c08f6a2012-07-02 15:32:58 +080081 pci_write_config32(__f1_dev[i], reg+4, tempreg);
Elyes HAOUAS27e18012017-06-27 23:14:51 +020082 tempreg = 3 /*| (3 << 4)*/ | ((io_min&0xf0)<<(12-4)); //base :ISA and VGA ?
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +020083 for (i = 0; i < node_nums; i++)
zbao2c08f6a2012-07-02 15:32:58 +080084 pci_write_config32(__f1_dev[i], reg, tempreg);
85}
86
87static void set_mmio_addr_reg(u32 nodeid, u32 linkn, u32 reg, u32 index, u32 mmio_min, u32 mmio_max, u32 nodes)
88{
89 u32 i;
90 u32 tempreg;
91 /* io range allocation */
Elyes HAOUAS27e18012017-06-27 23:14:51 +020092 tempreg = (nodeid&0xf) | (linkn << 4) | (mmio_max&0xffffff00); //limit
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +020093 for (i = 0; i < nodes; i++)
zbao2c08f6a2012-07-02 15:32:58 +080094 pci_write_config32(__f1_dev[i], reg+4, tempreg);
95 tempreg = 3 | (nodeid & 0x30) | (mmio_min&0xffffff00);
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +020096 for (i = 0; i < node_nums; i++)
zbao2c08f6a2012-07-02 15:32:58 +080097 pci_write_config32(__f1_dev[i], reg, tempreg);
98}
99
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300100static struct device *get_node_pci(u32 nodeid, u32 fn)
zbao2c08f6a2012-07-02 15:32:58 +0800101{
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300102 return pcidev_on_root(CONFIG_CDB + nodeid, fn);
zbao2c08f6a2012-07-02 15:32:58 +0800103}
104
105static void get_fx_devs(void)
106{
107 int i;
108 for (i = 0; i < MAX_NODE_NUMS; i++) {
109 __f0_dev[i] = get_node_pci(i, 0);
110 __f1_dev[i] = get_node_pci(i, 1);
111 __f2_dev[i] = get_node_pci(i, 2);
112 __f4_dev[i] = get_node_pci(i, 4);
113 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
114 fx_devs = i+1;
115 }
116 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
117 die("Cannot find 0:0x18.[0|1]\n");
118 }
119 printk(BIOS_DEBUG, "fx_devs=0x%x\n", fx_devs);
120}
121
122static u32 f1_read_config32(unsigned reg)
123{
124 if (fx_devs == 0)
125 get_fx_devs();
126 return pci_read_config32(__f1_dev[0], reg);
127}
128
129static void f1_write_config32(unsigned reg, u32 value)
130{
131 int i;
132 if (fx_devs == 0)
133 get_fx_devs();
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200134 for (i = 0; i < fx_devs; i++) {
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300135 struct device *dev;
zbao2c08f6a2012-07-02 15:32:58 +0800136 dev = __f1_dev[i];
137 if (dev && dev->enabled) {
138 pci_write_config32(dev, reg, value);
139 }
140 }
141}
142
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300143static u32 amdfam15_nodeid(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800144{
zbao2c08f6a2012-07-02 15:32:58 +0800145 return (dev->path.pci.devfn >> 3) - CONFIG_CDB;
zbao2c08f6a2012-07-02 15:32:58 +0800146}
147
148static void set_vga_enable_reg(u32 nodeid, u32 linkn)
149{
150 u32 val;
151
Elyes HAOUAS27e18012017-06-27 23:14:51 +0200152 val = 1 | (nodeid << 4) | (linkn << 12);
zbao2c08f6a2012-07-02 15:32:58 +0800153 /* it will routing
154 * (1)mmio 0xa0000:0xbffff
155 * (2)io 0x3b0:0x3bb, 0x3c0:0x3df
156 */
157 f1_write_config32(0xf4, val);
158
159}
160
161/**
162 * @return
Edward O'Callaghanae5fd342014-11-20 19:58:09 +1100163 * @retval 2 resoure does not exist, usable
164 * @retval 0 resource exists, not usable
zbao2c08f6a2012-07-02 15:32:58 +0800165 * @retval 1 resource exist, resource has been allocated before
166 */
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300167static int reg_useable(unsigned reg, struct device *goal_dev, unsigned goal_nodeid,
zbao2c08f6a2012-07-02 15:32:58 +0800168 unsigned goal_link)
169{
170 struct resource *res;
171 unsigned nodeid, link = 0;
172 int result;
173 res = 0;
174 for (nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300175 struct device *dev;
zbao2c08f6a2012-07-02 15:32:58 +0800176 dev = __f0_dev[nodeid];
177 if (!dev)
178 continue;
179 for (link = 0; !res && (link < 8); link++) {
180 res = probe_resource(dev, IOINDEX(0x1000 + reg, link));
181 }
182 }
183 result = 2;
184 if (res) {
185 result = 0;
186 if ((goal_link == (link - 1)) &&
187 (goal_nodeid == (nodeid - 1)) &&
188 (res->flags <= 1)) {
189 result = 1;
190 }
191 }
192 return result;
193}
194
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300195static struct resource *amdfam15_find_iopair(struct device *dev, unsigned nodeid, unsigned link)
zbao2c08f6a2012-07-02 15:32:58 +0800196{
197 struct resource *resource;
198 u32 free_reg, reg;
199 resource = 0;
200 free_reg = 0;
201 for (reg = 0xc0; reg <= 0xd8; reg += 0x8) {
202 int result;
203 result = reg_useable(reg, dev, nodeid, link);
204 if (result == 1) {
205 /* I have been allocated this one */
206 break;
207 }
208 else if (result > 1) {
209 /* I have a free register pair */
210 free_reg = reg;
211 }
212 }
213 if (reg > 0xd8) {
214 reg = free_reg; // if no free, the free_reg still be 0
215 }
216
217 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
218
219 return resource;
220}
221
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300222static struct resource *amdfam15_find_mempair(struct device *dev, u32 nodeid, u32 link)
zbao2c08f6a2012-07-02 15:32:58 +0800223{
224 struct resource *resource;
225 u32 free_reg, reg;
226 resource = 0;
227 free_reg = 0;
228 for (reg = 0x80; reg <= 0xb8; reg += 0x8) {
229 int result;
230 result = reg_useable(reg, dev, nodeid, link);
231 if (result == 1) {
232 /* I have been allocated this one */
233 break;
234 }
235 else if (result > 1) {
236 /* I have a free register pair */
237 free_reg = reg;
238 }
239 }
240 if (reg > 0xb8) {
241 reg = free_reg;
242 }
243
244 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
245 return resource;
246}
247
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300248static void amdfam15_link_read_bases(struct device *dev, u32 nodeid, u32 link)
zbao2c08f6a2012-07-02 15:32:58 +0800249{
250 struct resource *resource;
251
252 /* Initialize the io space constraints on the current bus */
253 resource = amdfam15_find_iopair(dev, nodeid, link);
254 if (resource) {
255 u32 align;
256 align = log2(HT_IO_HOST_ALIGN);
257 resource->base = 0;
258 resource->size = 0;
259 resource->align = align;
260 resource->gran = align;
261 resource->limit = 0xffffUL;
262 resource->flags = IORESOURCE_IO | IORESOURCE_BRIDGE;
263 }
264
265 /* Initialize the prefetchable memory constraints on the current bus */
266 resource = amdfam15_find_mempair(dev, nodeid, link);
267 if (resource) {
268 resource->base = 0;
269 resource->size = 0;
270 resource->align = log2(HT_MEM_HOST_ALIGN);
271 resource->gran = log2(HT_MEM_HOST_ALIGN);
272 resource->limit = 0xffffffffffULL;
273 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
274 resource->flags |= IORESOURCE_BRIDGE;
275 }
276
277 /* Initialize the memory constraints on the current bus */
278 resource = amdfam15_find_mempair(dev, nodeid, link);
279 if (resource) {
280 resource->base = 0;
281 resource->size = 0;
282 resource->align = log2(HT_MEM_HOST_ALIGN);
283 resource->gran = log2(HT_MEM_HOST_ALIGN);
284 resource->limit = 0xffffffffffULL;
285 resource->flags = IORESOURCE_MEM | IORESOURCE_BRIDGE;
286 }
287
288}
289
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300290static void nb_read_resources(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800291{
292 u32 nodeid;
293 struct bus *link;
294
295 nodeid = amdfam15_nodeid(dev);
296 for (link = dev->link_list; link; link = link->next) {
297 if (link->children) {
298 amdfam15_link_read_bases(dev, nodeid, link->link_num);
299 }
300 }
Steven Sherk1cbabb02013-02-01 09:22:35 -0700301
302 /*
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800303 * This MMCONF resource must be reserved in the PCI domain.
Steven Sherk1cbabb02013-02-01 09:22:35 -0700304 * It is not honored by the coreboot resource allocator if it is in
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800305 * the CPU_CLUSTER.
Steven Sherk1cbabb02013-02-01 09:22:35 -0700306 */
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200307 mmconf_resource(dev, MMIO_CONF_BASE);
zbao2c08f6a2012-07-02 15:32:58 +0800308}
309
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300310static void set_resource(struct device *dev, struct resource *resource, u32 nodeid)
zbao2c08f6a2012-07-02 15:32:58 +0800311{
312 resource_t rbase, rend;
313 unsigned reg, link_num;
314 char buf[50];
315
316 /* Make certain the resource has actually been set */
317 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
318 return;
319 }
320
321 /* If I have already stored this resource don't worry about it */
322 if (resource->flags & IORESOURCE_STORED) {
323 return;
324 }
325
326 /* Only handle PCI memory and IO resources */
327 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
328 return;
329
330 /* Ensure I am actually looking at a resource of function 1 */
331 if ((resource->index & 0xffff) < 0x1000) {
332 return;
333 }
334 /* Get the base address */
335 rbase = resource->base;
336
337 /* Get the limit (rounded up) */
338 rend = resource_end(resource);
339
340 /* Get the register and link */
341 reg = resource->index & 0xfff; // 4k
342 link_num = IOINDEX_LINK(resource->index);
343
344 if (resource->flags & IORESOURCE_IO) {
345 set_io_addr_reg(dev, nodeid, link_num, reg, rbase>>8, rend>>8);
346 }
347 else if (resource->flags & IORESOURCE_MEM) {
Edward O'Callaghanae5fd342014-11-20 19:58:09 +1100348 set_mmio_addr_reg(nodeid, link_num, reg, (resource->index >>24), rbase>>8, rend>>8, node_nums);// [39:8]
zbao2c08f6a2012-07-02 15:32:58 +0800349 }
350 resource->flags |= IORESOURCE_STORED;
Elyes HAOUAS0d4b11a2016-10-03 21:57:21 +0200351 snprintf(buf, sizeof(buf), " <node %x link %x>",
zbao2c08f6a2012-07-02 15:32:58 +0800352 nodeid, link_num);
353 report_resource_stored(dev, resource, buf);
354}
355
356/**
357 * I tried to reuse the resource allocation code in set_resource()
358 * but it is too difficult to deal with the resource allocation magic.
359 */
360
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300361static void create_vga_resource(struct device *dev, unsigned nodeid)
zbao2c08f6a2012-07-02 15:32:58 +0800362{
363 struct bus *link;
364
365 /* find out which link the VGA card is connected,
366 * we only deal with the 'first' vga card */
367 for (link = dev->link_list; link; link = link->next) {
368 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
Martin Roth77a58b92017-06-24 14:45:48 -0600369#if IS_ENABLED(CONFIG_MULTIPLE_VGA_ADAPTERS)
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300370 extern struct device *vga_pri; // the primary vga device, defined in device.c
zbao2c08f6a2012-07-02 15:32:58 +0800371 printk(BIOS_DEBUG, "VGA: vga_pri bus num = %d bus range [%d,%d]\n", vga_pri->bus->secondary,
372 link->secondary,link->subordinate);
373 /* We need to make sure the vga_pri is under the link */
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200374 if ((vga_pri->bus->secondary >= link->secondary) &&
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300375 (vga_pri->bus->secondary <= link->subordinate))
zbao2c08f6a2012-07-02 15:32:58 +0800376#endif
377 break;
378 }
379 }
380
381 /* no VGA card installed */
382 if (link == NULL)
383 return;
384
385 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n", dev_path(dev), nodeid, sblink);
386 set_vga_enable_reg(nodeid, sblink);
387}
388
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300389static void nb_set_resources(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800390{
391 unsigned nodeid;
392 struct bus *bus;
393 struct resource *res;
394
395 /* Find the nodeid */
396 nodeid = amdfam15_nodeid(dev);
397
398 create_vga_resource(dev, nodeid); //TODO: do we need this?
399
400 /* Set each resource we have found */
401 for (res = dev->resource_list; res; res = res->next) {
402 set_resource(dev, res, nodeid);
403 }
404
405 for (bus = dev->link_list; bus; bus = bus->next) {
406 if (bus->children) {
407 assign_resources(bus);
408 }
409 }
410}
411
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100412static unsigned long acpi_fill_hest(acpi_hest_t *hest)
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200413{
414 void *addr, *current;
415
416 /* Skip the HEST header. */
417 current = (void *)(hest + 1);
418
419 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
420 if (addr != NULL)
Stefan Reinauer77a1d1a2015-07-21 12:48:17 -0700421 current += acpi_create_hest_error_source(hest, current, 0,
422 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200423
424 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
425 if (addr != NULL)
Stefan Reinauer77a1d1a2015-07-21 12:48:17 -0700426 current += acpi_create_hest_error_source(hest, current, 1,
427 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200428
429 return (unsigned long)current;
430}
431
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300432static void northbridge_fill_ssdt_generator(struct device *device)
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200433{
434 msr_t msr;
435 char pscope[] = "\\_SB.PCI0";
436
437 acpigen_write_scope(pscope);
438 msr = rdmsr(TOP_MEM);
439 acpigen_write_name_dword("TOM1", msr.lo);
440 msr = rdmsr(TOP_MEM2);
441 /*
442 * Since XP only implements parts of ACPI 2.0, we can't use a qword
443 * here.
444 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
445 * slide 22ff.
446 * Shift value right by 20 bit to make it fit into 32bit,
447 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
448 */
449 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
450 acpigen_pop_len();
451}
452
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300453static unsigned long agesa_write_acpi_tables(struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200454 unsigned long current,
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200455 acpi_rsdp_t *rsdp)
456{
457 acpi_srat_t *srat;
458 acpi_slit_t *slit;
459 acpi_header_t *ssdt;
460 acpi_header_t *alib;
461 acpi_header_t *ivrs;
462 acpi_hest_t *hest;
463
464 /* HEST */
465 current = ALIGN(current, 8);
466 hest = (acpi_hest_t *)current;
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100467 acpi_write_hest((void *)current, acpi_fill_hest);
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200468 acpi_add_table(rsdp, (void *)current);
469 current += ((acpi_header_t *)current)->length;
470
471 current = ALIGN(current, 8);
472 printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
473 ivrs = agesawrapper_getlateinitptr(PICK_IVRS);
474 if (ivrs != NULL) {
475 memcpy((void *)current, ivrs, ivrs->length);
476 ivrs = (acpi_header_t *) current;
477 current += ivrs->length;
478 acpi_add_table(rsdp, ivrs);
479 } else {
480 printk(BIOS_DEBUG, " AGESA IVRS table NULL. Skipping.\n");
481 }
482
483 /* SRAT */
484 current = ALIGN(current, 8);
485 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
486 srat = (acpi_srat_t *) agesawrapper_getlateinitptr (PICK_SRAT);
487 if (srat != NULL) {
488 memcpy((void *)current, srat, srat->header.length);
489 srat = (acpi_srat_t *) current;
490 current += srat->header.length;
491 acpi_add_table(rsdp, srat);
492 } else {
493 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
494 }
495
496 /* SLIT */
497 current = ALIGN(current, 8);
498 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
499 slit = (acpi_slit_t *) agesawrapper_getlateinitptr (PICK_SLIT);
500 if (slit != NULL) {
501 memcpy((void *)current, slit, slit->header.length);
502 slit = (acpi_slit_t *) current;
503 current += slit->header.length;
504 acpi_add_table(rsdp, slit);
505 } else {
506 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
507 }
508
509 /* ALIB */
510 current = ALIGN(current, 16);
511 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
512 alib = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_ALIB);
513 if (alib != NULL) {
514 memcpy((void *)current, alib, alib->length);
515 alib = (acpi_header_t *) current;
516 current += alib->length;
517 acpi_add_table(rsdp, (void *)alib);
518 }
519 else {
520 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL. Skipping.\n");
521 }
522
523 /* this pstate ssdt may cause Blue Screen: Fixed: Keep this comment for a while. */
524 /* SSDT */
525 current = ALIGN(current, 16);
526 printk(BIOS_DEBUG, "ACPI: * SSDT at %lx\n", current);
527 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_PSTATE);
528 if (ssdt != NULL) {
529 memcpy((void *)current, ssdt, ssdt->length);
530 ssdt = (acpi_header_t *) current;
531 current += ssdt->length;
532 }
533 else {
534 printk(BIOS_DEBUG, " AGESA PState table NULL. Skipping.\n");
535 }
536 acpi_add_table(rsdp,ssdt);
537
538 printk(BIOS_DEBUG, "ACPI: * SSDT for PState at %lx\n", current);
539
540 return current;
541}
542
543
zbao2c08f6a2012-07-02 15:32:58 +0800544static struct device_operations northbridge_operations = {
Steven Sherkf4340582013-01-29 16:13:35 -0700545 .read_resources = nb_read_resources,
546 .set_resources = nb_set_resources,
zbao2c08f6a2012-07-02 15:32:58 +0800547 .enable_resources = pci_dev_enable_resources,
Edward O'Callaghand994ef12014-11-21 02:22:33 +1100548 .init = DEVICE_NOOP,
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200549 .acpi_fill_ssdt_generator = northbridge_fill_ssdt_generator,
550 .write_acpi_tables = agesa_write_acpi_tables,
zbao2c08f6a2012-07-02 15:32:58 +0800551 .enable = 0,
552 .ops_pci = 0,
553};
554
555static const struct pci_driver family15_northbridge __pci_driver = {
556 .ops = &northbridge_operations,
557 .vendor = PCI_VENDOR_ID_AMD,
Marshall Dawson463f46e2016-10-14 20:46:08 -0600558 .device = PCI_DEVICE_ID_AMD_15H_MODEL_101F_NB_HT,
zbao2c08f6a2012-07-02 15:32:58 +0800559};
560
561static const struct pci_driver family10_northbridge __pci_driver = {
562 .ops = &northbridge_operations,
563 .vendor = PCI_VENDOR_ID_AMD,
564 .device = PCI_DEVICE_ID_AMD_10H_NB_HT,
565};
566
567struct chip_operations northbridge_amd_agesa_family15tn_ops = {
568 CHIP_NAME("AMD FAM15 Northbridge")
569 .enable_dev = 0,
570};
571
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300572static void domain_read_resources(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800573{
574 unsigned reg;
575
576 /* Find the already assigned resource pairs */
577 get_fx_devs();
578 for (reg = 0x80; reg <= 0xd8; reg+= 0x08) {
579 u32 base, limit;
580 base = f1_read_config32(reg);
581 limit = f1_read_config32(reg + 0x04);
582 /* Is this register allocated? */
583 if ((base & 3) != 0) {
584 unsigned nodeid, reg_link;
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300585 struct device *reg_dev;
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200586 if (reg < 0xc0) { // mmio
zbao2c08f6a2012-07-02 15:32:58 +0800587 nodeid = (limit & 0xf) + (base&0x30);
588 } else { // io
589 nodeid = (limit & 0xf) + ((base>>4)&0x30);
590 }
591 reg_link = (limit >> 4) & 7;
592 reg_dev = __f0_dev[nodeid];
593 if (reg_dev) {
594 /* Reserve the resource */
595 struct resource *res;
596 res = new_resource(reg_dev, IOINDEX(0x1000 + reg, reg_link));
597 if (res) {
598 res->flags = 1;
599 }
600 }
601 }
602 }
603 /* FIXME: do we need to check extend conf space?
604 I don't believe that much preset value */
605
zbao2c08f6a2012-07-02 15:32:58 +0800606 pci_domain_read_resources(dev);
zbao2c08f6a2012-07-02 15:32:58 +0800607}
608
zbao2c08f6a2012-07-02 15:32:58 +0800609#if CONFIG_HW_MEM_HOLE_SIZEK != 0
610struct hw_mem_hole_info {
611 unsigned hole_startk;
612 int node_id;
613};
614static struct hw_mem_hole_info get_hw_mem_hole_info(void)
615{
616 struct hw_mem_hole_info mem_hole;
617 int i;
618 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
619 mem_hole.node_id = -1;
620 for (i = 0; i < node_nums; i++) {
621 dram_base_mask_t d;
622 u32 hole;
623 d = get_dram_base_mask(i);
624 if (!(d.mask & 1)) continue; // no memory on this node
625 hole = pci_read_config32(__f1_dev[i], 0xf0);
626 if (hole & 1) { // we find the hole
Elyes HAOUAS27e18012017-06-27 23:14:51 +0200627 mem_hole.hole_startk = (hole & (0xff << 24)) >> 10;
zbao2c08f6a2012-07-02 15:32:58 +0800628 mem_hole.node_id = i; // record the node No with hole
629 break; // only one hole
630 }
631 }
Kyösti Mälkki2f9b3af2014-06-26 05:30:54 +0300632
633 /* We need to double check if there is special set on base reg and limit reg
634 * are not continuous instead of hole, it will find out its hole_startk.
635 */
zbao2c08f6a2012-07-02 15:32:58 +0800636 if (mem_hole.node_id == -1) {
637 resource_t limitk_pri = 0;
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200638 for (i = 0; i < node_nums; i++) {
zbao2c08f6a2012-07-02 15:32:58 +0800639 dram_base_mask_t d;
640 resource_t base_k, limit_k;
641 d = get_dram_base_mask(i);
642 if (!(d.base & 1)) continue;
643 base_k = ((resource_t)(d.base & 0x1fffff00)) <<9;
644 if (base_k > 4 *1024 * 1024) break; // don't need to go to check
645 if (limitk_pri != base_k) { // we find the hole
646 mem_hole.hole_startk = (unsigned)limitk_pri; // must beblow 4G
647 mem_hole.node_id = i;
648 break; //only one hole
649 }
zbao15dc3cc2012-08-03 15:56:21 +0800650 limit_k = ((resource_t)(((d.mask & ~1) + 0x000FF) & 0x1fffff00)) << 9;
zbao2c08f6a2012-07-02 15:32:58 +0800651 limitk_pri = limit_k;
652 }
653 }
654 return mem_hole;
655}
656#endif
657
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300658static void domain_set_resources(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800659{
zbao2c08f6a2012-07-02 15:32:58 +0800660 unsigned long mmio_basek;
661 u32 pci_tolm;
662 int i, idx;
663 struct bus *link;
664#if CONFIG_HW_MEM_HOLE_SIZEK != 0
665 struct hw_mem_hole_info mem_hole;
666 u32 reset_memhole = 1;
667#endif
668
zbao2c08f6a2012-07-02 15:32:58 +0800669 pci_tolm = 0xffffffffUL;
670 for (link = dev->link_list; link; link = link->next) {
671 pci_tolm = find_pci_tolm(link);
672 }
673
674 // FIXME handle interleaved nodes. If you fix this here, please fix
675 // amdk8, too.
676 mmio_basek = pci_tolm >> 10;
677 /* Round mmio_basek to something the processor can support */
678 mmio_basek &= ~((1 << 6) -1);
679
680 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
681 // MMIO hole. If you fix this here, please fix amdk8, too.
682 /* Round the mmio hole to 64M */
683 mmio_basek &= ~((64*1024) - 1);
684
685#if CONFIG_HW_MEM_HOLE_SIZEK != 0
686 /* if the hw mem hole is already set in raminit stage, here we will compare
687 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
688 * use hole_basek as mmio_basek and we don't need to reset hole.
689 * otherwise We reset the hole to the mmio_basek
690 */
691
692 mem_hole = get_hw_mem_hole_info();
693
694 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
695 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
696 mmio_basek = mem_hole.hole_startk;
697 reset_memhole = 0;
698 }
699#endif
700
701 idx = 0x10;
702 for (i = 0; i < node_nums; i++) {
703 dram_base_mask_t d;
704 resource_t basek, limitk, sizek; // 4 1T
705
706 d = get_dram_base_mask(i);
707
708 if (!(d.mask & 1)) continue;
709 basek = ((resource_t)(d.base & 0x1fffff00)) << 9; // could overflow, we may lost 6 bit here
Edward O'Callaghanae5fd342014-11-20 19:58:09 +1100710 limitk = ((resource_t)(((d.mask & ~1) + 0x000FF) & 0x1fffff00)) << 9;
zbao2c08f6a2012-07-02 15:32:58 +0800711
712 sizek = limitk - basek;
713
714 /* see if we need a hole from 0xa0000 to 0xbffff */
715 if ((basek < ((8*64)+(8*16))) && (sizek > ((8*64)+(16*16)))) {
716 ram_resource(dev, (idx | i), basek, ((8*64)+(8*16)) - basek);
717 idx += 0x10;
718 basek = (8*64)+(16*16);
719 sizek = limitk - ((8*64)+(16*16));
720
721 }
722
Kyösti Mälkki26c65432014-06-26 05:30:54 +0300723 /* split the region to accommodate pci memory space */
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200724 if ((basek < 4*1024*1024) && (limitk > mmio_basek)) {
zbao2c08f6a2012-07-02 15:32:58 +0800725 if (basek <= mmio_basek) {
726 unsigned pre_sizek;
727 pre_sizek = mmio_basek - basek;
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200728 if (pre_sizek > 0) {
zbao2c08f6a2012-07-02 15:32:58 +0800729 ram_resource(dev, (idx | i), basek, pre_sizek);
730 idx += 0x10;
731 sizek -= pre_sizek;
zbao2c08f6a2012-07-02 15:32:58 +0800732 }
733 basek = mmio_basek;
734 }
735 if ((basek + sizek) <= 4*1024*1024) {
736 sizek = 0;
737 }
738 else {
Siyuan Wang29840e22013-06-04 19:56:22 +0800739 uint64_t topmem2 = bsp_topmem2();
zbao2c08f6a2012-07-02 15:32:58 +0800740 basek = 4*1024*1024;
Siyuan Wang29840e22013-06-04 19:56:22 +0800741 sizek = topmem2/1024 - basek;
zbao2c08f6a2012-07-02 15:32:58 +0800742 }
743 }
744
zbao2c08f6a2012-07-02 15:32:58 +0800745 ram_resource(dev, (idx | i), basek, sizek);
746 idx += 0x10;
zbao2c08f6a2012-07-02 15:32:58 +0800747 printk(BIOS_DEBUG, "node %d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
748 i, mmio_basek, basek, limitk);
zbao2c08f6a2012-07-02 15:32:58 +0800749 }
750
Kyösti Mälkki61be3602017-04-15 20:07:53 +0300751 add_uma_resource_below_tolm(dev, 7);
zbao2c08f6a2012-07-02 15:32:58 +0800752
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200753 for (link = dev->link_list; link; link = link->next) {
zbao2c08f6a2012-07-02 15:32:58 +0800754 if (link->children) {
755 assign_resources(link);
756 }
757 }
758}
759
760static struct device_operations pci_domain_ops = {
761 .read_resources = domain_read_resources,
762 .set_resources = domain_set_resources,
Edward O'Callaghane9e1d7a2015-01-02 15:11:49 +1100763 .init = DEVICE_NOOP,
zbao2c08f6a2012-07-02 15:32:58 +0800764 .scan_bus = pci_domain_scan_bus,
zbao2c08f6a2012-07-02 15:32:58 +0800765};
766
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300767static void sysconf_init(struct device *dev) // first node
zbao2c08f6a2012-07-02 15:32:58 +0800768{
769 sblink = (pci_read_config32(dev, 0x64)>>8) & 7; // don't forget sublink1
770 node_nums = ((pci_read_config32(dev, 0x60)>>4) & 7) + 1; //NodeCnt[2:0]
771}
772
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300773static void add_more_links(struct device *dev, unsigned total_links)
zbao2c08f6a2012-07-02 15:32:58 +0800774{
775 struct bus *link, *last = NULL;
776 int link_num;
777
778 for (link = dev->link_list; link; link = link->next)
779 last = link;
780
781 if (last) {
782 int links = total_links - last->link_num;
783 link_num = last->link_num;
784 if (links > 0) {
785 link = malloc(links*sizeof(*link));
786 if (!link)
787 die("Couldn't allocate more links!\n");
788 memset(link, 0, links*sizeof(*link));
789 last->next = link;
790 }
791 }
792 else {
793 link_num = -1;
794 link = malloc(total_links*sizeof(*link));
795 memset(link, 0, total_links*sizeof(*link));
796 dev->link_list = link;
797 }
798
799 for (link_num = link_num + 1; link_num < total_links; link_num++) {
800 link->link_num = link_num;
801 link->dev = dev;
802 link->next = link + 1;
803 last = link;
804 link = link->next;
805 }
806 last->next = NULL;
807}
808
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300809static void cpu_bus_scan(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800810{
811 struct bus *cpu_bus;
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300812 struct device *dev_mc;
zbao2c08f6a2012-07-02 15:32:58 +0800813 int i,j;
814 int coreid_bits;
815 int core_max = 0;
816 unsigned ApicIdCoreIdSize;
817 unsigned core_nums;
818 int siblings = 0;
819 unsigned int family;
820
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300821 dev_mc = pcidev_on_root(CONFIG_CDB, 0);
zbao2c08f6a2012-07-02 15:32:58 +0800822 if (!dev_mc) {
823 printk(BIOS_ERR, "%02x:%02x.0 not found", CONFIG_CBB, CONFIG_CDB);
824 die("");
825 }
826 sysconf_init(dev_mc);
zbao2c08f6a2012-07-02 15:32:58 +0800827
828 /* Get Max Number of cores(MNC) */
Kyösti Mälkkid41feed2017-09-24 16:23:57 +0300829 coreid_bits = (cpuid_ecx(0x80000008) & 0x0000F000) >> 12;
zbao2c08f6a2012-07-02 15:32:58 +0800830 core_max = 1 << (coreid_bits & 0x000F); //mnc
831
832 ApicIdCoreIdSize = ((cpuid_ecx(0x80000008)>>12) & 0xF);
833 if (ApicIdCoreIdSize) {
834 core_nums = (1 << ApicIdCoreIdSize) - 1;
835 } else {
836 core_nums = 3; //quad core
837 }
838
839 /* Find which cpus are present */
840 cpu_bus = dev->link_list;
841 for (i = 0; i < node_nums; i++) {
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300842 struct device *cdb_dev;
Kyösti Mälkkiedf51d22018-05-20 22:38:00 +0300843 unsigned devn;
zbao2c08f6a2012-07-02 15:32:58 +0800844 struct bus *pbus;
845
zbao2c08f6a2012-07-02 15:32:58 +0800846 devn = CONFIG_CDB + i;
847 pbus = dev_mc->bus;
zbao2c08f6a2012-07-02 15:32:58 +0800848
849 /* Find the cpu's pci device */
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300850 cdb_dev = pcidev_on_root(devn, 0);
zbao2c08f6a2012-07-02 15:32:58 +0800851 if (!cdb_dev) {
852 /* If I am probing things in a weird order
853 * ensure all of the cpu's pci devices are found.
854 */
855 int fn;
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200856 for (fn = 0; fn <= 5; fn++) { //FBDIMM?
zbao2c08f6a2012-07-02 15:32:58 +0800857 cdb_dev = pci_probe_dev(NULL, pbus,
858 PCI_DEVFN(devn, fn));
859 }
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300860 cdb_dev = pcidev_on_root(devn, 0);
zbao2c08f6a2012-07-02 15:32:58 +0800861 } else {
862 /* Ok, We need to set the links for that device.
863 * otherwise the device under it will not be scanned
864 */
Kyösti Mälkki2a2d6132015-02-04 13:25:37 +0200865 add_more_links(cdb_dev, 4);
zbao2c08f6a2012-07-02 15:32:58 +0800866 }
867
868 family = cpuid_eax(1);
869 family = (family >> 20) & 0xFF;
870 if (family == 1) { //f10
871 u32 dword;
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300872 cdb_dev = pcidev_on_root(devn, 3);
zbao2c08f6a2012-07-02 15:32:58 +0800873 dword = pci_read_config32(cdb_dev, 0xe8);
874 siblings = ((dword & BIT15) >> 13) | ((dword & (BIT13 | BIT12)) >> 12);
875 } else if (family == 6) {//f15
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300876 cdb_dev = pcidev_on_root(devn, 5);
zbao2c08f6a2012-07-02 15:32:58 +0800877 if (cdb_dev && cdb_dev->enabled) {
878 siblings = pci_read_config32(cdb_dev, 0x84);
879 siblings &= 0xFF;
880 }
881 } else {
882 siblings = 0; //default one core
883 }
Kyösti Mälkkicd9fc1a2012-07-06 19:02:56 +0300884 int enable_node = cdb_dev && cdb_dev->enabled;
zbao2c08f6a2012-07-02 15:32:58 +0800885 printk(BIOS_SPEW, "%s family%xh, core_max=0x%x, core_nums=0x%x, siblings=0x%x\n",
886 dev_path(cdb_dev), 0x0f + family, core_max, core_nums, siblings);
887
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200888 for (j = 0; j <= siblings; j++) {
zbao2c08f6a2012-07-02 15:32:58 +0800889 extern CONST OPTIONS_CONFIG_TOPOLOGY ROMDATA TopologyConfiguration;
890 u32 modules = TopologyConfiguration.PlatformNumberOfModules;
891 u32 lapicid_start = 0;
892
zbao2c08f6a2012-07-02 15:32:58 +0800893 /*
894 * APIC ID calucation is tightly coupled with AGESA v5 code.
895 * This calculation MUST match the assignment calculation done
896 * in LocalApicInitializationAtEarly() function.
897 * And reference GetLocalApicIdForCore()
898 *
899 * Apply apic enumeration rules
900 * For systems with >= 16 APICs, put the IO-APICs at 0..n and
901 * put the local-APICs at m..z
902 *
903 * This is needed because many IO-APIC devices only have 4 bits
904 * for their APIC id and therefore must reside at 0..15
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +0200905 */
Kyösti Mälkki50036322016-05-18 13:35:21 +0300906
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +0200907 u8 plat_num_io_apics = 3; /* FIXME */
Kyösti Mälkki50036322016-05-18 13:35:21 +0300908
909 if ((node_nums * core_max) + plat_num_io_apics >= 0x10) {
910 lapicid_start = (plat_num_io_apics - 1) / core_max;
zbao2c08f6a2012-07-02 15:32:58 +0800911 lapicid_start = (lapicid_start + 1) * core_max;
912 printk(BIOS_SPEW, "lpaicid_start=0x%x ", lapicid_start);
913 }
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300914 u32 apic_id = (lapicid_start * (i/modules + 1)) + ((i % modules) ? (j + (siblings + 1)) : j);
zbao2c08f6a2012-07-02 15:32:58 +0800915 printk(BIOS_SPEW, "node 0x%x core 0x%x apicid=0x%x\n",
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300916 i, j, apic_id);
zbao2c08f6a2012-07-02 15:32:58 +0800917
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300918 struct device *cpu = add_cpu_device(cpu_bus, apic_id, enable_node);
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300919 if (cpu)
920 amd_cpu_topology(cpu, i, j);
zbao2c08f6a2012-07-02 15:32:58 +0800921 } //j
922 }
zbao2c08f6a2012-07-02 15:32:58 +0800923}
924
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300925static void cpu_bus_init(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800926{
927 initialize_cpus(dev->link_list);
928}
929
zbao2c08f6a2012-07-02 15:32:58 +0800930static struct device_operations cpu_bus_ops = {
Edward O'Callaghan2837ab22014-11-06 08:57:40 +1100931 .read_resources = DEVICE_NOOP,
932 .set_resources = DEVICE_NOOP,
Edward O'Callaghan812d2a42014-10-31 08:17:23 +1100933 .enable_resources = DEVICE_NOOP,
zbao2c08f6a2012-07-02 15:32:58 +0800934 .init = cpu_bus_init,
935 .scan_bus = cpu_bus_scan,
936};
937
938static void root_complex_enable_dev(struct device *dev)
939{
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300940 static int done = 0;
941
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300942 if (!done) {
943 setup_bsp_ramtop();
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300944 done = 1;
945 }
946
zbao2c08f6a2012-07-02 15:32:58 +0800947 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800948 if (dev->path.type == DEVICE_PATH_DOMAIN) {
zbao2c08f6a2012-07-02 15:32:58 +0800949 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800950 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
zbao2c08f6a2012-07-02 15:32:58 +0800951 dev->ops = &cpu_bus_ops;
952 }
953}
954
955struct chip_operations northbridge_amd_agesa_family15tn_root_complex_ops = {
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300956 CHIP_NAME("AMD Family 15tn Root Complex")
zbao2c08f6a2012-07-02 15:32:58 +0800957 .enable_dev = root_complex_enable_dev,
958};
Dave Frodincbf3d402012-12-05 08:20:12 -0700959
Edward O'Callaghanae5fd342014-11-20 19:58:09 +1100960/*********************************************************************
961 * Change the vendor / device IDs to match the generic VBIOS header. *
962 *********************************************************************/
Dave Frodincbf3d402012-12-05 08:20:12 -0700963u32 map_oprom_vendev(u32 vendev)
964{
Edward O'Callaghanae5fd342014-11-20 19:58:09 +1100965 u32 new_vendev = vendev;
Dave Frodincbf3d402012-12-05 08:20:12 -0700966
Elyes HAOUAS0ce41f12018-11-13 10:03:31 +0100967 switch (vendev) {
Bruce Griffith42e11f52013-07-08 18:19:08 -0600968 case 0x10029900: /* AMD Radeon HD 7660G (Trinity) */
969 case 0x10029901: /* AMD Radeon HD 7660D (Trinity) */
970 case 0x10029903: /* AMD Radeon HD 7640G (Trinity) */
971 case 0x10029904: /* AMD Radeon HD 7560D (Trinity) */
972 case 0x10029907: /* AMD Radeon HD 7620G (Trinity) */
973 case 0x10029908: /* AMD Radeon HD 7600G (Trinity) */
974 case 0x1002990A: /* AMD Radeon HD 7500G (Trinity) */
975 case 0x1002990B: /* AMD Radeon HD 8650G (Richland) */
976 case 0x1002990C: /* AMD Radeon HD 8670D (Richland) */
977 case 0x1002990D: /* AMD Radeon HD 8550G (Richland) */
978 case 0x1002990E: /* AMD Radeon HD 8570D (Richland) */
979 case 0x1002990F: /* AMD Radeon HD 8610G (Richland) */
980 case 0x10029910: /* AMD Radeon HD 7660G (Trinity) */
981 case 0x10029913: /* AMD Radeon HD 7640G (Trinity) */
982 case 0x10029917: /* AMD Radeon HD 7620G (Trinity) */
983 case 0x10029918: /* AMD Radeon HD 7600G (Trinity) */
984 case 0x10029919: /* AMD Radeon HD 7500G (Trinity) */
985 case 0x10029990: /* AMD Radeon HD 7520G (Trinity) */
986 case 0x10029991: /* AMD Radeon HD 7540D (Trinity) */
987 case 0x10029992: /* AMD Radeon HD 7420G (Trinity) */
988 case 0x10029993: /* AMD Radeon HD 7480D (Trinity) */
989 case 0x10029994: /* AMD Radeon HD 7400G (Trinity) */
990 case 0x10029995: /* AMD Radeon HD 8450G (Richland) */
991 case 0x10029996: /* AMD Radeon HD 8470D (Richland) */
992 case 0x10029997: /* AMD Radeon HD 8350G (Richland) */
993 case 0x10029998: /* AMD Radeon HD 8370D (Richland) */
994 case 0x10029999: /* AMD Radeon HD 8510G (Richland) */
995 case 0x1002999A: /* AMD Radeon HD 8410G (Richland) */
996 case 0x1002999B: /* AMD Radeon HD 8310G (Richland) */
997 case 0x1002999C: /* AMD Radeon HD 8650D (Richland) */
998 case 0x1002999D: /* AMD Radeon HD 8550D (Richland) */
999 case 0x100299A0: /* AMD Radeon HD 7520G (Trinity) */
1000 case 0x100299A2: /* AMD Radeon HD 7420G (Trinity) */
1001 case 0x100299A4: /* AMD Radeon HD 7400G (Trinity) */
Edward O'Callaghanae5fd342014-11-20 19:58:09 +11001002 new_vendev = 0x10029901;
Dave Frodincbf3d402012-12-05 08:20:12 -07001003 break;
1004 }
1005
1006 return new_vendev;
1007}