sis_mm.c 9.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/* sis_mm.c -- Private header for Direct Rendering Manager -*- linux-c -*-
 * Created: Mon Jan  4 10:05:05 1999 by sclin@sis.com.tw
 *
 * Copyright 2000 Silicon Integrated Systems Corp, Inc., HsinChu, Taiwan.
 * 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:
D
Dave Airlie 已提交
13
 *
L
Linus Torvalds 已提交
14 15 16
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
D
Dave Airlie 已提交
17
 *
L
Linus Torvalds 已提交
18 19 20 21 22 23 24
 * 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.
D
Dave Airlie 已提交
25
 *
L
Linus Torvalds 已提交
26 27
 * Authors:
 *    Sung-Ching Lin <sclin@sis.com.tw>
D
Dave Airlie 已提交
28
 *
L
Linus Torvalds 已提交
29 30 31 32 33 34 35 36 37 38 39
 */

#include "drmP.h"
#include "sis_drm.h"
#include "sis_drv.h"
#include "sis_ds.h"
#if defined(__linux__) && defined(CONFIG_FB_SIS)
#include <video/sisfb.h>
#endif

#define MAX_CONTEXT 100
D
Dave Airlie 已提交
40
#define VIDEO_TYPE 0
L
Linus Torvalds 已提交
41 42 43 44 45
#define AGP_TYPE 1

typedef struct {
	int used;
	int context;
D
Dave Airlie 已提交
46
	set_t *sets[2];		/* 0 for video, 1 for AGP */
L
Linus Torvalds 已提交
47 48 49 50 51 52 53
} sis_context_t;

static sis_context_t global_ppriv[MAX_CONTEXT];

static int add_alloc_set(int context, int type, unsigned int val)
{
	int i, retval = 0;
D
Dave Airlie 已提交
54

L
Linus Torvalds 已提交
55
	for (i = 0; i < MAX_CONTEXT; i++) {
D
Dave Airlie 已提交
56
		if (global_ppriv[i].used && global_ppriv[i].context == context) {
L
Linus Torvalds 已提交
57 58 59 60 61 62 63 64
			retval = setAdd(global_ppriv[i].sets[type], val);
			break;
		}
	}
	return retval;
}

static int del_alloc_set(int context, int type, unsigned int val)
D
Dave Airlie 已提交
65
{
L
Linus Torvalds 已提交
66 67 68
	int i, retval = 0;

	for (i = 0; i < MAX_CONTEXT; i++) {
D
Dave Airlie 已提交
69
		if (global_ppriv[i].used && global_ppriv[i].context == context) {
L
Linus Torvalds 已提交
70 71 72 73 74 75 76
			retval = setDel(global_ppriv[i].sets[type], val);
			break;
		}
	}
	return retval;
}

D
Dave Airlie 已提交
77
/* fb management via fb device */
L
Linus Torvalds 已提交
78 79
#if defined(__linux__) && defined(CONFIG_FB_SIS)

D
Dave Airlie 已提交
80
static int sis_fb_init(DRM_IOCTL_ARGS)
L
Linus Torvalds 已提交
81 82 83 84
{
	return 0;
}

D
Dave Airlie 已提交
85
static int sis_fb_alloc(DRM_IOCTL_ARGS)
L
Linus Torvalds 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
{
	drm_sis_mem_t fb;
	struct sis_memreq req;
	drm_sis_mem_t __user *argp = (void __user *)data;
	int retval = 0;

	DRM_COPY_FROM_USER_IOCTL(fb, argp, sizeof(fb));

	req.size = fb.size;
	sis_malloc(&req);
	if (req.offset) {
		/* TODO */
		fb.offset = req.offset;
		fb.free = req.offset;
		if (!add_alloc_set(fb.context, VIDEO_TYPE, fb.free)) {
			DRM_DEBUG("adding to allocation set fails\n");
			sis_free(req.offset);
			retval = DRM_ERR(EINVAL);
		}
D
Dave Airlie 已提交
105
	} else {
L
Linus Torvalds 已提交
106 107 108 109 110 111 112 113 114 115 116 117
		fb.offset = 0;
		fb.size = 0;
		fb.free = 0;
	}

	DRM_COPY_TO_USER_IOCTL(argp, fb, sizeof(fb));

	DRM_DEBUG("alloc fb, size = %d, offset = %d\n", fb.size, req.offset);

	return retval;
}

