blob: 73e445b7ce8bcd0a559338f69f34345d3f6ab766 [file] [log] [blame]
Kyösti Mälkki91162702011-11-03 15:22:01 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Kyösti Mälkki <kyosti.malkki@gmail.com>
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; version 2 of the License.
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
20#include <stdint.h>
21#include <device/pci_def.h>
22#include <arch/io.h>
23#include <device/pnp_def.h>
24#include <arch/romcc_io.h>
25#include <cpu/x86/lapic.h>
26#include <arch/cpu.h>
27#include <stdlib.h>
28#include <pc80/mc146818rtc.h>
29#include <console/console.h>
Kyösti Mälkki3aff1a32012-04-11 12:19:03 +030030#include <cpu/x86/bist.h>
31#include <spd.h>
Kyösti Mälkki91162702011-11-03 15:22:01 +020032
33#include "southbridge/intel/i82801dx/i82801dx.h"
34#include "southbridge/intel/i82801dx/early_smbus.c"
35#include "southbridge/intel/i82801dx/reset.c"
36#include "northbridge/intel/e7505/raminit.h"
37#include "northbridge/intel/e7505/debug.c"
38#include "superio/smsc/lpc47m10x/early_serial.c"
39
Kyösti Mälkki91162702011-11-03 15:22:01 +020040
41#define SERIAL_DEV PNP_DEV(0x2e, LPC47M10X2_SP1)
42
43static inline int spd_read_byte(unsigned device, unsigned address)
44{
45 return smbus_read_byte(device, address);
46}
47
Kyösti Mälkki91162702011-11-03 15:22:01 +020048#include "northbridge/intel/e7505/raminit.c"
Kyösti Mälkki91162702011-11-03 15:22:01 +020049
Kyösti Mälkki3aff1a32012-04-11 12:19:03 +030050void main(unsigned long bist)
Kyösti Mälkki91162702011-11-03 15:22:01 +020051{
52 static const struct mem_controller memctrl[] = {
53 {
54 .d0 = PCI_DEV(0, 0, 0),
55 .d0f1 = PCI_DEV(0, 0, 1),
56 .channel0 = { 0x50, 0x52, 0, 0 },
57 .channel1 = { 0x51, 0x53, 0, 0 },
58 },
59 };
60
Kyösti Mälkki91162702011-11-03 15:22:01 +020061 // Get the serial port running and print a welcome banner
62 lpc47m10x_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
63 console_init();
64
65 // Halt if there was a built in self test failure
66 report_bist_failure(bist);
67
68 // If this is a warm boot, some initialization can be skipped
69 if (!bios_reset_detected()) {
70 enable_smbus();
71 sdram_initialize(ARRAY_SIZE(memctrl), memctrl);
72 }
73
Kyösti Mälkki3aff1a32012-04-11 12:19:03 +030074 print_debug("SDRAM is up.\n");
Kyösti Mälkki91162702011-11-03 15:22:01 +020075}