blob: bdd251a708d2c848ab3bce82d0912437e4d3fb50 [file] [log] [blame]
Vladimir Serbinenko94930e22014-08-24 22:40:33 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2010 coresystems GmbH
5 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
6 * Copyright (C) 2014 Vladimir Serbinenko
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
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.
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020016 */
17
18#include <stdint.h>
19#include <string.h>
20#include <lib.h>
21#include <timestamp.h>
22#include <arch/byteorder.h>
23#include <arch/io.h>
24#include <device/pci_def.h>
25#include <device/pnp_def.h>
26#include <cpu/x86/lapic.h>
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020027#include <arch/acpi.h>
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020028#include <console/console.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110029#include <northbridge/intel/sandybridge/sandybridge.h>
30#include <northbridge/intel/sandybridge/raminit_native.h>
Arthur Heymansd2d2aef2018-01-16 14:19:37 +010031#include <southbridge/intel/common/rcba.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110032#include <southbridge/intel/bd82x6x/pch.h>
Patrick Rudolphe8e66f42016-02-06 17:42:42 +010033#include <southbridge/intel/common/gpio.h>
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020034#include <arch/cpu.h>
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020035#include <cpu/x86/msr.h>
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020036
Vladimir Serbinenkofa1d6882014-10-19 02:50:45 +020037void pch_enable_lpc(void)
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020038{
39 /* X230 EC Decode Range Port60/64, Port62/66 */
40 /* Enable EC, PS/2 Keyboard/Mouse */
41 pci_write_config16(PCH_LPC_DEV, LPC_EN,
Patrick Rudolph93eac6a2017-05-04 19:10:50 +020042 CNF2_LPC_EN | CNF1_LPC_EN | MC_LPC_EN | KBC_LPC_EN);
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020043
44 pci_write_config32(PCH_LPC_DEV, LPC_GEN1_DEC, 0x7c1601);
45 pci_write_config32(PCH_LPC_DEV, LPC_GEN2_DEC, 0xc15e1);
46 pci_write_config32(PCH_LPC_DEV, LPC_GEN4_DEC, 0x0c06a1);
47
Patrick Rudolphac27d362017-05-04 19:00:33 +020048 pci_write_config32(PCH_LPC_DEV, ETR3, 0x10000);
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020049}
50
Nico Huberff4025c2018-01-14 12:34:43 +010051void mainboard_rcba_config(void)
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020052{
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020053 RCBA32(BUC) = 0;
54}
55
Vladimir Serbinenkofa1d6882014-10-19 02:50:45 +020056const struct southbridge_usb_port mainboard_usb_ports[] = {
57 { 1, 0, 0 },
58 { 1, 1, 1 },
59 { 1, 1, 3 },
60 { 1, 1, 3 },
61 { 1, 1, -1 },
62 { 1, 1, -1 },
63 { 1, 0, 2 },
64 { 1, 0, 2 },
65 { 1, 1, 6 },
66 { 1, 1, 5 },
67 { 1, 1, 6 },
68 { 1, 1, 6 },
69 { 1, 1, 7 },
70 { 1, 1, 6 },
71};
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020072
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +020073void mainboard_get_spd(spd_raw_data *spd, bool id_only)
Jan Tatjeb8743082016-06-04 19:29:03 +020074{
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +020075 read_spd (&spd[0], 0x50, id_only);
76 read_spd (&spd[2], 0x51, id_only);
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020077}
Vladimir Serbinenko609bd942016-01-31 14:00:54 +010078
Jan Tatjeb8743082016-06-04 19:29:03 +020079void mainboard_early_init(int s3resume)
80{
Vladimir Serbinenko609bd942016-01-31 14:00:54 +010081}
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010082
83void mainboard_config_superio(void)
84{
85}