~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/remoteproc/ti,davinci-rproc.txt

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

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

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php