215c58d5333409d16318cf52842d142115416cd4
[coreboot.git] / src / mainboard / amd / db800 / cache_as_ram_auto.c
1 /*
2  * This file is part of the LinuxBIOS project.
3  *
4  * Copyright (C) 2007 Advanced Micro Devices, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #define ASSEMBLY 1
22
23 #include <stdint.h>
24 #include <device/pci_def.h>
25 #include <arch/io.h>
26 #include <device/pnp_def.h>
27 #include <arch/hlt.h>
28 #include "pc80/serial.c"
29 #include "arch/i386/lib/console.c"
30 #include "ram/ramtest.c"
31 #include "cpu/x86/bist.h"
32 #include "cpu/x86/msr.h"
33 #include <cpu/amd/lxdef.h>
34 #include <cpu/amd/geode_post_code.h>
35 #include "southbridge/amd/cs5536/cs5536.h"
36
37 #define POST_CODE(x) outb(x, 0x80)
38 #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
39
40 #include "southbridge/amd/cs5536/cs5536_early_smbus.c"
41 #include "southbridge/amd/cs5536/cs5536_early_setup.c"
42 #include "superio/winbond/w83627hf/w83627hf_early_serial.c"
43
44 static inline int spd_read_byte(unsigned int device, unsigned int address)
45 {
46         return smbus_read_byte(device, address);
47 }
48
49 #define ManualConf 0            /* Do automatic strapped PLL config */
50 #define PLLMSRhi 0x00001490     /* Manual settings for the PLL */
51 #define PLLMSRlo 0x02000030
52 #define DIMM0 0xA0
53 #define DIMM1 0xA2
54
55 #include "northbridge/amd/lx/raminit.h"
56 #include "northbridge/amd/lx/pll_reset.c"
57 #include "northbridge/amd/lx/raminit.c"
58 #include "sdram/generic_sdram.c"
59 #include "cpu/amd/model_lx/cpureginit.c"
60 #include "cpu/amd/model_lx/syspreinit.c"
61
62 static void msr_init(void)
63 {
64         msr_t msr;
65
66         /* Setup access to the cache for under 1MB. */
67         msr.hi = 0x24fffc02;
68         msr.lo = 0x1000A000;    /* 0-A0000 write back */
69         wrmsr(CPU_RCONF_DEFAULT, msr);
70
71         msr.hi = 0x0;           /* Write back */
72         msr.lo = 0x0;
73         wrmsr(CPU_RCONF_A0_BF, msr);
74         wrmsr(CPU_RCONF_C0_DF, msr);
75         wrmsr(CPU_RCONF_E0_FF, msr);
76
77         /* Setup access to the cache for under 640K. Note MC not setup yet. */
78         msr.hi = 0x20000000;
79         msr.lo = 0xfff80;
80         wrmsr(MSR_GLIU0 + 0x20, msr);
81
82         msr.hi = 0x20000000;
83         msr.lo = 0x80fffe0;
84         wrmsr(MSR_GLIU0 + 0x21, msr);
85
86         msr.hi = 0x20000000;
87         msr.lo = 0xfff80;
88         wrmsr(MSR_GLIU1 + 0x20, msr);
89
90         msr.hi = 0x20000000;
91         msr.lo = 0x80fffe0;
92         wrmsr(MSR_GLIU1 + 0x21, msr);
93 }
94
95 static void mb_gpio_init(void)
96 {
97         /* Early mainboard specific GPIO setup. */
98 }
99
100 void cache_as_ram_main(void)
101 {
102         POST_CODE(0x01);
103
104         static const struct mem_controller memctrl[] = {
105                 {.channel0 = {(0xa << 3) | 0, (0xa << 3) | 1}}
106         };
107
108         SystemPreInit();
109         msr_init();
110
111         cs5536_early_setup();
112
113         /* Note: must do this AFTER the early_setup! It is counting on some
114          * early MSR setup for CS5536.
115          */
116         w83627hf_enable_serial(SERIAL_DEV, TTYS0_BASE);
117         mb_gpio_init();
118         uart_init();
119         console_init();
120
121         pll_reset(ManualConf);
122
123         cpuRegInit();
124
125         sdram_initialize(1, memctrl);
126
127         /* Check memory. */
128         /* ram_check(0x00000000, 640 * 1024); */
129
130         /* Memory is setup. Return to cache_as_ram.inc and continue to boot. */
131         return;
132 }