Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: phy: Convert marvell,mmp2-usb-phy to DT schema

Convert the Marvell MMP2 USB PHY binding to DT schema format. It's a
straight forward conversion.

Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
Link: https://lore.kernel.org/r/20250607212613.743515-1-robh@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Rob Herring (Arm) and committed by
Vinod Koul
fbcc4937 50355ac7

+38 -18
+38
Documentation/devicetree/bindings/phy/marvell,mmp2-usb-phy.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/phy/marvell,mmp2-usb-phy.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Marvell MMP2/PXA USB PHY 8 + 9 + maintainers: 10 + - Lubomir Rintel <lkundrak@v3.sk> 11 + 12 + properties: 13 + compatible: 14 + enum: 15 + - marvell,mmp2-usb-phy 16 + - marvell,pxa910-usb-phy 17 + - marvell,pxa168-usb-phy 18 + 19 + reg: 20 + maxItems: 1 21 + 22 + "#phy-cells": 23 + const: 0 24 + 25 + required: 26 + - compatible 27 + - "#phy-cells" 28 + 29 + additionalProperties: false 30 + 31 + examples: 32 + - | 33 + usbphy@d4207000 { 34 + compatible = "marvell,mmp2-usb-phy"; 35 + reg = <0xd4207000 0x40>; 36 + #phy-cells = <0>; 37 + status = "okay"; 38 + };
-18
Documentation/devicetree/bindings/phy/phy-pxa-usb.txt
··· 1 - Marvell PXA USB PHY 2 - ------------------- 3 - 4 - Required properties: 5 - - compatible: one of: "marvell,mmp2-usb-phy", "marvell,pxa910-usb-phy", 6 - "marvell,pxa168-usb-phy", 7 - - #phy-cells: must be 0 8 - 9 - Example: 10 - usb-phy: usbphy@d4207000 { 11 - compatible = "marvell,mmp2-usb-phy"; 12 - reg = <0xd4207000 0x40>; 13 - #phy-cells = <0>; 14 - status = "okay"; 15 - }; 16 - 17 - This document explains the device tree binding. For general 18 - information about PHY subsystem refer to Documentation/driver-api/phy/phy.rst