blob: 7dc8cd5334e438e72d37e7ca5551ba58a327d2e9 [file] [log] [blame]
Tristan Corrick921a4cf2018-08-02 19:41:08 +12001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2018 Tristan Corrick <tristan@corrick.kiwi>
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, either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
Arthur Heymansfa5d0f82019-11-12 19:11:50 +010017#include <bootblock_common.h>
Tristan Corrick921a4cf2018-08-02 19:41:08 +120018#include <device/pci_ops.h>
19#include <device/dram/ddr3.h>
20#include <northbridge/intel/sandybridge/raminit_native.h>
21#include <northbridge/intel/sandybridge/sandybridge.h>
22#include <southbridge/intel/bd82x6x/pch.h>
23#include <superio/nuvoton/common/nuvoton.h>
24#include <superio/nuvoton/nct6776/nct6776.h>
25
26#define SERIAL_DEV PNP_DEV(0x2e, NCT6776_SP1)
27
28const struct southbridge_usb_port mainboard_usb_ports[] = {
29 { 1, 0, 0 },
30 { 1, 0, 0 },
31 { 1, 0, 1 },
32 { 1, 0, 1 },
33 { 1, 0, 2 },
34 { 1, 0, 2 },
35 { 1, 0, 3 },
36 { 1, 0, 3 },
37 { 1, 0, 4 },
38 { 1, 0, 4 },
39 { 1, 0, 5 },
40 { 1, 0, 5 },
41 { 1, 0, 6 },
42 { 1, 0, 6 },
43};
44
Arthur Heymans2b28a162019-11-12 17:21:08 +010045void mainboard_pch_lpc_setup(void)
Tristan Corrick921a4cf2018-08-02 19:41:08 +120046{
47 pci_or_config16(PCH_LPC_DEV, LPC_EN,
48 CNF1_LPC_EN | KBC_LPC_EN | LPT_LPC_EN | COMA_LPC_EN);
49}
50
Arthur Heymansfa5d0f82019-11-12 19:11:50 +010051void bootblock_mainboard_early_init(void)
Tristan Corrick921a4cf2018-08-02 19:41:08 +120052{
53 nuvoton_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
54}
55
56void mainboard_get_spd(spd_raw_data *spd, bool id_only)
57{
58 read_spd(&spd[0], 0x50, id_only);
59 read_spd(&spd[2], 0x52, id_only);
60}