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/mscc,ocelot-icpu-intr.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/mscc,ocelot-icpu-intr.yaml#"
    5 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
    6 
    7 title: Microsemi Ocelot SoC ICPU Interrupt Controller
    8 
    9 maintainers:
   10   - Alexandre Belloni <alexandre.belloni@bootlin.com>
   11 
   12 allOf:
   13   - $ref: /schemas/interrupt-controller.yaml#
   14 
   15 description: |
   16   the Microsemi Ocelot interrupt controller that is part of the
   17   ICPU. It is connected directly to the MIPS core interrupt
   18   controller.
   19 
   20 properties:
   21   compatible:
   22     items:
   23       - enum:
   24           - mscc,jaguar2-icpu-intr
   25           - mscc,luton-icpu-intr
   26           - mscc,ocelot-icpu-intr
   27           - mscc,serval-icpu-intr
   28 
   29 
   30   '#interrupt-cells':
   31     const: 1
   32 
   33   '#address-cells':
   34     const: 0
   35 
   36   interrupt-controller: true
   37 
   38   reg:
   39     maxItems: 1
   40 
   41   interrupts:
   42     maxItems: 1
   43 
   44 required:
   45   - compatible
   46   - '#interrupt-cells'
   47   - '#address-cells'
   48   - interrupt-controller
   49   - reg
   50 
   51 additionalProperties: false
   52 
   53 examples:
   54   - |
   55     intc: interrupt-controller@70000070 {
   56         compatible = "mscc,ocelot-icpu-intr";
   57         reg = <0x70000070 0x70>;
   58         #interrupt-cells = <1>;
   59         #address-cells = <0>;
   60         interrupt-controller;
   61         interrupt-parent = <&cpuintc>;
   62         interrupts = <2>;
   63     };
   64 ...

Cache object: 6e7e16a2b183c8dbab3f99cbbeaecb9e


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