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: Add Canaan K230 USB PHY

K230 SoC USB PHY requires configuring registers for control and
configuration. Add USB phy bindings for K230 SoC.

Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
Signed-off-by: Jiayu Du <jiayu.riscv@isrc.iscas.ac.cn>
Link: https://patch.msgid.link/20260121145526.14672-2-jiayu.riscv@isrc.iscas.ac.cn
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Jiayu Du and committed by
Vinod Koul
50357e7d 8d869bc9

+35
+35
Documentation/devicetree/bindings/phy/canaan,k230-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/canaan,k230-usb-phy.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Canaan K230 USB2.0 PHY 8 + 9 + maintainers: 10 + - Jiayu Du <jiayu.riscv@isrc.iscas.ac.cn> 11 + 12 + properties: 13 + compatible: 14 + const: canaan,k230-usb-phy 15 + 16 + reg: 17 + maxItems: 1 18 + 19 + "#phy-cells": 20 + const: 1 21 + 22 + required: 23 + - compatible 24 + - reg 25 + - "#phy-cells" 26 + 27 + additionalProperties: false 28 + 29 + examples: 30 + - | 31 + usbphy: usb-phy@91585000 { 32 + compatible = "canaan,k230-usb-phy"; 33 + reg = <0x91585000 0x400>; 34 + #phy-cells = <1>; 35 + };