brcm,gisb-arb.txt 968 B

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