blob: cf9c18f947d27ffe85f1c734bfb48fe33e5108a4 [file] [log] [blame]
Angel Ponsfeedf232020-04-05 13:22:01 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Stefan Reinauer49428d82013-02-21 15:48:37 -08003
4#include <stdint.h>
5#include <string.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02006#include <device/pci_ops.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -08007#include <cpu/x86/lapic.h>
Kyösti Mälkki6722f8d2014-06-16 09:14:49 +03008#include <arch/acpi.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -08009#include <console/console.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110010#include <northbridge/intel/sandybridge/sandybridge.h>
11#include <northbridge/intel/sandybridge/raminit.h>
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010012#include <northbridge/intel/sandybridge/raminit_native.h>
Patrick Rudolphda9302a2019-03-24 17:01:41 +010013#include <southbridge/intel/bd82x6x/pch.h>
Patrick Rudolphe8e66f42016-02-06 17:42:42 +010014#include <southbridge/intel/common/gpio.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080015#include "ec/google/chromeec/ec.h"
Stefan Reinauer49428d82013-02-21 15:48:37 -080016#include <cbfs.h>
17
18#include <southbridge/intel/bd82x6x/chip.h>
19
Arthur Heymans2b28a162019-11-12 17:21:08 +010020void mainboard_pch_lpc_setup(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080021{
Nico Hubere036aae2019-11-17 01:24:44 +010022 /* Enable additional 0x200..0x207 for EC */
23 pci_or_config16(PCH_LPC_DEV, LPC_EN, GAMEL_LPC_EN);
Stefan Reinauer49428d82013-02-21 15:48:37 -080024}
25
Arthur Heymans9c538342019-11-12 16:42:33 +010026void mainboard_late_rcba_config(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080027{
Kyösti Mälkki6f499062015-06-06 11:52:24 +030028 /*
29 * GFX INTA -> PIRQA (MSI)
30 * D28IP_P3IP WLAN INTA -> PIRQB
31 * D29IP_E1P EHCI1 INTA -> PIRQD
32 * D26IP_E2P EHCI2 INTA -> PIRQF
33 * D31IP_SIP SATA INTA -> PIRQF (MSI)
34 * D31IP_SMIP SMBUS INTB -> PIRQH
35 * D31IP_TTIP THRT INTC -> PIRQA
36 * D27IP_ZIP HDA INTA -> PIRQA (MSI)
37 *
38 * TRACKPAD -> PIRQE (Edge Triggered)
39 * TOUCHSCREEN -> PIRQG (Edge Triggered)
40 */
41
42 /* Device interrupt pin register (board specific) */
43 RCBA32(D31IP) = (INTC << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
44 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
45 RCBA32(D30IP) = (NOINT << D30IP_PIP);
46 RCBA32(D29IP) = (INTA << D29IP_E1P);
47 RCBA32(D28IP) = (INTA << D28IP_P3IP);
48 RCBA32(D27IP) = (INTA << D27IP_ZIP);
49 RCBA32(D26IP) = (INTA << D26IP_E2P);
50 RCBA32(D25IP) = (NOINT << D25IP_LIP);
51 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
52
53 /* Device interrupt route registers */
54 DIR_ROUTE(D31IR, PIRQB, PIRQH, PIRQA, PIRQC);
55 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
56 DIR_ROUTE(D28IR, PIRQB, PIRQC, PIRQD, PIRQE);
57 DIR_ROUTE(D27IR, PIRQA, PIRQH, PIRQA, PIRQB);
58 DIR_ROUTE(D26IR, PIRQF, PIRQE, PIRQG, PIRQH);
59 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
60 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
Stefan Reinauer49428d82013-02-21 15:48:37 -080061}
62
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010063static uint8_t *locate_spd(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080064{
65 const int gpio_vector[] = {41, 42, 43, 10, -1};
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010066 uint8_t *spd_file;
Vladimir Serbinenko12874162014-01-12 14:12:15 +010067 size_t spd_file_len;
Stefan Reinauer49428d82013-02-21 15:48:37 -080068 int spd_index = get_gpios(gpio_vector);
69
70 printk(BIOS_DEBUG, "spd index %d\n", spd_index);
Aaron Durbin899d13d2015-05-15 23:39:23 -050071 spd_file = cbfs_boot_map_with_leak("spd.bin", CBFS_TYPE_SPD,
72 &spd_file_len);
Stefan Reinauer49428d82013-02-21 15:48:37 -080073 if (!spd_file)
74 die("SPD data not found.");
75
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010076 if (spd_file_len < ((spd_index + 1) * 256)) {
Stefan Reinauer49428d82013-02-21 15:48:37 -080077 printk(BIOS_ERR, "spd index override to 0 - old hardware?\n");
78 spd_index = 0;
79 }
80
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010081 if (spd_file_len < 256)
Stefan Reinauer49428d82013-02-21 15:48:37 -080082 die("Missing SPD data.");
83
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010084 return spd_file + spd_index * 256;
Stefan Reinauer49428d82013-02-21 15:48:37 -080085}
86
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010087void mainboard_fill_pei_data(struct pei_data *pei_data)
Stefan Reinauer49428d82013-02-21 15:48:37 -080088{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010089 struct pei_data pei_data_template = {
Edward O'Callaghan6cec8242014-05-24 04:16:57 +100090 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080091 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
92 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +100093 .epbar = DEFAULT_EPBAR,
94 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
95 .smbusbar = SMBUS_IO_BASE,
96 .wdbbar = 0x4000000,
97 .wdbsize = 0x1000,
98 .hpet_address = CONFIG_HPET_ADDRESS,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080099 .rcba = (uintptr_t)DEFAULT_RCBABASE,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000100 .pmbase = DEFAULT_PMBASE,
101 .gpiobase = DEFAULT_GPIOBASE,
102 .thermalbase = 0xfed08000,
103 .system_type = 0, // 0 Mobile, 1 Desktop/Server
104 .tseg_size = CONFIG_SMM_TSEG_SIZE,
105 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
106 .ec_present = 1,
107 .ddr3lv_support = 1,
Stefan Reinauer49428d82013-02-21 15:48:37 -0800108 // 0 = leave channel enabled
109 // 1 = disable dimm 0 on channel
110 // 2 = disable dimm 1 on channel
111 // 3 = disable dimm 0+1 on channel
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000112 .dimm_channel0_disabled = 2,
113 .dimm_channel1_disabled = 2,
114 .max_ddr3_freq = 1600,
115 .usb_port_config = {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800116 /* Empty and onboard Ports 0-7, set to un-used pin OC3 */
117 { 0, 3, 0x0000 }, /* P0: Empty */
118 { 1, 0, 0x0040 }, /* P1: Left USB 1 (OC0) */
119 { 1, 1, 0x0040 }, /* P2: Left USB 2 (OC1) */
120 { 1, 3, 0x0040 }, /* P3: SDCARD (no OC) */
121 { 0, 3, 0x0000 }, /* P4: Empty */
122 { 1, 3, 0x0040 }, /* P5: WWAN (no OC) */
123 { 0, 3, 0x0000 }, /* P6: Empty */
124 { 0, 3, 0x0000 }, /* P7: Empty */
125 /* Empty and onboard Ports 8-13, set to un-used pin OC4 */
126 { 1, 4, 0x0040 }, /* P8: Camera (no OC) */
127 { 1, 4, 0x0040 }, /* P9: Bluetooth (no OC) */
128 { 0, 4, 0x0000 }, /* P10: Empty */
129 { 0, 4, 0x0000 }, /* P11: Empty */
130 { 0, 4, 0x0000 }, /* P12: Empty */
131 { 0, 4, 0x0000 }, /* P13: Empty */
132 },
133 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100134 *pei_data = pei_data_template;
Matt DeVillier4af1fe22019-08-24 23:54:41 -0500135 /* LINK has 2 channels of memory down, so spd_data[0] and [2]
136 both need to be populated */
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100137 memcpy(pei_data->spd_data[0], locate_spd(),
138 sizeof(pei_data->spd_data[0]));
Matt DeVillier4af1fe22019-08-24 23:54:41 -0500139 memcpy(pei_data->spd_data[2], pei_data->spd_data[0],
140 sizeof(pei_data->spd_data[0]));
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100141}
142
143const struct southbridge_usb_port mainboard_usb_ports[] = {
Elyes HAOUAS44f558e2020-02-24 13:26:04 +0100144 /* enabled power USB oc pin */
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100145 { 0, 0, -1 }, /* P0: Empty */
146 { 1, 0, 0 }, /* P1: Left USB 1 (OC0) */
147 { 1, 0, 1 }, /* P2: Left USB 2 (OC1) */
148 { 1, 0, -1 }, /* P3: SDCARD (no OC) */
149 { 0, 0, -1 }, /* P4: Empty */
150 { 1, 0, -1 }, /* P5: WWAN (no OC) */
151 { 0, 0, -1 }, /* P6: Empty */
152 { 0, 0, -1 }, /* P7: Empty */
153 { 1, 0, -1 }, /* P8: Camera (no OC) */
154 { 1, 0, -1 }, /* P9: Bluetooth (no OC) */
155 { 0, 0, -1 }, /* P10: Empty */
156 { 0, 0, -1 }, /* P11: Empty */
157 { 0, 0, -1 }, /* P12: Empty */
158 { 0, 0, -1 }, /* P13: Empty */
159};
160
Peter Lemenkov498f1cc2019-02-07 10:48:10 +0100161void mainboard_get_spd(spd_raw_data *spd, bool id_only)
162{
Matt DeVillier4af1fe22019-08-24 23:54:41 -0500163 /* LINK has 2 channels of memory down, so spd_data[0] and [2]
164 both need to be populated */
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100165 memcpy(&spd[0], locate_spd(), 128);
Matt DeVillier4af1fe22019-08-24 23:54:41 -0500166 memcpy(&spd[2], &spd[0], 128);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100167}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800168
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100169void mainboard_early_init(int s3resume)
170{
171 if (!s3resume) {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800172 /* This is the fastest way to let users know
173 * the Intel CPU is now alive.
174 */
175 google_chromeec_kbbacklight(100);
176 }
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100177}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800178
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100179int mainboard_should_reset_usb(int s3resume)
180{
181 return !s3resume;
182}