summaryrefslogtreecommitdiffstats
path: root/src/mainboard/asrock/h77pro4-m/early_init.c
blob: 48024cba5c6e18c602d8895843bb9296f44e1cd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* SPDX-License-Identifier: GPL-2.0-only */

#include <stdint.h>

#include <bootblock_common.h>
#include <device/pci_ops.h>
#include <device/pnp_ops.h>
#include <northbridge/intel/sandybridge/raminit_native.h>
#include <option.h>
#include <southbridge/intel/bd82x6x/pch.h>
#include <superio/nuvoton/common/nuvoton.h>
#include <superio/nuvoton/nct6776/nct6776.h>

#define GLOBAL_DEV   PNP_DEV(0x2e, 0)
#define SERIAL_DEV   PNP_DEV(0x2e, NCT6776_SP1)
#define GPIO6789_DEV PNP_DEV(0x2e, NCT6776_GPIO6789_V)

/* As defined in cmos.layout */
enum cpu_fan_tach_src {
	CPU_FAN_HEADER_NONE,
	CPU_FAN_HEADER_1,
	CPU_FAN_HEADER_2,
	CPU_FAN_HEADER_BOTH
};

const struct southbridge_usb_port mainboard_usb_ports[] = {
	{ 1, 0, 0 },
	{ 1, 0, 0 },
	{ 1, 1, 1 },
	{ 1, 1, 1 },
	{ 1, 1, 2 },
	{ 1, 1, 2 },
	{ 1, 0, 3 },
	{ 1, 0, 3 },
	{ 1, 0, 4 },
	{ 1, 0, 4 },
	{ 1, 0, 6 },
	{ 1, 1, 5 },
	{ 1, 1, 5 },
	{ 1, 0, 6 },
};

/*
 * The tachometer signal that goes to CPUFANIN of the Super I/O is set via
 * GPIOs.
 *
 * When GP77 (register E1h[7]) is '0', CPU_FAN1 is connected.
 * When GP76 (register E1h[6]) is '0', CPU_FAN2 is connected.
 * When both are '0' and both fans are connected, wrong readings will
 * be reported.
 */
static u8 get_cpufanin_gpio_config(void)
{
	switch (get_uint_option("cpu_fan_tach_src", CPU_FAN_HEADER_1)) {
	case CPU_FAN_HEADER_NONE:
		return 0xff;
	case CPU_FAN_HEADER_1:
	default:
		return 0x7f;
	case CPU_FAN_HEADER_2:
		return 0xbf;
	case CPU_FAN_HEADER_BOTH:
		return 0x3f;
	}
};

void bootblock_mainboard_early_init(void)
{
	nuvoton_pnp_enter_conf_state(GLOBAL_DEV);

	/* Configure Super I/O pins */
	pnp_write_config(GLOBAL_DEV, 0x1b, 0x68);
	pnp_write_config(GLOBAL_DEV, 0x1c, 0x80);
	pnp_write_config(GLOBAL_DEV, 0x24, 0x5c);
	pnp_write_config(GLOBAL_DEV, 0x27, 0xc0);
	pnp_write_config(GLOBAL_DEV, 0x2a, 0x62);
	pnp_write_config(GLOBAL_DEV, 0x2b, 0x08);
	pnp_write_config(GLOBAL_DEV, 0x2c, 0x80);

	/* GP77 and GP76 are outputs. They set the tachometer input on CPUFANIN. */
	pnp_set_logical_device(GPIO6789_DEV);
	pnp_write_config(GPIO6789_DEV, 0xe0, 0x3f);
	pnp_write_config(GPIO6789_DEV, 0xe1, get_cpufanin_gpio_config());

	nuvoton_pnp_exit_conf_state(GLOBAL_DEV);

	/* Enable UART */
	nuvoton_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
}

void mainboard_get_spd(spd_raw_data *spd, bool id_only)
{
	read_spd(&spd[0], 0x50, id_only);
	read_spd(&spd[1], 0x51, id_only);
	read_spd(&spd[2], 0x52, id_only);
	read_spd(&spd[3], 0x53, id_only);
}