mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
7ce9d921bd
Make sure that both files are in sync to have the same values in DTs. The patch is fixing SPDX license as is used in the kernel and adding new values for PHY_TYPE_DPHY and PHY_TYPE_CPHY. SPDX license change was done by: Link: https://lkml.kernel.org/r/20190528170027.447718015@linutronix.de and new value added by: Link: https://lore.kernel.org/r/20210617144349.28448-3-jonathan@marek.ca Signed-off-by: Michal Simek <michal.simek@xilinx.com> Link: https://lore.kernel.org/r/06dbc03d4c9ac5d621341d8fb8cc16f489062b39.1648113469.git.michal.simek@xilinx.com
26 lines
590 B
C
26 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 */
|