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,bcm2836-l1-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 BCM2836 per-CPU interrupt controller
    2 
    3 The BCM2836 has a per-cpu interrupt controller for the timer, PMU
    4 events, and SMP IPIs.  One of the CPUs may receive interrupts for the
    5 peripheral (GPU) events, which chain to the BCM2835-style interrupt
    6 controller.
    7 
    8 Required properties:
    9 
   10 - compatible:           Should be "brcm,bcm2836-l1-intc"
   11 - reg:                  Specifies base physical address and size of the
   12                           registers
   13 - interrupt-controller: Identifies the node as an interrupt controller
   14 - #interrupt-cells:     Specifies the number of cells needed to encode an
   15                           interrupt source. The value shall be 2
   16 
   17 Please refer to interrupts.txt in this directory for details of the common
   18 Interrupt Controllers bindings used by client devices.
   19 
   20 The interrupt sources are as follows:
   21 
   22 0: CNTPSIRQ
   23 1: CNTPNSIRQ
   24 2: CNTHPIRQ
   25 3: CNTVIRQ
   26 8: GPU_FAST
   27 9: PMU_FAST
   28 
   29 Example:
   30 
   31 local_intc: local_intc {
   32         compatible = "brcm,bcm2836-l1-intc";
   33         reg = <0x40000000 0x100>;
   34         interrupt-controller;
   35         #interrupt-cells = <2>;
   36         interrupt-parent = <&local_intc>;
   37 };

Cache object: 22e799894b7967633542e96264cb5dec


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