blob: 15efe12b8bbde716d544d24b4ab6ed5cf509b56b [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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <console/console.h>
21#include <arch/io.h>
22#include <stdint.h>
23#include <device/device.h>
24#include <device/pci.h>
25#include <device/pci_ids.h>
26#include <device/hypertransport.h>
27#include <stdlib.h>
28#include <string.h>
29#include <bitops.h>
30#include <cpu/cpu.h>
Marc Jones5750ed22012-03-15 13:21:41 -060031#include <cbmem.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000032
33#include <cpu/x86/lapic.h>
34
efdesign983f5ebd62011-09-14 13:47:17 -060035#include "agesawrapper.h"
Frank Vibrans39fca802011-02-14 18:35:15 +000036#include "chip.h"
37#include "northbridge.h"
Kerry Shefeed3292011-08-18 18:03:44 +080038#if CONFIG_AMD_SB_CIMX
39#include <sb_cimx.h>
40#endif
Frank Vibrans39fca802011-02-14 18:35:15 +000041
Frank Vibrans39fca802011-02-14 18:35:15 +000042//#define FX_DEVS NODE_NUMS
43#define FX_DEVS 1
44
45static device_t __f0_dev[FX_DEVS];
46static device_t __f1_dev[FX_DEVS];
47static device_t __f2_dev[FX_DEVS];
48static device_t __f4_dev[FX_DEVS];
Marc Jones8d595692012-03-15 12:55:26 -060049static unsigned fx_devs = 0;
Frank Vibrans39fca802011-02-14 18:35:15 +000050
51device_t get_node_pci(u32 nodeid, u32 fn)
52{
Marc Jones8d595692012-03-15 12:55:26 -060053 return dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB + nodeid, fn));
Frank Vibrans39fca802011-02-14 18:35:15 +000054}
55
Frank Vibrans39fca802011-02-14 18:35:15 +000056static void get_fx_devs(void)
57{
Marc Jones8d595692012-03-15 12:55:26 -060058 int i;
59 for (i = 0; i < FX_DEVS; i++) {
60 __f0_dev[i] = get_node_pci(i, 0);
61 __f1_dev[i] = get_node_pci(i, 1);
62 __f2_dev[i] = get_node_pci(i, 2);
63 __f4_dev[i] = get_node_pci(i, 4);
64 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
65 fx_devs = i + 1;
66 }
67 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
68 die("Cannot find 0:0x18.[0|1]\n");
69 }
Frank Vibrans39fca802011-02-14 18:35:15 +000070}
71
Frank Vibrans39fca802011-02-14 18:35:15 +000072static u32 f1_read_config32(unsigned reg)
73{
Marc Jones8d595692012-03-15 12:55:26 -060074 if (fx_devs == 0)
75 get_fx_devs();
76 return pci_read_config32(__f1_dev[0], reg);
Frank Vibrans39fca802011-02-14 18:35:15 +000077}
78
Frank Vibrans39fca802011-02-14 18:35:15 +000079static void f1_write_config32(unsigned reg, u32 value)
80{
Marc Jones8d595692012-03-15 12:55:26 -060081 int i;
82 if (fx_devs == 0)
83 get_fx_devs();
84 for (i = 0; i < fx_devs; i++) {
85 device_t dev;
86 dev = __f1_dev[i];
87 if (dev && dev->enabled) {
88 pci_write_config32(dev, reg, value);
89 }
90 }
Frank Vibrans39fca802011-02-14 18:35:15 +000091}
92
Frank Vibrans39fca802011-02-14 18:35:15 +000093static u32 amdfam14_nodeid(device_t dev)
94{
Marc Jones8d595692012-03-15 12:55:26 -060095 return (dev->path.pci.devfn >> 3) - CONFIG_CDB;
Frank Vibrans39fca802011-02-14 18:35:15 +000096}
97
Frank Vibrans39fca802011-02-14 18:35:15 +000098#include "amdfam14_conf.c"
99
Frank Vibrans39fca802011-02-14 18:35:15 +0000100static void northbridge_init(device_t dev)
101{
Marc Jones8d595692012-03-15 12:55:26 -0600102 printk(BIOS_DEBUG, "Northbridge init\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000103}
104
Frank Vibrans39fca802011-02-14 18:35:15 +0000105static void set_vga_enable_reg(u32 nodeid, u32 linkn)
106{
Marc Jones8d595692012-03-15 12:55:26 -0600107 u32 val;
Frank Vibrans39fca802011-02-14 18:35:15 +0000108
Marc Jones8d595692012-03-15 12:55:26 -0600109 val = 1 | (nodeid << 4) | (linkn << 12);
110 /* it will routing (1)mmio 0xa0000:0xbffff (2) io 0x3b0:0x3bb,
111 0x3c0:0x3df */
112 f1_write_config32(0xf4, val);
Frank Vibrans39fca802011-02-14 18:35:15 +0000113
114}
115
Frank Vibrans39fca802011-02-14 18:35:15 +0000116static int reg_useable(unsigned reg, device_t goal_dev, unsigned goal_nodeid,
Marc Jones8d595692012-03-15 12:55:26 -0600117 unsigned goal_link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000118{
Marc Jones8d595692012-03-15 12:55:26 -0600119 struct resource *res;
120 unsigned nodeid, link = 0;
121 int result;
122 res = 0;
123 for (nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
124 device_t dev;
125 dev = __f0_dev[nodeid];
126 if (!dev)
127 continue;
128 for (link = 0; !res && (link < 8); link++) {
129 res = probe_resource(dev, IOINDEX(0x1000 + reg, link));
130 }
131 }
132 result = 2;
133 if (res) {
134 result = 0;
135 if ((goal_link == (link - 1)) &&
136 (goal_nodeid == (nodeid - 1)) && (res->flags <= 1)) {
137 result = 1;
138 }
139 }
140 return result;
Frank Vibrans39fca802011-02-14 18:35:15 +0000141}
142
Marc Jones8d595692012-03-15 12:55:26 -0600143static struct resource *amdfam14_find_iopair(device_t dev, unsigned nodeid,
144 unsigned link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000145{
Marc Jones8d595692012-03-15 12:55:26 -0600146 struct resource *resource;
147 u32 result, reg;
148 resource = 0;
149 reg = 0;
150 result = reg_useable(0xc0, dev, nodeid, link);
151 if (result >= 1) {
152 /* I have been allocated this one */
153 reg = 0xc0;
154 }
155 /* Ext conf space */
156 if (!reg) {
157 /* Because of Extend conf space, we will never run out of reg,
158 * but we need one index to differ them. So ,same node and same
159 * link can have multi range
160 */
161 u32 index = get_io_addr_index(nodeid, link);
162 reg = 0x110 + (index << 24) + (4 << 20); // index could be 0, 255
163 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000164
Marc Jones8d595692012-03-15 12:55:26 -0600165 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
Frank Vibrans39fca802011-02-14 18:35:15 +0000166
Marc Jones8d595692012-03-15 12:55:26 -0600167 return resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000168}
169
Marc Jones8d595692012-03-15 12:55:26 -0600170static struct resource *amdfam14_find_mempair(device_t dev, u32 nodeid,
171 u32 link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000172{
Marc Jones8d595692012-03-15 12:55:26 -0600173 struct resource *resource;
174 u32 free_reg, reg;
175 resource = 0;
176 free_reg = 0;
177 for (reg = 0x80; reg <= 0xb8; reg += 0x8) {
178 int result;
179 result = reg_useable(reg, dev, nodeid, link);
180 if (result == 1) {
181 /* I have been allocated this one */
182 break;
183 } else if (result > 1) {
184 /* I have a free register pair */
185 free_reg = reg;
186 }
187 }
188 if (reg > 0xb8) {
189 reg = free_reg;
190 }
191 /* Ext conf space */
192 if (!reg) {
193 /* Because of Extend conf space, we will never run out of reg,
194 * but we need one index to differ them. So ,same node and same
195 * link can have multi range
196 */
197 u32 index = get_mmio_addr_index(nodeid, link);
198 reg = 0x110 + (index << 24) + (6 << 20); // index could be 0, 63
Frank Vibrans39fca802011-02-14 18:35:15 +0000199
Marc Jones8d595692012-03-15 12:55:26 -0600200 }
201 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
202 return resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000203}
204
Frank Vibrans39fca802011-02-14 18:35:15 +0000205static void amdfam14_link_read_bases(device_t dev, u32 nodeid, u32 link)
206{
Marc Jones8d595692012-03-15 12:55:26 -0600207 struct resource *resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000208
Marc Jones8d595692012-03-15 12:55:26 -0600209 /* Initialize the io space constraints on the current bus */
210 resource = amdfam14_find_iopair(dev, nodeid, link);
211 if (resource) {
212 u32 align;
Frank Vibrans39fca802011-02-14 18:35:15 +0000213#if CONFIG_EXT_CONF_SUPPORT == 1
Marc Jones8d595692012-03-15 12:55:26 -0600214 if ((resource->index & 0x1fff) == 0x1110) { // ext
215 align = 8;
216 } else
Frank Vibrans39fca802011-02-14 18:35:15 +0000217#endif
Marc Jones8d595692012-03-15 12:55:26 -0600218 align = log2(HT_IO_HOST_ALIGN);
219 resource->base = 0;
220 resource->size = 0;
221 resource->align = align;
222 resource->gran = align;
223 resource->limit = 0xffffUL;
224 resource->flags = IORESOURCE_IO | IORESOURCE_BRIDGE;
225 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000226
Marc Jones8d595692012-03-15 12:55:26 -0600227 /* Initialize the prefetchable memory constraints on the current bus */
228 resource = amdfam14_find_mempair(dev, nodeid, link);
229 if (resource) {
230 resource->base = 0;
231 resource->size = 0;
232 resource->align = log2(HT_MEM_HOST_ALIGN);
233 resource->gran = log2(HT_MEM_HOST_ALIGN);
234 resource->limit = 0xffffffffffULL;
235 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
236 resource->flags |= IORESOURCE_BRIDGE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000237
238#if CONFIG_EXT_CONF_SUPPORT == 1
Marc Jones8d595692012-03-15 12:55:26 -0600239 if ((resource->index & 0x1fff) == 0x1110) { // ext
240 normalize_resource(resource);
241 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000242#endif
243
Marc Jones8d595692012-03-15 12:55:26 -0600244 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000245
Marc Jones8d595692012-03-15 12:55:26 -0600246 /* Initialize the memory constraints on the current bus */
247 resource = amdfam14_find_mempair(dev, nodeid, link);
248 if (resource) {
249 resource->base = 0;
250 resource->size = 0;
251 resource->align = log2(HT_MEM_HOST_ALIGN);
252 resource->gran = log2(HT_MEM_HOST_ALIGN);
253 resource->limit = 0xffffffffffULL;
254 resource->flags = IORESOURCE_MEM | IORESOURCE_BRIDGE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000255#if CONFIG_EXT_CONF_SUPPORT == 1
Marc Jones8d595692012-03-15 12:55:26 -0600256 if ((resource->index & 0x1fff) == 0x1110) { // ext
257 normalize_resource(resource);
258 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000259#endif
Marc Jones8d595692012-03-15 12:55:26 -0600260 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000261}
262
263static u32 my_find_pci_tolm(struct bus *bus, u32 tolm)
264{
Marc Jones8d595692012-03-15 12:55:26 -0600265 struct resource *min;
266 min = 0;
267 search_bus_resources(bus, IORESOURCE_MEM, IORESOURCE_MEM, tolm_test,
268 &min);
269 if (min && tolm > min->base) {
270 tolm = min->base;
271 }
272 return tolm;
Frank Vibrans39fca802011-02-14 18:35:15 +0000273}
274
275#if CONFIG_HW_MEM_HOLE_SIZEK != 0
276
277struct hw_mem_hole_info {
Marc Jones8d595692012-03-15 12:55:26 -0600278 unsigned hole_startk;
279 int node_id;
Frank Vibrans39fca802011-02-14 18:35:15 +0000280};
281
282static struct hw_mem_hole_info get_hw_mem_hole_info(void)
283{
Marc Jones8d595692012-03-15 12:55:26 -0600284 struct hw_mem_hole_info mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000285
Marc Jones8d595692012-03-15 12:55:26 -0600286 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
287 mem_hole.node_id = -1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000288
Marc Jones8d595692012-03-15 12:55:26 -0600289 struct dram_base_mask_t d;
290 u32 hole;
291 d = get_dram_base_mask(0);
292 if (d.mask & 1) {
293 hole = pci_read_config32(__f1_dev[0], 0xf0);
294 if (hole & 1) { // we find the hole
295 mem_hole.hole_startk = (hole & (0xff << 24)) >> 10;
296 mem_hole.node_id = 0; // record the node No with hole
297 }
298 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000299#if 0
Marc Jones8d595692012-03-15 12:55:26 -0600300 /* We need to double check if there is speical set on base reg and limit reg
301 * are not continous instead of hole, it will find out it's hole_startk
302 */
303 if (mem_hole.node_id == -1) {
304 resource_t limitk_pri = 0;
305 struct dram_base_mask_t d;
306 resource_t base_k, limit_k;
307 d = get_dram_base_mask(0);
308 if (d.base & 1) {
309 base_k = ((resource_t) (d.base & 0x1fffff00)) << 9;
310 if (base_k <= 4 * 1024 * 1024) {
311 if (limitk_pri != base_k) { // we find the hole
312 mem_hole.hole_startk = (unsigned)limitk_pri; // must be below 4G
313 mem_hole.node_id = 0;
314 }
315 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000316
Marc Jones8d595692012-03-15 12:55:26 -0600317 limit_k =
318 ((resource_t) ((d.mask + 0x00000100) & 0x1fffff00))
319 << 9;
320 limitk_pri = limit_k;
321 }
322 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000323#endif
efdesign9805a89ab2011-06-20 17:38:49 -0700324
Marc Jones8d595692012-03-15 12:55:26 -0600325 return mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000326}
327#endif
328
Frank Vibrans39fca802011-02-14 18:35:15 +0000329#if CONFIG_GFXUMA == 1
330extern uint64_t uma_memory_base, uma_memory_size;
331
332static void add_uma_resource(struct device *dev, int index)
333{
Marc Jones8d595692012-03-15 12:55:26 -0600334 struct resource *resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000335
Marc Jones8d595692012-03-15 12:55:26 -0600336 printk(BIOS_DEBUG, "\nFam14h - Adding UMA memory.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000337
Marc Jones8d595692012-03-15 12:55:26 -0600338 resource = new_resource(dev, index);
339 resource->base = (resource_t) uma_memory_base;
340 resource->size = (resource_t) uma_memory_size;
341 resource->flags = IORESOURCE_MEM | IORESOURCE_RESERVE |
342 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
Frank Vibrans39fca802011-02-14 18:35:15 +0000343}
344#endif
345
346static void read_resources(device_t dev)
347{
Marc Jones8d595692012-03-15 12:55:26 -0600348 u32 nodeid;
349 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000350
Marc Jones8d595692012-03-15 12:55:26 -0600351 printk(BIOS_DEBUG, "\nFam14h - read_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000352
Marc Jones8d595692012-03-15 12:55:26 -0600353 nodeid = amdfam14_nodeid(dev);
354 for (link = dev->link_list; link; link = link->next) {
355 if (link->children) {
356 amdfam14_link_read_bases(dev, nodeid, link->link_num);
357 }
358 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000359}
360
Marc Jones8d595692012-03-15 12:55:26 -0600361static void set_resource(device_t dev, struct resource *resource, u32 nodeid)
Frank Vibrans39fca802011-02-14 18:35:15 +0000362{
Marc Jones8d595692012-03-15 12:55:26 -0600363 resource_t rbase, rend;
364 unsigned reg, link_num;
365 char buf[50];
Frank Vibrans39fca802011-02-14 18:35:15 +0000366
Marc Jones8d595692012-03-15 12:55:26 -0600367 printk(BIOS_DEBUG, "\nFam14h - set_resource.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000368
Marc Jones8d595692012-03-15 12:55:26 -0600369 /* Make certain the resource has actually been set */
370 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
371 return;
372 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000373
Marc Jones8d595692012-03-15 12:55:26 -0600374 /* If I have already stored this resource don't worry about it */
375 if (resource->flags & IORESOURCE_STORED) {
376 return;
377 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000378
Marc Jones8d595692012-03-15 12:55:26 -0600379 /* Only handle PCI memory and IO resources */
380 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
381 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000382
Marc Jones8d595692012-03-15 12:55:26 -0600383 /* Ensure I am actually looking at a resource of function 1 */
384 if ((resource->index & 0xffff) < 0x1000) {
385 return;
386 }
387 /* Get the base address */
388 rbase = resource->base;
Frank Vibrans39fca802011-02-14 18:35:15 +0000389
Marc Jones8d595692012-03-15 12:55:26 -0600390 /* Get the limit (rounded up) */
391 rend = resource_end(resource);
Frank Vibrans39fca802011-02-14 18:35:15 +0000392
Marc Jones8d595692012-03-15 12:55:26 -0600393 /* Get the register and link */
394 reg = resource->index & 0xfff; // 4k
395 link_num = IOINDEX_LINK(resource->index);
Frank Vibrans39fca802011-02-14 18:35:15 +0000396
Marc Jones8d595692012-03-15 12:55:26 -0600397 if (resource->flags & IORESOURCE_IO) {
398 set_io_addr_reg(dev, nodeid, link_num, reg, rbase >> 8,
399 rend >> 8);
400 } else if (resource->flags & IORESOURCE_MEM) {
401 set_mmio_addr_reg(nodeid, link_num, reg, (resource->index >> 24),
402 rbase >> 8, rend >> 8, 1); // [39:8]
403 }
404 resource->flags |= IORESOURCE_STORED;
405 sprintf(buf, " <node %x link %x>", nodeid, link_num);
406 report_resource_stored(dev, resource, buf);
Frank Vibrans39fca802011-02-14 18:35:15 +0000407}
408
efdesign983f5ebd62011-09-14 13:47:17 -0600409#if CONFIG_CONSOLE_VGA_MULTI
Marc Jones8d595692012-03-15 12:55:26 -0600410extern device_t vga_pri; // the primary vga device, defined in device.c
Frank Vibrans39fca802011-02-14 18:35:15 +0000411#endif
412
413static void create_vga_resource(device_t dev, unsigned nodeid)
414{
Marc Jones8d595692012-03-15 12:55:26 -0600415 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000416
Marc Jones8d595692012-03-15 12:55:26 -0600417 printk(BIOS_DEBUG, "\nFam14h - create_vga_resource.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000418
Marc Jones8d595692012-03-15 12:55:26 -0600419 /* find out which link the VGA card is connected,
420 * we only deal with the 'first' vga card */
421 for (link = dev->link_list; link; link = link->next) {
422 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
efdesign983f5ebd62011-09-14 13:47:17 -0600423#if CONFIG_CONSOLE_VGA_MULTI
Marc Jones8d595692012-03-15 12:55:26 -0600424 printk(BIOS_DEBUG,
425 "VGA: vga_pri bus num = %d bus range [%d,%d]\n",
426 vga_pri->bus->secondary, link->secondary,
427 link->subordinate);
428 /* We need to make sure the vga_pri is under the link */
429 if ((vga_pri->bus->secondary >= link->secondary) &&
430 (vga_pri->bus->secondary <= link->subordinate))
Frank Vibrans39fca802011-02-14 18:35:15 +0000431#endif
Marc Jones8d595692012-03-15 12:55:26 -0600432 break;
433 }
434 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000435
Marc Jones8d595692012-03-15 12:55:26 -0600436 /* no VGA card installed */
437 if (link == NULL)
438 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000439
Marc Jones8d595692012-03-15 12:55:26 -0600440 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n",
441 dev_path(dev), nodeid, link->link_num);
442 set_vga_enable_reg(nodeid, link->link_num);
Frank Vibrans39fca802011-02-14 18:35:15 +0000443}
444
Frank Vibrans39fca802011-02-14 18:35:15 +0000445static void set_resources(device_t dev)
446{
Marc Jones8d595692012-03-15 12:55:26 -0600447 unsigned nodeid;
448 struct bus *bus;
449 struct resource *res;
Frank Vibrans39fca802011-02-14 18:35:15 +0000450
Marc Jones8d595692012-03-15 12:55:26 -0600451 printk(BIOS_DEBUG, "\nFam14h - set_resources.\n");
efdesign9805a89ab2011-06-20 17:38:49 -0700452
Marc Jones8d595692012-03-15 12:55:26 -0600453 /* Find the nodeid */
454 nodeid = amdfam14_nodeid(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000455
Marc Jones8d595692012-03-15 12:55:26 -0600456 create_vga_resource(dev, nodeid);
Frank Vibrans39fca802011-02-14 18:35:15 +0000457
Marc Jones8d595692012-03-15 12:55:26 -0600458 /* Set each resource we have found */
459 for (res = dev->resource_list; res; res = res->next) {
460 set_resource(dev, res, nodeid);
461 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000462
Marc Jones8d595692012-03-15 12:55:26 -0600463 for (bus = dev->link_list; bus; bus = bus->next) {
464 if (bus->children) {
465 assign_resources(bus);
466 }
467 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000468}
469
Frank Vibrans39fca802011-02-14 18:35:15 +0000470/* Domain/Root Complex related code */
471
472static void domain_read_resources(device_t dev)
473{
Marc Jones8d595692012-03-15 12:55:26 -0600474 unsigned reg;
Frank Vibrans39fca802011-02-14 18:35:15 +0000475
Marc Jones8d595692012-03-15 12:55:26 -0600476 printk(BIOS_DEBUG, "\nFam14h - domain_read_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000477
Marc Jones8d595692012-03-15 12:55:26 -0600478 /* Find the already assigned resource pairs */
479 get_fx_devs();
480 for (reg = 0x80; reg <= 0xc0; reg += 0x08) {
481 u32 base, limit;
482 base = f1_read_config32(reg);
483 limit = f1_read_config32(reg + 0x04);
484 /* Is this register allocated? */
485 if ((base & 3) != 0) {
486 unsigned nodeid, reg_link;
487 device_t reg_dev;
488 if (reg < 0xc0) { // mmio
489 nodeid = (limit & 0xf) + (base & 0x30);
490 } else { // io
491 nodeid = (limit & 0xf) + ((base >> 4) & 0x30);
492 }
493 reg_link = (limit >> 4) & 7;
494 reg_dev = __f0_dev[nodeid];
495 if (reg_dev) {
496 /* Reserve the resource */
497 struct resource *res;
498 res =
499 new_resource(reg_dev,
500 IOINDEX(0x1000 + reg,
501 reg_link));
502 if (res) {
503 res->flags = 1;
504 }
505 }
506 }
507 }
508 /* FIXME: do we need to check extend conf space?
509 I don't believe that much preset value */
Frank Vibrans39fca802011-02-14 18:35:15 +0000510
511#if CONFIG_PCI_64BIT_PREF_MEM == 0
Marc Jones8d595692012-03-15 12:55:26 -0600512 pci_domain_read_resources(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000513#else
Marc Jones8d595692012-03-15 12:55:26 -0600514 struct bus *link;
515 struct resource *resource;
516 for (link = dev->link_list; link; link = link->next) {
517 /* Initialize the system wide io space constraints */
518 resource = new_resource(dev, 0 | (link->link_num << 2));
519 resource->base = 0x400;
520 resource->limit = 0xffffUL;
521 resource->flags = IORESOURCE_IO;
Frank Vibrans39fca802011-02-14 18:35:15 +0000522
Marc Jones8d595692012-03-15 12:55:26 -0600523 /* Initialize the system wide prefetchable memory resources constraints */
524 resource = new_resource(dev, 1 | (link->link_num << 2));
525 resource->limit = 0xfcffffffffULL;
526 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
Frank Vibrans39fca802011-02-14 18:35:15 +0000527
Marc Jones8d595692012-03-15 12:55:26 -0600528 /* Initialize the system wide memory resources constraints */
529 resource = new_resource(dev, 2 | (link->link_num << 2));
530 resource->limit = 0xfcffffffffULL;
531 resource->flags = IORESOURCE_MEM;
532 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000533#endif
534}
535
Frank Vibrans39fca802011-02-14 18:35:15 +0000536static void domain_set_resources(device_t dev)
537{
Marc Jones8d595692012-03-15 12:55:26 -0600538 printk(BIOS_DEBUG, "\nFam14h - domain_set_resources.\n");
539 printk(BIOS_DEBUG, " amsr - incoming dev = %08x\n", (u32) dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000540
541#if CONFIG_PCI_64BIT_PREF_MEM == 1
Marc Jones8d595692012-03-15 12:55:26 -0600542 struct resource *io, *mem1, *mem2;
543 struct resource *res;
Frank Vibrans39fca802011-02-14 18:35:15 +0000544#endif
Marc Jones8d595692012-03-15 12:55:26 -0600545 unsigned long mmio_basek;
546 u32 pci_tolm;
547 int idx;
548 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000549#if CONFIG_HW_MEM_HOLE_SIZEK != 0
Marc Jones8d595692012-03-15 12:55:26 -0600550 struct hw_mem_hole_info mem_hole;
551 u32 reset_memhole = 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000552#endif
553
554#if CONFIG_PCI_64BIT_PREF_MEM == 1
555
Marc Jones8d595692012-03-15 12:55:26 -0600556 printk(BIOS_DEBUG, "adsr - CONFIG_PCI_64BIT_PREF_MEM is true.\n");
557 for (link = dev->link_list; link; link = link->next) {
558 /* Now reallocate the pci resources memory with the
559 * highest addresses I can manage.
560 */
561 mem1 = find_resource(dev, 1 | (link->link_num << 2));
562 mem2 = find_resource(dev, 2 | (link->link_num << 2));
Frank Vibrans39fca802011-02-14 18:35:15 +0000563
Marc Jones8d595692012-03-15 12:55:26 -0600564 printk(BIOS_DEBUG,
565 "base1: 0x%08Lx limit1: 0x%08Lx size: 0x%08Lx align: %d\n",
566 (u32) (mem1->base), (u32) (mem1->limit),
567 (u32) (mem1->size), u32) (mem1->align));
568 printk(BIOS_DEBUG,
569 "base2: 0x%08Lx limit2: 0x%08Lx size: 0x%08Lx align: %d\n",
570 (u32) (mem2->base), (u32) (mem2->limit),
571 (u32) (mem2->size), (u32) (mem2->align));
Frank Vibrans39fca802011-02-14 18:35:15 +0000572
Marc Jones8d595692012-03-15 12:55:26 -0600573 /* See if both resources have roughly the same limits */
574 if (((mem1->limit <= 0xffffffff) && (mem2->limit <= 0xffffffff))
575 || ((mem1->limit > 0xffffffff)
576 && (mem2->limit > 0xffffffff))) {
577 /* If so place the one with the most stringent alignment first
578 */
579 if (mem2->align > mem1->align) {
580 struct resource *tmp;
581 tmp = mem1;
582 mem1 = mem2;
583 mem2 = tmp;
584 }
585 /* Now place the memory as high up as it will go */
586 mem2->base = resource_max(mem2);
587 mem1->limit = mem2->base - 1;
588 mem1->base = resource_max(mem1);
589 } else {
590 /* Place the resources as high up as they will go */
591 mem2->base = resource_max(mem2);
592 mem1->base = resource_max(mem1);
593 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000594
Marc Jones8d595692012-03-15 12:55:26 -0600595 printk(BIOS_DEBUG,
596 "base1: 0x%08Lx limit1: 0x%08Lx size: 0x%08Lx align: %d\n",
597 mem1->base, mem1->limit, mem1->size, mem1->align);
598 printk(BIOS_DEBUG,
599 "base2: 0x%08Lx limit2: 0x%08Lx size: 0x%08Lx align: %d\n",
600 mem2->base, mem2->limit, mem2->size, mem2->align);
601 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000602
Marc Jones8d595692012-03-15 12:55:26 -0600603 for (res = &dev->resource_list; res; res = res->next) {
604 res->flags |= IORESOURCE_ASSIGNED;
605 res->flags |= IORESOURCE_STORED;
606 report_resource_stored(dev, res, "");
607 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000608#endif
609
Marc Jones8d595692012-03-15 12:55:26 -0600610 pci_tolm = 0xffffffffUL;
611 for (link = dev->link_list; link; link = link->next) {
612 pci_tolm = my_find_pci_tolm(link, pci_tolm);
613 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000614
Marc Jones8d595692012-03-15 12:55:26 -0600615 // FIXME handle interleaved nodes. If you fix this here, please fix
616 // amdk8, too.
617 mmio_basek = pci_tolm >> 10;
618 /* Round mmio_basek to something the processor can support */
619 mmio_basek &= ~((1 << 6) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000620
Marc Jones8d595692012-03-15 12:55:26 -0600621 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
622 // MMIO hole. If you fix this here, please fix amdk8, too.
623 /* Round the mmio hole to 64M */
624 mmio_basek &= ~((64 * 1024) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000625
626#if CONFIG_HW_MEM_HOLE_SIZEK != 0
627/* if the hw mem hole is already set in raminit stage, here we will compare
628 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
629 * use hole_basek as mmio_basek and we don't need to reset hole.
630 * otherwise We reset the hole to the mmio_basek
631 */
632
Marc Jones8d595692012-03-15 12:55:26 -0600633 mem_hole = get_hw_mem_hole_info();
Frank Vibrans39fca802011-02-14 18:35:15 +0000634
Marc Jones8d595692012-03-15 12:55:26 -0600635 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
636 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
637 mmio_basek = mem_hole.hole_startk;
638 reset_memhole = 0;
639 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000640#endif
641
Marc Jones8d595692012-03-15 12:55:26 -0600642 idx = 0x10;
Frank Vibrans39fca802011-02-14 18:35:15 +0000643
Marc Jones8d595692012-03-15 12:55:26 -0600644 struct dram_base_mask_t d;
645 resource_t basek, limitk, sizek; // 4 1T
Frank Vibrans39fca802011-02-14 18:35:15 +0000646
Marc Jones8d595692012-03-15 12:55:26 -0600647 d = get_dram_base_mask(0);
Frank Vibrans39fca802011-02-14 18:35:15 +0000648
Marc Jones8d595692012-03-15 12:55:26 -0600649 if (d.mask & 1) {
650 basek = ((resource_t) ((u64) d.base)) << 8;
651 limitk = (resource_t) (((u64) d.mask << 8) | 0xFFFFFF);
652 printk(BIOS_DEBUG,
653 "adsr: (before) basek = %llx, limitk = %llx.\n", basek,
654 limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000655
Marc Jones8d595692012-03-15 12:55:26 -0600656 /* Convert these values to multiples of 1K for ease of math. */
657 basek >>= 10;
658 limitk >>= 10;
659 sizek = limitk - basek + 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000660
Marc Jones8d595692012-03-15 12:55:26 -0600661 printk(BIOS_DEBUG,
662 "adsr: (after) basek = %llx, limitk = %llx, sizek = %llx.\n",
663 basek, limitk, sizek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000664
Marc Jones8d595692012-03-15 12:55:26 -0600665 /* see if we need a hole from 0xa0000 to 0xbffff */
666 if ((basek < 640) && (sizek > 768)) {
667 printk(BIOS_DEBUG,"adsr - 0xa0000 to 0xbffff resource.\n");
668 ram_resource(dev, (idx | 0), basek, 640 - basek);
669 idx += 0x10;
670 basek = 768;
671 sizek = limitk - 768;
672 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000673
Marc Jones8d595692012-03-15 12:55:26 -0600674 printk(BIOS_DEBUG,
675 "adsr: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
676 mmio_basek, basek, limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000677
Marc Jones8d595692012-03-15 12:55:26 -0600678 /* split the region to accomodate pci memory space */
679 if ((basek < 4 * 1024 * 1024) && (limitk > mmio_basek)) {
680 if (basek <= mmio_basek) {
681 unsigned pre_sizek;
682 pre_sizek = mmio_basek - basek;
683 if (pre_sizek > 0) {
684 ram_resource(dev, idx, basek,
685 pre_sizek);
686 idx += 0x10;
687 sizek -= pre_sizek;
Frank Vibrans39fca802011-02-14 18:35:15 +0000688#if CONFIG_WRITE_HIGH_TABLES==1
Marc Jones8d595692012-03-15 12:55:26 -0600689 if (high_tables_base == 0) {
690 /* Leave some space for ACPI, PIRQ and MP tables */
Frank Vibrans39fca802011-02-14 18:35:15 +0000691#if CONFIG_GFXUMA == 1
Marc Jones5750ed22012-03-15 13:21:41 -0600692 high_tables_base = uma_memory_base - HIGH_MEMORY_SIZE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000693#else
Marc Jones5750ed22012-03-15 13:21:41 -0600694 high_tables_base = (mmio_basek * 1024) - HIGH_MEMORY_SIZE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000695#endif
Marc Jones5750ed22012-03-15 13:21:41 -0600696 high_tables_size = HIGH_MEMORY_SIZE;
697 printk(BIOS_DEBUG, " split: %dK table at =%08llx\n",
698 (u32)(high_tables_size / 1024), high_tables_base);
Marc Jones8d595692012-03-15 12:55:26 -0600699 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000700#endif
Marc Jones8d595692012-03-15 12:55:26 -0600701 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000702
Marc Jones8d595692012-03-15 12:55:26 -0600703 basek = mmio_basek;
704 }
705 if ((basek + sizek) <= 4 * 1024 * 1024) {
706 sizek = 0;
707 } else {
708 basek = 4 * 1024 * 1024;
709 sizek -= (4 * 1024 * 1024 - mmio_basek);
710 }
711 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000712
Marc Jones8d595692012-03-15 12:55:26 -0600713 ram_resource(dev, (idx | 0), basek, sizek);
714 idx += 0x10;
Frank Vibrans39fca802011-02-14 18:35:15 +0000715#if CONFIG_WRITE_HIGH_TABLES==1
Marc Jones8d595692012-03-15 12:55:26 -0600716 printk(BIOS_DEBUG,
717 "%d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n", 0,
718 mmio_basek, basek, limitk);
719 if (high_tables_base == 0) {
720 /* Leave some space for ACPI, PIRQ and MP tables */
Frank Vibrans39fca802011-02-14 18:35:15 +0000721#if CONFIG_GFXUMA == 1
Marc Jones5750ed22012-03-15 13:21:41 -0600722 high_tables_base = uma_memory_base - HIGH_MEMORY_SIZE;
Marc Jones8d595692012-03-15 12:55:26 -0600723 printk(BIOS_DEBUG, " adsr - uma_memory_base = %llx.\n", uma_memory_base);
Frank Vibrans39fca802011-02-14 18:35:15 +0000724#else
Marc Jones5750ed22012-03-15 13:21:41 -0600725 high_tables_base = (limitk * 1024) - HIGH_MEMORY_SIZE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000726#endif
Marc Jones5750ed22012-03-15 13:21:41 -0600727 high_tables_size = HIGH_MEMORY_SIZE;
Marc Jones8d595692012-03-15 12:55:26 -0600728 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000729#endif
Marc Jones8d595692012-03-15 12:55:26 -0600730 }
731 printk(BIOS_DEBUG, " adsr - mmio_basek = %lx.\n", mmio_basek);
732 printk(BIOS_DEBUG, " adsr - high_tables_size = %llx.\n",
733 high_tables_size);
Frank Vibrans39fca802011-02-14 18:35:15 +0000734
735#if CONFIG_GFXUMA == 1
Marc Jones8d595692012-03-15 12:55:26 -0600736 printk(BIOS_DEBUG, "adsr - adding uma resource.\n");
737 add_uma_resource(dev, 7);
Frank Vibrans39fca802011-02-14 18:35:15 +0000738#endif
739
Marc Jones8d595692012-03-15 12:55:26 -0600740 for (link = dev->link_list; link; link = link->next) {
741 if (link->children) {
742 assign_resources(link);
743 }
744 }
745 printk(BIOS_DEBUG, " adsr - leaving this lovely routine.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000746}
747
Marc Jones8d595692012-03-15 12:55:26 -0600748static void domain_enable_resources(device_t dev) {
749 u32 val;
Kerry Shefeed3292011-08-18 18:03:44 +0800750
751#if CONFIG_AMD_SB_CIMX
Marc Jones8d595692012-03-15 12:55:26 -0600752 sb_After_Pci_Init();
753 sb_Mid_Post_Init();
Kerry Shefeed3292011-08-18 18:03:44 +0800754#endif
755
Marc Jones8d595692012-03-15 12:55:26 -0600756 /* Must be called after PCI enumeration and resource allocation */
757 printk(BIOS_DEBUG, "\nFam14h - domain_enable_resources: AmdInitMid.\n");
758 val = agesawrapper_amdinitmid();
759 if (val) {
760 printk(BIOS_DEBUG, "agesawrapper_amdinitmid failed: %x \n", val);
761 }
efdesign9805a89ab2011-06-20 17:38:49 -0700762
Marc Jones8d595692012-03-15 12:55:26 -0600763 printk(BIOS_DEBUG, " ader - leaving domain_enable_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000764}
765
Frank Vibrans39fca802011-02-14 18:35:15 +0000766/* Bus related code */
767
Marc Jones8d595692012-03-15 12:55:26 -0600768static void cpu_bus_read_resources(device_t dev) {
769 printk(BIOS_DEBUG, "\nFam14h - cpu_bus_read_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000770
771#if CONFIG_MMCONF_SUPPORT
Marc Jones8d595692012-03-15 12:55:26 -0600772 struct resource *resource = new_resource(dev, 0xc0010058);
773 resource->base = CONFIG_MMCONF_BASE_ADDRESS;
774 resource->size = CONFIG_MMCONF_BUS_NUMBER * 4096 * 256;
775 resource->flags = IORESOURCE_MEM | IORESOURCE_RESERVE |
776 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
Frank Vibrans39fca802011-02-14 18:35:15 +0000777#endif
778}
779
Marc Jones8d595692012-03-15 12:55:26 -0600780static void cpu_bus_set_resources(device_t dev) {
781 struct resource *resource = find_resource(dev, 0xc0010058);
Frank Vibrans39fca802011-02-14 18:35:15 +0000782
Marc Jones8d595692012-03-15 12:55:26 -0600783 printk(BIOS_DEBUG, "\nFam14h - cpu_bus_set_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000784
Marc Jones8d595692012-03-15 12:55:26 -0600785 if (resource) {
786 report_resource_stored(dev, resource, " <mmconfig>");
787 }
788 pci_dev_set_resources(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000789}
efdesign9805a89ab2011-06-20 17:38:49 -0700790
Marc Jones8d595692012-03-15 12:55:26 -0600791static void cpu_bus_init(device_t dev) {
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000792 struct device_path cpu_path;
793 device_t cpu;
Marc Jones8d595692012-03-15 12:55:26 -0600794 int apic_id;
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000795
Marc Jones8d595692012-03-15 12:55:26 -0600796 initialize_cpus(dev->link_list);
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000797
798 /* Build the AP cpu device path(s) */
Marc Jones8d595692012-03-15 12:55:26 -0600799 for (apic_id = 1; apic_id < CONFIG_MAX_CPUS; apic_id++) {
800 cpu_path.type = DEVICE_PATH_APIC;
801 cpu_path.apic.apic_id = apic_id;
802 cpu = alloc_dev(dev->link_list, &cpu_path);
803 if (!cpu)
804 return;
805 cpu->enabled = 1;
806 cpu->path.apic.node_id = 0;
807 cpu->path.apic.core_id = apic_id;
808 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000809}
810
Frank Vibrans39fca802011-02-14 18:35:15 +0000811/* North Bridge Structures */
812
813static struct device_operations northbridge_operations = {
Marc Jones8d595692012-03-15 12:55:26 -0600814 .read_resources = read_resources,
815 .set_resources = set_resources,
816 .enable_resources = pci_dev_enable_resources,
817 .init = northbridge_init,
818 .enable = 0,.ops_pci = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000819};
820
Frank Vibrans39fca802011-02-14 18:35:15 +0000821static const struct pci_driver northbridge_driver __pci_driver = {
Marc Jones8d595692012-03-15 12:55:26 -0600822 .ops = &northbridge_operations,
823 .vendor = PCI_VENDOR_ID_AMD,
824 .device = 0x1510,
Frank Vibrans39fca802011-02-14 18:35:15 +0000825};
826
efdesign9805a89ab2011-06-20 17:38:49 -0700827struct chip_operations northbridge_amd_agesa_family14_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600828 CHIP_NAME("AMD Family 14h Northbridge")
829 .enable_dev = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000830};
831
Frank Vibrans39fca802011-02-14 18:35:15 +0000832/* Root Complex Structures */
833
Frank Vibrans39fca802011-02-14 18:35:15 +0000834static struct device_operations pci_domain_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600835 .read_resources = domain_read_resources,
836 .set_resources = domain_set_resources,
837 .enable_resources = domain_enable_resources,
838 .init = NULL,
839 .scan_bus = pci_domain_scan_bus,
Frank Vibrans39fca802011-02-14 18:35:15 +0000840};
841
Frank Vibrans39fca802011-02-14 18:35:15 +0000842static struct device_operations cpu_bus_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600843 .read_resources = cpu_bus_read_resources,
844 .set_resources = cpu_bus_set_resources,
845 .enable_resources = NULL,
846 .init = cpu_bus_init,
847 .scan_bus = NULL,
Frank Vibrans39fca802011-02-14 18:35:15 +0000848};
849
Marc Jones8d595692012-03-15 12:55:26 -0600850static void root_complex_enable_dev(struct device *dev) {
851 /* Set the operations if it is a special bus type */
852 if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) {
853 dev->ops = &pci_domain_ops;
854 } else if (dev->path.type == DEVICE_PATH_APIC_CLUSTER) {
855 dev->ops = &cpu_bus_ops;
856 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000857}
858
efdesign9805a89ab2011-06-20 17:38:49 -0700859struct chip_operations northbridge_amd_agesa_family14_root_complex_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600860 CHIP_NAME("AMD Family 14h Root Complex")
861 .enable_dev = root_complex_enable_dev,
Frank Vibrans39fca802011-02-14 18:35:15 +0000862};