renesas,fcp.txt 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Renesas R-Car Frame Compression Processor (FCP)
  2. -----------------------------------------------
  3. The FCP is a companion module of video processing modules in the Renesas R-Car
  4. Gen3 SoCs. It provides data compression and decompression, data caching, and
  5. conversion of AXI transactions in order to reduce the memory bandwidth.
  6. There are three types of FCP: FCP for Codec (FCPC), FCP for VSP (FCPV) and FCP
  7. for FDP (FCPF). Their configuration and behaviour depend on the module they
  8. are paired with. These DT bindings currently support the FCPV and FCPF.
  9. - compatible: Must be one or more of the following
  10. - "renesas,r8a7795-fcpv" for R8A7795 (R-Car H3) compatible 'FCP for VSP'
  11. - "renesas,r8a7795-fcpf" for R8A7795 (R-Car H3) compatible 'FCP for FDP'
  12. - "renesas,fcpv" for generic compatible 'FCP for VSP'
  13. - "renesas,fcpf" for generic compatible 'FCP for FDP'
  14. When compatible with the generic version, nodes must list the
  15. SoC-specific version corresponding to the platform first, followed by the
  16. family-specific and/or generic versions.
  17. - reg: the register base and size for the device registers
  18. - clocks: Reference to the functional clock
  19. Optional properties:
  20. - power-domains : power-domain property defined with a power domain specifier
  21. to respective power domain.
  22. Device node example
  23. -------------------
  24. fcpvd1: fcp@fea2f000 {
  25. compatible = "renesas,r8a7795-fcpv", "renesas,fcpv";
  26. reg = <0 0xfea2f000 0 0x200>;
  27. clocks = <&cpg CPG_MOD 602>;
  28. power-domains = <&sysc R8A7795_PD_A3VP>;
  29. };