xref: /OK3568_Linux_fs/u-boot/include/generic-phy-pcie.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (C) 2021 Rockchip Inc.
4  */
5 
6 #ifndef __PHY_PCIE_H_
7 #define __PHY_PCIE_H_
8 
9 /**
10  * struct phy_configure_opts_pcie - PCIe PHY configuration set
11  *
12  * This structure is used to represent the configuration state of a
13  * PCIe phy.
14  */
15 struct phy_configure_opts_pcie {
16 	bool is_bifurcation; /* Bifurcation mode support */
17 };
18 
19 #endif /* __PHY_PCIE_H_ */
20