d2e393cbe137759cf0099010c2c454990b19d468
[coreboot.git] / src / mainboard / hp / dl145_g3 / romstage.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2006 Tyan
5  * Copyright (C) 2006 AMD
6  * Written by Yinghai Lu <yinghailu@gmail.com> for Tyan and AMD.
7  *
8  * Copyright (C) 2007 University of Mannheim
9  * Written by Philipp Degler <pdegler@rumms.uni-mannheim.de> for University of Mannheim
10  * Copyright (C) 2009 University of Heidelberg
11  * Written by Mondrian Nuessle <nuessle@uni-heidelberg.de> for University of Heidelberg
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
26  */
27
28 #if CONFIG_K8_REV_F_SUPPORT == 1
29 #define K8_REV_F_SUPPORT_F0_F1_WORKAROUND 0
30 #endif
31
32 #include <stdint.h>
33 #include <string.h>
34 #include <device/pci_def.h>
35 #include <device/pci_ids.h>
36 #include <arch/io.h>
37 #include <device/pnp_def.h>
38 #include <arch/romcc_io.h>
39 #include <cpu/x86/lapic.h>
40 #include <pc80/mc146818rtc.h>
41
42 #include <console/console.h>
43
44 #include <cpu/amd/model_fxx_rev.h>
45
46 #include "southbridge/broadcom/bcm5785/bcm5785_early_smbus.c"
47 #include "southbridge/broadcom/bcm5785/bcm5785_enable_rom.c"
48 #include "northbridge/amd/amdk8/raminit.h"
49 #include "cpu/amd/model_fxx/apic_timer.c"
50 #include "lib/delay.c"
51
52 #include "cpu/x86/lapic/boot_cpu.c"
53 #include "northbridge/amd/amdk8/reset_test.c"
54
55 #include "superio/serverengines/pilot/pilot_early_serial.c"
56 #include "superio/serverengines/pilot/pilot_early_init.c"
57 #include "superio/nsc/pc87417/pc87417_early_serial.c"
58
59 #include "cpu/x86/bist.h"
60
61 #include "northbridge/amd/amdk8/debug.c"
62
63 #include "cpu/x86/mtrr/earlymtrr.c"
64
65 #include "northbridge/amd/amdk8/setup_resource_map.c"
66
67 #define SERIAL_DEV PNP_DEV(0x2e, PILOT_SP1)
68 #define RTC_DEV PNP_DEV(0x4e, PC87417_RTC)
69
70 #include "southbridge/broadcom/bcm5785/bcm5785_early_setup.c"
71
72 static void memreset(int controllers, const struct mem_controller *ctrl)
73 {
74 }
75
76 static inline void activate_spd_rom(const struct mem_controller *ctrl)
77 {
78 #define SMBUS_SWITCH1 0x70
79 #define SMBUS_SWITCH2 0x72
80          unsigned device = (ctrl->channel0[0]) >> 8;
81          smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
82          smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
83 }
84
85 static inline int spd_read_byte(unsigned device, unsigned address)
86 {
87          return smbus_read_byte(device, address);
88 }
89
90 #include "northbridge/amd/amdk8/amdk8_f.h"
91 #include "northbridge/amd/amdk8/incoherent_ht.c"
92 #include "northbridge/amd/amdk8/coherent_ht.c"
93 #include "northbridge/amd/amdk8/raminit_f.c"
94 #include "lib/generic_sdram.c"
95 #include <spd.h>
96
97 #include "cpu/amd/dualcore/dualcore.c"
98
99 #include "cpu/amd/car/post_cache_as_ram.c"
100
101 #include "cpu/amd/model_fxx/init_cpus.c"
102
103 #include "cpu/amd/model_fxx/fidvid.c"
104
105 #include "northbridge/amd/amdk8/early_ht.c"
106
107 #if 0
108 #include "ipmi.c"
109
110 static void setup_early_ipmi_serial()
111 {
112         unsigned char result;
113         char channel_access[]={0x06<<2,0x40,0x04,0x80,0x05};
114         char serialmodem_conf[]={0x0c<<2,0x10,0x04,0x08,0x00,0x0f};
115         char serial_mux1[]={0x0c<<2,0x12,0x04,0x06};
116         char serial_mux2[]={0x0c<<2,0x12,0x04,0x03};
117         char serial_mux3[]={0x0c<<2,0x12,0x04,0x07};
118
119 //      earlydbg(0x0d);
120         //set channel access system only
121         ipmi_request(5,channel_access);
122 //      earlydbg(result);
123 /*
124         //Set serial/modem config
125         result=ipmi_request(6,serialmodem_conf);
126         earlydbg(result);
127
128         //Set serial mux 1
129         result=ipmi_request(4,serial_mux1);
130         earlydbg(result);
131
132         //Set serial mux 2
133         result=ipmi_request(4,serial_mux2);
134         earlydbg(result);
135
136         //Set serial mux 3
137         result=ipmi_request(4,serial_mux3);
138         earlydbg(result);
139 */
140 //      earlydbg(0x0e);
141
142 }
143 #endif
144
145 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
146 {
147         static const uint16_t spd_addr[] = {
148                 // first node
149                  DIMM0, DIMM2, 0, 0,
150                  DIMM1, DIMM3, 0, 0,
151
152                 // second node
153                 DIMM4, DIMM6, 0, 0,
154                 DIMM5, DIMM7, 0, 0,
155         };
156
157         struct sys_info *sysinfo = (struct sys_info *)(CONFIG_DCACHE_RAM_BASE
158                 + CONFIG_DCACHE_RAM_SIZE - CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
159
160         int needs_reset;
161         unsigned bsp_apicid = 0;
162
163         if (!cpu_init_detectedx && boot_cpu()) {
164                 /* Nothing special needs to be done to find bus 0 */
165                 /* Allow the HT devices to be found */
166
167                 enumerate_ht_chain();
168                 bcm5785_enable_rom();
169                 bcm5785_enable_lpc();
170                 //enable RTC
171                 pc87417_enable_dev(RTC_DEV);
172         }
173
174         if (bist == 0) {
175                 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
176         }
177
178         pilot_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
179
180         uart_init();
181
182         /* Halt if there was a built in self test failure */
183         report_bist_failure(bist);
184
185         console_init();
186 //      setup_early_ipmi_serial();
187         pilot_early_init(SERIAL_DEV); //config port is being taken from SERIAL_DEV
188         printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
189         printk(BIOS_DEBUG, "bsp_apicid=%02x\n", bsp_apicid);
190
191 #if CONFIG_MEM_TRAIN_SEQ == 1
192         set_sysinfo_in_ram(0); // in BSP so could hold all ap until sysinfo is in ram
193 #endif
194         setup_coherent_ht_domain();
195
196         wait_all_core0_started();
197 #if CONFIG_LOGICAL_CPUS==1
198         // It is said that we should start core1 after all core0 launched
199         /* becase optimize_link_coherent_ht is moved out from setup_coherent_ht_domain,
200          * So here need to make sure last core0 is started, esp for two way system,
201          * (there may be apic id conflicts in that case)
202         */
203         start_other_cores();
204         wait_all_other_cores_started(bsp_apicid);
205 #endif
206
207         /* it will set up chains and store link pair for optimization later */
208         ht_setup_chains_x(sysinfo); // it will init sblnk and sbbusn, nodes, sbdn
209         bcm5785_early_setup();
210
211 #if CONFIG_SET_FIDVID
212         {
213                 msr_t msr;
214                 msr=rdmsr(0xc0010042);
215                 printk(BIOS_DEBUG, "begin msr fid, vid %08x %08x\n", msr.hi, msr.lo);
216         }
217         enable_fid_change();
218         enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
219         init_fidvid_bsp(bsp_apicid);
220         // show final fid and vid
221         {
222                 msr_t msr;
223                 msr=rdmsr(0xc0010042);
224                 printk(BIOS_DEBUG, "end msr fid, vid %08x %08x\n", msr.hi, msr.lo);
225         }
226 #endif
227
228         needs_reset = optimize_link_coherent_ht();
229         needs_reset |= optimize_link_incoherent_ht(sysinfo);
230
231         // fidvid change will issue one LDTSTOP and the HT change will be effective too
232         if (needs_reset) {
233                 printk(BIOS_INFO, "ht reset -\n");
234                 soft_reset();
235         }
236
237         allow_all_aps_stop(bsp_apicid);
238
239         //It's the time to set ctrl in sysinfo now;
240         fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
241         enable_smbus();
242
243         //do we need apci timer, tsc...., only debug need it for better output
244         /* all ap stopped? */
245         // init_timer(); // Need to use TMICT to synconize FID/VID
246
247         sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
248
249         post_cache_as_ram();
250 }
251