brcm,gisb-arb.yaml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/bus/brcm,gisb-arb.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Broadcom GISB bus Arbiter controller
  7. maintainers:
  8. - Florian Fainelli <f.fainelli@gmail.com>
  9. properties:
  10. compatible:
  11. oneOf:
  12. - items:
  13. - enum:
  14. - brcm,bcm7445-gisb-arb # for other 28nm chips
  15. - const: brcm,gisb-arb
  16. - items:
  17. - enum:
  18. - brcm,bcm74165-gisb-arb # for V7 new style 16nm chips
  19. - brcm,bcm7278-gisb-arb # for V7 28nm chips
  20. - brcm,bcm7435-gisb-arb # for newer 40nm chips
  21. - brcm,bcm7400-gisb-arb # for older 40nm chips and all 65nm chips
  22. - brcm,bcm7038-gisb-arb # for 130nm chips
  23. - brcm,gisb-arb # fallback compatible
  24. reg:
  25. maxItems: 1
  26. interrupts:
  27. minItems: 2
  28. items:
  29. - description: timeout interrupt line
  30. - description: target abort interrupt line
  31. - description: breakpoint interrupt line
  32. brcm,gisb-arb-master-mask:
  33. $ref: /schemas/types.yaml#/definitions/uint32
  34. description: >
  35. 32-bits wide bitmask used to specify which GISB masters are valid at the
  36. system level
  37. brcm,gisb-arb-master-names:
  38. $ref: /schemas/types.yaml#/definitions/string-array
  39. description: >
  40. String list of the literal name of the GISB masters. Should match the
  41. number of bits set in brcm,gisb-master-mask and the order in which they
  42. appear from MSB to LSB.
  43. required:
  44. - compatible
  45. - reg
  46. - interrupts
  47. additionalProperties: false
  48. examples:
  49. - |
  50. gisb-arb@f0400000 {
  51. compatible = "brcm,gisb-arb";
  52. reg = <0xf0400000 0x800>;
  53. interrupts = <0>, <2>;
  54. interrupt-parent = <&sun_l2_intc>;
  55. brcm,gisb-arb-master-mask = <0x7>;
  56. brcm,gisb-arb-master-names = "bsp_0", "scpu_0", "cpu_0";
  57. };