ati_pcigart.c 5.4 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 39
static int drm_ati_alloc_pcigart_table(struct drm_device *dev,
				       struct drm_ati_pcigart_info *gart_info)
L
Linus Torvalds 已提交
40
{
41 42 43 44 45
	gart_info->table_handle = drm_pci_alloc(dev, gart_info->table_size,
						PAGE_SIZE,
						gart_info->table_mask);
	if (gart_info->table_handle == NULL)
		return -ENOMEM;
L
Linus Torvalds 已提交
46

47
	return 0;
L
Linus Torvalds 已提交
48 49
}

50 51
static void drm_ati_free_pcigart_table(struct drm_device *dev,
				       struct drm_ati_pcigart_info *gart_info)
L
Linus Torvalds 已提交
52
{
53 54
	drm_pci_free(dev, gart_info->table_handle);
	gart_info->table_handle = NULL;
L
Linus Torvalds 已提交
55 56
}

D
Dave Airlie 已提交
57
int drm_ati_pcigart_cleanup(struct drm_device *dev, struct drm_ati_pcigart_info *gart_info)
L
Linus Torvalds 已提交
58
{
D
Dave Airlie 已提交
59
	struct drm_sg_mem *entry = dev->sg;
L
Linus Torvalds 已提交
60 61
	unsigned long pages;
	int i;
62
	int max_pages;
L
Linus Torvalds 已提交
63 64

	/* we need to support large memory configurations */
D
Dave Airlie 已提交
65 66
	if (!entry) {
		DRM_ERROR("no scatter/gather memory!\n");
L
Linus Torvalds 已提交
67 68 69
		return 0;
	}

70
	if (gart_info->bus_addr) {
L
Linus Torvalds 已提交
71

72 73 74
		max_pages = (gart_info->table_size / sizeof(u32));
		pages = (entry->pages <= max_pages)
		  ? entry->pages : max_pages;
L
Linus Torvalds 已提交
75

D
Dave Airlie 已提交
76 77 78
		for (i = 0; i < pages; i++) {
			if (!entry->busaddr[i])
				break;
79
			pci_unmap_page(dev->pdev, entry->busaddr[i],
80
					 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
L
Linus Torvalds 已提交
81
		}
D
Dave Airlie 已提交
82 83 84

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

87 88 89
	if (gart_info->gart_table_location == DRM_ATI_GART_MAIN &&
	    gart_info->table_handle) {
		drm_ati_free_pcigart_table(dev, gart_info);
L
Linus Torvalds 已提交
90 91 92 93 94 95
	}

	return 1;
}
EXPORT_SYMBOL(drm_ati_pcigart_cleanup);

D
Dave Airlie 已提交
96
int drm_ati_pcigart_init(struct drm_device *dev, struct drm_ati_pcigart_info *gart_info)
L
Linus Torvalds 已提交
97
{
98
	struct drm_local_map *map = &gart_info->mapping;
D
Dave Airlie 已提交
99
	struct drm_sg_mem *entry = dev->sg;
100
	void *address = NULL;
L
Linus Torvalds 已提交
101
	unsigned long pages;
102
	u32 *pci_gart, page_base, gart_idx;
103
	dma_addr_t bus_address = 0;
L
Linus Torvalds 已提交
104
	int i, j, ret = 0;
105
	int max_ati_pages, max_real_pages;
L
Linus Torvalds 已提交
106

D
Dave Airlie 已提交
107 108
	if (!entry) {
		DRM_ERROR("no scatter/gather memory!\n");
L
Linus Torvalds 已提交
109 110 111
		goto done;
	}

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

115 116
		ret = drm_ati_alloc_pcigart_table(dev, gart_info);
		if (ret) {
D
Dave Airlie 已提交
117
			DRM_ERROR("cannot allocate PCI GART page!\n");
118 119
			goto done;
		}
D
Dave Airlie 已提交
120

121 122
		address = gart_info->table_handle->vaddr;
		bus_address = gart_info->table_handle->busaddr;
D
Dave Airlie 已提交
123
	} else {
124 125
		address = gart_info->addr;
		bus_address = gart_info->bus_addr;
126 127 128
		DRM_DEBUG("PCI: Gart Table: VRAM %08LX mapped at %08lX\n",
			  (unsigned long long)bus_address,
			  (unsigned long)address);
L
Linus Torvalds 已提交
129 130
	}

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

133 134 135 136
	max_ati_pages = (gart_info->table_size / sizeof(u32));
	max_real_pages = max_ati_pages / (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE);
	pages = (entry->pages <= max_real_pages)
	    ? entry->pages : max_real_pages;
L
Linus Torvalds 已提交
137

138
	if (gart_info->gart_table_location == DRM_ATI_GART_MAIN) {
139
		memset(pci_gart, 0, max_ati_pages * sizeof(u32));
140
	} else {
141
		for (gart_idx = 0; gart_idx < max_ati_pages; gart_idx++)
142 143
			DRM_WRITE32(map, gart_idx * sizeof(u32), 0);
	}
L
Linus Torvalds 已提交
144

145
	gart_idx = 0;
D
Dave Airlie 已提交
146
	for (i = 0; i < pages; i++) {
L
Linus Torvalds 已提交
147
		/* we need to support large memory configurations */
148
		entry->busaddr[i] = pci_map_page(dev->pdev, entry->pagelist[i],
149
						 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
L
Linus Torvalds 已提交
150
		if (entry->busaddr[i] == 0) {
D
Dave Airlie 已提交
151
			DRM_ERROR("unable to map PCIGART pages!\n");
152
			drm_ati_pcigart_cleanup(dev, gart_info);
153
			address = NULL;
L
Linus Torvalds 已提交
154 155 156 157 158 159
			bus_address = 0;
			goto done;
		}
		page_base = (u32) entry->busaddr[i];

		for (j = 0; j < (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE); j++) {
160 161
			u32 val;

162 163
			switch(gart_info->gart_reg_if) {
			case DRM_ATI_GART_IGP:
164
				val = page_base | 0xc;
165 166
				break;
			case DRM_ATI_GART_PCIE:
167
				val = (page_base >> 8) | 0xc;
168 169 170
				break;
			default:
			case DRM_ATI_GART_PCI:
171
				val = page_base;
172 173
				break;
			}
174 175 176 177 178 179
			if (gart_info->gart_table_location ==
			    DRM_ATI_GART_MAIN)
				pci_gart[gart_idx] = cpu_to_le32(val);
			else
				DRM_WRITE32(map, gart_idx * sizeof(u32), val);
			gart_idx++;
L
Linus Torvalds 已提交
180 181 182 183 184 185 186 187 188 189 190
			page_base += ATI_PCIGART_PAGE_SIZE;
		}
	}
	ret = 1;

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

D
Dave Airlie 已提交
191
      done:
192
	gart_info->addr = address;
D
Dave Airlie 已提交
193
	gart_info->bus_addr = bus_address;
L
Linus Torvalds 已提交
194 195 196
	return ret;
}
EXPORT_SYMBOL(drm_ati_pcigart_init);