ti,davinci-rproc.txt 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. TI Davinci DSP devices
  2. =======================
  3. Binding status: Unstable - Subject to changes for DT representation of clocks
  4. and resets
  5. The TI Davinci family of SoCs usually contains a TI DSP Core sub-system that
  6. is used to offload some of the processor-intensive tasks or algorithms, for
  7. achieving various system level goals.
  8. The processor cores in the sub-system usually contain additional sub-modules
  9. like L1 and/or L2 caches/SRAMs, an Interrupt Controller, an external memory
  10. controller, a dedicated local power/sleep controller etc. The DSP processor
  11. core used in Davinci SoCs is usually a C674x DSP CPU.
  12. DSP Device Node:
  13. ================
  14. Each DSP Core sub-system is represented as a single DT node.
  15. Required properties:
  16. --------------------
  17. The following are the mandatory properties:
  18. - compatible: Should be one of the following,
  19. "ti,da850-dsp" for DSPs on OMAP-L138 SoCs
  20. - reg: Should contain an entry for each value in 'reg-names'.
  21. Each entry should have the memory region's start address
  22. and the size of the region, the representation matching
  23. the parent node's '#address-cells' and '#size-cells' values.
  24. - reg-names: Should contain strings with the following names, each
  25. representing a specific internal memory region or a
  26. specific register space,
  27. "l2sram", "l1pram", "l1dram", "host1cfg", "chipsig_base"
  28. - interrupts: Should contain the interrupt number used to receive the
  29. interrupts from the DSP. The value should follow the
  30. interrupt-specifier format as dictated by the
  31. 'interrupt-parent' node.
  32. - memory-region: phandle to the reserved memory node to be associated
  33. with the remoteproc device. The reserved memory node
  34. can be a CMA memory node, and should be defined as
  35. per the bindings in
  36. Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt
  37. Example:
  38. --------
  39. /* DSP Reserved Memory node */
  40. reserved-memory {
  41. #address-cells = <1>;
  42. #size-cells = <1>;
  43. ranges;
  44. dsp_memory_region: dsp-memory@c3000000 {
  45. compatible = "shared-dma-pool";
  46. reg = <0xc3000000 0x1000000>;
  47. reusable;
  48. };
  49. };
  50. /* DSP node */
  51. {
  52. dsp: dsp@11800000 {
  53. compatible = "ti,da850-dsp";
  54. reg = <0x11800000 0x40000>,
  55. <0x11e00000 0x8000>,
  56. <0x11f00000 0x8000>,
  57. <0x01c14044 0x4>,
  58. <0x01c14174 0x8>;
  59. reg-names = "l2sram", "l1pram", "l1dram", "host1cfg",
  60. "chipsig";
  61. interrupt-parent = <&intc>;
  62. interrupts = <28>;
  63. memory-region = <&dsp_memory_region>;
  64. };
  65. };