Drop console/console.c and pc80/serial.c from mainboards'
[coreboot.git] / src / mainboard / technexion / tim5690 / romstage.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 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 #define RAMINIT_SYSINFO 1
21 #define SET_FIDVID 1
22 #define QRANK_DIMM_SUPPORT 1
23 #if CONFIG_LOGICAL_CPUS==1
24 #define SET_NB_CFG_54 1
25 #endif
26
27 #define RC0 (6<<8)
28 #define RC1 (7<<8)
29
30 #define DIMM0 0x50
31 #define DIMM1 0x51
32
33 #define ICS951462_ADDRESS       0x69
34 #define SMBUS_HUB 0x71
35
36 #include <stdint.h>
37 #include <string.h>
38 #include <device/pci_def.h>
39 #include <arch/io.h>
40 #include <device/pnp_def.h>
41 #include <arch/romcc_io.h>
42 #include <cpu/x86/lapic.h>
43 #include "option_table.h"
44 #include "pc80/mc146818rtc_early.c"
45 #include <console/console.h>
46
47 #include <cpu/amd/model_fxx_rev.h>
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 #include "northbridge/amd/amdk8/debug.c"
55 #include "superio/ite/it8712f/it8712f_early_serial.c"
56
57 #include "cpu/x86/mtrr/earlymtrr.c"
58 #include "cpu/x86/bist.h"
59
60 #include "northbridge/amd/amdk8/setup_resource_map.c"
61
62 #include "southbridge/amd/rs690/rs690_early_setup.c"
63 #include "southbridge/amd/sb600/sb600_early_setup.c"
64
65 /* CAN'T BE REMOVED! crt0.S will use it. I don't know WHY!*/
66 static void memreset(int controllers, const struct mem_controller *ctrl)
67 {
68 }
69
70 /* called in raminit_f.c */
71 static inline void activate_spd_rom(const struct mem_controller *ctrl)
72 {
73 }
74
75 /*called in raminit_f.c */
76 static inline int spd_read_byte(u32 device, u32 address)
77 {
78         return smbus_read_byte(device, address);
79 }
80
81 #include "northbridge/amd/amdk8/amdk8.h"
82 #include "northbridge/amd/amdk8/incoherent_ht.c"
83 #include "northbridge/amd/amdk8/raminit_f.c"
84 #include "northbridge/amd/amdk8/coherent_ht.c"
85 #include "lib/generic_sdram.c"
86 #include "resourcemap.c"
87
88 #include "cpu/amd/dualcore/dualcore.c"
89
90
91 #include "cpu/amd/car/post_cache_as_ram.c"
92
93 #include "cpu/amd/model_fxx/init_cpus.c"
94
95 #include "cpu/amd/model_fxx/fidvid.c"
96
97 #include "tn_post_code.c"
98 #include "speaker.c"
99
100 #include "northbridge/amd/amdk8/early_ht.c"
101
102 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
103 {
104         static const u16 spd_addr[] = { DIMM0, 0, 0, 0, DIMM1, 0, 0, 0, };
105         int needs_reset = 0;
106         u32 bsp_apicid = 0;
107         msr_t msr;
108         struct cpuid_result cpuid1;
109         struct sys_info *sysinfo = (struct sys_info *)(CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE - CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
110
111         if (!cpu_init_detectedx && boot_cpu()) {
112                 /* Nothing special needs to be done to find bus 0 */
113                 /* Allow the HT devices to be found */
114                 enumerate_ht_chain();
115
116                 /* sb600_lpc_port80(); */
117                 sb600_pci_port80();
118         }
119
120         technexion_post_code_init();
121         technexion_post_code(LED_MESSAGE_START);
122
123         if (bist == 0) {
124                 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
125         }
126
127         enable_rs690_dev8();
128         sb600_lpc_init();
129
130         /* it8712f_enable_serial does not use its 1st parameter. */
131         it8712f_enable_serial(0, CONFIG_TTYS0_BASE);
132         it8712f_kill_watchdog();
133         uart_init();
134         console_init();
135
136         /* Halt if there was a built in self test failure */
137         report_bist_failure(bist);
138         printk(BIOS_DEBUG, "bsp_apicid=0x%x\n", bsp_apicid);
139
140         setup_tim5690_resource_map();
141
142         setup_coherent_ht_domain();
143
144 #if CONFIG_LOGICAL_CPUS==1
145         /* It is said that we should start core1 after all core0 launched */
146         wait_all_core0_started();
147         start_other_cores();
148 #endif
149         wait_all_aps_started(bsp_apicid);
150
151         ht_setup_chains_x(sysinfo);
152
153         /* run _early_setup before soft-reset. */
154         rs690_early_setup();
155         sb600_early_setup();
156
157         /* Check to see if processor is capable of changing FIDVID  */
158         /* otherwise it will throw a GP# when reading FIDVID_STATUS */
159         cpuid1 = cpuid(0x80000007);
160         if( (cpuid1.edx & 0x6) == 0x6 ) {
161
162                 /* Read FIDVID_STATUS */
163                 msr=rdmsr(0xc0010042);
164                 printk(BIOS_DEBUG, "begin msr fid, vid: hi=0x%x, lo=0x%x\n", msr.hi, msr.lo);
165
166                 enable_fid_change();
167                 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
168                 init_fidvid_bsp(bsp_apicid);
169
170                 /* show final fid and vid */
171                 msr=rdmsr(0xc0010042);
172                 printk(BIOS_DEBUG, "end msr fid, vid: hi=0x%x, lo=0x%x\n", msr.hi, msr.lo);
173
174         } else {
175                 printk(BIOS_DEBUG, "Changing FIDVID not supported\n");
176         }
177
178         needs_reset = optimize_link_coherent_ht();
179         needs_reset |= optimize_link_incoherent_ht(sysinfo);
180         rs690_htinit();
181         printk(BIOS_DEBUG, "needs_reset=0x%x\n", needs_reset);
182
183         if (needs_reset) {
184                 print_info("ht reset -\n");
185                 soft_reset();
186         }
187
188         speaker_init(255);
189         speaker_on_nodelay();
190
191         allow_all_aps_stop(bsp_apicid);
192
193         /* It's the time to set ctrl now; */
194         printk(BIOS_DEBUG, "sysinfo->nodes: %2x  sysinfo->ctrl: %p  spd_addr: %p\n",
195                      sysinfo->nodes, sysinfo->ctrl, spd_addr);
196
197         fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
198
199         technexion_post_code(LED_MESSAGE_RAM);
200
201         sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
202
203         speaker_off_nodelay();
204
205         rs690_before_pci_init();
206         sb600_before_pci_init();
207
208         post_cache_as_ram();
209 }
210