summaryrefslogtreecommitdiff
path: root/src/mainboard/dell/latitude_e7240_bdw/pei_data.c
blob: a8fca1ec6ddd013650f429b5bd62523bffcce06b (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
/* SPDX-License-Identifier: GPL-2.0-only */

#include <soc/pei_data.h>
#include <soc/pei_wrapper.h>

void mainboard_fill_pei_data(struct pei_data *pei_data)
{
	pei_data->ec_present = 1;

	pei_data->dimm_channel0_disabled = 2;
	pei_data->dimm_channel1_disabled = 2;
	pei_data->spd_addresses[0] = 0xa0;
	pei_data->spd_addresses[2] = 0xa4;

	pei_data_usb2_port(pei_data, 0, 0x0040, 1, 0, USB_PORT_BACK_PANEL); /* dock left */
	pei_data_usb2_port(pei_data, 1, 0x0040, 1, 1, USB_PORT_BACK_PANEL); /* right, EHCI debug */
	pei_data_usb2_port(pei_data, 2, 0x0080, 1, USB_OC_PIN_SKIP, USB_PORT_DOCK);
	pei_data_usb2_port(pei_data, 3, 0x0040, 1, USB_OC_PIN_SKIP, USB_PORT_BACK_PANEL); /* webcam */
	pei_data_usb2_port(pei_data, 4, 0x0040, 1, USB_OC_PIN_SKIP, USB_PORT_BACK_PANEL);
	pei_data_usb2_port(pei_data, 5, 0x0110, 1, 2, USB_PORT_BACK_PANEL); /* back right, dock back */
	pei_data_usb2_port(pei_data, 6, 0x0040, 1, USB_OC_PIN_SKIP, USB_PORT_DOCK); /* WWAN */
	pei_data_usb2_port(pei_data, 7, 0x0040, 1, USB_OC_PIN_SKIP, USB_PORT_BACK_PANEL);

	pei_data_usb3_port(pei_data, 0, 1, 1, 0);
	pei_data_usb3_port(pei_data, 1, 1, 0, 0);
	pei_data_usb3_port(pei_data, 2, 1, 2, 0);
	pei_data_usb3_port(pei_data, 3, 1, USB_OC_PIN_SKIP, 0);
}