summaryrefslogtreecommitdiff
path: root/src/mainboard/hp/probook_640_g1/romstage.c
blob: 4dd5db7142487559abcf7cceef71431e215ca1bc (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
/* SPDX-License-Identifier: GPL-2.0-only */

#include <stdint.h>
#include <northbridge/intel/haswell/haswell.h>
#include <northbridge/intel/haswell/raminit.h>
#include <southbridge/intel/lynxpoint/pch.h>

void mainboard_config_rcba(void)
{
	RCBA16(D31IR) = DIR_ROUTE(PIRQF, PIRQD, PIRQC, PIRQA);
	RCBA16(D29IR) = DIR_ROUTE(PIRQB, PIRQD, PIRQA, PIRQC);
	RCBA16(D28IR) = DIR_ROUTE(PIRQA, PIRQA, PIRQA, PIRQA);
	RCBA16(D27IR) = DIR_ROUTE(PIRQG, PIRQB, PIRQC, PIRQD);
	RCBA16(D26IR) = DIR_ROUTE(PIRQA, PIRQF, PIRQC, PIRQD);
	RCBA16(D25IR) = DIR_ROUTE(PIRQE, PIRQB, PIRQC, PIRQD);
	RCBA16(D22IR) = DIR_ROUTE(PIRQA, PIRQB, PIRQC, PIRQD);
	RCBA16(D20IR) = DIR_ROUTE(PIRQA, PIRQB, PIRQC, PIRQD);
}

void mb_get_spd_map(uint8_t spd_map[4])
{
	spd_map[0] = 0xa0;
	spd_map[2] = 0xa4;
}

void mainboard_fill_pei_data(struct pei_data *pei_data)
{
	struct usb2_port_setting usb2_ports[MAX_USB2_PORTS] = {
		/* FIXME: Length and Location are computed from IOBP values, may be inaccurate */
		/* Length, Enable, OCn#, Location */
		{ 0x0110, 1, 0, USB_PORT_BACK_PANEL }, /* dock */
		{ 0x0080, 1, 0, USB_PORT_BACK_PANEL }, /* right */
		{ 0x0110, 1, 1, USB_PORT_BACK_PANEL }, /* right */
		{ 0x0110, 1, 1, USB_PORT_BACK_PANEL }, /* left */
		{ 0x0110, 1, 2, USB_PORT_BACK_PANEL },
		{ 0x0080, 1, 2, USB_PORT_BACK_PANEL },
		{ 0x0110, 1, 3, USB_PORT_BACK_PANEL }, /* webcam */
		{ 0x0080, 1, 3, USB_PORT_DOCK },
		{ 0x0110, 1, 4, USB_PORT_BACK_PANEL }, /* left */
		{ 0x0110, 1, 4, USB_PORT_BACK_PANEL },
		{ 0x0110, 1, 5, USB_PORT_BACK_PANEL }, /* M.2 */
		{ 0x0110, 1, 5, USB_PORT_BACK_PANEL }, /* WLAN */
		{ 0x0110, 1, 6, USB_PORT_BACK_PANEL },
		{ 0x0080, 1, 6, USB_PORT_DOCK },
	};
	struct usb3_port_setting usb3_ports[MAX_USB3_PORTS] = {
		{ 1, 0 },
		{ 1, 0 },
		{ 1, 1 },
		{ 1, 1 },
		{ 1, 2 },
		{ 0, 2 },
	};
	memcpy(pei_data->usb2_ports, usb2_ports, sizeof(usb2_ports));
	memcpy(pei_data->usb3_ports, usb3_ports, sizeof(usb3_ports));
}