1 /* $NetBSD: phy.h,v 1.1 2017/06/15 20:14:23 jmcneill 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 21 #endif /* _DT_BINDINGS_PHY */ 22