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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* ati_pcigart.h -- ATI PCI GART support -*- linux-c -*-
  2.  * Created: Wed Dec 13 21:52:19 2000 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.  * PRECISION INSIGHT 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 OTHER
  24.  * DEALINGS IN THE SOFTWARE.
  25.  *
  26.  * Authors:
  27.  *   Gareth Hughes <gareth@valinux.com>
  28.  */
  29. #include "drmP.h"
  30. #if PAGE_SIZE == 65536
  31. # define ATI_PCIGART_TABLE_ORDER  0
  32. # define ATI_PCIGART_TABLE_PAGES  (1 << 0)
  33. #elif PAGE_SIZE == 16384
  34. # define ATI_PCIGART_TABLE_ORDER  1
  35. # define ATI_PCIGART_TABLE_PAGES  (1 << 1)
  36. #elif PAGE_SIZE == 8192
  37. # define ATI_PCIGART_TABLE_ORDER  2
  38. # define ATI_PCIGART_TABLE_PAGES  (1 << 2)
  39. #elif PAGE_SIZE == 4096
  40. # define ATI_PCIGART_TABLE_ORDER  3
  41. # define ATI_PCIGART_TABLE_PAGES  (1 << 3)
  42. #else
  43. # error - PAGE_SIZE not 64K, 16K, 8K or 4K
  44. #endif
  45. # define ATI_MAX_PCIGART_PAGES 8192 /* 32 MB aperture, 4K pages */
  46. # define ATI_PCIGART_PAGE_SIZE 4096 /* PCI GART page size */
  47. static unsigned long DRM(ati_alloc_pcigart_table)( void )
  48. {
  49. unsigned long address;
  50. struct page *page;
  51. int i;
  52. DRM_DEBUG( "%sn", __FUNCTION__ );
  53. address = __get_free_pages( GFP_KERNEL, ATI_PCIGART_TABLE_ORDER );
  54. if ( address == 0UL ) {
  55. return 0;
  56. }
  57. page = virt_to_page( address );
  58. for ( i = 0 ; i < ATI_PCIGART_TABLE_PAGES ; i++, page++ ) {
  59. atomic_inc( &page->count );
  60. SetPageReserved( page );
  61. }
  62. DRM_DEBUG( "%s: returning 0x%08lxn", __FUNCTION__, address );
  63. return address;
  64. }
  65. static void DRM(ati_free_pcigart_table)( unsigned long address )
  66. {
  67. struct page *page;
  68. int i;
  69. DRM_DEBUG( "%sn", __FUNCTION__ );
  70. page = virt_to_page( address );
  71. for ( i = 0 ; i < ATI_PCIGART_TABLE_PAGES ; i++, page++ ) {
  72. atomic_dec( &page->count );
  73. ClearPageReserved( page );
  74. }
  75. free_pages( address, ATI_PCIGART_TABLE_ORDER );
  76. }
  77. int DRM(ati_pcigart_init)( drm_device_t *dev,
  78.    unsigned long *addr,
  79.    dma_addr_t *bus_addr)
  80. {
  81. drm_sg_mem_t *entry = dev->sg;
  82. unsigned long address = 0;
  83. unsigned long pages;
  84. u32 *pci_gart, page_base, bus_address = 0;
  85. int i, j, ret = 0;
  86. if ( !entry ) {
  87. DRM_ERROR( "no scatter/gather memory!n" );
  88. goto done;
  89. }
  90. address = DRM(ati_alloc_pcigart_table)();
  91. if ( !address ) {
  92. DRM_ERROR( "cannot allocate PCI GART page!n" );
  93. goto done;
  94. }
  95. if ( !dev->pdev ) {
  96. DRM_ERROR( "PCI device unknown!n" );
  97. goto done;
  98. }
  99. bus_address = pci_map_single(dev->pdev, (void *)address,
  100.   ATI_PCIGART_TABLE_PAGES * PAGE_SIZE,
  101.   PCI_DMA_TODEVICE);
  102. if (bus_address == 0) {
  103. DRM_ERROR( "unable to map PCIGART pages!n" );
  104. DRM(ati_free_pcigart_table)( address );
  105. address = 0;
  106. goto done;
  107. }
  108. pci_gart = (u32 *)address;
  109. pages = ( entry->pages <= ATI_MAX_PCIGART_PAGES )
  110. ? entry->pages : ATI_MAX_PCIGART_PAGES;
  111. memset( pci_gart, 0, ATI_MAX_PCIGART_PAGES * sizeof(u32) );
  112. for ( i = 0 ; i < pages ; i++ ) {
  113. /* we need to support large memory configurations */
  114. entry->busaddr[i] = pci_map_single(dev->pdev,
  115.    page_address( entry->pagelist[i] ),
  116.    PAGE_SIZE,
  117.    PCI_DMA_TODEVICE);
  118. if (entry->busaddr[i] == 0) {
  119. DRM_ERROR( "unable to map PCIGART pages!n" );
  120. DRM(ati_pcigart_cleanup)( dev, address, bus_address );
  121. address = 0;
  122. bus_address = 0;
  123. goto done;
  124. }
  125. page_base = (u32) entry->busaddr[i];
  126. for (j = 0; j < (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE); j++) {
  127. *pci_gart++ = cpu_to_le32( page_base );
  128. page_base += ATI_PCIGART_PAGE_SIZE;
  129. }
  130. }
  131. ret = 1;
  132. #if defined(__i386__) || defined(__x86_64__)
  133. asm volatile ( "wbinvd" ::: "memory" );
  134. #else
  135. mb();
  136. #endif
  137. done:
  138. *addr = address;
  139. *bus_addr = bus_address;
  140. return ret;
  141. }
  142. int DRM(ati_pcigart_cleanup)( drm_device_t *dev,
  143.       unsigned long addr,
  144.       dma_addr_t bus_addr)
  145. {
  146. drm_sg_mem_t *entry = dev->sg;
  147. unsigned long pages;
  148. int i;
  149. /* we need to support large memory configurations */
  150. if ( !entry ) {
  151. DRM_ERROR( "no scatter/gather memory!n" );
  152. return 0;
  153. }
  154. if ( bus_addr ) {
  155. pci_unmap_single(dev->pdev, bus_addr,
  156.  ATI_PCIGART_TABLE_PAGES * PAGE_SIZE,
  157.  PCI_DMA_TODEVICE);
  158. pages = ( entry->pages <= ATI_MAX_PCIGART_PAGES )
  159.         ? entry->pages : ATI_MAX_PCIGART_PAGES;
  160. for ( i = 0 ; i < pages ; i++ ) {
  161. if ( !entry->busaddr[i] ) break;
  162. pci_unmap_single(dev->pdev, entry->busaddr[i],
  163.  PAGE_SIZE, PCI_DMA_TODEVICE);
  164. }
  165. }
  166. if ( addr ) {
  167. DRM(ati_free_pcigart_table)( addr );
  168. }
  169. return 1;
  170. }