r128_irq.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* r128_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 "r128_drm.h"
  35. #include "r128_drv.h"
  36. u32 r128_get_vblank_counter(struct drm_device *dev, int crtc)
  37. {
  38. const drm_r128_private_t *dev_priv = dev->dev_private;
  39. if (crtc != 0)
  40. return 0;
  41. return atomic_read(&dev_priv->vbl_received);
  42. }
  43. irqreturn_t r128_driver_irq_handler(DRM_IRQ_ARGS)
  44. {
  45. struct drm_device *dev = (struct drm_device *) arg;
  46. drm_r128_private_t *dev_priv = (drm_r128_private_t *) dev->dev_private;
  47. int status;
  48. status = R128_READ(R128_GEN_INT_STATUS);
  49. /* VBLANK interrupt */
  50. if (status & R128_CRTC_VBLANK_INT) {
  51. R128_WRITE(R128_GEN_INT_STATUS, R128_CRTC_VBLANK_INT_AK);
  52. atomic_inc(&dev_priv->vbl_received);
  53. drm_handle_vblank(dev, 0);
  54. return IRQ_HANDLED;
  55. }
  56. return IRQ_NONE;
  57. }
  58. int r128_enable_vblank(struct drm_device *dev, int crtc)
  59. {
  60. drm_r128_private_t *dev_priv = dev->dev_private;
  61. if (crtc != 0) {
  62. DRM_ERROR("%s: bad crtc %d\n", __func__, crtc);
  63. return -EINVAL;
  64. }
  65. R128_WRITE(R128_GEN_INT_CNTL, R128_CRTC_VBLANK_INT_EN);
  66. return 0;
  67. }
  68. void r128_disable_vblank(struct drm_device *dev, int crtc)
  69. {
  70. if (crtc != 0)
  71. DRM_ERROR("%s: bad crtc %d\n", __func__, crtc);
  72. /*
  73. * FIXME: implement proper interrupt disable by using the vblank
  74. * counter register (if available)
  75. *
  76. * R128_WRITE(R128_GEN_INT_CNTL,
  77. * R128_READ(R128_GEN_INT_CNTL) & ~R128_CRTC_VBLANK_INT_EN);
  78. */
  79. }
  80. void r128_driver_irq_preinstall(struct drm_device *dev)
  81. {
  82. drm_r128_private_t *dev_priv = (drm_r128_private_t *) dev->dev_private;
  83. /* Disable *all* interrupts */
  84. R128_WRITE(R128_GEN_INT_CNTL, 0);
  85. /* Clear vblank bit if it's already high */
  86. R128_WRITE(R128_GEN_INT_STATUS, R128_CRTC_VBLANK_INT_AK);
  87. }
  88. int r128_driver_irq_postinstall(struct drm_device *dev)
  89. {
  90. return 0;
  91. }
  92. void r128_driver_irq_uninstall(struct drm_device *dev)
  93. {
  94. drm_r128_private_t *dev_priv = (drm_r128_private_t *) dev->dev_private;
  95. if (!dev_priv)
  96. return;
  97. /* Disable *all* interrupts */
  98. R128_WRITE(R128_GEN_INT_CNTL, 0);
  99. }