Add early MSR and PCI register initialization.
[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  *  Needs to be fixed to output the debug structures.
84  *
85  */
86 void AMD_CB_EventNotify (u8 evtClass, u16 event, const u8 *pEventData0)
87 {
88         printk_debug("AMD_CB_EventNotify()\n");
89         printk_debug("event class: %02x event: %04x\n", evtClass, event);
90
91 }
92
93 /**
94  * void getAmdTopolist(u8 ***p)
95  *
96  *  point to the stock topo list array
97  *
98  */
99 void getAmdTopolist(u8 ***p)
100 {
101         *p = (u8 **)amd_topo_list;
102 }
103
104
105 /**
106  * void amd_ht_init(struct sys_info *sysinfo)
107  *
108  *  AMD HT init coreboot wrapper
109  *
110  */
111 void amd_ht_init(struct sys_info *sysinfo)
112 {
113         AMD_HTBLOCK ht_wrapper = {
114                 NULL,   // u8 **topolist;
115                 0,      // u8 AutoBusStart;
116                 32,     // u8 AutoBusMax;
117                 6,      // u8 AutoBusIncrement;
118                 NULL,   // BOOL (*AMD_CB_IgnoreLink)();
119                 NULL,   // BOOL (*AMD_CB_OverrideBusNumbers)();
120                 NULL,   // BOOL (*AMD_CB_ManualBUIDSwapList)();
121                 NULL,   // void (*AMD_CB_DeviceCapOverride)();
122                 NULL,   // void (*AMD_CB_Cpu2CpuPCBLimits)();
123                 NULL,   // void (*AMD_CB_IOPCBLimits)();
124                 NULL,   // BOOL (*AMD_CB_SkipRegang)();
125                 NULL,   // BOOL (*AMD_CB_CustomizeTrafficDistribution)();
126                 NULL,   // BOOL (*AMD_CB_CustomizeBuffers)();
127                 NULL,   // void (*AMD_CB_OverrideDevicePort)();
128                 NULL,   // void (*AMD_CB_OverrideCpuPort)();
129                 AMD_CB_EventNotify      // void (*AMD_CB_EventNotify) ();
130         };
131
132         printk_debug("Enter amd_ht_init()\n");
133         amdHtInitialize(&ht_wrapper);
134         printk_debug("Exit amd_ht_init()\n");
135
136
137 }
138
139
140
141