1 /* $NetBSD: phy.h,v 1.1.1.4 2021/11/07 16:49:57 jmcneill Exp $ */ 2 3 /* SPDX-License-Identifier: GPL-2.0-only */ 4 /* 5 * 6 * This header provides constants for the phy framework 7 * 8 * Copyright (C) 2014 STMicroelectronics 9 * Author: Gabriel Fernandez <gabriel.fernandez@st.com> 10 */ 11 12 #ifndef _DT_BINDINGS_PHY 13 #define _DT_BINDINGS_PHY 14 15 #define PHY_NONE 0 16 #define PHY_TYPE_SATA 1 17 #define PHY_TYPE_PCIE 2 18 #define PHY_TYPE_USB2 3 19 #define PHY_TYPE_USB3 4 20 #define PHY_TYPE_UFS 5 21 #define PHY_TYPE_DP 6 22 #define PHY_TYPE_XPCS 7 23 #define PHY_TYPE_SGMII 8 24 #define PHY_TYPE_QSGMII 9 25 #define PHY_TYPE_DPHY 10 26 #define PHY_TYPE_CPHY 11 27 28 #endif /* _DT_BINDINGS_PHY */ 29