rcar_du_group.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. /*
  2. * rcar_du_group.c -- R-Car Display Unit Channels Pair
  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. /*
  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_pins(struct rcar_du_group *rgrp)
  42. {
  43. u32 defr6 = DEFR6_CODE;
  44. if (rgrp->channels_mask & BIT(0))
  45. defr6 |= DEFR6_ODPM02_DISP;
  46. if (rgrp->channels_mask & BIT(1))
  47. defr6 |= DEFR6_ODPM12_DISP;
  48. rcar_du_group_write(rgrp, DEFR6, defr6);
  49. }
  50. static void rcar_du_group_setup_defr8(struct rcar_du_group *rgrp)
  51. {
  52. struct rcar_du_device *rcdu = rgrp->dev;
  53. unsigned int possible_crtcs =
  54. rcdu->info->routes[RCAR_DU_OUTPUT_DPAD0].possible_crtcs;
  55. u32 defr8 = DEFR8_CODE;
  56. if (rcdu->info->gen < 3) {
  57. defr8 |= DEFR8_DEFE8;
  58. /*
  59. * On Gen2 the DEFR8 register for the first group also controls
  60. * RGB output routing to DPAD0 and VSPD1 routing to DU0/1/2 for
  61. * DU instances that support it.
  62. */
  63. if (rgrp->index == 0) {
  64. if (possible_crtcs > 1)
  65. defr8 |= DEFR8_DRGBS_DU(rcdu->dpad0_source);
  66. if (rgrp->dev->vspd1_sink == 2)
  67. defr8 |= DEFR8_VSCS;
  68. }
  69. } else {
  70. /*
  71. * On Gen3 VSPD routing can't be configured, but DPAD routing
  72. * needs to be set despite having a single option available.
  73. */
  74. unsigned int rgb_crtc = ffs(possible_crtcs) - 1;
  75. struct rcar_du_crtc *crtc = &rcdu->crtcs[rgb_crtc];
  76. if (crtc->index / 2 == rgrp->index)
  77. defr8 |= DEFR8_DRGBS_DU(crtc->index);
  78. }
  79. rcar_du_group_write(rgrp, DEFR8, defr8);
  80. }
  81. static void rcar_du_group_setup(struct rcar_du_group *rgrp)
  82. {
  83. struct rcar_du_device *rcdu = rgrp->dev;
  84. /* Enable extended features */
  85. rcar_du_group_write(rgrp, DEFR, DEFR_CODE | DEFR_DEFE);
  86. if (rcdu->info->gen < 3) {
  87. rcar_du_group_write(rgrp, DEFR2, DEFR2_CODE | DEFR2_DEFE2G);
  88. rcar_du_group_write(rgrp, DEFR3, DEFR3_CODE | DEFR3_DEFE3);
  89. rcar_du_group_write(rgrp, DEFR4, DEFR4_CODE);
  90. }
  91. rcar_du_group_write(rgrp, DEFR5, DEFR5_CODE | DEFR5_DEFE5);
  92. rcar_du_group_setup_pins(rgrp);
  93. if (rcar_du_has(rgrp->dev, RCAR_DU_FEATURE_EXT_CTRL_REGS)) {
  94. rcar_du_group_setup_defr8(rgrp);
  95. /*
  96. * Configure input dot clock routing. We currently hardcode the
  97. * configuration to routing DOTCLKINn to DUn. Register fields
  98. * depend on the DU generation, but the resulting value is 0 in
  99. * all cases.
  100. *
  101. * On Gen2 a single register in the first group controls dot
  102. * clock selection for all channels, while on Gen3 dot clocks
  103. * are setup through per-group registers, only available when
  104. * the group has two channels.
  105. */
  106. if ((rcdu->info->gen < 3 && rgrp->index == 0) ||
  107. (rcdu->info->gen == 3 && rgrp->num_crtcs > 1))
  108. rcar_du_group_write(rgrp, DIDSR, DIDSR_CODE);
  109. }
  110. if (rcdu->info->gen >= 3)
  111. rcar_du_group_write(rgrp, DEFR10, DEFR10_CODE | DEFR10_DEFE10);
  112. /*
  113. * Use DS1PR and DS2PR to configure planes priorities and connects the
  114. * superposition 0 to DU0 pins. DU1 pins will be configured dynamically.
  115. */
  116. rcar_du_group_write(rgrp, DORCR, DORCR_PG1D_DS1 | DORCR_DPRS);
  117. /* Apply planes to CRTCs association. */
  118. mutex_lock(&rgrp->lock);
  119. rcar_du_group_write(rgrp, DPTSR, (rgrp->dptsr_planes << 16) |
  120. rgrp->dptsr_planes);
  121. mutex_unlock(&rgrp->lock);
  122. }
  123. /*
  124. * rcar_du_group_get - Acquire a reference to the DU channels group
  125. *
  126. * Acquiring the first reference setups core registers. A reference must be held
  127. * before accessing any hardware registers.
  128. *
  129. * This function must be called with the DRM mode_config lock held.
  130. *
  131. * Return 0 in case of success or a negative error code otherwise.
  132. */
  133. int rcar_du_group_get(struct rcar_du_group *rgrp)
  134. {
  135. if (rgrp->use_count)
  136. goto done;
  137. rcar_du_group_setup(rgrp);
  138. done:
  139. rgrp->use_count++;
  140. return 0;
  141. }
  142. /*
  143. * rcar_du_group_put - Release a reference to the DU
  144. *
  145. * This function must be called with the DRM mode_config lock held.
  146. */
  147. void rcar_du_group_put(struct rcar_du_group *rgrp)
  148. {
  149. --rgrp->use_count;
  150. }
  151. static void __rcar_du_group_start_stop(struct rcar_du_group *rgrp, bool start)
  152. {
  153. rcar_du_group_write(rgrp, DSYSR,
  154. (rcar_du_group_read(rgrp, DSYSR) & ~(DSYSR_DRES | DSYSR_DEN)) |
  155. (start ? DSYSR_DEN : DSYSR_DRES));
  156. }
  157. void rcar_du_group_start_stop(struct rcar_du_group *rgrp, bool start)
  158. {
  159. /*
  160. * Many of the configuration bits are only updated when the display
  161. * reset (DRES) bit in DSYSR is set to 1, disabling *both* CRTCs. Some
  162. * of those bits could be pre-configured, but others (especially the
  163. * bits related to plane assignment to display timing controllers) need
  164. * to be modified at runtime.
  165. *
  166. * Restart the display controller if a start is requested. Sorry for the
  167. * flicker. It should be possible to move most of the "DRES-update" bits
  168. * setup to driver initialization time and minimize the number of cases
  169. * when the display controller will have to be restarted.
  170. */
  171. if (start) {
  172. if (rgrp->used_crtcs++ != 0)
  173. __rcar_du_group_start_stop(rgrp, false);
  174. __rcar_du_group_start_stop(rgrp, true);
  175. } else {
  176. if (--rgrp->used_crtcs == 0)
  177. __rcar_du_group_start_stop(rgrp, false);
  178. }
  179. }
  180. void rcar_du_group_restart(struct rcar_du_group *rgrp)
  181. {
  182. rgrp->need_restart = false;
  183. __rcar_du_group_start_stop(rgrp, false);
  184. __rcar_du_group_start_stop(rgrp, true);
  185. }
  186. int rcar_du_set_dpad0_vsp1_routing(struct rcar_du_device *rcdu)
  187. {
  188. struct rcar_du_group *rgrp;
  189. struct rcar_du_crtc *crtc;
  190. unsigned int index;
  191. int ret;
  192. if (!rcar_du_has(rcdu, RCAR_DU_FEATURE_EXT_CTRL_REGS))
  193. return 0;
  194. /*
  195. * RGB output routing to DPAD0 and VSP1D routing to DU0/1/2 are
  196. * configured in the DEFR8 register of the first group on Gen2 and the
  197. * last group on Gen3. As this function can be called with the DU
  198. * channels of the corresponding CRTCs disabled, we need to enable the
  199. * group clock before accessing the register.
  200. */
  201. index = rcdu->info->gen < 3 ? 0 : DIV_ROUND_UP(rcdu->num_crtcs, 2) - 1;
  202. rgrp = &rcdu->groups[index];
  203. crtc = &rcdu->crtcs[index * 2];
  204. ret = clk_prepare_enable(crtc->clock);
  205. if (ret < 0)
  206. return ret;
  207. rcar_du_group_setup_defr8(rgrp);
  208. clk_disable_unprepare(crtc->clock);
  209. return 0;
  210. }
  211. int rcar_du_group_set_routing(struct rcar_du_group *rgrp)
  212. {
  213. struct rcar_du_crtc *crtc0 = &rgrp->dev->crtcs[rgrp->index * 2];
  214. u32 dorcr = rcar_du_group_read(rgrp, DORCR);
  215. dorcr &= ~(DORCR_PG2T | DORCR_DK2S | DORCR_PG2D_MASK);
  216. /*
  217. * Set the DPAD1 pins sources. Select CRTC 0 if explicitly requested and
  218. * CRTC 1 in all other cases to avoid cloning CRTC 0 to DPAD0 and DPAD1
  219. * by default.
  220. */
  221. if (crtc0->outputs & BIT(RCAR_DU_OUTPUT_DPAD1))
  222. dorcr |= DORCR_PG2D_DS1;
  223. else
  224. dorcr |= DORCR_PG2T | DORCR_DK2S | DORCR_PG2D_DS2;
  225. rcar_du_group_write(rgrp, DORCR, dorcr);
  226. return rcar_du_set_dpad0_vsp1_routing(rgrp->dev);
  227. }