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

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

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 ] ~

  1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2 %YAML 1.2
  3 ---
  4 $id: http://devicetree.org/schemas/interrupt-controller/brcm,bcm7038-l1-intc.yaml#
  5 $schema: http://devicetree.org/meta-schemas/core.yaml#
  6 
  7 title: Broadcom BCM7038-style Level 1 interrupt controller
  8 
  9 description: >
 10   This block is a first level interrupt controller that is typically connected
 11   directly to one of the HW INT lines on each CPU.  Every BCM7xxx set-top chip
 12   since BCM7038 has contained this hardware.
 13 
 14   Key elements of the hardware design include:
 15 
 16    - 64, 96, 128, or 160 incoming level IRQ lines
 17 
 18    - Most onchip peripherals are wired directly to an L1 input
 19 
 20    - A separate instance of the register set for each CPU, allowing individual
 21      peripheral IRQs to be routed to any CPU
 22 
 23    - Atomic mask/unmask operations
 24 
 25    - No polarity/level/edge settings
 26 
 27    - No FIFO or priority encoder logic; software is expected to read all
 28      2-5 status words to determine which IRQs are pending
 29 
 30    If multiple reg ranges and interrupt-parent entries are present on an SMP
 31    system, the driver will allow IRQ SMP affinity to be set up through the
 32    /proc/irq/ interface.  In the simplest possible configuration, only one
 33    reg range and one interrupt-parent is needed.
 34 
 35 maintainers:
 36   - Florian Fainelli <f.fainelli@gmail.com>
 37 
 38 allOf:
 39   - $ref: /schemas/interrupt-controller.yaml#
 40 
 41 properties:
 42   compatible:
 43     const: brcm,bcm7038-l1-intc
 44 
 45   reg:
 46     description: >
 47       Specifies the base physical address and size of the registers
 48       the number of supported IRQs is inferred from the size argument
 49 
 50   interrupt-controller: true
 51 
 52   "#interrupt-cells":
 53     const: 1
 54 
 55   interrupts:
 56     description: >
 57      Specifies the interrupt line(s) in the interrupt-parent controller node;
 58      valid values depend on the type of parent interrupt controller
 59 
 60   brcm,irq-can-wake:
 61     type: boolean
 62     description: >
 63       If present, this means the L1 controller can be used as a
 64       wakeup source for system suspend/resume.
 65 
 66   brcm,int-fwd-mask:
 67     $ref: /schemas/types.yaml#/definitions/uint32-array
 68     description:
 69       If present, a bit mask to indicate which interrupts have already been
 70       configured by the firmware and should be left unmanaged. This should
 71       have one 32-bit word per status/set/clear/mask group.
 72 
 73 required:
 74   - compatible
 75   - reg
 76   - interrupt-controller
 77   - "#interrupt-cells"
 78   - interrupts
 79 
 80 additionalProperties: false
 81 
 82 examples:
 83   - |
 84     periph_intc: interrupt-controller@1041a400 {
 85       compatible = "brcm,bcm7038-l1-intc";
 86       reg = <0x1041a400 0x30>, <0x1041a600 0x30>;
 87       interrupt-controller;
 88       #interrupt-cells = <1>;
 89       interrupt-parent = <&cpu_intc>;
 90       interrupts = <2>, <3>;
 91     };

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