brcm,gisb-arb.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. Broadcom GISB bus Arbiter controller
  2. Required properties:
  3. - compatible:
  4. "brcm,gisb-arb" or "brcm,bcm7445-gisb-arb" for 28nm chips
  5. "brcm,bcm7435-gisb-arb" for newer 40nm chips
  6. "brcm,bcm7400-gisb-arb" for older 40nm chips and all 65nm chips
  7. "brcm,bcm7038-gisb-arb" for 130nm chips
  8. - reg: specifies the base physical address and size of the registers
  9. - interrupt-parent: specifies the phandle to the parent interrupt controller
  10. this arbiter gets interrupt line from
  11. - interrupts: specifies the two interrupts (timeout and TEA) to be used from
  12. the parent interrupt controller
  13. Optional properties:
  14. - brcm,gisb-arb-master-mask: 32-bits wide bitmask used to specify which GISB
  15. masters are valid at the system level
  16. - brcm,gisb-arb-master-names: string list of the litteral name of the GISB
  17. masters. Should match the number of bits set in brcm,gisb-master-mask and
  18. the order in which they appear
  19. Example:
  20. gisb-arb@f0400000 {
  21. compatible = "brcm,gisb-arb";
  22. reg = <0xf0400000 0x800>;
  23. interrupts = <0>, <2>;
  24. interrupt-parent = <&sun_l2_intc>;
  25. brcm,gisb-arb-master-mask = <0x7>;
  26. brcm,gisb-arb-master-names = "bsp_0", "scpu_0", "cpu_0";
  27. };