d80e2d59350030653998574319b5508b2fad0111
[coreboot.git] / src / mainboard / wyse / s50 / romstage.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2010 Nils Jacobs
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; version 2 of
9  * the License.
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,
19  * MA 02110-1301 USA
20  */
21
22 #include <stdint.h>
23 #include <device/pci_def.h>
24 #include <arch/io.h>
25 #include <device/pnp_def.h>
26 #include <arch/hlt.h>
27 #include <console/console.h>
28 #include <lib.h>
29 #include "cpu/x86/bist.h"
30 #include "cpu/x86/msr.h"
31 #include <cpu/amd/gx2def.h>
32 #include <spd.h>
33 #include "southbridge/amd/cs5536/early_smbus.c"
34 #include "southbridge/amd/cs5536/early_setup.c"
35
36 static inline int spd_read_byte(unsigned int device, unsigned int address)
37 {
38         if (device != DIMM0)
39                 return 0xFF;    /* No DIMM1, don't even try. */
40
41         return smbus_read_byte(device, address);
42 }
43
44 #include "northbridge/amd/gx2/raminit.h"
45 #include "northbridge/amd/gx2/pll_reset.c"
46 #include "northbridge/amd/gx2/raminit.c"
47 #include "lib/generic_sdram.c"
48 #include "cpu/amd/model_gx2/cpureginit.c"
49 #include "cpu/amd/model_gx2/syspreinit.c"
50 #include "cpu/amd/model_lx/msrinit.c"
51
52 void main(unsigned long bist)
53 {
54         static const struct mem_controller memctrl [] = {
55                 {.channel0 = {DIMM0, DIMM1}}
56         };
57
58         SystemPreInit();
59
60         cs5536_early_setup();
61         
62         /* cs5536_disable_internal_uart  disable them. Set them up now... */
63         cs5536_setup_onchipuart(1);
64
65         console_init();
66
67         /* Halt if there was a built in self test failure */
68         report_bist_failure(bist);
69
70         pll_reset();
71
72         cpuRegInit();
73         print_err("done cpuRegInit\n");
74
75         sdram_initialize(1, memctrl);
76         print_err("ram setup done\n");
77
78         msr_init();
79 }