D
Dave Airlie 已提交
118
static int sis_fb_free(DRM_IOCTL_ARGS)
L
Linus Torvalds 已提交
119 120 121 122
{
	drm_sis_mem_t fb;
	int retval = 0;

D
Dave Airlie 已提交
123
	DRM_COPY_FROM_USER_IOCTL(fb, (drm_sis_mem_t __user *) data, sizeof(fb));
L
Linus Torvalds 已提交
124 125 126 127 128 129

	if (!fb.free)
		return DRM_ERR(EINVAL);

	if (!del_alloc_set(fb.context, VIDEO_TYPE, fb.free))
		retval = DRM_ERR(EINVAL);
D
Dave Airlie 已提交
130
	sis_free((u32) fb.free);
L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148

	DRM_DEBUG("free fb, offset = %lu\n", fb.free);

	return retval;
}

#else

/* Called by the X Server to initialize the FB heap.  Allocations will fail
 * unless this is called.  Offset is the beginning of the heap from the
 * framebuffer offset (MaxXFBMem in XFree86).
 *
 * Memory layout according to Thomas Winischofer:
 * |------------------|DDDDDDDDDDDDDDDDDDDDDDDDDDDDD|HHHH|CCCCCCCCCCC|
 *
 *    X driver/sisfb                                  HW-   Command-
 *  framebuffer memory           DRI heap           Cursor   queue
 */
D
Dave Airlie 已提交
149
static int sis_fb_init(DRM_IOCTL_ARGS)
L
Linus Torvalds 已提交
150 151 152 153 154
{
	DRM_DEVICE;
	drm_sis_private_t *dev_priv = dev->dev_private;
	drm_sis_fb_t fb;

D
Dave Airlie 已提交
155
	DRM_COPY_FROM_USER_IOCTL(fb, (drm_sis_fb_t __user *) data, sizeof(fb));
L
Linus Torvalds 已提交
156 157 158

	if (dev_priv == NULL) {
		dev->dev_private = drm_calloc(1, sizeof(drm_sis_private_t),
D
Dave Airlie 已提交
159
					      DRM_MEM_DRIVER);
L
Linus Torvalds 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
		dev_priv = dev->dev_private;
		if (dev_priv == NULL)
			return ENOMEM;
	}

	if (dev_priv->FBHeap != NULL)
		return DRM_ERR(EINVAL);

	dev_priv->FBHeap = mmInit(fb.offset, fb.size);

	DRM_DEBUG("offset = %u, size = %u", fb.offset, fb.size);

	return 0;
}

D
Dave Airlie 已提交
175
static int sis_fb_alloc(DRM_IOCTL_ARGS)
L
Linus Torvalds 已提交
176 177 178 179 180 181 182 183 184 185
{
	DRM_DEVICE;
	drm_sis_private_t *dev_priv = dev->dev_private;
	drm_sis_mem_t __user *argp = (void __user *)data;
	drm_sis_mem_t fb;
	PMemBlock block;
	int retval = 0;

	if (dev_priv == NULL || dev_priv->FBHeap == NULL)
		return DRM_ERR(EINVAL);
D
Dave Airlie 已提交
186

L
Linus Torvalds 已提交
187
	DRM_COPY_FROM_USER_IOCTL(fb, argp, sizeof(fb));
D
Dave Airlie 已提交
188

L
Linus Torvalds 已提交
189 190 191 192 193 194 195
	block = mmAllocMem(dev_priv->FBHeap, fb.size, 0, 0);
	if (block) {
		/* TODO */
		fb.offset = block->ofs;
		fb.free = (unsigned long)block;
		if (!add_alloc_set(fb.context, VIDEO_TYPE, fb.free)) {
			DRM_DEBUG("adding to allocation set fails\n");
D
Dave Airlie 已提交
196
			mmFreeMem((PMemBlock) fb.free);
L
Linus Torvalds 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
			retval = DRM_ERR(EINVAL);
		}
	} else {
		fb.offset = 0;
		fb.size = 0;
		fb.free = 0;
	}

	DRM_COPY_TO_USER_IOCTL(argp, fb, sizeof(fb));

	DRM_DEBUG("alloc fb, size = %d, offset = %d\n", fb.size, fb.offset);

	return retval;
}

D
Dave Airlie 已提交
212
static int sis_fb_free(DRM_IOCTL_ARGS)
L
Linus Torvalds 已提交
213 214 215 216 217 218 219 220
{
	DRM_DEVICE;
	drm_sis_private_t *dev_priv = dev->dev_private;
	drm_sis_mem_t fb;

	if (dev_priv == NULL || dev_priv->FBHeap == NULL)
		return DRM_ERR(EINVAL);

D
Dave Airlie 已提交
221
	DRM_COPY_FROM_USER_IOCTL(fb, (drm_sis_mem_t __user *) data, sizeof(fb));
L
Linus Torvalds 已提交
222

D
Dave Airlie 已提交
223
	if (!mmBlockInHeap(dev_priv->FBHeap, (PMemBlock) fb.free))
L
Linus Torvalds 已提交
224 225 226 227
		return DRM_ERR(EINVAL);

	if (!del_alloc_set(fb.context, VIDEO_TYPE, fb.free))
		return DRM_ERR(EINVAL);
D
Dave Airlie 已提交
228
	mmFreeMem((PMemBlock) fb.free);
L
Linus Torvalds 已提交
229 230 231 232 233 234 235 236

	DRM_DEBUG("free fb, free = 0x%lx\n", fb.free);

	return 0;
}

