rcar_du_group.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /*
  2. * rcar_du_group.c -- R-Car Display Unit Channels Pair
  3. *
  4. * Copyright (C) 2013 Renesas 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/io.h>
  29. #include "rcar_du_drv.h"
  30. #include "rcar_du_group.h"
  31. #include "rcar_du_regs.h"
  32. static u32 rcar_du_group_read(struct rcar_du_group *rgrp, u32 reg)
  33. {
  34. return rcar_du_read(rgrp->dev, rgrp->mmio_offset + reg);
  35. }
  36. static void rcar_du_group_write(struct rcar_du_group *rgrp, u32 reg, u32 data)
  37. {
  38. rcar_du_write(rgrp->dev, rgrp->mmio_offset + reg, data);
  39. }
  40. static void rcar_du_group_setup(struct rcar_du_group *rgrp)
  41. {
  42. /* Enable extended features */
  43. rcar_du_group_write(rgrp, DEFR, DEFR_CODE | DEFR_DEFE);
  44. rcar_du_group_write(rgrp, DEFR2, DEFR2_CODE | DEFR2_DEFE2G);
  45. rcar_du_group_write(rgrp, DEFR3, DEFR3_CODE | DEFR3_DEFE3);
  46. rcar_du_group_write(rgrp, DEFR4, DEFR4_CODE);
  47. rcar_du_group_write(rgrp, DEFR5, DEFR5_CODE | DEFR5_DEFE5);
  48. /* Use DS1PR and DS2PR to configure planes priorities and connects the
  49. * superposition 0 to DU0 pins. DU1 pins will be configured dynamically.
  50. */
  51. rcar_du_group_write(rgrp, DORCR, DORCR_PG1D_DS1 | DORCR_DPRS);
  52. }
  53. /*
  54. * rcar_du_group_get - Acquire a reference to the DU channels group
  55. *
  56. * Acquiring the first reference setups core registers. A reference must be held
  57. * before accessing any hardware registers.
  58. *
  59. * This function must be called with the DRM mode_config lock held.
  60. *
  61. * Return 0 in case of success or a negative error code otherwise.
  62. */
  63. int rcar_du_group_get(struct rcar_du_group *rgrp)
  64. {
  65. if (rgrp->use_count)
  66. goto done;
  67. rcar_du_group_setup(rgrp);
  68. done:
  69. rgrp->use_count++;
  70. return 0;
  71. }
  72. /*
  73. * rcar_du_group_put - Release a reference to the DU
  74. *
  75. * This function must be called with the DRM mode_config lock held.
  76. */
  77. void rcar_du_group_put(struct rcar_du_group *rgrp)
  78. {
  79. --rgrp->use_count;
  80. }
  81. static void __rcar_du_group_start_stop(struct rcar_du_group *rgrp, bool start)
  82. {
  83. rcar_du_group_write(rgrp, DSYSR,
  84. (rcar_du_group_read(rgrp, DSYSR) & ~(DSYSR_DRES | DSYSR_DEN)) |
  85. (start ? DSYSR_DEN : DSYSR_DRES));
  86. }
  87. void rcar_du_group_start_stop(struct rcar_du_group *rgrp, bool start)
  88. {
  89. /* Many of the configuration bits are only updated when the display
  90. * reset (DRES) bit in DSYSR is set to 1, disabling *both* CRTCs. Some
  91. * of those bits could be pre-configured, but others (especially the
  92. * bits related to plane assignment to display timing controllers) need
  93. * to be modified at runtime.
  94. *
  95. * Restart the display controller if a start is requested. Sorry for the
  96. * flicker. It should be possible to move most of the "DRES-update" bits
  97. * setup to driver initialization time and minimize the number of cases
  98. * when the display controller will have to be restarted.
  99. */
  100. if (start) {
  101. if (rgrp->used_crtcs++ != 0)
  102. __rcar_du_group_start_stop(rgrp, false);
  103. __rcar_du_group_start_stop(rgrp, true);
  104. } else {
  105. if (--rgrp->used_crtcs == 0)
  106. __rcar_du_group_start_stop(rgrp, false);
  107. }
  108. }
  109. void rcar_du_group_restart(struct rcar_du_group *rgrp)
  110. {
  111. __rcar_du_group_start_stop(rgrp, false);
  112. __rcar_du_group_start_stop(rgrp, true);
  113. }
  114. void rcar_du_group_set_routing(struct rcar_du_group *rgrp)
  115. {
  116. struct rcar_du_crtc *crtc0 = &rgrp->dev->crtcs[rgrp->index * 2];
  117. u32 dorcr = rcar_du_group_read(rgrp, DORCR);
  118. dorcr &= ~(DORCR_PG2T | DORCR_DK2S | DORCR_PG2D_MASK);
  119. /* Set the DU1 pins sources. Select CRTC 0 if explicitly requested and
  120. * CRTC 1 in all other cases to avoid cloning CRTC 0 to DU0 and DU1 by
  121. * default.
  122. */
  123. if (crtc0->outputs & (1 << 1))
  124. dorcr |= DORCR_PG2D_DS1;
  125. else
  126. dorcr |= DORCR_PG2T | DORCR_DK2S | DORCR_PG2D_DS2;
  127. rcar_du_group_write(rgrp, DORCR, dorcr);
  128. }