blob: 6a483bc67008d7a004aaf72097d4e028a8b2cbe5 [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
Arthur Heymansfa5d0f82019-11-12 19:11:50 +010017#include <bootblock_common.h>
Nico Huberefe1fed2013-04-29 18:00:57 +020018#include <stdint.h>
Kyösti Mälkki3855c012019-03-03 08:45:19 +020019#include <device/pnp_ops.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020020#include <device/pci_ops.h>
Elyes HAOUAS8c905a82019-02-07 09:00:47 +010021#include <cpu/x86/lapic.h>
22#include <cpu/x86/msr.h>
23#include <device/pci_def.h>
Vladimir Serbinenkoa50478f2016-02-10 03:03:41 +010024#include <northbridge/intel/sandybridge/raminit_native.h>
Elyes HAOUAS8c905a82019-02-07 09:00:47 +010025#include <northbridge/intel/sandybridge/raminit.h>
26#include <northbridge/intel/sandybridge/sandybridge.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110027#include <southbridge/intel/bd82x6x/pch.h>
Patrick Rudolphe8e66f42016-02-06 17:42:42 +010028#include <southbridge/intel/common/gpio.h>
Elyes HAOUASe051dc02018-08-06 10:55:59 +020029#include <superio/winbond/common/winbond.h>
Nico Huberefe1fed2013-04-29 18:00:57 +020030
Arthur Heymans2b28a162019-11-12 17:21:08 +010031void mainboard_pch_lpc_setup(void)
Nico Huberefe1fed2013-04-29 18:00:57 +020032{
33 /* Set COM3/COM1 decode ranges: 0x3e8/0x3f8 */
34 pci_write_config16(PCH_LPC_DEV, LPC_IO_DEC, 0x0070);
35
36 /* Enable KBC on 0x06/0x64 (KBC),
37 * EC on 0x62/0x66 (MC),
38 * EC on 0x20c-0x20f (GAMEH),
39 * Super I/O on 0x2e/0x2f (CNF1),
40 * COM1/COM3 decode ranges. */
41 pci_write_config16(PCH_LPC_DEV, LPC_EN,
42 KBC_LPC_EN | MC_LPC_EN |
43 CNF1_LPC_EN | GAMEH_LPC_EN |
44 COMA_LPC_EN | COMB_LPC_EN);
45}
46
Arthur Heymans9c538342019-11-12 16:42:33 +010047void mainboard_late_rcba_config(void)
Nico Huberefe1fed2013-04-29 18:00:57 +020048{
49 u32 reg32;
50
Nico Huberefe1fed2013-04-29 18:00:57 +020051 /* Disable unused devices (board specific) */
52 reg32 = RCBA32(FD);
Nico Huberefe1fed2013-04-29 18:00:57 +020053 /* Disable PCI bridge so MRC does not probe this bus */
54 reg32 |= PCH_DISABLE_P2P;
55 RCBA32(FD) = reg32;
56}
57
Arthur Heymansfa5d0f82019-11-12 19:11:50 +010058void bootblock_mainboard_early_init(void)
Nico Huberefe1fed2013-04-29 18:00:57 +020059{
Elyes HAOUASf10b5ff2016-10-06 19:49:55 +020060 int lvds_3v = 0; /* 0 (5V) or 1 (3V3) */
61 int dis_bl_inv = 1; /* backlight inversion: 1 = disabled, 0 = enabled */
Antonello Dettori82fcc1a2016-11-08 18:44:46 +010062 pnp_devfn_t dev = PNP_DEV(0x2e, 0x9);
Elyes HAOUASe051dc02018-08-06 10:55:59 +020063 pnp_enter_conf_state(dev);
Nico Huber40f9ce92013-10-22 11:07:23 +020064 pnp_write_config(dev, 0x29, 0x02); /* Pins 119, 120 are GPIO21, 20 */
65 pnp_write_config(dev, 0x30, 0x03); /* Enable GPIO2+3 */
66 pnp_write_config(dev, 0x2a, 0x01); /* Pins 62, 63, 65, 66 are
67 GPIO27, 26, 25, 24 */
68 pnp_write_config(dev, 0x2c, 0xc3); /* Pin 90 is GPIO32,
69 Pins 78~85 are UART B */
70 pnp_write_config(dev, 0x2d, 0x00); /* Pins 67, 68, 70~73, 75, 77 are
71 GPIO57~50 */
Nico Huberefe1fed2013-04-29 18:00:57 +020072 pnp_set_logical_device(dev);
73 /* Values can only be changed, when devices are enabled. */
Nico Huberefe1fed2013-04-29 18:00:57 +020074 pnp_write_config(dev, 0xe3, 0xdd); /* GPIO2 bits 1, 5 are output */
Nico Huber40f9ce92013-10-22 11:07:23 +020075 pnp_write_config(dev, 0xe4, (dis_bl_inv << 5) | (lvds_3v << 1)); /* GPIO2 bits 1, 5 */
Nico Hubera90c7852015-04-15 13:46:08 +020076 pnp_write_config(dev, 0xf3, 0x40); /* Disable suspend LED during normal operation */
Elyes HAOUASe051dc02018-08-06 10:55:59 +020077 pnp_exit_conf_state(dev);
Nico Huberefe1fed2013-04-29 18:00:57 +020078}
79
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010080void mainboard_fill_pei_data(struct pei_data *pei_data)
Nico Huberefe1fed2013-04-29 18:00:57 +020081{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010082 struct pei_data pei_data_template = {
Edward O'Callaghan6f49f692014-05-24 02:04:52 +100083 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080084 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
85 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghan6f49f692014-05-24 02:04:52 +100086 .epbar = DEFAULT_EPBAR,
87 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
88 .smbusbar = SMBUS_IO_BASE,
89 .wdbbar = 0x4000000,
90 .wdbsize = 0x1000,
91 .hpet_address = CONFIG_HPET_ADDRESS,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080092 .rcba = (uintptr_t)DEFAULT_RCBABASE,
Edward O'Callaghan6f49f692014-05-24 02:04:52 +100093 .pmbase = DEFAULT_PMBASE,
94 .gpiobase = DEFAULT_GPIOBASE,
95 .thermalbase = 0xfed08000,
Elyes HAOUASf10b5ff2016-10-06 19:49:55 +020096 .system_type = 0, /* 0 Mobile, 1 Desktop/Server */
Edward O'Callaghan6f49f692014-05-24 02:04:52 +100097 .tseg_size = CONFIG_SMM_TSEG_SIZE,
98 .spd_addresses = { 0xA0, 0x00,0xA4,0x00 },
99 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
100 .ec_present = 1,
101 .gbe_enable = 1,
102 .ddr3lv_support = 0,
Elyes HAOUASf10b5ff2016-10-06 19:49:55 +0200103 /*
104 * 0 = leave channel enabled
105 * 1 = disable dimm 0 on channel
106 * 2 = disable dimm 1 on channel
107 * 3 = disable dimm 0+1 on channel
108 */
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000109 .dimm_channel0_disabled = 2,
110 .dimm_channel1_disabled = 2,
111 .max_ddr3_freq = 1600,
112 .usb_port_config = {
Nico Huberefe1fed2013-04-29 18:00:57 +0200113 /* enabled usb oc pin length */
114 { 1, 0, 0x0040 }, /* P0: lower left USB 3.0 (OC0) */
115 { 1, 0, 0x0040 }, /* P1: upper left USB 3.0 (OC0) */
116 { 1, 0, 0x0040 }, /* P2: lower right USB 3.0 (OC0) */
117 { 1, 0, 0x0040 }, /* P3: upper right USB 3.0 (OC0) */
118 { 1, 0, 0x0040 }, /* P4: lower USB 2.0 (OC0) */
119 { 1, 0, 0x0040 }, /* P5: upper USB 2.0 (OC0) */
120 { 1, 0, 0x0040 }, /* P6: front panel USB 2.0 (OC0) */
121 { 1, 0, 0x0040 }, /* P7: front panel USB 2.0 (OC0) */
122 { 1, 4, 0x0040 }, /* P8: internal USB 2.0 (OC4) */
123 { 1, 4, 0x0040 }, /* P9: internal USB 2.0 (OC4) */
124 { 1, 4, 0x0040 }, /* P10: internal USB 2.0 (OC4) */
125 { 1, 4, 0x0040 }, /* P11: internal USB 2.0 (OC4) */
126 { 1, 4, 0x0040 }, /* P12: internal USB 2.0 (OC4) */
127 { 1, 4, 0x0040 }, /* P13: internal USB 2.0 (OC4) */
128 },
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000129 .usb3 = {
130 .mode = 3, /* Smart Auto? */
131 .hs_port_switch_mask = 0xf, /* All four ports. */
132 .preboot_support = 1, /* preOS driver? */
133 .xhci_streams = 1, /* Enable. */
Nico Huberefe1fed2013-04-29 18:00:57 +0200134 },
Edward O'Callaghan6f49f692014-05-24 02:04:52 +1000135 .pcie_init = 1,
Nico Huberefe1fed2013-04-29 18:00:57 +0200136 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100137 *pei_data = pei_data_template;
138}
Nico Huberefe1fed2013-04-29 18:00:57 +0200139
Vladimir Serbinenkoa50478f2016-02-10 03:03:41 +0100140const struct southbridge_usb_port mainboard_usb_ports[] = {
141 /* enabled power usb oc pin */
142 { 1, 0, 0 }, /* P0: lower left USB 3.0 (OC0) */
143 { 1, 0, 0 }, /* P1: upper left USB 3.0 (OC0) */
144 { 1, 0, 0 }, /* P2: lower right USB 3.0 (OC0) */
145 { 1, 0, 0 }, /* P3: upper right USB 3.0 (OC0) */
146 { 1, 0, 0 }, /* P4: lower USB 2.0 (OC0) */
147 { 1, 0, 0 }, /* P5: upper USB 2.0 (OC0) */
148 { 1, 0, 0 }, /* P6: front panel USB 2.0 (OC0) */
149 { 1, 0, 0 }, /* P7: front panel USB 2.0 (OC0) */
150 { 1, 0, 4 }, /* P8: internal USB 2.0 (OC4) */
151 { 1, 0, 4 }, /* P9: internal USB 2.0 (OC4) */
152 { 1, 0, 4 }, /* P10: internal USB 2.0 (OC4) */
153 { 1, 0, 4 }, /* P11: internal USB 2.0 (OC4) */
154 { 1, 0, 4 }, /* P12: internal USB 2.0 (OC4) */
155 { 1, 0, 4 }, /* P13: internal USB 2.0 (OC4) */
156};
157
Peter Lemenkov498f1cc2019-02-07 10:48:10 +0100158void mainboard_get_spd(spd_raw_data *spd, bool id_only)
159{
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200160 read_spd(&spd[0], 0x50, id_only);
161 read_spd(&spd[2], 0x52, id_only);
Vladimir Serbinenkoa50478f2016-02-10 03:03:41 +0100162}
163
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100164void mainboard_early_init(int s3resume)
165{
Nico Huberefe1fed2013-04-29 18:00:57 +0200166 /* Enable PEG10 (1x16) */
167 pci_write_config32(PCI_DEV(0, 0, 0), DEVEN,
168 pci_read_config32(PCI_DEV(0, 0, 0), DEVEN) |
169 DEVEN_PEG10);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100170}
Nico Huberefe1fed2013-04-29 18:00:57 +0200171
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100172int mainboard_should_reset_usb(int s3resume)
173{
174 return !s3resume;
Nico Huberefe1fed2013-04-29 18:00:57 +0200175}