coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
usb.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef SOC_MEDIATEK_MT8183_USB_H
4 #define SOC_MEDIATEK_MT8183_USB_H
5 
6 #include <soc/usb_common.h>
7 
8 struct ssusb_sif_port {
9  struct sif_u2_phy_com u2phy;
10  u32 reserved0[64*5];
11  struct sif_u3phyd u3phyd;
12  u32 reserved1[64];
13  struct sif_u3phya u3phya;
14  struct sif_u3phya_da u3phya_da;
15  u32 reserved2[64 * 3];
16 };
17 check_member(ssusb_sif_port, u3phyd, 0x600);
18 check_member(ssusb_sif_port, u3phya, 0x800);
19 check_member(ssusb_sif_port, u3phya_da, 0x900);
20 check_member(ssusb_sif_port, reserved2, 0xa00);
21 
22 #define USB_PORT_NUMBER 1
23 
24 #endif
check_member(ssusb_sif_port, u3phyd, 0x100)
uint32_t u32
Definition: stdint.h:51
struct sif_u3phya_da u3phya_da
Definition: usb.h:13
struct sif_u3phyd u3phyd
Definition: usb.h:10
struct sif_u2_phy_com u2phy
Definition: usb.h:9
struct sif_u3phya u3phya
Definition: usb.h:12
u32 reserved2[64 *3]
Definition: usb.h:15
u32 reserved1[64 *3]
Definition: usb.h:14
u32 reserved0[64]
Definition: usb.h:11