rcar_du_crtc.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. #include <media/vsp1.h>
  21. struct rcar_du_group;
  22. struct rcar_du_vsp;
  23. /**
  24. * struct rcar_du_crtc - the CRTC, representing a DU superposition processor
  25. * @crtc: base DRM CRTC
  26. * @clock: the CRTC functional clock
  27. * @extclock: external pixel dot clock (optional)
  28. * @mmio_offset: offset of the CRTC registers in the DU MMIO block
  29. * @index: CRTC software and hardware index
  30. * @initialized: whether the CRTC has been initialized and clocks enabled
  31. * @vblank_enable: whether vblank events are enabled on this CRTC
  32. * @event: event to post when the pending page flip completes
  33. * @flip_wait: wait queue used to signal page flip completion
  34. * @vblank_lock: protects vblank_wait and vblank_count
  35. * @vblank_wait: wait queue used to signal vertical blanking
  36. * @vblank_count: number of vertical blanking interrupts to wait for
  37. * @outputs: bitmask of the outputs (enum rcar_du_output) driven by this CRTC
  38. * @group: CRTC group this CRTC belongs to
  39. * @vsp: VSP feeding video to this CRTC
  40. * @vsp_pipe: index of the VSP pipeline feeding video to this CRTC
  41. */
  42. struct rcar_du_crtc {
  43. struct drm_crtc crtc;
  44. struct clk *clock;
  45. struct clk *extclock;
  46. unsigned int mmio_offset;
  47. unsigned int index;
  48. bool initialized;
  49. bool vblank_enable;
  50. struct drm_pending_vblank_event *event;
  51. wait_queue_head_t flip_wait;
  52. spinlock_t vblank_lock;
  53. wait_queue_head_t vblank_wait;
  54. unsigned int vblank_count;
  55. unsigned int outputs;
  56. struct rcar_du_group *group;
  57. struct rcar_du_vsp *vsp;
  58. unsigned int vsp_pipe;
  59. };
  60. #define to_rcar_crtc(c) container_of(c, struct rcar_du_crtc, crtc)
  61. /**
  62. * struct rcar_du_crtc_state - Driver-specific CRTC state
  63. * @state: base DRM CRTC state
  64. * @crc: CRC computation configuration
  65. */
  66. struct rcar_du_crtc_state {
  67. struct drm_crtc_state state;
  68. struct vsp1_du_crc_config crc;
  69. };
  70. #define to_rcar_crtc_state(s) container_of(s, struct rcar_du_crtc_state, state)
  71. enum rcar_du_output {
  72. RCAR_DU_OUTPUT_DPAD0,
  73. RCAR_DU_OUTPUT_DPAD1,
  74. RCAR_DU_OUTPUT_LVDS0,
  75. RCAR_DU_OUTPUT_LVDS1,
  76. RCAR_DU_OUTPUT_HDMI0,
  77. RCAR_DU_OUTPUT_HDMI1,
  78. RCAR_DU_OUTPUT_TCON,
  79. RCAR_DU_OUTPUT_MAX,
  80. };
  81. int rcar_du_crtc_create(struct rcar_du_group *rgrp, unsigned int swindex,
  82. unsigned int hwindex);
  83. void rcar_du_crtc_suspend(struct rcar_du_crtc *rcrtc);
  84. void rcar_du_crtc_resume(struct rcar_du_crtc *rcrtc);
  85. void rcar_du_crtc_route_output(struct drm_crtc *crtc,
  86. enum rcar_du_output output);
  87. void rcar_du_crtc_finish_page_flip(struct rcar_du_crtc *rcrtc);
  88. #endif /* __RCAR_DU_CRTC_H__ */