ati_pcigart.c 5.9 KB
Newer Older
L
Linus Torvalds 已提交
1
/**
D
Dave Airlie 已提交
2
 * \file ati_pcigart.c
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
 * ATI PCI GART support
 *
 * \author Gareth Hughes <gareth@valinux.com>
 */

/*
 * Created: Wed Dec 13 21:52:19 2000 by gareth@valinux.com
 *
 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
 * All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

#include "drmP.h"

#if PAGE_SIZE == 65536
# define ATI_PCIGART_TABLE_ORDER	0
# define ATI_PCIGART_TABLE_PAGES	(1 << 0)
#elif PAGE_SIZE == 16384
# define ATI_PCIGART_TABLE_ORDER	1
# define ATI_PCIGART_TABLE_PAGES	(1 << 1)
#elif PAGE_SIZE == 8192
# define ATI_PCIGART_TABLE_ORDER 	2
# define ATI_PCIGART_TABLE_PAGES 	(1 << 2)
#elif PAGE_SIZE == 4096
# define ATI_PCIGART_TABLE_ORDER 	3
# define ATI_PCIGART_TABLE_PAGES 	(1 << 3)
#else
# error - PAGE_SIZE not 64K, 16K, 8K or 4K
#endif

# define ATI_MAX_PCIGART_PAGES		8192	/**< 32 MB aperture, 4K pages */
# define ATI_PCIGART_PAGE_SIZE		4096	/**< PCI GART page size */

D
Dave Airlie 已提交
55
static unsigned long drm_ati_alloc_pcigart_table(void)
L
Linus Torvalds 已提交
56 57 58 59
{
	unsigned long address;
	struct page *page;
	int i;
D
Dave Airlie 已提交
60
	DRM_DEBUG("%s\n", __FUNCTION__);
L
Linus Torvalds 已提交
61

D
Dave Airlie 已提交
62 63
	address = __get_free_pages(GFP_KERNEL, ATI_PCIGART_TABLE_ORDER);
	if (address == 0UL) {
L
Linus Torvalds 已提交
64 65 66
		return 0;
	}

D
Dave Airlie 已提交
67
	page = virt_to_page(address);
L
Linus Torvalds 已提交
68

D
Dave Airlie 已提交
69
	for (i = 0; i < ATI_PCIGART_TABLE_PAGES; i++, page++) {
L
Linus Torvalds 已提交
70
		get_page(page);
D
Dave Airlie 已提交
71
		SetPageReserved(page);
L
Linus Torvalds 已提交
72 73
	}

D
Dave Airlie 已提交
74
	DRM_DEBUG("%s: returning 0x%08lx\n", __FUNCTION__, address);
L
Linus Torvalds 已提交
75 76 77
	return address;
}

D
Dave Airlie 已提交
78
static void drm_ati_free_pcigart_table(unsigned long address)
L
Linus Torvalds 已提交
79 80 81
{
	struct page *page;
	int i;
D
Dave Airlie 已提交
82
	DRM_DEBUG("%s\n", __FUNCTION__);
L
Linus Torvalds 已提交
83

D
Dave Airlie 已提交
84
	page = virt_to_page(address);
L
Linus Torvalds 已提交
85

D
Dave Airlie 已提交
86
	for (i = 0; i < ATI_PCIGART_TABLE_PAGES; i++, page++) {
L
Linus Torvalds 已提交
87
		__put_page(page);
D
Dave Airlie 已提交
88
		ClearPageReserved(page);
L
Linus Torvalds 已提交
89 90
	}

D
Dave Airlie 已提交
91
	free_pages(address, ATI_PCIGART_TABLE_ORDER);
L
Linus Torvalds 已提交
92 93
}

D
Dave Airlie 已提交
94 95
int drm_ati_pcigart_cleanup(drm_device_t * dev,
			    drm_ati_pcigart_info * gart_info)
L
Linus Torvalds 已提交
96 97 98 99 100 101
{
	drm_sg_mem_t *entry = dev->sg;
	unsigned long pages;
	int i;

	/* we need to support large memory configurations */
D
Dave Airlie 已提交
102 103
	if (!entry) {
		DRM_ERROR("no scatter/gather memory!\n");
L
Linus Torvalds 已提交
104 105 106
		return 0;
	}

107
	if (gart_info->bus_addr) {
D
Dave Airlie 已提交
108
		if (gart_info->gart_table_location == DRM_ATI_GART_MAIN) {
109 110 111 112
			pci_unmap_single(dev->pdev, gart_info->bus_addr,
					 ATI_PCIGART_TABLE_PAGES * PAGE_SIZE,
					 PCI_DMA_TODEVICE);
		}
L
Linus Torvalds 已提交
113

D
Dave Airlie 已提交
114 115
		pages = (entry->pages <= ATI_MAX_PCIGART_PAGES)
		    ? entry->pages : ATI_MAX_PCIGART_PAGES;
L
Linus Torvalds 已提交
116

D
Dave Airlie 已提交
117 118 119
		for (i = 0; i < pages; i++) {
			if (!entry->busaddr[i])
				break;
L
Linus Torvalds 已提交
120 121 122
			pci_unmap_single(dev->pdev, entry->busaddr[i],
					 PAGE_SIZE, PCI_DMA_TODEVICE);
		}
D
Dave Airlie 已提交
123 124 125

		if (gart_info->gart_table_location == DRM_ATI_GART_MAIN)
			gart_info->bus_addr = 0;
L
Linus Torvalds 已提交
126 127
	}

D
Dave Airlie 已提交
128 129
	if (gart_info->gart_table_location == DRM_ATI_GART_MAIN
	    && gart_info->addr) {
130
		drm_ati_free_pcigart_table(gart_info->addr);
D
Dave Airlie 已提交
131
		gart_info->addr = 0;
L
Linus Torvalds 已提交
132 133 134 135
	}

	return 1;
}
D
Dave Airlie 已提交
136

