]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - Documentation/devicetree/bindings/bus/brcm,gisb-arb.txt
Merge branches 'acpi-fan', 'acpi-video' and 'acpi-ec'
[mirror_ubuntu-focal-kernel.git] / Documentation / devicetree / bindings / bus / brcm,gisb-arb.txt
CommitLineData
e53c0772
FF
1Broadcom GISB bus Arbiter controller
2
3Required properties:
4
d1d67868
KC
5- compatible:
6 "brcm,gisb-arb" or "brcm,bcm7445-gisb-arb" for 28nm chips
7 "brcm,bcm7435-gisb-arb" for newer 40nm chips
8 "brcm,bcm7400-gisb-arb" for older 40nm chips and all 65nm chips
9 "brcm,bcm7038-gisb-arb" for 130nm chips
e53c0772
FF
10- reg: specifies the base physical address and size of the registers
11- interrupt-parent: specifies the phandle to the parent interrupt controller
12 this arbiter gets interrupt line from
13- interrupts: specifies the two interrupts (timeout and TEA) to be used from
14 the parent interrupt controller
15
16Optional properties:
17
18- brcm,gisb-arb-master-mask: 32-bits wide bitmask used to specify which GISB
19 masters are valid at the system level
20- brcm,gisb-arb-master-names: string list of the litteral name of the GISB
21 masters. Should match the number of bits set in brcm,gisb-master-mask and
22 the order in which they appear
23
24Example:
25
26gisb-arb@f0400000 {
27 compatible = "brcm,gisb-arb";
28 reg = <0xf0400000 0x800>;
29 interrupts = <0>, <2>;
30 interrupt-parent = <&sun_l2_intc>;
31
32 brcm,gisb-arb-master-mask = <0x7>;
33 brcm,gisb-arb-master-names = "bsp_0", "scpu_0", "cpu_0";
34};