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/ti,omap2-intc.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 * OMAP Interrupt Controller
    2 
    3 OMAP2/3 are using a TI interrupt controller that can support several
    4 configurable number of interrupts.
    5 
    6 Main node required properties:
    7 
    8 - compatible : should be:
    9         "ti,omap2-intc"
   10 - interrupt-controller : Identifies the node as an interrupt controller
   11 - #interrupt-cells : Specifies the number of cells needed to encode an
   12   interrupt source. The type shall be a <u32> and the value shall be 1.
   13 
   14   The cell contains the interrupt number in the range [0-128].
   15 - ti,intc-size: Number of interrupts handled by the interrupt controller.
   16 - reg: physical base address and size of the intc registers map.
   17 
   18 Example:
   19 
   20         intc: interrupt-controller@1 {
   21                 compatible = "ti,omap2-intc";
   22                 interrupt-controller;
   23                 #interrupt-cells = <1>;
   24                 ti,intc-size = <96>;
   25                 reg = <0x48200000 0x1000>;
   26         };
   27 

Cache object: 81cd07b75f4db920bc24ff0aa25a7902


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