repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
arch/riscv: Fix compiler argument for clang
[coreboot.git]
/
src
/
soc
/
nvidia
/
tegra
/
usb.h
blob
c6336e54e266f67efbb989791600d1b7929a9a2f
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