rcar_du_group.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. /*
  2. * rcar_du_group.c -- R-Car Display Unit Channels Pair
  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. /*
  14. * The R8A7779 DU is split in per-CRTC resources (scan-out engine, blending
  15. * unit, timings generator, ...) and device-global resources (start/stop
  16. * control, planes, ...) shared between the two CRTCs.
  17. *
  18. * The R8A7790 introduced a third CRTC with its own set of global resources.
  19. * This would be modeled as two separate DU device instances if it wasn't for
  20. * a handful or resources that are shared between the three CRTCs (mostly
  21. * related to input and output routing). For this reason the R8A7790 DU must be
  22. * modeled as a single device with three CRTCs, two sets of "semi-global"
  23. * resources, and a few device-global resources.
  24. *
  25. * The rcar_du_group object is a driver specific object, without any real
  26. * counterpart in the DU documentation, that models those semi-global resources.
  27. */
  28. #include <linux/clk.h>
  29. #include <linux/io.h>
  30. #include "rcar_du_drv.h"
  31. #include "rcar_du_group.h"
  32. #include "rcar_du_regs.h"
  33. u32 rcar_du_group_read(struct rcar_du_group *rgrp, u32 reg)
  34. {
  35. return rcar_du_read(rgrp->dev, rgrp->mmio_offset + reg);
  36. }
  37. void rcar_du_group_write(struct rcar_du_group *rgrp, u32 reg, u32 data)
  38. {
  39. rcar_du_write(rgrp->dev, rgrp->mmio_offset + reg, data);
  40. }
  41. static void rcar_du_group_setup_defr8(struct rcar_du_group *rgrp)
  42. {
  43. u32 defr8 = DEFR8_CODE | DEFR8_DEFE8;
  44. /* The DEFR8 register for the first group also controls RGB output
  45. * routing to DPAD0
  46. */
  47. if (rgrp->index == 0)
  48. defr8 |= DEFR8_DRGBS_DU(rgrp->dev->dpad0_source);
  49. rcar_du_group_write(rgrp, DEFR8, defr8);
  50. }
  51. static void rcar_du_group_setup(struct rcar_du_group *rgrp)
  52. {
  53. /* Enable extended features */
  54. rcar_du_group_write(rgrp, DEFR, DEFR_CODE | DEFR_DEFE);
  55. rcar_du_group_write(rgrp, DEFR2, DEFR2_CODE | DEFR2_DEFE2G);
  56. rcar_du_group_write(rgrp, DEFR3, DEFR3_CODE | DEFR3_DEFE3);
  57. rcar_du_group_write(rgrp, DEFR4, DEFR4_CODE);
  58. rcar_du_group_write(rgrp, DEFR5, DEFR5_CODE | DEFR5_DEFE5);
  59. if (rcar_du_has(rgrp->dev, RCAR_DU_FEATURE_EXT_CTRL_REGS)) {
  60. rcar_du_group_setup_defr8(rgrp);
  61. /* Configure input dot clock routing. We currently hardcode the
  62. * configuration to routing DOTCLKINn to DUn.
  63. */
  64. rcar_du_group_write(rgrp, DIDSR, DIDSR_CODE |
  65. DIDSR_LCDS_DCLKIN(2) |
  66. DIDSR_LCDS_DCLKIN(1) |
  67. DIDSR_LCDS_DCLKIN(0) |
  68. DIDSR_PDCS_CLK(2, 0) |
  69. DIDSR_PDCS_CLK(1, 0) |
  70. DIDSR_PDCS_CLK(0, 0));
  71. }
  72. /* Use DS1PR and DS2PR to configure planes priorities and connects the
  73. * superposition 0 to DU0 pins. DU1 pins will be configured dynamically.
  74. */
  75. rcar_du_group_write(rgrp, DORCR, DORCR_PG1D_DS1 | DORCR_DPRS);
  76. /* Apply planes to CRTCs association. */
  77. mutex_lock(&rgrp->lock);
  78. rcar_du_group_write(rgrp, DPTSR, (rgrp->dptsr_planes << 16) |
  79. rgrp->dptsr_planes);
  80. mutex_unlock(&rgrp->lock);
  81. }
  82. /*
  83. * rcar_du_group_get - Acquire a reference to the DU channels group
  84. *
  85. * Acquiring the first reference setups core registers. A reference must be held
  86. * before accessing any hardware registers.
  87. *
  88. * This function must be called with the DRM mode_config lock held.
  89. *
  90. * Return 0 in case of success or a negative error code otherwise.
  91. */
  92. int rcar_du_group_get(struct rcar_du_group *rgrp)
  93. {
  94. if (rgrp->use_count)
  95. goto done;
  96. rcar_du_group_setup(rgrp);
  97. done:
  98. rgrp->use_count++;
  99. return 0;
  100. }
  101. /*
  102. * rcar_du_group_put - Release a reference to the DU
  103. *
  104. * This function must be called with the DRM mode_config lock held.
  105. */
  106. void rcar_du_group_put(struct rcar_du_group *rgrp)
  107. {
  108. --rgrp->use_count;
  109. }
  110. static void __rcar_du_group_start_stop(struct rcar_du_group *rgrp, bool start)
  111. {
  112. rcar_du_group_write(rgrp, DSYSR,
  113. (rcar_du_group_read(rgrp, DSYSR) & ~(DSYSR_DRES | DSYSR_DEN)) |
  114. (start ? DSYSR_DEN : DSYSR_DRES));
  115. }
  116. void rcar_du_group_start_stop(struct rcar_du_group *rgrp, bool start)
  117. {
  118. /* Many of the configuration bits are only updated when the display
  119. * reset (DRES) bit in DSYSR is set to 1, disabling *both* CRTCs. Some
  120. * of those bits could be pre-configured, but others (especially the
  121. * bits related to plane assignment to display timing controllers) need
  122. * to be modified at runtime.
  123. *
  124. * Restart the display controller if a start is requested. Sorry for the
  125. * flicker. It should be possible to move most of the "DRES-update" bits
  126. * setup to driver initialization time and minimize the number of cases
  127. * when the display controller will have to be restarted.
  128. */
  129. if (start) {
  130. if (rgrp->used_crtcs++ != 0)
  131. __rcar_du_group_start_stop(rgrp, false);
  132. __rcar_du_group_start_stop(rgrp, true);
  133. } else {
  134. if (--rgrp->used_crtcs == 0)
  135. __rcar_du_group_start_stop(rgrp, false);
  136. }
  137. }
  138. void rcar_du_group_restart(struct rcar_du_group *rgrp)
  139. {
  140. __rcar_du_group_start_stop(rgrp, false);
  141. __rcar_du_group_start_stop(rgrp, true);
  142. }
  143. static int rcar_du_set_dpad0_routing(struct rcar_du_device *rcdu)
  144. {
  145. int ret;
  146. if (!rcar_du_has(rcdu, RCAR_DU_FEATURE_EXT_CTRL_REGS))
  147. return 0;
  148. /* RGB output routing to DPAD0 is configured in the DEFR8 register of
  149. * the first group. As this function can be called with the DU0 and DU1
  150. * CRTCs disabled, we need to enable the first group clock before
  151. * accessing the register.
  152. */
  153. ret = clk_prepare_enable(rcdu->crtcs[0].clock);
  154. if (ret < 0)
  155. return ret;
  156. rcar_du_group_setup_defr8(&rcdu->groups[0]);
  157. clk_disable_unprepare(rcdu->crtcs[0].clock);
  158. return 0;
  159. }
  160. int rcar_du_group_set_routing(struct rcar_du_group *rgrp)
  161. {
  162. struct rcar_du_crtc *crtc0 = &rgrp->dev->crtcs[rgrp->index * 2];
  163. u32 dorcr = rcar_du_group_read(rgrp, DORCR);
  164. dorcr &= ~(DORCR_PG2T | DORCR_DK2S | DORCR_PG2D_MASK);
  165. /* Set the DPAD1 pins sources. Select CRTC 0 if explicitly requested and
  166. * CRTC 1 in all other cases to avoid cloning CRTC 0 to DPAD0 and DPAD1
  167. * by default.
  168. */
  169. if (crtc0->outputs & BIT(RCAR_DU_OUTPUT_DPAD1))
  170. dorcr |= DORCR_PG2D_DS1;
  171. else
  172. dorcr |= DORCR_PG2T | DORCR_DK2S | DORCR_PG2D_DS2;
  173. rcar_du_group_write(rgrp, DORCR, dorcr);
  174. return rcar_du_set_dpad0_routing(rgrp->dev);
  175. }