blob: b57f957c60659ebfceecab9ef05a7cf18f038516 [file] [log] [blame]
Yinghai Luf55b58d2007-02-17 14:28:11 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Yinghai Luf55b58d2007-02-17 14:28:11 +00003 *
4 * Copyright (C) 2007 AMD
5 * Written by Yinghai Lu <yinghailu@amd.com> for AMD.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Yinghai Luf55b58d2007-02-17 14:28:11 +000016 */
17
18#include <console/console.h>
19#include <device/pci.h>
20#include <device/pci_ids.h>
21#include <string.h>
22#include <stdint.h>
Stefan Reinauer9a16e3e2010-03-29 14:45:36 +000023#include <cpu/amd/multicore.h>
Yinghai Luf55b58d2007-02-17 14:28:11 +000024
25#include <cpu/amd/amdk8_sysconf.h>
26
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000027#include <stdlib.h>
Yinghai Luf55b58d2007-02-17 14:28:11 +000028#include "mb_sysconf.h"
29
30// Global variables for MB layouts and these will be shared by irqtable mptable and acpi_tables
31struct mb_sysconf_t mb_sysconf;
32
Yinghai Luf327d9f2008-02-20 17:41:38 +000033unsigned pci1234x[] =
Myles Watsona643ea32008-10-06 21:00:46 +000034{ //Here you only need to set value in pci1234 for HT-IO that could be installed or not
Yinghai Luf55b58d2007-02-17 14:28:11 +000035 //You may need to preset pci1234 for HTIO board, please refer to src/northbridge/amd/amdk8/get_sblk_pci1234.c for detail
Myles Watsona643ea32008-10-06 21:00:46 +000036 0x0000ff0,
37 0x0000ff0,
38 0x0000ff0,
39// 0x0000ff0,
40// 0x0000ff0,
41// 0x0000ff0,
42// 0x0000ff0,
43// 0x0000ff0
Yinghai Luf55b58d2007-02-17 14:28:11 +000044};
Yinghai Luf327d9f2008-02-20 17:41:38 +000045unsigned hcdnx[] =
Yinghai Luf55b58d2007-02-17 14:28:11 +000046{ //HT Chain device num, actually it is unit id base of every ht device in chain, assume every chain only have 4 ht device at most
47 0x20202020,
48 0x20202020,
Myles Watsona643ea32008-10-06 21:00:46 +000049 0x20202020,
50// 0x20202020,
51// 0x20202020,
52// 0x20202020,
53// 0x20202020,
54// 0x20202020,
Yinghai Luf55b58d2007-02-17 14:28:11 +000055};
56
57
Stefan Reinauere9de1e22010-04-07 15:30:11 +000058
Yinghai Luf55b58d2007-02-17 14:28:11 +000059
60static unsigned get_bus_conf_done = 0;
61
62static unsigned get_hcid(unsigned i)
63{
Myles Watsona643ea32008-10-06 21:00:46 +000064 unsigned id = 0;
Yinghai Luf55b58d2007-02-17 14:28:11 +000065
Myles Watsona643ea32008-10-06 21:00:46 +000066 unsigned busn = (sysconf.pci1234[i] >> 16) & 0xff;
Yinghai Luf55b58d2007-02-17 14:28:11 +000067
Myles Watsona643ea32008-10-06 21:00:46 +000068 unsigned devn = sysconf.hcdn[i] & 0xff;
Yinghai Luf55b58d2007-02-17 14:28:11 +000069
Myles Watsona643ea32008-10-06 21:00:46 +000070 device_t dev;
Yinghai Luf55b58d2007-02-17 14:28:11 +000071
Myles Watsona643ea32008-10-06 21:00:46 +000072 dev = dev_find_slot(busn, PCI_DEVFN(devn,0));
Yinghai Luf55b58d2007-02-17 14:28:11 +000073
Myles Watsona643ea32008-10-06 21:00:46 +000074 switch (dev->device) {
75 case 0x0369: //IO55
76 id = 4;
77 break;
78 }
Yinghai Luf55b58d2007-02-17 14:28:11 +000079
Myles Watsona643ea32008-10-06 21:00:46 +000080 // we may need more way to find out hcid: subsystem id? GPIO read ?
Yinghai Luf55b58d2007-02-17 14:28:11 +000081
Elyes HAOUAS8ab989e2016-07-30 17:46:17 +020082 // we need use id for 1. bus num, 2. mptable, 3. ACPI table
Yinghai Luf55b58d2007-02-17 14:28:11 +000083
Myles Watsona643ea32008-10-06 21:00:46 +000084 return id;
Yinghai Luf55b58d2007-02-17 14:28:11 +000085}
86
87void get_bus_conf(void)
88{
Yinghai Luf55b58d2007-02-17 14:28:11 +000089 unsigned apicid_base;
90 struct mb_sysconf_t *m;
91
Patrick Georgi5244e1b2010-11-21 14:41:07 +000092 int i;
Yinghai Luf55b58d2007-02-17 14:28:11 +000093
Myles Watsona643ea32008-10-06 21:00:46 +000094 if (get_bus_conf_done)
Yinghai Luf327d9f2008-02-20 17:41:38 +000095 return; //do it only once
Yinghai Luf55b58d2007-02-17 14:28:11 +000096
Myles Watsona643ea32008-10-06 21:00:46 +000097 get_bus_conf_done = 1;
Yinghai Luf55b58d2007-02-17 14:28:11 +000098
99 sysconf.mb = &mb_sysconf;
Yinghai Luf327d9f2008-02-20 17:41:38 +0000100
Yinghai Luf55b58d2007-02-17 14:28:11 +0000101 m = sysconf.mb;
102 memset(m, 0, sizeof(struct mb_sysconf_t));
103
Myles Watsona643ea32008-10-06 21:00:46 +0000104 sysconf.hc_possible_num = ARRAY_SIZE(pci1234x);
105 for (i = 0; i < sysconf.hc_possible_num; i++) {
106 sysconf.pci1234[i] = pci1234x[i];
107 sysconf.hcdn[i] = hcdnx[i];
108 }
Yinghai Luf55b58d2007-02-17 14:28:11 +0000109
Myles Watsona643ea32008-10-06 21:00:46 +0000110 get_sblk_pci1234();
Yinghai Luf55b58d2007-02-17 14:28:11 +0000111
112 sysconf.sbdn = (sysconf.hcdn[0] & 0xff); // first byte of first chain
113
114 m->sbdnb = (sysconf.hcdn[1] & 0xff); // first byte of second chain
115
Yinghai Luf327d9f2008-02-20 17:41:38 +0000116 m->bus_mcp55 = (sysconf.pci1234[0] >> 16) & 0xff;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000117
Myles Watsona643ea32008-10-06 21:00:46 +0000118 /* MCP55b */
119 for (i = 1; i < sysconf.hc_possible_num; i++) {
Yinghai Luf327d9f2008-02-20 17:41:38 +0000120 if (!(sysconf.pci1234[i] & 0x0f))
121 continue;
Myles Watsona643ea32008-10-06 21:00:46 +0000122 // check hcid type here
123 sysconf.hcid[i] = get_hcid(i);
124 if (!sysconf.hcid[i])
Yinghai Luf327d9f2008-02-20 17:41:38 +0000125 continue; //unknown co processor
Yinghai Luf55b58d2007-02-17 14:28:11 +0000126
Yinghai Luf327d9f2008-02-20 17:41:38 +0000127 m->bus_mcp55b = (sysconf.pci1234[1]>>16) & 0xff;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000128 }
129
Yinghai Luf55b58d2007-02-17 14:28:11 +0000130/*I/O APICs: APIC ID Version State Address*/
Timothy Pearsond4bbfe82015-10-27 16:48:36 -0500131 if (IS_ENABLED(CONFIG_LOGICAL_CPUS))
132 apicid_base = get_apicid_base(2);
133 else
134 apicid_base = CONFIG_MAX_PHYSICAL_CPUS;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000135 m->apicid_mcp55 = apicid_base+0;
Myles Watsona643ea32008-10-06 21:00:46 +0000136 m->apicid_mcp55b = apicid_base+1;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000137}