blob: dbc432a3ead89f50fc28b7af9e8ce1f84c911aae [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{
Marc Jones8d595692012-03-15 12:55:26 -060054 return dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB + nodeid, fn));
Frank Vibrans39fca802011-02-14 18:35:15 +000055}
56
Frank Vibrans39fca802011-02-14 18:35:15 +000057static void get_fx_devs(void)
58{
Marc Jones8d595692012-03-15 12:55:26 -060059 int i;
60 for (i = 0; i < FX_DEVS; i++) {
61 __f0_dev[i] = get_node_pci(i, 0);
62 __f1_dev[i] = get_node_pci(i, 1);
63 __f2_dev[i] = get_node_pci(i, 2);
64 __f4_dev[i] = get_node_pci(i, 4);
65 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
66 fx_devs = i + 1;
67 }
68 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
69 die("Cannot find 0:0x18.[0|1]\n");
70 }
Frank Vibrans39fca802011-02-14 18:35:15 +000071}
72
Frank Vibrans39fca802011-02-14 18:35:15 +000073static u32 f1_read_config32(unsigned reg)
74{
Marc Jones8d595692012-03-15 12:55:26 -060075 if (fx_devs == 0)
76 get_fx_devs();
77 return pci_read_config32(__f1_dev[0], reg);
Frank Vibrans39fca802011-02-14 18:35:15 +000078}
79
Frank Vibrans39fca802011-02-14 18:35:15 +000080static void f1_write_config32(unsigned reg, u32 value)
81{
Marc Jones8d595692012-03-15 12:55:26 -060082 int i;
83 if (fx_devs == 0)
84 get_fx_devs();
85 for (i = 0; i < fx_devs; i++) {
86 device_t dev;
87 dev = __f1_dev[i];
88 if (dev && dev->enabled) {
89 pci_write_config32(dev, reg, value);
90 }
91 }
Frank Vibrans39fca802011-02-14 18:35:15 +000092}
93
Frank Vibrans39fca802011-02-14 18:35:15 +000094static u32 amdfam14_nodeid(device_t dev)
95{
Marc Jones8d595692012-03-15 12:55:26 -060096 return (dev->path.pci.devfn >> 3) - CONFIG_CDB;
Frank Vibrans39fca802011-02-14 18:35:15 +000097}
98
Frank Vibrans39fca802011-02-14 18:35:15 +000099#include "amdfam14_conf.c"
100
Frank Vibrans39fca802011-02-14 18:35:15 +0000101static void northbridge_init(device_t dev)
102{
Marc Jones8d595692012-03-15 12:55:26 -0600103 printk(BIOS_DEBUG, "Northbridge init\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000104}
105
Frank Vibrans39fca802011-02-14 18:35:15 +0000106static void set_vga_enable_reg(u32 nodeid, u32 linkn)
107{
Marc Jones8d595692012-03-15 12:55:26 -0600108 u32 val;
Frank Vibrans39fca802011-02-14 18:35:15 +0000109
Marc Jones8d595692012-03-15 12:55:26 -0600110 val = 1 | (nodeid << 4) | (linkn << 12);
111 /* it will routing (1)mmio 0xa0000:0xbffff (2) io 0x3b0:0x3bb,
112 0x3c0:0x3df */
113 f1_write_config32(0xf4, val);
Frank Vibrans39fca802011-02-14 18:35:15 +0000114
115}
116
Frank Vibrans39fca802011-02-14 18:35:15 +0000117static int reg_useable(unsigned reg, device_t goal_dev, unsigned goal_nodeid,
Marc Jones8d595692012-03-15 12:55:26 -0600118 unsigned goal_link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000119{
Marc Jones8d595692012-03-15 12:55:26 -0600120 struct resource *res;
121 unsigned nodeid, link = 0;
122 int result;
123 res = 0;
124 for (nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
125 device_t dev;
126 dev = __f0_dev[nodeid];
127 if (!dev)
128 continue;
129 for (link = 0; !res && (link < 8); link++) {
130 res = probe_resource(dev, IOINDEX(0x1000 + reg, link));
131 }
132 }
133 result = 2;
134 if (res) {
135 result = 0;
136 if ((goal_link == (link - 1)) &&
137 (goal_nodeid == (nodeid - 1)) && (res->flags <= 1)) {
138 result = 1;
139 }
140 }
141 return result;
Frank Vibrans39fca802011-02-14 18:35:15 +0000142}
143
Marc Jones8d595692012-03-15 12:55:26 -0600144static struct resource *amdfam14_find_iopair(device_t dev, unsigned nodeid,
145 unsigned link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000146{
Marc Jones8d595692012-03-15 12:55:26 -0600147 struct resource *resource;
148 u32 result, reg;
149 resource = 0;
150 reg = 0;
151 result = reg_useable(0xc0, dev, nodeid, link);
152 if (result >= 1) {
153 /* I have been allocated this one */
154 reg = 0xc0;
155 }
156 /* Ext conf space */
157 if (!reg) {
158 /* Because of Extend conf space, we will never run out of reg,
159 * but we need one index to differ them. So ,same node and same
160 * link can have multi range
161 */
162 u32 index = get_io_addr_index(nodeid, link);
163 reg = 0x110 + (index << 24) + (4 << 20); // index could be 0, 255
164 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000165
Marc Jones8d595692012-03-15 12:55:26 -0600166 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
Frank Vibrans39fca802011-02-14 18:35:15 +0000167
Marc Jones8d595692012-03-15 12:55:26 -0600168 return resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000169}
170
Marc Jones8d595692012-03-15 12:55:26 -0600171static struct resource *amdfam14_find_mempair(device_t dev, u32 nodeid,
172 u32 link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000173{
Marc Jones8d595692012-03-15 12:55:26 -0600174 struct resource *resource;
175 u32 free_reg, reg;
176 resource = 0;
177 free_reg = 0;
178 for (reg = 0x80; reg <= 0xb8; reg += 0x8) {
179 int result;
180 result = reg_useable(reg, dev, nodeid, link);
181 if (result == 1) {
182 /* I have been allocated this one */
183 break;
184 } else if (result > 1) {
185 /* I have a free register pair */
186 free_reg = reg;
187 }
188 }
189 if (reg > 0xb8) {
190 reg = free_reg;
191 }
192 /* Ext conf space */
193 if (!reg) {
194 /* Because of Extend conf space, we will never run out of reg,
195 * but we need one index to differ them. So ,same node and same
196 * link can have multi range
197 */
198 u32 index = get_mmio_addr_index(nodeid, link);
199 reg = 0x110 + (index << 24) + (6 << 20); // index could be 0, 63
Frank Vibrans39fca802011-02-14 18:35:15 +0000200
Marc Jones8d595692012-03-15 12:55:26 -0600201 }
202 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
203 return resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000204}
205
Frank Vibrans39fca802011-02-14 18:35:15 +0000206static void amdfam14_link_read_bases(device_t dev, u32 nodeid, u32 link)
207{
Marc Jones8d595692012-03-15 12:55:26 -0600208 struct resource *resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000209
Marc Jones8d595692012-03-15 12:55:26 -0600210 /* Initialize the io space constraints on the current bus */
211 resource = amdfam14_find_iopair(dev, nodeid, link);
212 if (resource) {
213 u32 align;
Patrick Georgie1667822012-05-05 15:29:32 +0200214#if CONFIG_EXT_CONF_SUPPORT
Marc Jones8d595692012-03-15 12:55:26 -0600215 if ((resource->index & 0x1fff) == 0x1110) { // ext
216 align = 8;
217 } else
Frank Vibrans39fca802011-02-14 18:35:15 +0000218#endif
Marc Jones8d595692012-03-15 12:55:26 -0600219 align = log2(HT_IO_HOST_ALIGN);
220 resource->base = 0;
221 resource->size = 0;
222 resource->align = align;
223 resource->gran = align;
224 resource->limit = 0xffffUL;
225 resource->flags = IORESOURCE_IO | IORESOURCE_BRIDGE;
226 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000227
Marc Jones8d595692012-03-15 12:55:26 -0600228 /* Initialize the prefetchable memory constraints on the current bus */
229 resource = amdfam14_find_mempair(dev, nodeid, link);
230 if (resource) {
231 resource->base = 0;
232 resource->size = 0;
233 resource->align = log2(HT_MEM_HOST_ALIGN);
234 resource->gran = log2(HT_MEM_HOST_ALIGN);
235 resource->limit = 0xffffffffffULL;
236 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
237 resource->flags |= IORESOURCE_BRIDGE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000238
Patrick Georgie1667822012-05-05 15:29:32 +0200239#if CONFIG_EXT_CONF_SUPPORT
Marc Jones8d595692012-03-15 12:55:26 -0600240 if ((resource->index & 0x1fff) == 0x1110) { // ext
241 normalize_resource(resource);
242 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000243#endif
244
Marc Jones8d595692012-03-15 12:55:26 -0600245 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000246
Marc Jones8d595692012-03-15 12:55:26 -0600247 /* Initialize the memory constraints on the current bus */
248 resource = amdfam14_find_mempair(dev, nodeid, link);
249 if (resource) {
250 resource->base = 0;
251 resource->size = 0;
252 resource->align = log2(HT_MEM_HOST_ALIGN);
253 resource->gran = log2(HT_MEM_HOST_ALIGN);
254 resource->limit = 0xffffffffffULL;
255 resource->flags = IORESOURCE_MEM | IORESOURCE_BRIDGE;
Patrick Georgie1667822012-05-05 15:29:32 +0200256#if CONFIG_EXT_CONF_SUPPORT
Marc Jones8d595692012-03-15 12:55:26 -0600257 if ((resource->index & 0x1fff) == 0x1110) { // ext
258 normalize_resource(resource);
259 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000260#endif
Marc Jones8d595692012-03-15 12:55:26 -0600261 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000262}
263
264static u32 my_find_pci_tolm(struct bus *bus, u32 tolm)
265{
Marc Jones8d595692012-03-15 12:55:26 -0600266 struct resource *min;
267 min = 0;
268 search_bus_resources(bus, IORESOURCE_MEM, IORESOURCE_MEM, tolm_test,
269 &min);
270 if (min && tolm > min->base) {
271 tolm = min->base;
272 }
273 return tolm;
Frank Vibrans39fca802011-02-14 18:35:15 +0000274}
275
276#if CONFIG_HW_MEM_HOLE_SIZEK != 0
277
278struct hw_mem_hole_info {
Marc Jones8d595692012-03-15 12:55:26 -0600279 unsigned hole_startk;
280 int node_id;
Frank Vibrans39fca802011-02-14 18:35:15 +0000281};
282
283static struct hw_mem_hole_info get_hw_mem_hole_info(void)
284{
Marc Jones8d595692012-03-15 12:55:26 -0600285 struct hw_mem_hole_info mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000286
Marc Jones8d595692012-03-15 12:55:26 -0600287 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
288 mem_hole.node_id = -1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000289
Marc Jones8d595692012-03-15 12:55:26 -0600290 struct dram_base_mask_t d;
291 u32 hole;
292 d = get_dram_base_mask(0);
293 if (d.mask & 1) {
294 hole = pci_read_config32(__f1_dev[0], 0xf0);
295 if (hole & 1) { // we find the hole
296 mem_hole.hole_startk = (hole & (0xff << 24)) >> 10;
297 mem_hole.node_id = 0; // record the node No with hole
298 }
299 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000300#if 0
Marc Jones8d595692012-03-15 12:55:26 -0600301 /* We need to double check if there is speical set on base reg and limit reg
302 * are not continous instead of hole, it will find out it's hole_startk
303 */
304 if (mem_hole.node_id == -1) {
305 resource_t limitk_pri = 0;
306 struct dram_base_mask_t d;
307 resource_t base_k, limit_k;
308 d = get_dram_base_mask(0);
309 if (d.base & 1) {
310 base_k = ((resource_t) (d.base & 0x1fffff00)) << 9;
311 if (base_k <= 4 * 1024 * 1024) {
312 if (limitk_pri != base_k) { // we find the hole
313 mem_hole.hole_startk = (unsigned)limitk_pri; // must be below 4G
314 mem_hole.node_id = 0;
315 }
316 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000317
Marc Jones8d595692012-03-15 12:55:26 -0600318 limit_k =
319 ((resource_t) ((d.mask + 0x00000100) & 0x1fffff00))
320 << 9;
321 limitk_pri = limit_k;
322 }
323 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000324#endif
efdesign9805a89ab2011-06-20 17:38:49 -0700325
Marc Jones8d595692012-03-15 12:55:26 -0600326 return mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000327}
328#endif
329
Frank Vibrans39fca802011-02-14 18:35:15 +0000330static void read_resources(device_t dev)
331{
Marc Jones8d595692012-03-15 12:55:26 -0600332 u32 nodeid;
333 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000334
Marc Jones8d595692012-03-15 12:55:26 -0600335 printk(BIOS_DEBUG, "\nFam14h - read_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000336
Marc Jones8d595692012-03-15 12:55:26 -0600337 nodeid = amdfam14_nodeid(dev);
338 for (link = dev->link_list; link; link = link->next) {
339 if (link->children) {
340 amdfam14_link_read_bases(dev, nodeid, link->link_num);
341 }
342 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000343}
344
Marc Jones8d595692012-03-15 12:55:26 -0600345static void set_resource(device_t dev, struct resource *resource, u32 nodeid)
Frank Vibrans39fca802011-02-14 18:35:15 +0000346{
Marc Jones8d595692012-03-15 12:55:26 -0600347 resource_t rbase, rend;
348 unsigned reg, link_num;
349 char buf[50];
Frank Vibrans39fca802011-02-14 18:35:15 +0000350
Marc Jones8d595692012-03-15 12:55:26 -0600351 printk(BIOS_DEBUG, "\nFam14h - set_resource.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000352
Marc Jones8d595692012-03-15 12:55:26 -0600353 /* Make certain the resource has actually been set */
354 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
355 return;
356 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000357
Marc Jones8d595692012-03-15 12:55:26 -0600358 /* If I have already stored this resource don't worry about it */
359 if (resource->flags & IORESOURCE_STORED) {
360 return;
361 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000362
Marc Jones8d595692012-03-15 12:55:26 -0600363 /* Only handle PCI memory and IO resources */
364 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
365 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000366
Marc Jones8d595692012-03-15 12:55:26 -0600367 /* Ensure I am actually looking at a resource of function 1 */
368 if ((resource->index & 0xffff) < 0x1000) {
369 return;
370 }
371 /* Get the base address */
372 rbase = resource->base;
Frank Vibrans39fca802011-02-14 18:35:15 +0000373
Marc Jones8d595692012-03-15 12:55:26 -0600374 /* Get the limit (rounded up) */
375 rend = resource_end(resource);
Frank Vibrans39fca802011-02-14 18:35:15 +0000376
Marc Jones8d595692012-03-15 12:55:26 -0600377 /* Get the register and link */
378 reg = resource->index & 0xfff; // 4k
379 link_num = IOINDEX_LINK(resource->index);
Frank Vibrans39fca802011-02-14 18:35:15 +0000380
Marc Jones8d595692012-03-15 12:55:26 -0600381 if (resource->flags & IORESOURCE_IO) {
382 set_io_addr_reg(dev, nodeid, link_num, reg, rbase >> 8,
383 rend >> 8);
384 } else if (resource->flags & IORESOURCE_MEM) {
385 set_mmio_addr_reg(nodeid, link_num, reg, (resource->index >> 24),
386 rbase >> 8, rend >> 8, 1); // [39:8]
387 }
388 resource->flags |= IORESOURCE_STORED;
389 sprintf(buf, " <node %x link %x>", nodeid, link_num);
390 report_resource_stored(dev, resource, buf);
Frank Vibrans39fca802011-02-14 18:35:15 +0000391}
392
efdesign983f5ebd62011-09-14 13:47:17 -0600393#if CONFIG_CONSOLE_VGA_MULTI
Marc Jones8d595692012-03-15 12:55:26 -0600394extern device_t vga_pri; // the primary vga device, defined in device.c
Frank Vibrans39fca802011-02-14 18:35:15 +0000395#endif
396
397static void create_vga_resource(device_t dev, unsigned nodeid)
398{
Marc Jones8d595692012-03-15 12:55:26 -0600399 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000400
Marc Jones8d595692012-03-15 12:55:26 -0600401 printk(BIOS_DEBUG, "\nFam14h - create_vga_resource.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000402
Marc Jones8d595692012-03-15 12:55:26 -0600403 /* find out which link the VGA card is connected,
404 * we only deal with the 'first' vga card */
405 for (link = dev->link_list; link; link = link->next) {
406 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
efdesign983f5ebd62011-09-14 13:47:17 -0600407#if CONFIG_CONSOLE_VGA_MULTI
Marc Jones8d595692012-03-15 12:55:26 -0600408 printk(BIOS_DEBUG,
409 "VGA: vga_pri bus num = %d bus range [%d,%d]\n",
410 vga_pri->bus->secondary, link->secondary,
411 link->subordinate);
412 /* We need to make sure the vga_pri is under the link */
413 if ((vga_pri->bus->secondary >= link->secondary) &&
414 (vga_pri->bus->secondary <= link->subordinate))
Frank Vibrans39fca802011-02-14 18:35:15 +0000415#endif
Marc Jones8d595692012-03-15 12:55:26 -0600416 break;
417 }
418 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000419
Marc Jones8d595692012-03-15 12:55:26 -0600420 /* no VGA card installed */
421 if (link == NULL)
422 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000423
Marc Jones8d595692012-03-15 12:55:26 -0600424 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n",
425 dev_path(dev), nodeid, link->link_num);
426 set_vga_enable_reg(nodeid, link->link_num);
Frank Vibrans39fca802011-02-14 18:35:15 +0000427}
428
Frank Vibrans39fca802011-02-14 18:35:15 +0000429static void set_resources(device_t dev)
430{
Marc Jones8d595692012-03-15 12:55:26 -0600431 unsigned nodeid;
432 struct bus *bus;
433 struct resource *res;
Frank Vibrans39fca802011-02-14 18:35:15 +0000434
Marc Jones8d595692012-03-15 12:55:26 -0600435 printk(BIOS_DEBUG, "\nFam14h - set_resources.\n");
efdesign9805a89ab2011-06-20 17:38:49 -0700436
Marc Jones8d595692012-03-15 12:55:26 -0600437 /* Find the nodeid */
438 nodeid = amdfam14_nodeid(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000439
Marc Jones8d595692012-03-15 12:55:26 -0600440 create_vga_resource(dev, nodeid);
Frank Vibrans39fca802011-02-14 18:35:15 +0000441
Marc Jones8d595692012-03-15 12:55:26 -0600442 /* Set each resource we have found */
443 for (res = dev->resource_list; res; res = res->next) {
444 set_resource(dev, res, nodeid);
445 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000446
Marc Jones8d595692012-03-15 12:55:26 -0600447 for (bus = dev->link_list; bus; bus = bus->next) {
448 if (bus->children) {
449 assign_resources(bus);
450 }
451 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000452}
453
Frank Vibrans39fca802011-02-14 18:35:15 +0000454/* Domain/Root Complex related code */
455
456static void domain_read_resources(device_t dev)
457{
Marc Jones8d595692012-03-15 12:55:26 -0600458 unsigned reg;
Frank Vibrans39fca802011-02-14 18:35:15 +0000459
Marc Jones8d595692012-03-15 12:55:26 -0600460 printk(BIOS_DEBUG, "\nFam14h - domain_read_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000461
Marc Jones8d595692012-03-15 12:55:26 -0600462 /* Find the already assigned resource pairs */
463 get_fx_devs();
464 for (reg = 0x80; reg <= 0xc0; reg += 0x08) {
465 u32 base, limit;
466 base = f1_read_config32(reg);
467 limit = f1_read_config32(reg + 0x04);
468 /* Is this register allocated? */
469 if ((base & 3) != 0) {
470 unsigned nodeid, reg_link;
471 device_t reg_dev;
472 if (reg < 0xc0) { // mmio
473 nodeid = (limit & 0xf) + (base & 0x30);
474 } else { // io
475 nodeid = (limit & 0xf) + ((base >> 4) & 0x30);
476 }
477 reg_link = (limit >> 4) & 7;
478 reg_dev = __f0_dev[nodeid];
479 if (reg_dev) {
480 /* Reserve the resource */
481 struct resource *res;
482 res =
483 new_resource(reg_dev,
484 IOINDEX(0x1000 + reg,
485 reg_link));
486 if (res) {
487 res->flags = 1;
488 }
489 }
490 }
491 }
492 /* FIXME: do we need to check extend conf space?
493 I don't believe that much preset value */
Frank Vibrans39fca802011-02-14 18:35:15 +0000494
Patrick Georgie1667822012-05-05 15:29:32 +0200495#if !CONFIG_PCI_64BIT_PREF_MEM
Marc Jones8d595692012-03-15 12:55:26 -0600496 pci_domain_read_resources(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000497#else
Marc Jones8d595692012-03-15 12:55:26 -0600498 struct bus *link;
499 struct resource *resource;
500 for (link = dev->link_list; link; link = link->next) {
501 /* Initialize the system wide io space constraints */
502 resource = new_resource(dev, 0 | (link->link_num << 2));
503 resource->base = 0x400;
504 resource->limit = 0xffffUL;
505 resource->flags = IORESOURCE_IO;
Frank Vibrans39fca802011-02-14 18:35:15 +0000506
Marc Jones8d595692012-03-15 12:55:26 -0600507 /* Initialize the system wide prefetchable memory resources constraints */
508 resource = new_resource(dev, 1 | (link->link_num << 2));
509 resource->limit = 0xfcffffffffULL;
510 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
Frank Vibrans39fca802011-02-14 18:35:15 +0000511
Marc Jones8d595692012-03-15 12:55:26 -0600512 /* Initialize the system wide memory resources constraints */
513 resource = new_resource(dev, 2 | (link->link_num << 2));
514 resource->limit = 0xfcffffffffULL;
515 resource->flags = IORESOURCE_MEM;
516 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000517#endif
518}
519
Kyösti Mälkki55fff9302012-07-11 08:02:39 +0300520void setup_uma_memory(void)
521{
522#if CONFIG_GFXUMA
523 msr_t msr, msr2;
524 uint32_t sys_mem;
525
526 /* TOP_MEM: the top of DRAM below 4G */
527 msr = rdmsr(TOP_MEM);
528 printk
529 (BIOS_INFO, "%s, TOP MEM: msr.lo = 0x%08x, msr.hi = 0x%08x\n",
530 __func__, msr.lo, msr.hi);
531
532 /* TOP_MEM2: the top of DRAM above 4G */
533 msr2 = rdmsr(TOP_MEM2);
534 printk
535 (BIOS_INFO, "%s, TOP MEM2: msr2.lo = 0x%08x, msr2.hi = 0x%08x\n",
536 __func__, msr2.lo, msr2.hi);
537
538 /* refer to UMA Size Consideration in Family14h BKDG. */
539 sys_mem = msr.lo + 0x1000000; // Ignore 16MB allocated for C6 when finding UMA size, refer MemNGetUmaSizeON()
540 if ((msr.hi & 0x0000000F) || (sys_mem >= 0x80000000)) {
541 uma_memory_size = 0x18000000; /* >= 2G memory, 384M recommended UMA */
542 }
543 else {
544 if (sys_mem >= 0x40000000) {
545 uma_memory_size = 0x10000000; /* >= 1G memory, 256M recommended UMA */
546 } else {
547 uma_memory_size = 0x4000000; /* <1G memory, 64M recommended UMA */
548 }
549 }
550
551 uma_memory_base = msr.lo - uma_memory_size; /* TOP_MEM1 */
552 printk(BIOS_INFO, "%s: uma size 0x%08llx, memory start 0x%08llx\n",
553 __func__, uma_memory_size, uma_memory_base);
554
555 /* TODO: TOP_MEM2 */
556#else
557 uma_memory_size = 0x10000000; /* 256M recommended UMA */
558 uma_memory_base = 0x30000000; /* 1GB system memory supported */
559#endif
560}
561
Frank Vibrans39fca802011-02-14 18:35:15 +0000562static void domain_set_resources(device_t dev)
563{
Marc Jones8d595692012-03-15 12:55:26 -0600564 printk(BIOS_DEBUG, "\nFam14h - domain_set_resources.\n");
565 printk(BIOS_DEBUG, " amsr - incoming dev = %08x\n", (u32) dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000566
Patrick Georgie1667822012-05-05 15:29:32 +0200567#if CONFIG_PCI_64BIT_PREF_MEM
Marc Jones8d595692012-03-15 12:55:26 -0600568 struct resource *io, *mem1, *mem2;
569 struct resource *res;
Frank Vibrans39fca802011-02-14 18:35:15 +0000570#endif
Marc Jones8d595692012-03-15 12:55:26 -0600571 unsigned long mmio_basek;
572 u32 pci_tolm;
573 int idx;
574 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000575#if CONFIG_HW_MEM_HOLE_SIZEK != 0
Marc Jones8d595692012-03-15 12:55:26 -0600576 struct hw_mem_hole_info mem_hole;
577 u32 reset_memhole = 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000578#endif
579
Patrick Georgie1667822012-05-05 15:29:32 +0200580#if CONFIG_PCI_64BIT_PREF_MEM
Frank Vibrans39fca802011-02-14 18:35:15 +0000581
Marc Jones8d595692012-03-15 12:55:26 -0600582 printk(BIOS_DEBUG, "adsr - CONFIG_PCI_64BIT_PREF_MEM is true.\n");
583 for (link = dev->link_list; link; link = link->next) {
584 /* Now reallocate the pci resources memory with the
585 * highest addresses I can manage.
586 */
587 mem1 = find_resource(dev, 1 | (link->link_num << 2));
588 mem2 = find_resource(dev, 2 | (link->link_num << 2));
Frank Vibrans39fca802011-02-14 18:35:15 +0000589
Marc Jones8d595692012-03-15 12:55:26 -0600590 printk(BIOS_DEBUG,
591 "base1: 0x%08Lx limit1: 0x%08Lx size: 0x%08Lx align: %d\n",
592 (u32) (mem1->base), (u32) (mem1->limit),
593 (u32) (mem1->size), u32) (mem1->align));
594 printk(BIOS_DEBUG,
595 "base2: 0x%08Lx limit2: 0x%08Lx size: 0x%08Lx align: %d\n",
596 (u32) (mem2->base), (u32) (mem2->limit),
597 (u32) (mem2->size), (u32) (mem2->align));
Frank Vibrans39fca802011-02-14 18:35:15 +0000598
Marc Jones8d595692012-03-15 12:55:26 -0600599 /* See if both resources have roughly the same limits */
600 if (((mem1->limit <= 0xffffffff) && (mem2->limit <= 0xffffffff))
601 || ((mem1->limit > 0xffffffff)
602 && (mem2->limit > 0xffffffff))) {
603 /* If so place the one with the most stringent alignment first
604 */
605 if (mem2->align > mem1->align) {
606 struct resource *tmp;
607 tmp = mem1;
608 mem1 = mem2;
609 mem2 = tmp;
610 }
611 /* Now place the memory as high up as it will go */
612 mem2->base = resource_max(mem2);
613 mem1->limit = mem2->base - 1;
614 mem1->base = resource_max(mem1);
615 } else {
616 /* Place the resources as high up as they will go */
617 mem2->base = resource_max(mem2);
618 mem1->base = resource_max(mem1);
619 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000620
Marc Jones8d595692012-03-15 12:55:26 -0600621 printk(BIOS_DEBUG,
622 "base1: 0x%08Lx limit1: 0x%08Lx size: 0x%08Lx align: %d\n",
623 mem1->base, mem1->limit, mem1->size, mem1->align);
624 printk(BIOS_DEBUG,
625 "base2: 0x%08Lx limit2: 0x%08Lx size: 0x%08Lx align: %d\n",
626 mem2->base, mem2->limit, mem2->size, mem2->align);
627 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000628
Marc Jones8d595692012-03-15 12:55:26 -0600629 for (res = &dev->resource_list; res; res = res->next) {
630 res->flags |= IORESOURCE_ASSIGNED;
631 res->flags |= IORESOURCE_STORED;
632 report_resource_stored(dev, res, "");
633 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000634#endif
635
Marc Jones8d595692012-03-15 12:55:26 -0600636 pci_tolm = 0xffffffffUL;
637 for (link = dev->link_list; link; link = link->next) {
638 pci_tolm = my_find_pci_tolm(link, pci_tolm);
639 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000640
Marc Jones8d595692012-03-15 12:55:26 -0600641 // FIXME handle interleaved nodes. If you fix this here, please fix
642 // amdk8, too.
643 mmio_basek = pci_tolm >> 10;
644 /* Round mmio_basek to something the processor can support */
645 mmio_basek &= ~((1 << 6) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000646
Marc Jones8d595692012-03-15 12:55:26 -0600647 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
648 // MMIO hole. If you fix this here, please fix amdk8, too.
649 /* Round the mmio hole to 64M */
650 mmio_basek &= ~((64 * 1024) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000651
652#if CONFIG_HW_MEM_HOLE_SIZEK != 0
653/* if the hw mem hole is already set in raminit stage, here we will compare
654 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
655 * use hole_basek as mmio_basek and we don't need to reset hole.
656 * otherwise We reset the hole to the mmio_basek
657 */
658
Marc Jones8d595692012-03-15 12:55:26 -0600659 mem_hole = get_hw_mem_hole_info();
Frank Vibrans39fca802011-02-14 18:35:15 +0000660
Marc Jones8d595692012-03-15 12:55:26 -0600661 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
662 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
663 mmio_basek = mem_hole.hole_startk;
664 reset_memhole = 0;
665 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000666#endif
667
Marc Jones8d595692012-03-15 12:55:26 -0600668 idx = 0x10;
Frank Vibrans39fca802011-02-14 18:35:15 +0000669
Marc Jones8d595692012-03-15 12:55:26 -0600670 struct dram_base_mask_t d;
671 resource_t basek, limitk, sizek; // 4 1T
Frank Vibrans39fca802011-02-14 18:35:15 +0000672
Marc Jones8d595692012-03-15 12:55:26 -0600673 d = get_dram_base_mask(0);
Frank Vibrans39fca802011-02-14 18:35:15 +0000674
Marc Jones8d595692012-03-15 12:55:26 -0600675 if (d.mask & 1) {
676 basek = ((resource_t) ((u64) d.base)) << 8;
677 limitk = (resource_t) (((u64) d.mask << 8) | 0xFFFFFF);
678 printk(BIOS_DEBUG,
679 "adsr: (before) basek = %llx, limitk = %llx.\n", basek,
680 limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000681
Marc Jones8d595692012-03-15 12:55:26 -0600682 /* Convert these values to multiples of 1K for ease of math. */
683 basek >>= 10;
684 limitk >>= 10;
685 sizek = limitk - basek + 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000686
Marc Jones8d595692012-03-15 12:55:26 -0600687 printk(BIOS_DEBUG,
688 "adsr: (after) basek = %llx, limitk = %llx, sizek = %llx.\n",
689 basek, limitk, sizek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000690
Marc Jones8d595692012-03-15 12:55:26 -0600691 /* see if we need a hole from 0xa0000 to 0xbffff */
692 if ((basek < 640) && (sizek > 768)) {
693 printk(BIOS_DEBUG,"adsr - 0xa0000 to 0xbffff resource.\n");
694 ram_resource(dev, (idx | 0), basek, 640 - basek);
695 idx += 0x10;
696 basek = 768;
697 sizek = limitk - 768;
698 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000699
Marc Jones8d595692012-03-15 12:55:26 -0600700 printk(BIOS_DEBUG,
701 "adsr: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
702 mmio_basek, basek, limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000703
Marc Jones8d595692012-03-15 12:55:26 -0600704 /* split the region to accomodate pci memory space */
705 if ((basek < 4 * 1024 * 1024) && (limitk > mmio_basek)) {
706 if (basek <= mmio_basek) {
707 unsigned pre_sizek;
708 pre_sizek = mmio_basek - basek;
709 if (pre_sizek > 0) {
710 ram_resource(dev, idx, basek,
711 pre_sizek);
712 idx += 0x10;
713 sizek -= pre_sizek;
Patrick Georgie1667822012-05-05 15:29:32 +0200714#if CONFIG_WRITE_HIGH_TABLES
Marc Jones8d595692012-03-15 12:55:26 -0600715 if (high_tables_base == 0) {
716 /* Leave some space for ACPI, PIRQ and MP tables */
Patrick Georgie1667822012-05-05 15:29:32 +0200717#if CONFIG_GFXUMA
Marc Jones5750ed22012-03-15 13:21:41 -0600718 high_tables_base = uma_memory_base - HIGH_MEMORY_SIZE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000719#else
Marc Jones5750ed22012-03-15 13:21:41 -0600720 high_tables_base = (mmio_basek * 1024) - HIGH_MEMORY_SIZE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000721#endif
Marc Jones5750ed22012-03-15 13:21:41 -0600722 high_tables_size = HIGH_MEMORY_SIZE;
723 printk(BIOS_DEBUG, " split: %dK table at =%08llx\n",
724 (u32)(high_tables_size / 1024), high_tables_base);
Marc Jones8d595692012-03-15 12:55:26 -0600725 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000726#endif
Marc Jones8d595692012-03-15 12:55:26 -0600727 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000728
Marc Jones8d595692012-03-15 12:55:26 -0600729 basek = mmio_basek;
730 }
731 if ((basek + sizek) <= 4 * 1024 * 1024) {
732 sizek = 0;
733 } else {
734 basek = 4 * 1024 * 1024;
735 sizek -= (4 * 1024 * 1024 - mmio_basek);
736 }
737 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000738
Marc Jones8d595692012-03-15 12:55:26 -0600739 ram_resource(dev, (idx | 0), basek, sizek);
740 idx += 0x10;
Patrick Georgie1667822012-05-05 15:29:32 +0200741#if CONFIG_WRITE_HIGH_TABLES
Marc Jones8d595692012-03-15 12:55:26 -0600742 printk(BIOS_DEBUG,
743 "%d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n", 0,
744 mmio_basek, basek, limitk);
745 if (high_tables_base == 0) {
746 /* Leave some space for ACPI, PIRQ and MP tables */
Patrick Georgie1667822012-05-05 15:29:32 +0200747#if CONFIG_GFXUMA
Marc Jones5750ed22012-03-15 13:21:41 -0600748 high_tables_base = uma_memory_base - HIGH_MEMORY_SIZE;
Marc Jones8d595692012-03-15 12:55:26 -0600749 printk(BIOS_DEBUG, " adsr - uma_memory_base = %llx.\n", uma_memory_base);
Frank Vibrans39fca802011-02-14 18:35:15 +0000750#else
Marc Jones5750ed22012-03-15 13:21:41 -0600751 high_tables_base = (limitk * 1024) - HIGH_MEMORY_SIZE;
Frank Vibrans39fca802011-02-14 18:35:15 +0000752#endif
Marc Jones5750ed22012-03-15 13:21:41 -0600753 high_tables_size = HIGH_MEMORY_SIZE;
Marc Jones8d595692012-03-15 12:55:26 -0600754 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000755#endif
Marc Jones8d595692012-03-15 12:55:26 -0600756 }
757 printk(BIOS_DEBUG, " adsr - mmio_basek = %lx.\n", mmio_basek);
758 printk(BIOS_DEBUG, " adsr - high_tables_size = %llx.\n",
759 high_tables_size);
Frank Vibrans39fca802011-02-14 18:35:15 +0000760
Patrick Georgie1667822012-05-05 15:29:32 +0200761#if CONFIG_GFXUMA
Kyösti Mälkki63f8c082012-07-10 13:27:26 +0300762 uma_resource(dev, 7, uma_memory_base >> 10, uma_memory_size >> 10);
Frank Vibrans39fca802011-02-14 18:35:15 +0000763#endif
764
Marc Jones8d595692012-03-15 12:55:26 -0600765 for (link = dev->link_list; link; link = link->next) {
766 if (link->children) {
767 assign_resources(link);
768 }
769 }
770 printk(BIOS_DEBUG, " adsr - leaving this lovely routine.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000771}
772
zbaof7223732012-04-13 13:42:15 +0800773extern u8 acpi_slp_type;
774
775static void domain_enable_resources(device_t dev)
776{
Marc Jones8d595692012-03-15 12:55:26 -0600777 u32 val;
Kerry Shefeed3292011-08-18 18:03:44 +0800778
779#if CONFIG_AMD_SB_CIMX
zbaof7223732012-04-13 13:42:15 +0800780 #if CONFIG_HAVE_ACPI_RESUME
781 if (acpi_slp_type != 3) {
782 sb_After_Pci_Init();
783 sb_Mid_Post_Init();
784 } else {
785 sb_After_Pci_Restore_Init();
786 }
787 #else
Marc Jones8d595692012-03-15 12:55:26 -0600788 sb_After_Pci_Init();
789 sb_Mid_Post_Init();
zbaof7223732012-04-13 13:42:15 +0800790 #endif
Kerry Shefeed3292011-08-18 18:03:44 +0800791#endif
792
Marc Jones8d595692012-03-15 12:55:26 -0600793 /* Must be called after PCI enumeration and resource allocation */
794 printk(BIOS_DEBUG, "\nFam14h - domain_enable_resources: AmdInitMid.\n");
zbaof7223732012-04-13 13:42:15 +0800795
796#if CONFIG_HAVE_ACPI_RESUME
797 if (acpi_slp_type != 3) {
798 printk(BIOS_DEBUG, "agesawrapper_amdinitmid ");
799 val = agesawrapper_amdinitmid ();
800 if (val)
801 printk(BIOS_DEBUG, "error level: %x \n", val);
802 else
803 printk(BIOS_DEBUG, "passed.\n");
Marc Jones8d595692012-03-15 12:55:26 -0600804 }
zbaof7223732012-04-13 13:42:15 +0800805#else
806 printk(BIOS_DEBUG, "agesawrapper_amdinitmid ");
807 val = agesawrapper_amdinitmid ();
808 if (val)
809 printk(BIOS_DEBUG, "error level: %x \n", val);
810 else
811 printk(BIOS_DEBUG, "passed.\n");
812#endif
efdesign9805a89ab2011-06-20 17:38:49 -0700813
Marc Jones8d595692012-03-15 12:55:26 -0600814 printk(BIOS_DEBUG, " ader - leaving domain_enable_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000815}
816
Frank Vibrans39fca802011-02-14 18:35:15 +0000817/* Bus related code */
818
Marc Jones8d595692012-03-15 12:55:26 -0600819static void cpu_bus_read_resources(device_t dev) {
820 printk(BIOS_DEBUG, "\nFam14h - cpu_bus_read_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000821
822#if CONFIG_MMCONF_SUPPORT
Marc Jones8d595692012-03-15 12:55:26 -0600823 struct resource *resource = new_resource(dev, 0xc0010058);
824 resource->base = CONFIG_MMCONF_BASE_ADDRESS;
825 resource->size = CONFIG_MMCONF_BUS_NUMBER * 4096 * 256;
826 resource->flags = IORESOURCE_MEM | IORESOURCE_RESERVE |
827 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
Frank Vibrans39fca802011-02-14 18:35:15 +0000828#endif
829}
830
Marc Jones8d595692012-03-15 12:55:26 -0600831static void cpu_bus_set_resources(device_t dev) {
832 struct resource *resource = find_resource(dev, 0xc0010058);
Frank Vibrans39fca802011-02-14 18:35:15 +0000833
Marc Jones8d595692012-03-15 12:55:26 -0600834 printk(BIOS_DEBUG, "\nFam14h - cpu_bus_set_resources.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000835
Marc Jones8d595692012-03-15 12:55:26 -0600836 if (resource) {
837 report_resource_stored(dev, resource, " <mmconfig>");
838 }
839 pci_dev_set_resources(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000840}
efdesign9805a89ab2011-06-20 17:38:49 -0700841
zbaof7223732012-04-13 13:42:15 +0800842static u32 cpu_bus_scan(device_t dev, u32 max)
843{
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000844 device_t cpu;
zbaof7223732012-04-13 13:42:15 +0800845 struct device_path cpu_path;
846 int apic_id, cores_found;
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000847
zbaof7223732012-04-13 13:42:15 +0800848 /* There is only one node for fam14, but there may be multiple cores. */
849 cpu = dev_find_slot(0, PCI_DEVFN(0x18, 0));
850 if (!cpu)
851 printk(BIOS_ERR, "ERROR: %02x:%02x.0 not found", 0, 0x18);
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000852
zbaof7223732012-04-13 13:42:15 +0800853 cores_found = (pci_read_config32(dev_find_slot(0,PCI_DEVFN(0x18,0x3)), 0xe8) >> 12) & 3;
854 printk(BIOS_DEBUG, " AP siblings=%d\n", cores_found);
855
856
857 for (apic_id = 0; apic_id <= cores_found; apic_id++) {
Marc Jones8d595692012-03-15 12:55:26 -0600858 cpu_path.type = DEVICE_PATH_APIC;
859 cpu_path.apic.apic_id = apic_id;
zbaof7223732012-04-13 13:42:15 +0800860 cpu = alloc_find_dev(dev->link_list, &cpu_path);
861 if (cpu) {
862 cpu->enabled = 1;
863 cpu->path.apic.node_id = 0;
864 cpu->path.apic.core_id = apic_id;
865 printk(BIOS_DEBUG, "CPU: %s %s\n",
866 dev_path(cpu), cpu->enabled?"enabled":"disabled");
867 } else {
868 cpu->enabled = 0;
869 }
Marc Jones8d595692012-03-15 12:55:26 -0600870 }
zbaof7223732012-04-13 13:42:15 +0800871 return max;
872}
873
874static void cpu_bus_init(device_t dev)
875{
876 initialize_cpus(dev->link_list);
Frank Vibrans39fca802011-02-14 18:35:15 +0000877}
878
Frank Vibrans39fca802011-02-14 18:35:15 +0000879/* North Bridge Structures */
880
881static struct device_operations northbridge_operations = {
Marc Jones8d595692012-03-15 12:55:26 -0600882 .read_resources = read_resources,
883 .set_resources = set_resources,
884 .enable_resources = pci_dev_enable_resources,
885 .init = northbridge_init,
886 .enable = 0,.ops_pci = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000887};
888
Frank Vibrans39fca802011-02-14 18:35:15 +0000889static const struct pci_driver northbridge_driver __pci_driver = {
Marc Jones8d595692012-03-15 12:55:26 -0600890 .ops = &northbridge_operations,
891 .vendor = PCI_VENDOR_ID_AMD,
892 .device = 0x1510,
Frank Vibrans39fca802011-02-14 18:35:15 +0000893};
894
efdesign9805a89ab2011-06-20 17:38:49 -0700895struct chip_operations northbridge_amd_agesa_family14_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600896 CHIP_NAME("AMD Family 14h Northbridge")
897 .enable_dev = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000898};
899
Frank Vibrans39fca802011-02-14 18:35:15 +0000900/* Root Complex Structures */
901
Frank Vibrans39fca802011-02-14 18:35:15 +0000902static struct device_operations pci_domain_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600903 .read_resources = domain_read_resources,
904 .set_resources = domain_set_resources,
905 .enable_resources = domain_enable_resources,
906 .init = NULL,
907 .scan_bus = pci_domain_scan_bus,
Frank Vibrans39fca802011-02-14 18:35:15 +0000908};
909
Frank Vibrans39fca802011-02-14 18:35:15 +0000910static struct device_operations cpu_bus_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600911 .read_resources = cpu_bus_read_resources,
912 .set_resources = cpu_bus_set_resources,
913 .enable_resources = NULL,
914 .init = cpu_bus_init,
zbaof7223732012-04-13 13:42:15 +0800915 .scan_bus = cpu_bus_scan,
Frank Vibrans39fca802011-02-14 18:35:15 +0000916};
917
Marc Jones8d595692012-03-15 12:55:26 -0600918static void root_complex_enable_dev(struct device *dev) {
919 /* Set the operations if it is a special bus type */
920 if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) {
921 dev->ops = &pci_domain_ops;
922 } else if (dev->path.type == DEVICE_PATH_APIC_CLUSTER) {
923 dev->ops = &cpu_bus_ops;
924 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000925}
926
efdesign9805a89ab2011-06-20 17:38:49 -0700927struct chip_operations northbridge_amd_agesa_family14_root_complex_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600928 CHIP_NAME("AMD Family 14h Root Complex")
929 .enable_dev = root_complex_enable_dev,
Frank Vibrans39fca802011-02-14 18:35:15 +0000930};