blob: c637d24192ecc23ffa667f1a444d07446c79fd4e [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>
Stefan Reinauerae5e11d2012-04-27 02:31:28 +020024#include "drivers/pc80/udelay_io.c"
Patrick Georgi12584e22010-05-08 09:14:51 +000025#include <console/console.h>
stepan836ae292010-12-08 05:42:47 +000026#include "southbridge/intel/i3100/early_smbus.c"
27#include "southbridge/intel/i3100/early_lpc.c"
Edward O'Callaghan77757c22015-01-04 21:33:39 +110028#include <northbridge/intel/i3100/raminit_ep80579.h>
Edward O'Callaghan74834e02015-01-04 04:17:35 +110029#include <superio/intel/i3100/i3100.h>
Ed Swierkb8e53eb2008-10-13 23:18:56 +000030#include "cpu/x86/mtrr/earlymtrr.c"
Edward O'Callaghan633f6e32014-11-02 10:17:10 +110031#include "lib/debug.c" // XXX
Edward O'Callaghan77757c22015-01-04 21:33:39 +110032#include <cpu/x86/bist.h>
Patrick Georgi9bd9a902010-11-20 10:31:00 +000033#include <spd.h>
Ed Swierkb8e53eb2008-10-13 23:18:56 +000034
Ed Swierkb8e53eb2008-10-13 23:18:56 +000035#define DEVPRES_CONFIG (DEVPRES_D1F0 | DEVPRES_D2F0 | DEVPRES_D3F0 | DEVPRES_D4F0)
36
Ed Swierkb8e53eb2008-10-13 23:18:56 +000037static inline int spd_read_byte(u16 device, u8 address)
38{
39 return smbus_read_byte(device, address);
40}
41
42#include "northbridge/intel/i3100/raminit_ep80579.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000043#include "lib/generic_sdram.c"
Ed Swierkb8e53eb2008-10-13 23:18:56 +000044
Uwe Hermannd1a1d572010-11-10 18:22:11 +000045#define SERIAL_DEV PNP_DEV(0x4e, I3100_SP1)
46
Aaron Durbina0a37272014-08-14 08:35:11 -050047#include <cpu/intel/romstage.h>
Stefan Reinauer61ed48c2014-12-17 13:23:05 -080048void main(unsigned long bist)
Ed Swierkb8e53eb2008-10-13 23:18:56 +000049{
Ed Swierkb8e53eb2008-10-13 23:18:56 +000050 static const struct mem_controller mch[] = {
51 {
52 .node_id = 0,
53 .f0 = PCI_DEV(0, 0x00, 0),
Uwe Hermann6dc92f02010-11-21 11:36:03 +000054 .channel0 = { DIMM2, DIMM3 },
Ed Swierkb8e53eb2008-10-13 23:18:56 +000055 }
56 };
57
58 if (bist == 0) {
59 /* Skip this if there was a built in self test failure */
Uwe Hermann7b997052010-11-21 22:47:22 +000060 if (memory_initialized())
Stefan Reinauer61ed48c2014-12-17 13:23:05 -080061 return;
Ed Swierkb8e53eb2008-10-13 23:18:56 +000062 }
63
64 /* Set up the console */
65 i3100_enable_superio();
Uwe Hermannd1a1d572010-11-10 18:22:11 +000066 i3100_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
67 i3100_configure_uart_clk(SERIAL_DEV, I3100_UART_CLK_PREDIVIDE_26);
68
Ed Swierkb8e53eb2008-10-13 23:18:56 +000069 console_init();
70
71 /* Prevent the TCO timer from rebooting us */
72 i3100_halt_tco_timer();
73
74 /* Halt if there was a built in self test failure */
75 report_bist_failure(bist);
76
77#ifdef TRUXTON_DEBUG
78 print_pci_devices();
79#endif
80 enable_smbus();
Ed Swierkb8e53eb2008-10-13 23:18:56 +000081
82 sdram_initialize(ARRAY_SIZE(mch), mch);
83 dump_pci_devices();
84 dump_pci_device(PCI_DEV(0, 0x00, 0));
85#ifdef TRUXTON_DEBUG
86 dump_bar14(PCI_DEV(0, 0x00, 0));
87#endif
Ed Swierkb8e53eb2008-10-13 23:18:56 +000088}