via_mm.c 5.7 KB
Newer Older
D
Dave Airlie 已提交
1
/*
2 3
 * Copyright 2006 Tungsten Graphics Inc., Bismarck, ND., USA.
 * All rights reserved.
D
Dave Airlie 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * 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, sub license,
 * 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 NON-INFRINGEMENT. IN NO EVENT SHALL
19 20
 * THE AUTHORS OR COPYRIGHT HOLDERS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
D
Dave Airlie 已提交
21 22 23
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */
24 25 26 27
/*
 * Authors: Thomas Hellstrm <thomas-at-tungstengraphics-dot-com>
 */

D
Dave Airlie 已提交
28 29 30
#include "drmP.h"
#include "via_drm.h"
#include "via_drv.h"
31
#include "drm_sman.h"
D
Dave Airlie 已提交
32

33 34
#define VIA_MM_ALIGN_SHIFT 4
#define VIA_MM_ALIGN_MASK ( (1 << VIA_MM_ALIGN_SHIFT) - 1)
D
Dave Airlie 已提交
35 36 37

int via_agp_init(DRM_IOCTL_ARGS)
{
38
	DRM_DEVICE;
D
Dave Airlie 已提交
39
	drm_via_agp_t agp;
40 41
	drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
	int ret;
D
Dave Airlie 已提交
42

43 44
	DRM_COPY_FROM_USER_IOCTL(agp, (drm_via_agp_t __user *) data,
				 sizeof(agp));
45 46 47 48 49 50 51 52 53
	mutex_lock(&dev->struct_mutex);
	ret = drm_sman_set_range(&dev_priv->sman, VIA_MEM_AGP, 0,
				 agp.size >> VIA_MM_ALIGN_SHIFT);

	if (ret) {
		DRM_ERROR("AGP memory manager initialisation error\n");
		mutex_unlock(&dev->struct_mutex);
		return ret;
	}
D
Dave Airlie 已提交
54

55
	dev_priv->agp_initialized = 1;
56 57
	dev_priv->agp_offset = agp.offset;
	mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
58

59
	DRM_DEBUG("offset = %u, size = %u", agp.offset, agp.size);
D
Dave Airlie 已提交
60 61 62 63 64
	return 0;
}

int via_fb_init(DRM_IOCTL_ARGS)
{
65
	DRM_DEVICE;
D
Dave Airlie 已提交
66
	drm_via_fb_t fb;
67 68
	drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
	int ret;
D
Dave Airlie 已提交
69

70
	DRM_COPY_FROM_USER_IOCTL(fb, (drm_via_fb_t __user *) data, sizeof(fb));
D
Dave Airlie 已提交
71

72 73 74
	mutex_lock(&dev->struct_mutex);
	ret = drm_sman_set_range(&dev_priv->sman, VIA_MEM_VIDEO, 0,
				 fb.size >> VIA_MM_ALIGN_SHIFT);
D
Dave Airlie 已提交
75

76 77 78 79 80
	if (ret) {
		DRM_ERROR("VRAM memory manager initialisation error\n");
		mutex_unlock(&dev->struct_mutex);
		return ret;
	}
D
Dave Airlie 已提交
81

82
	dev_priv->vram_initialized = 1;
83
	dev_priv->vram_offset = fb.offset;
D
Dave Airlie 已提交
84

85 86 87 88
	mutex_unlock(&dev->struct_mutex);
	DRM_DEBUG("offset = %u, size = %u", fb.offset, fb.size);

	return 0;
D
Dave Airlie 已提交
89 90 91 92

}

int via_final_context(struct drm_device *dev, int context)
D
Dave Airlie 已提交
93
{
D
Dave Airlie 已提交
94 95
	drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;

D
Dave Airlie 已提交
96 97
	via_release_futex(dev_priv, context);

D
Dave Airlie 已提交
98 99 100
	/* Linux specific until context tracking code gets ported to BSD */
	/* Last context, perform cleanup */
	if (dev->ctx_count == 1 && dev->dev_private) {
D
Dave Airlie 已提交
101
		DRM_DEBUG("Last Context\n");
D
Dave Airlie 已提交
102 103 104 105 106 107 108 109
		if (dev->irq)
			drm_irq_uninstall(dev);
		via_cleanup_futex(dev_priv);
		via_do_cleanup_map(dev);
	}
	return 1;
}

