Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sys / dev / drm / ati_pcigart.h
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  * $FreeBSD: src/sys/dev/drm/ati_pcigart.h,v 1.1.2.1 2003/04/26 07:05:27 anholt Exp $
30  */
31
32 #include "dev/drm/drmP.h"
33
34 #if PAGE_SIZE == 8192
35 # define ATI_PCIGART_TABLE_ORDER        2
36 # define ATI_PCIGART_TABLE_PAGES        (1 << 2)
37 #elif PAGE_SIZE == 4096
38 # define ATI_PCIGART_TABLE_ORDER        3
39 # define ATI_PCIGART_TABLE_PAGES        (1 << 3)
40 #elif
41 # error - PAGE_SIZE not 8K or 4K
42 #endif
43
44 # define ATI_MAX_PCIGART_PAGES          8192    /* 32 MB aperture, 4K pages */
45 # define ATI_PCIGART_PAGE_SIZE          4096    /* PCI GART page size */
46
47 int DRM(ati_pcigart_init)( drm_device_t *dev,
48                            unsigned long *addr,
49                            dma_addr_t *bus_addr)
50 {
51         drm_sg_mem_t *entry = dev->sg;
52         unsigned long address = 0;
53         unsigned long pages;
54         u32 *pci_gart=0, page_base, bus_address = 0;
55         int i, j, ret = 0;
56
57         if ( !entry ) {
58                 DRM_ERROR( "no scatter/gather memory!\n" );
59                 goto done;
60         }
61
62         address = (long)contigmalloc((1 << ATI_PCIGART_TABLE_ORDER) * PAGE_SIZE, 
63             DRM(M_DRM), M_WAITOK, 0ul, 0xfffffffful, PAGE_SIZE, 0);
64         if ( !address ) {
65                 DRM_ERROR( "cannot allocate PCI GART page!\n" );
66                 goto done;
67         }
68
69         /* XXX: we need to busdma this */
70         bus_address = vtophys( address );
71
72         pci_gart = (u32 *)address;
73
74         pages = ( entry->pages <= ATI_MAX_PCIGART_PAGES )
75                 ? entry->pages : ATI_MAX_PCIGART_PAGES;
76
77         bzero( pci_gart, ATI_MAX_PCIGART_PAGES * sizeof(u32) );
78
79         for ( i = 0 ; i < pages ; i++ ) {
80                 entry->busaddr[i] = vtophys( entry->handle + (i*PAGE_SIZE) );
81                 page_base = (u32) entry->busaddr[i];
82
83                 for (j = 0; j < (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE); j++) {
84                         *pci_gart++ = cpu_to_le32( page_base );
85                         page_base += ATI_PCIGART_PAGE_SIZE;
86                 }
87         }
88
89         ret = 1;
90
91 done:
92         *addr = address;
93         *bus_addr = bus_address;
94         return ret;
95 }
96
97 int DRM(ati_pcigart_cleanup)( drm_device_t *dev,
98                               unsigned long addr,
99                               dma_addr_t bus_addr)
100 {
101         drm_sg_mem_t *entry = dev->sg;
102
103         /* we need to support large memory configurations */
104         if ( !entry ) {
105                 DRM_ERROR( "no scatter/gather memory!\n" );
106                 return 0;
107         }
108
109 #if __FreeBSD_version > 500000
110         contigfree( (void *)addr, (1 << ATI_PCIGART_TABLE_ORDER) * PAGE_SIZE, DRM(M_DRM));      /* Not available on 4.x */
111 #endif
112         return 1;
113 }