blob: 4f65cbf4f5c7ff7e19d8acedfffa90390013f9b2 [file] [log] [blame]
Christian Gmeiner86f992c2012-07-13 11:36:08 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 Bachmann electronic GmbH
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
Paul Menzela46a7122013-02-23 18:37:27 +010018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Christian Gmeiner86f992c2012-07-13 11:36:08 +020019 */
20
21
22#include <stdlib.h>
23#include <stdint.h>
24#include <spd.h>
25#include <device/pci_def.h>
26#include <arch/io.h>
27#include <device/pnp_def.h>
Christian Gmeiner86f992c2012-07-13 11:36:08 +020028#include <console/console.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110029#include <cpu/x86/bist.h>
30#include <cpu/x86/msr.h>
Christian Gmeiner86f992c2012-07-13 11:36:08 +020031#include <cpu/amd/lxdef.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110032#include <southbridge/amd/cs5536/cs5536.h>
Christian Gmeiner86f992c2012-07-13 11:36:08 +020033#include "southbridge/amd/cs5536/early_smbus.c"
34#include "southbridge/amd/cs5536/early_setup.c"
Edward O'Callaghan77757c22015-01-04 21:33:39 +110035#include <northbridge/amd/lx/raminit.h>
Christian Gmeiner86f992c2012-07-13 11:36:08 +020036
Christian Gmeinerc4e07bb2013-06-04 17:34:35 +020037int spd_read_byte(unsigned int device, unsigned int address)
Christian Gmeiner86f992c2012-07-13 11:36:08 +020038{
39 return smbus_read_byte(device, address);
40}
41
Christian Gmeiner86f992c2012-07-13 11:36:08 +020042#include "northbridge/amd/lx/pll_reset.c"
Christian Gmeiner86f992c2012-07-13 11:36:08 +020043#include "lib/generic_sdram.c"
44#include "cpu/amd/geode_lx/cpureginit.c"
45#include "cpu/amd/geode_lx/syspreinit.c"
46#include "cpu/amd/geode_lx/msrinit.c"
47
Aaron Durbina0a37272014-08-14 08:35:11 -050048#include <cpu/intel/romstage.h>
Christian Gmeiner86f992c2012-07-13 11:36:08 +020049void main(unsigned long bist)
50{
51 static const struct mem_controller memctrl[] = {
52 {.channel0 = {DIMM0}}
53 };
54
55 SystemPreInit();
56 msr_init();
57
58 cs5536_early_setup();
59
60 /* Note: must do this AFTER the early_setup! It is counting on some
61 * early MSR setup for CS5536.
62 */
63 /* cs5536_disable_internal_uart: disable them for now, set them
64 * up later...
65 */
66 /* If debug. real setup done in chipset init via devicetree.cb. */
67 cs5536_setup_onchipuart(1);
68 console_init();
69
70 /* Halt if there was a built in self test failure */
71 report_bist_failure(bist);
72
Patrick Georgi7dc28642012-07-13 19:06:22 +020073 pll_reset();
Christian Gmeiner86f992c2012-07-13 11:36:08 +020074
75 cpuRegInit(0, DIMM0, DIMM1, DRAM_TERMINATED);
76
77 sdram_initialize(1, memctrl);
78
79 /* Memory is setup. Return to cache_as_ram.inc and continue to boot. */
80 return;
81}