The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/pinctrl/fsl,imx8mq-pinctrl.yaml

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # SPDX-License-Identifier: GPL-2.0
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/pinctrl/fsl,imx8mq-pinctrl.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Freescale IMX8MQ IOMUX Controller
    8 
    9 maintainers:
   10   - Anson Huang <Anson.Huang@nxp.com>
   11 
   12 description:
   13   Please refer to fsl,imx-pinctrl.txt and pinctrl-bindings.txt in this directory
   14   for common binding part and usage.
   15 
   16 properties:
   17   compatible:
   18     const: fsl,imx8mq-iomuxc
   19 
   20   reg:
   21     maxItems: 1
   22 
   23 # Client device subnode's properties
   24 patternProperties:
   25   'grp$':
   26     type: object
   27     description:
   28       Pinctrl node's client devices use subnodes for desired pin configuration.
   29       Client device subnodes use below standard properties.
   30 
   31     properties:
   32       fsl,pins:
   33         description:
   34           each entry consists of 6 integers and represents the mux and config
   35           setting for one pin. The first 5 integers <mux_reg conf_reg input_reg
   36           mux_val input_val> are specified using a PIN_FUNC_ID macro, which can
   37           be found in <arch/arm64/boot/dts/freescale/imx8mq-pinfunc.h>. The last
   38           integer CONFIG is the pad setting value like pull-up on this pin. Please
   39           refer to i.MX8M Quad Reference Manual for detailed CONFIG settings.
   40         $ref: /schemas/types.yaml#/definitions/uint32-matrix
   41         items:
   42           items:
   43             - description: |
   44                 "mux_reg" indicates the offset of mux register.
   45             - description: |
   46                 "conf_reg" indicates the offset of pad configuration register.
   47             - description: |
   48                 "input_reg" indicates the offset of select input register.
   49             - description: |
   50                 "mux_val" indicates the mux value to be applied.
   51             - description: |
   52                 "input_val" indicates the select input value to be applied.
   53             - description: |
   54                 "pad_setting" indicates the pad configuration value to be applied.
   55 
   56     required:
   57       - fsl,pins
   58 
   59     additionalProperties: false
   60 
   61 allOf:
   62   - $ref: "pinctrl.yaml#"
   63 
   64 required:
   65   - compatible
   66   - reg
   67 
   68 additionalProperties: false
   69 
   70 examples:
   71   # Pinmux controller node
   72   - |
   73     iomuxc: pinctrl@30330000 {
   74         compatible = "fsl,imx8mq-iomuxc";
   75         reg = <0x30330000 0x10000>;
   76 
   77         pinctrl_uart1: uart1grp {
   78             fsl,pins =
   79                 <0x234 0x49C 0x4F4 0x0 0x0      0x49>,
   80                 <0x238 0x4A0 0x4F4 0x0 0x0      0x49>;
   81         };
   82     };
   83 
   84 ...

Cache object: c91d684de1627100ba3d9860b978296c


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.