blob: 275277804757f47a4e588097c9f0f595616ac43e [file] [log] [blame]
Stefan Reinauer6651da32012-04-27 23:16:30 +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.
Stefan Reinauer6651da32012-04-27 23:16:30 +020015 */
16
17#include <stdint.h>
18#include <string.h>
19#include <lib.h>
20#include <timestamp.h>
21#include <arch/io.h>
Stefan Reinauer6651da32012-04-27 23:16:30 +020022#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>
Stefan Reinauer6651da32012-04-27 23:16:30 +020027#include <cbmem.h>
28#include <console/console.h>
Edward O'Callaghan74834e02015-01-04 04:17:35 +110029#include <superio/smsc/sio1007/chip.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110030#include <northbridge/intel/sandybridge/sandybridge.h>
31#include <northbridge/intel/sandybridge/raminit.h>
Vladimir Serbinenkocf0e9022016-02-10 03:09:46 +010032#include <northbridge/intel/sandybridge/raminit_native.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110033#include <southbridge/intel/bd82x6x/pch.h>
Stefan Reinauer6651da32012-04-27 23:16:30 +020034#include <arch/cpu.h>
Stefan Reinauer6651da32012-04-27 23:16:30 +020035#include <cpu/x86/msr.h>
Patrick Georgibd79c5e2014-11-28 22:35:36 +010036#include <halt.h>
Vladimir Serbinenko0e90dae2015-05-18 10:29:06 +020037#include <tpm.h>
Stefan Reinauer6651da32012-04-27 23:16:30 +020038
Marc Jonesc4b6f3b2013-11-05 17:47:37 -070039#define SIO_PORT 0x164e
40
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010041void pch_enable_lpc(void)
Stefan Reinauer6651da32012-04-27 23:16:30 +020042{
43 device_t dev = PCH_LPC_DEV;
Stefan Reinauer6651da32012-04-27 23:16:30 +020044
45 /* Set COM1/COM2 decode range */
46 pci_write_config16(dev, LPC_IO_DEC, 0x0010);
47
Marc Jonesc4b6f3b2013-11-05 17:47:37 -070048 /* Enable SuperIO + PS/2 Keyboard/Mouse */
49 u16 lpc_config = CNF1_LPC_EN | CNF2_LPC_EN | KBC_LPC_EN;
Stefan Reinauer6651da32012-04-27 23:16:30 +020050 pci_write_config16(dev, LPC_EN, lpc_config);
51
52 /* Map 256 bytes at 0x1600 to the LPC bus. */
53 pci_write_config32(dev, LPC_GEN1_DEC, 0xfc1601);
54
Marc Jonesc4b6f3b2013-11-05 17:47:37 -070055 /* Map a range for the runtime_port registers to the LPC bus. */
Stefan Reinauer6651da32012-04-27 23:16:30 +020056 pci_write_config32(dev, LPC_GEN2_DEC, 0xc0181);
57
Marc Jonesc4b6f3b2013-11-05 17:47:37 -070058 /* Enable COM1 */
59 if (sio1007_enable_uart_at(SIO_PORT)) {
60 pci_write_config16(dev, LPC_EN,
61 lpc_config | COMA_LPC_EN);
Stefan Reinauer6651da32012-04-27 23:16:30 +020062 }
63}
64
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010065void rcba_config(void)
Stefan Reinauer6651da32012-04-27 23:16:30 +020066{
67 u32 reg32;
68
Vladimir Serbinenko33b535f2014-10-19 10:13:14 +020069 southbridge_configure_default_intmap();
Stefan Reinauer6651da32012-04-27 23:16:30 +020070
Stefan Reinauer6651da32012-04-27 23:16:30 +020071 /* Disable unused devices (board specific) */
72 reg32 = RCBA32(FD);
73 reg32 |= PCH_DISABLE_ALWAYS;
74 RCBA32(FD) = reg32;
75}
76
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010077void mainboard_config_superio(void)
Stefan Reinauer6651da32012-04-27 23:16:30 +020078{
Marc Jonesc4b6f3b2013-11-05 17:47:37 -070079 const u16 port = SIO_PORT;
Stefan Reinauer6651da32012-04-27 23:16:30 +020080 const u16 runtime_port = 0x180;
81
82 /* Turn on configuration mode. */
83 outb(0x55, port);
84
85 /* Set the GPIO direction, polarity, and type. */
86 sio1007_setreg(port, 0x31, 1 << 0, 1 << 0);
87 sio1007_setreg(port, 0x32, 0 << 0, 1 << 0);
88 sio1007_setreg(port, 0x33, 0 << 0, 1 << 0);
89
90 /* Set the base address for the runtime register block. */
91 sio1007_setreg(port, 0x30, runtime_port >> 4, 0xff);
92 sio1007_setreg(port, 0x21, runtime_port >> 12, 0xff);
93
94 /* Turn on address decoding for it. */
95 sio1007_setreg(port, 0x3a, 1 << 1, 1 << 1);
96
97 /* Set the value of GPIO 10 by changing GP1, bit 0. */
98 u8 byte;
99 byte = inb(runtime_port + 0xc);
100 byte |= (1 << 0);
101 outb(byte, runtime_port + 0xc);
102
103 /* Turn off address decoding for it. */
104 sio1007_setreg(port, 0x3a, 0 << 1, 1 << 1);
105
106 /* Turn off configuration mode. */
107 outb(0xaa, port);
108}
109
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100110void mainboard_fill_pei_data(struct pei_data *pei_data)
Stefan Reinauer6651da32012-04-27 23:16:30 +0200111{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100112 struct pei_data pei_data_template = {
Edward O'Callaghanea4ae2f2014-05-24 02:08:04 +1000113 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800114 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
115 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghanea4ae2f2014-05-24 02:08:04 +1000116 .epbar = DEFAULT_EPBAR,
117 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
118 .smbusbar = SMBUS_IO_BASE,
119 .wdbbar = 0x4000000,
120 .wdbsize = 0x1000,
121 .hpet_address = CONFIG_HPET_ADDRESS,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800122 .rcba = (uintptr_t)DEFAULT_RCBABASE,
Edward O'Callaghanea4ae2f2014-05-24 02:08:04 +1000123 .pmbase = DEFAULT_PMBASE,
124 .gpiobase = DEFAULT_GPIOBASE,
125 .thermalbase = 0xfed08000,
126 .system_type = 0, // 0 Mobile, 1 Desktop/Server
127 .tseg_size = CONFIG_SMM_TSEG_SIZE,
128 .spd_addresses = { 0xa0, 0x00, 0xa4, 0x00 },
129 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
130 .ec_present = 0,
Stefan Reinauer6651da32012-04-27 23:16:30 +0200131 // 0 = leave channel enabled
132 // 1 = disable dimm 0 on channel
133 // 2 = disable dimm 1 on channel
134 // 3 = disable dimm 0+1 on channel
Edward O'Callaghanea4ae2f2014-05-24 02:08:04 +1000135 .dimm_channel0_disabled = 2,
136 .dimm_channel1_disabled = 2,
137 .max_ddr3_freq = 1600,
138 .usb_port_config = {
Stefan Reinauer6651da32012-04-27 23:16:30 +0200139 { 1, 0, 0x0040 }, /* P0: Front port (OC0) */
140 { 1, 1, 0x0040 }, /* P1: Back port (OC1) */
141 { 1, 0, 0x0040 }, /* P2: MINIPCIE1 (no OC) */
142 { 1, 0, 0x0040 }, /* P3: MMC (no OC) */
143 { 1, 2, 0x0040 }, /* P4: Front port (OC2) */
144 { 0, 0, 0x0000 }, /* P5: Empty */
145 { 0, 0, 0x0000 }, /* P6: Empty */
146 { 0, 0, 0x0000 }, /* P7: Empty */
147 { 1, 4, 0x0040 }, /* P8: Back port (OC4) */
148 { 1, 4, 0x0040 }, /* P9: MINIPCIE3 (no OC) */
149 { 1, 4, 0x0040 }, /* P10: BLUETOOTH (no OC) */
150 { 0, 4, 0x0000 }, /* P11: Empty */
151 { 1, 6, 0x0040 }, /* P12: Back port (OC6) */
152 { 1, 5, 0x0040 }, /* P13: Back port (OC5) */
153 },
154 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100155 *pei_data = pei_data_template;
156}
Stefan Reinauer6651da32012-04-27 23:16:30 +0200157
Vladimir Serbinenkocf0e9022016-02-10 03:09:46 +0100158const struct southbridge_usb_port mainboard_usb_ports[] = {
159 /* enabled power usb oc pin */
160 { 1, 0, 0 }, /* P0: Front port (OC0) */
161 { 1, 0, 1 }, /* P1: Back port (OC1) */
162 { 1, 0, -1 }, /* P2: MINIPCIE1 (no OC) */
163 { 1, 0, -1 }, /* P3: MMC (no OC) */
164 { 1, 0, 2 }, /* P4: Front port (OC2) */
165 { 0, 0, -1 }, /* P5: Empty */
166 { 0, 0, -1 }, /* P6: Empty */
167 { 0, 0, -1 }, /* P7: Empty */
168 { 1, 0, 4 }, /* P8: Back port (OC4) */
169 { 1, 0, -1 }, /* P9: MINIPCIE3 (no OC) */
170 { 1, 0, -1 }, /* P10: BLUETOOTH (no OC) */
171 { 0, 0, -1 }, /* P11: Empty */
172 { 1, 0, 6 }, /* P12: Back port (OC6) */
173 { 1, 0, 5 }, /* P13: Back port (OC5) */
174};
175
176void mainboard_get_spd(spd_raw_data *spd) {
177 read_spd(&spd[0], 0x50);
178 read_spd(&spd[2], 0x52);
179}
180
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100181void mainboard_early_init(int s3resume)
182{
183}
Stefan Reinauer6651da32012-04-27 23:16:30 +0200184
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100185int mainboard_should_reset_usb(int s3resume)
186{
187 return !s3resume;
Stefan Reinauer6651da32012-04-27 23:16:30 +0200188}