Use DIMM0 et al in lots more places instead of hardocding values.
[coreboot.git] / src / mainboard / msi / ms7135 / romstage.c
1 /*
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  * Copyright (C) 2007 Philipp Degler <pdegler@rumms.uni-mannheim.de>
7  * (Thanks to LSRA University of Mannheim for their support)
8  * Copyright (C) 2008 Jonathan A. Kollasch <jakllsch@kollasch.net>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
23  */
24
25 #define SERIAL_DEV PNP_DEV(0x4e, W83627THG_SP1)
26
27 #include <stdint.h>
28 #include <string.h>
29 #include <device/pci_def.h>
30 #include <arch/io.h>
31 #include <device/pnp_def.h>
32 #include <arch/romcc_io.h>
33 #include <cpu/x86/lapic.h>
34 #include <pc80/mc146818rtc.h>
35 #include "cpu/x86/lapic/boot_cpu.c"
36 #include "northbridge/amd/amdk8/reset_test.c"
37 #include "superio/winbond/w83627thg/w83627thg_early_serial.c"
38
39 #include <cpu/amd/model_fxx_rev.h>
40 #include <console/console.h>
41 #include "northbridge/amd/amdk8/incoherent_ht.c"
42 #include "southbridge/nvidia/ck804/ck804_early_smbus.h"
43 #include "northbridge/amd/amdk8/raminit.h"
44 #include "cpu/amd/model_fxx/apic_timer.c"
45 #include "lib/delay.c"
46 #include "northbridge/amd/amdk8/debug.c"
47 #include "cpu/x86/mtrr/earlymtrr.c"
48 #include "cpu/x86/bist.h"
49 #include "northbridge/amd/amdk8/setup_resource_map.c"
50 #include "northbridge/amd/amdk8/coherent_ht.c"
51 #include "cpu/amd/dualcore/dualcore.c"
52 #include <spd.h>
53
54 static void memreset(int controllers, const struct mem_controller *ctrl)
55 {
56         /* FIXME: Nothing to do? */
57 }
58
59 static inline void activate_spd_rom(const struct mem_controller *ctrl)
60 {
61         /* FIXME: Nothing to do? */
62 }
63
64 static inline int spd_read_byte(unsigned device, unsigned address)
65 {
66         return smbus_read_byte(device, address);
67 }
68
69 #include "northbridge/amd/amdk8/raminit.c"
70 #include "lib/generic_sdram.c"
71 #include "southbridge/nvidia/ck804/ck804_early_setup_ss.h"
72 #include "southbridge/nvidia/ck804/ck804_early_setup_car.c"
73
74 #include "cpu/amd/car/post_cache_as_ram.c"
75 #include "cpu/amd/model_fxx/init_cpus.c"
76
77 #include "northbridge/amd/amdk8/early_ht.c"
78
79 static void sio_setup(void)
80 {
81         uint32_t dword;
82         uint8_t byte;
83
84         /* Subject decoding */
85         byte = pci_read_config8(PCI_DEV(0, CK804_DEVN_BASE + 1, 0), 0x7b);
86         byte |= 0x20;
87         pci_write_config8(PCI_DEV(0, CK804_DEVN_BASE + 1, 0), 0x7b, byte);
88
89         /* LPC Positive Decode 0 */
90         dword = pci_read_config32(PCI_DEV(0, CK804_DEVN_BASE + 1, 0), 0xa0);
91         /* Serial 0, Serial 1 */
92         dword |= (1 << 0) | (1 << 1);
93         pci_write_config32(PCI_DEV(0, CK804_DEVN_BASE + 1, 0), 0xa0, dword);
94 }
95
96 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
97 {
98         static const uint16_t spd_addr[] = {
99                 DIMM0, DIMM1, 0, 0,
100                 0, 0, 0, 0,
101                 0, 0, 0, 0,
102                 0, 0, 0, 0,
103         };
104
105         int needs_reset;
106         unsigned bsp_apicid = 0;
107
108         struct mem_controller ctrl[8];
109         unsigned nodes;
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                 sio_setup();
117         }
118
119         if (bist == 0) {
120                 bsp_apicid = init_cpus(cpu_init_detectedx);
121         }
122
123         w83627thg_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
124         uart_init();
125         console_init();
126
127         /* Halt if there was a built in self test failure */
128         report_bist_failure(bist);
129
130 #if 0
131         dump_pci_device(PCI_DEV(0, 0x18, 0));
132 #endif
133
134         needs_reset = setup_coherent_ht_domain();
135
136         wait_all_core0_started();
137 #if CONFIG_LOGICAL_CPUS==1
138         // It is said that we should start core1 after all core0 launched
139         start_other_cores();
140         wait_all_other_cores_started(bsp_apicid);
141 #endif
142
143         needs_reset |= ht_setup_chains_x();
144
145         needs_reset |= ck804_early_setup_x();
146
147         if (needs_reset) {
148                 print_info("ht reset -\n");
149                 soft_reset();
150         }
151
152         allow_all_aps_stop(bsp_apicid);
153
154         nodes = get_nodes();
155         //It's the time to set ctrl now;
156         fill_mem_ctrl(nodes, ctrl, spd_addr);
157
158         enable_smbus();
159
160 #if 0
161         dump_spd_registers(&ctrl[0]);
162         dump_smbus_registers();
163 #endif
164
165         sdram_initialize(nodes, ctrl);
166
167 #if 0
168         print_pci_devices();
169         dump_pci_devices();
170 #endif
171
172         post_cache_as_ram();
173 }
174