ati_pcigart.c 4.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 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],
L
Linus Torvalds 已提交
80 81
					 PAGE_SIZE, PCI_DMA_TODEVICE);
		}
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
{
D
Dave Airlie 已提交
98
	struct drm_sg_mem *entry = dev->sg;
99
	void *address = NULL;
L
Linus Torvalds 已提交
100
	unsigned long pages;
101 102
	u32 *pci_gart, page_base;
	dma_addr_t bus_address = 0;
L
Linus Torvalds 已提交
103
	int i, j, ret = 0;
104
	int max_pages;
L
Linus Torvalds 已提交
105

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

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

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

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

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

132 133 134
	max_pages = (gart_info->table_size / sizeof(u32));
	pages = (entry->pages <= max_pages)
	    ? entry->pages : max_pages;
L
Linus Torvalds 已提交
135

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

D
Dave Airlie 已提交
138
	for (i = 0; i < pages; i++) {
L
Linus Torvalds 已提交
139
		/* we need to support large memory configurations */
140 141
		entry->busaddr[i] = pci_map_page(dev->pdev, entry->pagelist[i],
						 0, PAGE_SIZE, PCI_DMA_TODEVICE);
L
Linus Torvalds 已提交
142
		if (entry->busaddr[i] == 0) {
D
Dave Airlie 已提交
143
			DRM_ERROR("unable to map PCIGART pages!\n");
144
			drm_ati_pcigart_cleanup(dev, gart_info);
145
			address = NULL;
L
Linus Torvalds 已提交
146 147 148 149 150 151
			bus_address = 0;
			goto done;
		}
		page_base = (u32) entry->busaddr[i];

		for (j = 0; j < (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE); j++) {
152 153 154 155 156
			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 已提交
157
				*pci_gart = cpu_to_le32((page_base >> 8) | 0xc);
158 159 160
				break;
			default:
			case DRM_ATI_GART_PCI:
D
Dave Airlie 已提交
161
				*pci_gart = cpu_to_le32(page_base);
162 163
				break;
			}
D
Dave Airlie 已提交
164
			pci_gart++;
L
Linus Torvalds 已提交
165 166 167 168 169 170 171 172 173 174 175
			page_base += ATI_PCIGART_PAGE_SIZE;
		}
	}
	ret = 1;

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

D
Dave Airlie 已提交
176
      done:
177
	gart_info->addr = address;
D
Dave Airlie 已提交
178
	gart_info->bus_addr = bus_address;
L
Linus Torvalds 已提交
179 180 181
	return ret;
}
EXPORT_SYMBOL(drm_ati_pcigart_init);