mga_irq.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /* mga_irq.c -- IRQ handling for radeon -*- linux-c -*-
  2. *
  3. * Copyright (C) The Weather Channel, Inc. 2002. All Rights Reserved.
  4. *
  5. * The Weather Channel (TM) funded Tungsten Graphics to develop the
  6. * initial release of the Radeon 8500 driver under the XFree86 license.
  7. * This notice must be preserved.
  8. *
  9. * Permission is hereby granted, free of charge, to any person obtaining a
  10. * copy of this software and associated documentation files (the "Software"),
  11. * to deal in the Software without restriction, including without limitation
  12. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  13. * and/or sell copies of the Software, and to permit persons to whom the
  14. * Software is furnished to do so, subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice (including the next
  17. * paragraph) shall be included in all copies or substantial portions of the
  18. * Software.
  19. *
  20. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  21. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  22. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  23. * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  24. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  25. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  26. * DEALINGS IN THE SOFTWARE.
  27. *
  28. * Authors:
  29. * Keith Whitwell <keith@tungstengraphics.com>
  30. * Eric Anholt <anholt@FreeBSD.org>
  31. */
  32. #include "drmP.h"
  33. #include "drm.h"
  34. #include "mga_drm.h"
  35. #include "mga_drv.h"
  36. irqreturn_t mga_driver_irq_handler(DRM_IRQ_ARGS)
  37. {
  38. struct drm_device *dev = (struct drm_device *) arg;
  39. drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
  40. int status;
  41. int handled = 0;
  42. status = MGA_READ(MGA_STATUS);
  43. /* VBLANK interrupt */
  44. if (status & MGA_VLINEPEN) {
  45. MGA_WRITE(MGA_ICLEAR, MGA_VLINEICLR);
  46. atomic_inc(&dev->vbl_received);
  47. DRM_WAKEUP(&dev->vbl_queue);
  48. drm_vbl_send_signals(dev);
  49. handled = 1;
  50. }
  51. /* SOFTRAP interrupt */
  52. if (status & MGA_SOFTRAPEN) {
  53. const u32 prim_start = MGA_READ(MGA_PRIMADDRESS);
  54. const u32 prim_end = MGA_READ(MGA_PRIMEND);
  55. MGA_WRITE(MGA_ICLEAR, MGA_SOFTRAPICLR);
  56. /* In addition to clearing the interrupt-pending bit, we
  57. * have to write to MGA_PRIMEND to re-start the DMA operation.
  58. */
  59. if ((prim_start & ~0x03) != (prim_end & ~0x03)) {
  60. MGA_WRITE(MGA_PRIMEND, prim_end);
  61. }
  62. atomic_inc(&dev_priv->last_fence_retired);
  63. DRM_WAKEUP(&dev_priv->fence_queue);
  64. handled = 1;
  65. }
  66. if (handled) {
  67. return IRQ_HANDLED;
  68. }
  69. return IRQ_NONE;
  70. }
  71. int mga_driver_vblank_wait(struct drm_device * dev, unsigned int *sequence)
  72. {
  73. unsigned int cur_vblank;
  74. int ret = 0;
  75. /* Assume that the user has missed the current sequence number
  76. * by about a day rather than she wants to wait for years
  77. * using vertical blanks...
  78. */
  79. DRM_WAIT_ON(ret, dev->vbl_queue, 3 * DRM_HZ,
  80. (((cur_vblank = atomic_read(&dev->vbl_received))
  81. - *sequence) <= (1 << 23)));
  82. *sequence = cur_vblank;
  83. return ret;
  84. }
  85. int mga_driver_fence_wait(struct drm_device * dev, unsigned int *sequence)
  86. {
  87. drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
  88. unsigned int cur_fence;
  89. int ret = 0;
  90. /* Assume that the user has missed the current sequence number
  91. * by about a day rather than she wants to wait for years
  92. * using fences.
  93. */
  94. DRM_WAIT_ON(ret, dev_priv->fence_queue, 3 * DRM_HZ,
  95. (((cur_fence = atomic_read(&dev_priv->last_fence_retired))
  96. - *sequence) <= (1 << 23)));
  97. *sequence = cur_fence;
  98. return ret;
  99. }
  100. void mga_driver_irq_preinstall(struct drm_device * dev)
  101. {
  102. drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
  103. /* Disable *all* interrupts */
  104. MGA_WRITE(MGA_IEN, 0);
  105. /* Clear bits if they're already high */
  106. MGA_WRITE(MGA_ICLEAR, ~0);
  107. }
  108. void mga_driver_irq_postinstall(struct drm_device * dev)
  109. {
  110. drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
  111. DRM_INIT_WAITQUEUE(&dev_priv->fence_queue);
  112. /* Turn on vertical blank interrupt and soft trap interrupt. */
  113. MGA_WRITE(MGA_IEN, MGA_VLINEIEN | MGA_SOFTRAPEN);
  114. }
  115. void mga_driver_irq_uninstall(struct drm_device * dev)
  116. {
  117. drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
  118. if (!dev_priv)
  119. return;
  120. /* Disable *all* interrupts */
  121. MGA_WRITE(MGA_IEN, 0);
  122. dev->irq_enabled = 0;
  123. }