blob: 813fa77ea288ef596b39b68688d3f64df7bc9e85 [file] [log] [blame]
Knut Kujat081c8972010-02-03 16:04:40 +00001/*
2 * This file is part of the coreboot project.
3 *
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.
Knut Kujat081c8972010-02-03 16:04:40 +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 Reinauer2d85fbed2010-04-14 15:44:21 +000023#include <cpu/amd/multicore.h>
Knut Kujat081c8972010-02-03 16:04:40 +000024
25#include <cpu/amd/amdfam10_sysconf.h>
26
27#include <stdlib.h>
28#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
33/* Here you only need to set value in pci1234 for HT-IO that could be
34installed or not You may need to preset pci1234 for HTIO board, please
35refer to src/northbridge/amd/amdfam10/get_pci1234.c for detail */
36static u32 pci1234x[] = {
37 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
38 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
39 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
40 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
41 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
42 0x0000ffc, 0x0000ffc,
43 };
44
45
46/* HT Chain device num, actually it is unit id base of every ht device
47in chain, assume every chain only have 4 ht device at most */
48
49static unsigned hcdnx[] = {
50 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
51 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
52 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
53 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
54 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
55 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
56 0x20202020, 0x20202020,
57};
58
Uwe Hermannd0d7c012010-02-03 22:07:57 +000059unsigned sbdn3;
Knut Kujat081c8972010-02-03 16:04:40 +000060
61extern void get_pci1234(void);
62
63static unsigned get_bus_conf_done = 0;
64
65void get_bus_conf(void)
66{
67
68 unsigned apicid_base;
69 struct mb_sysconf_t *m;
70
71 device_t dev;
Patrick Georgi7411eab2010-11-22 14:14:56 +000072 int i;
Knut Kujat081c8972010-02-03 16:04:40 +000073
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060074 if(get_bus_conf_done == 1) return; //do it only once
Knut Kujat081c8972010-02-03 16:04:40 +000075
76 get_bus_conf_done = 1;
77
78 sysconf.mb = &mb_sysconf;
79
80 m = sysconf.mb;
81 memset(m, 0, sizeof(struct mb_sysconf_t));
82
83 sysconf.hc_possible_num = ARRAY_SIZE(pci1234x);
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060084 for(i = 0; i < sysconf.hc_possible_num; i++) {
Knut Kujat081c8972010-02-03 16:04:40 +000085 sysconf.pci1234[i] = pci1234x[i];
86 sysconf.hcdn[i] = hcdnx[i];
87 }
88
89 get_pci1234();
90
Knut Kujat081c8972010-02-03 16:04:40 +000091 sysconf.sbdn = (sysconf.hcdn[0] & 0xff); // first byte of first chain
92 m->bus_mcp55[0] = (sysconf.pci1234[0] >> 12) & 0xff;
93
Uwe Hermannd0d7c012010-02-03 22:07:57 +000094 m->bus_8132_0 = (sysconf.pci1234[1] >> 12) & 0xff;
95 sbdn3 = (sysconf.hcdn[1] & 0xff); // first byte of second chain
Knut Kujat081c8972010-02-03 16:04:40 +000096
97 /* MCP55 */
98 dev = dev_find_slot(m->bus_mcp55[0], PCI_DEVFN(sysconf.sbdn + 0x06,0));
99
100 if (dev) {
101 m->bus_mcp55[1] = pci_read_config8(dev, PCI_SECONDARY_BUS);
102 }
103 else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000104 printk(BIOS_DEBUG, "ERROR - could not find PCI 1:%02x.0, using defaults\n", sysconf.sbdn + 0x06);
Knut Kujat081c8972010-02-03 16:04:40 +0000105 }
106
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -0600107 for(i = 2; i < 8; i++) {
Knut Kujat081c8972010-02-03 16:04:40 +0000108 dev = dev_find_slot(m->bus_mcp55[0], PCI_DEVFN(sysconf.sbdn + 0x0a + i - 2 , 0));
109 if (dev) {
110 m->bus_mcp55[i] = pci_read_config8(dev, PCI_SECONDARY_BUS);
111 }
112 else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000113 printk(BIOS_DEBUG, "ERROR - could not find PCI %02x:%02x.0, using defaults\n", m->bus_mcp55[0], sysconf.sbdn + 0x0a + i - 2 );
Knut Kujat081c8972010-02-03 16:04:40 +0000114 }
115 }
116
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000117 /* 8132_1 */
Knut Kujat081c8972010-02-03 16:04:40 +0000118
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000119 dev = dev_find_slot(m->bus_8132_0, PCI_DEVFN(sbdn3, 0));
120 m->bus_8132_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
Knut Kujat081c8972010-02-03 16:04:40 +0000121 m->bus_8132_2 = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
122 m->bus_8132_2++;
Knut Kujat081c8972010-02-03 16:04:40 +0000123
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000124 /* 8132_2 */
125 dev = dev_find_slot(m->bus_8132_0, PCI_DEVFN(sbdn3 + 1, 0));
Knut Kujat081c8972010-02-03 16:04:40 +0000126 m->bus_8132_2 = pci_read_config8(dev, PCI_SECONDARY_BUS);
Knut Kujat081c8972010-02-03 16:04:40 +0000127
128/*I/O APICs: APIC ID Version State Address*/
Timothy Pearsond4bbfe82015-10-27 16:48:36 -0500129 if (IS_ENABLED(CONFIG_LOGICAL_CPUS))
130 apicid_base = get_apicid_base(3);
131 else
132 apicid_base = CONFIG_MAX_PHYSICAL_CPUS;
Knut Kujat081c8972010-02-03 16:04:40 +0000133 m->apicid_mcp55 = apicid_base+0;
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000134 m->apicid_8132_1 = apicid_base+1;
Knut Kujat081c8972010-02-03 16:04:40 +0000135 m->apicid_8132_2 = apicid_base+2;
136}