9656abaabcc2f3cd6503066822944c4683f420a7
[coreboot.git] / src / mainboard / ibm / e326 / romstage.c
1
2 #include <stdint.h>
3 #include <string.h>
4 #include <device/pci_def.h>
5 #include <arch/io.h>
6 #include <device/pnp_def.h>
7 #include <arch/romcc_io.h>
8 #include <cpu/x86/lapic.h>
9 #include <stdlib.h>
10 #include <pc80/mc146818rtc.h>
11 #include <console/console.h>
12
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
20 #include "cpu/x86/lapic/boot_cpu.c"
21 #include "northbridge/amd/amdk8/reset_test.c"
22 #include "northbridge/amd/amdk8/debug.c"
23 #include "superio/nsc/pc87366/pc87366_early_serial.c"
24
25 #include "cpu/x86/mtrr/earlymtrr.c"
26 #include "cpu/x86/bist.h"
27
28 #include "northbridge/amd/amdk8/setup_resource_map.c"
29
30 #define SERIAL_DEV PNP_DEV(0x2e, PC87366_SP1)
31
32 #include "southbridge/amd/amd8111/amd8111_early_ctrl.c"
33
34 static void memreset_setup(void)
35 {
36         if (is_cpu_pre_c0()) {
37                 /* Set the memreset low */
38                 outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 16);
39                 /* Ensure the BIOS has control of the memory lines */
40                 outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 17);
41         } else {
42                 /* Ensure the CPU has controll of the memory lines */
43                 outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 17);
44         }
45 }
46
47 static void memreset(int controllers, const struct mem_controller *ctrl)
48 {
49         if (is_cpu_pre_c0()) {
50                 udelay(800);
51                 /* Set memreset_high */
52                 outb((0<<7)|(0<<6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 16);
53                 udelay(90);
54         }
55 }
56
57 static inline void activate_spd_rom(const struct mem_controller *ctrl)
58 {
59         /* nothing to do */
60 }
61
62 static inline int spd_read_byte(unsigned device, unsigned address)
63 {
64         return smbus_read_byte(device, address);
65 }
66
67 #define QRANK_DIMM_SUPPORT 1
68
69 #include "northbridge/amd/amdk8/raminit.c"
70 #include "resourcemap.c"
71 #include "northbridge/amd/amdk8/coherent_ht.c"
72 #include "lib/generic_sdram.c"
73
74 #if CONFIG_LOGICAL_CPUS==1
75 #define SET_NB_CFG_54 1
76 #endif
77 #include "cpu/amd/dualcore/dualcore.c"
78
79 #define FIRST_CPU  1
80 #define SECOND_CPU 1
81 #define TOTAL_CPUS (FIRST_CPU + SECOND_CPU)
82
83
84
85 #include "cpu/amd/car/post_cache_as_ram.c"
86
87 #include "cpu/amd/model_fxx/init_cpus.c"
88
89 #include "southbridge/amd/amd8111/amd8111_enable_rom.c"
90 #include "northbridge/amd/amdk8/early_ht.c"
91
92 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
93 {
94         static const struct mem_controller cpu[] = {
95                 {
96                         .node_id = 0,
97                         .f0 = PCI_DEV(0, 0x18, 0),
98                         .f1 = PCI_DEV(0, 0x18, 1),
99                         .f2 = PCI_DEV(0, 0x18, 2),
100                         .f3 = PCI_DEV(0, 0x18, 3),
101                         .channel0 = { (0xa<<3)|0, (0xa<<3)|2, 0, 0 },
102                         .channel1 = { (0xa<<3)|1, (0xa<<3)|3, 0, 0 },
103                 },
104 #if CONFIG_MAX_PHYSICAL_CPUS > 1
105                 {
106                         .node_id = 1,
107                         .f0 = PCI_DEV(0, 0x19, 0),
108                         .f1 = PCI_DEV(0, 0x19, 1),
109                         .f2 = PCI_DEV(0, 0x19, 2),
110                         .f3 = PCI_DEV(0, 0x19, 3),
111                         .channel0 = { (0xa<<3)|4, (0xa<<3)|6, 0, 0 },
112                         .channel1 = { (0xa<<3)|5, (0xa<<3)|7, 0, 0 },
113                 },
114 #endif
115         };
116
117         int needs_reset;
118
119         if (!cpu_init_detectedx && boot_cpu()) {
120                 /* Nothing special needs to be done to find bus 0 */
121                 /* Allow the HT devices to be found */
122
123                 enumerate_ht_chain();
124
125                 amd8111_enable_rom();
126         }
127
128         if (bist == 0) {
129                 init_cpus(cpu_init_detectedx);
130         }
131
132         pc87366_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
133         uart_init();
134         console_init();
135
136         /* Halt if there was a built in self test failure */
137         report_bist_failure(bist);
138
139         setup_ibm_e326_resource_map();
140
141         needs_reset = setup_coherent_ht_domain();
142
143 #if CONFIG_LOGICAL_CPUS==1
144         // It is said that we should start core1 after all core0 launched
145         start_other_cores();
146 #endif
147         // automatically set that for you, but you might meet tight space
148         needs_reset |= ht_setup_chains_x();
149
150         if (needs_reset) {
151                 print_info("ht reset -\n");
152                 soft_reset();
153         }
154
155         enable_smbus();
156
157         memreset_setup();
158         sdram_initialize(ARRAY_SIZE(cpu), cpu);
159
160         post_cache_as_ram();
161
162 }
163