• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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