Drop excessive whitespace randomly sprinkled in romstage.c files.
[coreboot.git] / src / mainboard / asus / m2v / romstage.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2006 AMD
5  * (Written by Yinghai Lu <yinghailu@amd.com> for AMD)
6  * Copyright (C) 2006 MSI
7  * (Written by Bingxun Shi <bingxunshi@gmail.com> for MSI)
8  * Copyright (C) 2008 Rudolf Marek <r.marek@assembler.cz>
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 unsigned int get_sbdn(unsigned bus);
26
27 #if CONFIG_K8_REV_F_SUPPORT == 1
28 #define K8_REV_F_SUPPORT_F0_F1_WORKAROUND 0
29 #endif
30
31 #include <stdint.h>
32 #include <string.h>
33 #include <device/pci_def.h>
34 #include <arch/io.h>
35 #include <device/pnp_def.h>
36 #include <arch/romcc_io.h>
37 #include <cpu/amd/mtrr.h>
38 #include <cpu/x86/lapic.h>
39 #include <pc80/mc146818rtc.h>
40 #include <console/console.h>
41 #include <cpu/amd/model_fxx_rev.h>
42 #include "northbridge/amd/amdk8/raminit.h"
43 #include "cpu/amd/model_fxx/apic_timer.c"
44 #include "lib/delay.c"
45 #include "northbridge/amd/amdk8/reset_test.c"
46 #include "northbridge/amd/amdk8/debug.c"
47 #include "superio/ite/it8712f/it8712f_early_serial.c"
48 #include "southbridge/via/vt8237r/vt8237r_early_smbus.c"
49 #include "cpu/x86/mtrr/earlymtrr.c"
50 #include "cpu/x86/bist.h"
51 #include "northbridge/amd/amdk8/setup_resource_map.c"
52 #include <spd.h>
53
54 #define SERIAL_DEV PNP_DEV(0x2e, IT8712F_SP1)
55 #define WATCHDOG_DEV PNP_DEV(0x2e, IT8712F_GPIO)
56
57 #define IT8712F_GPIO_BASE               0x0a20
58
59 static void memreset(int controllers, const struct mem_controller *ctrl)
60 {
61 }
62
63 static inline int spd_read_byte(unsigned device, unsigned address)
64 {
65         return smbus_read_byte(device, address);
66 }
67
68 static void activate_spd_rom(const struct mem_controller *ctrl)
69 {
70 }
71
72 // defines S3_NVRAM_EARLY:
73 #include "southbridge/via/k8t890/k8t890_early_car.c"
74 #include "northbridge/amd/amdk8/amdk8.h"
75 #include "northbridge/amd/amdk8/incoherent_ht.c"
76 #include "northbridge/amd/amdk8/coherent_ht.c"
77 #include "northbridge/amd/amdk8/raminit_f.c"
78 #include "lib/generic_sdram.c"
79 #include "cpu/amd/dualcore/dualcore.c"
80 #include "cpu/amd/car/post_cache_as_ram.c"
81 #include "cpu/amd/model_fxx/init_cpus.c"
82 #include "cpu/amd/model_fxx/fidvid.c"
83 #include "northbridge/amd/amdk8/resourcemap.c"
84
85 void soft_reset(void)
86 {
87         uint8_t tmp;
88
89         set_bios_reset();
90         print_debug("soft reset\n");
91
92         /* PCI reset */
93         tmp = pci_read_config8(PCI_DEV(0, 0x11, 0), 0x4f);
94         tmp |= 0x01;
95         /* FIXME from S3 set bit1 to disable USB reset VT8237A/S */
96         pci_write_config8(PCI_DEV(0, 0x11, 0), 0x4f, tmp);
97
98         while (1) {
99                 /* daisy daisy ... */
100                 hlt();
101         }
102 }
103
104 unsigned int get_sbdn(unsigned bus)
105 {
106         device_t dev;
107
108         dev = pci_locate_device_on_bus(PCI_ID(PCI_VENDOR_ID_VIA,
109                                         PCI_DEVICE_ID_VIA_VT8237R_LPC), bus);
110         return (dev >> 15) & 0x1f;
111 }
112
113 struct gpio_init_val {
114         u8 addr;
115         u8 val;
116 };
117
118 static const struct gpio_init_val gpio_init_data[] = {
119         /* multi-function pin selection */
120         { 0x25, 0x00 },
121         { 0x28, 0x00 }, /* gp46 is infrared receive input */
122         { 0x29, 0x40 }, /* reserved value?!? */
123         { 0x2a, 0x00 },
124         { 0x2c, 0x1d }, /* pin91 is VIN7 instead of PCIRSTIN# */
125         /* gpio i/o port base */
126         { 0x62, IT8712F_GPIO_BASE >> 8 },
127         { 0x63, IT8712F_GPIO_BASE & 0xff },
128         /* 0xb8 - 0xbc: gpio pull-up enable */
129         { 0xb8, 0x00 },
130         /* 0xc0 - 0xc4: gpio alternate function select */
131         { 0xc0, 0x00 },
132         { 0xc3, 0x00 },
133         { 0xc4, 0xc0 },
134         /* 0xc8 - 0xcc: gpio output enable */
135         { 0xc8, 0x00 },
136         { 0xcb, 0x00 },
137         { 0xcc, 0xc0 },
138         /* end of list */
139         { 0, 0 },
140 };
141
142 static void m2v_it8712f_gpio_init(void)
143 {
144         const struct gpio_init_val *giv;
145
146         printk(BIOS_SPEW, "it8712f gpio init...\n");
147
148         /*
149          * it8712f gpio config
150          *
151          * Most importantly this switches pin 91 from
152          * PCIRSTIN# to VIN7.
153          * Note that only PCIRST3# and PCIRST5# are affected
154          * by PCIRSTIN#, the PCIRST1#, PCIRST2#, PCIRST4# are always
155          * direct buffers of #LRESET (low pin count bus reset).
156          * If this is not done All PCIRST are in reset state and the
157          * pcie slots don't initialize.
158          *
159          * pci reset handling:
160          * pin 91: VIN7 (alternate PCIRSTIN#)
161          * pin 48: PCIRST5# / gpio port 5 bit 0
162          * pin 84: PCIRST4# / gpio port 1 bit 0
163          * pin 31: PCIRST1# / gpio port 1 bit 4
164          * pin 33: PCIRST2# / gpio port 1 bit 2
165          * pin 34: PCIRST3# / gpio port 1 bit 1
166          *
167          * PCIRST[0-5]# are connected as follows:
168          * pcirst1# -> pci bus
169          * pcirst2# -> ide bus
170          * pcirst3# -> pcie devices
171          * pcirst4# -> pcie graphics
172          * pcirst5# -> maybe n/c (untested)
173          *
174          * For software control of PCIRST[1-5]#:
175          * 0x2a=0x17 (deselect pcirst# hardwiring, enable 0x25 control)
176          * 0x25=0x17 (select gpio function)
177          * 0xc0=0x17, 0xc8=0x17 gpio port 1 select & output enable
178          * 0xc4=0xc1, 0xcc=0xc1 gpio port 5 select & output enable
179          */
180         it8712f_enter_conf();
181         giv = gpio_init_data;
182         while (giv->addr) {
183                 printk(BIOS_SPEW, "it8712f gpio: %02x=%02x\n",
184                                 giv->addr, giv->val);
185                 it8712f_sio_write(IT8712F_GPIO, giv->addr, giv->val);
186                 giv++;
187         }
188         it8712f_exit_conf();
189
190         printk(BIOS_INFO, "it8712f gpio: Setting DDR2 voltage to 1.80V\n");
191         /*
192          * upper two bits of gpio_base+4 control ddr2 voltage:
193          * 11: 1.80V
194          * 01: 1.85V
195          * 10: 1.90V
196          * 00: 1.95V
197          *
198          * The lower six bits are inputs and normally read back as 1
199          * (except bit 2, which seems rather random).
200          */
201         outb(0xff, IT8712F_GPIO_BASE+4);
202 }
203
204 static void m2v_bus_init(void)
205 {
206         device_t dev;
207
208         printk(BIOS_SPEW, "m2v_bus_init\n");
209
210         dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA,
211                                 PCI_DEVICE_ID_VIA_K8T890CF_0), 0);
212         pci_write_config8(dev, K8T890_MULTIPLE_FN_EN, 0x01);
213
214         dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA,
215                                 PCI_DEVICE_ID_VIA_K8T890CF_5), 0);
216         /*
217          * bit | meaning
218          * 6   | 0: hide scratch register function 0:0.6 (we don't use it)
219          * 5   | 1: enable pcie bridge 0:2.0
220          * 4   | 0: hide   pcie bridge 0:3.3 (not connected)
221          * 3   | 1: enable pcie bridge 0:3.2
222          * 2   | 1: enable pcie bridge 0:3.1
223          * 1   | 1: enable pcie bridge 0:3.0
224          */
225         pci_write_config8(dev, 0xf0, 0x2e);
226 }
227
228 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
229 {
230         static const uint16_t spd_addr[] = {
231                 // Node 0
232                 DIMM0, DIMM2, 0, 0,
233                 DIMM1, DIMM3, 0, 0,
234                 // Node 1
235                 DIMM4, DIMM6, 0, 0,
236                 DIMM5, DIMM7, 0, 0,
237         };
238         unsigned bsp_apicid = 0;
239         int needs_reset = 0;
240         struct sys_info *sysinfo =
241             (struct sys_info *)(CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE - CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
242
243         it8712f_24mhz_clkin();
244         it8712f_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
245         it8712f_kill_watchdog();
246         uart_init();
247         console_init();
248         enable_rom_decode();
249         m2v_bus_init();
250         m2v_it8712f_gpio_init();
251
252         printk(BIOS_INFO, "now booting... \n");
253
254         if (bist == 0)
255                 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
256
257         /* Halt if there was a built in self test failure. */
258         report_bist_failure(bist);
259         setup_default_resource_map();
260         setup_coherent_ht_domain();
261         wait_all_core0_started();
262
263         printk(BIOS_INFO, "now booting... All core 0 started\n");
264
265 #if CONFIG_LOGICAL_CPUS==1
266         /* It is said that we should start core1 after all core0 launched. */
267         start_other_cores();
268         wait_all_other_cores_started(bsp_apicid);
269 #endif
270         init_timer();
271         ht_setup_chains_x(sysinfo); /* Init sblnk and sbbusn, nodes, sbdn. */
272
273         needs_reset = optimize_link_coherent_ht();
274         print_debug_hex8(needs_reset);
275         needs_reset |= optimize_link_incoherent_ht(sysinfo);
276         print_debug_hex8(needs_reset);
277         needs_reset |= k8t890_early_setup_ht();
278         print_debug_hex8(needs_reset);
279
280         if (needs_reset) {
281                 printk(BIOS_DEBUG, "ht reset -\n");
282                 soft_reset();
283                 printk(BIOS_DEBUG, "FAILED!\n");
284         }
285
286         /* the HT settings needs to be OK, because link freq chnage may cause HT disconnect */
287         /* allow LDT STOP asserts */
288         vt8237_sb_enable_fid_vid();
289
290         enable_fid_change();
291         print_debug("after enable_fid_change\n");
292
293         init_fidvid_bsp(bsp_apicid);
294
295         /* Stop the APs so we can start them later in init. */
296         allow_all_aps_stop(bsp_apicid);
297
298         /* It's the time to set ctrl now. */
299         fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
300         enable_smbus();
301         sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
302         post_cache_as_ram();
303 }