#endif

D
Dave Airlie 已提交
237
/* agp memory management */
L
Linus Torvalds 已提交
238

D
Dave Airlie 已提交
239
static int sis_ioctl_agp_init(DRM_IOCTL_ARGS)
L
Linus Torvalds 已提交
240 241 242 243 244 245 246
{
	DRM_DEVICE;
	drm_sis_private_t *dev_priv = dev->dev_private;
	drm_sis_agp_t agp;

	if (dev_priv == NULL) {
		dev->dev_private = drm_calloc(1, sizeof(drm_sis_private_t),
D
Dave Airlie 已提交
247
					      DRM_MEM_DRIVER);
L
Linus Torvalds 已提交
248 249 250 251 252 253 254 255
		dev_priv = dev->dev_private;
		if (dev_priv == NULL)
			return ENOMEM;
	}

	if (dev_priv->AGPHeap != NULL)
		return DRM_ERR(EINVAL);

D
Dave Airlie 已提交
256 257
	DRM_COPY_FROM_USER_IOCTL(agp, (drm_sis_agp_t __user *) data,
				 sizeof(agp));
L
Linus Torvalds 已提交
258 259 260 261

	dev_priv->AGPHeap = mmInit(agp.offset, agp.size);

	DRM_DEBUG("offset = %u, size = %u", agp.offset, agp.size);
D
Dave Airlie 已提交
262

L
Linus Torvalds 已提交
263 264 265
	return 0;
}

D
Dave Airlie 已提交
266
static int sis_ioctl_agp_alloc(DRM_IOCTL_ARGS)
L
Linus Torvalds 已提交
267 268 269 270 271 272 273
{
	DRM_DEVICE;
	drm_sis_private_t *dev_priv = dev->dev_private;
	drm_sis_mem_t __user *argp = (void __user *)data;
	drm_sis_mem_t agp;
	PMemBlock block;
	int retval = 0;
D
Dave Airlie 已提交
274

L
Linus Torvalds 已提交
275 276
	if (dev_priv == NULL || dev_priv->AGPHeap == NULL)
		return DRM_ERR(EINVAL);
D
Dave Airlie 已提交
277

L
Linus Torvalds 已提交
278
	DRM_COPY_FROM_USER_IOCTL(agp, argp, sizeof(agp));
D
Dave Airlie 已提交
279

L
Linus Torvalds 已提交
280 281 282 283 284 285 286
	block = mmAllocMem(dev_priv->AGPHeap, agp.size, 0, 0);
	if (block) {
		/* TODO */
		agp.offset = block->ofs;
		agp.free = (unsigned long)block;
		if (!add_alloc_set(agp.context, AGP_TYPE, agp.free)) {
			DRM_DEBUG("adding to allocation set fails\n");
D
Dave Airlie 已提交
287
			mmFreeMem((PMemBlock) agp.free);
L
Linus Torvalds 已提交
288 289
			retval = -1;
		}
D
Dave Airlie 已提交
290
	} else {
L
Linus Torvalds 已提交
291 292 293 294 295 296 297 298 299 300 301 302
		agp.offset = 0;
		agp.size = 0;
		agp.free = 0;
	}

	DRM_COPY_TO_USER_IOCTL(argp, agp, sizeof(agp));

	DRM_DEBUG("alloc agp, size = %d, offset = %d\n", agp.size, agp.offset);

	return retval;
}

D
Dave Airlie 已提交
303
static int sis_ioctl_agp_free(DRM_IOCTL_ARGS)
L
Linus Torvalds 已提交
304 305 306 307 308 309 310 311
{
	DRM_DEVICE;
	drm_sis_private_t *dev_priv = dev->dev_private;
	drm_sis_mem_t agp;

	if (dev_priv == NULL || dev_priv->AGPHeap == NULL)
		return DRM_ERR(EINVAL);

D
Dave Airlie 已提交
312 313
	DRM_COPY_FROM_USER_IOCTL(agp, (drm_sis_mem_t __user *) data,
				 sizeof(agp));
L
Linus Torvalds 已提交
314

D
Dave Airlie 已提交
315
	if (!mmBlockInHeap(dev_priv->AGPHeap, (PMemBlock) agp.free))
L
Linus Torvalds 已提交
316 317
		return DRM_ERR(EINVAL);

D
Dave Airlie 已提交
318
	mmFreeMem((PMemBlock) agp.free);
L
Linus Torvalds 已提交
319 320 321 322 323 324 325 326 327 328 329 330
	if (!del_alloc_set(agp.context, AGP_TYPE, agp.free))
		return DRM_ERR(EINVAL);

	DRM_DEBUG("free agp, free = 0x%lx\n", agp.free);

	return 0;
}

