ati_pcigart.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

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