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/nvmem/imx-iim.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 OR BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/nvmem/imx-iim.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Freescale i.MX IC Identification Module (IIM) device tree bindings
    8 
    9 maintainers:
   10   - Anson Huang <Anson.Huang@nxp.com>
   11 
   12 description: |
   13   This binding represents the IC Identification Module (IIM) found on
   14   i.MX25, i.MX27, i.MX31, i.MX35, i.MX51 and i.MX53 SoCs.
   15 
   16 allOf:
   17   - $ref: "nvmem.yaml#"
   18 
   19 properties:
   20   compatible:
   21     enum:
   22       - fsl,imx25-iim
   23       - fsl,imx27-iim
   24       - fsl,imx31-iim
   25       - fsl,imx35-iim
   26       - fsl,imx51-iim
   27       - fsl,imx53-iim
   28 
   29   reg:
   30     maxItems: 1
   31 
   32   interrupts:
   33     maxItems: 1
   34 
   35   clocks:
   36     maxItems: 1
   37 
   38 required:
   39   - compatible
   40   - reg
   41   - interrupts
   42   - clocks
   43 
   44 additionalProperties: false
   45 
   46 examples:
   47   - |
   48     #include <dt-bindings/clock/imx5-clock.h>
   49 
   50     iim: efuse@63f98000 {
   51         compatible = "fsl,imx53-iim";
   52         reg = <0x63f98000 0x4000>;
   53         interrupts = <69>;
   54         clocks = <&clks IMX5_CLK_IIM_GATE>;
   55     };
   56 
   57 ...

Cache object: 037d4d9ec7249f75bd35635ec25fd159


[ 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.