run uart_init() from console_init, just like the other console initialization functions.
[coreboot.git] / src / mainboard / ibm / e326 / romstage.c
blob2c2b611a36df2c34e20031e524fde48f48268a5b
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/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/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 "southbridge/amd/amd8111/early_ctrl.c"
25 #include <spd.h>
27 #define SERIAL_DEV PNP_DEV(0x2e, PC87366_SP1)
29 static void memreset_setup(void)
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);
42 static void memreset(int controllers, const struct mem_controller *ctrl)
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);
52 static void activate_spd_rom(const struct mem_controller *ctrl) { }
54 static inline int spd_read_byte(unsigned device, unsigned address)
56 return smbus_read_byte(device, address);
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"
68 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
70 static const struct mem_controller cpu[] = {
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 },
80 #if CONFIG_MAX_PHYSICAL_CPUS > 1
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 },
90 #endif
93 int needs_reset;
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();
101 if (bist == 0)
102 init_cpus(cpu_init_detectedx);
104 pc87366_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
105 console_init();
107 /* Halt if there was a built in self test failure */
108 report_bist_failure(bist);
110 setup_ibm_e326_resource_map();
112 needs_reset = setup_coherent_ht_domain();
114 #if CONFIG_LOGICAL_CPUS==1
115 // It is said that we should start core1 after all core0 launched
116 start_other_cores();
117 #endif
118 // automatically set that for you, but you might meet tight space
119 needs_reset |= ht_setup_chains_x();
121 if (needs_reset) {
122 print_info("ht reset -\n");
123 soft_reset();
126 enable_smbus();
128 memreset_setup();
129 sdram_initialize(ARRAY_SIZE(cpu), cpu);
131 post_cache_as_ram();