blob: 733aa301ef3727735f517c8b995d98363274465e [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>
Patrick Rudolphe8e66f42016-02-06 17:42:42 +010033#include <southbridge/intel/common/gpio.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080034#include "ec/google/chromeec/ec.h"
35#include <arch/cpu.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080036#include <cpu/x86/msr.h>
Patrick Georgibd79c5e2014-11-28 22:35:36 +010037#include <halt.h>
Vladimir Serbinenko0e90dae2015-05-18 10:29:06 +020038#include <tpm.h>
Stefan Reinauer49428d82013-02-21 15:48:37 -080039#include <cbfs.h>
40
41#include <southbridge/intel/bd82x6x/chip.h>
42
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010043void pch_enable_lpc(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080044{
45 const struct device *lpc;
46 const struct southbridge_intel_bd82x6x_config *config = NULL;
47
48 lpc = dev_find_slot(0, PCI_DEVFN(0x1f, 0));
49 if (!lpc)
50 return;
51 if (lpc->chip_info)
52 config = lpc->chip_info;
53 if (!config)
54 return;
55
56 /* Set COM1/COM2 decode range */
57 pci_write_config16(PCH_LPC_DEV, LPC_IO_DEC, 0x0010);
58
59 /* Enable PS/2 Keyboard/Mouse, EC areas and COM1 */
60 pci_write_config16(PCH_LPC_DEV, LPC_EN, KBC_LPC_EN | MC_LPC_EN | \
61 GAMEL_LPC_EN | COMA_LPC_EN);
62
63 pci_write_config32(PCH_LPC_DEV, LPC_GEN1_DEC, config->gen1_dec);
64 pci_write_config32(PCH_LPC_DEV, LPC_GEN2_DEC, config->gen2_dec);
65 pci_write_config32(PCH_LPC_DEV, LPC_GEN3_DEC, config->gen3_dec);
66 pci_write_config32(PCH_LPC_DEV, LPC_GEN4_DEC, config->gen4_dec);
67}
68
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010069void rcba_config(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -080070{
71 u32 reg32;
72
Kyösti Mälkki6f499062015-06-06 11:52:24 +030073 /*
74 * GFX INTA -> PIRQA (MSI)
75 * D28IP_P3IP WLAN INTA -> PIRQB
76 * D29IP_E1P EHCI1 INTA -> PIRQD
77 * D26IP_E2P EHCI2 INTA -> PIRQF
78 * D31IP_SIP SATA INTA -> PIRQF (MSI)
79 * D31IP_SMIP SMBUS INTB -> PIRQH
80 * D31IP_TTIP THRT INTC -> PIRQA
81 * D27IP_ZIP HDA INTA -> PIRQA (MSI)
82 *
83 * TRACKPAD -> PIRQE (Edge Triggered)
84 * TOUCHSCREEN -> PIRQG (Edge Triggered)
85 */
86
87 /* Device interrupt pin register (board specific) */
88 RCBA32(D31IP) = (INTC << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
89 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
90 RCBA32(D30IP) = (NOINT << D30IP_PIP);
91 RCBA32(D29IP) = (INTA << D29IP_E1P);
92 RCBA32(D28IP) = (INTA << D28IP_P3IP);
93 RCBA32(D27IP) = (INTA << D27IP_ZIP);
94 RCBA32(D26IP) = (INTA << D26IP_E2P);
95 RCBA32(D25IP) = (NOINT << D25IP_LIP);
96 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
97
98 /* Device interrupt route registers */
99 DIR_ROUTE(D31IR, PIRQB, PIRQH, PIRQA, PIRQC);
100 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
101 DIR_ROUTE(D28IR, PIRQB, PIRQC, PIRQD, PIRQE);
102 DIR_ROUTE(D27IR, PIRQA, PIRQH, PIRQA, PIRQB);
103 DIR_ROUTE(D26IR, PIRQF, PIRQE, PIRQG, PIRQH);
104 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
105 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
106
107 /* Enable IOAPIC (generic) */
108 RCBA16(OIC) = 0x0100;
109 /* PCH BWG says to read back the IOAPIC enable register */
110 (void) RCBA16(OIC);
Stefan Reinauer49428d82013-02-21 15:48:37 -0800111
112 /* Disable unused devices (board specific) */
113 reg32 = RCBA32(FD);
114 reg32 |= PCH_DISABLE_ALWAYS;
115 RCBA32(FD) = reg32;
116}
117
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100118static uint8_t *locate_spd(void)
Stefan Reinauer49428d82013-02-21 15:48:37 -0800119{
120 const int gpio_vector[] = {41, 42, 43, 10, -1};
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100121 uint8_t *spd_file;
Vladimir Serbinenko12874162014-01-12 14:12:15 +0100122 size_t spd_file_len;
Stefan Reinauer49428d82013-02-21 15:48:37 -0800123 int spd_index = get_gpios(gpio_vector);
124
125 printk(BIOS_DEBUG, "spd index %d\n", spd_index);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500126 spd_file = cbfs_boot_map_with_leak("spd.bin", CBFS_TYPE_SPD,
127 &spd_file_len);
Stefan Reinauer49428d82013-02-21 15:48:37 -0800128 if (!spd_file)
129 die("SPD data not found.");
130
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100131 if (spd_file_len < ((spd_index + 1) * 256)) {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800132 printk(BIOS_ERR, "spd index override to 0 - old hardware?\n");
133 spd_index = 0;
134 }
135
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100136 if (spd_file_len < 256)
Stefan Reinauer49428d82013-02-21 15:48:37 -0800137 die("Missing SPD data.");
138
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100139 return spd_file + spd_index * 256;
Stefan Reinauer49428d82013-02-21 15:48:37 -0800140}
141
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100142void mainboard_fill_pei_data(struct pei_data *pei_data)
Stefan Reinauer49428d82013-02-21 15:48:37 -0800143{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100144 struct pei_data pei_data_template = {
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000145 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800146 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
147 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000148 .epbar = DEFAULT_EPBAR,
149 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
150 .smbusbar = SMBUS_IO_BASE,
151 .wdbbar = 0x4000000,
152 .wdbsize = 0x1000,
153 .hpet_address = CONFIG_HPET_ADDRESS,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800154 .rcba = (uintptr_t)DEFAULT_RCBABASE,
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000155 .pmbase = DEFAULT_PMBASE,
156 .gpiobase = DEFAULT_GPIOBASE,
157 .thermalbase = 0xfed08000,
158 .system_type = 0, // 0 Mobile, 1 Desktop/Server
159 .tseg_size = CONFIG_SMM_TSEG_SIZE,
160 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
161 .ec_present = 1,
162 .ddr3lv_support = 1,
Stefan Reinauer49428d82013-02-21 15:48:37 -0800163 // 0 = leave channel enabled
164 // 1 = disable dimm 0 on channel
165 // 2 = disable dimm 1 on channel
166 // 3 = disable dimm 0+1 on channel
Edward O'Callaghan6cec8242014-05-24 04:16:57 +1000167 .dimm_channel0_disabled = 2,
168 .dimm_channel1_disabled = 2,
169 .max_ddr3_freq = 1600,
170 .usb_port_config = {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800171 /* Empty and onboard Ports 0-7, set to un-used pin OC3 */
172 { 0, 3, 0x0000 }, /* P0: Empty */
173 { 1, 0, 0x0040 }, /* P1: Left USB 1 (OC0) */
174 { 1, 1, 0x0040 }, /* P2: Left USB 2 (OC1) */
175 { 1, 3, 0x0040 }, /* P3: SDCARD (no OC) */
176 { 0, 3, 0x0000 }, /* P4: Empty */
177 { 1, 3, 0x0040 }, /* P5: WWAN (no OC) */
178 { 0, 3, 0x0000 }, /* P6: Empty */
179 { 0, 3, 0x0000 }, /* P7: Empty */
180 /* Empty and onboard Ports 8-13, set to un-used pin OC4 */
181 { 1, 4, 0x0040 }, /* P8: Camera (no OC) */
182 { 1, 4, 0x0040 }, /* P9: Bluetooth (no OC) */
183 { 0, 4, 0x0000 }, /* P10: Empty */
184 { 0, 4, 0x0000 }, /* P11: Empty */
185 { 0, 4, 0x0000 }, /* P12: Empty */
186 { 0, 4, 0x0000 }, /* P13: Empty */
187 },
188 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100189 *pei_data = pei_data_template;
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100190 memcpy(pei_data->spd_data[0], locate_spd(),
191 sizeof(pei_data->spd_data[0]));
192}
193
194const struct southbridge_usb_port mainboard_usb_ports[] = {
195 /* enabled power usb oc pin */
196 { 0, 0, -1 }, /* P0: Empty */
197 { 1, 0, 0 }, /* P1: Left USB 1 (OC0) */
198 { 1, 0, 1 }, /* P2: Left USB 2 (OC1) */
199 { 1, 0, -1 }, /* P3: SDCARD (no OC) */
200 { 0, 0, -1 }, /* P4: Empty */
201 { 1, 0, -1 }, /* P5: WWAN (no OC) */
202 { 0, 0, -1 }, /* P6: Empty */
203 { 0, 0, -1 }, /* P7: Empty */
204 { 1, 0, -1 }, /* P8: Camera (no OC) */
205 { 1, 0, -1 }, /* P9: Bluetooth (no OC) */
206 { 0, 0, -1 }, /* P10: Empty */
207 { 0, 0, -1 }, /* P11: Empty */
208 { 0, 0, -1 }, /* P12: Empty */
209 { 0, 0, -1 }, /* P13: Empty */
210};
211
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200212void mainboard_get_spd(spd_raw_data *spd, bool id_only) {
Vladimir Serbinenkob2ad8102016-02-10 03:07:42 +0100213 memcpy(&spd[0], locate_spd(), 128);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100214}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800215
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100216void mainboard_early_init(int s3resume)
217{
218 if (!s3resume) {
Stefan Reinauer49428d82013-02-21 15:48:37 -0800219 /* This is the fastest way to let users know
220 * the Intel CPU is now alive.
221 */
222 google_chromeec_kbbacklight(100);
223 }
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100224}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800225
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100226int mainboard_should_reset_usb(int s3resume)
227{
228 return !s3resume;
229}
Stefan Reinauer49428d82013-02-21 15:48:37 -0800230
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100231void mainboard_config_superio(void)
232{
Stefan Reinauer49428d82013-02-21 15:48:37 -0800233}