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
 * 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"

# define ATI_PCIGART_PAGE_SIZE		4096	/**< PCI GART page size */

38
static void *drm_ati_alloc_pcigart_table(int order)
L
Linus Torvalds 已提交
39 40 41 42
{
	unsigned long address;
	struct page *page;
	int i;
43 44

	DRM_DEBUG("%s: alloc %d order\n", __FUNCTION__, order);
L
Linus Torvalds 已提交
45

46
	address = __get_free_pages(GFP_KERNEL | __GFP_COMP,
47
				   order);
D
Dave Airlie 已提交
48
	if (address == 0UL) {
D
Dave Airlie 已提交
49
		return NULL;
L
Linus Torvalds 已提交
50 51
	}

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

54
	for (i = 0; i < order; i++, page++)
D
Dave Airlie 已提交
55
		SetPageReserved(page);
L
Linus Torvalds 已提交
56

D
Dave Airlie 已提交
57
	DRM_DEBUG("%s: returning 0x%08lx\n", __FUNCTION__, address);
58
	return (void *)address;
L
Linus Torvalds 已提交
59 60
}

61
static void drm_ati_free_pcigart_table(void *address, int order)
L
Linus Torvalds 已提交
62 63 64
{
	struct page *page;
	int i;
65
	int num_pages = 1 << order;
D
Dave Airlie 已提交
66
	DRM_DEBUG("%s\n", __FUNCTION__);
L
Linus Torvalds 已提交
67

68
	page = virt_to_page((unsigned long)address);
L
Linus Torvalds 已提交
69

70
	for (i = 0; i < num_pages; i++, page++)
D
Dave Airlie 已提交
71
		ClearPageReserved(page);
L
Linus Torvalds 已提交
72

73
	free_pages((unsigned long)address, order);
L
Linus Torvalds 已提交
74 75
}

