blob: 10f6d0a8159d6967d93f55026acc604b4c0e3b40 [file] [log] [blame]
Florian Fainellie53c0772014-05-19 13:06:00 -07001Broadcom GISB bus Arbiter controller
2
3Required properties:
4
Kevin Cernekeed1d67862014-11-25 16:49:52 -08005- compatible:
Doug Bergerd523e0c2017-03-29 17:29:14 -07006 "brcm,bcm7278-gisb-arb" for V7 28nm chips
7 "brcm,gisb-arb" or "brcm,bcm7445-gisb-arb" for other 28nm chips
Kevin Cernekeed1d67862014-11-25 16:49:52 -08008 "brcm,bcm7435-gisb-arb" for newer 40nm chips
9 "brcm,bcm7400-gisb-arb" for older 40nm chips and all 65nm chips
10 "brcm,bcm7038-gisb-arb" for 130nm chips
Florian Fainellie53c0772014-05-19 13:06:00 -070011- reg: specifies the base physical address and size of the registers
Florian Fainellie53c0772014-05-19 13:06:00 -070012- interrupts: specifies the two interrupts (timeout and TEA) to be used from
Florian Fainelli541b6e62020-04-17 17:11:46 -070013 the parent interrupt controller. A third optional interrupt may be specified
14 for breakpoints.
Florian Fainellie53c0772014-05-19 13:06:00 -070015
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};