blob: 7ad4824c9103a9309b8a84361e7ca37b1feb9a06 [file] [log] [blame]
Stefan Reinauer894562f2007-11-02 12:35:30 +00001#define ASSEMBLY 1
Myles Watson1d6d45e2009-11-06 17:02:51 +00002#define __PRE_RAM__
Stefan Reinauer894562f2007-11-02 12:35:30 +00003
4#include <stdint.h>
Patrick Georgi12aba822009-04-30 07:07:22 +00005#include <string.h>
Stefan Reinauer894562f2007-11-02 12:35:30 +00006#include <device/pci_def.h>
7#include <arch/io.h>
8#include <device/pnp_def.h>
9#include <arch/romcc_io.h>
10#include <cpu/x86/lapic.h>
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000011#include <stdlib.h>
Stefan Reinauer894562f2007-11-02 12:35:30 +000012#include "option_table.h"
13#include "pc80/mc146818rtc_early.c"
14#include "pc80/serial.c"
15#include "arch/i386/lib/console.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000016#include "lib/ramtest.c"
Stefan Reinauer894562f2007-11-02 12:35:30 +000017
18#include <cpu/amd/model_fxx_rev.h>
19#include "northbridge/amd/amdk8/incoherent_ht.c"
20#include "southbridge/amd/amd8111/amd8111_early_smbus.c"
21#include "northbridge/amd/amdk8/raminit.h"
22#include "cpu/amd/model_fxx/apic_timer.c"
23#include "lib/delay.c"
24
Stefan Reinauer894562f2007-11-02 12:35:30 +000025#include "cpu/x86/lapic/boot_cpu.c"
26#include "northbridge/amd/amdk8/reset_test.c"
27#include "northbridge/amd/amdk8/debug.c"
28#include "superio/nsc/pc87366/pc87366_early_serial.c"
29
30#include "cpu/amd/mtrr/amd_earlymtrr.c"
31#include "cpu/x86/bist.h"
32
33#include "northbridge/amd/amdk8/setup_resource_map.c"
34
35#define SERIAL_DEV PNP_DEV(0x2e, PC87366_SP1)
36
37#include "southbridge/amd/amd8111/amd8111_early_ctrl.c"
38
39static void memreset_setup(void)
40{
41 if (is_cpu_pre_c0()) {
42 /* Set the memreset low */
43 outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 16);
44 /* Ensure the BIOS has control of the memory lines */
45 outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 17);
46 } else {
47 /* Ensure the CPU has controll of the memory lines */
48 outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 17);
49 }
50}
51
52static void memreset(int controllers, const struct mem_controller *ctrl)
53{
54 if (is_cpu_pre_c0()) {
55 udelay(800);
56 /* Set memreset_high */
57 outb((0<<7)|(0<<6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 16);
58 udelay(90);
59 }
60}
61
62
63static inline void activate_spd_rom(const struct mem_controller *ctrl)
64{
65 /* nothing to do */
66}
67
68static inline int spd_read_byte(unsigned device, unsigned address)
69{
70 return smbus_read_byte(device, address);
71}
72
73#define QRANK_DIMM_SUPPORT 1
74
75#include "northbridge/amd/amdk8/raminit.c"
76#include "resourcemap.c"
77#include "northbridge/amd/amdk8/coherent_ht.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000078#include "lib/generic_sdram.c"
Stefan Reinauer894562f2007-11-02 12:35:30 +000079
80#if CONFIG_LOGICAL_CPUS==1
81#define SET_NB_CFG_54 1
82#endif
83#include "cpu/amd/dualcore/dualcore.c"
84
85#define FIRST_CPU 1
86#define SECOND_CPU 1
87#define TOTAL_CPUS (FIRST_CPU + SECOND_CPU)
88
89#include "cpu/amd/car/copy_and_run.c"
90
91#include "cpu/amd/car/post_cache_as_ram.c"
92
93#include "cpu/amd/model_fxx/init_cpus.c"
94
Stefan Reinauer894562f2007-11-02 12:35:30 +000095#include "southbridge/amd/amd8111/amd8111_enable_rom.c"
96#include "northbridge/amd/amdk8/early_ht.c"
97
Stefan Reinauer894562f2007-11-02 12:35:30 +000098void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
99{
Stefan Reinauer894562f2007-11-02 12:35:30 +0000100 static const struct mem_controller cpu[] = {
101 {
102 .node_id = 0,
103 .f0 = PCI_DEV(0, 0x18, 0),
104 .f1 = PCI_DEV(0, 0x18, 1),
105 .f2 = PCI_DEV(0, 0x18, 2),
106 .f3 = PCI_DEV(0, 0x18, 3),
107 .channel0 = { (0xa<<3)|0, (0xa<<3)|2, 0, 0 },
108 .channel1 = { (0xa<<3)|1, (0xa<<3)|3, 0, 0 },
109 },
110#if CONFIG_MAX_PHYSICAL_CPUS > 1
111 {
112 .node_id = 1,
113 .f0 = PCI_DEV(0, 0x19, 0),
114 .f1 = PCI_DEV(0, 0x19, 1),
115 .f2 = PCI_DEV(0, 0x19, 2),
116 .f3 = PCI_DEV(0, 0x19, 3),
117 .channel0 = { (0xa<<3)|4, (0xa<<3)|6, 0, 0 },
118 .channel1 = { (0xa<<3)|5, (0xa<<3)|7, 0, 0 },
119 },
120#endif
121 };
122
123 int needs_reset;
124
Patrick Georgi2bd91002010-03-18 16:46:50 +0000125 if (!cpu_init_detectedx && boot_cpu()) {
Patrick Georgi776b85b2010-03-18 16:18:58 +0000126 /* Nothing special needs to be done to find bus 0 */
127 /* Allow the HT devices to be found */
128
129 enumerate_ht_chain();
130
131 amd8111_enable_rom();
132 }
133
Stefan Reinauer894562f2007-11-02 12:35:30 +0000134 if (bist == 0) {
135 init_cpus(cpu_init_detectedx);
136 }
137
Stefan Reinauer08670622009-06-30 15:17:49 +0000138 pc87366_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Stefan Reinauer894562f2007-11-02 12:35:30 +0000139 uart_init();
140 console_init();
141
142 /* Halt if there was a built in self test failure */
143 report_bist_failure(bist);
144
145 setup_ibm_e326_resource_map();
146
147 needs_reset = setup_coherent_ht_domain();
148
149#if CONFIG_LOGICAL_CPUS==1
150 // It is said that we should start core1 after all core0 launched
151 start_other_cores();
152#endif
153 // automatically set that for you, but you might meet tight space
154 needs_reset |= ht_setup_chains_x();
155
156 if (needs_reset) {
157 print_info("ht reset -\r\n");
158 soft_reset();
159 }
160
161 enable_smbus();
162
163 memreset_setup();
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000164 sdram_initialize(ARRAY_SIZE(cpu), cpu);
Stefan Reinauer894562f2007-11-02 12:35:30 +0000165
166 post_cache_as_ram();
167
168}