janitor task: unify and cleanup naming.
[coreboot.git] / src / mainboard / iei / pcisa-lx-800-r10 / romstage.c
1 /*
2  * This file is part of the coreboot 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 #define __PRE_RAM__
23
24 #include <stdint.h>
25 #include <device/pci_def.h>
26 #include <arch/io.h>
27 #include <device/pnp_def.h>
28 #include <arch/hlt.h>
29 #include "pc80/serial.c"
30 #include "arch/i386/lib/console.c"
31 #include "lib/ramtest.c"
32 #include "cpu/x86/bist.h"
33 #include "cpu/x86/msr.h"
34 #include <cpu/amd/lxdef.h>
35 #include <cpu/amd/geode_post_code.h>
36 #include "southbridge/amd/cs5536/cs5536.h"
37
38 #define POST_CODE(x) outb(x, 0x80)
39 #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
40
41 #include "southbridge/amd/cs5536/cs5536_early_smbus.c"
42 #include "southbridge/amd/cs5536/cs5536_early_setup.c"
43 #include "superio/winbond/w83627hf/w83627hf_early_serial.c"
44
45 static inline int spd_read_byte(unsigned int device, unsigned int address)
46 {
47         return smbus_read_byte(device, address);
48 }
49
50 #define ManualConf 1            /* Do automatic strapped PLL config */
51 //#define PLLMSRhi 0x0000059C /* CPU and GLIU mult/div 500/400*/
52 //#define PLLMSRhi 0x0000049C /* CPU and GLIU mult/div 500/333*/
53 #define PLLMSRhi 0x0000039C /* CPU and GLIU mult/div 500/266*/
54 //0x0000059C 0000 0000 0000 0000 0000 |0101 1|0|01 110|0
55 /* Hold Count - how long we will sit in reset */
56 #define PLLMSRlo 0x00DE6000
57
58 #define DIMM0 0xA0
59 #define DIMM1 0xA2
60
61 #include "northbridge/amd/lx/raminit.h"
62 #include "northbridge/amd/lx/pll_reset.c"
63 #include "northbridge/amd/lx/raminit.c"
64 #include "lib/generic_sdram.c"
65 #include "cpu/amd/model_lx/cpureginit.c"
66 #include "cpu/amd/model_lx/syspreinit.c"
67
68 static void msr_init(void)
69 {
70         msr_t msr;
71
72         /* Setup access to the cache for under 1MB. */
73         msr.hi = 0x24fffc02;
74         msr.lo = 0x1000A000;    /* 0-A0000 write back */
75         wrmsr(CPU_RCONF_DEFAULT, msr);
76
77         msr.hi = 0x0;           /* Write back */
78         msr.lo = 0x0;
79         wrmsr(CPU_RCONF_A0_BF, msr);
80         wrmsr(CPU_RCONF_C0_DF, msr);
81         wrmsr(CPU_RCONF_E0_FF, msr);
82
83         /* Setup access to the cache for under 640K. Note MC not setup yet. */
84         msr.hi = 0x20000000;
85         msr.lo = 0xfff80;
86         wrmsr(MSR_GLIU0 + 0x20, msr);
87
88         msr.hi = 0x20000000;
89         msr.lo = 0x80fffe0;
90         wrmsr(MSR_GLIU0 + 0x21, msr);
91
92         msr.hi = 0x20000000;
93         msr.lo = 0xfff80;
94         wrmsr(MSR_GLIU1 + 0x20, msr);
95
96         msr.hi = 0x20000000;
97         msr.lo = 0x80fffe0;
98         wrmsr(MSR_GLIU1 + 0x21, msr);
99 }
100
101 static void mb_gpio_init(void)
102 {
103         /* Early mainboard specific GPIO setup. */
104 }
105
106 void cache_as_ram_main(void)
107 {
108         POST_CODE(0x01);
109
110         static const struct mem_controller memctrl[] = {
111                 {.channel0 = {(0xa << 3) | 0, (0xa << 3) | 1}}
112         };
113
114         SystemPreInit();
115         msr_init();
116
117         cs5536_early_setup();
118
119         /* Note: must do this AFTER the early_setup! It is counting on some
120          * early MSR setup for CS5536.
121          */
122         w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
123         mb_gpio_init();
124         uart_init();
125         console_init();
126
127         pll_reset(ManualConf);
128
129         cpuRegInit();
130
131         sdram_initialize(1, memctrl);
132
133         /* ram_check(0, 640 * 1024); */
134
135         /* Memory is setup. Return to cache_as_ram.inc and continue to boot. */
136         return;
137 }