Home | History | Annotate | Line # | Download | only in phy
phy.h revision 1.1.1.1.4.2
      1 /*	$NetBSD: phy.h,v 1.1.1.1.4.2 2017/07/18 16:08:59 snj 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