blob: 3ecb97bc2188c3f3fc47a74af2cfcbce6767eadf [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.
Aaron Lwefcb2a312008-05-19 12:17:43 +000016 */
17
Aaron Lwefcb2a312008-05-19 12:17:43 +000018#include <stdint.h>
19#include <device/pci_def.h>
20#include <device/pci_ids.h>
21#include <arch/io.h>
22#include <device/pnp_def.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000023#include <console/console.h>
Patrick Georgid0835952010-10-05 09:07:10 +000024#include <lib.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110025#include <northbridge/via/cn700/raminit.h>
26#include <cpu/x86/bist.h>
Kyösti Mälkki52769412016-06-17 07:55:03 +030027#include <cpu/amd/car.h>
Edward O'Callaghanebe3a7a2015-01-05 00:27:54 +110028#include <delay.h>
stepan836ae292010-12-08 05:42:47 +000029#include "southbridge/via/vt8237r/early_smbus.c"
Stefan Reinauer8de452d2014-12-19 13:45:24 -080030#include "southbridge/via/vt8237r/early_serial.c"
Uwe Hermann6dc92f02010-11-21 11:36:03 +000031#include <spd.h>
Aaron Lwefcb2a312008-05-19 12:17:43 +000032
Aaron Lwefcb2a312008-05-19 12:17:43 +000033static inline int spd_read_byte(unsigned device, unsigned address)
34{
35 return smbus_read_byte(device, address);
36}
37
38#include "northbridge/via/cn700/raminit.c"
39
40static void enable_mainboard_devices(void)
41{
Antonello Dettori825b8012016-11-08 18:44:46 +010042 pci_devfn_t dev;
Stefan Reinauer14e22772010-04-27 06:56:47 +000043
Uwe Hermann7b997052010-11-21 22:47:22 +000044 dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA,
45 PCI_DEVICE_ID_VIA_VT8237R_LPC), 0);
Aaron Lwefcb2a312008-05-19 12:17:43 +000046 if (dev == PCI_DEV_INVALID)
Bari Arid4759d02008-09-01 01:48:07 +000047 die("Southbridge not found!!!\n");
48
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060049 /* bit = 0 means enable function (per CX700 datasheet)
Bari Arid4759d02008-09-01 01:48:07 +000050 * 5 16.1 USB 2
51 * 4 16.0 USB 1
52 * 3 15.0 SATA and PATA
53 * 2 16.2 USB 3
54 * 1 16.4 USB EHCI
55 */
56 pci_write_config8(dev, 0x50, 0x80);
57
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060058 /* bit = 1 means enable internal function (per CX700 datasheet)
Bari Arid4759d02008-09-01 01:48:07 +000059 * 3 Internal RTC
60 * 2 Internal PS2 Mouse
61 * 1 Internal KBC Configuration
62 * 0 Internal Keyboard Controller
63 */
64 pci_write_config8(dev, 0x51, 0x1d);
Aaron Lwefcb2a312008-05-19 12:17:43 +000065}
66
67static const struct mem_controller ctrl = {
68 .d0f0 = 0x0000,
69 .d0f2 = 0x2000,
70 .d0f3 = 0x3000,
71 .d0f4 = 0x4000,
72 .d0f7 = 0x7000,
73 .d1f0 = 0x8000,
Uwe Hermannd773fd32010-11-20 20:23:08 +000074 .channel0 = { DIMM0 },
Aaron Lwefcb2a312008-05-19 12:17:43 +000075};
76
Stefan Reinauer314e5512010-04-09 20:36:29 +000077void main(unsigned long bist)
Aaron Lwefcb2a312008-05-19 12:17:43 +000078{
Aaron Lwefcb2a312008-05-19 12:17:43 +000079 /* Enable multifunction for northbridge. */
80 pci_write_config8(ctrl.d0f0, 0x4f, 0x01);
81
Stefan Reinauer8de452d2014-12-19 13:45:24 -080082 enable_vt8237r_serial();
Aaron Lwefcb2a312008-05-19 12:17:43 +000083 console_init();
Aaron Lwefcb2a312008-05-19 12:17:43 +000084 enable_smbus();
85 smbus_fixup(&ctrl);
Aaron Lwefcb2a312008-05-19 12:17:43 +000086 report_bist_failure(bist);
Aaron Lwefcb2a312008-05-19 12:17:43 +000087 enable_mainboard_devices();
Aaron Lwefcb2a312008-05-19 12:17:43 +000088 ddr_ram_setup(&ctrl);
Aaron Lwefcb2a312008-05-19 12:17:43 +000089}