r128_irq.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. irqreturn_t r128_driver_irq_handler( DRM_IRQ_ARGS )
  37. {
  38. drm_device_t *dev = (drm_device_t *) arg;
  39. drm_r128_private_t *dev_priv =
  40. (drm_r128_private_t *)dev->dev_private;
  41. int status;
  42. status = R128_READ( R128_GEN_INT_STATUS );
  43. /* VBLANK interrupt */
  44. if ( status & R128_CRTC_VBLANK_INT ) {
  45. R128_WRITE( R128_GEN_INT_STATUS, R128_CRTC_VBLANK_INT_AK );
  46. atomic_inc(&dev->vbl_received);
  47. DRM_WAKEUP(&dev->vbl_queue);
  48. drm_vbl_send_signals( dev );
  49. return IRQ_HANDLED;
  50. }
  51. return IRQ_NONE;
  52. }
  53. int r128_driver_vblank_wait(drm_device_t *dev, unsigned int *sequence)
  54. {
  55. unsigned int cur_vblank;
  56. int ret = 0;
  57. /* Assume that the user has missed the current sequence number
  58. * by about a day rather than she wants to wait for years
  59. * using vertical blanks...
  60. */
  61. DRM_WAIT_ON( ret, dev->vbl_queue, 3*DRM_HZ,
  62. ( ( ( cur_vblank = atomic_read(&dev->vbl_received ) )
  63. - *sequence ) <= (1<<23) ) );
  64. *sequence = cur_vblank;
  65. return ret;
  66. }
  67. void r128_driver_irq_preinstall( drm_device_t *dev ) {
  68. drm_r128_private_t *dev_priv =
  69. (drm_r128_private_t *)dev->dev_private;
  70. /* Disable *all* interrupts */
  71. R128_WRITE( R128_GEN_INT_CNTL, 0 );
  72. /* Clear vblank bit if it's already high */
  73. R128_WRITE( R128_GEN_INT_STATUS, R128_CRTC_VBLANK_INT_AK );
  74. }
  75. void r128_driver_irq_postinstall( drm_device_t *dev ) {
  76. drm_r128_private_t *dev_priv =
  77. (drm_r128_private_t *)dev->dev_private;
  78. /* Turn on VBL interrupt */
  79. R128_WRITE( R128_GEN_INT_CNTL, R128_CRTC_VBLANK_INT_EN );
  80. }
  81. void r128_driver_irq_uninstall( drm_device_t *dev ) {
  82. drm_r128_private_t *dev_priv =
  83. (drm_r128_private_t *)dev->dev_private;
  84. if (!dev_priv)
  85. return;
  86. /* Disable *all* interrupts */
  87. R128_WRITE( R128_GEN_INT_CNTL, 0 );
  88. }