blob: 46f9a94e9e74136f2e5207c8b0479c1befa64ad6 [file] [log] [blame]
Tobias Diedrich7a952042017-12-03 10:09:28 +01001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * Copyright (C) 2014 Vladimir Serbinenko
6 * Copyright (C) 2017 Tobias Diedrich <ranma+coreboot@tdiedrich.de>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; version 2 of
11 * the License.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 */
18
19#include <stdint.h>
20#include <halt.h>
21#include <arch/io.h>
Elyes HAOUASd07048a2019-04-21 20:17:11 +020022#include <cf9_reset.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020023#include <device/pci_ops.h>
Tobias Diedrich7a952042017-12-03 10:09:28 +010024#include <device/pci_def.h>
Tobias Diedrich7a952042017-12-03 10:09:28 +010025#include <console/console.h>
Elyes HAOUAS4ad14462018-06-16 18:29:33 +020026#include <northbridge/intel/sandybridge/raminit_native.h>
Patrick Rudolphda9302a2019-03-24 17:01:41 +010027#include <southbridge/intel/bd82x6x/pch.h>
Arthur Heymans58a89532018-06-12 22:58:19 +020028
Tobias Diedrich7a952042017-12-03 10:09:28 +010029#include "superio.h"
30#include "thermal.h"
31
Julius Wernercd49cce2019-03-05 16:53:33 -080032#if CONFIG(DISABLE_UART_ON_TESTPADS)
Tobias Diedrich7a952042017-12-03 10:09:28 +010033#define DEBUG_UART_EN 0
34#else
35#define DEBUG_UART_EN COMA_LPC_EN
36#endif
37
38void pch_enable_lpc(void)
39{
40 pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_EN,
41 CNF2_LPC_EN | DEBUG_UART_EN);
42 /* Decode SuperIO 0x0a00 */
43 pci_write_config32(PCI_DEV(0, 0x1f, 0), LPC_GEN1_DEC, 0x00fc0a01);
44}
45
Nico Huberff4025c2018-01-14 12:34:43 +010046void mainboard_rcba_config(void)
Tobias Diedrich7a952042017-12-03 10:09:28 +010047{
48 /* Disable devices */
Nico Huberff4025c2018-01-14 12:34:43 +010049 RCBA32(FD) |= PCH_DISABLE_P2P | PCH_DISABLE_XHCI;
Tobias Diedrich7a952042017-12-03 10:09:28 +010050
Julius Wernercd49cce2019-03-05 16:53:33 -080051#if CONFIG(USE_NATIVE_RAMINIT)
Tobias Diedrich7a952042017-12-03 10:09:28 +010052 /* Enable Gigabit Ethernet */
53 if (RCBA32(BUC) & PCH_DISABLE_GBE) {
54 RCBA32(BUC) &= ~PCH_DISABLE_GBE;
55 /* Datasheet says clearing the bit requires a reset after */
56 printk(BIOS_DEBUG, "Enabled gigabit ethernet, reset once.\n");
Elyes HAOUASd07048a2019-04-21 20:17:11 +020057 full_reset();
Tobias Diedrich7a952042017-12-03 10:09:28 +010058 }
59#endif
60
61 /* Set "mobile" bit in MCH (which makes sense layout-wise). */
62 /* Note sure if this has any effect at all though. */
63 MCHBAR32(0x0004) |= 0x00001000;
64 MCHBAR32(0x0104) |= 0x00001000;
65}
66
67void mainboard_early_init(int s3resume)
68{
69}
70
71static const u16 hwm_initvals[] = {
72 HWM_BANK(0),
73 HWM_INITVAL(0xae, 0x01), /* Enable PECI Agent0 */
74
75 HWM_BANK(7), /* PECI */
76 HWM_INITVAL(0x01, 0x95), /* Enable PECI */
77 HWM_INITVAL(0x03, 0x10), /* Enable Agent 0 */
78 /*
79 * PECI temperatures are negative, going up to 0.
80 * 0 represents the maximum allowable junction temperature, Tjmax.
81 * There is also Tcontrol, which is the temperature at which the
82 * system cooling should run at full speed.
83 * Since the NCT5577D fan control only supports positive values,
84 * Tbase0 is used as an offset.
85 */
86 HWM_INITVAL(0x09, CRITICAL_TEMPERATURE), /* Tbase0 */
87
88 HWM_BANK(2), /* CPUFAN control */
89 HWM_INITVAL(0x00, 0x0c), /* PECI Agent 0 as CPUFAN monitoring source */
90 HWM_INITVAL(0x01, 50), /* Target temperature */
91 HWM_INITVAL(0x02, 0x40), /* Enable Smart Fan IV mode */
92 HWM_INITVAL(0x03, 0x01), /* Step-up time */
93 HWM_INITVAL(0x04, 0x01), /* Step-down time */
94 HWM_INITVAL(0x05, 0x10), /* Stop PWM value */
95 HWM_INITVAL(0x06, 0x20), /* Start PWM value */
96 HWM_INITVAL(0x21, 45), /* Smart Fan IV Temp1 */
97 HWM_INITVAL(0x22, 46), /* Smart Fan IV Temp2 */
98 HWM_INITVAL(0x23, 47), /* Smart Fan IV Temp3 */
99 HWM_INITVAL(0x24, PASSIVE_TEMPERATURE), /* Smart Fan IV Temp4 */
100 HWM_INITVAL(0x27, 0x01), /* Smart Fan IV PWM1 */
101 HWM_INITVAL(0x28, 0x02), /* Smart Fan IV PWM2 */
102 HWM_INITVAL(0x29, 0x03), /* Smart Fan IV PWM3 */
103 HWM_INITVAL(0x2a, 0xff), /* Smart Fan IV PWM4 */
104 /* Smart Fan IV Critical temp */
105 HWM_INITVAL(0x35, CRITICAL_TEMPERATURE),
106 HWM_INITVAL(0x38, 3), /* Smart Fan IV Critical temp tolerance */
107 HWM_INITVAL(0x39, 0x81), /* Enable SYSTIN weight value */
108 HWM_INITVAL(0x3a, 1), /* SYSTIN temperature step */
109 HWM_INITVAL(0x3b, 2), /* SYSTIN step tolerance */
110 HWM_INITVAL(0x3c, 1), /* SYSTIN weight step */
111 HWM_INITVAL(0x3d, 40), /* SYSTIN temperature base */
112 HWM_INITVAL(0x3e, 0x00), /* SYSTIN fan duty base */
113
114 HWM_BANK(0),
115};
116
117static void hwm_init(void)
118{
119 /* Set up fan control */
120 for (int i = 0; i < ARRAY_SIZE(hwm_initvals); i++)
121 HWM_WRITE_INITVAL(hwm_initvals[i]);
122}
123
124static const u16 superio_initvals[] = {
125 /* Global config registers */
126 SUPERIO_INITVAL(0x1a, 0x02),
127 SUPERIO_INITVAL(0x1b, 0x6a),
128 SUPERIO_INITVAL(0x27, 0x80),
Julius Wernercd49cce2019-03-05 16:53:33 -0800129#if CONFIG(DISABLE_UART_ON_TESTPADS)
Tobias Diedrich7a952042017-12-03 10:09:28 +0100130 SUPERIO_INITVAL(0x2a, 0x80),
131#else
132 SUPERIO_INITVAL(0x2a, 0x00),
133#endif
134 SUPERIO_INITVAL(0x2c, 0x00),
135
136 SUPERIO_BANK(2), /* UART A */
137 SUPERIO_INITVAL(0x30, 0x01),
138 SUPERIO_INITVAL(0x60, 0x03),
139 SUPERIO_INITVAL(0x61, 0xf8),
140 SUPERIO_INITVAL(0x70, 0x04),
141
142 SUPERIO_BANK(7), /* GPIO config */
143 SUPERIO_INITVAL(0x30, 0x01),
144 SUPERIO_INITVAL(0xe0, 0xcf),
145 SUPERIO_INITVAL(0xe1, 0x0f),
146 SUPERIO_INITVAL(0xe4, 0xed),
147 SUPERIO_INITVAL(0xe5, 0x4d),
148 SUPERIO_INITVAL(0xec, 0x30),
149 SUPERIO_INITVAL(0xee, 0xff),
150
151 SUPERIO_BANK(8),
152 SUPERIO_INITVAL(0x30, 0x0a),
153 SUPERIO_INITVAL(0x60, GPIO_PORT >> 8),
154 SUPERIO_INITVAL(0x61, GPIO_PORT & 0xff),
155
156 SUPERIO_BANK(9),
157 SUPERIO_INITVAL(0x30, 0x8c),
158 SUPERIO_INITVAL(0xe1, 0x90),
159
160 SUPERIO_BANK(0xa),
161 SUPERIO_INITVAL(0xe4, 0x20),
162 SUPERIO_INITVAL(0xe6, 0x4c),
163
164 SUPERIO_BANK(0xb), /* HWM & LED */
165 SUPERIO_INITVAL(0x30, 0x01),
166 SUPERIO_INITVAL(0x60, HWM_PORT >> 8),
167 SUPERIO_INITVAL(0x61, HWM_PORT & 0xff),
168 SUPERIO_INITVAL(0xf7, 0x67),
169 SUPERIO_INITVAL(0xf8, 0x60),
170
171 SUPERIO_BANK(0x16),
172 SUPERIO_INITVAL(0x30, 0x00),
173};
174
175static void superio_init(void)
176{
177 SUPERIO_UNLOCK;
178 for (int i = 0; i < ARRAY_SIZE(superio_initvals); i++)
179 SUPERIO_WRITE_INITVAL(superio_initvals[i]);
180 SUPERIO_LOCK;
181}
182
183void mainboard_config_superio(void)
184{
185 superio_init();
186 hwm_init();
187}
188
189void mainboard_get_spd(spd_raw_data *spd, bool id_only)
190{
191 read_spd(&spd[0], 0x50, id_only);
192 read_spd(&spd[2], 0x51, id_only);
193}
194
195const struct southbridge_usb_port mainboard_usb_ports[] = {
196#define USB_CONFIG(enabled, current, ocpin) { enabled, current, ocpin }
197#include "usb.h"
198};