rcar_du_plane.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. /* The RCAR DU has 8 hardware planes, shared between primary and overlay planes.
  20. * As using overlay planes requires at least one of the CRTCs being enabled, no
  21. * more than 7 overlay planes can be available. We thus create 1 primary plane
  22. * per CRTC and 7 overlay planes, for a total of up to 9 KMS planes.
  23. */
  24. #define RCAR_DU_NUM_KMS_PLANES 9
  25. #define RCAR_DU_NUM_HW_PLANES 8
  26. struct rcar_du_plane {
  27. struct drm_plane plane;
  28. struct rcar_du_group *group;
  29. };
  30. static inline struct rcar_du_plane *to_rcar_plane(struct drm_plane *plane)
  31. {
  32. return container_of(plane, struct rcar_du_plane, plane);
  33. }
  34. /**
  35. * struct rcar_du_plane_state - Driver-specific plane state
  36. * @state: base DRM plane state
  37. * @format: information about the pixel format used by the plane
  38. * @hwindex: 0-based hardware plane index, -1 means unused
  39. * @alpha: value of the plane alpha property
  40. * @colorkey: value of the plane colorkey property
  41. * @zpos: value of the plane zpos property
  42. */
  43. struct rcar_du_plane_state {
  44. struct drm_plane_state state;
  45. const struct rcar_du_format_info *format;
  46. int hwindex;
  47. unsigned int alpha;
  48. unsigned int colorkey;
  49. unsigned int zpos;
  50. };
  51. static inline struct rcar_du_plane_state *
  52. to_rcar_plane_state(struct drm_plane_state *state)
  53. {
  54. return container_of(state, struct rcar_du_plane_state, state);
  55. }
  56. int rcar_du_planes_init(struct rcar_du_group *rgrp);
  57. void rcar_du_plane_setup(struct rcar_du_plane *plane);
  58. #endif /* __RCAR_DU_PLANE_H__ */