blob: 22b40a0f503eb5e98793665d06afcaca6bf3d5d3 [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>
19#include <lib.h>
20#include <timestamp.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080021#include <arch/io.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080022#include <device/pci.h>
23#include <device/pci_def.h>
24#include <device/pnp_def.h>
25#include <cpu/x86/lapic.h>
26#include <pc80/mc146818rtc.h>
Kyösti Mälkki6722f8d2014-06-16 09:14:49 +030027#include <arch/acpi.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080028#include <cbmem.h>
29#include <console/console.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110030#include <northbridge/intel/sandybridge/sandybridge.h>
31#include <northbridge/intel/sandybridge/raminit.h>
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +010032#include <northbridge/intel/sandybridge/raminit_native.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110033#include <southbridge/intel/bd82x6x/gpio.h>
Vladimir Serbinenko613d3ad2016-02-10 01:43:08 +010034#include <southbridge/intel/bd82x6x/pch.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080035#include "ec/google/chromeec/ec.h"
36#include <arch/cpu.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080037#include <cpu/x86/msr.h>
Patrick Georgibd79c5e2014-11-28 22:35:36 +010038#include <halt.h>
Vladimir Serbinenko0e90dae2015-05-18 10:29:06 +020039#include <tpm.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080040#include <cbfs.h>
41
42#include <southbridge/intel/bd82x6x/chip.h>
43
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010044void pch_enable_lpc(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080045{
46 const struct device *lpc;
47 const struct southbridge_intel_bd82x6x_config *config = NULL;
48
49 lpc = dev_find_slot(0, PCI_DEVFN(0x1f, 0));
50 if (!lpc)
51 return;
52 if (lpc->chip_info)
53 config = lpc->chip_info;
54 if (!config)
55 return;
56
57 /* Set COM1/COM2 decode range */
58 pci_write_config16(PCH_LPC_DEV, LPC_IO_DEC, 0x0010);
59
60 /* Enable PS/2 Keyboard/Mouse, EC areas and COM1 */
61 pci_write_config16(PCH_LPC_DEV, LPC_EN, KBC_LPC_EN | MC_LPC_EN | \
62 GAMEL_LPC_EN | COMA_LPC_EN);
63
64 pci_write_config32(PCH_LPC_DEV, LPC_GEN1_DEC, config->gen1_dec);
65 pci_write_config32(PCH_LPC_DEV, LPC_GEN2_DEC, config->gen2_dec);
66 pci_write_config32(PCH_LPC_DEV, LPC_GEN3_DEC, config->gen3_dec);
67 pci_write_config32(PCH_LPC_DEV, LPC_GEN4_DEC, config->gen4_dec);
68}
69
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010070void rcba_config(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080071{
72 u32 reg32;
73
Kyösti Mälkki6f499062015-06-06 11:52:24 +030074 /*
75 * GFX INTA -> PIRQA (MSI)
76 * D28IP_P3IP WLAN INTA -> PIRQB
77 * D29IP_E1P EHCI1 INTA -> PIRQD
78 * D26IP_E2P EHCI2 INTA -> PIRQF
79 * D31IP_SIP SATA INTA -> PIRQF (MSI)
80 * D31IP_SMIP SMBUS INTB -> PIRQH
81 * D31IP_TTIP THRT INTC -> PIRQA
82 * D27IP_ZIP HDA INTA -> PIRQA (MSI)
83 *
84 * TRACKPAD -> PIRQE (Edge Triggered)
85 * TOUCHSCREEN -> PIRQG (Edge Triggered)
86 */
87
88 /* Device interrupt pin register (board specific) */
89 RCBA32(D31IP) = (INTC << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
90 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
91 RCBA32(D30IP) = (NOINT << D30IP_PIP);
92 RCBA32(D29IP) = (INTA << D29IP_E1P);
93 RCBA32(D28IP) = (INTA << D28IP_P3IP);
94 RCBA32(D27IP) = (INTA << D27IP_ZIP);
95 RCBA32(D26IP) = (INTA << D26IP_E2P);
96 RCBA32(D25IP) = (NOINT << D25IP_LIP);
97 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
98
99 /* Device interrupt route registers */
100 DIR_ROUTE(D31IR, PIRQB, PIRQH, PIRQA, PIRQC);
101 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
102 DIR_ROUTE(D28IR, PIRQB, PIRQC, PIRQD, PIRQE);
103 DIR_ROUTE(D27IR, PIRQA, PIRQH, PIRQA, PIRQB);
104 DIR_ROUTE(D26IR, PIRQF, PIRQE, PIRQG, PIRQH);
105 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
106 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
107
108 /* Enable IOAPIC (generic) */
109 RCBA16(OIC) = 0x0100;
110 /* PCH BWG says to read back the IOAPIC enable register */
111 (void) RCBA16(OIC);
Stefan Reinauer49428d82013-02-21 15:48:37 -0800112
113 /* Disable unused devices (board specific) */
114 reg32 = RCBA32(FD);
115 reg32 |= PCH_DISABLE_ALWAYS;
116 RCBA32(FD) = reg32;
117}
118
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100119static uint8_t *locate_spd(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -0800120{
121 const int gpio_vector[] = {41, 42, 43, 10, -1};
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100122 uint8_t *spd_file;
Vladimir Serbinenko12874162014-01-12 14:12:15 +0100123 size_t spd_file_len;
Stefan Reinauer49428d82013-02-21 15:48:37 -0800124 int spd_index = get_gpios(gpio_vector);
125
126 printk(BIOS_DEBUG, "spd index %d\n", spd_index);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500127 spd_file = cbfs_boot_map_with_leak("spd.bin", CBFS_TYPE_SPD,
128 &spd_file_len);
Stefan Reinauer49428d82013-02-21 15:48:37 -0800129 if (!spd_file)
130 die("SPD data not found.");
131
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100132 if (spd_file_len < ((spd_index + 1) * 256)) {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800133 printk(BIOS_ERR, "spd index override to 0 - old hardware?\n");
134 spd_index = 0;
135 }
136
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100137 if (spd_file_len < 256)
Stefan Reinauer49428d82013-02-21 15:48:37 -0800138 die("Missing SPD data.");
139
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100140 return spd_file + spd_index * 256;
Stefan Reinauer49428d82013-02-21 15:48:37 -0800141}
142
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100143void mainboard_fill_pei_data(struct pei_data *pei_data)
Stefan Reinauer49428d82013-02-21 15:48:37 -0800144{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100145 struct pei_data pei_data_template = {
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000146 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800147 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
148 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000149 .epbar = DEFAULT_EPBAR,
150 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
151 .smbusbar = SMBUS_IO_BASE,
152 .wdbbar = 0x4000000,
153 .wdbsize = 0x1000,
154 .hpet_address = CONFIG_HPET_ADDRESS,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800155 .rcba = (uintptr_t)DEFAULT_RCBABASE,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000156 .pmbase = DEFAULT_PMBASE,
157 .gpiobase = DEFAULT_GPIOBASE,
158 .thermalbase = 0xfed08000,
159 .system_type = 0, // 0 Mobile, 1 Desktop/Server
160 .tseg_size = CONFIG_SMM_TSEG_SIZE,
161 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
162 .ec_present = 1,
163 .ddr3lv_support = 1,
Stefan Reinauer49428d82013-02-21 15:48:37 -0800164 // 0 = leave channel enabled
165 // 1 = disable dimm 0 on channel
166 // 2 = disable dimm 1 on channel
167 // 3 = disable dimm 0+1 on channel
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000168 .dimm_channel0_disabled = 2,
169 .dimm_channel1_disabled = 2,
170 .max_ddr3_freq = 1600,
171 .usb_port_config = {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800172 /* Empty and onboard Ports 0-7, set to un-used pin OC3 */
173 { 0, 3, 0x0000 }, /* P0: Empty */
174 { 1, 0, 0x0040 }, /* P1: Left USB 1 (OC0) */
175 { 1, 1, 0x0040 }, /* P2: Left USB 2 (OC1) */
176 { 1, 3, 0x0040 }, /* P3: SDCARD (no OC) */
177 { 0, 3, 0x0000 }, /* P4: Empty */
178 { 1, 3, 0x0040 }, /* P5: WWAN (no OC) */
179 { 0, 3, 0x0000 }, /* P6: Empty */
180 { 0, 3, 0x0000 }, /* P7: Empty */
181 /* Empty and onboard Ports 8-13, set to un-used pin OC4 */
182 { 1, 4, 0x0040 }, /* P8: Camera (no OC) */
183 { 1, 4, 0x0040 }, /* P9: Bluetooth (no OC) */
184 { 0, 4, 0x0000 }, /* P10: Empty */
185 { 0, 4, 0x0000 }, /* P11: Empty */
186 { 0, 4, 0x0000 }, /* P12: Empty */
187 { 0, 4, 0x0000 }, /* P13: Empty */
188 },
189 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100190 *pei_data = pei_data_template;
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100191 memcpy(pei_data->spd_data[0], locate_spd(),
192 sizeof(pei_data->spd_data[0]));
193}
194
195const struct southbridge_usb_port mainboard_usb_ports[] = {
196 /* enabled power usb oc pin */
197 { 0, 0, -1 }, /* P0: Empty */
198 { 1, 0, 0 }, /* P1: Left USB 1 (OC0) */
199 { 1, 0, 1 }, /* P2: Left USB 2 (OC1) */
200 { 1, 0, -1 }, /* P3: SDCARD (no OC) */
201 { 0, 0, -1 }, /* P4: Empty */
202 { 1, 0, -1 }, /* P5: WWAN (no OC) */
203 { 0, 0, -1 }, /* P6: Empty */
204 { 0, 0, -1 }, /* P7: Empty */
205 { 1, 0, -1 }, /* P8: Camera (no OC) */
206 { 1, 0, -1 }, /* P9: Bluetooth (no OC) */
207 { 0, 0, -1 }, /* P10: Empty */
208 { 0, 0, -1 }, /* P11: Empty */
209 { 0, 0, -1 }, /* P12: Empty */
210 { 0, 0, -1 }, /* P13: Empty */
211};
212
213void mainboard_get_spd(spd_raw_data *spd) {
214 memcpy(&spd[0], locate_spd(), 128);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100215}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800216
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100217void mainboard_early_init(int s3resume)
218{
219 if (!s3resume) {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800220 /* This is the fastest way to let users know
221 * the Intel CPU is now alive.
222 */
223 google_chromeec_kbbacklight(100);
224 }
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100225}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800226
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100227int mainboard_should_reset_usb(int s3resume)
228{
229 return !s3resume;
230}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800231
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100232void mainboard_config_superio(void)
233{
Stefan Reinauer49428d82013-02-21 15:48:37 -0800234}