Documentation / devicetree / bindings / pinctrl / marvell,berlin2-soc-pinctrl.yaml


Based on kernel version 6.19. Page generated on 2026-02-12 08:38 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
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/pinctrl/marvell,berlin2-soc-pinctrl.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Marvell Berlin pin-controller driver

maintainers:
  - Antoine Tenart <atenart@kernel.org>
  - Jisheng Zhang <jszhang@kernel.org>

description: >
  Pin control registers are part of both chip controller and system controller
  register sets. Pin controller nodes should be a sub-node of either the chip
  controller or system controller node. The pins controlled are organized in
  groups, so no actual pin information is needed.
 
  A pin-controller node should contain subnodes representing the pin group
  configurations, one per function. Each subnode has the group name and the
  muxing function used.
 
  Be aware the Marvell Berlin datasheets use the keyword 'mode' for what is
  called a 'function' in the pin-controller subsystem.

properties:
  compatible:
    items:
      - enum:
          - marvell,berlin2-soc-pinctrl
          - marvell,berlin2-system-pinctrl
          - marvell,berlin2cd-soc-pinctrl
          - marvell,berlin2cd-system-pinctrl
          - marvell,berlin2q-soc-pinctrl
          - marvell,berlin2q-system-pinctrl
          - marvell,berlin4ct-avio-pinctrl
          - marvell,berlin4ct-soc-pinctrl
          - marvell,berlin4ct-system-pinctrl
          - syna,as370-soc-pinctrl

  reg:
    maxItems: 1

additionalProperties:
  description: Pin group configuration subnodes.
  type: object
  $ref: /schemas/pinctrl/pinmux-node.yaml#
  additionalProperties: false

  properties:
    groups:
      description: List of pin group names.
      $ref: /schemas/types.yaml#/definitions/string-array

    function:
      description: Function used to mux the group.
      $ref: /schemas/types.yaml#/definitions/string

  required:
    - groups
    - function

allOf:
  - if:
      properties:
        compatible:
          contains:
            enum:
              - marvell,berlin4ct-avio-pinctrl
              - marvell,berlin4ct-soc-pinctrl
              - marvell,berlin4ct-system-pinctrl
              - syna,as370-soc-pinctrl
    then:
      required:
        - reg

examples:
  - |
    pinctrl {
        compatible = "marvell,berlin2q-system-pinctrl";
 
        uart0-pmux {
            groups = "GSM12";
            function = "uart0";
        };
    };