L
Linus Torvalds 已提交
137 138
EXPORT_SYMBOL(drm_ati_pcigart_cleanup);

D
Dave Airlie 已提交
139
int drm_ati_pcigart_init(drm_device_t * dev, drm_ati_pcigart_info * gart_info)
L
Linus Torvalds 已提交
140 141 142 143 144 145 146
{
	drm_sg_mem_t *entry = dev->sg;
	unsigned long address = 0;
	unsigned long pages;
	u32 *pci_gart, page_base, bus_address = 0;
	int i, j, ret = 0;

D
Dave Airlie 已提交
147 148
	if (!entry) {
		DRM_ERROR("no scatter/gather memory!\n");
L
Linus Torvalds 已提交
149 150 151
		goto done;
	}

D
Dave Airlie 已提交
152
	if (gart_info->gart_table_location == DRM_ATI_GART_MAIN) {
153
		DRM_DEBUG("PCI: no table in VRAM: using normal RAM\n");
D
Dave Airlie 已提交
154

155
		address = drm_ati_alloc_pcigart_table();
D
Dave Airlie 已提交
156 157
		if (!address) {
			DRM_ERROR("cannot allocate PCI GART page!\n");
158 159
			goto done;
		}
D
Dave Airlie 已提交
160 161 162

		if (!dev->pdev) {
			DRM_ERROR("PCI device unknown!\n");
163 164
			goto done;
		}
L
Linus Torvalds 已提交
165

166
		bus_address = pci_map_single(dev->pdev, (void *)address,
D
Dave Airlie 已提交
167 168
					     ATI_PCIGART_TABLE_PAGES *
					     PAGE_SIZE, PCI_DMA_TODEVICE);
169
		if (bus_address == 0) {
D
Dave Airlie 已提交
170 171
			DRM_ERROR("unable to map PCIGART pages!\n");
			drm_ati_free_pcigart_table(address);
172 173 174
			address = 0;
			goto done;
		}
D
Dave Airlie 已提交
175
	} else {
176 177
		address = gart_info->addr;
		bus_address = gart_info->bus_addr;
D
Dave Airlie 已提交
178 179
		DRM_DEBUG("PCI: Gart Table: VRAM %08X mapped at %08lX\n",
			  bus_address, address);
L
Linus Torvalds 已提交
180 181
	}

D
Dave Airlie 已提交
182
	pci_gart = (u32 *) address;
L
Linus Torvalds 已提交
183

D
Dave Airlie 已提交
184 185
	pages = (entry->pages <= ATI_MAX_PCIGART_PAGES)
	    ? entry->pages : ATI_MAX_PCIGART_PAGES;
L
Linus Torvalds 已提交
186

D
Dave Airlie 已提交
187
	memset(pci_gart, 0, ATI_MAX_PCIGART_PAGES * sizeof(u32));
L
Linus Torvalds 已提交
188

D
Dave Airlie 已提交
189
	for (i = 0; i < pages; i++) {
L
Linus Torvalds 已提交
190 191
		/* we need to support large memory configurations */
		entry->busaddr[i] = pci_map_single(dev->pdev,
D
Dave Airlie 已提交
192 193 194
						   page_address(entry->
								pagelist[i]),
						   PAGE_SIZE, PCI_DMA_TODEVICE);
L
Linus Torvalds 已提交
195
		if (entry->busaddr[i] == 0) {
D
Dave Airlie 已提交
196
			DRM_ERROR("unable to map PCIGART pages!\n");
197
			drm_ati_pcigart_cleanup(dev, gart_info);
L
Linus Torvalds 已提交
198 199 200 201 202 203 204
			address = 0;
			bus_address = 0;
			goto done;
		}
		page_base = (u32) entry->busaddr[i];

		for (j = 0; j < (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE); j++) {
205
			if (gart_info->is_pcie)
D
Dave Airlie 已提交
206
				*pci_gart = cpu_to_le32((page_base >> 8) | 0xc);
207
			else
D
Dave Airlie 已提交
208
				*pci_gart = cpu_to_le32(page_base);
D
Dave Airlie 已提交
209
			pci_gart++;
L
Linus Torvalds 已提交
210 211 212 213 214 215 216 217 218 219 220 221
			page_base += ATI_PCIGART_PAGE_SIZE;
		}
	}

	ret = 1;

#if defined(__i386__) || defined(__x86_64__)
	wbinvd();
#else
	mb();
#endif

D
Dave Airlie 已提交
222
      done:
223
	gart_info->addr = address;
D
Dave Airlie 已提交
224
	gart_info->bus_addr = bus_address;
L
Linus Torvalds 已提交
225 226
	return ret;
}
D
Dave Airlie 已提交
227

L
Linus Torvalds 已提交
228
EXPORT_SYMBOL(drm_ati_pcigart_init);