i830.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* i830.h -- Intel I830 DRM template customization -*- linux-c -*-
  2.  * Created: Thu Feb 15 00:01:12 2001 by gareth@valinux.com
  3.  *
  4.  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
  5.  * All Rights Reserved.
  6.  *
  7.  * Permission is hereby granted, free of charge, to any person obtaining a
  8.  * copy of this software and associated documentation files (the "Software"),
  9.  * to deal in the Software without restriction, including without limitation
  10.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  11.  * and/or sell copies of the Software, and to permit persons to whom the
  12.  * Software is furnished to do so, subject to the following conditions:
  13.  *
  14.  * The above copyright notice and this permission notice (including the next
  15.  * paragraph) shall be included in all copies or substantial portions of the
  16.  * Software.
  17.  *
  18.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  21.  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  22.  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  23.  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  24.  * OTHER DEALINGS IN THE SOFTWARE.
  25.  *
  26.  * Authors:
  27.  *    Gareth Hughes <gareth@valinux.com>
  28.  */
  29. #ifndef __I830_H__
  30. #define __I830_H__
  31. /* This remains constant for all DRM template files.
  32.  */
  33. #define DRM(x) i830_##x
  34. /* General customization:
  35.  */
  36. #define __HAVE_AGP 1
  37. #define __MUST_HAVE_AGP 1
  38. #define __HAVE_MTRR 1
  39. #define __HAVE_CTX_BITMAP 1
  40. /* Driver customization:
  41.  */
  42. #define __HAVE_RELEASE 1
  43. #define DRIVER_RELEASE() do {
  44. i830_reclaim_buffers( dev, priv->pid );
  45. } while (0)
  46. /* DMA customization:
  47.  */
  48. #define __HAVE_DMA 1
  49. #define __HAVE_DMA_QUEUE 1
  50. #define __HAVE_DMA_WAITLIST 1
  51. #define __HAVE_DMA_RECLAIM 1
  52. #define __HAVE_DMA_QUIESCENT 1
  53. #define DRIVER_DMA_QUIESCENT() do {
  54. i830_dma_quiescent( dev );
  55. } while (0)
  56. #define __HAVE_DMA_IRQ 1
  57. #define __HAVE_DMA_IRQ_BH 1
  58. #define __HAVE_SHARED_IRQ       1
  59. #define DRIVER_PREINSTALL() do {
  60. drm_i830_private_t *dev_priv =
  61. (drm_i830_private_t *)dev->dev_private;
  62. u16 tmp;
  63.     tmp = I830_READ16( I830REG_HWSTAM );
  64.     tmp = tmp & 0x6000;
  65.     I830_WRITE16( I830REG_HWSTAM, tmp );
  66.        tmp = I830_READ16( I830REG_INT_MASK_R );
  67.     tmp = tmp & 0x6000; /* Unmask interrupts */
  68.     I830_WRITE16( I830REG_INT_MASK_R, tmp );
  69.     tmp = I830_READ16( I830REG_INT_ENABLE_R );
  70.     tmp = tmp & 0x6000; /* Disable all interrupts */
  71.        I830_WRITE16( I830REG_INT_ENABLE_R, tmp );
  72. } while (0)
  73. #define DRIVER_POSTINSTALL() do {
  74. drm_i830_private_t *dev_priv =
  75. (drm_i830_private_t *)dev->dev_private;
  76. u16 tmp;
  77.     tmp = I830_READ16( I830REG_INT_ENABLE_R );
  78.     tmp = tmp & 0x6000;
  79.     tmp = tmp | 0x0003; /* Enable bp & user interrupts */
  80.     I830_WRITE16( I830REG_INT_ENABLE_R, tmp );
  81. } while (0)
  82. #define DRIVER_UNINSTALL() do {
  83. drm_i830_private_t *dev_priv =
  84. (drm_i830_private_t *)dev->dev_private;
  85. u16 tmp;
  86. if ( dev_priv ) {
  87. tmp = I830_READ16( I830REG_INT_IDENTITY_R );
  88. tmp = tmp & ~(0x6000); /* Clear all interrupts */
  89. if ( tmp != 0 )
  90. I830_WRITE16( I830REG_INT_IDENTITY_R, tmp );
  91. tmp = I830_READ16( I830REG_INT_ENABLE_R );
  92. tmp = tmp & 0x6000; /* Disable all interrupts */
  93. I830_WRITE16( I830REG_INT_ENABLE_R, tmp );
  94. }
  95. } while (0)
  96. /* Buffer customization:
  97.  */
  98. #define DRIVER_BUF_PRIV_T drm_i830_buf_priv_t
  99. #define DRIVER_AGP_BUFFERS_MAP( dev )
  100. ((drm_i830_private_t *)((dev)->dev_private))->buffer_map
  101. #endif