76
int drm_ati_pcigart_cleanup(drm_device_t *dev, drm_ati_pcigart_info *gart_info)
L
Linus Torvalds 已提交
77 78 79 80
{
	drm_sg_mem_t *entry = dev->sg;
	unsigned long pages;
	int i;
81 82
	int order;
	int num_pages, max_pages;
L
Linus Torvalds 已提交
83 84

	/* we need to support large memory configurations */
D
Dave Airlie 已提交
85 86
	if (!entry) {
		DRM_ERROR("no scatter/gather memory!\n");
L
Linus Torvalds 已提交
87 88 89
		return 0;
	}

90 91 92
	order = drm_order((gart_info->table_size + (PAGE_SIZE-1)) / PAGE_SIZE);
	num_pages = 1 << order;

93
	if (gart_info->bus_addr) {
D
Dave Airlie 已提交
94
		if (gart_info->gart_table_location == DRM_ATI_GART_MAIN) {
95
			pci_unmap_single(dev->pdev, gart_info->bus_addr,
96
					 num_pages * PAGE_SIZE,
97 98
					 PCI_DMA_TODEVICE);
		}
L
Linus Torvalds 已提交
99

100 101 102
		max_pages = (gart_info->table_size / sizeof(u32));
		pages = (entry->pages <= max_pages)
		  ? entry->pages : max_pages;
L
Linus Torvalds 已提交
103

D
Dave Airlie 已提交
104 105 106
		for (i = 0; i < pages; i++) {
			if (!entry->busaddr[i])
				break;
L
Linus Torvalds 已提交
107 108 109
			pci_unmap_single(dev->pdev, entry->busaddr[i],
					 PAGE_SIZE, PCI_DMA_TODEVICE);
		}
D
Dave Airlie 已提交
110 111 112

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

D
Dave Airlie 已提交
115 116
	if (gart_info->gart_table_location == DRM_ATI_GART_MAIN
	    && gart_info->addr) {
117
		drm_ati_free_pcigart_table(gart_info->addr, order);
D
Dave Airlie 已提交
118
		gart_info->addr = NULL;
L
Linus Torvalds 已提交
119 120 121 122 123 124
	}

	return 1;
}
EXPORT_SYMBOL(drm_ati_pcigart_cleanup);

125
int drm_ati_pcigart_init(drm_device_t *dev, drm_ati_pcigart_info *gart_info)
L
Linus Torvalds 已提交
126 127
{
	drm_sg_mem_t *entry = dev->sg;
128
	void *address = NULL;
L
Linus Torvalds 已提交
129 130 131
	unsigned long pages;
	u32 *pci_gart, page_base, bus_address = 0;
	int i, j, ret = 0;
132 133 134
	int order;
	int max_pages;
	int num_pages;
L
Linus Torvalds 已提交
135

D
Dave Airlie 已提交
136 137
	if (!entry) {
		DRM_ERROR("no scatter/gather memory!\n");
L
Linus Torvalds 已提交
138 139 140
		goto done;
	}

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

144 145 146 147
		order = drm_order((gart_info->table_size +
				   (PAGE_SIZE-1)) / PAGE_SIZE);
		num_pages = 1 << order;
		address = drm_ati_alloc_pcigart_table(order);
D
Dave Airlie 已提交
148 149
		if (!address) {
			DRM_ERROR("cannot allocate PCI GART page!\n");
150 151
			goto done;
		}
D
Dave Airlie 已提交
152 153 154

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

158
		bus_address = pci_map_single(dev->pdev, address,
159 160
					     num_pages * PAGE_SIZE,
					     PCI_DMA_TODEVICE);
161
		if (bus_address == 0) {
D
Dave Airlie 已提交
162
			DRM_ERROR("unable to map PCIGART pages!\n");
163 164 165
			order = drm_order((gart_info->table_size +
					   (PAGE_SIZE-1)) / PAGE_SIZE);
			drm_ati_free_pcigart_table(address, order);
D
Dave Airlie 已提交
166
			address = NULL;
167 168
			goto done;
		}
D
Dave Airlie 已提交
169
	} else {
170 171
		address = gart_info->addr;
		bus_address = gart_info->bus_addr;
D
Dave Airlie 已提交
172
		DRM_DEBUG("PCI: Gart Table: VRAM %08X mapped at %08lX\n",
173
			  bus_address, (unsigned long)address);
L
Linus Torvalds 已提交
174 175
	}

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

178 179 180
	max_pages = (gart_info->table_size / sizeof(u32));
	pages = (entry->pages <= max_pages)
	    ? entry->pages : max_pages;
L
Linus Torvalds 已提交
181

182
	memset(pci_gart, 0, max_pages * sizeof(u32));
L
Linus Torvalds 已提交
183

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

		for (j = 0; j < (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE); j++) {
200 201 202 203 204
			switch(gart_info->gart_reg_if) {
			case DRM_ATI_GART_IGP:
				*pci_gart = cpu_to_le32((page_base) | 0xc);
				break;
			case DRM_ATI_GART_PCIE:
D
Dave Airlie 已提交
205
				*pci_gart = cpu_to_le32((page_base >> 8) | 0xc);
206 207 208
				break;
			default:
			case DRM_ATI_GART_PCI:
D
Dave Airlie 已提交
209
				*pci_gart = cpu_to_le32(page_base);
210 211
				break;
			}
D
Dave Airlie 已提交
212
			pci_gart++;
L
Linus Torvalds 已提交
213 214 215 216 217 218 219 220 221 222 223 224
			page_base += ATI_PCIGART_PAGE_SIZE;
		}
	}

	ret = 1;

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

D
Dave Airlie 已提交
225
      done:
226
	gart_info->addr = address;
D
Dave Airlie 已提交
227
	gart_info->bus_addr = bus_address;
L
Linus Torvalds 已提交
228 229 230
	return ret;
}
EXPORT_SYMBOL(drm_ati_pcigart_init);