rcar_du_crtc.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * rcar_du_crtc.h -- R-Car Display Unit CRTCs
  3. *
  4. * Copyright (C) 2013-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_CRTC_H__
  14. #define __RCAR_DU_CRTC_H__
  15. #include <linux/mutex.h>
  16. #include <linux/spinlock.h>
  17. #include <linux/wait.h>
  18. #include <drm/drmP.h>
  19. #include <drm/drm_crtc.h>
  20. struct rcar_du_group;
  21. struct rcar_du_vsp;
  22. /**
  23. * struct rcar_du_crtc - the CRTC, representing a DU superposition processor
  24. * @crtc: base DRM CRTC
  25. * @clock: the CRTC functional clock
  26. * @extclock: external pixel dot clock (optional)
  27. * @mmio_offset: offset of the CRTC registers in the DU MMIO block
  28. * @index: CRTC software and hardware index
  29. * @initialized: whether the CRTC has been initialized and clocks enabled
  30. * @vblank_enable: whether vblank events are enabled on this CRTC
  31. * @event: event to post when the pending page flip completes
  32. * @flip_wait: wait queue used to signal page flip completion
  33. * @vblank_lock: protects vblank_wait and vblank_count
  34. * @vblank_wait: wait queue used to signal vertical blanking
  35. * @vblank_count: number of vertical blanking interrupts to wait for
  36. * @outputs: bitmask of the outputs (enum rcar_du_output) driven by this CRTC
  37. * @group: CRTC group this CRTC belongs to
  38. * @vsp: VSP feeding video to this CRTC
  39. * @vsp_pipe: index of the VSP pipeline feeding video to this CRTC
  40. */
  41. struct rcar_du_crtc {
  42. struct drm_crtc crtc;
  43. struct clk *clock;
  44. struct clk *extclock;
  45. unsigned int mmio_offset;
  46. unsigned int index;
  47. bool initialized;
  48. bool vblank_enable;
  49. struct drm_pending_vblank_event *event;
  50. wait_queue_head_t flip_wait;
  51. spinlock_t vblank_lock;
  52. wait_queue_head_t vblank_wait;
  53. unsigned int vblank_count;
  54. unsigned int outputs;
  55. struct rcar_du_group *group;
  56. struct rcar_du_vsp *vsp;
  57. unsigned int vsp_pipe;
  58. };
  59. #define to_rcar_crtc(c) container_of(c, struct rcar_du_crtc, crtc)
  60. enum rcar_du_output {
  61. RCAR_DU_OUTPUT_DPAD0,
  62. RCAR_DU_OUTPUT_DPAD1,
  63. RCAR_DU_OUTPUT_LVDS0,
  64. RCAR_DU_OUTPUT_LVDS1,
  65. RCAR_DU_OUTPUT_HDMI0,
  66. RCAR_DU_OUTPUT_HDMI1,
  67. RCAR_DU_OUTPUT_TCON,
  68. RCAR_DU_OUTPUT_MAX,
  69. };
  70. int rcar_du_crtc_create(struct rcar_du_group *rgrp, unsigned int index);
  71. void rcar_du_crtc_suspend(struct rcar_du_crtc *rcrtc);
  72. void rcar_du_crtc_resume(struct rcar_du_crtc *rcrtc);
  73. void rcar_du_crtc_route_output(struct drm_crtc *crtc,
  74. enum rcar_du_output output);
  75. void rcar_du_crtc_finish_page_flip(struct rcar_du_crtc *rcrtc);
  76. #endif /* __RCAR_DU_CRTC_H__ */