Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 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 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) # Copyright (c) 2020 MediaTek %YAML 1.2 --- $id: http://devicetree.org/schemas/phy/mediatek,ufs-phy.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: MediaTek Universal Flash Storage (UFS) M-PHY maintainers: - Stanley Chu <stanley.chu@mediatek.com> - Chunfeng Yun <chunfeng.yun@mediatek.com> description: | UFS M-PHY nodes are defined to describe on-chip UFS M-PHY hardware macro. Each UFS M-PHY node should have its own node. To bind UFS M-PHY with UFS host controller, the controller node should contain a phandle reference to UFS M-PHY node. properties: $nodename: pattern: "^ufs-phy@[0-9a-f]+$" compatible: oneOf: - items: - enum: - mediatek,mt8195-ufsphy - const: mediatek,mt8183-ufsphy - const: mediatek,mt8183-ufsphy reg: maxItems: 1 clocks: items: - description: Unipro core control clock. - description: M-PHY core control clock. clock-names: items: - const: unipro - const: mp "#phy-cells": const: 0 required: - compatible - reg - "#phy-cells" - clocks - clock-names additionalProperties: false examples: - | #include <dt-bindings/clock/mt8183-clk.h> ufsphy: ufs-phy@11fa0000 { compatible = "mediatek,mt8183-ufsphy"; reg = <0x11fa0000 0xc000>; clocks = <&infracfg CLK_INFRA_UNIPRO_SCK>, <&infracfg CLK_INFRA_UFS_MP_SAP_BCLK>; clock-names = "unipro", "mp"; #phy-cells = <0>; }; ... |