blob: c5ba372cb30ba02621c6f723e87c06fbcba11755 [file] [log] [blame]
Angel Pons2e8a4b02020-04-05 13:22:54 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -07003
4#include <stdint.h>
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -07005#include <cpu/x86/lapic.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07006#include <acpi/acpi.h>
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -07007#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 Serbinenkof004b6b2016-02-10 02:42:16 +010010#include <northbridge/intel/sandybridge/raminit_native.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110011#include <southbridge/intel/bd82x6x/pch.h>
Patrick Rudolphe8e66f42016-02-06 17:42:42 +010012#include <southbridge/intel/common/gpio.h>
Kyösti Mälkki926a8d12014-04-27 22:17:22 +030013#include <bootmode.h>
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070014#include <ec/quanta/it8518/ec.h>
15#include "ec.h"
16#include "onboard.h"
17
Arthur Heymans9c538342019-11-12 16:42:33 +010018void mainboard_late_rcba_config(void)
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070019{
Kyösti Mälkki6f499062015-06-06 11:52:24 +030020 /*
21 * GFX INTA -> PIRQA (MSI)
22 * D20IP_XHCI XHCI INTA -> PIRQD (MSI)
23 * D26IP_E2P EHCI #2 INTA -> PIRQF
24 * D27IP_ZIP HDA INTA -> PIRQA (MSI)
25 * D28IP_P2IP WLAN INTA -> PIRQD
26 * D28IP_P3IP Card Reader INTB -> PIRQE
27 * D28IP_P6IP LAN INTC -> PIRQB
28 * D29IP_E1P EHCI #1 INTA -> PIRQD
29 * D31IP_SIP SATA INTA -> PIRQB (MSI)
30 * D31IP_SMIP SMBUS INTB -> PIRQH
31 */
32
33 /* Device interrupt pin register (board specific) */
34 RCBA32(D31IP) = (NOINT << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
35 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
36 RCBA32(D30IP) = (NOINT << D30IP_PIP);
37 RCBA32(D29IP) = (INTA << D29IP_E1P);
38 RCBA32(D28IP) = (NOINT << D28IP_P1IP) | (INTA << D28IP_P2IP) |
39 (INTB << D28IP_P3IP) | (NOINT << D28IP_P4IP) |
40 (NOINT << D28IP_P5IP) | (INTC << D28IP_P6IP) |
41 (NOINT << D28IP_P7IP) | (NOINT << D28IP_P8IP);
42 RCBA32(D27IP) = (INTA << D27IP_ZIP);
43 RCBA32(D26IP) = (INTA << D26IP_E2P);
44 RCBA32(D25IP) = (NOINT << D25IP_LIP);
45 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
46 RCBA32(D20IP) = (INTA << D20IP_XHCIIP);
47
48 /* Device interrupt route registers */
49 DIR_ROUTE(D31IR, PIRQB, PIRQH, PIRQA, PIRQC);
50 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
51 DIR_ROUTE(D28IR, PIRQD, PIRQE, PIRQB, PIRQC);
52 DIR_ROUTE(D27IR, PIRQA, PIRQB, PIRQC, PIRQD);
53 DIR_ROUTE(D26IR, PIRQF, PIRQB, PIRQC, PIRQD);
54 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
55 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
56 DIR_ROUTE(D20IR, PIRQD, PIRQE, PIRQF, PIRQG);
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070057}
58
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070059 /*
60 * The Stout EC needs to be reset to RW mode. It is important that
61 * the RTC_PWR_STS is not set until ramstage EC init.
62 */
63static void early_ec_init(void)
64{
65 u8 ec_status = ec_read(EC_STATUS_REG);
Furquan Shaikh0325dc62016-07-25 13:02:36 -070066 int rec_mode = get_recovery_mode_switch();
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070067
68 if (((ec_status & 0x3) == EC_IN_RO_MODE) ||
69 ((ec_status & 0x3) == EC_IN_RECOVERY_MODE)) {
70
71 printk(BIOS_DEBUG, "EC Cold Boot Detected\n");
72 if (!rec_mode) {
73 /*
74 * Tell EC to exit RO mode
75 */
76 printk(BIOS_DEBUG, "EC will exit RO mode and boot normally\n");
77 ec_write_cmd(EC_CMD_EXIT_BOOT_BLOCK);
78 die("wait for ec to reset");
79 }
80 } else {
81 printk(BIOS_DEBUG, "EC Warm Boot Detected\n");
82 ec_write_cmd(EC_CMD_WARM_RESET);
83 }
84}
85
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +020086void mainboard_get_spd(spd_raw_data *spd, bool id_only)
Vladimir Serbinenkof004b6b2016-02-10 02:42:16 +010087{
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +020088 read_spd(&spd[0], 0x50, id_only);
89 read_spd(&spd[2], 0x52, id_only);
Vladimir Serbinenkof004b6b2016-02-10 02:42:16 +010090}
91
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010092void mainboard_fill_pei_data(struct pei_data *pei_data)
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070093{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010094 struct pei_data pei_data_template = {
Edward O'Callaghan77896c12014-10-28 10:03:47 +110095 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080096 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
97 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghan77896c12014-10-28 10:03:47 +110098 .epbar = DEFAULT_EPBAR,
99 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
100 .smbusbar = SMBUS_IO_BASE,
101 .wdbbar = 0x4000000,
102 .wdbsize = 0x1000,
103 .hpet_address = CONFIG_HPET_ADDRESS,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800104 .rcba = (uintptr_t)DEFAULT_RCBABASE,
Edward O'Callaghan77896c12014-10-28 10:03:47 +1100105 .pmbase = DEFAULT_PMBASE,
106 .gpiobase = DEFAULT_GPIOBASE,
107 .thermalbase = 0xfed08000,
108 .system_type = 0, // 0 Mobile, 1 Desktop/Server
109 .tseg_size = CONFIG_SMM_TSEG_SIZE,
110 .spd_addresses = { 0xA0, 0x00,0xA4,0x00 },
111 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
112 .ec_present = 1,
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700113 // 0 = leave channel enabled
114 // 1 = disable dimm 0 on channel
115 // 2 = disable dimm 1 on channel
116 // 3 = disable dimm 0+1 on channel
Edward O'Callaghan77896c12014-10-28 10:03:47 +1100117 .dimm_channel0_disabled = 2,
118 .dimm_channel1_disabled = 2,
119 .max_ddr3_freq = 1600,
120 .usb_port_config = {
Elyes HAOUAS44f558e2020-02-24 13:26:04 +0100121 /* enabled USB oc pin length */
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700122 { 1, 0, 0x0040 }, /* P0: USB 3.0 1 (OC0) */
123 { 1, 0, 0x0040 }, /* P1: USB 3.0 2 (OC0) */
124 { 0, 1, 0x0000 }, /* P2: Empty */
125 { 1, 1, 0x0040 }, /* P3: Camera (no OC) */
126 { 1, 1, 0x0040 }, /* P4: WLAN (no OC) */
127 { 1, 1, 0x0040 }, /* P5: WWAN (no OC) */
128 { 0, 1, 0x0000 }, /* P6: Empty */
129 { 0, 1, 0x0000 }, /* P7: Empty */
130 { 0, 5, 0x0000 }, /* P8: Empty */
131 { 1, 4, 0x0040 }, /* P9: USB 2.0 (AUO4) (OC4) */
132 { 0, 5, 0x0000 }, /* P10: Empty */
133 { 0, 5, 0x0000 }, /* P11: Empty */
134 { 0, 5, 0x0000 }, /* P12: Empty */
135 { 1, 5, 0x0040 }, /* P13: Bluetooth (no OC) */
136 },
Edward O'Callaghan77896c12014-10-28 10:03:47 +1100137 .usb3 = {
138 .mode = XHCI_MODE,
139 .hs_port_switch_mask = XHCI_PORTS,
140 .preboot_support = XHCI_PREBOOT,
141 .xhci_streams = XHCI_STREAMS,
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700142 },
143 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100144 *pei_data = pei_data_template;
145}
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700146
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100147void mainboard_early_init(int s3resume)
148{
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700149 /* Do ec reset as early as possible, but skip it on S3 resume */
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100150 if (!s3resume) {
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700151 early_ec_init();
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700152 }
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100153}
Vladimir Serbinenkoc845b432014-09-05 03:37:44 +0200154
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100155int mainboard_should_reset_usb(int s3resume)
156{
157 return !s3resume;
158}
159
Vladimir Serbinenkof004b6b2016-02-10 02:42:16 +0100160const struct southbridge_usb_port mainboard_usb_ports[] = {
Elyes HAOUAS44f558e2020-02-24 13:26:04 +0100161 /* enabled USB oc pin length */
Elyes HAOUAS48a01292016-09-29 18:57:56 +0200162 {1, 0, 0}, /* P0: USB 3.0 1 (OC0) */
163 {1, 0, 0}, /* P1: USB 3.0 2 (OC0) */
164 {0, 0, 0}, /* P2: Empty */
165 {1, 0, -1}, /* P3: Camera (no OC) */
166 {1, 0, -1}, /* P4: WLAN (no OC) */
167 {1, 0, -1}, /* P5: WWAN (no OC) */
168 {0, 0, 0}, /* P6: Empty */
169 {0, 0, 0}, /* P7: Empty */
170 {0, 0, 0}, /* P8: Empty */
171 {1, 0, 4}, /* P9: USB 2.0 (AUO4) (OC4) */
172 {0, 0, 0}, /* P10: Empty */
173 {0, 0, 0}, /* P11: Empty */
174 {0, 0, 0}, /* P12: Empty */
175 {1, 0, -1}, /* P13: Bluetooth (no OC) */
Vladimir Serbinenkof004b6b2016-02-10 02:42:16 +0100176};