mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 09:27:35 +00:00
10a99f0c22
Add binding for reference clock PAD modes of the i.MX8 PCIe PHY. Signed-off-by: Richard Zhu <hongxing.zhu@nxp.com> Tested-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> Reviewed-by: Tim Harvey <tharvey@gateworks.com> Tested-by: Tim Harvey <tharvey@gateworks.com> Reviewed-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/1638432158-4119-2-git-send-email-hongxing.zhu@nxp.com Signed-off-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: Marek Vasut <marex@denx.de> # Pick from Linux f6f787874aa5 ("dt-bindings: phy: phy-imx8-pcie: Add binding for the pad modes of imx8 pcie phy")
14 lines
357 B
C
14 lines
357 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* This header provides constants for i.MX8 PCIe.
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_IMX8_PCIE_H
|
|
#define _DT_BINDINGS_IMX8_PCIE_H
|
|
|
|
/* Reference clock PAD mode */
|
|
#define IMX8_PCIE_REFCLK_PAD_UNUSED 0
|
|
#define IMX8_PCIE_REFCLK_PAD_INPUT 1
|
|
#define IMX8_PCIE_REFCLK_PAD_OUTPUT 2
|
|
|
|
#endif /* _DT_BINDINGS_IMX8_PCIE_H */
|