1 /* $NetBSD: phy.h,v 1.1.1.2.2.2 2017/12/03 11:38:39 jdolecek Exp $ */ 2 3 /* 4 * 5 * This header provides constants for the phy framework 6 * 7 * Copyright (C) 2014 STMicroelectronics 8 * Author: Gabriel Fernandez <gabriel.fernandez (at) st.com> 9 * License terms: GNU General Public License (GPL), version 2 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 22 #endif /* _DT_BINDINGS_PHY */ 23