rcar_du_plane.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * rcar_du_plane.h -- R-Car Display Unit Planes
  3. *
  4. * Copyright (C) 2013-2014 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_PLANE_H__
  14. #define __RCAR_DU_PLANE_H__
  15. #include <drm/drmP.h>
  16. #include <drm/drm_crtc.h>
  17. struct rcar_du_format_info;
  18. struct rcar_du_group;
  19. /*
  20. * The RCAR DU has 8 hardware planes, shared between primary and overlay planes.
  21. * As using overlay planes requires at least one of the CRTCs being enabled, no
  22. * more than 7 overlay planes can be available. We thus create 1 primary plane
  23. * per CRTC and 7 overlay planes, for a total of up to 9 KMS planes.
  24. */
  25. #define RCAR_DU_NUM_KMS_PLANES 9
  26. #define RCAR_DU_NUM_HW_PLANES 8
  27. enum rcar_du_plane_source {
  28. RCAR_DU_PLANE_MEMORY,
  29. RCAR_DU_PLANE_VSPD0,
  30. RCAR_DU_PLANE_VSPD1,
  31. };
  32. struct rcar_du_plane {
  33. struct drm_plane plane;
  34. struct rcar_du_group *group;
  35. };
  36. static inline struct rcar_du_plane *to_rcar_plane(struct drm_plane *plane)
  37. {
  38. return container_of(plane, struct rcar_du_plane, plane);
  39. }
  40. /**
  41. * struct rcar_du_plane_state - Driver-specific plane state
  42. * @state: base DRM plane state
  43. * @format: information about the pixel format used by the plane
  44. * @hwindex: 0-based hardware plane index, -1 means unused
  45. * @colorkey: value of the plane colorkey property
  46. */
  47. struct rcar_du_plane_state {
  48. struct drm_plane_state state;
  49. const struct rcar_du_format_info *format;
  50. int hwindex;
  51. enum rcar_du_plane_source source;
  52. unsigned int colorkey;
  53. };
  54. static inline struct rcar_du_plane_state *
  55. to_rcar_plane_state(struct drm_plane_state *state)
  56. {
  57. return container_of(state, struct rcar_du_plane_state, state);
  58. }
  59. int rcar_du_atomic_check_planes(struct drm_device *dev,
  60. struct drm_atomic_state *state);
  61. int __rcar_du_plane_atomic_check(struct drm_plane *plane,
  62. struct drm_plane_state *state,
  63. const struct rcar_du_format_info **format);
  64. int rcar_du_planes_init(struct rcar_du_group *rgrp);
  65. void __rcar_du_plane_setup(struct rcar_du_group *rgrp,
  66. const struct rcar_du_plane_state *state);
  67. static inline void rcar_du_plane_setup(struct rcar_du_plane *plane)
  68. {
  69. struct rcar_du_plane_state *state =
  70. to_rcar_plane_state(plane->plane.state);
  71. return __rcar_du_plane_setup(plane->group, state);
  72. }
  73. #endif /* __RCAR_DU_PLANE_H__ */