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/brcm,bcm3380-l2-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 Broadcom BCM3380-style Level 1 / Level 2 interrupt controller
    2 
    3 This interrupt controller shows up in various forms on many BCM338x/BCM63xx
    4 chipsets.  It has the following properties:
    5 
    6 - outputs a single interrupt signal to its interrupt controller parent
    7 
    8 - contains one or more enable/status word pairs, which often appear at
    9   different offsets in different blocks
   10 
   11 - no atomic set/clear operations
   12 
   13 Required properties:
   14 
   15 - compatible: should be "brcm,bcm3380-l2-intc"
   16 - reg: specifies one or more enable/status pairs, in the following format:
   17   <enable_reg 0x4 status_reg 0x4>...
   18 - interrupt-controller: identifies the node as an interrupt controller
   19 - #interrupt-cells: specifies the number of cells needed to encode an interrupt
   20   source, should be 1.
   21 - interrupts: specifies the interrupt line in the interrupt-parent controller
   22   node, valid values depend on the type of parent interrupt controller
   23 
   24 Optional properties:
   25 
   26 - brcm,irq-can-wake: if present, this means the L2 controller can be used as a
   27   wakeup source for system suspend/resume.
   28 
   29 Example:
   30 
   31 irq0_intc: interrupt-controller@10000020 {
   32         compatible = "brcm,bcm3380-l2-intc";
   33         reg = <0x10000024 0x4 0x1000002c 0x4>,
   34               <0x10000020 0x4 0x10000028 0x4>;
   35         interrupt-controller;
   36         #interrupt-cells = <1>;
   37         interrupt-parent = <&cpu_intc>;
   38         interrupts = <2>;
   39 };

Cache object: 311ccb13f605976a5e295c214d20ae27


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