blob: 06562176d00fbdf0e5d5ba98402943c212bc97da [file] [log] [blame]
Aaron Lwefcb2a312008-05-19 12:17:43 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 VIA Technologies, Inc.
5 * (Written by Aaron Lwe <aaron.lwe@gmail.com> for VIA)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
Aaron Lwefcb2a312008-05-19 12:17:43 +000022#include <stdint.h>
23#include <device/pci_def.h>
24#include <device/pci_ids.h>
25#include <arch/io.h>
26#include <device/pnp_def.h>
27#include <arch/romcc_io.h>
28#include <arch/hlt.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000029#include <console/console.h>
Patrick Georgid0835952010-10-05 09:07:10 +000030#include <lib.h>
Aaron Lwefcb2a312008-05-19 12:17:43 +000031#include "northbridge/via/cn700/raminit.h"
Aaron Lwefcb2a312008-05-19 12:17:43 +000032#include "cpu/x86/bist.h"
33#include "pc80/udelay_io.c"
34#include "lib/delay.c"
Aaron Lwefcb2a312008-05-19 12:17:43 +000035#include "southbridge/via/vt8237r/vt8237r_early_smbus.c"
36#include "southbridge/via/vt8235/vt8235_early_serial.c"
37
Aaron Lwefcb2a312008-05-19 12:17:43 +000038static inline int spd_read_byte(unsigned device, unsigned address)
39{
40 return smbus_read_byte(device, address);
41}
42
43#include "northbridge/via/cn700/raminit.c"
44
45static void enable_mainboard_devices(void)
46{
47 device_t dev;
Stefan Reinauer14e22772010-04-27 06:56:47 +000048
Bari Arid4759d02008-09-01 01:48:07 +000049 dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VT8237R_LPC), 0);
Aaron Lwefcb2a312008-05-19 12:17:43 +000050 if (dev == PCI_DEV_INVALID)
Bari Arid4759d02008-09-01 01:48:07 +000051 die("Southbridge not found!!!\n");
52
53 /* bit=0 means enable function (per CX700 datasheet)
54 * 5 16.1 USB 2
55 * 4 16.0 USB 1
56 * 3 15.0 SATA and PATA
57 * 2 16.2 USB 3
58 * 1 16.4 USB EHCI
59 */
60 pci_write_config8(dev, 0x50, 0x80);
61
62 /* bit=1 means enable internal function (per CX700 datasheet)
63 * 3 Internal RTC
64 * 2 Internal PS2 Mouse
65 * 1 Internal KBC Configuration
66 * 0 Internal Keyboard Controller
67 */
68 pci_write_config8(dev, 0x51, 0x1d);
Aaron Lwefcb2a312008-05-19 12:17:43 +000069}
70
71static const struct mem_controller ctrl = {
72 .d0f0 = 0x0000,
73 .d0f2 = 0x2000,
74 .d0f3 = 0x3000,
75 .d0f4 = 0x4000,
76 .d0f7 = 0x7000,
77 .d1f0 = 0x8000,
78 .channel0 = { 0x50 },
79};
80
Stefan Reinauer314e5512010-04-09 20:36:29 +000081void main(unsigned long bist)
Aaron Lwefcb2a312008-05-19 12:17:43 +000082{
Aaron Lwefcb2a312008-05-19 12:17:43 +000083 /* Enable multifunction for northbridge. */
84 pci_write_config8(ctrl.d0f0, 0x4f, 0x01);
85
86 enable_vt8235_serial();
87 uart_init();
88 console_init();
89
Stefan Reinauer64ed2b72010-03-31 14:47:43 +000090 print_spew("In romstage.c:main()\n");
Aaron Lwefcb2a312008-05-19 12:17:43 +000091
92 enable_smbus();
93 smbus_fixup(&ctrl);
94
Aaron Lwefcb2a312008-05-19 12:17:43 +000095 /* Halt if there was a built-in self test failure. */
96 report_bist_failure(bist);
97
Stefan Reinauer64ed2b72010-03-31 14:47:43 +000098 print_debug("Enabling mainboard devices\n");
Aaron Lwefcb2a312008-05-19 12:17:43 +000099 enable_mainboard_devices();
100
101 ddr_ram_setup(&ctrl);
102
103 /* ram_check(0, 640 * 1024); */
104
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000105 print_spew("Leaving romstage.c:main()\n");
Aaron Lwefcb2a312008-05-19 12:17:43 +0000106}
Stefan Reinauer798ef282010-03-29 22:08:01 +0000107