110 111 112 113 114 115 116 117 118
void via_lastclose(struct drm_device *dev)
{
	drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;

	if (!dev_priv)
		return;

	mutex_lock(&dev->struct_mutex);
	drm_sman_cleanup(&dev_priv->sman);
119 120
	dev_priv->vram_initialized = 0;
	dev_priv->agp_initialized = 0;
121 122 123
	mutex_unlock(&dev->struct_mutex);
}	

D
Dave Airlie 已提交
124 125
int via_mem_alloc(DRM_IOCTL_ARGS)
{
126 127
	DRM_DEVICE;

D
Dave Airlie 已提交
128
	drm_via_mem_t mem;
129 130 131 132
	int retval = 0;
	drm_memblock_item_t *item;
	drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
	unsigned long tmpSize;
D
Dave Airlie 已提交
133

134 135
	DRM_COPY_FROM_USER_IOCTL(mem, (drm_via_mem_t __user *) data,
				 sizeof(mem));
D
Dave Airlie 已提交
136

137 138 139
	if (mem.type > VIA_MEM_AGP) {
		DRM_ERROR("Unknown memory type allocation\n");
		return DRM_ERR(EINVAL);
D
Dave Airlie 已提交
140
	}
141
	mutex_lock(&dev->struct_mutex);
142
	if (0 == ((mem.type == VIA_MEM_VIDEO) ? dev_priv->vram_initialized :
143 144 145 146 147
		      dev_priv->agp_initialized)) {
		DRM_ERROR
		    ("Attempt to allocate from uninitialized memory manager.\n");
		mutex_unlock(&dev->struct_mutex);
		return DRM_ERR(EINVAL);
D
Dave Airlie 已提交
148 149
	}

150 151 152 153 154 155 156 157 158 159
	tmpSize = (mem.size + VIA_MM_ALIGN_MASK) >> VIA_MM_ALIGN_SHIFT;
	item = drm_sman_alloc(&dev_priv->sman, mem.type, tmpSize, 0,
			      (unsigned long)priv);
	mutex_unlock(&dev->struct_mutex);
	if (item) {
		mem.offset = ((mem.type == VIA_MEM_VIDEO) ?
			      dev_priv->vram_offset : dev_priv->agp_offset) +
		    (item->mm->
		     offset(item->mm, item->mm_info) << VIA_MM_ALIGN_SHIFT);
		mem.index = item->user_hash.key;
D
Dave Airlie 已提交
160
	} else {
161 162 163 164 165
		mem.offset = 0;
		mem.size = 0;
		mem.index = 0;
		DRM_DEBUG("Video memory allocation failed\n");
		retval = DRM_ERR(ENOMEM);
D
Dave Airlie 已提交
166
	}
167
	DRM_COPY_TO_USER_IOCTL((drm_via_mem_t __user *) data, mem, sizeof(mem));
D
Dave Airlie 已提交
168 169 170 171 172 173

	return retval;
}

int via_mem_free(DRM_IOCTL_ARGS)
{
174 175
	DRM_DEVICE;
	drm_via_private_t *dev_priv = dev->dev_private;
D
Dave Airlie 已提交
176
	drm_via_mem_t mem;
177
	int ret;
D
Dave Airlie 已提交
178

179 180
	DRM_COPY_FROM_USER_IOCTL(mem, (drm_via_mem_t __user *) data,
				 sizeof(mem));
D
Dave Airlie 已提交
181

182 183 184 185
	mutex_lock(&dev->struct_mutex);
	ret = drm_sman_free_key(&dev_priv->sman, mem.index);
	mutex_unlock(&dev->struct_mutex);
	DRM_DEBUG("free = 0x%lx\n", mem.index);
D
Dave Airlie 已提交
186

187
	return ret;
D
Dave Airlie 已提交
188 189 190
}


191
void via_reclaim_buffers_locked(drm_device_t * dev, struct file *filp)
D
Dave Airlie 已提交
192
{
193 194
	drm_via_private_t *dev_priv = dev->dev_private;
	drm_file_t *priv = filp->private_data;
D
Dave Airlie 已提交
195

196 197 198 199
	mutex_lock(&dev->struct_mutex);
	if (drm_sman_owner_clean(&dev_priv->sman, (unsigned long)priv)) {
		mutex_unlock(&dev->struct_mutex);
		return;
D
Dave Airlie 已提交
200 201
	}

202 203 204
	if (dev->driver->dma_quiescent) {
		dev->driver->dma_quiescent(dev);
	}
D
Dave Airlie 已提交
205

206 207 208
	drm_sman_owner_cleanup(&dev_priv->sman, (unsigned long)priv);
	mutex_unlock(&dev->struct_mutex);
	return;
D
Dave Airlie 已提交
209
}