55448bd381a9e3f15f02cd427c5061adbed95be9
[coreboot.git] / src / mainboard / tyan / s2875 / 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 <spd.h>
13 #include <cpu/amd/model_fxx_rev.h>
14 #include "northbridge/amd/amdk8/incoherent_ht.c"
15 #include "southbridge/amd/amd8111/amd8111_early_smbus.c"
16 #include "northbridge/amd/amdk8/raminit.h"
17 #include "cpu/amd/model_fxx/apic_timer.c"
18 #include "lib/delay.c"
19 #include "cpu/x86/lapic/boot_cpu.c"
20 #include "northbridge/amd/amdk8/reset_test.c"
21 #include "northbridge/amd/amdk8/debug.c"
22 #include "superio/winbond/w83627hf/w83627hf_early_serial.c"
23 #include "cpu/x86/mtrr/earlymtrr.c"
24 #include "cpu/x86/bist.h"
25 #include "northbridge/amd/amdk8/setup_resource_map.c"
26 #include "southbridge/amd/amd8111/amd8111_early_ctrl.c"
27
28 #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
29
30 static void memreset_setup(void)
31 {
32    if (is_cpu_pre_c0())
33         outb((1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=0
34    else
35         outb((1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=1
36    outb((1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 17);
37 }
38
39 static void memreset(int controllers, const struct mem_controller *ctrl)
40 {
41    if (is_cpu_pre_c0()) {
42         udelay(800);
43         outb((1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 17); //REVB_MEMRST_L=1
44         udelay(90);
45    }
46 }
47
48 static void activate_spd_rom(const struct mem_controller *ctrl) { }
49
50 static inline int spd_read_byte(unsigned device, unsigned address)
51 {
52         return smbus_read_byte(device, address);
53 }
54
55 #include "northbridge/amd/amdk8/raminit.c"
56 #include "northbridge/amd/amdk8/coherent_ht.c"
57 #include "lib/generic_sdram.c"
58 #include "northbridge/amd/amdk8/resourcemap.c"
59 #include "cpu/amd/dualcore/dualcore.c"
60 #include "cpu/amd/car/post_cache_as_ram.c"
61 #include "cpu/amd/model_fxx/init_cpus.c"
62 #include "southbridge/amd/amd8111/amd8111_enable_rom.c"
63 #include "northbridge/amd/amdk8/early_ht.c"
64
65 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
66 {
67         static const struct mem_controller cpu[] = {
68                 {
69                         .node_id = 0,
70                         .f0 = PCI_DEV(0, 0x18, 0),
71                         .f1 = PCI_DEV(0, 0x18, 1),
72                         .f2 = PCI_DEV(0, 0x18, 2),
73                         .f3 = PCI_DEV(0, 0x18, 3),
74                         .channel0 = { DIMM0, DIMM2, 0, 0 },
75                         .channel1 = { DIMM1, DIMM3, 0, 0 },
76                 },
77 #if CONFIG_MAX_PHYSICAL_CPUS > 1
78                 {
79                         .node_id = 1,
80                         .f0 = PCI_DEV(0, 0x19, 0),
81                         .f1 = PCI_DEV(0, 0x19, 1),
82                         .f2 = PCI_DEV(0, 0x19, 2),
83                         .f3 = PCI_DEV(0, 0x19, 3),
84                         .channel0 = { DIMM4, DIMM6, 0, 0 },
85                         .channel1 = { DIMM5, DIMM7, 0, 0 },
86                 },
87 #endif
88         };
89
90         int needs_reset;
91
92         if (!cpu_init_detectedx && boot_cpu()) {
93                 /* Nothing special needs to be done to find bus 0 */
94                 /* Allow the HT devices to be found */
95                 enumerate_ht_chain();
96                 amd8111_enable_rom();
97         }
98
99         if (bist == 0)
100                 init_cpus(cpu_init_detectedx);
101
102         w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
103         uart_init();
104         console_init();
105
106         /* Halt if there was a built in self test failure */
107         report_bist_failure(bist);
108
109         setup_default_resource_map();
110
111         needs_reset = setup_coherent_ht_domain();
112
113 #if CONFIG_LOGICAL_CPUS==1
114         // It is said that we should start core1 after all core0 launched
115         start_other_cores();
116 #endif
117         needs_reset |= ht_setup_chains_x();
118
119         if (needs_reset) {
120                 print_info("ht reset -\n");
121                 soft_reset();
122         }
123
124         enable_smbus();
125
126         memreset_setup();
127         sdram_initialize(ARRAY_SIZE(cpu), cpu);
128
129         post_cache_as_ram();
130 }