diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/include/dt-bindings/phy/phy.h | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/include/dt-bindings/phy/phy.h')
-rw-r--r-- | roms/u-boot/include/dt-bindings/phy/phy.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/roms/u-boot/include/dt-bindings/phy/phy.h b/roms/u-boot/include/dt-bindings/phy/phy.h new file mode 100644 index 000000000..7e657da45 --- /dev/null +++ b/roms/u-boot/include/dt-bindings/phy/phy.h @@ -0,0 +1,23 @@ +/* + * + * This header provides constants for the phy framework + * + * Copyright (C) 2014 STMicroelectronics + * Author: Gabriel Fernandez <gabriel.fernandez@st.com> + * License terms: GNU General Public License (GPL), version 2 + */ + +#ifndef _DT_BINDINGS_PHY +#define _DT_BINDINGS_PHY + +#define PHY_NONE 0 +#define PHY_TYPE_SATA 1 +#define PHY_TYPE_PCIE 2 +#define PHY_TYPE_USB2 3 +#define PHY_TYPE_USB3 4 +#define PHY_TYPE_UFS 5 +#define PHY_TYPE_DP 6 +#define PHY_TYPE_XPCS 7 +#define PHY_TYPE_SGMII 8 + +#endif /* _DT_BINDINGS_PHY */ |