blob: 53f5564a9763f5e27dbf0279166eb63f4886336b [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
Arthur Heymansfa5d0f82019-11-12 19:11:50 +010019#include <bootblock_common.h>
Tobias Diedrich7a952042017-12-03 10:09:28 +010020#include <stdint.h>
Elyes HAOUASd07048a2019-04-21 20:17:11 +020021#include <cf9_reset.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020022#include <device/pci_ops.h>
Tobias Diedrich7a952042017-12-03 10:09:28 +010023#include <device/pci_def.h>
Tobias Diedrich7a952042017-12-03 10:09:28 +010024#include <console/console.h>
Elyes HAOUAS4ad14462018-06-16 18:29:33 +020025#include <northbridge/intel/sandybridge/raminit_native.h>
Patrick Rudolphda9302a2019-03-24 17:01:41 +010026#include <southbridge/intel/bd82x6x/pch.h>
Arthur Heymans58a89532018-06-12 22:58:19 +020027
Tobias Diedrich7a952042017-12-03 10:09:28 +010028#include "superio.h"
29#include "thermal.h"
30
Arthur Heymans9c538342019-11-12 16:42:33 +010031void mainboard_late_rcba_config(void)
Tobias Diedrich7a952042017-12-03 10:09:28 +010032{
33 /* Disable devices */
Nico Huberff4025c2018-01-14 12:34:43 +010034 RCBA32(FD) |= PCH_DISABLE_P2P | PCH_DISABLE_XHCI;
Tobias Diedrich7a952042017-12-03 10:09:28 +010035
Julius Wernercd49cce2019-03-05 16:53:33 -080036#if CONFIG(USE_NATIVE_RAMINIT)
Tobias Diedrich7a952042017-12-03 10:09:28 +010037 /* Enable Gigabit Ethernet */
38 if (RCBA32(BUC) & PCH_DISABLE_GBE) {
39 RCBA32(BUC) &= ~PCH_DISABLE_GBE;
40 /* Datasheet says clearing the bit requires a reset after */
41 printk(BIOS_DEBUG, "Enabled gigabit ethernet, reset once.\n");
Elyes HAOUASd07048a2019-04-21 20:17:11 +020042 full_reset();
Tobias Diedrich7a952042017-12-03 10:09:28 +010043 }
44#endif
45
46 /* Set "mobile" bit in MCH (which makes sense layout-wise). */
47 /* Note sure if this has any effect at all though. */
48 MCHBAR32(0x0004) |= 0x00001000;
49 MCHBAR32(0x0104) |= 0x00001000;
50}
51
Tobias Diedrich7a952042017-12-03 10:09:28 +010052static const u16 hwm_initvals[] = {
53 HWM_BANK(0),
54 HWM_INITVAL(0xae, 0x01), /* Enable PECI Agent0 */
55
56 HWM_BANK(7), /* PECI */
57 HWM_INITVAL(0x01, 0x95), /* Enable PECI */
58 HWM_INITVAL(0x03, 0x10), /* Enable Agent 0 */
59 /*
60 * PECI temperatures are negative, going up to 0.
61 * 0 represents the maximum allowable junction temperature, Tjmax.
62 * There is also Tcontrol, which is the temperature at which the
63 * system cooling should run at full speed.
64 * Since the NCT5577D fan control only supports positive values,
65 * Tbase0 is used as an offset.
66 */
67 HWM_INITVAL(0x09, CRITICAL_TEMPERATURE), /* Tbase0 */
68
69 HWM_BANK(2), /* CPUFAN control */
70 HWM_INITVAL(0x00, 0x0c), /* PECI Agent 0 as CPUFAN monitoring source */
71 HWM_INITVAL(0x01, 50), /* Target temperature */
72 HWM_INITVAL(0x02, 0x40), /* Enable Smart Fan IV mode */
73 HWM_INITVAL(0x03, 0x01), /* Step-up time */
74 HWM_INITVAL(0x04, 0x01), /* Step-down time */
75 HWM_INITVAL(0x05, 0x10), /* Stop PWM value */
76 HWM_INITVAL(0x06, 0x20), /* Start PWM value */
77 HWM_INITVAL(0x21, 45), /* Smart Fan IV Temp1 */
78 HWM_INITVAL(0x22, 46), /* Smart Fan IV Temp2 */
79 HWM_INITVAL(0x23, 47), /* Smart Fan IV Temp3 */
80 HWM_INITVAL(0x24, PASSIVE_TEMPERATURE), /* Smart Fan IV Temp4 */
81 HWM_INITVAL(0x27, 0x01), /* Smart Fan IV PWM1 */
82 HWM_INITVAL(0x28, 0x02), /* Smart Fan IV PWM2 */
83 HWM_INITVAL(0x29, 0x03), /* Smart Fan IV PWM3 */
84 HWM_INITVAL(0x2a, 0xff), /* Smart Fan IV PWM4 */
85 /* Smart Fan IV Critical temp */
86 HWM_INITVAL(0x35, CRITICAL_TEMPERATURE),
87 HWM_INITVAL(0x38, 3), /* Smart Fan IV Critical temp tolerance */
88 HWM_INITVAL(0x39, 0x81), /* Enable SYSTIN weight value */
89 HWM_INITVAL(0x3a, 1), /* SYSTIN temperature step */
90 HWM_INITVAL(0x3b, 2), /* SYSTIN step tolerance */
91 HWM_INITVAL(0x3c, 1), /* SYSTIN weight step */
92 HWM_INITVAL(0x3d, 40), /* SYSTIN temperature base */
93 HWM_INITVAL(0x3e, 0x00), /* SYSTIN fan duty base */
94
95 HWM_BANK(0),
96};
97
98static void hwm_init(void)
99{
100 /* Set up fan control */
101 for (int i = 0; i < ARRAY_SIZE(hwm_initvals); i++)
102 HWM_WRITE_INITVAL(hwm_initvals[i]);
103}
104
105static const u16 superio_initvals[] = {
106 /* Global config registers */
107 SUPERIO_INITVAL(0x1a, 0x02),
108 SUPERIO_INITVAL(0x1b, 0x6a),
109 SUPERIO_INITVAL(0x27, 0x80),
Julius Wernercd49cce2019-03-05 16:53:33 -0800110#if CONFIG(DISABLE_UART_ON_TESTPADS)
Tobias Diedrich7a952042017-12-03 10:09:28 +0100111 SUPERIO_INITVAL(0x2a, 0x80),
112#else
113 SUPERIO_INITVAL(0x2a, 0x00),
114#endif
115 SUPERIO_INITVAL(0x2c, 0x00),
116
117 SUPERIO_BANK(2), /* UART A */
118 SUPERIO_INITVAL(0x30, 0x01),
119 SUPERIO_INITVAL(0x60, 0x03),
120 SUPERIO_INITVAL(0x61, 0xf8),
121 SUPERIO_INITVAL(0x70, 0x04),
122
123 SUPERIO_BANK(7), /* GPIO config */
124 SUPERIO_INITVAL(0x30, 0x01),
125 SUPERIO_INITVAL(0xe0, 0xcf),
126 SUPERIO_INITVAL(0xe1, 0x0f),
127 SUPERIO_INITVAL(0xe4, 0xed),
128 SUPERIO_INITVAL(0xe5, 0x4d),
129 SUPERIO_INITVAL(0xec, 0x30),
130 SUPERIO_INITVAL(0xee, 0xff),
131
132 SUPERIO_BANK(8),
133 SUPERIO_INITVAL(0x30, 0x0a),
134 SUPERIO_INITVAL(0x60, GPIO_PORT >> 8),
135 SUPERIO_INITVAL(0x61, GPIO_PORT & 0xff),
136
137 SUPERIO_BANK(9),
138 SUPERIO_INITVAL(0x30, 0x8c),
139 SUPERIO_INITVAL(0xe1, 0x90),
140
141 SUPERIO_BANK(0xa),
142 SUPERIO_INITVAL(0xe4, 0x20),
143 SUPERIO_INITVAL(0xe6, 0x4c),
144
145 SUPERIO_BANK(0xb), /* HWM & LED */
146 SUPERIO_INITVAL(0x30, 0x01),
147 SUPERIO_INITVAL(0x60, HWM_PORT >> 8),
148 SUPERIO_INITVAL(0x61, HWM_PORT & 0xff),
149 SUPERIO_INITVAL(0xf7, 0x67),
150 SUPERIO_INITVAL(0xf8, 0x60),
151
152 SUPERIO_BANK(0x16),
153 SUPERIO_INITVAL(0x30, 0x00),
154};
155
156static void superio_init(void)
157{
158 SUPERIO_UNLOCK;
159 for (int i = 0; i < ARRAY_SIZE(superio_initvals); i++)
160 SUPERIO_WRITE_INITVAL(superio_initvals[i]);
161 SUPERIO_LOCK;
162}
163
Arthur Heymansfa5d0f82019-11-12 19:11:50 +0100164void bootblock_mainboard_early_init(void)
Tobias Diedrich7a952042017-12-03 10:09:28 +0100165{
166 superio_init();
167 hwm_init();
168}
169
170void mainboard_get_spd(spd_raw_data *spd, bool id_only)
171{
172 read_spd(&spd[0], 0x50, id_only);
173 read_spd(&spd[2], 0x51, id_only);
174}
175
176const struct southbridge_usb_port mainboard_usb_ports[] = {
177#define USB_CONFIG(enabled, current, ocpin) { enabled, current, ocpin }
178#include "usb.h"
179};