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 70 71 72 73 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/usb/brcm,usb-pinmap.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Broadcom USB pin map Controller maintainers: - Al Cooper <alcooperx@gmail.com> properties: compatible: items: - const: brcm,usb-pinmap reg: maxItems: 1 interrupts: maxItems: 1 description: Interrupt for signals mirrored to out-gpios. in-gpios: minItems: 1 maxItems: 2 description: Array of one or two GPIO pins used for input signals. brcm,in-functions: $ref: /schemas/types.yaml#/definitions/string-array description: Array of input signal names, one per gpio in in-gpios. brcm,in-masks: $ref: /schemas/types.yaml#/definitions/uint32-array description: Array of enable and mask pairs, one per gpio in-gpios. out-gpios: maxItems: 1 description: Array of one GPIO pin used for output signals. brcm,out-functions: $ref: /schemas/types.yaml#/definitions/string-array description: Array of output signal names, one per gpio in out-gpios. brcm,out-masks: $ref: /schemas/types.yaml#/definitions/uint32-array description: Array of enable, value, changed and clear masks, one per gpio in out-gpios. required: - compatible - reg additionalProperties: false dependencies: in-gpios: [ interrupts ] examples: - | usb_pinmap: usb-pinmap@22000d0 { compatible = "brcm,usb-pinmap"; reg = <0x22000d0 0x4>; in-gpios = <&gpio 18 0>, <&gpio 19 0>; brcm,in-functions = "VBUS", "PWRFLT"; brcm,in-masks = <0x8000 0x40000 0x10000 0x80000>; out-gpios = <&gpio 20 0>; brcm,out-functions = "PWRON"; brcm,out-masks = <0x20000 0x800000 0x400000 0x200000>; interrupts = <0x0 0xb2 0x4>; }; ... |