blob: 91f8297cca6becb98c92107810e756fb4bd8f421 [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>
Stefan Reinauer49428d82013-02-21 15:48:37 -080019#include <timestamp.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080020#include <arch/io.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080021#include <device/pci.h>
22#include <device/pci_def.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080023#include <cpu/x86/lapic.h>
Kyösti Mälkki6722f8d2014-06-16 09:14:49 +030024#include <arch/acpi.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080025#include <console/console.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110026#include <northbridge/intel/sandybridge/sandybridge.h>
27#include <northbridge/intel/sandybridge/raminit.h>
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010028#include <northbridge/intel/sandybridge/raminit_native.h>
Patrick Rudolphe8e66f42016-02-06 17:42:42 +010029#include <southbridge/intel/common/gpio.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080030#include "ec/google/chromeec/ec.h"
Patrick Georgibd79c5e2014-11-28 22:35:36 +010031#include <halt.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080032#include <cbfs.h>
33
34#include <southbridge/intel/bd82x6x/chip.h>
35
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010036void pch_enable_lpc(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080037{
38 const struct device *lpc;
39 const struct southbridge_intel_bd82x6x_config *config = NULL;
40
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030041 lpc = pcidev_on_root(0x1f, 0);
Stefan Reinauer49428d82013-02-21 15:48:37 -080042 if (!lpc)
43 return;
44 if (lpc->chip_info)
45 config = lpc->chip_info;
46 if (!config)
47 return;
48
49 /* Set COM1/COM2 decode range */
50 pci_write_config16(PCH_LPC_DEV, LPC_IO_DEC, 0x0010);
51
52 /* Enable PS/2 Keyboard/Mouse, EC areas and COM1 */
53 pci_write_config16(PCH_LPC_DEV, LPC_EN, KBC_LPC_EN | MC_LPC_EN | \
54 GAMEL_LPC_EN | COMA_LPC_EN);
55
56 pci_write_config32(PCH_LPC_DEV, LPC_GEN1_DEC, config->gen1_dec);
57 pci_write_config32(PCH_LPC_DEV, LPC_GEN2_DEC, config->gen2_dec);
58 pci_write_config32(PCH_LPC_DEV, LPC_GEN3_DEC, config->gen3_dec);
59 pci_write_config32(PCH_LPC_DEV, LPC_GEN4_DEC, config->gen4_dec);
60}
61
Nico Huberff4025c2018-01-14 12:34:43 +010062void mainboard_rcba_config(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080063{
Kyösti Mälkki6f499062015-06-06 11:52:24 +030064 /*
65 * GFX INTA -> PIRQA (MSI)
66 * D28IP_P3IP WLAN INTA -> PIRQB
67 * D29IP_E1P EHCI1 INTA -> PIRQD
68 * D26IP_E2P EHCI2 INTA -> PIRQF
69 * D31IP_SIP SATA INTA -> PIRQF (MSI)
70 * D31IP_SMIP SMBUS INTB -> PIRQH
71 * D31IP_TTIP THRT INTC -> PIRQA
72 * D27IP_ZIP HDA INTA -> PIRQA (MSI)
73 *
74 * TRACKPAD -> PIRQE (Edge Triggered)
75 * TOUCHSCREEN -> PIRQG (Edge Triggered)
76 */
77
78 /* Device interrupt pin register (board specific) */
79 RCBA32(D31IP) = (INTC << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
80 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
81 RCBA32(D30IP) = (NOINT << D30IP_PIP);
82 RCBA32(D29IP) = (INTA << D29IP_E1P);
83 RCBA32(D28IP) = (INTA << D28IP_P3IP);
84 RCBA32(D27IP) = (INTA << D27IP_ZIP);
85 RCBA32(D26IP) = (INTA << D26IP_E2P);
86 RCBA32(D25IP) = (NOINT << D25IP_LIP);
87 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
88
89 /* Device interrupt route registers */
90 DIR_ROUTE(D31IR, PIRQB, PIRQH, PIRQA, PIRQC);
91 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
92 DIR_ROUTE(D28IR, PIRQB, PIRQC, PIRQD, PIRQE);
93 DIR_ROUTE(D27IR, PIRQA, PIRQH, PIRQA, PIRQB);
94 DIR_ROUTE(D26IR, PIRQF, PIRQE, PIRQG, PIRQH);
95 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
96 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
97
98 /* Enable IOAPIC (generic) */
Arthur Heymans58a89532018-06-12 22:58:19 +020099 RCBA16(OIC) = 0x0100;
Kyösti Mälkki6f499062015-06-06 11:52:24 +0300100 /* PCH BWG says to read back the IOAPIC enable register */
Arthur Heymans58a89532018-06-12 22:58:19 +0200101 (void) RCBA16(OIC);
Stefan Reinauer49428d82013-02-21 15:48:37 -0800102}
103
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100104static uint8_t *locate_spd(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -0800105{
106 const int gpio_vector[] = {41, 42, 43, 10, -1};
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100107 uint8_t *spd_file;
Vladimir Serbinenko12874162014-01-12 14:12:15 +0100108 size_t spd_file_len;
Stefan Reinauer49428d82013-02-21 15:48:37 -0800109 int spd_index = get_gpios(gpio_vector);
110
111 printk(BIOS_DEBUG, "spd index %d\n", spd_index);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500112 spd_file = cbfs_boot_map_with_leak("spd.bin", CBFS_TYPE_SPD,
113 &spd_file_len);
Stefan Reinauer49428d82013-02-21 15:48:37 -0800114 if (!spd_file)
115 die("SPD data not found.");
116
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100117 if (spd_file_len < ((spd_index + 1) * 256)) {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800118 printk(BIOS_ERR, "spd index override to 0 - old hardware?\n");
119 spd_index = 0;
120 }
121
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100122 if (spd_file_len < 256)
Stefan Reinauer49428d82013-02-21 15:48:37 -0800123 die("Missing SPD data.");
124
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100125 return spd_file + spd_index * 256;
Stefan Reinauer49428d82013-02-21 15:48:37 -0800126}
127
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100128void mainboard_fill_pei_data(struct pei_data *pei_data)
Stefan Reinauer49428d82013-02-21 15:48:37 -0800129{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100130 struct pei_data pei_data_template = {
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000131 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800132 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
133 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000134 .epbar = DEFAULT_EPBAR,
135 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
136 .smbusbar = SMBUS_IO_BASE,
137 .wdbbar = 0x4000000,
138 .wdbsize = 0x1000,
139 .hpet_address = CONFIG_HPET_ADDRESS,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800140 .rcba = (uintptr_t)DEFAULT_RCBABASE,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000141 .pmbase = DEFAULT_PMBASE,
142 .gpiobase = DEFAULT_GPIOBASE,
143 .thermalbase = 0xfed08000,
144 .system_type = 0, // 0 Mobile, 1 Desktop/Server
145 .tseg_size = CONFIG_SMM_TSEG_SIZE,
146 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
147 .ec_present = 1,
148 .ddr3lv_support = 1,
Stefan Reinauer49428d82013-02-21 15:48:37 -0800149 // 0 = leave channel enabled
150 // 1 = disable dimm 0 on channel
151 // 2 = disable dimm 1 on channel
152 // 3 = disable dimm 0+1 on channel
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000153 .dimm_channel0_disabled = 2,
154 .dimm_channel1_disabled = 2,
155 .max_ddr3_freq = 1600,
156 .usb_port_config = {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800157 /* Empty and onboard Ports 0-7, set to un-used pin OC3 */
158 { 0, 3, 0x0000 }, /* P0: Empty */
159 { 1, 0, 0x0040 }, /* P1: Left USB 1 (OC0) */
160 { 1, 1, 0x0040 }, /* P2: Left USB 2 (OC1) */
161 { 1, 3, 0x0040 }, /* P3: SDCARD (no OC) */
162 { 0, 3, 0x0000 }, /* P4: Empty */
163 { 1, 3, 0x0040 }, /* P5: WWAN (no OC) */
164 { 0, 3, 0x0000 }, /* P6: Empty */
165 { 0, 3, 0x0000 }, /* P7: Empty */
166 /* Empty and onboard Ports 8-13, set to un-used pin OC4 */
167 { 1, 4, 0x0040 }, /* P8: Camera (no OC) */
168 { 1, 4, 0x0040 }, /* P9: Bluetooth (no OC) */
169 { 0, 4, 0x0000 }, /* P10: Empty */
170 { 0, 4, 0x0000 }, /* P11: Empty */
171 { 0, 4, 0x0000 }, /* P12: Empty */
172 { 0, 4, 0x0000 }, /* P13: Empty */
173 },
174 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100175 *pei_data = pei_data_template;
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100176 memcpy(pei_data->spd_data[0], locate_spd(),
177 sizeof(pei_data->spd_data[0]));
178}
179
180const struct southbridge_usb_port mainboard_usb_ports[] = {
181 /* enabled power usb oc pin */
182 { 0, 0, -1 }, /* P0: Empty */
183 { 1, 0, 0 }, /* P1: Left USB 1 (OC0) */
184 { 1, 0, 1 }, /* P2: Left USB 2 (OC1) */
185 { 1, 0, -1 }, /* P3: SDCARD (no OC) */
186 { 0, 0, -1 }, /* P4: Empty */
187 { 1, 0, -1 }, /* P5: WWAN (no OC) */
188 { 0, 0, -1 }, /* P6: Empty */
189 { 0, 0, -1 }, /* P7: Empty */
190 { 1, 0, -1 }, /* P8: Camera (no OC) */
191 { 1, 0, -1 }, /* P9: Bluetooth (no OC) */
192 { 0, 0, -1 }, /* P10: Empty */
193 { 0, 0, -1 }, /* P11: Empty */
194 { 0, 0, -1 }, /* P12: Empty */
195 { 0, 0, -1 }, /* P13: Empty */
196};
197
Peter Lemenkov498f1cc2019-02-07 10:48:10 +0100198void mainboard_get_spd(spd_raw_data *spd, bool id_only)
199{
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100200 memcpy(&spd[0], locate_spd(), 128);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100201}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800202
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100203void mainboard_early_init(int s3resume)
204{
205 if (!s3resume) {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800206 /* This is the fastest way to let users know
207 * the Intel CPU is now alive.
208 */
209 google_chromeec_kbbacklight(100);
210 }
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100211}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800212
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100213int mainboard_should_reset_usb(int s3resume)
214{
215 return !s3resume;
216}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800217
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100218void mainboard_config_superio(void)
219{
Stefan Reinauer49428d82013-02-21 15:48:37 -0800220}