8303b15f4970b16294e9aa52c5d9dc2c9417b0e8
[coreboot.git] / src / mainboard / artecgroup / dbe61 / 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 #include <stdint.h>
22 #include <device/pci_def.h>
23 #include <arch/io.h>
24 #include <device/pnp_def.h>
25 #include <arch/romcc_io.h>
26 #include <arch/hlt.h>
27 #include <stdlib.h>
28 #include <console/console.h>
29 #include "cpu/x86/bist.h"
30 #include "cpu/x86/msr.h"
31 #include <cpu/amd/lxdef.h>
32 #include <cpu/amd/geode_post_code.h>
33 #include "southbridge/amd/cs5536/cs5536.h"
34 #include "spd_table.h"
35 #include <spd.h>
36
37 #include "southbridge/amd/cs5536/cs5536_early_smbus.c"
38 #include "southbridge/amd/cs5536/cs5536_early_setup.c"
39
40 static int spd_read_byte(unsigned device, unsigned address)
41 {
42         int i;
43
44         if (device == DIMM0) {
45                 for (i=0; i < (ARRAY_SIZE(spd_table)); i++) {
46                         if (spd_table[i].address == address) {
47                                 return spd_table[i].data;
48                         }
49                 }
50         }
51
52         /* returns 0xFF on any failures */
53         return 0xFF;
54 }
55
56 #define ManualConf 0            /* Do automatic strapped PLL config */
57 /* CPU and GLIU mult/div 500/266*/
58 #define PLLMSRhi 0x0000039C /* 33MHz PCI, 0x000003DD for 66MHz PCI */
59 /* Hold Count - how long we will sit in reset */
60 #define PLLMSRlo 0x00DE6000
61
62 #include "northbridge/amd/lx/raminit.h"
63 #include "northbridge/amd/lx/pll_reset.c"
64 #include "northbridge/amd/lx/raminit.c"
65 #include "lib/generic_sdram.c"
66 #include "cpu/amd/model_lx/cpureginit.c"
67 #include "cpu/amd/model_lx/syspreinit.c"
68 #include "cpu/amd/model_lx/msrinit.c"
69
70 static void mb_gpio_init(void)
71 {
72         /* Early mainboard specific GPIO setup */
73 }
74
75 void main(unsigned long bist)
76 {
77         post_code(0x01);
78
79         msr_t msr;
80         static const struct mem_controller memctrl[] = {
81                 {.channel0 = {(0xa << 3) | 0, (0xa << 3) | 1}}
82         };
83
84         SystemPreInit();
85         msr_init();
86
87         cs5536_early_setup();
88
89         /* NOTE: must do this AFTER the early_setup!
90          * it is counting on some early MSR setup
91          * for cs5536
92          */
93         /* cs5536_disable_internal_uart  disable them. Set them up now... */
94         cs5536_setup_onchipuart(2); /* dbe61 uses UART2 as COM1 */
95         /* set address to 3F8 */
96         msr = rdmsr(MDD_LEG_IO);
97         msr.lo |= 0x7 << 20;
98         wrmsr(MDD_LEG_IO, msr);
99
100         mb_gpio_init();
101         uart_init();
102         console_init();
103
104         /* Halt if there was a built in self test failure */
105         report_bist_failure(bist);
106
107         pll_reset(ManualConf);
108
109         cpuRegInit(0, DIMM0, DIMM1, DRAM_TERMINATED);
110
111         sdram_initialize(1, memctrl);
112
113         /* Dump memory configuratation */
114 #if 0
115         msr = rdmsr(MC_CF07_DATA);
116         print_debug("MC_CF07_DATA: ");
117         print_debug_hex32(MC_CF07_DATA);
118         print_debug(" value is: ");
119         print_debug_hex32(msr.hi);
120         print_debug(":");
121         print_debug_hex32(msr.lo);
122         print_debug(" \n");
123
124         msr = rdmsr(MC_CF1017_DATA);
125         print_debug("MC_CF1017_DATA: ");
126         print_debug_hex32(MC_CF1017_DATA);
127         print_debug(" value is: ");
128         print_debug_hex32(msr.hi);
129         print_debug(":");
130         print_debug_hex32(msr.lo);
131         print_debug(" \n");
132
133         msr = rdmsr(MC_CF8F_DATA);
134         print_debug("MC_CF8F_DATA: ");
135         print_debug_hex32(MC_CF8F_DATA);
136         print_debug(" value is: ");
137         print_debug_hex32(msr.hi);
138         print_debug(":");
139         print_debug_hex32(msr.lo);
140         msr = rdmsr(MC_CF8F_DATA);
141         print_debug(" \n");
142 #endif
143
144         /* Check memory. */
145         // ram_check(0x00000000, 640 * 1024);
146         // ram_check(1024 * 1024, 2 * 1024 * 1024);
147 }
148