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/allwinner,sun7i-a20-sc-nmi.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/interrupt-controller/allwinner,sun7i-a20-sc-nmi.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Allwinner A20 Non-Maskable Interrupt Controller Device Tree Bindings
    8 
    9 maintainers:
   10   - Chen-Yu Tsai <wens@csie.org>
   11   - Maxime Ripard <mripard@kernel.org>
   12 
   13 allOf:
   14   - $ref: /schemas/interrupt-controller.yaml#
   15 
   16 properties:
   17   "#interrupt-cells":
   18     const: 2
   19     description:
   20       The first cell is the IRQ number, the second cell the trigger
   21       type as defined in interrupt.txt in this directory.
   22 
   23   compatible:
   24     oneOf:
   25       - const: allwinner,sun6i-a31-sc-nmi
   26         deprecated: true
   27       - const: allwinner,sun7i-a20-sc-nmi
   28       - items:
   29           - const: allwinner,sun8i-v3s-nmi
   30           - const: allwinner,sun9i-a80-nmi
   31       - const: allwinner,sun9i-a80-nmi
   32       - items:
   33           - const: allwinner,sun50i-a100-nmi
   34           - const: allwinner,sun9i-a80-nmi
   35 
   36   reg:
   37     maxItems: 1
   38 
   39   interrupts:
   40     maxItems: 1
   41 
   42   interrupt-controller: true
   43 
   44 required:
   45   - "#interrupt-cells"
   46   - compatible
   47   - reg
   48   - interrupts
   49   - interrupt-controller
   50 
   51 unevaluatedProperties: false
   52 
   53 examples:
   54   - |
   55     interrupt-controller@1c00030 {
   56         compatible = "allwinner,sun7i-a20-sc-nmi";
   57         interrupt-controller;
   58         #interrupt-cells = <2>;
   59         reg = <0x01c00030 0x0c>;
   60         interrupt-parent = <&gic>;
   61         interrupts = <0 0 4>;
   62     };
   63 
   64 ...

Cache object: 3b4f99ae435c11aefd12ceb15caa36b8


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