blob: e08da8d6327b14f952bd544425b2c5c2a93769b7 [file] [log] [blame]
Angel Pons2e8a4b02020-04-05 13:22:54 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -07002
3#include <stdint.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07004#include <acpi/acpi.h>
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -07005#include <console/console.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +11006#include <northbridge/intel/sandybridge/sandybridge.h>
7#include <northbridge/intel/sandybridge/raminit.h>
Vladimir Serbinenkof004b6b2016-02-10 02:42:16 +01008#include <northbridge/intel/sandybridge/raminit_native.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +11009#include <southbridge/intel/bd82x6x/pch.h>
Patrick Rudolphe8e66f42016-02-06 17:42:42 +010010#include <southbridge/intel/common/gpio.h>
Kyösti Mälkki926a8d12014-04-27 22:17:22 +030011#include <bootmode.h>
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070012#include <ec/quanta/it8518/ec.h>
13#include "ec.h"
14#include "onboard.h"
15
Arthur Heymans9c538342019-11-12 16:42:33 +010016void mainboard_late_rcba_config(void)
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070017{
Kyösti Mälkki6f499062015-06-06 11:52:24 +030018 /*
19 * GFX INTA -> PIRQA (MSI)
20 * D20IP_XHCI XHCI INTA -> PIRQD (MSI)
21 * D26IP_E2P EHCI #2 INTA -> PIRQF
22 * D27IP_ZIP HDA INTA -> PIRQA (MSI)
23 * D28IP_P2IP WLAN INTA -> PIRQD
24 * D28IP_P3IP Card Reader INTB -> PIRQE
25 * D28IP_P6IP LAN INTC -> PIRQB
26 * D29IP_E1P EHCI #1 INTA -> PIRQD
27 * D31IP_SIP SATA INTA -> PIRQB (MSI)
28 * D31IP_SMIP SMBUS INTB -> PIRQH
29 */
30
31 /* Device interrupt pin register (board specific) */
32 RCBA32(D31IP) = (NOINT << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
33 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
34 RCBA32(D30IP) = (NOINT << D30IP_PIP);
35 RCBA32(D29IP) = (INTA << D29IP_E1P);
36 RCBA32(D28IP) = (NOINT << D28IP_P1IP) | (INTA << D28IP_P2IP) |
37 (INTB << D28IP_P3IP) | (NOINT << D28IP_P4IP) |
38 (NOINT << D28IP_P5IP) | (INTC << D28IP_P6IP) |
39 (NOINT << D28IP_P7IP) | (NOINT << D28IP_P8IP);
40 RCBA32(D27IP) = (INTA << D27IP_ZIP);
41 RCBA32(D26IP) = (INTA << D26IP_E2P);
42 RCBA32(D25IP) = (NOINT << D25IP_LIP);
43 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
44 RCBA32(D20IP) = (INTA << D20IP_XHCIIP);
45
46 /* Device interrupt route registers */
47 DIR_ROUTE(D31IR, PIRQB, PIRQH, PIRQA, PIRQC);
48 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
49 DIR_ROUTE(D28IR, PIRQD, PIRQE, PIRQB, PIRQC);
50 DIR_ROUTE(D27IR, PIRQA, PIRQB, PIRQC, PIRQD);
51 DIR_ROUTE(D26IR, PIRQF, PIRQB, PIRQC, PIRQD);
52 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
53 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
54 DIR_ROUTE(D20IR, PIRQD, PIRQE, PIRQF, PIRQG);
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070055}
56
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070057 /*
58 * The Stout EC needs to be reset to RW mode. It is important that
59 * the RTC_PWR_STS is not set until ramstage EC init.
60 */
61static void early_ec_init(void)
62{
63 u8 ec_status = ec_read(EC_STATUS_REG);
Furquan Shaikh0325dc62016-07-25 13:02:36 -070064 int rec_mode = get_recovery_mode_switch();
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070065
66 if (((ec_status & 0x3) == EC_IN_RO_MODE) ||
67 ((ec_status & 0x3) == EC_IN_RECOVERY_MODE)) {
68
69 printk(BIOS_DEBUG, "EC Cold Boot Detected\n");
70 if (!rec_mode) {
71 /*
72 * Tell EC to exit RO mode
73 */
74 printk(BIOS_DEBUG, "EC will exit RO mode and boot normally\n");
75 ec_write_cmd(EC_CMD_EXIT_BOOT_BLOCK);
76 die("wait for ec to reset");
77 }
78 } else {
79 printk(BIOS_DEBUG, "EC Warm Boot Detected\n");
80 ec_write_cmd(EC_CMD_WARM_RESET);
81 }
82}
83
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +020084void mainboard_get_spd(spd_raw_data *spd, bool id_only)
Vladimir Serbinenkof004b6b2016-02-10 02:42:16 +010085{
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +020086 read_spd(&spd[0], 0x50, id_only);
87 read_spd(&spd[2], 0x52, id_only);
Vladimir Serbinenkof004b6b2016-02-10 02:42:16 +010088}
89
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010090void mainboard_fill_pei_data(struct pei_data *pei_data)
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070091{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010092 struct pei_data pei_data_template = {
Edward O'Callaghan77896c12014-10-28 10:03:47 +110093 .pei_version = PEI_VERSION,
Angel Ponsd9e58dc2021-01-20 01:22:20 +010094 .mchbar = CONFIG_FIXED_MCHBAR_MMIO_BASE,
95 .dmibar = CONFIG_FIXED_DMIBAR_MMIO_BASE,
96 .epbar = CONFIG_FIXED_EPBAR_MMIO_BASE,
Shelley Chen4e9bb332021-10-20 15:43:45 -070097 .pciexbar = CONFIG_ECAM_MMCONF_BASE_ADDRESS,
Angel Ponsb21bffa2020-07-03 01:02:28 +020098 .smbusbar = CONFIG_FIXED_SMBUS_IO_BASE,
Edward O'Callaghan77896c12014-10-28 10:03:47 +110099 .wdbbar = 0x4000000,
100 .wdbsize = 0x1000,
101 .hpet_address = CONFIG_HPET_ADDRESS,
Angel Pons92717ff2020-09-14 16:22:22 +0200102 .rcba = (uintptr_t)DEFAULT_RCBA,
Edward O'Callaghan77896c12014-10-28 10:03:47 +1100103 .pmbase = DEFAULT_PMBASE,
104 .gpiobase = DEFAULT_GPIOBASE,
105 .thermalbase = 0xfed08000,
106 .system_type = 0, // 0 Mobile, 1 Desktop/Server
107 .tseg_size = CONFIG_SMM_TSEG_SIZE,
108 .spd_addresses = { 0xA0, 0x00,0xA4,0x00 },
109 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
110 .ec_present = 1,
Edward O'Callaghan77896c12014-10-28 10:03:47 +1100111 .max_ddr3_freq = 1600,
112 .usb_port_config = {
Elyes HAOUAS44f558e2020-02-24 13:26:04 +0100113 /* enabled USB oc pin length */
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700114 { 1, 0, 0x0040 }, /* P0: USB 3.0 1 (OC0) */
115 { 1, 0, 0x0040 }, /* P1: USB 3.0 2 (OC0) */
116 { 0, 1, 0x0000 }, /* P2: Empty */
117 { 1, 1, 0x0040 }, /* P3: Camera (no OC) */
118 { 1, 1, 0x0040 }, /* P4: WLAN (no OC) */
119 { 1, 1, 0x0040 }, /* P5: WWAN (no OC) */
120 { 0, 1, 0x0000 }, /* P6: Empty */
121 { 0, 1, 0x0000 }, /* P7: Empty */
122 { 0, 5, 0x0000 }, /* P8: Empty */
123 { 1, 4, 0x0040 }, /* P9: USB 2.0 (AUO4) (OC4) */
124 { 0, 5, 0x0000 }, /* P10: Empty */
125 { 0, 5, 0x0000 }, /* P11: Empty */
126 { 0, 5, 0x0000 }, /* P12: Empty */
127 { 1, 5, 0x0040 }, /* P13: Bluetooth (no OC) */
128 },
Edward O'Callaghan77896c12014-10-28 10:03:47 +1100129 .usb3 = {
130 .mode = XHCI_MODE,
131 .hs_port_switch_mask = XHCI_PORTS,
132 .preboot_support = XHCI_PREBOOT,
133 .xhci_streams = XHCI_STREAMS,
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700134 },
135 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100136 *pei_data = pei_data_template;
137}
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700138
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100139void mainboard_early_init(int s3resume)
140{
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700141 /* Do ec reset as early as possible, but skip it on S3 resume */
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100142 if (!s3resume) {
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700143 early_ec_init();
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -0700144 }
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100145}
Vladimir Serbinenkoc845b432014-09-05 03:37:44 +0200146
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100147int mainboard_should_reset_usb(int s3resume)
148{
149 return !s3resume;
150}
151
Vladimir Serbinenkof004b6b2016-02-10 02:42:16 +0100152const struct southbridge_usb_port mainboard_usb_ports[] = {
Elyes HAOUAS44f558e2020-02-24 13:26:04 +0100153 /* enabled USB oc pin length */
Elyes HAOUAS48a01292016-09-29 18:57:56 +0200154 {1, 0, 0}, /* P0: USB 3.0 1 (OC0) */
155 {1, 0, 0}, /* P1: USB 3.0 2 (OC0) */
156 {0, 0, 0}, /* P2: Empty */
157 {1, 0, -1}, /* P3: Camera (no OC) */
158 {1, 0, -1}, /* P4: WLAN (no OC) */
159 {1, 0, -1}, /* P5: WWAN (no OC) */
160 {0, 0, 0}, /* P6: Empty */
161 {0, 0, 0}, /* P7: Empty */
162 {0, 0, 0}, /* P8: Empty */
163 {1, 0, 4}, /* P9: USB 2.0 (AUO4) (OC4) */
164 {0, 0, 0}, /* P10: Empty */
165 {0, 0, 0}, /* P11: Empty */
166 {0, 0, 0}, /* P12: Empty */
167 {1, 0, -1}, /* P13: Bluetooth (no OC) */
Vladimir Serbinenkof004b6b2016-02-10 02:42:16 +0100168};