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/interrupt-controller/fsl,intmux.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/interrupt-controller/fsl,intmux.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Freescale INTMUX interrupt multiplexer
    8 
    9 maintainers:
   10   - Joakim Zhang <qiangqing.zhang@nxp.com>
   11 
   12 properties:
   13   compatible:
   14     const: fsl,imx-intmux
   15 
   16   reg:
   17     maxItems: 1
   18 
   19   interrupts:
   20     minItems: 1
   21     maxItems: 8
   22     description: |
   23       Should contain the parent interrupt lines (up to 8) used to multiplex
   24       the input interrupts.
   25 
   26   interrupt-controller: true
   27 
   28   '#interrupt-cells':
   29     const: 2
   30     description: |
   31       The 1st cell is hw interrupt number, the 2nd cell is channel index.
   32 
   33   clocks:
   34     maxItems: 1
   35 
   36   clock-names:
   37     const: ipg
   38 
   39 required:
   40   - compatible
   41   - reg
   42   - interrupts
   43   - interrupt-controller
   44   - '#interrupt-cells'
   45   - clocks
   46   - clock-names
   47 
   48 additionalProperties: false
   49 
   50 examples:
   51   - |
   52     interrupt-controller@37400000 {
   53         compatible = "fsl,imx-intmux";
   54         reg = <0x37400000 0x1000>;
   55         interrupts = <0 16 4>,
   56                      <0 17 4>,
   57                      <0 18 4>,
   58                      <0 19 4>,
   59                      <0 20 4>,
   60                      <0 21 4>,
   61                      <0 22 4>,
   62                      <0 23 4>;
   63         interrupt-controller;
   64         interrupt-parent = <&gic>;
   65         #interrupt-cells = <2>;
   66         clocks = <&clk>;
   67         clock-names = "ipg";
   68     };

Cache object: 669a1d28f00731f7ee274394677f865d


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