coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
pei_data.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <soc/pei_data.h>
4 #include <soc/pei_wrapper.h>
5 
7 {
8  pei_data->ec_present = 1;
9 
10  /* P0: Side USB3.0 port, USB3S1 */
12  /* P1: Rear USB3.0 port, USB3R1 */
14  /* P2: Rear USB3.0 port, USB3R2 */
16  /* P3: Card Reader, CRS1 */
18  /* P4: Rear USB2.0 port, USB2R1 */
20  /* P5: 2D Camera */
22  /* P6: VP8 */
24  /* P7: WLAN & BT */
26 
27  /* P1: Side USB3.0 port, USB3S1 */
28  pei_data_usb3_port(pei_data, 0, 1, 0, 0);
29  /* P2: Rear USB3.0 port, USB3R1 */
30  pei_data_usb3_port(pei_data, 1, 1, 0, 0);
31  /* P3: Rear USB3.0 port, USB3R2 */
32  pei_data_usb3_port(pei_data, 2, 1, 1, 0);
33  /* P4: Card Reader, CRS1 */
35 }
static void pei_data_usb2_port(struct pei_data *pei_data, int port, uint16_t length, uint8_t enable, uint8_t oc_pin, uint8_t location)
Definition: pei_wrapper.h:10
static void pei_data_usb3_port(struct pei_data *pei_data, int port, uint8_t enable, uint8_t oc_pin, uint8_t fixed_eq)
Definition: pei_wrapper.h:20
void mainboard_fill_pei_data(struct pei_data *pei_data)
Definition: pei_data.c:6
#define USB_OC_PIN_SKIP
Definition: pei_data.h:27
@ USB_PORT_MINI_PCIE
Definition: pei_data.h:33
@ USB_PORT_INTERNAL
Definition: pei_data.h:35
int ec_present
Definition: pei_data.h:62