blob: 4b64210c38c14421c4c609e17208d22df3ce8052 [file] [log] [blame]
Ed Swierkb8e53eb2008-10-13 23:18:56 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 Arastra, 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.
Ed Swierkb8e53eb2008-10-13 23:18:56 +000014 */
15
Ed Swierkb8e53eb2008-10-13 23:18:56 +000016#include <stdint.h>
17#include <stdlib.h>
18#include <device/pci_def.h>
19#include <device/pci_ids.h>
20#include <arch/io.h>
21#include <device/pnp_def.h>
Ed Swierkb8e53eb2008-10-13 23:18:56 +000022#include <cpu/x86/lapic.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000023#include <pc80/mc146818rtc.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000024#include <console/console.h>
stepan836ae292010-12-08 05:42:47 +000025#include "southbridge/intel/i3100/early_smbus.c"
26#include "southbridge/intel/i3100/early_lpc.c"
Edward O'Callaghan77757c22015-01-04 21:33:39 +110027#include <northbridge/intel/i3100/raminit_ep80579.h>
Edward O'Callaghan74834e02015-01-04 04:17:35 +110028#include <superio/intel/i3100/i3100.h>
Edward O'Callaghan633f6e32014-11-02 10:17:10 +110029#include "lib/debug.c" // XXX
Edward O'Callaghan77757c22015-01-04 21:33:39 +110030#include <cpu/x86/bist.h>
Kyösti Mälkki07921540d2016-06-17 17:22:00 +030031#include <cpu/intel/romstage.h>
Patrick Georgi9bd9a902010-11-20 10:31:00 +000032#include <spd.h>
Ed Swierkb8e53eb2008-10-13 23:18:56 +000033
Ed Swierkb8e53eb2008-10-13 23:18:56 +000034#define DEVPRES_CONFIG (DEVPRES_D1F0 | DEVPRES_D2F0 | DEVPRES_D3F0 | DEVPRES_D4F0)
35
Ed Swierkb8e53eb2008-10-13 23:18:56 +000036static inline int spd_read_byte(u16 device, u8 address)
37{
38 return smbus_read_byte(device, address);
39}
40
41#include "northbridge/intel/i3100/raminit_ep80579.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000042#include "lib/generic_sdram.c"
Ed Swierkb8e53eb2008-10-13 23:18:56 +000043
Uwe Hermannd1a1d572010-11-10 18:22:11 +000044#define SERIAL_DEV PNP_DEV(0x4e, I3100_SP1)
45
Kyösti Mälkki07921540d2016-06-17 17:22:00 +030046void mainboard_romstage_entry(unsigned long bist)
Ed Swierkb8e53eb2008-10-13 23:18:56 +000047{
Ed Swierkb8e53eb2008-10-13 23:18:56 +000048 static const struct mem_controller mch[] = {
49 {
50 .node_id = 0,
51 .f0 = PCI_DEV(0, 0x00, 0),
Uwe Hermann6dc92f02010-11-21 11:36:03 +000052 .channel0 = { DIMM2, DIMM3 },
Ed Swierkb8e53eb2008-10-13 23:18:56 +000053 }
54 };
55
56 if (bist == 0) {
57 /* Skip this if there was a built in self test failure */
Uwe Hermann7b997052010-11-21 22:47:22 +000058 if (memory_initialized())
Stefan Reinauer61ed48c2014-12-17 13:23:05 -080059 return;
Ed Swierkb8e53eb2008-10-13 23:18:56 +000060 }
61
62 /* Set up the console */
63 i3100_enable_superio();
Uwe Hermannd1a1d572010-11-10 18:22:11 +000064 i3100_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
65 i3100_configure_uart_clk(SERIAL_DEV, I3100_UART_CLK_PREDIVIDE_26);
66
Ed Swierkb8e53eb2008-10-13 23:18:56 +000067 console_init();
68
69 /* Prevent the TCO timer from rebooting us */
70 i3100_halt_tco_timer();
71
72 /* Halt if there was a built in self test failure */
73 report_bist_failure(bist);
74
75#ifdef TRUXTON_DEBUG
76 print_pci_devices();
77#endif
78 enable_smbus();
Ed Swierkb8e53eb2008-10-13 23:18:56 +000079
80 sdram_initialize(ARRAY_SIZE(mch), mch);
81 dump_pci_devices();
82 dump_pci_device(PCI_DEV(0, 0x00, 0));
83#ifdef TRUXTON_DEBUG
84 dump_bar14(PCI_DEV(0, 0x00, 0));
85#endif
Ed Swierkb8e53eb2008-10-13 23:18:56 +000086}