renesas,rcar-rproc.yaml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/remoteproc/renesas,rcar-rproc.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Renesas R-Car remote processor controller
  7. maintainers:
  8. - Julien Massot <julien.massot@iot.bzh>
  9. description: |
  10. This document defines the bindings for the remoteproc component that loads and
  11. boots firmwares on the Renesas R-Car family chipset.
  12. R-Car gen3 family may have a realtime processor, this processor shares peripheral
  13. and RAM with the host processor with the same address map.
  14. properties:
  15. compatible:
  16. const: renesas,rcar-cr7
  17. resets:
  18. maxItems: 1
  19. power-domains:
  20. maxItems: 1
  21. memory-region:
  22. description:
  23. List of phandles to the reserved memory regions associated with the
  24. remoteproc device. This is variable and describes the memories shared with
  25. the remote processor (e.g. remoteproc firmware and carveouts, rpmsg
  26. vrings, ...).
  27. (see reserved-memory/reserved-memory.yaml in dtschema project)
  28. required:
  29. - compatible
  30. - resets
  31. - memory-region
  32. - power-domains
  33. additionalProperties: false
  34. examples:
  35. - |
  36. #include <dt-bindings/clock/r8a7795-cpg-mssr.h>
  37. #include <dt-bindings/power/r8a7795-sysc.h>
  38. reserved-memory {
  39. #address-cells = <2>;
  40. #size-cells = <2>;
  41. cr7_ram: cr7_ram@40040000 {
  42. no-map;
  43. reg = <0x0 0x40040000 0x0 0x1fc0000>;
  44. };
  45. };
  46. cr7_rproc: cr7 {
  47. compatible = "renesas,rcar-cr7";
  48. memory-region = <&cr7_ram>;
  49. power-domains = <&sysc R8A7795_PD_CR7>;
  50. resets = <&cpg 222>;
  51. };
  52. ...