blob: 228bd08b2efe9a1800e459ee64263518f5904682 [file] [log] [blame]
arch import user (historical)6ca76362005-07-06 17:17:25 +00001#define ASSEMBLY 1
Myles Watson1d6d45e2009-11-06 17:02:51 +00002#define __PRE_RAM__
Stefan Reinauer806e1462005-12-01 10:54:44 +00003
4//used by raminit
Yinghai Lu6d74d762006-10-04 23:57:49 +00005#define QRANK_DIMM_SUPPORT 1
Stefan Reinauer806e1462005-12-01 10:54:44 +00006
7#if CONFIG_LOGICAL_CPUS==1
8#define SET_NB_CFG_54 1
9#endif
10
arch import user (historical)6ca76362005-07-06 17:17:25 +000011#include <stdint.h>
Patrick Georgi12aba822009-04-30 07:07:22 +000012#include <string.h>
arch import user (historical)6ca76362005-07-06 17:17:25 +000013#include <device/pci_def.h>
14#include <arch/io.h>
15#include <device/pnp_def.h>
16#include <arch/romcc_io.h>
17#include <cpu/x86/lapic.h>
18#include "option_table.h"
19#include "pc80/mc146818rtc_early.c"
20#include "pc80/serial.c"
21#include "arch/i386/lib/console.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000022#include "lib/ramtest.c"
arch import user (historical)6ca76362005-07-06 17:17:25 +000023
Stefan Reinauer373511b2005-12-02 23:16:01 +000024#include <cpu/amd/model_fxx_rev.h>
Yinghai Lu6d74d762006-10-04 23:57:49 +000025
arch import user (historical)6ca76362005-07-06 17:17:25 +000026#include "northbridge/amd/amdk8/incoherent_ht.c"
27#include "southbridge/nvidia/ck804/ck804_early_smbus.c"
28#include "northbridge/amd/amdk8/raminit.h"
29#include "cpu/amd/model_fxx/apic_timer.c"
30#include "lib/delay.c"
arch import user (historical)6ca76362005-07-06 17:17:25 +000031#include "cpu/x86/lapic/boot_cpu.c"
32#include "northbridge/amd/amdk8/reset_test.c"
33#include "northbridge/amd/amdk8/debug.c"
34#include "superio/winbond/w83627hf/w83627hf_early_serial.c"
35
36#include "cpu/amd/mtrr/amd_earlymtrr.c"
37#include "cpu/x86/bist.h"
38
39#include "northbridge/amd/amdk8/setup_resource_map.c"
40
41#define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
42
arch import user (historical)6ca76362005-07-06 17:17:25 +000043static void memreset_setup(void)
44{
45}
46
47static void memreset(int controllers, const struct mem_controller *ctrl)
48{
49}
50
51static inline void activate_spd_rom(const struct mem_controller *ctrl)
52{
53 /* nothing to do */
54}
55
56static inline int spd_read_byte(unsigned device, unsigned address)
57{
58 return smbus_read_byte(device, address);
59}
60
arch import user (historical)6ca76362005-07-06 17:17:25 +000061#include "northbridge/amd/amdk8/raminit.c"
62#include "northbridge/amd/amdk8/coherent_ht.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000063#include "lib/generic_sdram.c"
arch import user (historical)6ca76362005-07-06 17:17:25 +000064
65 /* tyan does not want the default */
Myles Watsona67c354c2008-09-18 15:30:42 +000066#include "resourcemap.c"
arch import user (historical)6ca76362005-07-06 17:17:25 +000067
arch import user (historical)6ca76362005-07-06 17:17:25 +000068#include "cpu/amd/dualcore/dualcore.c"
arch import user (historical)6ca76362005-07-06 17:17:25 +000069
70#define CK804_NUM 1
71#include "southbridge/nvidia/ck804/ck804_early_setup_ss.h"
72#include "southbridge/nvidia/ck804/ck804_early_setup.c"
73
74#include "cpu/amd/car/copy_and_run.c"
75
Stefan Reinauer806e1462005-12-01 10:54:44 +000076#include "cpu/amd/car/post_cache_as_ram.c"
77
78#include "cpu/amd/model_fxx/init_cpus.c"
79
arch import user (historical)6ca76362005-07-06 17:17:25 +000080#include "southbridge/nvidia/ck804/ck804_enable_rom.c"
81#include "northbridge/amd/amdk8/early_ht.c"
82
83static void sio_setup(void)
84{
85
Myles Watsona67c354c2008-09-18 15:30:42 +000086 unsigned value;
87 uint32_t dword;
88 uint8_t byte;
arch import user (historical)6ca76362005-07-06 17:17:25 +000089
Myles Watsona67c354c2008-09-18 15:30:42 +000090 /* subject decoding*/
91 byte = pci_read_config8(PCI_DEV(0, CK804_DEVN_BASE+1 , 0), 0x7b);
92 byte |= 0x20;
93 pci_write_config8(PCI_DEV(0, CK804_DEVN_BASE+1 , 0), 0x7b, byte);
arch import user (historical)6ca76362005-07-06 17:17:25 +000094
Myles Watsona67c354c2008-09-18 15:30:42 +000095 /* LPC Positive Decode 0 */
96 dword = pci_read_config32(PCI_DEV(0, CK804_DEVN_BASE+1 , 0), 0xa0);
97 /* Serial 0, Serial 1 */
98 dword |= (1<<0) | (1<<1);
99 pci_write_config32(PCI_DEV(0, CK804_DEVN_BASE+1 , 0), 0xa0, dword);
arch import user (historical)6ca76362005-07-06 17:17:25 +0000100
Myles Watsona67c354c2008-09-18 15:30:42 +0000101#if 1
102 /* s2891 has onboard LPC port 80 */
103 /*Hope I can enable port 80 here
104 It will decode port 80 to LPC, If you are using PCI post code you can not do this */
105 dword = pci_read_config32(PCI_DEV(0, CK804_DEVN_BASE+1 , 0), 0xa4);
106 dword |= (1<<16);
107 pci_write_config32(PCI_DEV(0, CK804_DEVN_BASE+1 , 0), 0xa4, dword);
arch import user (historical)6ca76362005-07-06 17:17:25 +0000108
109#endif
110
111}
arch import user (historical)6ca76362005-07-06 17:17:25 +0000112
Stefan Reinauer806e1462005-12-01 10:54:44 +0000113void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
arch import user (historical)6ca76362005-07-06 17:17:25 +0000114{
Stefan Reinauer806e1462005-12-01 10:54:44 +0000115 static const uint16_t spd_addr [] = {
Myles Watsona67c354c2008-09-18 15:30:42 +0000116 (0xa<<3)|0, (0xa<<3)|2, 0, 0,
117 (0xa<<3)|1, (0xa<<3)|3, 0, 0,
Stefan Reinauer806e1462005-12-01 10:54:44 +0000118#if CONFIG_MAX_PHYSICAL_CPUS > 1
Myles Watsona67c354c2008-09-18 15:30:42 +0000119 (0xa<<3)|4, (0xa<<3)|6, 0, 0,
120 (0xa<<3)|5, (0xa<<3)|7, 0, 0,
arch import user (historical)6ca76362005-07-06 17:17:25 +0000121#endif
122 };
123
Myles Watsona67c354c2008-09-18 15:30:42 +0000124 int needs_reset;
125 unsigned bsp_apicid = 0;
Stefan Reinauer806e1462005-12-01 10:54:44 +0000126
Myles Watsona67c354c2008-09-18 15:30:42 +0000127 struct mem_controller ctrl[8];
128 unsigned nodes;
arch import user (historical)6ca76362005-07-06 17:17:25 +0000129
Patrick Georgi2bd91002010-03-18 16:46:50 +0000130 if (!cpu_init_detectedx && boot_cpu()) {
Patrick Georgi776b85b2010-03-18 16:18:58 +0000131 /* Nothing special needs to be done to find bus 0 */
132 /* Allow the HT devices to be found */
133
134 enumerate_ht_chain();
135
136 sio_setup();
137
138 /* Setup the ck804 */
139 ck804_enable_rom();
140 }
141
Myles Watsona67c354c2008-09-18 15:30:42 +0000142 if (bist == 0) {
143 bsp_apicid = init_cpus(cpu_init_detectedx);
144 }
arch import user (historical)6ca76362005-07-06 17:17:25 +0000145
Yinghai Lu6d74d762006-10-04 23:57:49 +0000146// post_code(0x32);
Myles Watsona67c354c2008-09-18 15:30:42 +0000147
Stefan Reinauer08670622009-06-30 15:17:49 +0000148 w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Myles Watsona67c354c2008-09-18 15:30:42 +0000149 uart_init();
150 console_init();
151
arch import user (historical)6ca76362005-07-06 17:17:25 +0000152 /* Halt if there was a built in self test failure */
153 report_bist_failure(bist);
154
Myles Watsona67c354c2008-09-18 15:30:42 +0000155 setup_s2891_resource_map();
Yinghai Lu6d74d762006-10-04 23:57:49 +0000156#if 0
Myles Watsona67c354c2008-09-18 15:30:42 +0000157 dump_pci_device(PCI_DEV(0, 0x18, 0));
Yinghai Lu6d74d762006-10-04 23:57:49 +0000158 dump_pci_device(PCI_DEV(0, 0x19, 0));
159#endif
arch import user (historical)6ca76362005-07-06 17:17:25 +0000160
161 needs_reset = setup_coherent_ht_domain();
Yinghai Lu7ac38a32006-05-04 01:05:22 +0000162
Myles Watsona67c354c2008-09-18 15:30:42 +0000163 wait_all_core0_started();
arch import user (historical)6ca76362005-07-06 17:17:25 +0000164#if CONFIG_LOGICAL_CPUS==1
Myles Watsona67c354c2008-09-18 15:30:42 +0000165 // It is said that we should start core1 after all core0 launched
166 start_other_cores();
167 wait_all_other_cores_started(bsp_apicid);
arch import user (historical)6ca76362005-07-06 17:17:25 +0000168#endif
Stefan Reinauer806e1462005-12-01 10:54:44 +0000169
Myles Watsona67c354c2008-09-18 15:30:42 +0000170 needs_reset |= ht_setup_chains_x();
arch import user (historical)6ca76362005-07-06 17:17:25 +0000171
Myles Watsona67c354c2008-09-18 15:30:42 +0000172 needs_reset |= ck804_early_setup_x();
arch import user (historical)6ca76362005-07-06 17:17:25 +0000173
Myles Watsona67c354c2008-09-18 15:30:42 +0000174 if (needs_reset) {
Myles Watsonb0575d82009-10-14 02:38:24 +0000175 printk_info("ht reset -\r\n");
176 soft_reset();
Myles Watsona67c354c2008-09-18 15:30:42 +0000177 }
arch import user (historical)6ca76362005-07-06 17:17:25 +0000178
Myles Watsona67c354c2008-09-18 15:30:42 +0000179 allow_all_aps_stop(bsp_apicid);
Stefan Reinauer806e1462005-12-01 10:54:44 +0000180
Myles Watsona67c354c2008-09-18 15:30:42 +0000181 nodes = get_nodes();
182 //It's the time to set ctrl now;
183 fill_mem_ctrl(nodes, ctrl, spd_addr);
Stefan Reinauer806e1462005-12-01 10:54:44 +0000184
arch import user (historical)6ca76362005-07-06 17:17:25 +0000185 enable_smbus();
Yinghai Lu6d74d762006-10-04 23:57:49 +0000186#if 0
187 dump_spd_registers(&cpu[0]);
188#endif
189#if 0
190 dump_smbus_registers();
191#endif
arch import user (historical)6ca76362005-07-06 17:17:25 +0000192
193 memreset_setup();
Stefan Reinauer806e1462005-12-01 10:54:44 +0000194 sdram_initialize(nodes, ctrl);
arch import user (historical)6ca76362005-07-06 17:17:25 +0000195
Yinghai Lu6d74d762006-10-04 23:57:49 +0000196#if 0
Myles Watsona67c354c2008-09-18 15:30:42 +0000197 print_pci_devices();
Yinghai Lu6d74d762006-10-04 23:57:49 +0000198#endif
199
200#if 0
201 dump_pci_devices();
202#endif
203
Yinghai Lu9a791df2006-04-03 20:38:34 +0000204 post_cache_as_ram();
arch import user (historical)6ca76362005-07-06 17:17:25 +0000205}