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/sigma,smp8642-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 Sigma Designs SMP86xx/SMP87xx secondary interrupt controller
    2 
    3 Required properties:
    4 - compatible: should be "sigma,smp8642-intc"
    5 - reg: physical address of MMIO region
    6 - ranges: address space mapping of child nodes
    7 - interrupt-controller: boolean
    8 - #address-cells: should be <1>
    9 - #size-cells: should be <1>
   10 
   11 One child node per control block with properties:
   12 - reg: address of registers for this control block
   13 - interrupt-controller: boolean
   14 - #interrupt-cells: should be <2>, interrupt index and flags per interrupts.txt
   15 - interrupts: interrupt spec of primary interrupt controller
   16 
   17 Example:
   18 
   19 interrupt-controller@6e000 {
   20         compatible = "sigma,smp8642-intc";
   21         reg = <0x6e000 0x400>;
   22         ranges = <0x0 0x6e000 0x400>;
   23         interrupt-parent = <&gic>;
   24         interrupt-controller;
   25         #address-cells = <1>;
   26         #size-cells = <1>;
   27 
   28         irq0: interrupt-controller@0 {
   29                 reg = <0x000 0x100>;
   30                 interrupt-controller;
   31                 #interrupt-cells = <2>;
   32                 interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>;
   33         };
   34 
   35         irq1: interrupt-controller@100 {
   36                 reg = <0x100 0x100>;
   37                 interrupt-controller;
   38                 #interrupt-cells = <2>;
   39                 interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>;
   40         };
   41 
   42         irq2: interrupt-controller@300 {
   43                 reg = <0x300 0x100>;
   44                 interrupt-controller;
   45                 #interrupt-cells = <2>;
   46                 interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>;
   47         };
   48 };

Cache object: 4e16216e72153ed07676b0255111d5f4


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