1# SPDX-License-Identifier: GPL-2.0 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/phy/rockchip,rk3399-pcie-phy.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Rockchip RK3399 PCIE PHY 8 9maintainers: 10 - Heiko Stuebner <heiko@sntech.de> 11 12properties: 13 compatible: 14 const: rockchip,rk3399-pcie-phy 15 16 '#phy-cells': 17 oneOf: 18 - const: 0 19 deprecated: true 20 - const: 1 21 description: One lane per phy mode 22 23 clocks: 24 maxItems: 1 25 26 clock-names: 27 const: refclk 28 29 resets: 30 maxItems: 1 31 32 reset-names: 33 const: phy 34 35required: 36 - compatible 37 - '#phy-cells' 38 - clocks 39 - clock-names 40 - resets 41 - reset-names 42 43additionalProperties: false 44 45... 46