rcar_du_crtc.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * rcar_du_crtc.h -- R-Car Display Unit CRTCs
  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_CRTC_H__
  14. #define __RCAR_DU_CRTC_H__
  15. #include <linux/mutex.h>
  16. #include <linux/wait.h>
  17. #include <drm/drmP.h>
  18. #include <drm/drm_crtc.h>
  19. struct rcar_du_group;
  20. /**
  21. * struct rcar_du_crtc - the CRTC, representing a DU superposition processor
  22. * @crtc: base DRM CRTC
  23. * @clock: the CRTC functional clock
  24. * @extclock: external pixel dot clock (optional)
  25. * @mmio_offset: offset of the CRTC registers in the DU MMIO block
  26. * @index: CRTC software and hardware index
  27. * @started: whether the CRTC has been started and is running
  28. * @event: event to post when the pending page flip completes
  29. * @flip_wait: wait queue used to signal page flip completion
  30. * @outputs: bitmask of the outputs (enum rcar_du_output) driven by this CRTC
  31. * @enabled: whether the CRTC is enabled, used to control system resume
  32. * @group: CRTC group this CRTC belongs to
  33. */
  34. struct rcar_du_crtc {
  35. struct drm_crtc crtc;
  36. struct clk *clock;
  37. struct clk *extclock;
  38. unsigned int mmio_offset;
  39. unsigned int index;
  40. bool started;
  41. struct drm_pending_vblank_event *event;
  42. wait_queue_head_t flip_wait;
  43. unsigned int outputs;
  44. bool enabled;
  45. struct rcar_du_group *group;
  46. };
  47. #define to_rcar_crtc(c) container_of(c, struct rcar_du_crtc, crtc)
  48. enum rcar_du_output {
  49. RCAR_DU_OUTPUT_DPAD0,
  50. RCAR_DU_OUTPUT_DPAD1,
  51. RCAR_DU_OUTPUT_LVDS0,
  52. RCAR_DU_OUTPUT_LVDS1,
  53. RCAR_DU_OUTPUT_TCON,
  54. RCAR_DU_OUTPUT_MAX,
  55. };
  56. int rcar_du_crtc_create(struct rcar_du_group *rgrp, unsigned int index);
  57. void rcar_du_crtc_enable_vblank(struct rcar_du_crtc *rcrtc, bool enable);
  58. void rcar_du_crtc_cancel_page_flip(struct rcar_du_crtc *rcrtc,
  59. struct drm_file *file);
  60. void rcar_du_crtc_suspend(struct rcar_du_crtc *rcrtc);
  61. void rcar_du_crtc_resume(struct rcar_du_crtc *rcrtc);
  62. void rcar_du_crtc_route_output(struct drm_crtc *crtc,
  63. enum rcar_du_output output);
  64. #endif /* __RCAR_DU_CRTC_H__ */