Based on kernel version 6.17. Page generated on 2025-10-03 10:04 EST.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause %YAML 1.2 --- $id: http://devicetree.org/schemas/phy/samsung,mipi-video-phy.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Samsung S5P/Exynos SoC MIPI CSIS/DSIM DPHY maintainers: - Krzysztof Kozlowski <krzk@kernel.org> - Marek Szyprowski <m.szyprowski@samsung.com> - Sylwester Nawrocki <s.nawrocki@samsung.com> description: | For samsung,s5pv210-mipi-video-phy compatible PHYs the second cell in the PHY specifier identifies the PHY and its meaning is as follows:: 0 - MIPI CSIS 0, 1 - MIPI DSIM 0, 2 - MIPI CSIS 1, 3 - MIPI DSIM 1. samsung,exynos5420-mipi-video-phy and samsung,exynos5433-mipi-video-phy support additional fifth PHY:: 4 - MIPI CSIS 2. properties: compatible: enum: - samsung,s5pv210-mipi-video-phy - samsung,exynos5420-mipi-video-phy - samsung,exynos5433-mipi-video-phy - samsung,exynos7870-mipi-video-phy "#phy-cells": const: 1 syscon: $ref: /schemas/types.yaml#/definitions/phandle deprecated: true description: Phandle to PMU system controller interface, valid only for samsung,s5pv210-mipi-video-phy and samsung,exynos5420-mipi-video-phy (if not a child of PMU). samsung,pmu-syscon: $ref: /schemas/types.yaml#/definitions/phandle deprecated: true description: Phandle to PMU system controller interface, valid for samsung,exynos5433-mipi-video-phy and samsung,exynos7870-mipi-video-phy (if not a child of PMU). samsung,disp-sysreg: $ref: /schemas/types.yaml#/definitions/phandle description: Phandle to DISP system controller interface, valid for samsung,exynos5433-mipi-video-phy and samsung,exynos7870-mipi-video-phy. samsung,cam0-sysreg: $ref: /schemas/types.yaml#/definitions/phandle description: Phandle to CAM0 system controller interface, valid for samsung,exynos5433-mipi-video-phy and samsung,exynos7870-mipi-video-phy. samsung,cam1-sysreg: $ref: /schemas/types.yaml#/definitions/phandle description: Phandle to CAM1 system controller interface, valid for samsung,exynos5433-mipi-video-phy. required: - compatible - "#phy-cells" allOf: - if: properties: compatible: contains: enum: - samsung,s5pv210-mipi-video-phy - samsung,exynos5420-mipi-video-phy then: properties: samsung,pmu-syscon: false samsung,disp-sysreg: false samsung,cam0-sysreg: false samsung,cam1-sysreg: false - if: properties: compatible: contains: const: samsung,exynos5433-mipi-video-phy then: properties: syscon: false required: - samsung,disp-sysreg - samsung,cam0-sysreg - samsung,cam1-sysreg - if: properties: compatible: contains: const: samsung,exynos7870-mipi-video-phy then: properties: syscon: false samsung,cam1-sysreg: false required: - samsung,disp-sysreg - samsung,cam0-sysreg additionalProperties: false examples: - | phy { compatible = "samsung,exynos5433-mipi-video-phy"; #phy-cells = <1>; samsung,cam0-sysreg = <&syscon_cam0>; samsung,cam1-sysreg = <&syscon_cam1>; samsung,disp-sysreg = <&syscon_disp>; }; - | phy { compatible = "samsung,s5pv210-mipi-video-phy"; syscon = <&pmu_system_controller>; #phy-cells = <1>; }; |