mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
bb5b94f5bb
Document a new phy-type property which will be used to determine whether the phy should operate in D-PHY or C-PHY mode. Signed-off-by: Jonathan Marek <jonathan@marek.ca> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Link: https://lore.kernel.org/r/20210617144349.28448-3-jonathan@marek.ca Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Rob Clark <robdclark@chromium.org>
27 lines
590 B
C
27 lines
590 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
*
|
|
* This header provides constants for the phy framework
|
|
*
|
|
* Copyright (C) 2014 STMicroelectronics
|
|
* Author: Gabriel Fernandez <gabriel.fernandez@st.com>
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_PHY
|
|
#define _DT_BINDINGS_PHY
|
|
|
|
#define PHY_NONE 0
|
|
#define PHY_TYPE_SATA 1
|
|
#define PHY_TYPE_PCIE 2
|
|
#define PHY_TYPE_USB2 3
|
|
#define PHY_TYPE_USB3 4
|
|
#define PHY_TYPE_UFS 5
|
|
#define PHY_TYPE_DP 6
|
|
#define PHY_TYPE_XPCS 7
|
|
#define PHY_TYPE_SGMII 8
|
|
#define PHY_TYPE_QSGMII 9
|
|
#define PHY_TYPE_DPHY 10
|
|
#define PHY_TYPE_CPHY 11
|
|
|
|
#endif /* _DT_BINDINGS_PHY */
|