mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-28 09:22:08 +00:00

Add compatible for the HDPTX PHY on rk3576, which is compatible with rk3588, but without rst_phy/rst_ropll/rst_lcpll. In fact, these three reset lines are also optional on the rk3588, they just used for debug, then they were removed on the rk3576 IC design. Signed-off-by: Andy Yan <andy.yan@rock-chips.com> Reviewed-by: Rob Herring (Arm) <robh@kernel.org> Reviewed-by: Heiko Stuebner <heiko@sntech.de> Link: https://lore.kernel.org/r/20241231092721.252405-1-andyshrk@163.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
121 lines
2.6 KiB
YAML
121 lines
2.6 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/phy/rockchip,rk3588-hdptx-phy.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Rockchip SoC HDMI/eDP Transmitter Combo PHY
|
|
|
|
maintainers:
|
|
- Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
|
|
|
|
properties:
|
|
compatible:
|
|
oneOf:
|
|
- enum:
|
|
- rockchip,rk3588-hdptx-phy
|
|
- items:
|
|
- enum:
|
|
- rockchip,rk3576-hdptx-phy
|
|
- const: rockchip,rk3588-hdptx-phy
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
items:
|
|
- description: Reference clock
|
|
- description: APB clock
|
|
|
|
clock-names:
|
|
items:
|
|
- const: ref
|
|
- const: apb
|
|
|
|
"#clock-cells":
|
|
const: 0
|
|
|
|
"#phy-cells":
|
|
const: 0
|
|
|
|
resets:
|
|
minItems: 4
|
|
maxItems: 7
|
|
|
|
reset-names:
|
|
minItems: 4
|
|
maxItems: 7
|
|
|
|
rockchip,grf:
|
|
$ref: /schemas/types.yaml#/definitions/phandle
|
|
description: Some PHY related data is accessed through GRF regs.
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
- clock-names
|
|
- "#phy-cells"
|
|
- resets
|
|
- reset-names
|
|
- rockchip,grf
|
|
|
|
allOf:
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
contains:
|
|
enum:
|
|
- rockchip,rk3576-hdptx-phy
|
|
then:
|
|
properties:
|
|
resets:
|
|
minItems: 4
|
|
maxItems: 4
|
|
reset-names:
|
|
items:
|
|
- const: apb
|
|
- const: init
|
|
- const: cmn
|
|
- const: lane
|
|
else:
|
|
properties:
|
|
resets:
|
|
minItems: 7
|
|
maxItems: 7
|
|
reset-names:
|
|
items:
|
|
- const: phy
|
|
- const: apb
|
|
- const: init
|
|
- const: cmn
|
|
- const: lane
|
|
- const: ropll
|
|
- const: lcpll
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/clock/rockchip,rk3588-cru.h>
|
|
#include <dt-bindings/reset/rockchip,rk3588-cru.h>
|
|
|
|
soc {
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
|
|
phy@fed60000 {
|
|
compatible = "rockchip,rk3588-hdptx-phy";
|
|
reg = <0x0 0xfed60000 0x0 0x2000>;
|
|
clocks = <&cru CLK_USB2PHY_HDPTXRXPHY_REF>, <&cru PCLK_HDPTX0>;
|
|
clock-names = "ref", "apb";
|
|
#phy-cells = <0>;
|
|
resets = <&cru SRST_HDPTX0>, <&cru SRST_P_HDPTX0>,
|
|
<&cru SRST_HDPTX0_INIT>, <&cru SRST_HDPTX0_CMN>,
|
|
<&cru SRST_HDPTX0_LANE>, <&cru SRST_HDPTX0_ROPLL>,
|
|
<&cru SRST_HDPTX0_LCPLL>;
|
|
reset-names = "phy", "apb", "init", "cmn", "lane", "ropll", "lcpll";
|
|
rockchip,grf = <&hdptxphy_grf>;
|
|
};
|
|
};
|