Home | History | Annotate | Line # | Download | only in phy
phy.h revision 1.1.1.2.6.1
      1 /*	$NetBSD: phy.h,v 1.1.1.2.6.1 2020/04/08 14:08:47 martin 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 (at) 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 
     22 #endif /* _DT_BINDINGS_PHY */
     23