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