rcar_du_vsp.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * rcar_du_vsp.h -- R-Car Display Unit VSP-Based Compositor
  3. *
  4. * Copyright (C) 2015 Renesas Electronics Corporation
  5. *
  6. * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. */
  13. #ifndef __RCAR_DU_VSP_H__
  14. #define __RCAR_DU_VSP_H__
  15. #include <drm/drmP.h>
  16. #include <drm/drm_crtc.h>
  17. struct rcar_du_format_info;
  18. struct rcar_du_vsp;
  19. struct rcar_du_vsp_plane {
  20. struct drm_plane plane;
  21. struct rcar_du_vsp *vsp;
  22. unsigned int index;
  23. };
  24. struct rcar_du_vsp {
  25. unsigned int index;
  26. struct device *vsp;
  27. struct rcar_du_device *dev;
  28. struct rcar_du_vsp_plane *planes;
  29. unsigned int num_planes;
  30. };
  31. static inline struct rcar_du_vsp_plane *to_rcar_vsp_plane(struct drm_plane *p)
  32. {
  33. return container_of(p, struct rcar_du_vsp_plane, plane);
  34. }
  35. /**
  36. * struct rcar_du_vsp_plane_state - Driver-specific plane state
  37. * @state: base DRM plane state
  38. * @format: information about the pixel format used by the plane
  39. * @sg_tables: scatter-gather tables for the frame buffer memory
  40. * @alpha: value of the plane alpha property
  41. */
  42. struct rcar_du_vsp_plane_state {
  43. struct drm_plane_state state;
  44. const struct rcar_du_format_info *format;
  45. struct sg_table sg_tables[3];
  46. unsigned int alpha;
  47. };
  48. static inline struct rcar_du_vsp_plane_state *
  49. to_rcar_vsp_plane_state(struct drm_plane_state *state)
  50. {
  51. return container_of(state, struct rcar_du_vsp_plane_state, state);
  52. }
  53. #ifdef CONFIG_DRM_RCAR_VSP
  54. int rcar_du_vsp_init(struct rcar_du_vsp *vsp, struct device_node *np,
  55. unsigned int crtcs);
  56. void rcar_du_vsp_enable(struct rcar_du_crtc *crtc);
  57. void rcar_du_vsp_disable(struct rcar_du_crtc *crtc);
  58. void rcar_du_vsp_atomic_begin(struct rcar_du_crtc *crtc);
  59. void rcar_du_vsp_atomic_flush(struct rcar_du_crtc *crtc);
  60. #else
  61. static inline int rcar_du_vsp_init(struct rcar_du_vsp *vsp,
  62. struct device_node *np,
  63. unsigned int crtcs)
  64. {
  65. return -ENXIO;
  66. }
  67. static inline void rcar_du_vsp_enable(struct rcar_du_crtc *crtc) { };
  68. static inline void rcar_du_vsp_disable(struct rcar_du_crtc *crtc) { };
  69. static inline void rcar_du_vsp_atomic_begin(struct rcar_du_crtc *crtc) { };
  70. static inline void rcar_du_vsp_atomic_flush(struct rcar_du_crtc *crtc) { };
  71. #endif
  72. #endif /* __RCAR_DU_VSP_H__ */