cfa061313f6173da27b096886d768c5a4e44ea5e
[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((1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=0
33    else
34         outb((1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=1
35    outb((1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 17);
36 }
37
38 static void memreset(int controllers, const struct mem_controller *ctrl)
39 {
40    if (is_cpu_pre_c0()) {
41         udelay(800);
42         outb((1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 17); //REVB_MEMRST_L=1
43         udelay(90);
44    }
45 }
46
47 static inline void activate_spd_rom(const struct mem_controller *ctrl)
48 {
49 #define SMBUS_HUB 0x18
50         unsigned device=(ctrl->channel0[0])>>8;
51         smbus_write_byte(SMBUS_HUB, 0x01, device);
52         smbus_write_byte(SMBUS_HUB, 0x03, 0);
53 }
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"
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 "northbridge/amd/amdk8/early_ht.c"
82
83 #define RC0 ((1<<2)<<8)
84 #define RC1 ((1<<1)<<8)
85 #define RC2 ((1<<4)<<8)
86 #define RC3 ((1<<3)<<8)
87
88 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
89 {
90         static const struct mem_controller cpu[] = {
91                 {
92                         .node_id = 0,
93                         .f0 = PCI_DEV(0, 0x18, 0),
94                         .f1 = PCI_DEV(0, 0x18, 1),
95                         .f2 = PCI_DEV(0, 0x18, 2),
96                         .f3 = PCI_DEV(0, 0x18, 3),
97                         .channel0 = { RC0|DIMM0, RC0|DIMM2, 0, 0 },
98                         .channel1 = { RC0|DIMM1, RC0|DIMM3, 0, 0 },
99                 },
100 #if CONFIG_MAX_PHYSICAL_CPUS > 1
101                 {
102                         .node_id = 1,
103                         .f0 = PCI_DEV(0, 0x19, 0),
104                         .f1 = PCI_DEV(0, 0x19, 1),
105                         .f2 = PCI_DEV(0, 0x19, 2),
106                         .f3 = PCI_DEV(0, 0x19, 3),
107                         .channel0 = { RC1|DIMM0, RC1|DIMM2 , 0, 0 },
108                         .channel1 = { RC1|DIMM1, RC1|DIMM3 , 0, 0 },
109
110                 },
111 #endif
112 #if CONFIG_MAX_PHYSICAL_CPUS > 2
113                 {
114                         .node_id = 2,
115                         .f0 = PCI_DEV(0, 0x1a, 0),
116                         .f1 = PCI_DEV(0, 0x1a, 1),
117                         .f2 = PCI_DEV(0, 0x1a, 2),
118                         .f3 = PCI_DEV(0, 0x1a, 3),
119                         .channel0 = { RC2|DIMM0, RC2|DIMM2, 0, 0 },
120                         .channel1 = { RC2|DIMM1, RC2|DIMM3, 0, 0 },
121
122                 },
123                 {
124                         .node_id = 3,
125                         .f0 = PCI_DEV(0, 0x1b, 0),
126                         .f1 = PCI_DEV(0, 0x1b, 1),
127                         .f2 = PCI_DEV(0, 0x1b, 2),
128                         .f3 = PCI_DEV(0, 0x1b, 3),
129                         .channel0 = { RC3|DIMM0, RC3|DIMM2, 0, 0 },
130                         .channel1 = { RC3|DIMM1, RC3|DIMM3, 0, 0 },
131
132                 },
133 #endif
134         };
135
136         int needs_reset;
137
138         if (!cpu_init_detectedx && boot_cpu()) {
139                 /* Nothing special needs to be done to find bus 0 */
140                 /* Allow the HT devices to be found */
141                 enumerate_ht_chain();
142         }
143
144         if (bist == 0)
145                 init_cpus(cpu_init_detectedx);
146
147         w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
148         uart_init();
149         console_init();
150
151         /* Halt if there was a built in self test failure */
152         report_bist_failure(bist);
153
154         setup_s4880_resource_map();
155
156         needs_reset = setup_coherent_ht_domain();
157
158 #if CONFIG_LOGICAL_CPUS==1
159         // It is said that we should start core1 after all core0 launched
160         start_other_cores();
161 #endif
162         // automatically set that for you, but you might meet tight space
163         needs_reset |= ht_setup_chains_x();
164
165         if (needs_reset) {
166                 print_info("ht reset -\n");
167                 soft_reset();
168         }
169
170         enable_smbus();
171
172         memreset_setup();
173         sdram_initialize(ARRAY_SIZE(cpu), cpu);
174
175         post_cache_as_ram();
176 }