Documentation / devicetree / bindings / pinctrl / microchip,pic64gx-pinctrl-gpio2.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
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
%YAML 1.2
---
$id: http://devicetree.org/schemas/pinctrl/microchip,pic64gx-pinctrl-gpio2.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Microchip PIC64GX GPIO2 Mux

maintainers:
  - Conor Dooley <conor.dooley@microchip.com>

description:
  The "GPIO2 Mux" determines whether GPIO2 or select other functions are
  available on package pins on PIC64GX. Some of these functions must be
  mapped to this mux via iomux0 for settings here to have any impact.

properties:
  compatible:
    const: microchip,pic64gx-pinctrl-gpio2

  reg:
    maxItems: 1

  pinctrl-use-default: true

patternProperties:
  '^mux-':
    type: object
    $ref: pinmux-node.yaml
    additionalProperties: false

    properties:
      function:
        description:
          A string containing the name of the function to mux to the group.
        enum: [ mdio0, mdio1, spi0, can0, pcie, qspi, uart3, uart4, can1, uart2, gpio ]

      groups:
        description:
          An array of strings. Each string contains the name of a group.
        items:
          enum: [ mdio0, mdio1, spi0, can0, pcie, qspi, uart3, uart4, can1, uart2,
                  gpio_mdio0, gpio_mdio1, gpio_spi0, gpio_can0, gpio_pcie,
                  gpio_qspi, gpio_uart3, gpio_uart4, gpio_can1, gpio_uart2 ]

    required:
      - function
      - groups

required:
  - compatible
  - reg

additionalProperties: false

examples:
  - |
    pinctrl@41000000 {
      compatible = "microchip,pic64gx-pinctrl-gpio2";
      reg = <0x41000000 0x4>;
      pinctrl-use-default;
      pinctrl-names = "default";
      pinctrl-0 = <&mdio0_gpio2>, <&mdio1_gpio2>, <&spi0_gpio2>, <&qspi_gpio2>,
                  <&uart3_gpio2>, <&uart4_gpio2>, <&can1_gpio2>, <&can0_gpio2>,
                  <&uart2_gpio2>;
 
      mux-gpio2 {
        function = "gpio";
        groups = "gpio_mdio1", "gpio_spi0", "gpio_can0", "gpio_pcie",
                 "gpio_qspi", "gpio_uart3", "gpio_uart4", "gpio_can1";
      };
    };

...