Add manual HT BUID fixup to detect previously set BUIDs in early init. This fixes...
[coreboot.git] / src / northbridge / amd / amdht / ht_wrapper.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2008 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
21 /*----------------------------------------------------------------------------
22  *                      TYPEDEFS, DEFINITIONS AND MACROS
23  *
24  *----------------------------------------------------------------------------
25  */
26
27 /* Single CPU system? */
28 #if (CONFIG_MAX_PHYSICAL_CPUS == 1)
29         #define HT_BUILD_NC_ONLY 1
30 #endif
31
32 /* Debugging Options */
33 #define AMD_DEBUG 1
34 //#define AMD_DEBUG_ERROR_STOP 1
35
36 /*----------------------------------------------------------------------------
37  *                              MODULES USED
38  *
39  *----------------------------------------------------------------------------
40  */
41
42 #undef FILECODE
43 #define FILECODE 0xFF01
44 #include "comlib.h"
45 #include "h3gtopo.h"
46 #include "h3finit.h"
47
48 /* include the main HT source file */
49 #include "h3finit.c"
50
51
52 /*----------------------------------------------------------------------------
53  *                      LOCAL FUNCTIONS
54  *
55  *----------------------------------------------------------------------------
56  */
57
58 /* FIXME: Find a better place for these pre-ram functions. */
59 #define NODE_HT(x) NODE_PCI(x,0)
60 #define NODE_MP(x) NODE_PCI(x,1)
61 #define NODE_MC(x) NODE_PCI(x,3)
62 #define NODE_LC(x) NODE_PCI(x,4)
63
64 static  u32 get_nodes(void)
65 {
66         device_t dev;
67         u32 nodes;
68
69         dev = PCI_DEV(CBB, CDB, 0);
70         nodes = ((pci_read_config32(dev, 0x60)>>4) & 7) ;
71 #if CONFIG_MAX_PHYSICAL_CPUS > 8
72         nodes += (((pci_read_config32(dev, 0x160)>>4) & 7)<<3);
73 #endif
74         nodes++;
75
76         return nodes;
77 }
78
79
80 /**
81  * void AMD_CB_EventNotify (u8 evtClass, u16 event, const u8 *pEventData0)
82  */
83 void AMD_CB_EventNotify (u8 evtClass, u16 event, u8 *pEventData0)
84 {
85         u8 i;
86
87         printk_debug("AMD_CB_EventNotify()\n");
88         printk_debug(" event class: %02x\n event: %04x\n data: ", evtClass, event);
89
90         for (i = 0; i < *pEventData0; i++) {
91                 printk_debug(" %02x ", *(pEventData0 + i));
92         }
93         printk_debug("\n");
94
95 }
96
97
98 /**
99  * BOOL AMD_CB_ManualBUIDSwapList(u8 Node, u8 Link, u8 **List)
100  * Description:
101  *      This routine is called every time a non-coherent chain is processed.
102  *      BUID assignment may be controlled explicitly on a non-coherent chain. Provide a
103  *      swap list. The first part of the list controls the BUID assignment and the
104  *      second part of the list provides the device to device linking.  Device orientation
105  *      can be detected automatically, or explicitly.  See documentation for more details.
106  *
107  *      Automatic non-coherent init assigns BUIDs starting at 1 and incrementing sequentially
108  *      based on each device's unit count.
109  *
110  * Parameters:
111  *      @param[in]  u8  node    = The node on which this chain is located
112  *      @param[in]  u8  link    = The link on the host for this chain
113  *      @param[out] u8** list   = supply a pointer to a list
114  *      @param[out] BOOL result = true to use a manual list
115  *                                false to initialize the link automatically
116  */
117 BOOL AMD_CB_ManualBUIDSwapList (u8 node, u16 link, u8 **List)
118 {
119         u8 swaplist[] = { 0xFF, HT_CHAIN_UNITID_BASE, HT_CHAIN_END_UNITID_BASE, 0xFF };
120         /* If the BUID was adjusted in early_ht we need to do the manual override */
121         if ((HT_CHAIN_UNITID_BASE != 0) && (HT_CHAIN_END_UNITID_BASE != 0)) {
122                 printk_debug("AMD_CB_ManualBUIDSwapList()\n");
123                 if ((node == 0) && (link == 0)) {       /* BSP SB link */
124                         *List = swaplist;
125                         return 1;
126                 }
127         }
128
129         return 0;
130 }
131
132
133 /**
134  * void getAmdTopolist(u8 ***p)
135  *
136  *  point to the stock topo list array
137  *
138  */
139 void getAmdTopolist(u8 ***p)
140 {
141         *p = (u8 **)amd_topo_list;
142 }
143
144
145 /**
146  * void amd_ht_init(struct sys_info *sysinfo)
147  *
148  *  AMD HT init coreboot wrapper
149  *
150  */
151 void amd_ht_init(struct sys_info *sysinfo)
152 {
153
154         AMD_HTBLOCK ht_wrapper = {
155                 NULL,   // u8 **topolist;
156                 0,      // u8 AutoBusStart;
157                 32,     // u8 AutoBusMax;
158                 6,      // u8 AutoBusIncrement;
159                 NULL,   // BOOL (*AMD_CB_IgnoreLink)();
160                 NULL,   // BOOL (*AMD_CB_OverrideBusNumbers)();
161                 AMD_CB_ManualBUIDSwapList,      // BOOL (*AMD_CB_ManualBUIDSwapList)();
162                 NULL,   // void (*AMD_CB_DeviceCapOverride)();
163                 NULL,   // void (*AMD_CB_Cpu2CpuPCBLimits)();
164                 NULL,   // void (*AMD_CB_IOPCBLimits)();
165                 NULL,   // BOOL (*AMD_CB_SkipRegang)();
166                 NULL,   // BOOL (*AMD_CB_CustomizeTrafficDistribution)();
167                 NULL,   // BOOL (*AMD_CB_CustomizeBuffers)();
168                 NULL,   // void (*AMD_CB_OverrideDevicePort)();
169                 NULL,   // void (*AMD_CB_OverrideCpuPort)();
170                 AMD_CB_EventNotify      // void (*AMD_CB_EventNotify) ();
171         };
172
173         printk_debug("Enter amd_ht_init()\n");
174         amdHtInitialize(&ht_wrapper);
175         printk_debug("Exit amd_ht_init()\n");
176
177
178 }
179
180
181
182