~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/interrupt-controller/brcm,bcm6345-l1-intc.txt

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/devicetree/bindings/interrupt-controller/brcm,bcm6345-l1-intc.txt (Architecture i386) and /Documentation/devicetree/bindings/interrupt-controller/brcm,bcm6345-l1-intc.txt (Architecture m68k)


  1 Broadcom BCM6345-style Level 1 interrupt contr      1 Broadcom BCM6345-style Level 1 interrupt controller
  2                                                     2 
  3 This block is a first level interrupt controll      3 This block is a first level interrupt controller that is typically connected
  4 directly to one of the HW INT lines on each CP      4 directly to one of the HW INT lines on each CPU.
  5                                                     5 
  6 Key elements of the hardware design include:        6 Key elements of the hardware design include:
  7                                                     7 
  8 - 32, 64 or 128 incoming level IRQ lines            8 - 32, 64 or 128 incoming level IRQ lines
  9                                                     9 
 10 - Most onchip peripherals are wired directly t     10 - Most onchip peripherals are wired directly to an L1 input
 11                                                    11 
 12 - A separate instance of the register set for      12 - A separate instance of the register set for each CPU, allowing individual
 13   peripheral IRQs to be routed to any CPU          13   peripheral IRQs to be routed to any CPU
 14                                                    14 
 15 - Contains one or more enable/status word pair     15 - Contains one or more enable/status word pairs per CPU
 16                                                    16 
 17 - No atomic set/clear operations                   17 - No atomic set/clear operations
 18                                                    18 
 19 - No polarity/level/edge settings                  19 - No polarity/level/edge settings
 20                                                    20 
 21 - No FIFO or priority encoder logic; software      21 - No FIFO or priority encoder logic; software is expected to read all
 22   2-4 status words to determine which IRQs are     22   2-4 status words to determine which IRQs are pending
 23                                                    23 
 24 Required properties:                               24 Required properties:
 25                                                    25 
 26 - compatible: should be "brcm,bcm<soc>-l1-intc     26 - compatible: should be "brcm,bcm<soc>-l1-intc", "brcm,bcm6345-l1-intc"
 27 - reg: specifies the base physical address and     27 - reg: specifies the base physical address and size of the registers;
 28   the number of supported IRQs is inferred fro     28   the number of supported IRQs is inferred from the size argument
 29 - interrupt-controller: identifies the node as     29 - interrupt-controller: identifies the node as an interrupt controller
 30 - #interrupt-cells: specifies the number of ce     30 - #interrupt-cells: specifies the number of cells needed to encode an interrupt
 31   source, should be 1.                             31   source, should be 1.
 32 - interrupts: specifies the interrupt line(s)      32 - interrupts: specifies the interrupt line(s) in the interrupt-parent controller
 33   node; valid values depend on the type of par     33   node; valid values depend on the type of parent interrupt controller
 34                                                    34 
 35 If multiple reg ranges and interrupt-parent en     35 If multiple reg ranges and interrupt-parent entries are present on an SMP
 36 system, the driver will allow IRQ SMP affinity     36 system, the driver will allow IRQ SMP affinity to be set up through the
 37 /proc/irq/ interface.  In the simplest possibl     37 /proc/irq/ interface.  In the simplest possible configuration, only one
 38 reg range and one interrupt-parent is needed.      38 reg range and one interrupt-parent is needed.
 39                                                    39 
 40 The driver operates in native CPU endian by de     40 The driver operates in native CPU endian by default, there is no support for
 41 specifying an alternative endianness.              41 specifying an alternative endianness.
 42                                                    42 
 43 Example:                                           43 Example:
 44                                                    44 
 45 periph_intc: interrupt-controller@10000000 {       45 periph_intc: interrupt-controller@10000000 {
 46         compatible = "brcm,bcm63168-l1-intc",      46         compatible = "brcm,bcm63168-l1-intc", "brcm,bcm6345-l1-intc";
 47         reg = <0x10000020 0x20>,                   47         reg = <0x10000020 0x20>,
 48               <0x10000040 0x20>;                   48               <0x10000040 0x20>;
 49                                                    49 
 50         interrupt-controller;                      50         interrupt-controller;
 51         #interrupt-cells = <1>;                    51         #interrupt-cells = <1>;
 52                                                    52 
 53         interrupt-parent = <&cpu_intc>;            53         interrupt-parent = <&cpu_intc>;
 54         interrupts = <2>, <3>;                     54         interrupts = <2>, <3>;
 55 };                                                 55 };
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php