blob: 1462132eba2063fb85bf8a03cc7e2fe7261721b3 [file] [log] [blame]
Stefan Reinauere1ae4b22012-04-27 23:20:58 +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>
Hung-Te Line29e2ff2013-01-18 16:50:25 +080025#include <arch/byteorder.h>
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020026#include <arch/io.h>
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020027#include <device/pci_def.h>
28#include <device/pnp_def.h>
29#include <cpu/x86/lapic.h>
30#include <pc80/mc146818rtc.h>
Kyösti Mälkki6722f8d2014-06-16 09:14:49 +030031#include <arch/acpi.h>
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020032#include <cbmem.h>
33#include <console/console.h>
Kyösti Mälkkie3ddee02014-05-03 10:45:28 +030034#include <bootmode.h>
Edward O'Callaghan1b3acb12014-06-01 18:04:05 +100035#include <superio/ite/common/ite.h>
36#include <superio/ite/it8772f/it8772f.h>
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020037#include "northbridge/intel/sandybridge/sandybridge.h"
38#include "northbridge/intel/sandybridge/raminit.h"
39#include "southbridge/intel/bd82x6x/pch.h"
40#include "southbridge/intel/bd82x6x/gpio.h"
41#include <arch/cpu.h>
42#include <cpu/x86/bist.h>
43#include <cpu/x86/msr.h>
Patrick Georgibd79c5e2014-11-28 22:35:36 +010044#include <halt.h>
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020045#include "gpio.h"
Kyösti Mälkkiafa7b132014-02-13 17:16:22 +020046#if CONFIG_DRIVERS_UART_8250IO
Edward O'Callaghan74834e02015-01-04 04:17:35 +110047#include <superio/smsc/lpc47n207/lpc47n207.h>
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020048#include "superio/smsc/lpc47n207/early_serial.c"
49#endif
50#if CONFIG_CHROMEOS
51#include <vendorcode/google/chromeos/chromeos.h>
52#endif
53
54/* Stumpy USB Reset Disable defined in cmos.layout */
55#if CONFIG_USE_OPTION_TABLE
56#include "option_table.h"
57#define CMOS_USB_RESET_DISABLE (CMOS_VSTART_stumpy_usb_reset_disable >> 3)
58#else
59#define CMOS_USB_RESET_DISABLE (400 >> 3)
60#endif
61#define USB_RESET_DISABLE_MAGIC (0xdd) /* Disable if set to this */
62
Edward O'Callaghan1f9653a2014-07-14 16:31:25 +100063#define DUMMY_DEV PNP_DEV(0x2e, 0)
Edward O'Callaghan1b3acb12014-06-01 18:04:05 +100064#define SERIAL_DEV PNP_DEV(0x2e, IT8772F_SP1)
65#define GPIO_DEV PNP_DEV(0x2e, IT8772F_GPIO)
66
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020067static void pch_enable_lpc(void)
68{
69 /* Set COM1/COM2 decode range */
70 pci_write_config16(PCH_LPC_DEV, LPC_IO_DEC, 0x0010);
71
Kyösti Mälkkiafa7b132014-02-13 17:16:22 +020072#if CONFIG_DRIVERS_UART_8250IO
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020073 /* Enable SuperIO + PS/2 Keyboard/Mouse + COM1 + lpc47n207 config*/
74 pci_write_config16(PCH_LPC_DEV, LPC_EN, CNF1_LPC_EN | KBC_LPC_EN |\
75 CNF2_LPC_EN | COMA_LPC_EN);
76
77 /* map full 256 bytes at 0x1600 to the LPC bus */
78 pci_write_config32(PCH_LPC_DEV, LPC_GEN1_DEC, 0xfc1601);
79
80 try_enabling_LPC47N207_uart();
81#else
82 /* Enable SuperIO + PS/2 Keyboard/Mouse */
83 pci_write_config16(PCH_LPC_DEV, LPC_EN, CNF1_LPC_EN | KBC_LPC_EN);
84#endif
85}
86
87static void rcba_config(void)
88{
89 u32 reg32;
90
Vladimir Serbinenko33b535f2014-10-19 10:13:14 +020091 southbridge_configure_default_intmap();
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020092
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020093 /* Disable unused devices (board specific) */
94 reg32 = RCBA32(FD);
95 reg32 |= PCH_DISABLE_ALWAYS;
96 RCBA32(FD) = reg32;
97}
98
99static void early_pch_init(void)
100{
101 u8 reg8;
102
103 // reset rtc power status
104 reg8 = pci_read_config8(PCH_LPC_DEV, 0xa4);
105 reg8 &= ~(1 << 2);
106 pci_write_config8(PCH_LPC_DEV, 0xa4, reg8);
107}
108
109static void setup_sio_gpios(void)
110{
111 /*
112 * GPIO10 as USBPWRON12#
113 * GPIO12 as USBPWRON13#
114 */
Edward O'Callaghan1f9653a2014-07-14 16:31:25 +1000115 it8772f_gpio_setup(DUMMY_DEV, 1, 0x05, 0x05, 0x00, 0x05, 0x05);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200116
117 /*
118 * GPIO22 as wake SCI#
119 */
Edward O'Callaghan1f9653a2014-07-14 16:31:25 +1000120 it8772f_gpio_setup(DUMMY_DEV, 2, 0x04, 0x04, 0x00, 0x04, 0x04);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200121
122 /*
123 * GPIO32 as EXTSMI#
124 */
Edward O'Callaghan1f9653a2014-07-14 16:31:25 +1000125 it8772f_gpio_setup(DUMMY_DEV, 3, 0x04, 0x04, 0x00, 0x04, 0x04);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200126
127 /*
128 * GPIO45 as LED_POWER#
129 */
Edward O'Callaghan1f9653a2014-07-14 16:31:25 +1000130 it8772f_gpio_setup(DUMMY_DEV, 4, 0x20, 0x20, 0x20, 0x20, 0x20);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200131
132 /*
133 * GPIO51 as USBPWRON8#
134 * GPIO52 as USBPWRON1#
135 */
Edward O'Callaghan1f9653a2014-07-14 16:31:25 +1000136 it8772f_gpio_setup(DUMMY_DEV, 5, 0x06, 0x06, 0x00, 0x06, 0x06);
137 it8772f_gpio_setup(DUMMY_DEV, 6, 0x00, 0x00, 0x00, 0x00, 0x00);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200138}
139
Aaron Durbina0a37272014-08-14 08:35:11 -0500140#include <cpu/intel/romstage.h>
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200141void main(unsigned long bist)
142{
143 int boot_mode = 0;
144 int cbmem_was_initted;
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200145
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200146 struct pei_data pei_data = {
Edward O'Callaghanb27d3602014-05-24 02:40:31 +1000147 .pei_version = PEI_VERSION,
148 .mchbar = DEFAULT_MCHBAR,
149 .dmibar = DEFAULT_DMIBAR,
150 .epbar = DEFAULT_EPBAR,
151 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
152 .smbusbar = SMBUS_IO_BASE,
153 .wdbbar = 0x4000000,
154 .wdbsize = 0x1000,
155 .hpet_address = CONFIG_HPET_ADDRESS,
156 .rcba = DEFAULT_RCBABASE,
157 .pmbase = DEFAULT_PMBASE,
158 .gpiobase = DEFAULT_GPIOBASE,
159 .thermalbase = 0xfed08000,
160 .system_type = 0, // 0 Mobile, 1 Desktop/Server
161 .tseg_size = CONFIG_SMM_TSEG_SIZE,
162 .spd_addresses = { 0xa0, 0x00,0xa4,0x00 },
163 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
164 .ec_present = 0,
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200165 // 0 = leave channel enabled
166 // 1 = disable dimm 0 on channel
167 // 2 = disable dimm 1 on channel
168 // 3 = disable dimm 0+1 on channel
Edward O'Callaghanb27d3602014-05-24 02:40:31 +1000169 .dimm_channel0_disabled = 2,
170 .dimm_channel1_disabled = 2,
171 .max_ddr3_freq = 1333,
172 .usb_port_config = {
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200173 { 1, 0, 0x0080 }, /* P0: Front port (OC0) */
174 { 1, 1, 0x0040 }, /* P1: Back port (OC1) */
175 { 1, 0, 0x0040 }, /* P2: MINIPCIE1 (no OC) */
176 { 1, 0, 0x0040 }, /* P3: MMC (no OC) */
177 { 1, 2, 0x0080 }, /* P4: Front port (OC2) */
178 { 0, 0, 0x0000 }, /* P5: Empty */
179 { 0, 0, 0x0000 }, /* P6: Empty */
180 { 0, 0, 0x0000 }, /* P7: Empty */
181 { 1, 4, 0x0040 }, /* P8: Back port (OC4) */
182 { 1, 4, 0x0040 }, /* P9: MINIPCIE3 (no OC) */
183 { 1, 4, 0x0040 }, /* P10: BLUETOOTH (no OC) */
184 { 0, 4, 0x0000 }, /* P11: Empty */
185 { 1, 6, 0x0040 }, /* P12: Back port (OC6) */
186 { 1, 5, 0x0040 }, /* P13: Back port (OC5) */
187 },
188 };
189
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300190 timestamp_init(get_initial_timestamp());
191 timestamp_add_now(TS_START_ROMSTAGE);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200192
193 if (bist == 0)
194 enable_lapic();
195
196 pch_enable_lpc();
197
198 /* Enable GPIOs */
199 pci_write_config32(PCH_LPC_DEV, GPIO_BASE, DEFAULT_GPIOBASE|1);
200 pci_write_config8(PCH_LPC_DEV, GPIO_CNTL, 0x10);
201 setup_pch_gpios(&stumpy_gpio_map);
202 setup_sio_gpios();
203
204 /* Early SuperIO setup */
Edward O'Callaghan1f9653a2014-07-14 16:31:25 +1000205 it8772f_ac_resume_southbridge(DUMMY_DEV);
Edward O'Callaghan1b3acb12014-06-01 18:04:05 +1000206 ite_kill_watchdog(GPIO_DEV);
207 ite_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200208 console_init();
209
Kyösti Mälkkie3ddee02014-05-03 10:45:28 +0300210 init_bootmode_straps();
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200211
212 /* Halt if there was a built in self test failure */
213 report_bist_failure(bist);
214
215 if (MCHBAR16(SSKPD) == 0xCAFE) {
216 printk(BIOS_DEBUG, "soft reset detected\n");
217 boot_mode = 1;
218
219 /* System is not happy after keyboard reset... */
220 printk(BIOS_DEBUG, "Issuing CF9 warm reset\n");
221 outb(0x6, 0xcf9);
Patrick Georgibd79c5e2014-11-28 22:35:36 +0100222 halt();
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200223 }
224
225 /* Perform some early chipset initialization required
226 * before RAM initialization can work
227 */
228 sandybridge_early_initialization(SANDYBRIDGE_MOBILE);
229 printk(BIOS_DEBUG, "Back from sandybridge_early_initialization()\n");
230
Vladimir Serbinenko332f14b2014-09-05 16:29:41 +0200231 boot_mode = southbridge_detect_s3_resume() ? 2 : 0;
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200232
233 post_code(0x38);
234 /* Enable SPD ROMs and DDR-III DRAM */
235 enable_smbus();
236
237 /* Prepare USB controller early in S3 resume */
238 if (boot_mode == 2) {
239 /*
240 * For Stumpy the back USB ports are reset on resume
241 * so default to resetting the controller to make the
242 * kernel happy. There is a CMOS flag to disable the
243 * controller reset in case the kernel can tolerate
244 * the device power loss better in the future.
245 */
246 u8 magic = cmos_read(CMOS_USB_RESET_DISABLE);
247
248 if (magic == USB_RESET_DISABLE_MAGIC) {
249 printk(BIOS_DEBUG, "USB Controller Reset Disabled\n");
250 enable_usb_bar();
251 } else {
252 printk(BIOS_DEBUG, "USB Controller Reset Enabled\n");
253 }
254 } else {
255 /* Ensure USB reset on resume is enabled at boot */
256 cmos_write(0, CMOS_USB_RESET_DISABLE);
257 }
258
259 post_code(0x39);
260 pei_data.boot_mode = boot_mode;
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300261 timestamp_add_now(TS_BEFORE_INITRAM);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200262 sdram_initialize(&pei_data);
263
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300264 timestamp_add_now(TS_AFTER_INITRAM);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200265 post_code(0x3a);
266 /* Perform some initialization that must run before stage2 */
267 early_pch_init();
268 post_code(0x3b);
269
270 rcba_config();
271 post_code(0x3c);
272
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200273 quick_ram_check();
Stefan Reinauerafcaac22012-06-18 15:43:50 -0700274 post_code(0x3e);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200275
Kyösti Mälkki2d8520b2014-01-06 17:20:31 +0200276 cbmem_was_initted = !cbmem_recovery(boot_mode==2);
Kyösti Mälkki78938482014-01-04 11:02:45 +0200277 if (boot_mode!=2)
278 save_mrc_data(&pei_data);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200279
Vladimir Serbinenkoc845b432014-09-05 03:37:44 +0200280 if (boot_mode==2 && !cbmem_was_initted) {
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200281 /* Failed S3 resume, reset to come up cleanly */
282 outb(0x6, 0xcf9);
Patrick Georgibd79c5e2014-11-28 22:35:36 +0100283 halt();
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200284 }
Vladimir Serbinenkoc845b432014-09-05 03:37:44 +0200285 northbridge_romstage_finalize(boot_mode==2);
286
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200287 post_code(0x3f);
288#if CONFIG_CHROMEOS
289 init_chromeos(boot_mode);
290#endif
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200291 timestamp_add_now(TS_END_ROMSTAGE);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200292}