blob: 36b968fb6231a9db230b19a16fad3ca3a3b74657 [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.
Ronald G. Minnichcbc95f32007-09-09 19:43:31 +000014 */
15
Ronald G. Minnich6226f132007-09-08 18:32:53 +000016#include <stdint.h>
Edwin Beasantf333ba02010-06-10 15:24:57 +000017#include <stdlib.h>
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000018#include <spd.h>
Ronald G. Minnich6226f132007-09-08 18:32:53 +000019#include <device/pci_def.h>
20#include <arch/io.h>
21#include <device/pnp_def.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000022#include <console/console.h>
Patrick Georgid0835952010-10-05 09:07:10 +000023#include <lib.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110024#include <cpu/x86/bist.h>
25#include <cpu/x86/msr.h>
Kyösti Mälkki52769412016-06-17 07:55:03 +030026#include <cpu/amd/car.h>
Ronald G. Minnich6226f132007-09-08 18:32:53 +000027#include <cpu/amd/lxdef.h>
Kyösti Mälkki2458f422014-04-22 16:46:31 +030028#include <cpu/amd/car.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110029#include <southbridge/amd/cs5536/cs5536.h>
30#include <northbridge/amd/lx/raminit.h>
Ronald G. Minnich6226f132007-09-08 18:32:53 +000031
Ronald G. Minnich6226f132007-09-08 18:32:53 +000032#define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
33
Uwe Hermann8b942e72007-11-13 16:24:15 +000034/* The ALIX1.C has no SMBus; the setup is hard-wired. */
Uwe Hermann7b997052010-11-21 22:47:22 +000035static void cs5536_enable_smbus(void) { }
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000036
stepan836ae292010-12-08 05:42:47 +000037#include "southbridge/amd/cs5536/early_setup.c"
Edward O'Callaghanbeb0f262014-04-29 13:09:50 +100038#include <superio/winbond/common/winbond.h>
39#include <superio/winbond/w83627hf/w83627hf.h>
Ronald G. Minnich6226f132007-09-08 18:32:53 +000040
Uwe Hermann8b942e72007-11-13 16:24:15 +000041/* The part is a Hynix hy5du121622ctp-d43.
42 *
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000043 * HY 5D U 12 16 2 2 C <blank> T <blank> P D43
44 * Hynix
45 * DDR SDRAM (5D)
46 * VDD 2.5 VDDQ 2.5 (U)
47 * 512M 8K REFRESH (12)
48 * x16 (16)
49 * 4banks (2)
50 * SSTL_2 (2)
51 * 4th GEN die (C)
52 * Normal Power Consumption (<blank> )
53 * TSOP (T)
54 * Single Die (<blank>)
55 * Lead Free (P)
56 * DDR400 3-3-3 (D43)
57 */
Uwe Hermann8b942e72007-11-13 16:24:15 +000058/* SPD array */
59static const u8 spdbytes[] = {
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000060 [SPD_ACCEPTABLE_CAS_LATENCIES] = 0x10,
61 [SPD_BANK_DENSITY] = 0x40,
62 [SPD_DEVICE_ATTRIBUTES_GENERAL] = 0xff,
63 [SPD_MEMORY_TYPE] = 7,
Uwe Hermann8b942e72007-11-13 16:24:15 +000064 [SPD_MIN_CYCLE_TIME_AT_CAS_MAX] = 10, /* A guess for the tRAC value */
65 [SPD_MODULE_ATTRIBUTES] = 0xff, /* FIXME later when we figure out. */
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000066 [SPD_NUM_BANKS_PER_SDRAM] = 4,
67 [SPD_PRIMARY_SDRAM_WIDTH] = 8,
Uwe Hermann8b942e72007-11-13 16:24:15 +000068 [SPD_NUM_DIMM_BANKS] = 1, /* ALIX1.C is 1 bank. */
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000069 [SPD_NUM_COLUMNS] = 0xa,
70 [SPD_NUM_ROWS] = 3,
71 [SPD_REFRESH] = 0x3a,
72 [SPD_SDRAM_CYCLE_TIME_2ND] = 60,
73 [SPD_SDRAM_CYCLE_TIME_3RD] = 75,
74 [SPD_tRAS] = 40,
75 [SPD_tRCD] = 15,
76 [SPD_tRFC] = 70,
77 [SPD_tRP] = 15,
78 [SPD_tRRD] = 10,
79};
80
Christian Gmeinerc4e07bb2013-06-04 17:34:35 +020081int spd_read_byte(unsigned int device, unsigned int address)
Ronald G. Minnich6226f132007-09-08 18:32:53 +000082{
Stefan Reinauer069f4762015-01-05 13:02:32 -080083 printk(BIOS_DEBUG, "spd_read_byte dev %02x", device);
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000084
Uwe Hermannd773fd32010-11-20 20:23:08 +000085 if (device != DIMM0) {
Stefan Reinauer069f4762015-01-05 13:02:32 -080086 printk(BIOS_DEBUG, " returns 0xff\n");
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000087 return 0xff;
88 }
89
Stefan Reinauer069f4762015-01-05 13:02:32 -080090 printk(BIOS_DEBUG, " addr %02x returns %02x\n",
91 address, spdbytes[address]);
Uwe Hermann8b942e72007-11-13 16:24:15 +000092
Ronald G. Minnich65bc4602007-10-26 14:57:46 +000093 return spdbytes[address];
Ronald G. Minnich6226f132007-09-08 18:32:53 +000094}
95
Ronald G. Minnich6226f132007-09-08 18:32:53 +000096#include "northbridge/amd/lx/pll_reset.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000097#include "lib/generic_sdram.c"
Kyösti Mälkki7916f4c2012-02-09 16:07:41 +020098#include "cpu/amd/geode_lx/cpureginit.c"
99#include "cpu/amd/geode_lx/syspreinit.c"
100#include "cpu/amd/geode_lx/msrinit.c"
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000101
Kyösti Mälkki8e1f9082017-03-07 11:10:55 +0200102void asmlinkage mainboard_romstage_entry(unsigned long bist)
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000103{
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000104 static const struct mem_controller memctrl[] = {
Uwe Hermannd773fd32010-11-20 20:23:08 +0000105 {.channel0 = {DIMM0}},
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000106 };
Uwe Hermann8b942e72007-11-13 16:24:15 +0000107
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000108 SystemPreInit();
109 msr_init();
110
111 cs5536_early_setup();
112
Uwe Hermann8b942e72007-11-13 16:24:15 +0000113 /* NOTE: Must do this AFTER cs5536_early_setup()!
114 * It is counting on some early MSR setup for the CS5536.
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000115 */
116 cs5536_disable_internal_uart();
Edward O'Callaghanbeb0f262014-04-29 13:09:50 +1000117 winbond_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000118 console_init();
119
Stefan Reinauer9839cbd2010-04-21 20:06:10 +0000120 /* Halt if there was a built in self test failure */
121 report_bist_failure(bist);
122
Patrick Georgi7dc28642012-07-13 19:06:22 +0200123 pll_reset();
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000124
Edwin Beasantf333ba02010-06-10 15:24:57 +0000125 cpuRegInit(0, DIMM0, DIMM1, DRAM_TERMINATED);
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000126
127 sdram_initialize(1, memctrl);
128
Uwe Hermann8b942e72007-11-13 16:24:15 +0000129 /* Switch from Cache as RAM to real RAM.
130 *
131 * There are two ways we could think about this.
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000132 *
Stefan Reinauer38f147e2010-02-08 12:20:50 +0000133 * 1. If we are using the romstage.inc ROMCC way, the stack is
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000134 * going to be re-setup in the code following this code. Just
135 * wbinvd the stack to clear the cache tags. We don't care
136 * where the stack used to be.
Uwe Hermann8b942e72007-11-13 16:24:15 +0000137 *
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000138 * 2. This file is built as a normal .c -> .o and linked in
139 * etc. The stack might be used to return etc. That means we
140 * care about what is in the stack. If we are smart we set
141 * the CAR stack to the same location as the rest of
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000142 * coreboot. If that is the case we can just do a wbinvd.
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000143 * The stack will be written into real RAM that is now setup
144 * and we continue like nothing happened. If the stack is
145 * located somewhere other than where LB would like it, you
146 * need to write some code to do a copy from cache to RAM
147 *
Uwe Hermann8b942e72007-11-13 16:24:15 +0000148 * We use method 1 on Norwich and on this board too.
Ronald G. Minnich65bc4602007-10-26 14:57:46 +0000149 */
Stefan Reinauer0c781b22010-04-01 09:50:32 +0000150 post_code(0x02);
Stefan Reinauer069f4762015-01-05 13:02:32 -0800151 printk(BIOS_ERR, "POST 02\n");
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000152 __asm__("wbinvd\n");
Stefan Reinauer069f4762015-01-05 13:02:32 -0800153 printk(BIOS_ERR, "Past wbinvd\n");
Uwe Hermann8b942e72007-11-13 16:24:15 +0000154
155 /* We are finding the return does not work on this board. Explicitly
156 * call the label that is after the call to us. This is gross, but
157 * sometimes at this level it is the only way out.
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000158 */
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000159 done_cache_as_ram_main();
160}