Drop excessive whitespace randomly sprinkled in romstage.c files.
[coreboot.git] / src / mainboard / tyan / s4880 / romstage.c
1 #include <stdint.h>
2 #include <string.h>
3 #include <device/pci_def.h>
4 #include <arch/io.h>
5 #include <device/pnp_def.h>
6 #include <arch/romcc_io.h>
7 #include <cpu/x86/lapic.h>
8 #include <stdlib.h>
9 #include <pc80/mc146818rtc.h>
10 #include <console/console.h>
11 #include <lib.h>
12 #include <cpu/amd/model_fxx_rev.h>
13 #include "northbridge/amd/amdk8/incoherent_ht.c"
14 #include "southbridge/amd/amd8111/amd8111_early_smbus.c"
15 #include "northbridge/amd/amdk8/raminit.h"
16 #include "cpu/amd/model_fxx/apic_timer.c"
17 #include "lib/delay.c"
18 #include "cpu/x86/lapic/boot_cpu.c"
19 #include "northbridge/amd/amdk8/reset_test.c"
20 #include "northbridge/amd/amdk8/debug.c"
21 #include "superio/winbond/w83627hf/w83627hf_early_serial.c"
22 #include "cpu/x86/mtrr/earlymtrr.c"
23 #include "cpu/x86/bist.h"
24 #include "northbridge/amd/amdk8/setup_resource_map.c"
25 #include "southbridge/amd/amd8111/amd8111_early_ctrl.c"
26
27 #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
28
29 static void memreset_setup(void)
30 {
31    if (is_cpu_pre_c0()) {
32         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=0
33    }
34    else {
35         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=1
36    }
37         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 17);
38 }
39
40 static void memreset(int controllers, const struct mem_controller *ctrl)
41 {
42    if (is_cpu_pre_c0()) {
43         udelay(800);
44         outb((0<<7)|(0<<6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 17); //REVB_MEMRST_L=1
45         udelay(90);
46    }
47 }
48 static inline void activate_spd_rom(const struct mem_controller *ctrl)
49 {
50 #define SMBUS_HUB 0x18
51         unsigned device=(ctrl->channel0[0])>>8;
52         smbus_write_byte(SMBUS_HUB, 0x01, device);
53         smbus_write_byte(SMBUS_HUB, 0x03, 0);
54 }
55 #if 0
56 static inline void change_i2c_mux(unsigned device)
57 {
58 #define SMBUS_HUB 0x18
59         int ret;
60         print_debug("change_i2c_mux i="); print_debug_hex8(device); print_debug("\n");
61         ret = smbus_write_byte(SMBUS_HUB, 0x01, device);
62         print_debug("change_i2c_mux 1 ret="); print_debug_hex32(ret); print_debug("\n");
63         ret = smbus_write_byte(SMBUS_HUB, 0x03, 0);
64         print_debug("change_i2c_mux 2 ret="); print_debug_hex32(ret); print_debug("\n");
65 }
66 #endif
67
68 static inline int spd_read_byte(unsigned device, unsigned address)
69 {
70         return smbus_read_byte(device, address);
71 }
72
73 #include "northbridge/amd/amdk8/raminit.c"
74 #include "northbridge/amd/amdk8/coherent_ht.c"
75 #include "lib/generic_sdram.c"
76 #include "resourcemap.c" /* tyan does not want the default */
77 #include "cpu/amd/dualcore/dualcore.c"
78 #include <spd.h>
79 #include "cpu/amd/car/post_cache_as_ram.c"
80 #include "cpu/amd/model_fxx/init_cpus.c"
81 #include "southbridge/amd/amd8111/amd8111_enable_rom.c"
82 #include "northbridge/amd/amdk8/early_ht.c"
83
84 #define RC0 ((1<<2)<<8)
85 #define RC1 ((1<<1)<<8)
86 #define RC2 ((1<<4)<<8)
87 #define RC3 ((1<<3)<<8)
88
89 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
90 {
91         static const struct mem_controller cpu[] = {
92                 {
93                         .node_id = 0,
94                         .f0 = PCI_DEV(0, 0x18, 0),
95                         .f1 = PCI_DEV(0, 0x18, 1),
96                         .f2 = PCI_DEV(0, 0x18, 2),
97                         .f3 = PCI_DEV(0, 0x18, 3),
98                         .channel0 = { RC0|DIMM0, RC0|DIMM2, 0, 0 },
99                         .channel1 = { RC0|DIMM1, RC0|DIMM3, 0, 0 },
100                 },
101 #if CONFIG_MAX_PHYSICAL_CPUS > 1
102                 {
103                         .node_id = 1,
104                         .f0 = PCI_DEV(0, 0x19, 0),
105                         .f1 = PCI_DEV(0, 0x19, 1),
106                         .f2 = PCI_DEV(0, 0x19, 2),
107                         .f3 = PCI_DEV(0, 0x19, 3),
108                         .channel0 = { RC1|DIMM0, RC1|DIMM2 , 0, 0 },
109                         .channel1 = { RC1|DIMM1, RC1|DIMM3 , 0, 0 },
110
111                 },
112 #endif
113
114 #if CONFIG_MAX_PHYSICAL_CPUS > 2
115                 {
116                         .node_id = 2,
117                         .f0 = PCI_DEV(0, 0x1a, 0),
118                         .f1 = PCI_DEV(0, 0x1a, 1),
119                         .f2 = PCI_DEV(0, 0x1a, 2),
120                         .f3 = PCI_DEV(0, 0x1a, 3),
121                         .channel0 = { RC2|DIMM0, RC2|DIMM2, 0, 0 },
122                         .channel1 = { RC2|DIMM1, RC2|DIMM3, 0, 0 },
123
124                 },
125                 {
126                         .node_id = 3,
127                         .f0 = PCI_DEV(0, 0x1b, 0),
128                         .f1 = PCI_DEV(0, 0x1b, 1),
129                         .f2 = PCI_DEV(0, 0x1b, 2),
130                         .f3 = PCI_DEV(0, 0x1b, 3),
131                         .channel0 = { RC3|DIMM0, RC3|DIMM2, 0, 0 },
132                         .channel1 = { RC3|DIMM1, RC3|DIMM3, 0, 0 },
133
134                 },
135 #endif
136         };
137
138         int needs_reset;
139
140         if (!cpu_init_detectedx && boot_cpu()) {
141                 /* Nothing special needs to be done to find bus 0 */
142                 /* Allow the HT devices to be found */
143
144                 enumerate_ht_chain();
145
146                 amd8111_enable_rom();
147         }
148
149         if (bist == 0) {
150                 init_cpus(cpu_init_detectedx);
151         }
152
153         w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
154         uart_init();
155         console_init();
156
157         /* Halt if there was a built in self test failure */
158         report_bist_failure(bist);
159
160         setup_s4880_resource_map();
161
162         needs_reset = setup_coherent_ht_domain();
163
164 #if CONFIG_LOGICAL_CPUS==1
165         // It is said that we should start core1 after all core0 launched
166         start_other_cores();
167 #endif
168         // automatically set that for you, but you might meet tight space
169         needs_reset |= ht_setup_chains_x();
170
171         if (needs_reset) {
172                 print_info("ht reset -\n");
173                 soft_reset();
174         }
175
176         enable_smbus();
177
178         memreset_setup();
179         sdram_initialize(ARRAY_SIZE(cpu), cpu);
180
181         post_cache_as_ram();
182 }