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/marvell,orion-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 Marvell Orion SoC interrupt controllers
    2 
    3 * Main interrupt controller
    4 
    5 Required properties:
    6 - compatible: shall be "marvell,orion-intc"
    7 - reg: base address(es) of interrupt registers starting with CAUSE register
    8 - interrupt-controller: identifies the node as an interrupt controller
    9 - #interrupt-cells: number of cells to encode an interrupt source, shall be 1
   10 
   11 The interrupt sources map to the corresponding bits in the interrupt
   12 registers, i.e.
   13 - 0 maps to bit 0 of first base address,
   14 - 1 maps to bit 1 of first base address,
   15 - 32 maps to bit 0 of second base address, and so on.
   16 
   17 Example:
   18         intc: interrupt-controller {
   19                 compatible = "marvell,orion-intc";
   20                 interrupt-controller;
   21                 #interrupt-cells = <1>;
   22                  /* Dove has 64 first level interrupts */
   23                 reg = <0x20200 0x10>, <0x20210 0x10>;
   24         };
   25 
   26 * Bridge interrupt controller
   27 
   28 Required properties:
   29 - compatible: shall be "marvell,orion-bridge-intc"
   30 - reg: base address of bridge interrupt registers starting with CAUSE register
   31 - interrupts: bridge interrupt of the main interrupt controller
   32 - interrupt-controller: identifies the node as an interrupt controller
   33 - #interrupt-cells: number of cells to encode an interrupt source, shall be 1
   34 
   35 Optional properties:
   36 - marvell,#interrupts: number of interrupts provided by bridge interrupt
   37       controller, defaults to 32 if not set
   38 
   39 Example:
   40         bridge_intc: interrupt-controller {
   41                 compatible = "marvell,orion-bridge-intc";
   42                 interrupt-controller;
   43                 #interrupt-cells = <1>;
   44                 reg = <0x20110 0x8>;
   45                 interrupts = <0>;
   46                 /* Dove bridge provides 5 interrupts */
   47                 marvell,#interrupts = <5>;
   48         };

Cache object: f1cb69f5d8a99fde6297983db55efdf0


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