rcar_du_vsp.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. */
  41. struct rcar_du_vsp_plane_state {
  42. struct drm_plane_state state;
  43. const struct rcar_du_format_info *format;
  44. struct sg_table sg_tables[3];
  45. };
  46. static inline struct rcar_du_vsp_plane_state *
  47. to_rcar_vsp_plane_state(struct drm_plane_state *state)
  48. {
  49. return container_of(state, struct rcar_du_vsp_plane_state, state);
  50. }
  51. #ifdef CONFIG_DRM_RCAR_VSP
  52. int rcar_du_vsp_init(struct rcar_du_vsp *vsp, struct device_node *np,
  53. unsigned int crtcs);
  54. void rcar_du_vsp_enable(struct rcar_du_crtc *crtc);
  55. void rcar_du_vsp_disable(struct rcar_du_crtc *crtc);
  56. void rcar_du_vsp_atomic_begin(struct rcar_du_crtc *crtc);
  57. void rcar_du_vsp_atomic_flush(struct rcar_du_crtc *crtc);
  58. #else
  59. static inline int rcar_du_vsp_init(struct rcar_du_vsp *vsp,
  60. struct device_node *np,
  61. unsigned int crtcs)
  62. {
  63. return -ENXIO;
  64. }
  65. static inline void rcar_du_vsp_enable(struct rcar_du_crtc *crtc) { };
  66. static inline void rcar_du_vsp_disable(struct rcar_du_crtc *crtc) { };
  67. static inline void rcar_du_vsp_atomic_begin(struct rcar_du_crtc *crtc) { };
  68. static inline void rcar_du_vsp_atomic_flush(struct rcar_du_crtc *crtc) { };
  69. #endif
  70. #endif /* __RCAR_DU_VSP_H__ */