xref: /aosp_15_r20/external/coreboot/src/soc/nvidia/tegra/usb.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __SOC_NVIDIA_TEGRA_USB_H__
4 #define __SOC_NVIDIA_TEGRA_USB_H__
5 
6 enum usb_phy_type {		/* For use in lpm_ctrl[31:29] */
7 	USB_PHY_UTMIP = 0,
8 	USB_PHY_ULPI = 2,
9 	USB_PHY_ICUSB_SER = 3,
10 	USB_PHY_HSIC = 4,
11 };
12 
13 void usb_setup_utmip(void *usb_base);
14 
15 #endif
16