brcm,dpfe-cpu.yaml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/memory-controllers/brcm,dpfe-cpu.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: DDR PHY Front End (DPFE) for Broadcom STB
  7. maintainers:
  8. - Krzysztof Kozlowski <krzk@kernel.org>
  9. - Markus Mayer <mmayer@broadcom.com>
  10. properties:
  11. compatible:
  12. items:
  13. - enum:
  14. - brcm,bcm7271-dpfe-cpu
  15. - brcm,bcm7268-dpfe-cpu
  16. - const: brcm,dpfe-cpu
  17. reg:
  18. items:
  19. - description: DCPU register space
  20. - description: DCPU data memory space
  21. - description: DCPU instruction memory space
  22. reg-names:
  23. items:
  24. - const: dpfe-cpu
  25. - const: dpfe-dmem
  26. - const: dpfe-imem
  27. required:
  28. - compatible
  29. - reg
  30. - reg-names
  31. additionalProperties: false
  32. examples:
  33. - |
  34. dpfe-cpu@f1132000 {
  35. compatible = "brcm,bcm7271-dpfe-cpu", "brcm,dpfe-cpu";
  36. reg = <0xf1132000 0x180>,
  37. <0xf1134000 0x1000>,
  38. <0xf1138000 0x4000>;
  39. reg-names = "dpfe-cpu", "dpfe-dmem", "dpfe-imem";
  40. };