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