blob: 8742f11904c78ad48f5be77ae0d1c0589f74383a [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>
Kyösti Mälkki55fff9302012-07-11 08:02:39 +030034#include <cpu/amd/mtrr.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000035
efdesign983f5ebd62011-09-14 13:47:17 -060036#include "agesawrapper.h"
Frank Vibrans39fca802011-02-14 18:35:15 +000037#include "chip.h"
38#include "northbridge.h"
Kerry Shefeed3292011-08-18 18:03:44 +080039#if CONFIG_AMD_SB_CIMX
40#include <sb_cimx.h>
41#endif
Frank Vibrans39fca802011-02-14 18:35:15 +000042
Frank Vibrans39fca802011-02-14 18:35:15 +000043//#define FX_DEVS NODE_NUMS
44#define FX_DEVS 1
45
46static device_t __f0_dev[FX_DEVS];
47static device_t __f1_dev[FX_DEVS];
48static device_t __f2_dev[FX_DEVS];
49static device_t __f4_dev[FX_DEVS];
Marc Jones8d595692012-03-15 12:55:26 -060050static unsigned fx_devs = 0;
Frank Vibrans39fca802011-02-14 18:35:15 +000051
52device_t get_node_pci(u32 nodeid, u32 fn)
53{
zbao49bb26a42012-08-03 15:44:42 +080054 if ((CONFIG_CDB + nodeid) < 32) {
55 return dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB + nodeid, fn));
56 } else {
57 return dev_find_slot(CONFIG_CBB-1, PCI_DEVFN(CONFIG_CDB + nodeid - 32, fn));
58 }
Frank Vibrans39fca802011-02-14 18:35:15 +000059}
60
Frank Vibrans39fca802011-02-14 18:35:15 +000061static void get_fx_devs(void)
62{
Marc Jones8d595692012-03-15 12:55:26 -060063 int i;
64 for (i = 0; i < FX_DEVS; i++) {
65 __f0_dev[i] = get_node_pci(i, 0);
66 __f1_dev[i] = get_node_pci(i, 1);
67 __f2_dev[i] = get_node_pci(i, 2);
68 __f4_dev[i] = get_node_pci(i, 4);
69 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
70 fx_devs = i + 1;
71 }
72 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
73 die("Cannot find 0:0x18.[0|1]\n");
74 }
Frank Vibrans39fca802011-02-14 18:35:15 +000075}
76
Frank Vibrans39fca802011-02-14 18:35:15 +000077static u32 f1_read_config32(unsigned reg)
78{
Marc Jones8d595692012-03-15 12:55:26 -060079 if (fx_devs == 0)
80 get_fx_devs();
81 return pci_read_config32(__f1_dev[0], reg);
Frank Vibrans39fca802011-02-14 18:35:15 +000082}
83
Frank Vibrans39fca802011-02-14 18:35:15 +000084static void f1_write_config32(unsigned reg, u32 value)
85{
Marc Jones8d595692012-03-15 12:55:26 -060086 int i;
87 if (fx_devs == 0)
88 get_fx_devs();
89 for (i = 0; i < fx_devs; i++) {
90 device_t dev;
91 dev = __f1_dev[i];
92 if (dev && dev->enabled) {
93 pci_write_config32(dev, reg, value);
94 }
95 }
Frank Vibrans39fca802011-02-14 18:35:15 +000096}
97
Frank Vibrans39fca802011-02-14 18:35:15 +000098static u32 amdfam14_nodeid(device_t dev)
99{
Marc Jones8d595692012-03-15 12:55:26 -0600100 return (dev->path.pci.devfn >> 3) - CONFIG_CDB;
Frank Vibrans39fca802011-02-14 18:35:15 +0000101}
102
Frank Vibrans39fca802011-02-14 18:35:15 +0000103#include "amdfam14_conf.c"
104
Frank Vibrans39fca802011-02-14 18:35:15 +0000105static void northbridge_init(device_t dev)
106{
Marc Jones8d595692012-03-15 12:55:26 -0600107 printk(BIOS_DEBUG, "Northbridge init\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000108}
109
Frank Vibrans39fca802011-02-14 18:35:15 +0000110static void set_vga_enable_reg(u32 nodeid, u32 linkn)
111{
Marc Jones8d595692012-03-15 12:55:26 -0600112 u32 val;
Frank Vibrans39fca802011-02-14 18:35:15 +0000113
Marc Jones8d595692012-03-15 12:55:26 -0600114 val = 1 | (nodeid << 4) | (linkn << 12);
115 /* it will routing (1)mmio 0xa0000:0xbffff (2) io 0x3b0:0x3bb,
116 0x3c0:0x3df */
117 f1_write_config32(0xf4, val);
Frank Vibrans39fca802011-02-14 18:35:15 +0000118
119}
120
Frank Vibrans39fca802011-02-14 18:35:15 +0000121static int reg_useable(unsigned reg, device_t goal_dev, unsigned goal_nodeid,
Marc Jones8d595692012-03-15 12:55:26 -0600122 unsigned goal_link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000123{
Marc Jones8d595692012-03-15 12:55:26 -0600124 struct resource *res;
125 unsigned nodeid, link = 0;
126 int result;
127 res = 0;
128 for (nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
129 device_t dev;
130 dev = __f0_dev[nodeid];
131 if (!dev)
132 continue;
133 for (link = 0; !res && (link < 8); link++) {
134 res = probe_resource(dev, IOINDEX(0x1000 + reg, link));
135 }
136 }
137 result = 2;
138 if (res) {
139 result = 0;
140 if ((goal_link == (link - 1)) &&
141 (goal_nodeid == (nodeid - 1)) && (res->flags <= 1)) {
142 result = 1;
143 }
144 }
145 return result;
Frank Vibrans39fca802011-02-14 18:35:15 +0000146}
147
Marc Jones8d595692012-03-15 12:55:26 -0600148static struct resource *amdfam14_find_iopair(device_t dev, unsigned nodeid,
149 unsigned link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000150{
Marc Jones8d595692012-03-15 12:55:26 -0600151 struct resource *resource;
152 u32 result, reg;
153 resource = 0;
154 reg = 0;
155 result = reg_useable(0xc0, dev, nodeid, link);
156 if (result >= 1) {
157 /* I have been allocated this one */
158 reg = 0xc0;
159 }
160 /* Ext conf space */
161 if (!reg) {
162 /* Because of Extend conf space, we will never run out of reg,
163 * but we need one index to differ them. So ,same node and same
164 * link can have multi range
165 */
166 u32 index = get_io_addr_index(nodeid, link);
167 reg = 0x110 + (index << 24) + (4 << 20); // index could be 0, 255
168 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000169
Marc Jones8d595692012-03-15 12:55:26 -0600170 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
Frank Vibrans39fca802011-02-14 18:35:15 +0000171
Marc Jones8d595692012-03-15 12:55:26 -0600172 return resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000173}
174
Marc Jones8d595692012-03-15 12:55:26 -0600175static struct resource *amdfam14_find_mempair(device_t dev, u32 nodeid,
176 u32 link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000177{
Marc Jones8d595692012-03-15 12:55:26 -0600178 struct resource *resource;
179 u32 free_reg, reg;
180 resource = 0;
181 free_reg = 0;
182 for (reg = 0x80; reg <= 0xb8; reg += 0x8) {
183 int result;
184 result = reg_useable(reg, dev, nodeid, link);
185 if (result == 1) {
186 /* I have been allocated this one */
187 break;
188 } else if (result > 1) {
189 /* I have a free register pair */
190 free_reg = reg;
191 }
192 }
193 if (reg > 0xb8) {
194 reg = free_reg;
195 }
196 /* Ext conf space */
197 if (!reg) {
198 /* Because of Extend conf space, we will never run out of reg,
199 * but we need one index to differ them. So ,same node and same
200 * link can have multi range
201 */
202 u32 index = get_mmio_addr_index(nodeid, link);
203 reg = 0x110 + (index << 24) + (6 << 20); // index could be 0, 63
Frank Vibrans39fca802011-02-14 18:35:15 +0000204
Marc Jones8d595692012-03-15 12:55:26 -0600205 }
206 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
207 return resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000208}
209
Frank Vibrans39fca802011-02-14 18:35:15 +0000210static void amdfam14_link_read_bases(device_t dev, u32 nodeid, u32 link)
211{
Marc Jones8d595692012-03-15 12:55:26 -0600212 struct resource *resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000213
Marc Jones8d595692012-03-15 12:55:26 -0600214 /* Initialize the io space constraints on the current bus */
215 resource = amdfam14_find_iopair(dev, nodeid, link);
216 if (resource) {
217 u32 align;
Patrick Georgie1667822012-05-05 15:29:32 +0200218#if CONFIG_EXT_CONF_SUPPORT
Marc Jones8d595692012-03-15 12:55:26 -0600219 if ((resource->index & 0x1fff) == 0x1110) { // ext
220 align = 8;
221 } else
Frank Vibrans39fca802011-02-14 18:35:15 +0000222#endif
Marc Jones8d595692012-03-15 12:55:26 -0600223 align = log2(HT_IO_HOST_ALIGN);
224 resource->base = 0;
225 resource->size = 0;
226 resource->align = align;
227 resource->gran = align;
228 resource->limit = 0xffffUL;
229 resource->flags = IORESOURCE_IO | IORESOURCE_BRIDGE;
230 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000231
Marc Jones8d595692012-03-15 12:55:26 -0600232 /* Initialize the prefetchable memory constraints on the current bus */
233 resource = amdfam14_find_mempair(dev, nodeid, link);
234 if (resource) {
235 resource->base = 0;
236 resource->size = 0;
237 resource->align = log2(HT_MEM_HOST_ALIGN);
238 resource->gran = log2(HT_MEM_HOST_ALIGN);
239 resource->limit = 0xffffffffffULL;
240 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
241 resource->flags |= IORESOURCE_BRIDGE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000242
Patrick Georgie1667822012-05-05 15:29:32 +0200243#if CONFIG_EXT_CONF_SUPPORT
Marc Jones8d595692012-03-15 12:55:26 -0600244 if ((resource->index & 0x1fff) == 0x1110) { // ext
245 normalize_resource(resource);
246 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000247#endif
248
Marc Jones8d595692012-03-15 12:55:26 -0600249 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000250
Marc Jones8d595692012-03-15 12:55:26 -0600251 /* Initialize the memory constraints on the current bus */
252 resource = amdfam14_find_mempair(dev, nodeid, link);
253 if (resource) {
254 resource->base = 0;
255 resource->size = 0;
256 resource->align = log2(HT_MEM_HOST_ALIGN);
257 resource->gran = log2(HT_MEM_HOST_ALIGN);
258 resource->limit = 0xffffffffffULL;
259 resource->flags = IORESOURCE_MEM | IORESOURCE_BRIDGE;
Patrick Georgie1667822012-05-05 15:29:32 +0200260#if CONFIG_EXT_CONF_SUPPORT
Marc Jones8d595692012-03-15 12:55:26 -0600261 if ((resource->index & 0x1fff) == 0x1110) { // ext
262 normalize_resource(resource);
263 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000264#endif
Marc Jones8d595692012-03-15 12:55:26 -0600265 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000266}
267
268static u32 my_find_pci_tolm(struct bus *bus, u32 tolm)
269{
Marc Jones8d595692012-03-15 12:55:26 -0600270 struct resource *min;
271 min = 0;
272 search_bus_resources(bus, IORESOURCE_MEM, IORESOURCE_MEM, tolm_test,
273 &min);
274 if (min && tolm > min->base) {
275 tolm = min->base;
276 }
277 return tolm;
Frank Vibrans39fca802011-02-14 18:35:15 +0000278}
279
280#if CONFIG_HW_MEM_HOLE_SIZEK != 0
281
282struct hw_mem_hole_info {
Marc Jones8d595692012-03-15 12:55:26 -0600283 unsigned hole_startk;
284 int node_id;
Frank Vibrans39fca802011-02-14 18:35:15 +0000285};
286
287static struct hw_mem_hole_info get_hw_mem_hole_info(void)
288{
Marc Jones8d595692012-03-15 12:55:26 -0600289 struct hw_mem_hole_info mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000290
Marc Jones8d595692012-03-15 12:55:26 -0600291 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
292 mem_hole.node_id = -1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000293
Marc Jones8d595692012-03-15 12:55:26 -0600294 struct dram_base_mask_t d;
295 u32 hole;
296 d = get_dram_base_mask(0);
297 if (d.mask & 1) {
298 hole = pci_read_config32(__f1_dev[0], 0xf0);
299 if (hole & 1) { // we find the hole
300 mem_hole.hole_startk = (hole & (0xff << 24)) >> 10;
301 mem_hole.node_id = 0; // record the node No with hole
302 }
303 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000304#if 0
Marc Jones8d595692012-03-15 12:55:26 -0600305 /* We need to double check if there is speical set on base reg and limit reg
306 * are not continous instead of hole, it will find out it's hole_startk
307 */
308 if (mem_hole.node_id == -1) {
309 resource_t limitk_pri = 0;
310 struct dram_base_mask_t d;
311 resource_t base_k, limit_k;
312 d = get_dram_base_mask(0);
313 if (d.base & 1) {
314 base_k = ((resource_t) (d.base & 0x1fffff00)) << 9;
315 if (base_k <= 4 * 1024 * 1024) {
316 if (limitk_pri != base_k) { // we find the hole
317 mem_hole.hole_startk = (unsigned)limitk_pri; // must be below 4G
318 mem_hole.node_id = 0;
319 }
320 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000321
Marc Jones8d595692012-03-15 12:55:26 -0600322 limit_k =
323 ((resource_t) ((d.mask + 0x00000100) & 0x1fffff00))
324 << 9;
325 limitk_pri = limit_k;
326 }
327 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000328#endif
efdesign9805a89ab2011-06-20 17:38:49 -0700329
Marc Jones8d595692012-03-15 12:55:26 -0600330 return mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000331}
332#endif
333
Frank Vibrans39fca802011-02-14 18:35:15 +0000334static void read_resources(device_t dev)
335{
Marc Jones8d595692012-03-15 12:55:26 -0600336 u32 nodeid;
337 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000338
Marc Jones8d595692012-03-15 12:55:26 -0600339 printk(BIOS_DEBUG, "\nFam14h - read_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000340
Marc Jones8d595692012-03-15 12:55:26 -0600341 nodeid = amdfam14_nodeid(dev);
342 for (link = dev->link_list; link; link = link->next) {
343 if (link->children) {
344 amdfam14_link_read_bases(dev, nodeid, link->link_num);
345 }
346 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000347}
348
Marc Jones8d595692012-03-15 12:55:26 -0600349static void set_resource(device_t dev, struct resource *resource, u32 nodeid)
Frank Vibrans39fca802011-02-14 18:35:15 +0000350{
Marc Jones8d595692012-03-15 12:55:26 -0600351 resource_t rbase, rend;
352 unsigned reg, link_num;
353 char buf[50];
Frank Vibrans39fca802011-02-14 18:35:15 +0000354
Marc Jones8d595692012-03-15 12:55:26 -0600355 printk(BIOS_DEBUG, "\nFam14h - set_resource.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000356
Marc Jones8d595692012-03-15 12:55:26 -0600357 /* Make certain the resource has actually been set */
358 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
359 return;
360 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000361
Marc Jones8d595692012-03-15 12:55:26 -0600362 /* If I have already stored this resource don't worry about it */
363 if (resource->flags & IORESOURCE_STORED) {
364 return;
365 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000366
Marc Jones8d595692012-03-15 12:55:26 -0600367 /* Only handle PCI memory and IO resources */
368 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
369 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000370
Marc Jones8d595692012-03-15 12:55:26 -0600371 /* Ensure I am actually looking at a resource of function 1 */
372 if ((resource->index & 0xffff) < 0x1000) {
373 return;
374 }
375 /* Get the base address */
376 rbase = resource->base;
Frank Vibrans39fca802011-02-14 18:35:15 +0000377
Marc Jones8d595692012-03-15 12:55:26 -0600378 /* Get the limit (rounded up) */
379 rend = resource_end(resource);
Frank Vibrans39fca802011-02-14 18:35:15 +0000380
Marc Jones8d595692012-03-15 12:55:26 -0600381 /* Get the register and link */
382 reg = resource->index & 0xfff; // 4k
383 link_num = IOINDEX_LINK(resource->index);
Frank Vibrans39fca802011-02-14 18:35:15 +0000384
Marc Jones8d595692012-03-15 12:55:26 -0600385 if (resource->flags & IORESOURCE_IO) {
386 set_io_addr_reg(dev, nodeid, link_num, reg, rbase >> 8,
387 rend >> 8);
388 } else if (resource->flags & IORESOURCE_MEM) {
389 set_mmio_addr_reg(nodeid, link_num, reg, (resource->index >> 24),
390 rbase >> 8, rend >> 8, 1); // [39:8]
391 }
392 resource->flags |= IORESOURCE_STORED;
393 sprintf(buf, " <node %x link %x>", nodeid, link_num);
394 report_resource_stored(dev, resource, buf);
Frank Vibrans39fca802011-02-14 18:35:15 +0000395}
396
efdesign983f5ebd62011-09-14 13:47:17 -0600397#if CONFIG_CONSOLE_VGA_MULTI
Marc Jones8d595692012-03-15 12:55:26 -0600398extern device_t vga_pri; // the primary vga device, defined in device.c
Frank Vibrans39fca802011-02-14 18:35:15 +0000399#endif
400
401static void create_vga_resource(device_t dev, unsigned nodeid)
402{
Marc Jones8d595692012-03-15 12:55:26 -0600403 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000404
Marc Jones8d595692012-03-15 12:55:26 -0600405 printk(BIOS_DEBUG, "\nFam14h - create_vga_resource.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000406
Marc Jones8d595692012-03-15 12:55:26 -0600407 /* find out which link the VGA card is connected,
408 * we only deal with the 'first' vga card */
409 for (link = dev->link_list; link; link = link->next) {
410 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
efdesign983f5ebd62011-09-14 13:47:17 -0600411#if CONFIG_CONSOLE_VGA_MULTI
Marc Jones8d595692012-03-15 12:55:26 -0600412 printk(BIOS_DEBUG,
413 "VGA: vga_pri bus num = %d bus range [%d,%d]\n",
414 vga_pri->bus->secondary, link->secondary,
415 link->subordinate);
416 /* We need to make sure the vga_pri is under the link */
417 if ((vga_pri->bus->secondary >= link->secondary) &&
418 (vga_pri->bus->secondary <= link->subordinate))
Frank Vibrans39fca802011-02-14 18:35:15 +0000419#endif
Marc Jones8d595692012-03-15 12:55:26 -0600420 break;
421 }
422 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000423
Marc Jones8d595692012-03-15 12:55:26 -0600424 /* no VGA card installed */
425 if (link == NULL)
426 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000427
Marc Jones8d595692012-03-15 12:55:26 -0600428 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n",
429 dev_path(dev), nodeid, link->link_num);
430 set_vga_enable_reg(nodeid, link->link_num);
Frank Vibrans39fca802011-02-14 18:35:15 +0000431}
432
Frank Vibrans39fca802011-02-14 18:35:15 +0000433static void set_resources(device_t dev)
434{
Marc Jones8d595692012-03-15 12:55:26 -0600435 unsigned nodeid;
436 struct bus *bus;
437 struct resource *res;
Frank Vibrans39fca802011-02-14 18:35:15 +0000438
Marc Jones8d595692012-03-15 12:55:26 -0600439 printk(BIOS_DEBUG, "\nFam14h - set_resources.\n");
efdesign9805a89ab2011-06-20 17:38:49 -0700440
Marc Jones8d595692012-03-15 12:55:26 -0600441 /* Find the nodeid */
442 nodeid = amdfam14_nodeid(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000443
Marc Jones8d595692012-03-15 12:55:26 -0600444 create_vga_resource(dev, nodeid);
Frank Vibrans39fca802011-02-14 18:35:15 +0000445
Marc Jones8d595692012-03-15 12:55:26 -0600446 /* Set each resource we have found */
447 for (res = dev->resource_list; res; res = res->next) {
448 set_resource(dev, res, nodeid);
449 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000450
Marc Jones8d595692012-03-15 12:55:26 -0600451 for (bus = dev->link_list; bus; bus = bus->next) {
452 if (bus->children) {
453 assign_resources(bus);
454 }
455 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000456}
457
Frank Vibrans39fca802011-02-14 18:35:15 +0000458/* Domain/Root Complex related code */
459
460static void domain_read_resources(device_t dev)
461{
Marc Jones8d595692012-03-15 12:55:26 -0600462 unsigned reg;
Frank Vibrans39fca802011-02-14 18:35:15 +0000463
Marc Jones8d595692012-03-15 12:55:26 -0600464 printk(BIOS_DEBUG, "\nFam14h - domain_read_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000465
Marc Jones8d595692012-03-15 12:55:26 -0600466 /* Find the already assigned resource pairs */
467 get_fx_devs();
468 for (reg = 0x80; reg <= 0xc0; reg += 0x08) {
469 u32 base, limit;
470 base = f1_read_config32(reg);
471 limit = f1_read_config32(reg + 0x04);
472 /* Is this register allocated? */
473 if ((base & 3) != 0) {
474 unsigned nodeid, reg_link;
475 device_t reg_dev;
476 if (reg < 0xc0) { // mmio
477 nodeid = (limit & 0xf) + (base & 0x30);
478 } else { // io
479 nodeid = (limit & 0xf) + ((base >> 4) & 0x30);
480 }
481 reg_link = (limit >> 4) & 7;
482 reg_dev = __f0_dev[nodeid];
483 if (reg_dev) {
484 /* Reserve the resource */
485 struct resource *res;
486 res =
487 new_resource(reg_dev,
488 IOINDEX(0x1000 + reg,
489 reg_link));
490 if (res) {
491 res->flags = 1;
492 }
493 }
494 }
495 }
496 /* FIXME: do we need to check extend conf space?
497 I don't believe that much preset value */
Frank Vibrans39fca802011-02-14 18:35:15 +0000498
Patrick Georgie1667822012-05-05 15:29:32 +0200499#if !CONFIG_PCI_64BIT_PREF_MEM
Marc Jones8d595692012-03-15 12:55:26 -0600500 pci_domain_read_resources(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000501#else
Marc Jones8d595692012-03-15 12:55:26 -0600502 struct bus *link;
503 struct resource *resource;
504 for (link = dev->link_list; link; link = link->next) {
505 /* Initialize the system wide io space constraints */
506 resource = new_resource(dev, 0 | (link->link_num << 2));
507 resource->base = 0x400;
508 resource->limit = 0xffffUL;
509 resource->flags = IORESOURCE_IO;
Frank Vibrans39fca802011-02-14 18:35:15 +0000510
Marc Jones8d595692012-03-15 12:55:26 -0600511 /* Initialize the system wide prefetchable memory resources constraints */
512 resource = new_resource(dev, 1 | (link->link_num << 2));
513 resource->limit = 0xfcffffffffULL;
514 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
Frank Vibrans39fca802011-02-14 18:35:15 +0000515
Marc Jones8d595692012-03-15 12:55:26 -0600516 /* Initialize the system wide memory resources constraints */
517 resource = new_resource(dev, 2 | (link->link_num << 2));
518 resource->limit = 0xfcffffffffULL;
519 resource->flags = IORESOURCE_MEM;
520 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000521#endif
522}
523
Kyösti Mälkki6b5eb1c2012-07-19 19:26:43 +0300524static void setup_uma_memory(void)
Kyösti Mälkki55fff9302012-07-11 08:02:39 +0300525{
526#if CONFIG_GFXUMA
Kyösti Mälkkidbc47392012-08-05 12:11:40 +0300527 uint32_t topmem = (uint32_t) bsp_topmem();
Kyösti Mälkki55fff9302012-07-11 08:02:39 +0300528 uint32_t sys_mem;
529
Kyösti Mälkki55fff9302012-07-11 08:02:39 +0300530 /* refer to UMA Size Consideration in Family14h BKDG. */
Kyösti Mälkkidbc47392012-08-05 12:11:40 +0300531 sys_mem = topmem + 0x1000000; // Ignore 16MB allocated for C6 when finding UMA size, refer MemNGetUmaSizeON()
532 if ((bsp_topmem2()>>32) || (sys_mem >= 0x80000000)) {
Kyösti Mälkki55fff9302012-07-11 08:02:39 +0300533 uma_memory_size = 0x18000000; /* >= 2G memory, 384M recommended UMA */
534 }
535 else {
536 if (sys_mem >= 0x40000000) {
537 uma_memory_size = 0x10000000; /* >= 1G memory, 256M recommended UMA */
538 } else {
539 uma_memory_size = 0x4000000; /* <1G memory, 64M recommended UMA */
540 }
541 }
542
Kyösti Mälkkidbc47392012-08-05 12:11:40 +0300543 uma_memory_base = topmem - uma_memory_size; /* TOP_MEM1 */
Kyösti Mälkki55fff9302012-07-11 08:02:39 +0300544 printk(BIOS_INFO, "%s: uma size 0x%08llx, memory start 0x%08llx\n",
545 __func__, uma_memory_size, uma_memory_base);
Kyösti Mälkki55fff9302012-07-11 08:02:39 +0300546#endif
547}
548
Frank Vibrans39fca802011-02-14 18:35:15 +0000549static void domain_set_resources(device_t dev)
550{
Marc Jones8d595692012-03-15 12:55:26 -0600551 printk(BIOS_DEBUG, "\nFam14h - domain_set_resources.\n");
552 printk(BIOS_DEBUG, " amsr - incoming dev = %08x\n", (u32) dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000553
Patrick Georgie1667822012-05-05 15:29:32 +0200554#if CONFIG_PCI_64BIT_PREF_MEM
Marc Jones8d595692012-03-15 12:55:26 -0600555 struct resource *io, *mem1, *mem2;
556 struct resource *res;
Frank Vibrans39fca802011-02-14 18:35:15 +0000557#endif
Marc Jones8d595692012-03-15 12:55:26 -0600558 unsigned long mmio_basek;
559 u32 pci_tolm;
560 int idx;
561 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000562#if CONFIG_HW_MEM_HOLE_SIZEK != 0
Marc Jones8d595692012-03-15 12:55:26 -0600563 struct hw_mem_hole_info mem_hole;
564 u32 reset_memhole = 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000565#endif
566
Kyösti Mälkkidbc47392012-08-05 12:11:40 +0300567 setup_bsp_ramtop();
Kyösti Mälkki6b5eb1c2012-07-19 19:26:43 +0300568 setup_uma_memory();
569
Patrick Georgie1667822012-05-05 15:29:32 +0200570#if CONFIG_PCI_64BIT_PREF_MEM
Frank Vibrans39fca802011-02-14 18:35:15 +0000571
Marc Jones8d595692012-03-15 12:55:26 -0600572 printk(BIOS_DEBUG, "adsr - CONFIG_PCI_64BIT_PREF_MEM is true.\n");
573 for (link = dev->link_list; link; link = link->next) {
574 /* Now reallocate the pci resources memory with the
575 * highest addresses I can manage.
576 */
577 mem1 = find_resource(dev, 1 | (link->link_num << 2));
578 mem2 = find_resource(dev, 2 | (link->link_num << 2));
Frank Vibrans39fca802011-02-14 18:35:15 +0000579
Marc Jones8d595692012-03-15 12:55:26 -0600580 printk(BIOS_DEBUG,
581 "base1: 0x%08Lx limit1: 0x%08Lx size: 0x%08Lx align: %d\n",
582 (u32) (mem1->base), (u32) (mem1->limit),
583 (u32) (mem1->size), u32) (mem1->align));
584 printk(BIOS_DEBUG,
585 "base2: 0x%08Lx limit2: 0x%08Lx size: 0x%08Lx align: %d\n",
586 (u32) (mem2->base), (u32) (mem2->limit),
587 (u32) (mem2->size), (u32) (mem2->align));
Frank Vibrans39fca802011-02-14 18:35:15 +0000588
Marc Jones8d595692012-03-15 12:55:26 -0600589 /* See if both resources have roughly the same limits */
590 if (((mem1->limit <= 0xffffffff) && (mem2->limit <= 0xffffffff))
591 || ((mem1->limit > 0xffffffff)
592 && (mem2->limit > 0xffffffff))) {
593 /* If so place the one with the most stringent alignment first
594 */
595 if (mem2->align > mem1->align) {
596 struct resource *tmp;
597 tmp = mem1;
598 mem1 = mem2;
599 mem2 = tmp;
600 }
601 /* Now place the memory as high up as it will go */
602 mem2->base = resource_max(mem2);
603 mem1->limit = mem2->base - 1;
604 mem1->base = resource_max(mem1);
605 } else {
606 /* Place the resources as high up as they will go */
607 mem2->base = resource_max(mem2);
608 mem1->base = resource_max(mem1);
609 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000610
Marc Jones8d595692012-03-15 12:55:26 -0600611 printk(BIOS_DEBUG,
612 "base1: 0x%08Lx limit1: 0x%08Lx size: 0x%08Lx align: %d\n",
613 mem1->base, mem1->limit, mem1->size, mem1->align);
614 printk(BIOS_DEBUG,
615 "base2: 0x%08Lx limit2: 0x%08Lx size: 0x%08Lx align: %d\n",
616 mem2->base, mem2->limit, mem2->size, mem2->align);
617 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000618
Marc Jones8d595692012-03-15 12:55:26 -0600619 for (res = &dev->resource_list; res; res = res->next) {
620 res->flags |= IORESOURCE_ASSIGNED;
621 res->flags |= IORESOURCE_STORED;
622 report_resource_stored(dev, res, "");
623 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000624#endif
625
Marc Jones8d595692012-03-15 12:55:26 -0600626 pci_tolm = 0xffffffffUL;
627 for (link = dev->link_list; link; link = link->next) {
628 pci_tolm = my_find_pci_tolm(link, pci_tolm);
629 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000630
Marc Jones8d595692012-03-15 12:55:26 -0600631 // FIXME handle interleaved nodes. If you fix this here, please fix
632 // amdk8, too.
633 mmio_basek = pci_tolm >> 10;
634 /* Round mmio_basek to something the processor can support */
635 mmio_basek &= ~((1 << 6) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000636
Marc Jones8d595692012-03-15 12:55:26 -0600637 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
638 // MMIO hole. If you fix this here, please fix amdk8, too.
639 /* Round the mmio hole to 64M */
640 mmio_basek &= ~((64 * 1024) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000641
642#if CONFIG_HW_MEM_HOLE_SIZEK != 0
643/* if the hw mem hole is already set in raminit stage, here we will compare
644 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
645 * use hole_basek as mmio_basek and we don't need to reset hole.
646 * otherwise We reset the hole to the mmio_basek
647 */
648
Marc Jones8d595692012-03-15 12:55:26 -0600649 mem_hole = get_hw_mem_hole_info();
Frank Vibrans39fca802011-02-14 18:35:15 +0000650
Marc Jones8d595692012-03-15 12:55:26 -0600651 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
652 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
653 mmio_basek = mem_hole.hole_startk;
654 reset_memhole = 0;
655 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000656#endif
657
Marc Jones8d595692012-03-15 12:55:26 -0600658 idx = 0x10;
Frank Vibrans39fca802011-02-14 18:35:15 +0000659
Marc Jones8d595692012-03-15 12:55:26 -0600660 struct dram_base_mask_t d;
661 resource_t basek, limitk, sizek; // 4 1T
Frank Vibrans39fca802011-02-14 18:35:15 +0000662
Marc Jones8d595692012-03-15 12:55:26 -0600663 d = get_dram_base_mask(0);
Frank Vibrans39fca802011-02-14 18:35:15 +0000664
Marc Jones8d595692012-03-15 12:55:26 -0600665 if (d.mask & 1) {
666 basek = ((resource_t) ((u64) d.base)) << 8;
667 limitk = (resource_t) (((u64) d.mask << 8) | 0xFFFFFF);
668 printk(BIOS_DEBUG,
669 "adsr: (before) basek = %llx, limitk = %llx.\n", basek,
670 limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000671
Marc Jones8d595692012-03-15 12:55:26 -0600672 /* Convert these values to multiples of 1K for ease of math. */
673 basek >>= 10;
674 limitk >>= 10;
675 sizek = limitk - basek + 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000676
Marc Jones8d595692012-03-15 12:55:26 -0600677 printk(BIOS_DEBUG,
678 "adsr: (after) basek = %llx, limitk = %llx, sizek = %llx.\n",
679 basek, limitk, sizek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000680
Marc Jones8d595692012-03-15 12:55:26 -0600681 /* see if we need a hole from 0xa0000 to 0xbffff */
682 if ((basek < 640) && (sizek > 768)) {
683 printk(BIOS_DEBUG,"adsr - 0xa0000 to 0xbffff resource.\n");
684 ram_resource(dev, (idx | 0), basek, 640 - basek);
685 idx += 0x10;
686 basek = 768;
687 sizek = limitk - 768;
688 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000689
Marc Jones8d595692012-03-15 12:55:26 -0600690 printk(BIOS_DEBUG,
691 "adsr: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
692 mmio_basek, basek, limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000693
Marc Jones8d595692012-03-15 12:55:26 -0600694 /* split the region to accomodate pci memory space */
695 if ((basek < 4 * 1024 * 1024) && (limitk > mmio_basek)) {
696 if (basek <= mmio_basek) {
697 unsigned pre_sizek;
698 pre_sizek = mmio_basek - basek;
699 if (pre_sizek > 0) {
700 ram_resource(dev, idx, basek,
701 pre_sizek);
702 idx += 0x10;
703 sizek -= pre_sizek;
Patrick Georgie1667822012-05-05 15:29:32 +0200704#if CONFIG_WRITE_HIGH_TABLES
Marc Jones8d595692012-03-15 12:55:26 -0600705 if (high_tables_base == 0) {
706 /* Leave some space for ACPI, PIRQ and MP tables */
Patrick Georgie1667822012-05-05 15:29:32 +0200707#if CONFIG_GFXUMA
Marc Jones5750ed22012-03-15 13:21:41 -0600708 high_tables_base = uma_memory_base - HIGH_MEMORY_SIZE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000709#else
Marc Jones5750ed22012-03-15 13:21:41 -0600710 high_tables_base = (mmio_basek * 1024) - HIGH_MEMORY_SIZE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000711#endif
Marc Jones5750ed22012-03-15 13:21:41 -0600712 high_tables_size = HIGH_MEMORY_SIZE;
713 printk(BIOS_DEBUG, " split: %dK table at =%08llx\n",
714 (u32)(high_tables_size / 1024), high_tables_base);
Marc Jones8d595692012-03-15 12:55:26 -0600715 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000716#endif
Marc Jones8d595692012-03-15 12:55:26 -0600717 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000718
Marc Jones8d595692012-03-15 12:55:26 -0600719 basek = mmio_basek;
720 }
721 if ((basek + sizek) <= 4 * 1024 * 1024) {
722 sizek = 0;
723 } else {
724 basek = 4 * 1024 * 1024;
725 sizek -= (4 * 1024 * 1024 - mmio_basek);
726 }
727 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000728
Marc Jones8d595692012-03-15 12:55:26 -0600729 ram_resource(dev, (idx | 0), basek, sizek);
730 idx += 0x10;
Patrick Georgie1667822012-05-05 15:29:32 +0200731#if CONFIG_WRITE_HIGH_TABLES
Marc Jones8d595692012-03-15 12:55:26 -0600732 printk(BIOS_DEBUG,
733 "%d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n", 0,
734 mmio_basek, basek, limitk);
735 if (high_tables_base == 0) {
736 /* Leave some space for ACPI, PIRQ and MP tables */
Patrick Georgie1667822012-05-05 15:29:32 +0200737#if CONFIG_GFXUMA
Marc Jones5750ed22012-03-15 13:21:41 -0600738 high_tables_base = uma_memory_base - HIGH_MEMORY_SIZE;
Marc Jones8d595692012-03-15 12:55:26 -0600739 printk(BIOS_DEBUG, " adsr - uma_memory_base = %llx.\n", uma_memory_base);
Frank Vibrans39fca802011-02-14 18:35:15 +0000740#else
Marc Jones5750ed22012-03-15 13:21:41 -0600741 high_tables_base = (limitk * 1024) - HIGH_MEMORY_SIZE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000742#endif
Marc Jones5750ed22012-03-15 13:21:41 -0600743 high_tables_size = HIGH_MEMORY_SIZE;
Marc Jones8d595692012-03-15 12:55:26 -0600744 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000745#endif
Marc Jones8d595692012-03-15 12:55:26 -0600746 }
747 printk(BIOS_DEBUG, " adsr - mmio_basek = %lx.\n", mmio_basek);
748 printk(BIOS_DEBUG, " adsr - high_tables_size = %llx.\n",
749 high_tables_size);
Frank Vibrans39fca802011-02-14 18:35:15 +0000750
Patrick Georgie1667822012-05-05 15:29:32 +0200751#if CONFIG_GFXUMA
Kyösti Mälkki63f8c082012-07-10 13:27:26 +0300752 uma_resource(dev, 7, uma_memory_base >> 10, uma_memory_size >> 10);
Frank Vibrans39fca802011-02-14 18:35:15 +0000753#endif
754
Marc Jones8d595692012-03-15 12:55:26 -0600755 for (link = dev->link_list; link; link = link->next) {
756 if (link->children) {
757 assign_resources(link);
758 }
759 }
760 printk(BIOS_DEBUG, " adsr - leaving this lovely routine.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000761}
762
zbaof7223732012-04-13 13:42:15 +0800763extern u8 acpi_slp_type;
764
765static void domain_enable_resources(device_t dev)
766{
Marc Jones8d595692012-03-15 12:55:26 -0600767 u32 val;
Kerry Shefeed3292011-08-18 18:03:44 +0800768
769#if CONFIG_AMD_SB_CIMX
zbaof7223732012-04-13 13:42:15 +0800770 #if CONFIG_HAVE_ACPI_RESUME
771 if (acpi_slp_type != 3) {
772 sb_After_Pci_Init();
773 sb_Mid_Post_Init();
774 } else {
775 sb_After_Pci_Restore_Init();
776 }
777 #else
Marc Jones8d595692012-03-15 12:55:26 -0600778 sb_After_Pci_Init();
779 sb_Mid_Post_Init();
zbaof7223732012-04-13 13:42:15 +0800780 #endif
Kerry Shefeed3292011-08-18 18:03:44 +0800781#endif
782
Marc Jones8d595692012-03-15 12:55:26 -0600783 /* Must be called after PCI enumeration and resource allocation */
784 printk(BIOS_DEBUG, "\nFam14h - domain_enable_resources: AmdInitMid.\n");
zbaof7223732012-04-13 13:42:15 +0800785
786#if CONFIG_HAVE_ACPI_RESUME
787 if (acpi_slp_type != 3) {
788 printk(BIOS_DEBUG, "agesawrapper_amdinitmid ");
789 val = agesawrapper_amdinitmid ();
790 if (val)
791 printk(BIOS_DEBUG, "error level: %x \n", val);
792 else
793 printk(BIOS_DEBUG, "passed.\n");
Marc Jones8d595692012-03-15 12:55:26 -0600794 }
zbaof7223732012-04-13 13:42:15 +0800795#else
796 printk(BIOS_DEBUG, "agesawrapper_amdinitmid ");
797 val = agesawrapper_amdinitmid ();
798 if (val)
799 printk(BIOS_DEBUG, "error level: %x \n", val);
800 else
801 printk(BIOS_DEBUG, "passed.\n");
802#endif
efdesign9805a89ab2011-06-20 17:38:49 -0700803
Marc Jones8d595692012-03-15 12:55:26 -0600804 printk(BIOS_DEBUG, " ader - leaving domain_enable_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000805}
806
Frank Vibrans39fca802011-02-14 18:35:15 +0000807/* Bus related code */
808
Marc Jones8d595692012-03-15 12:55:26 -0600809static void cpu_bus_read_resources(device_t dev) {
810 printk(BIOS_DEBUG, "\nFam14h - cpu_bus_read_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000811
812#if CONFIG_MMCONF_SUPPORT
Marc Jones8d595692012-03-15 12:55:26 -0600813 struct resource *resource = new_resource(dev, 0xc0010058);
814 resource->base = CONFIG_MMCONF_BASE_ADDRESS;
815 resource->size = CONFIG_MMCONF_BUS_NUMBER * 4096 * 256;
816 resource->flags = IORESOURCE_MEM | IORESOURCE_RESERVE |
817 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
Frank Vibrans39fca802011-02-14 18:35:15 +0000818#endif
819}
820
Marc Jones8d595692012-03-15 12:55:26 -0600821static void cpu_bus_set_resources(device_t dev) {
822 struct resource *resource = find_resource(dev, 0xc0010058);
Frank Vibrans39fca802011-02-14 18:35:15 +0000823
Marc Jones8d595692012-03-15 12:55:26 -0600824 printk(BIOS_DEBUG, "\nFam14h - cpu_bus_set_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000825
Marc Jones8d595692012-03-15 12:55:26 -0600826 if (resource) {
827 report_resource_stored(dev, resource, " <mmconfig>");
828 }
829 pci_dev_set_resources(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000830}
efdesign9805a89ab2011-06-20 17:38:49 -0700831
zbaof7223732012-04-13 13:42:15 +0800832static u32 cpu_bus_scan(device_t dev, u32 max)
833{
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300834 struct bus *cpu_bus = dev->link_list;
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000835 device_t cpu;
zbaof7223732012-04-13 13:42:15 +0800836 int apic_id, cores_found;
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000837
zbaof7223732012-04-13 13:42:15 +0800838 /* There is only one node for fam14, but there may be multiple cores. */
839 cpu = dev_find_slot(0, PCI_DEVFN(0x18, 0));
840 if (!cpu)
841 printk(BIOS_ERR, "ERROR: %02x:%02x.0 not found", 0, 0x18);
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000842
zbaof7223732012-04-13 13:42:15 +0800843 cores_found = (pci_read_config32(dev_find_slot(0,PCI_DEVFN(0x18,0x3)), 0xe8) >> 12) & 3;
844 printk(BIOS_DEBUG, " AP siblings=%d\n", cores_found);
845
zbaof7223732012-04-13 13:42:15 +0800846 for (apic_id = 0; apic_id <= cores_found; apic_id++) {
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300847 cpu = add_cpu_device(cpu_bus, apic_id, 1);
848 if (cpu)
849 amd_cpu_topology(cpu, 0, apic_id);
Marc Jones8d595692012-03-15 12:55:26 -0600850 }
zbaof7223732012-04-13 13:42:15 +0800851 return max;
852}
853
854static void cpu_bus_init(device_t dev)
855{
856 initialize_cpus(dev->link_list);
Frank Vibrans39fca802011-02-14 18:35:15 +0000857}
858
Frank Vibrans39fca802011-02-14 18:35:15 +0000859/* North Bridge Structures */
860
861static struct device_operations northbridge_operations = {
Marc Jones8d595692012-03-15 12:55:26 -0600862 .read_resources = read_resources,
863 .set_resources = set_resources,
864 .enable_resources = pci_dev_enable_resources,
865 .init = northbridge_init,
866 .enable = 0,.ops_pci = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000867};
868
Frank Vibrans39fca802011-02-14 18:35:15 +0000869static const struct pci_driver northbridge_driver __pci_driver = {
Marc Jones8d595692012-03-15 12:55:26 -0600870 .ops = &northbridge_operations,
871 .vendor = PCI_VENDOR_ID_AMD,
872 .device = 0x1510,
Frank Vibrans39fca802011-02-14 18:35:15 +0000873};
874
efdesign9805a89ab2011-06-20 17:38:49 -0700875struct chip_operations northbridge_amd_agesa_family14_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600876 CHIP_NAME("AMD Family 14h Northbridge")
877 .enable_dev = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000878};
879
Frank Vibrans39fca802011-02-14 18:35:15 +0000880/* Root Complex Structures */
881
Frank Vibrans39fca802011-02-14 18:35:15 +0000882static struct device_operations pci_domain_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600883 .read_resources = domain_read_resources,
884 .set_resources = domain_set_resources,
885 .enable_resources = domain_enable_resources,
886 .init = NULL,
887 .scan_bus = pci_domain_scan_bus,
Frank Vibrans39fca802011-02-14 18:35:15 +0000888};
889
Frank Vibrans39fca802011-02-14 18:35:15 +0000890static struct device_operations cpu_bus_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600891 .read_resources = cpu_bus_read_resources,
892 .set_resources = cpu_bus_set_resources,
893 .enable_resources = NULL,
894 .init = cpu_bus_init,
zbaof7223732012-04-13 13:42:15 +0800895 .scan_bus = cpu_bus_scan,
Frank Vibrans39fca802011-02-14 18:35:15 +0000896};
897
Marc Jones8d595692012-03-15 12:55:26 -0600898static void root_complex_enable_dev(struct device *dev) {
899 /* Set the operations if it is a special bus type */
900 if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) {
901 dev->ops = &pci_domain_ops;
902 } else if (dev->path.type == DEVICE_PATH_APIC_CLUSTER) {
903 dev->ops = &cpu_bus_ops;
904 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000905}
906
efdesign9805a89ab2011-06-20 17:38:49 -0700907struct chip_operations northbridge_amd_agesa_family14_root_complex_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600908 CHIP_NAME("AMD Family 14h Root Complex")
909 .enable_dev = root_complex_enable_dev,
Frank Vibrans39fca802011-02-14 18:35:15 +0000910};