renesas,vsp1.txt 994 B

12345678910111213141516171819202122232425262728293031
  1. * Renesas VSP Video Processing Engine
  2. The VSP is a video processing engine that supports up-/down-scaling, alpha
  3. blending, color space conversion and various other image processing features.
  4. It can be found in the Renesas R-Car second generation SoCs.
  5. Required properties:
  6. - compatible: Must contain one of the following values
  7. - "renesas,vsp1" for the R-Car Gen2 VSP1
  8. - "renesas,vsp2" for the R-Car Gen3 VSP2
  9. - reg: Base address and length of the registers block for the VSP.
  10. - interrupts: VSP interrupt specifier.
  11. - clocks: A phandle + clock-specifier pair for the VSP functional clock.
  12. Optional properties:
  13. - renesas,fcp: A phandle referencing the FCP that handles memory accesses
  14. for the VSP. Not needed on Gen2, mandatory on Gen3.
  15. Example: R8A7790 (R-Car H2) VSP1-S node
  16. vsp1@fe928000 {
  17. compatible = "renesas,vsp1";
  18. reg = <0 0xfe928000 0 0x8000>;
  19. interrupts = <0 267 IRQ_TYPE_LEVEL_HIGH>;
  20. clocks = <&mstp1_clks R8A7790_CLK_VSP1_S>;
  21. };