int sis_init_context(struct drm_device *dev, int context)
{
	int i;

D
Dave Airlie 已提交
331
	for (i = 0; i < MAX_CONTEXT; i++) {
L
Linus Torvalds 已提交
332 333 334 335 336 337
		if (global_ppriv[i].used &&
		    (global_ppriv[i].context == context))
			break;
	}

	if (i >= MAX_CONTEXT) {
D
Dave Airlie 已提交
338
		for (i = 0; i < MAX_CONTEXT; i++) {
L
Linus Torvalds 已提交
339 340 341 342 343 344
			if (!global_ppriv[i].used) {
				global_ppriv[i].context = context;
				global_ppriv[i].used = 1;
				global_ppriv[i].sets[0] = setInit();
				global_ppriv[i].sets[1] = setInit();
				DRM_DEBUG("init allocation set, socket=%d, "
D
Dave Airlie 已提交
345
					  "context = %d\n", i, context);
L
Linus Torvalds 已提交
346 347 348 349
				break;
			}
		}
		if ((i >= MAX_CONTEXT) || (global_ppriv[i].sets[0] == NULL) ||
D
Dave Airlie 已提交
350
		    (global_ppriv[i].sets[1] == NULL)) {
L
Linus Torvalds 已提交
351 352 353
			return 0;
		}
	}
D
Dave Airlie 已提交
354

L
Linus Torvalds 已提交
355 356 357 358 359 360 361
	return 1;
}

int sis_final_context(struct drm_device *dev, int context)
{
	int i;

D
Dave Airlie 已提交
362
	for (i = 0; i < MAX_CONTEXT; i++) {
L
Linus Torvalds 已提交
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
		if (global_ppriv[i].used &&
		    (global_ppriv[i].context == context))
			break;
	}

	if (i < MAX_CONTEXT) {
		set_t *set;
		unsigned int item;
		int retval;

		DRM_DEBUG("find socket %d, context = %d\n", i, context);

		/* Video Memory */
		set = global_ppriv[i].sets[0];
		retval = setFirst(set, &item);
		while (retval) {
			DRM_DEBUG("free video memory 0x%x\n", item);
#if defined(__linux__) && defined(CONFIG_FB_SIS)
			sis_free(item);
#else
D
Dave Airlie 已提交
383
			mmFreeMem((PMemBlock) item);
L
Linus Torvalds 已提交
384 385 386 387 388 389 390 391 392 393
#endif
			retval = setNext(set, &item);
		}
		setDestroy(set);

		/* AGP Memory */
		set = global_ppriv[i].sets[1];
		retval = setFirst(set, &item);
		while (retval) {
			DRM_DEBUG("free agp memory 0x%x\n", item);
D
Dave Airlie 已提交
394
			mmFreeMem((PMemBlock) item);
L
Linus Torvalds 已提交
395 396 397 398
			retval = setNext(set, &item);
		}
		setDestroy(set);

D
Dave Airlie 已提交
399 400 401
		global_ppriv[i].used = 0;
	}

L
Linus Torvalds 已提交
402 403 404 405
	return 1;
}

drm_ioctl_desc_t sis_ioctls[] = {
D
Dave Airlie 已提交
406 407 408 409 410
	[DRM_IOCTL_NR(DRM_SIS_FB_ALLOC)] = {sis_fb_alloc, 1, 0},
	[DRM_IOCTL_NR(DRM_SIS_FB_FREE)] = {sis_fb_free, 1, 0},
	[DRM_IOCTL_NR(DRM_SIS_AGP_INIT)] = {sis_ioctl_agp_init, 1, 1},
	[DRM_IOCTL_NR(DRM_SIS_AGP_ALLOC)] = {sis_ioctl_agp_alloc, 1, 0},
	[DRM_IOCTL_NR(DRM_SIS_AGP_FREE)] = {sis_ioctl_agp_free, 1, 0},
D
Dave Airlie 已提交
411
	[DRM_IOCTL_NR(DRM_SIS_FB_INIT)] = {sis_fb_init, 1, 1}
L
Linus Torvalds 已提交
412 413 414
};

int sis_max_ioctl = DRM_ARRAY_SIZE(sis_ioctls);