blob: 22dc33d0d9489955b7e610ac16718ea347161025 [file] [log] [blame]
Nico Huberefe1fed2013-04-29 18:00:57 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2010 coresystems GmbH
5 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <stdint.h>
22#include <string.h>
23#include <lib.h>
24#include <timestamp.h>
25#include <arch/io.h>
26#include <device/pci_def.h>
27#include <device/pnp_def.h>
28#include <cpu/x86/lapic.h>
29#include <pc80/mc146818rtc.h>
Kyösti Mälkki6722f8d2014-06-16 09:14:49 +030030#include <arch/acpi.h>
Nico Huberefe1fed2013-04-29 18:00:57 +020031#include <cbmem.h>
32#include <console/console.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110033#include <northbridge/intel/sandybridge/sandybridge.h>
34#include <northbridge/intel/sandybridge/raminit.h>
35#include <southbridge/intel/bd82x6x/pch.h>
36#include <southbridge/intel/bd82x6x/gpio.h>
Nico Huberefe1fed2013-04-29 18:00:57 +020037#include <arch/cpu.h>
38#include <cpu/x86/bist.h>
39#include <cpu/x86/msr.h>
Patrick Georgibd79c5e2014-11-28 22:35:36 +010040#include <halt.h>
Nico Huberefe1fed2013-04-29 18:00:57 +020041#include "gpio.h"
42
43static void pch_enable_lpc(void)
44{
45 /* Set COM3/COM1 decode ranges: 0x3e8/0x3f8 */
46 pci_write_config16(PCH_LPC_DEV, LPC_IO_DEC, 0x0070);
47
48 /* Enable KBC on 0x06/0x64 (KBC),
49 * EC on 0x62/0x66 (MC),
50 * EC on 0x20c-0x20f (GAMEH),
51 * Super I/O on 0x2e/0x2f (CNF1),
52 * COM1/COM3 decode ranges. */
53 pci_write_config16(PCH_LPC_DEV, LPC_EN,
54 KBC_LPC_EN | MC_LPC_EN |
55 CNF1_LPC_EN | GAMEH_LPC_EN |
56 COMA_LPC_EN | COMB_LPC_EN);
57}
58
59static void rcba_config(void)
60{
61 u32 reg32;
62
Vladimir Serbinenko33b535f2014-10-19 10:13:14 +020063 southbridge_configure_default_intmap();
Nico Huberefe1fed2013-04-29 18:00:57 +020064
65 /* Disable unused devices (board specific) */
66 reg32 = RCBA32(FD);
67 reg32 |= PCH_DISABLE_ALWAYS;
68 /* Disable PCI bridge so MRC does not probe this bus */
69 reg32 |= PCH_DISABLE_P2P;
70 RCBA32(FD) = reg32;
71}
72
73static void pnp_enter_ext_func_mode(device_t dev)
74{
75 u16 port = dev >> 8;
76 outb(0x87, port);
77 outb(0x87, port);
78}
79
80static void pnp_exit_ext_func_mode(device_t dev)
81{
82 u16 port = dev >> 8;
83 outb(0xaa, port);
84}
85
86static void superio_gpio_config(void)
87{
Nico Huber40f9ce92013-10-22 11:07:23 +020088 int lvds_3v = 0; // 0 (5V) or 1 (3V3)
89 int dis_bl_inv = 1; // backlight inversion: 1 = disabled, 0 = enabled
Nico Huberefe1fed2013-04-29 18:00:57 +020090 device_t dev = PNP_DEV(0x2e, 0x9);
91 pnp_enter_ext_func_mode(dev);
Nico Huber40f9ce92013-10-22 11:07:23 +020092 pnp_write_config(dev, 0x29, 0x02); /* Pins 119, 120 are GPIO21, 20 */
93 pnp_write_config(dev, 0x30, 0x03); /* Enable GPIO2+3 */
94 pnp_write_config(dev, 0x2a, 0x01); /* Pins 62, 63, 65, 66 are
95 GPIO27, 26, 25, 24 */
96 pnp_write_config(dev, 0x2c, 0xc3); /* Pin 90 is GPIO32,
97 Pins 78~85 are UART B */
98 pnp_write_config(dev, 0x2d, 0x00); /* Pins 67, 68, 70~73, 75, 77 are
99 GPIO57~50 */
Nico Huberefe1fed2013-04-29 18:00:57 +0200100 pnp_set_logical_device(dev);
101 /* Values can only be changed, when devices are enabled. */
Nico Huberefe1fed2013-04-29 18:00:57 +0200102 pnp_write_config(dev, 0xe3, 0xdd); /* GPIO2 bits 1, 5 are output */
Nico Huber40f9ce92013-10-22 11:07:23 +0200103 pnp_write_config(dev, 0xe4, (dis_bl_inv << 5) | (lvds_3v << 1)); /* GPIO2 bits 1, 5 */
Nico Huberefe1fed2013-04-29 18:00:57 +0200104 pnp_exit_ext_func_mode(dev);
105}
106
Aaron Durbina0a37272014-08-14 08:35:11 -0500107#include <cpu/intel/romstage.h>
Nico Huberefe1fed2013-04-29 18:00:57 +0200108void main(unsigned long bist)
109{
110 int boot_mode = 0;
111 int cbmem_was_initted;
Nico Huberefe1fed2013-04-29 18:00:57 +0200112
Nico Huberefe1fed2013-04-29 18:00:57 +0200113 struct pei_data pei_data = {
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000114 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800115 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
116 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000117 .epbar = DEFAULT_EPBAR,
118 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
119 .smbusbar = SMBUS_IO_BASE,
120 .wdbbar = 0x4000000,
121 .wdbsize = 0x1000,
122 .hpet_address = CONFIG_HPET_ADDRESS,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800123 .rcba = (uintptr_t)DEFAULT_RCBABASE,
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000124 .pmbase = DEFAULT_PMBASE,
125 .gpiobase = DEFAULT_GPIOBASE,
126 .thermalbase = 0xfed08000,
127 .system_type = 0, // 0 Mobile, 1 Desktop/Server
128 .tseg_size = CONFIG_SMM_TSEG_SIZE,
129 .spd_addresses = { 0xA0, 0x00,0xA4,0x00 },
130 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
131 .ec_present = 1,
132 .gbe_enable = 1,
133 .ddr3lv_support = 0,
Nico Huberefe1fed2013-04-29 18:00:57 +0200134 // 0 = leave channel enabled
135 // 1 = disable dimm 0 on channel
136 // 2 = disable dimm 1 on channel
137 // 3 = disable dimm 0+1 on channel
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000138 .dimm_channel0_disabled = 2,
139 .dimm_channel1_disabled = 2,
140 .max_ddr3_freq = 1600,
141 .usb_port_config = {
Nico Huberefe1fed2013-04-29 18:00:57 +0200142 /* enabled usb oc pin length */
143 { 1, 0, 0x0040 }, /* P0: lower left USB 3.0 (OC0) */
144 { 1, 0, 0x0040 }, /* P1: upper left USB 3.0 (OC0) */
145 { 1, 0, 0x0040 }, /* P2: lower right USB 3.0 (OC0) */
146 { 1, 0, 0x0040 }, /* P3: upper right USB 3.0 (OC0) */
147 { 1, 0, 0x0040 }, /* P4: lower USB 2.0 (OC0) */
148 { 1, 0, 0x0040 }, /* P5: upper USB 2.0 (OC0) */
149 { 1, 0, 0x0040 }, /* P6: front panel USB 2.0 (OC0) */
150 { 1, 0, 0x0040 }, /* P7: front panel USB 2.0 (OC0) */
151 { 1, 4, 0x0040 }, /* P8: internal USB 2.0 (OC4) */
152 { 1, 4, 0x0040 }, /* P9: internal USB 2.0 (OC4) */
153 { 1, 4, 0x0040 }, /* P10: internal USB 2.0 (OC4) */
154 { 1, 4, 0x0040 }, /* P11: internal USB 2.0 (OC4) */
155 { 1, 4, 0x0040 }, /* P12: internal USB 2.0 (OC4) */
156 { 1, 4, 0x0040 }, /* P13: internal USB 2.0 (OC4) */
157 },
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000158 .usb3 = {
159 .mode = 3, /* Smart Auto? */
160 .hs_port_switch_mask = 0xf, /* All four ports. */
161 .preboot_support = 1, /* preOS driver? */
162 .xhci_streams = 1, /* Enable. */
Nico Huberefe1fed2013-04-29 18:00:57 +0200163 },
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000164 .pcie_init = 1,
Nico Huberefe1fed2013-04-29 18:00:57 +0200165 };
166
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300167 timestamp_init(get_initial_timestamp());
168 timestamp_add_now(TS_START_ROMSTAGE);
Nico Huberefe1fed2013-04-29 18:00:57 +0200169
170 if (bist == 0)
171 enable_lapic();
172
173 pch_enable_lpc();
174
175 /* Enable GPIOs */
176 pci_write_config32(PCH_LPC_DEV, GPIO_BASE, DEFAULT_GPIOBASE|1);
177 pci_write_config8(PCH_LPC_DEV, GPIO_CNTL, 0x10);
178 setup_pch_gpios(&ktqm77_gpio_map);
179 superio_gpio_config();
180
181 /* Initialize console device(s) */
182 console_init();
183
184 /* Halt if there was a built in self test failure */
185 report_bist_failure(bist);
186
187 if (MCHBAR16(SSKPD) == 0xCAFE) {
188 printk(BIOS_DEBUG, "soft reset detected\n");
189 boot_mode = 1;
190
191 /* System is not happy after keyboard reset... */
192 printk(BIOS_DEBUG, "Issuing CF9 warm reset\n");
193 outb(0x6, 0xcf9);
Patrick Georgibd79c5e2014-11-28 22:35:36 +0100194 halt();
Nico Huberefe1fed2013-04-29 18:00:57 +0200195 }
196
197 /* Perform some early chipset initialization required
198 * before RAM initialization can work
199 */
200 sandybridge_early_initialization(SANDYBRIDGE_MOBILE);
201 printk(BIOS_DEBUG, "Back from sandybridge_early_initialization()\n");
202
203 /* Enable PEG10 (1x16) */
204 pci_write_config32(PCI_DEV(0, 0, 0), DEVEN,
205 pci_read_config32(PCI_DEV(0, 0, 0), DEVEN) |
206 DEVEN_PEG10);
207
Vladimir Serbinenko332f14b2014-09-05 16:29:41 +0200208 boot_mode = southbridge_detect_s3_resume() ? 2 : 0;
Nico Huberefe1fed2013-04-29 18:00:57 +0200209
210 post_code(0x38);
211 /* Enable SPD ROMs and DDR-III DRAM */
212 enable_smbus();
213
214 /* Prepare USB controller early in S3 resume */
215 if (boot_mode == 2)
216 enable_usb_bar();
217
218 post_code(0x39);
219
220 post_code(0x3a);
221 pei_data.boot_mode = boot_mode;
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300222 timestamp_add_now(TS_BEFORE_INITRAM);
Nico Huberefe1fed2013-04-29 18:00:57 +0200223 sdram_initialize(&pei_data);
224
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300225 timestamp_add_now(TS_AFTER_INITRAM);
Nico Huberefe1fed2013-04-29 18:00:57 +0200226 post_code(0x3c);
227
228 rcba_config();
229 post_code(0x3d);
230
231 quick_ram_check();
232 post_code(0x3e);
233
Kyösti Mälkki2d8520b2014-01-06 17:20:31 +0200234 cbmem_was_initted = !cbmem_recovery(boot_mode==2);
Kyösti Mälkki78938482014-01-04 11:02:45 +0200235 if (boot_mode!=2)
236 save_mrc_data(&pei_data);
Nico Huberefe1fed2013-04-29 18:00:57 +0200237
Vladimir Serbinenkoc845b432014-09-05 03:37:44 +0200238 if (boot_mode==2 && !cbmem_was_initted) {
Nico Huberefe1fed2013-04-29 18:00:57 +0200239 /* Failed S3 resume, reset to come up cleanly */
240 outb(0x6, 0xcf9);
Patrick Georgibd79c5e2014-11-28 22:35:36 +0100241 halt();
Nico Huberefe1fed2013-04-29 18:00:57 +0200242 }
Vladimir Serbinenkoc845b432014-09-05 03:37:44 +0200243 northbridge_romstage_finalize(boot_mode==2);
244
Nico Huberefe1fed2013-04-29 18:00:57 +0200245 post_code(0x3f);
Nico Huberefe1fed2013-04-29 18:00:57 +0200246 timestamp_add_now(TS_END_ROMSTAGE);
Nico Huberefe1fed2013-04-29 18:00:57 +0200247}