blob: da6b50d76fa4989efb7479cb47a1da4f3d806f01 [file] [log] [blame]
Stefan Reinauera7198b32012-12-11 16:00:47 -08001/*
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 Reinauera7198b32012-12-11 16:00:47 -080015 */
16
17#include <stdint.h>
18#include <string.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020019#include <device/pci_ops.h>
Stefan Reinauera7198b32012-12-11 16:00:47 -080020#include <device/pci_def.h>
Stefan Reinauera7198b32012-12-11 16:00:47 -080021#include <cpu/x86/lapic.h>
Kyösti Mälkki6722f8d2014-06-16 09:14:49 +030022#include <arch/acpi.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110023#include <northbridge/intel/sandybridge/sandybridge.h>
24#include <northbridge/intel/sandybridge/raminit.h>
Vladimir Serbinenko144eea02016-02-10 02:36:04 +010025#include <northbridge/intel/sandybridge/raminit_native.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110026#include <southbridge/intel/bd82x6x/pch.h>
Patrick Rudolphe8e66f42016-02-06 17:42:42 +010027#include <southbridge/intel/common/gpio.h>
Stefan Reinauera7198b32012-12-11 16:00:47 -080028#include "ec/compal/ene932/ec.h"
29
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010030void pch_enable_lpc(void)
Stefan Reinauera7198b32012-12-11 16:00:47 -080031{
32 /* Parrot EC Decode Range Port60/64, Port62/66 */
33 /* Enable EC, PS/2 Keyboard/Mouse */
34 pci_write_config16(PCH_LPC_DEV, LPC_EN, KBC_LPC_EN | MC_LPC_EN);
35
36 /* Map EC_IO decode to the LPC bus */
37 pci_write_config32(PCH_LPC_DEV, LPC_GEN1_DEC, (EC_IO & ~3) | 0x00040001);
38
39 /* Map EC registers 68/6C decode to the LPC bus */
40 pci_write_config32(PCH_LPC_DEV, LPC_GEN2_DEC, (68 & ~3) | 0x00040001);
41}
42
Nico Huberff4025c2018-01-14 12:34:43 +010043void mainboard_rcba_config(void)
Stefan Reinauera7198b32012-12-11 16:00:47 -080044{
45 u32 reg32;
46
Kyösti Mälkki6f499062015-06-06 11:52:24 +030047 /*
48 * GFX INTA -> PIRQA (MSI)
49 * D28IP_P2IP WLAN INTA -> PIRQB
50 * D28IP_P3IP ETH0 INTC -> PIRQD
51 * D29IP_E1P EHCI1 INTA -> PIRQE
52 * D26IP_E2P EHCI2 INTA -> PIRQE
53 * D31IP_SIP SATA INTA -> PIRQF (MSI)
54 * D31IP_SMIP SMBUS INTB -> PIRQG
55 * D31IP_TTIP THRT INTC -> PIRQH
56 * D27IP_ZIP HDA INTA -> PIRQG (MSI)
57 *
58 * Trackpad DVT PIRQA (16)
59 * Trackpad DVT PIRQE (20)
60 */
61
62 /* Device interrupt pin register (board specific) */
63 RCBA32(D31IP) = (INTC << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
64 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
65 RCBA32(D30IP) = (NOINT << D30IP_PIP);
66 RCBA32(D29IP) = (INTA << D29IP_E1P);
67 RCBA32(D28IP) = (NOINT << D28IP_P1IP) | (INTA << D28IP_P2IP) |
68 (INTC << D28IP_P3IP) | (NOINT << D28IP_P4IP) |
69 (NOINT << D28IP_P5IP) | (NOINT << D28IP_P6IP) |
70 (NOINT << D28IP_P7IP) | (NOINT << D28IP_P8IP);
71 RCBA32(D27IP) = (INTA << D27IP_ZIP);
72 RCBA32(D26IP) = (INTA << D26IP_E2P);
73 RCBA32(D25IP) = (NOINT << D25IP_LIP);
74 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
75
76 /* Device interrupt route registers */
77 DIR_ROUTE(D31IR, PIRQB, PIRQH, PIRQA, PIRQC);
78 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
79 DIR_ROUTE(D28IR, PIRQB, PIRQC, PIRQD, PIRQE);
80 DIR_ROUTE(D27IR, PIRQA, PIRQH, PIRQA, PIRQB);
81 DIR_ROUTE(D26IR, PIRQF, PIRQE, PIRQG, PIRQH);
82 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
83 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
84
85 /* Enable IOAPIC (generic) */
Arthur Heymans58a89532018-06-12 22:58:19 +020086 RCBA16(OIC) = 0x0100;
Kyösti Mälkki6f499062015-06-06 11:52:24 +030087 /* PCH BWG says to read back the IOAPIC enable register */
Arthur Heymans58a89532018-06-12 22:58:19 +020088 (void) RCBA16(OIC);
Stefan Reinauera7198b32012-12-11 16:00:47 -080089
90 /* Disable unused devices (board specific) */
91 reg32 = RCBA32(FD);
Stefan Reinauera7198b32012-12-11 16:00:47 -080092 /* Disable PCI bridge so MRC does not probe this bus */
93 reg32 |= PCH_DISABLE_P2P;
94 RCBA32(FD) = reg32;
95}
96
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010097void mainboard_early_init(int s3resume)
Stefan Reinauera7198b32012-12-11 16:00:47 -080098{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010099}
Stefan Reinauera7198b32012-12-11 16:00:47 -0800100
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100101void mainboard_fill_pei_data(struct pei_data *pei_data)
102{
103 struct pei_data pei_data_template = {
Edward O'Callaghanf5037bd2014-05-23 08:36:01 +1000104 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800105 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
106 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghanf5037bd2014-05-23 08:36:01 +1000107 .epbar = DEFAULT_EPBAR,
108 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
109 .smbusbar = SMBUS_IO_BASE,
110 .wdbbar = 0x4000000,
111 .wdbsize = 0x1000,
112 .hpet_address = CONFIG_HPET_ADDRESS,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800113 .rcba = (uintptr_t)DEFAULT_RCBABASE,
Edward O'Callaghanf5037bd2014-05-23 08:36:01 +1000114 .pmbase = DEFAULT_PMBASE,
115 .gpiobase = DEFAULT_GPIOBASE,
116 .thermalbase = 0xfed08000,
117 .system_type = 0, // 0 Mobile, 1 Desktop/Server
118 .tseg_size = CONFIG_SMM_TSEG_SIZE,
119 .spd_addresses = { 0xA0, 0x00,0xA4,0x00 },
120 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
121 .ec_present = 1,
Stefan Reinauera7198b32012-12-11 16:00:47 -0800122 // 0 = leave channel enabled
123 // 1 = disable dimm 0 on channel
124 // 2 = disable dimm 1 on channel
125 // 3 = disable dimm 0+1 on channel
Edward O'Callaghanf5037bd2014-05-23 08:36:01 +1000126 .dimm_channel0_disabled = 2,
127 .dimm_channel1_disabled = 2,
128 .max_ddr3_freq = 1600,
129 .usb_port_config = {
Stefan Reinauera7198b32012-12-11 16:00:47 -0800130 /* Empty and onboard Ports 0-7, set to un-used pin OC3 */
131 { 0, 3, 0x0000 }, /* P0: Empty */
132 { 1, 0, 0x0040 }, /* P1: Left USB 1 (OC0) */
133 { 1, 1, 0x0040 }, /* P2: Left USB 2 (OC1) */
134 { 1, 1, 0x0040 }, /* P3: Left USB 3 (OC1) */
135 { 0, 3, 0x0000 }, /* P4: Empty */
136 { 0, 3, 0x0000 }, /* P5: Empty */
137 { 0, 3, 0x0000 }, /* P6: Empty */
138 { 0, 3, 0x0000 }, /* P7: Empty */
139 /* Empty and onboard Ports 8-13, set to un-used pin OC4 */
140 { 1, 4, 0x0040 }, /* P8: MiniPCIe (WLAN) (no OC) */
141 { 0, 4, 0x0000 }, /* P9: Empty */
142 { 1, 4, 0x0040 }, /* P10: Camera (no OC) */
143 { 0, 4, 0x0000 }, /* P11: Empty */
144 { 0, 4, 0x0000 }, /* P12: Empty */
145 { 0, 4, 0x0000 }, /* P13: Empty */
146 },
147 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100148 *pei_data = pei_data_template;
149}
Stefan Reinauera7198b32012-12-11 16:00:47 -0800150
Vladimir Serbinenko144eea02016-02-10 02:36:04 +0100151const struct southbridge_usb_port mainboard_usb_ports[] = {
152 /* enabled power usb oc pin */
153 { 0, 0, -1 }, /* P0: Empty */
154 { 1, 0, 0 }, /* P1: Left USB 1 (OC0) */
155 { 1, 0, 1 }, /* P2: Left USB 2 (OC1) */
156 { 1, 0, 1 }, /* P3: Left USB 3 (OC1) */
157 { 0, 0, -1 }, /* P4: Empty */
158 { 0, 0, -1 }, /* P5: Empty */
159 { 0, 0, -1 }, /* P6: Empty */
160 { 0, 0, -1 }, /* P7: Empty */
161 /* Empty and onboard Ports 8-13, set to un-used pin OC4 */
162 { 1, 0, -1 }, /* P8: MiniPCIe (WLAN) (no OC) */
163 { 0, 0, -1 }, /* P9: Empty */
164 { 1, 0, -1 }, /* P10: Camera (no OC) */
165 { 0, 0, -1 }, /* P11: Empty */
166 { 0, 0, -1 }, /* P12: Empty */
167 { 0, 0, -1 }, /* P13: Empty */
168};
169
Peter Lemenkov498f1cc2019-02-07 10:48:10 +0100170void mainboard_get_spd(spd_raw_data *spd, bool id_only)
171{
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200172 read_spd(&spd[0], 0x50, id_only);
173 read_spd(&spd[2], 0x52, id_only);
Vladimir Serbinenko144eea02016-02-10 02:36:04 +0100174}
175
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100176void mainboard_config_superio(void)
177{
178}
Stefan Reinauera7198b32012-12-11 16:00:47 -0800179
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100180int mainboard_should_reset_usb(int s3resume)
181{
182 return !s3resume;
Stefan Reinauera7198b32012-12-11 16:00:47 -0800183}