9c0671e3b4771f79b878dfc78f101dc81e7be354
[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 <cpu/amd/geode_post_code.h>
33 #include <spd.h>
34
35 #include "southbridge/amd/cs5536/cs5536_early_smbus.c"
36 #include "southbridge/amd/cs5536/cs5536_early_setup.c"
37
38 static inline int spd_read_byte(unsigned int device, unsigned int address)
39 {
40         if (device != DIMM0)
41                 return 0xFF;    /* No DIMM1, don't even try. */
42
43         return smbus_read_byte(device, address);
44 }
45
46 #include "northbridge/amd/gx2/raminit.h"
47 #include "northbridge/amd/gx2/pll_reset.c"
48 #include "northbridge/amd/gx2/raminit.c"
49 #include "lib/generic_sdram.c"
50 #include "cpu/amd/model_gx2/cpureginit.c"
51 #include "cpu/amd/model_gx2/syspreinit.c"
52 #include "cpu/amd/model_lx/msrinit.c"
53
54 void main(unsigned long bist)
55 {
56         static const struct mem_controller memctrl [] = {
57                 {.channel0 = {DIMM0, DIMM1}}
58         };
59
60         SystemPreInit();
61
62         cs5536_early_setup();
63         
64         /* cs5536_disable_internal_uart  disable them. Set them up now... */
65         cs5536_setup_onchipuart(1);
66
67         uart_init();
68         console_init();
69
70         /* Halt if there was a built in self test failure */
71         report_bist_failure(bist);
72
73         pll_reset();
74
75         cpuRegInit();
76         print_err("done cpuRegInit\n");
77
78         sdram_initialize(1, memctrl);
79         print_err("ram setup done\n");
80
81         msr_init();
82
83         /* Check all of memory */
84         /*ram_check(0x00000000, 640*1024);*/
85         print_err("ram check done\n");
86 }
87