blob: 197b460e49625e78fca0f28539cfe0e455335917 [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.
Nico Huberefe1fed2013-04-29 18:00:57 +020015 */
16
17#include <stdint.h>
18#include <string.h>
19#include <lib.h>
20#include <timestamp.h>
21#include <arch/io.h>
22#include <device/pci_def.h>
23#include <device/pnp_def.h>
24#include <cpu/x86/lapic.h>
25#include <pc80/mc146818rtc.h>
Kyösti Mälkki6722f8d2014-06-16 09:14:49 +030026#include <arch/acpi.h>
Nico Huberefe1fed2013-04-29 18:00:57 +020027#include <cbmem.h>
28#include <console/console.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110029#include <northbridge/intel/sandybridge/sandybridge.h>
30#include <northbridge/intel/sandybridge/raminit.h>
31#include <southbridge/intel/bd82x6x/pch.h>
32#include <southbridge/intel/bd82x6x/gpio.h>
Nico Huberefe1fed2013-04-29 18:00:57 +020033#include <arch/cpu.h>
Nico Huberefe1fed2013-04-29 18:00:57 +020034#include <cpu/x86/msr.h>
Patrick Georgibd79c5e2014-11-28 22:35:36 +010035#include <halt.h>
Nico Huberefe1fed2013-04-29 18:00:57 +020036#include "gpio.h"
37
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010038void pch_enable_lpc(void)
Nico Huberefe1fed2013-04-29 18:00:57 +020039{
40 /* Set COM3/COM1 decode ranges: 0x3e8/0x3f8 */
41 pci_write_config16(PCH_LPC_DEV, LPC_IO_DEC, 0x0070);
42
43 /* Enable KBC on 0x06/0x64 (KBC),
44 * EC on 0x62/0x66 (MC),
45 * EC on 0x20c-0x20f (GAMEH),
46 * Super I/O on 0x2e/0x2f (CNF1),
47 * COM1/COM3 decode ranges. */
48 pci_write_config16(PCH_LPC_DEV, LPC_EN,
49 KBC_LPC_EN | MC_LPC_EN |
50 CNF1_LPC_EN | GAMEH_LPC_EN |
51 COMA_LPC_EN | COMB_LPC_EN);
52}
53
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010054void rcba_config(void)
Nico Huberefe1fed2013-04-29 18:00:57 +020055{
56 u32 reg32;
57
Nico Huberefe1fed2013-04-29 18:00:57 +020058 /* Disable unused devices (board specific) */
59 reg32 = RCBA32(FD);
60 reg32 |= PCH_DISABLE_ALWAYS;
61 /* Disable PCI bridge so MRC does not probe this bus */
62 reg32 |= PCH_DISABLE_P2P;
63 RCBA32(FD) = reg32;
64}
65
66static void pnp_enter_ext_func_mode(device_t dev)
67{
68 u16 port = dev >> 8;
69 outb(0x87, port);
70 outb(0x87, port);
71}
72
73static void pnp_exit_ext_func_mode(device_t dev)
74{
75 u16 port = dev >> 8;
76 outb(0xaa, port);
77}
78
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010079void mainboard_config_superio(void)
Nico Huberefe1fed2013-04-29 18:00:57 +020080{
Nico Huber40f9ce92013-10-22 11:07:23 +020081 int lvds_3v = 0; // 0 (5V) or 1 (3V3)
82 int dis_bl_inv = 1; // backlight inversion: 1 = disabled, 0 = enabled
Nico Huberefe1fed2013-04-29 18:00:57 +020083 device_t dev = PNP_DEV(0x2e, 0x9);
84 pnp_enter_ext_func_mode(dev);
Nico Huber40f9ce92013-10-22 11:07:23 +020085 pnp_write_config(dev, 0x29, 0x02); /* Pins 119, 120 are GPIO21, 20 */
86 pnp_write_config(dev, 0x30, 0x03); /* Enable GPIO2+3 */
87 pnp_write_config(dev, 0x2a, 0x01); /* Pins 62, 63, 65, 66 are
88 GPIO27, 26, 25, 24 */
89 pnp_write_config(dev, 0x2c, 0xc3); /* Pin 90 is GPIO32,
90 Pins 78~85 are UART B */
91 pnp_write_config(dev, 0x2d, 0x00); /* Pins 67, 68, 70~73, 75, 77 are
92 GPIO57~50 */
Nico Huberefe1fed2013-04-29 18:00:57 +020093 pnp_set_logical_device(dev);
94 /* Values can only be changed, when devices are enabled. */
Nico Huberefe1fed2013-04-29 18:00:57 +020095 pnp_write_config(dev, 0xe3, 0xdd); /* GPIO2 bits 1, 5 are output */
Nico Huber40f9ce92013-10-22 11:07:23 +020096 pnp_write_config(dev, 0xe4, (dis_bl_inv << 5) | (lvds_3v << 1)); /* GPIO2 bits 1, 5 */
Nico Huberefe1fed2013-04-29 18:00:57 +020097 pnp_exit_ext_func_mode(dev);
98}
99
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100100void mainboard_fill_pei_data(struct pei_data *pei_data)
Nico Huberefe1fed2013-04-29 18:00:57 +0200101{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100102 struct pei_data pei_data_template = {
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000103 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800104 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
105 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000106 .epbar = DEFAULT_EPBAR,
107 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
108 .smbusbar = SMBUS_IO_BASE,
109 .wdbbar = 0x4000000,
110 .wdbsize = 0x1000,
111 .hpet_address = CONFIG_HPET_ADDRESS,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800112 .rcba = (uintptr_t)DEFAULT_RCBABASE,
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000113 .pmbase = DEFAULT_PMBASE,
114 .gpiobase = DEFAULT_GPIOBASE,
115 .thermalbase = 0xfed08000,
116 .system_type = 0, // 0 Mobile, 1 Desktop/Server
117 .tseg_size = CONFIG_SMM_TSEG_SIZE,
118 .spd_addresses = { 0xA0, 0x00,0xA4,0x00 },
119 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
120 .ec_present = 1,
121 .gbe_enable = 1,
122 .ddr3lv_support = 0,
Nico Huberefe1fed2013-04-29 18:00:57 +0200123 // 0 = leave channel enabled
124 // 1 = disable dimm 0 on channel
125 // 2 = disable dimm 1 on channel
126 // 3 = disable dimm 0+1 on channel
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000127 .dimm_channel0_disabled = 2,
128 .dimm_channel1_disabled = 2,
129 .max_ddr3_freq = 1600,
130 .usb_port_config = {
Nico Huberefe1fed2013-04-29 18:00:57 +0200131 /* enabled usb oc pin length */
132 { 1, 0, 0x0040 }, /* P0: lower left USB 3.0 (OC0) */
133 { 1, 0, 0x0040 }, /* P1: upper left USB 3.0 (OC0) */
134 { 1, 0, 0x0040 }, /* P2: lower right USB 3.0 (OC0) */
135 { 1, 0, 0x0040 }, /* P3: upper right USB 3.0 (OC0) */
136 { 1, 0, 0x0040 }, /* P4: lower USB 2.0 (OC0) */
137 { 1, 0, 0x0040 }, /* P5: upper USB 2.0 (OC0) */
138 { 1, 0, 0x0040 }, /* P6: front panel USB 2.0 (OC0) */
139 { 1, 0, 0x0040 }, /* P7: front panel USB 2.0 (OC0) */
140 { 1, 4, 0x0040 }, /* P8: internal USB 2.0 (OC4) */
141 { 1, 4, 0x0040 }, /* P9: internal USB 2.0 (OC4) */
142 { 1, 4, 0x0040 }, /* P10: internal USB 2.0 (OC4) */
143 { 1, 4, 0x0040 }, /* P11: internal USB 2.0 (OC4) */
144 { 1, 4, 0x0040 }, /* P12: internal USB 2.0 (OC4) */
145 { 1, 4, 0x0040 }, /* P13: internal USB 2.0 (OC4) */
146 },
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000147 .usb3 = {
148 .mode = 3, /* Smart Auto? */
149 .hs_port_switch_mask = 0xf, /* All four ports. */
150 .preboot_support = 1, /* preOS driver? */
151 .xhci_streams = 1, /* Enable. */
Nico Huberefe1fed2013-04-29 18:00:57 +0200152 },
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000153 .pcie_init = 1,
Nico Huberefe1fed2013-04-29 18:00:57 +0200154 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100155 *pei_data = pei_data_template;
156}
Nico Huberefe1fed2013-04-29 18:00:57 +0200157
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100158void mainboard_early_init(int s3resume)
159{
Nico Huberefe1fed2013-04-29 18:00:57 +0200160 /* Enable PEG10 (1x16) */
161 pci_write_config32(PCI_DEV(0, 0, 0), DEVEN,
162 pci_read_config32(PCI_DEV(0, 0, 0), DEVEN) |
163 DEVEN_PEG10);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100164}
Nico Huberefe1fed2013-04-29 18:00:57 +0200165
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100166int mainboard_should_reset_usb(int s3resume)
167{
168 return !s3resume;
Nico Huberefe1fed2013-04-29 18:00:57 +0200169}