blob: 5ccc348047a8962f29bb42c7559504c70a349a37 [file] [log] [blame]
Ronald G. Minnichcbc95f32007-09-09 19:43:31 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Ronald G. Minnichcbc95f32007-09-09 19:43:31 +00003 *
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 version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
Ronald G. Minnich6226f132007-09-08 18:32:53 +000020#include <stdint.h>
Edwin Beasantf333ba02010-06-10 15:24:57 +000021#include <stdlib.h>
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000022#include <spd.h>
Ronald G. Minnich6226f132007-09-08 18:32:53 +000023#include <device/pci_def.h>
24#include <arch/io.h>
25#include <device/pnp_def.h>
26#include <arch/romcc_io.h>
27#include <arch/hlt.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000028#include <console/console.h>
Patrick Georgid0835952010-10-05 09:07:10 +000029#include <lib.h>
Ronald G. Minnich6226f132007-09-08 18:32:53 +000030#include "cpu/x86/bist.h"
31#include "cpu/x86/msr.h"
32#include <cpu/amd/lxdef.h>
33#include <cpu/amd/geode_post_code.h>
34#include "southbridge/amd/cs5536/cs5536.h"
Patrick Georgi9bd9a902010-11-20 10:31:00 +000035#include <spd.h>
Ronald G. Minnich6226f132007-09-08 18:32:53 +000036
Ronald G. Minnich6226f132007-09-08 18:32:53 +000037#define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
38
Uwe Hermann8b942e72007-11-13 16:24:15 +000039/* The ALIX1.C has no SMBus; the setup is hard-wired. */
Myles Watsonad894c52010-04-30 17:11:03 +000040static void cs5536_enable_smbus(void)
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000041{
42}
43
Ronald G. Minnich6226f132007-09-08 18:32:53 +000044#include "southbridge/amd/cs5536/cs5536_early_setup.c"
45#include "superio/winbond/w83627hf/w83627hf_early_serial.c"
46
Uwe Hermann8b942e72007-11-13 16:24:15 +000047/* The part is a Hynix hy5du121622ctp-d43.
48 *
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000049 * HY 5D U 12 16 2 2 C <blank> T <blank> P D43
50 * Hynix
51 * DDR SDRAM (5D)
52 * VDD 2.5 VDDQ 2.5 (U)
53 * 512M 8K REFRESH (12)
54 * x16 (16)
55 * 4banks (2)
56 * SSTL_2 (2)
57 * 4th GEN die (C)
58 * Normal Power Consumption (<blank> )
59 * TSOP (T)
60 * Single Die (<blank>)
61 * Lead Free (P)
62 * DDR400 3-3-3 (D43)
63 */
Uwe Hermann8b942e72007-11-13 16:24:15 +000064/* SPD array */
65static const u8 spdbytes[] = {
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000066 [SPD_ACCEPTABLE_CAS_LATENCIES] = 0x10,
67 [SPD_BANK_DENSITY] = 0x40,
68 [SPD_DEVICE_ATTRIBUTES_GENERAL] = 0xff,
69 [SPD_MEMORY_TYPE] = 7,
Uwe Hermann8b942e72007-11-13 16:24:15 +000070 [SPD_MIN_CYCLE_TIME_AT_CAS_MAX] = 10, /* A guess for the tRAC value */
71 [SPD_MODULE_ATTRIBUTES] = 0xff, /* FIXME later when we figure out. */
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000072 [SPD_NUM_BANKS_PER_SDRAM] = 4,
73 [SPD_PRIMARY_SDRAM_WIDTH] = 8,
Uwe Hermann8b942e72007-11-13 16:24:15 +000074 [SPD_NUM_DIMM_BANKS] = 1, /* ALIX1.C is 1 bank. */
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000075 [SPD_NUM_COLUMNS] = 0xa,
76 [SPD_NUM_ROWS] = 3,
77 [SPD_REFRESH] = 0x3a,
78 [SPD_SDRAM_CYCLE_TIME_2ND] = 60,
79 [SPD_SDRAM_CYCLE_TIME_3RD] = 75,
80 [SPD_tRAS] = 40,
81 [SPD_tRCD] = 15,
82 [SPD_tRFC] = 70,
83 [SPD_tRP] = 15,
84 [SPD_tRRD] = 10,
85};
86
Ronald G. Minnich9d5c3a82007-11-01 15:15:14 +000087static u8 spd_read_byte(u8 device, u8 address)
Ronald G. Minnich6226f132007-09-08 18:32:53 +000088{
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000089 print_debug("spd_read_byte dev ");
90 print_debug_hex8(device);
91
Uwe Hermannd773fd32010-11-20 20:23:08 +000092 if (device != DIMM0) {
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000093 print_debug(" returns 0xff\n");
94 return 0xff;
95 }
96
97 print_debug(" addr ");
98 print_debug_hex8(address);
99 print_debug(" returns ");
100 print_debug_hex8(spdbytes[address]);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000101 print_debug("\n");
Uwe Hermann8b942e72007-11-13 16:24:15 +0000102
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000103 return spdbytes[address];
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000104}
105
Uwe Hermann8b942e72007-11-13 16:24:15 +0000106#define ManualConf 0 /* Do automatic strapped PLL config */
107#define PLLMSRhi 0x00001490 /* Manual settings for the PLL */
108#define PLLMSRlo 0x02000030
109
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000110#include "northbridge/amd/lx/raminit.h"
111#include "northbridge/amd/lx/pll_reset.c"
112#include "northbridge/amd/lx/raminit.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +0000113#include "lib/generic_sdram.c"
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000114#include "cpu/amd/model_lx/cpureginit.c"
115#include "cpu/amd/model_lx/syspreinit.c"
Stefan Reinauer9839cbd2010-04-21 20:06:10 +0000116#include "cpu/amd/model_lx/msrinit.c"
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000117
Uwe Hermann8b942e72007-11-13 16:24:15 +0000118/** Early mainboard specific GPIO setup. */
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000119static void mb_gpio_init(void)
120{
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000121}
122
Stefan Reinauer9839cbd2010-04-21 20:06:10 +0000123void main(unsigned long bist)
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000124{
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000125 static const struct mem_controller memctrl[] = {
Uwe Hermannd773fd32010-11-20 20:23:08 +0000126 {.channel0 = {DIMM0}},
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000127 };
Uwe Hermann8b942e72007-11-13 16:24:15 +0000128
Stefan Reinauer0c781b22010-04-01 09:50:32 +0000129 post_code(0x01);
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000130
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000131 SystemPreInit();
132 msr_init();
133
134 cs5536_early_setup();
135
Uwe Hermann8b942e72007-11-13 16:24:15 +0000136 /* NOTE: Must do this AFTER cs5536_early_setup()!
137 * It is counting on some early MSR setup for the CS5536.
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000138 */
139 cs5536_disable_internal_uart();
Stefan Reinauer08670622009-06-30 15:17:49 +0000140 w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000141 mb_gpio_init();
142 uart_init();
143 console_init();
144
Stefan Reinauer9839cbd2010-04-21 20:06:10 +0000145 /* Halt if there was a built in self test failure */
146 report_bist_failure(bist);
147
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000148 pll_reset(ManualConf);
149
Edwin Beasantf333ba02010-06-10 15:24:57 +0000150 cpuRegInit(0, DIMM0, DIMM1, DRAM_TERMINATED);
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000151
152 sdram_initialize(1, memctrl);
153
Ronald G. Minnichcbc95f32007-09-09 19:43:31 +0000154 /* Check memory */
Uwe Hermann8b942e72007-11-13 16:24:15 +0000155 /* Enable this only if you are having questions. */
156 /* ram_check(0, 640 * 1024); */
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000157
Uwe Hermann8b942e72007-11-13 16:24:15 +0000158 /* Switch from Cache as RAM to real RAM.
159 *
160 * There are two ways we could think about this.
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000161 *
Stefan Reinauer38f147e2010-02-08 12:20:50 +0000162 * 1. If we are using the romstage.inc ROMCC way, the stack is
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000163 * going to be re-setup in the code following this code. Just
164 * wbinvd the stack to clear the cache tags. We don't care
165 * where the stack used to be.
Uwe Hermann8b942e72007-11-13 16:24:15 +0000166 *
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000167 * 2. This file is built as a normal .c -> .o and linked in
168 * etc. The stack might be used to return etc. That means we
169 * care about what is in the stack. If we are smart we set
170 * the CAR stack to the same location as the rest of
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000171 * coreboot. If that is the case we can just do a wbinvd.
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000172 * The stack will be written into real RAM that is now setup
173 * and we continue like nothing happened. If the stack is
174 * located somewhere other than where LB would like it, you
175 * need to write some code to do a copy from cache to RAM
176 *
Uwe Hermann8b942e72007-11-13 16:24:15 +0000177 * We use method 1 on Norwich and on this board too.
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000178 */
Stefan Reinauer0c781b22010-04-01 09:50:32 +0000179 post_code(0x02);
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000180 print_err("POST 02\n");
181 __asm__("wbinvd\n");
182 print_err("Past wbinvd\n");
Uwe Hermann8b942e72007-11-13 16:24:15 +0000183
184 /* We are finding the return does not work on this board. Explicitly
185 * call the label that is after the call to us. This is gross, but
186 * sometimes at this level it is the only way out.
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000187 */
Carl-Daniel Hailfingerdbda3a92009-04-20 12:02:25 +0000188 void done_cache_as_ram_main(void);
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000189 done_cache_as_ram_main();
190}
Stefan Reinauer798ef282010-03-29 22:08:01 +0000191