blob: e889eed09ce27ad5853de455a59d61dcde72a506 [file] [log] [blame]
Nikolay Petukhov202625e2008-04-24 13:37:01 +00001/*
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
Nikolay Petukhov202625e2008-04-24 13:37:01 +000021#include <stdint.h>
Edwin Beasantf333ba02010-06-10 15:24:57 +000022#include <stdlib.h>
Nikolay Petukhov202625e2008-04-24 13:37:01 +000023#include <device/pci_def.h>
24#include <arch/io.h>
25#include <device/pnp_def.h>
26#include <arch/hlt.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000027#include <console/console.h>
Nikolay Petukhov202625e2008-04-24 13:37:01 +000028#include "cpu/x86/bist.h"
29#include "cpu/x86/msr.h"
30#include <cpu/amd/lxdef.h>
31#include <cpu/amd/geode_post_code.h>
32#include "southbridge/amd/cs5536/cs5536.h"
Patrick Georgi9bd9a902010-11-20 10:31:00 +000033#include <spd.h>
Nikolay Petukhov202625e2008-04-24 13:37:01 +000034#include "southbridge/amd/cs5536/cs5536_early_smbus.c"
35#include "southbridge/amd/cs5536/cs5536_early_setup.c"
36#include "superio/winbond/w83627hf/w83627hf_early_serial.c"
37
Uwe Hermann57b2ff82010-11-21 17:29:59 +000038#define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
39
Nikolay Petukhov202625e2008-04-24 13:37:01 +000040static inline int spd_read_byte(unsigned int device, unsigned int address)
41{
42 return smbus_read_byte(device, address);
43}
44
45#define ManualConf 1 /* Do automatic strapped PLL config */
46//#define PLLMSRhi 0x0000059C /* CPU and GLIU mult/div 500/400*/
47//#define PLLMSRhi 0x0000049C /* CPU and GLIU mult/div 500/333*/
48#define PLLMSRhi 0x0000039C /* CPU and GLIU mult/div 500/266*/
49//0x0000059C 0000 0000 0000 0000 0000 |0101 1|0|01 110|0
50/* Hold Count - how long we will sit in reset */
51#define PLLMSRlo 0x00DE6000
52
Nikolay Petukhov202625e2008-04-24 13:37:01 +000053#include "northbridge/amd/lx/raminit.h"
54#include "northbridge/amd/lx/pll_reset.c"
55#include "northbridge/amd/lx/raminit.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000056#include "lib/generic_sdram.c"
Nikolay Petukhov202625e2008-04-24 13:37:01 +000057#include "cpu/amd/model_lx/cpureginit.c"
58#include "cpu/amd/model_lx/syspreinit.c"
Stefan Reinauer9839cbd2010-04-21 20:06:10 +000059#include "cpu/amd/model_lx/msrinit.c"
Nikolay Petukhov202625e2008-04-24 13:37:01 +000060
61static void mb_gpio_init(void)
62{
63 /* Early mainboard specific GPIO setup. */
64}
65
Stefan Reinauer9839cbd2010-04-21 20:06:10 +000066void main(unsigned long bist)
Nikolay Petukhov202625e2008-04-24 13:37:01 +000067{
Stefan Reinauer0c781b22010-04-01 09:50:32 +000068 post_code(0x01);
Nikolay Petukhov202625e2008-04-24 13:37:01 +000069
70 static const struct mem_controller memctrl[] = {
Uwe Hermann6dc92f02010-11-21 11:36:03 +000071 {.channel0 = {DIMM0, DIMM1}}
Nikolay Petukhov202625e2008-04-24 13:37:01 +000072 };
73
74 SystemPreInit();
75 msr_init();
76
77 cs5536_early_setup();
78
79 /* Note: must do this AFTER the early_setup! It is counting on some
80 * early MSR setup for CS5536.
81 */
Stefan Reinauer08670622009-06-30 15:17:49 +000082 w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Nikolay Petukhov202625e2008-04-24 13:37:01 +000083 mb_gpio_init();
84 uart_init();
85 console_init();
86
Stefan Reinauer9839cbd2010-04-21 20:06:10 +000087 /* Halt if there was a built in self test failure */
88 report_bist_failure(bist);
89
Nikolay Petukhov202625e2008-04-24 13:37:01 +000090 pll_reset(ManualConf);
91
Edwin Beasantf333ba02010-06-10 15:24:57 +000092 cpuRegInit(0, DIMM0, DIMM1, DRAM_TERMINATED);
Nikolay Petukhov202625e2008-04-24 13:37:01 +000093
94 sdram_initialize(1, memctrl);
95
96 /* ram_check(0, 640 * 1024); */
97
98 /* Memory is setup. Return to cache_as_ram.inc and continue to boot. */
99 return;
100}