blob: f46ebf53cf0bf9b815d83a2a5d2e4c54200085da [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.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010019 * Foundation, Inc.
Yinghai Luf55b58d2007-02-17 14:28:11 +000020 */
21
22#include <console/console.h>
23#include <device/pci.h>
24#include <device/pci_ids.h>
25#include <string.h>
26#include <stdint.h>
Stefan Reinauer9a16e3e2010-03-29 14:45:36 +000027#include <cpu/amd/multicore.h>
Yinghai Luf55b58d2007-02-17 14:28:11 +000028
29#include <cpu/amd/amdk8_sysconf.h>
30
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000031#include <stdlib.h>
Yinghai Luf55b58d2007-02-17 14:28:11 +000032#include "mb_sysconf.h"
33
34// Global variables for MB layouts and these will be shared by irqtable mptable and acpi_tables
35struct mb_sysconf_t mb_sysconf;
36
Yinghai Luf327d9f2008-02-20 17:41:38 +000037unsigned pci1234x[] =
Myles Watsona643ea32008-10-06 21:00:46 +000038{ //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 +000039 //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 +000040 0x0000ff0,
41 0x0000ff0,
42 0x0000ff0,
43// 0x0000ff0,
44// 0x0000ff0,
45// 0x0000ff0,
46// 0x0000ff0,
47// 0x0000ff0
Yinghai Luf55b58d2007-02-17 14:28:11 +000048};
Yinghai Luf327d9f2008-02-20 17:41:38 +000049unsigned hcdnx[] =
Yinghai Luf55b58d2007-02-17 14:28:11 +000050{ //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
51 0x20202020,
52 0x20202020,
Myles Watsona643ea32008-10-06 21:00:46 +000053 0x20202020,
54// 0x20202020,
55// 0x20202020,
56// 0x20202020,
57// 0x20202020,
58// 0x20202020,
Yinghai Luf55b58d2007-02-17 14:28:11 +000059};
60
61
Stefan Reinauere9de1e22010-04-07 15:30:11 +000062
Yinghai Luf55b58d2007-02-17 14:28:11 +000063
64static unsigned get_bus_conf_done = 0;
65
66static unsigned get_hcid(unsigned i)
67{
Myles Watsona643ea32008-10-06 21:00:46 +000068 unsigned id = 0;
Yinghai Luf55b58d2007-02-17 14:28:11 +000069
Myles Watsona643ea32008-10-06 21:00:46 +000070 unsigned busn = (sysconf.pci1234[i] >> 16) & 0xff;
Yinghai Luf55b58d2007-02-17 14:28:11 +000071
Myles Watsona643ea32008-10-06 21:00:46 +000072 unsigned devn = sysconf.hcdn[i] & 0xff;
Yinghai Luf55b58d2007-02-17 14:28:11 +000073
Myles Watsona643ea32008-10-06 21:00:46 +000074 device_t dev;
Yinghai Luf55b58d2007-02-17 14:28:11 +000075
Myles Watsona643ea32008-10-06 21:00:46 +000076 dev = dev_find_slot(busn, PCI_DEVFN(devn,0));
Yinghai Luf55b58d2007-02-17 14:28:11 +000077
Myles Watsona643ea32008-10-06 21:00:46 +000078 switch (dev->device) {
79 case 0x0369: //IO55
80 id = 4;
81 break;
82 }
Yinghai Luf55b58d2007-02-17 14:28:11 +000083
Myles Watsona643ea32008-10-06 21:00:46 +000084 // we may need more way to find out hcid: subsystem id? GPIO read ?
Yinghai Luf55b58d2007-02-17 14:28:11 +000085
Myles Watsona643ea32008-10-06 21:00:46 +000086 // we need use id for 1. bus num, 2. mptable, 3. acpi table
Yinghai Luf55b58d2007-02-17 14:28:11 +000087
Myles Watsona643ea32008-10-06 21:00:46 +000088 return id;
Yinghai Luf55b58d2007-02-17 14:28:11 +000089}
90
91void get_bus_conf(void)
92{
Yinghai Luf55b58d2007-02-17 14:28:11 +000093 unsigned apicid_base;
94 struct mb_sysconf_t *m;
95
Patrick Georgi5244e1b2010-11-21 14:41:07 +000096 int i;
Yinghai Luf55b58d2007-02-17 14:28:11 +000097
Myles Watsona643ea32008-10-06 21:00:46 +000098 if (get_bus_conf_done)
Yinghai Luf327d9f2008-02-20 17:41:38 +000099 return; //do it only once
Yinghai Luf55b58d2007-02-17 14:28:11 +0000100
Myles Watsona643ea32008-10-06 21:00:46 +0000101 get_bus_conf_done = 1;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000102
103 sysconf.mb = &mb_sysconf;
Yinghai Luf327d9f2008-02-20 17:41:38 +0000104
Yinghai Luf55b58d2007-02-17 14:28:11 +0000105 m = sysconf.mb;
106 memset(m, 0, sizeof(struct mb_sysconf_t));
107
Myles Watsona643ea32008-10-06 21:00:46 +0000108 sysconf.hc_possible_num = ARRAY_SIZE(pci1234x);
109 for (i = 0; i < sysconf.hc_possible_num; i++) {
110 sysconf.pci1234[i] = pci1234x[i];
111 sysconf.hcdn[i] = hcdnx[i];
112 }
Yinghai Luf55b58d2007-02-17 14:28:11 +0000113
Myles Watsona643ea32008-10-06 21:00:46 +0000114 get_sblk_pci1234();
Yinghai Luf55b58d2007-02-17 14:28:11 +0000115
116 sysconf.sbdn = (sysconf.hcdn[0] & 0xff); // first byte of first chain
117
118 m->sbdnb = (sysconf.hcdn[1] & 0xff); // first byte of second chain
119
Yinghai Luf327d9f2008-02-20 17:41:38 +0000120 m->bus_mcp55 = (sysconf.pci1234[0] >> 16) & 0xff;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000121
Myles Watsona643ea32008-10-06 21:00:46 +0000122 /* MCP55b */
123 for (i = 1; i < sysconf.hc_possible_num; i++) {
Yinghai Luf327d9f2008-02-20 17:41:38 +0000124 if (!(sysconf.pci1234[i] & 0x0f))
125 continue;
Myles Watsona643ea32008-10-06 21:00:46 +0000126 // check hcid type here
127 sysconf.hcid[i] = get_hcid(i);
128 if (!sysconf.hcid[i])
Yinghai Luf327d9f2008-02-20 17:41:38 +0000129 continue; //unknown co processor
Yinghai Luf55b58d2007-02-17 14:28:11 +0000130
Yinghai Luf327d9f2008-02-20 17:41:38 +0000131 m->bus_mcp55b = (sysconf.pci1234[1]>>16) & 0xff;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000132 }
133
Yinghai Luf55b58d2007-02-17 14:28:11 +0000134/*I/O APICs: APIC ID Version State Address*/
Timothy Pearsond4bbfe82015-10-27 16:48:36 -0500135 if (IS_ENABLED(CONFIG_LOGICAL_CPUS))
136 apicid_base = get_apicid_base(2);
137 else
138 apicid_base = CONFIG_MAX_PHYSICAL_CPUS;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000139 m->apicid_mcp55 = apicid_base+0;
Myles Watsona643ea32008-10-06 21:00:46 +0000140 m->apicid_mcp55b = apicid_base+1;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000141}