blob: 942941d85f27e3e1e2d742f5a02cfdd1eb6fbec0 [file] [log] [blame]
Marc Jones738347e2010-09-13 19:24:38 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 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.
Marc Jones738347e2010-09-13 19:24:38 +000014 */
15
Marc Jones738347e2010-09-13 19:24:38 +000016#include <device/pci.h>
Marc Jones738347e2010-09-13 19:24:38 +000017#include <string.h>
18#include <stdint.h>
19#include <stdlib.h>
Marc Jones738347e2010-09-13 19:24:38 +000020#include <cpu/amd/multicore.h>
Marc Jones738347e2010-09-13 19:24:38 +000021
22#include <cpu/amd/amdfam10_sysconf.h>
23
24/* Global variables for MB layouts and these will be shared by irqtable mptable
25* and acpi_tables busnum is default.
26*/
Marc Jones738347e2010-09-13 19:24:38 +000027u32 apicid_sb700;
28
Marc Jones738347e2010-09-13 19:24:38 +000029
Marc Jones738347e2010-09-13 19:24:38 +000030void get_bus_conf(void)
31{
32 u32 apicid_base;
Marc Jones738347e2010-09-13 19:24:38 +000033
Kyösti Mälkki8803b212019-01-03 11:39:07 +020034 get_default_pci1234(1);
Marc Jones738347e2010-09-13 19:24:38 +000035
36 sysconf.sbdn = (sysconf.hcdn[0] & 0xff);
Marc Jones738347e2010-09-13 19:24:38 +000037
Kyösti Mälkkiee7e1302019-01-03 11:39:03 +020038 pirq_router_bus = (sysconf.pci1234[0] >> 16) & 0xff;
Marc Jones738347e2010-09-13 19:24:38 +000039
Marc Jones738347e2010-09-13 19:24:38 +000040 /* I/O APICs: APIC ID Version State Address */
Timothy Pearsond4bbfe82015-10-27 16:48:36 -050041 if (IS_ENABLED(CONFIG_LOGICAL_CPUS))
42 apicid_base = get_apicid_base(1);
43 else
44 apicid_base = CONFIG_MAX_PHYSICAL_CPUS;
Marc Jones738347e2010-09-13 19:24:38 +000045 apicid_sb700 = apicid_base + 0;
46}