blob: beda8993dfc2ac0610b19c3b1df583b6586009e0 [file] [log] [blame]
Angel Ponsfeedf232020-04-05 13:22:01 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer49428d82013-02-21 15:48:37 -08002
3#include <stdint.h>
4#include <string.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07006#include <acpi/acpi.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -08007#include <console/console.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +11008#include <northbridge/intel/sandybridge/sandybridge.h>
9#include <northbridge/intel/sandybridge/raminit.h>
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010010#include <northbridge/intel/sandybridge/raminit_native.h>
Patrick Rudolphda9302a2019-03-24 17:01:41 +010011#include <southbridge/intel/bd82x6x/pch.h>
Patrick Rudolphe8e66f42016-02-06 17:42:42 +010012#include <southbridge/intel/common/gpio.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080013#include "ec/google/chromeec/ec.h"
Stefan Reinauer49428d82013-02-21 15:48:37 -080014#include <cbfs.h>
15
16#include <southbridge/intel/bd82x6x/chip.h>
17
Arthur Heymans2b28a162019-11-12 17:21:08 +010018void mainboard_pch_lpc_setup(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080019{
Nico Hubere036aae2019-11-17 01:24:44 +010020 /* Enable additional 0x200..0x207 for EC */
21 pci_or_config16(PCH_LPC_DEV, LPC_EN, GAMEL_LPC_EN);
Stefan Reinauer49428d82013-02-21 15:48:37 -080022}
23
Arthur Heymans9c538342019-11-12 16:42:33 +010024void mainboard_late_rcba_config(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080025{
Kyösti Mälkki6f499062015-06-06 11:52:24 +030026 /*
27 * GFX INTA -> PIRQA (MSI)
28 * D28IP_P3IP WLAN INTA -> PIRQB
29 * D29IP_E1P EHCI1 INTA -> PIRQD
30 * D26IP_E2P EHCI2 INTA -> PIRQF
31 * D31IP_SIP SATA INTA -> PIRQF (MSI)
32 * D31IP_SMIP SMBUS INTB -> PIRQH
33 * D31IP_TTIP THRT INTC -> PIRQA
34 * D27IP_ZIP HDA INTA -> PIRQA (MSI)
35 *
36 * TRACKPAD -> PIRQE (Edge Triggered)
37 * TOUCHSCREEN -> PIRQG (Edge Triggered)
38 */
39
40 /* Device interrupt pin register (board specific) */
41 RCBA32(D31IP) = (INTC << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
42 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
43 RCBA32(D30IP) = (NOINT << D30IP_PIP);
44 RCBA32(D29IP) = (INTA << D29IP_E1P);
45 RCBA32(D28IP) = (INTA << D28IP_P3IP);
46 RCBA32(D27IP) = (INTA << D27IP_ZIP);
47 RCBA32(D26IP) = (INTA << D26IP_E2P);
48 RCBA32(D25IP) = (NOINT << D25IP_LIP);
49 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
50
51 /* Device interrupt route registers */
52 DIR_ROUTE(D31IR, PIRQB, PIRQH, PIRQA, PIRQC);
53 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
54 DIR_ROUTE(D28IR, PIRQB, PIRQC, PIRQD, PIRQE);
55 DIR_ROUTE(D27IR, PIRQA, PIRQH, PIRQA, PIRQB);
56 DIR_ROUTE(D26IR, PIRQF, PIRQE, PIRQG, PIRQH);
57 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
58 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
Stefan Reinauer49428d82013-02-21 15:48:37 -080059}
60
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010061static uint8_t *locate_spd(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080062{
63 const int gpio_vector[] = {41, 42, 43, 10, -1};
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010064 uint8_t *spd_file;
Vladimir Serbinenko12874162014-01-12 14:12:15 +010065 size_t spd_file_len;
Stefan Reinauer49428d82013-02-21 15:48:37 -080066 int spd_index = get_gpios(gpio_vector);
67
68 printk(BIOS_DEBUG, "spd index %d\n", spd_index);
Aaron Durbin899d13d2015-05-15 23:39:23 -050069 spd_file = cbfs_boot_map_with_leak("spd.bin", CBFS_TYPE_SPD,
70 &spd_file_len);
Stefan Reinauer49428d82013-02-21 15:48:37 -080071 if (!spd_file)
72 die("SPD data not found.");
73
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010074 if (spd_file_len < ((spd_index + 1) * 256)) {
Stefan Reinauer49428d82013-02-21 15:48:37 -080075 printk(BIOS_ERR, "spd index override to 0 - old hardware?\n");
76 spd_index = 0;
77 }
78
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010079 if (spd_file_len < 256)
Stefan Reinauer49428d82013-02-21 15:48:37 -080080 die("Missing SPD data.");
81
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010082 return spd_file + spd_index * 256;
Stefan Reinauer49428d82013-02-21 15:48:37 -080083}
84
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010085void mainboard_fill_pei_data(struct pei_data *pei_data)
Stefan Reinauer49428d82013-02-21 15:48:37 -080086{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010087 struct pei_data pei_data_template = {
Edward O'Callaghan6cec8242014-05-24 04:16:57 +100088 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080089 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
90 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +100091 .epbar = DEFAULT_EPBAR,
92 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
Angel Ponsb21bffa2020-07-03 01:02:28 +020093 .smbusbar = CONFIG_FIXED_SMBUS_IO_BASE,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +100094 .wdbbar = 0x4000000,
95 .wdbsize = 0x1000,
96 .hpet_address = CONFIG_HPET_ADDRESS,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080097 .rcba = (uintptr_t)DEFAULT_RCBABASE,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +100098 .pmbase = DEFAULT_PMBASE,
99 .gpiobase = DEFAULT_GPIOBASE,
100 .thermalbase = 0xfed08000,
101 .system_type = 0, // 0 Mobile, 1 Desktop/Server
102 .tseg_size = CONFIG_SMM_TSEG_SIZE,
103 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
104 .ec_present = 1,
105 .ddr3lv_support = 1,
Stefan Reinauer49428d82013-02-21 15:48:37 -0800106 // 0 = leave channel enabled
107 // 1 = disable dimm 0 on channel
108 // 2 = disable dimm 1 on channel
109 // 3 = disable dimm 0+1 on channel
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000110 .dimm_channel0_disabled = 2,
111 .dimm_channel1_disabled = 2,
112 .max_ddr3_freq = 1600,
113 .usb_port_config = {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800114 /* Empty and onboard Ports 0-7, set to un-used pin OC3 */
115 { 0, 3, 0x0000 }, /* P0: Empty */
116 { 1, 0, 0x0040 }, /* P1: Left USB 1 (OC0) */
117 { 1, 1, 0x0040 }, /* P2: Left USB 2 (OC1) */
118 { 1, 3, 0x0040 }, /* P3: SDCARD (no OC) */
119 { 0, 3, 0x0000 }, /* P4: Empty */
120 { 1, 3, 0x0040 }, /* P5: WWAN (no OC) */
121 { 0, 3, 0x0000 }, /* P6: Empty */
122 { 0, 3, 0x0000 }, /* P7: Empty */
123 /* Empty and onboard Ports 8-13, set to un-used pin OC4 */
124 { 1, 4, 0x0040 }, /* P8: Camera (no OC) */
125 { 1, 4, 0x0040 }, /* P9: Bluetooth (no OC) */
126 { 0, 4, 0x0000 }, /* P10: Empty */
127 { 0, 4, 0x0000 }, /* P11: Empty */
128 { 0, 4, 0x0000 }, /* P12: Empty */
129 { 0, 4, 0x0000 }, /* P13: Empty */
130 },
131 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100132 *pei_data = pei_data_template;
Matt DeVillier4af1fe22019-08-24 23:54:41 -0500133 /* LINK has 2 channels of memory down, so spd_data[0] and [2]
134 both need to be populated */
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100135 memcpy(pei_data->spd_data[0], locate_spd(),
136 sizeof(pei_data->spd_data[0]));
Matt DeVillier4af1fe22019-08-24 23:54:41 -0500137 memcpy(pei_data->spd_data[2], pei_data->spd_data[0],
138 sizeof(pei_data->spd_data[0]));
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100139}
140
141const struct southbridge_usb_port mainboard_usb_ports[] = {
Elyes HAOUAS44f558e2020-02-24 13:26:04 +0100142 /* enabled power USB oc pin */
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100143 { 0, 0, -1 }, /* P0: Empty */
144 { 1, 0, 0 }, /* P1: Left USB 1 (OC0) */
145 { 1, 0, 1 }, /* P2: Left USB 2 (OC1) */
146 { 1, 0, -1 }, /* P3: SDCARD (no OC) */
147 { 0, 0, -1 }, /* P4: Empty */
148 { 1, 0, -1 }, /* P5: WWAN (no OC) */
149 { 0, 0, -1 }, /* P6: Empty */
150 { 0, 0, -1 }, /* P7: Empty */
151 { 1, 0, -1 }, /* P8: Camera (no OC) */
152 { 1, 0, -1 }, /* P9: Bluetooth (no OC) */
153 { 0, 0, -1 }, /* P10: Empty */
154 { 0, 0, -1 }, /* P11: Empty */
155 { 0, 0, -1 }, /* P12: Empty */
156 { 0, 0, -1 }, /* P13: Empty */
157};
158
Peter Lemenkov498f1cc2019-02-07 10:48:10 +0100159void mainboard_get_spd(spd_raw_data *spd, bool id_only)
160{
Matt DeVillier4af1fe22019-08-24 23:54:41 -0500161 /* LINK has 2 channels of memory down, so spd_data[0] and [2]
162 both need to be populated */
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100163 memcpy(&spd[0], locate_spd(), 128);
Matt DeVillier4af1fe22019-08-24 23:54:41 -0500164 memcpy(&spd[2], &spd[0], 128);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100165}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800166
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100167void mainboard_early_init(int s3resume)
168{
169 if (!s3resume) {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800170 /* This is the fastest way to let users know
171 * the Intel CPU is now alive.
172 */
173 google_chromeec_kbbacklight(100);
174 }
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100175}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800176
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100177int mainboard_should_reset_usb(int s3resume)
178{
179 return !s3resume;
180}