blob: d9f00f4bc30aca648b072df318a61625a30df31e [file] [log] [blame]
Stefan Reinauer49428d82013-02-21 15:48:37 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2010 coresystems GmbH
5 * Copyright (C) 2011 Google Inc.
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; version 2 of the License.
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.
Stefan Reinauer49428d82013-02-21 15:48:37 -080015 */
16
17#include <stdint.h>
18#include <string.h>
19#include <lib.h>
20#include <timestamp.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080021#include <arch/io.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080022#include <device/pci.h>
23#include <device/pci_def.h>
24#include <device/pnp_def.h>
25#include <cpu/x86/lapic.h>
26#include <pc80/mc146818rtc.h>
Kyösti Mälkki6722f8d2014-06-16 09:14:49 +030027#include <arch/acpi.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080028#include <cbmem.h>
29#include <console/console.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110030#include <northbridge/intel/sandybridge/sandybridge.h>
31#include <northbridge/intel/sandybridge/raminit.h>
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010032#include <northbridge/intel/sandybridge/raminit_native.h>
Patrick Rudolphe8e66f42016-02-06 17:42:42 +010033#include <southbridge/intel/common/gpio.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080034#include "ec/google/chromeec/ec.h"
35#include <arch/cpu.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080036#include <cpu/x86/msr.h>
Patrick Georgibd79c5e2014-11-28 22:35:36 +010037#include <halt.h>
Philipp Deppenwiesec07f8fb2018-02-27 19:40:52 +010038#include <security/tpm/tspi.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080039#include <cbfs.h>
40
41#include <southbridge/intel/bd82x6x/chip.h>
42
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010043void pch_enable_lpc(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080044{
45 const struct device *lpc;
46 const struct southbridge_intel_bd82x6x_config *config = NULL;
47
48 lpc = dev_find_slot(0, PCI_DEVFN(0x1f, 0));
49 if (!lpc)
50 return;
51 if (lpc->chip_info)
52 config = lpc->chip_info;
53 if (!config)
54 return;
55
56 /* Set COM1/COM2 decode range */
57 pci_write_config16(PCH_LPC_DEV, LPC_IO_DEC, 0x0010);
58
59 /* Enable PS/2 Keyboard/Mouse, EC areas and COM1 */
60 pci_write_config16(PCH_LPC_DEV, LPC_EN, KBC_LPC_EN | MC_LPC_EN | \
61 GAMEL_LPC_EN | COMA_LPC_EN);
62
63 pci_write_config32(PCH_LPC_DEV, LPC_GEN1_DEC, config->gen1_dec);
64 pci_write_config32(PCH_LPC_DEV, LPC_GEN2_DEC, config->gen2_dec);
65 pci_write_config32(PCH_LPC_DEV, LPC_GEN3_DEC, config->gen3_dec);
66 pci_write_config32(PCH_LPC_DEV, LPC_GEN4_DEC, config->gen4_dec);
67}
68
Nico Huberff4025c2018-01-14 12:34:43 +010069void mainboard_rcba_config(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080070{
Kyösti Mälkki6f499062015-06-06 11:52:24 +030071 /*
72 * GFX INTA -> PIRQA (MSI)
73 * D28IP_P3IP WLAN INTA -> PIRQB
74 * D29IP_E1P EHCI1 INTA -> PIRQD
75 * D26IP_E2P EHCI2 INTA -> PIRQF
76 * D31IP_SIP SATA INTA -> PIRQF (MSI)
77 * D31IP_SMIP SMBUS INTB -> PIRQH
78 * D31IP_TTIP THRT INTC -> PIRQA
79 * D27IP_ZIP HDA INTA -> PIRQA (MSI)
80 *
81 * TRACKPAD -> PIRQE (Edge Triggered)
82 * TOUCHSCREEN -> PIRQG (Edge Triggered)
83 */
84
85 /* Device interrupt pin register (board specific) */
86 RCBA32(D31IP) = (INTC << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
87 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
88 RCBA32(D30IP) = (NOINT << D30IP_PIP);
89 RCBA32(D29IP) = (INTA << D29IP_E1P);
90 RCBA32(D28IP) = (INTA << D28IP_P3IP);
91 RCBA32(D27IP) = (INTA << D27IP_ZIP);
92 RCBA32(D26IP) = (INTA << D26IP_E2P);
93 RCBA32(D25IP) = (NOINT << D25IP_LIP);
94 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
95
96 /* Device interrupt route registers */
97 DIR_ROUTE(D31IR, PIRQB, PIRQH, PIRQA, PIRQC);
98 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
99 DIR_ROUTE(D28IR, PIRQB, PIRQC, PIRQD, PIRQE);
100 DIR_ROUTE(D27IR, PIRQA, PIRQH, PIRQA, PIRQB);
101 DIR_ROUTE(D26IR, PIRQF, PIRQE, PIRQG, PIRQH);
102 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
103 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
104
105 /* Enable IOAPIC (generic) */
Arthur Heymans58a89532018-06-12 22:58:19 +0200106 RCBA16(OIC) = 0x0100;
Kyösti Mälkki6f499062015-06-06 11:52:24 +0300107 /* PCH BWG says to read back the IOAPIC enable register */
Arthur Heymans58a89532018-06-12 22:58:19 +0200108 (void) RCBA16(OIC);
Stefan Reinauer49428d82013-02-21 15:48:37 -0800109}
110
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100111static uint8_t *locate_spd(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -0800112{
113 const int gpio_vector[] = {41, 42, 43, 10, -1};
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100114 uint8_t *spd_file;
Vladimir Serbinenko12874162014-01-12 14:12:15 +0100115 size_t spd_file_len;
Stefan Reinauer49428d82013-02-21 15:48:37 -0800116 int spd_index = get_gpios(gpio_vector);
117
118 printk(BIOS_DEBUG, "spd index %d\n", spd_index);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500119 spd_file = cbfs_boot_map_with_leak("spd.bin", CBFS_TYPE_SPD,
120 &spd_file_len);
Stefan Reinauer49428d82013-02-21 15:48:37 -0800121 if (!spd_file)
122 die("SPD data not found.");
123
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100124 if (spd_file_len < ((spd_index + 1) * 256)) {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800125 printk(BIOS_ERR, "spd index override to 0 - old hardware?\n");
126 spd_index = 0;
127 }
128
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100129 if (spd_file_len < 256)
Stefan Reinauer49428d82013-02-21 15:48:37 -0800130 die("Missing SPD data.");
131
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100132 return spd_file + spd_index * 256;
Stefan Reinauer49428d82013-02-21 15:48:37 -0800133}
134
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100135void mainboard_fill_pei_data(struct pei_data *pei_data)
Stefan Reinauer49428d82013-02-21 15:48:37 -0800136{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100137 struct pei_data pei_data_template = {
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000138 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800139 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
140 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000141 .epbar = DEFAULT_EPBAR,
142 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
143 .smbusbar = SMBUS_IO_BASE,
144 .wdbbar = 0x4000000,
145 .wdbsize = 0x1000,
146 .hpet_address = CONFIG_HPET_ADDRESS,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800147 .rcba = (uintptr_t)DEFAULT_RCBABASE,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000148 .pmbase = DEFAULT_PMBASE,
149 .gpiobase = DEFAULT_GPIOBASE,
150 .thermalbase = 0xfed08000,
151 .system_type = 0, // 0 Mobile, 1 Desktop/Server
152 .tseg_size = CONFIG_SMM_TSEG_SIZE,
153 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
154 .ec_present = 1,
155 .ddr3lv_support = 1,
Stefan Reinauer49428d82013-02-21 15:48:37 -0800156 // 0 = leave channel enabled
157 // 1 = disable dimm 0 on channel
158 // 2 = disable dimm 1 on channel
159 // 3 = disable dimm 0+1 on channel
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000160 .dimm_channel0_disabled = 2,
161 .dimm_channel1_disabled = 2,
162 .max_ddr3_freq = 1600,
163 .usb_port_config = {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800164 /* Empty and onboard Ports 0-7, set to un-used pin OC3 */
165 { 0, 3, 0x0000 }, /* P0: Empty */
166 { 1, 0, 0x0040 }, /* P1: Left USB 1 (OC0) */
167 { 1, 1, 0x0040 }, /* P2: Left USB 2 (OC1) */
168 { 1, 3, 0x0040 }, /* P3: SDCARD (no OC) */
169 { 0, 3, 0x0000 }, /* P4: Empty */
170 { 1, 3, 0x0040 }, /* P5: WWAN (no OC) */
171 { 0, 3, 0x0000 }, /* P6: Empty */
172 { 0, 3, 0x0000 }, /* P7: Empty */
173 /* Empty and onboard Ports 8-13, set to un-used pin OC4 */
174 { 1, 4, 0x0040 }, /* P8: Camera (no OC) */
175 { 1, 4, 0x0040 }, /* P9: Bluetooth (no OC) */
176 { 0, 4, 0x0000 }, /* P10: Empty */
177 { 0, 4, 0x0000 }, /* P11: Empty */
178 { 0, 4, 0x0000 }, /* P12: Empty */
179 { 0, 4, 0x0000 }, /* P13: Empty */
180 },
181 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100182 *pei_data = pei_data_template;
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100183 memcpy(pei_data->spd_data[0], locate_spd(),
184 sizeof(pei_data->spd_data[0]));
185}
186
187const struct southbridge_usb_port mainboard_usb_ports[] = {
188 /* enabled power usb oc pin */
189 { 0, 0, -1 }, /* P0: Empty */
190 { 1, 0, 0 }, /* P1: Left USB 1 (OC0) */
191 { 1, 0, 1 }, /* P2: Left USB 2 (OC1) */
192 { 1, 0, -1 }, /* P3: SDCARD (no OC) */
193 { 0, 0, -1 }, /* P4: Empty */
194 { 1, 0, -1 }, /* P5: WWAN (no OC) */
195 { 0, 0, -1 }, /* P6: Empty */
196 { 0, 0, -1 }, /* P7: Empty */
197 { 1, 0, -1 }, /* P8: Camera (no OC) */
198 { 1, 0, -1 }, /* P9: Bluetooth (no OC) */
199 { 0, 0, -1 }, /* P10: Empty */
200 { 0, 0, -1 }, /* P11: Empty */
201 { 0, 0, -1 }, /* P12: Empty */
202 { 0, 0, -1 }, /* P13: Empty */
203};
204
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200205void mainboard_get_spd(spd_raw_data *spd, bool id_only) {
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100206 memcpy(&spd[0], locate_spd(), 128);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100207}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800208
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100209void mainboard_early_init(int s3resume)
210{
211 if (!s3resume) {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800212 /* This is the fastest way to let users know
213 * the Intel CPU is now alive.
214 */
215 google_chromeec_kbbacklight(100);
216 }
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100217}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800218
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100219int mainboard_should_reset_usb(int s3resume)
220{
221 return !s3resume;
222}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800223
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100224void mainboard_config_superio(void)
225{
Stefan Reinauer49428d82013-02-21 15:48:37 -0800226}