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/arm,versatile-fpga-irq.txt

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 * ARM Versatile FPGA interrupt controller
    2 
    3 One or more FPGA IRQ controllers can be synthesized in an ARM reference board
    4 such as the Integrator or Versatile family. The output of these different
    5 controllers are OR:ed together and fed to the CPU tile's IRQ input. Each
    6 instance can handle up to 32 interrupts.
    7 
    8 Required properties:
    9 - compatible: "arm,versatile-fpga-irq" or "oxsemi,ox810se-rps-irq"
   10 - interrupt-controller: Identifies the node as an interrupt controller
   11 - #interrupt-cells: The number of cells to define the interrupts.  Must be 1
   12   as the FPGA IRQ controller has no configuration options for interrupt
   13   sources.  The cell is a u32 and defines the interrupt number.
   14 - reg: The register bank for the FPGA interrupt controller.
   15 - clear-mask: a u32 number representing the mask written to clear all IRQs
   16   on the controller at boot for example.
   17 - valid-mask: a u32 number representing a bit mask determining which of
   18   the interrupts are valid. Unconnected/unused lines are set to 0, and
   19   the system till not make it possible for devices to request these
   20   interrupts.
   21 
   22 Example:
   23 
   24 pic: pic@14000000 {
   25         compatible = "arm,versatile-fpga-irq";
   26         #interrupt-cells = <1>;
   27         interrupt-controller;
   28         reg = <0x14000000 0x100>;
   29         clear-mask = <0xffffffff>;
   30         valid-mask = <0x003fffff>;
   31 };
   32 
   33 Optional properties:
   34 - interrupts: if the FPGA IRQ controller is cascaded, i.e. if its IRQ
   35   output is simply connected to the input of another IRQ controller,
   36   then the parent IRQ shall be specified in this property.

Cache object: 11a0e65f44a8ff0b37ad951fad6ea118


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