sis_mm.c 9.1 KB
Newer Older
1
/**************************************************************************
L
Linus Torvalds 已提交
2
 *
3 4
 * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND., USA.
 * All Rights Reserved.
L
Linus Torvalds 已提交
5 6
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
7 8 9 10 11 12
 * 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:
D
Dave Airlie 已提交
13
 *
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
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 21 22 23 24
 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
 * THE COPYRIGHT HOLDERS, AUTHORS 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 26
 *
 *
27 28 29 30
 **************************************************************************/

/*
 * Authors:
31
 *    Thomas Hellström <thomas-at-tungstengraphics-dot-com>
L
Linus Torvalds 已提交
32 33
 */

34 35
#include <drm/drmP.h>
#include <drm/sis_drm.h>
L
Linus Torvalds 已提交
36
#include "sis_drv.h"
37

L
Linus Torvalds 已提交
38 39
#include <video/sisfb.h>

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


44 45 46 47 48 49
struct sis_memblock {
	struct drm_mm_node mm_node;
	struct sis_memreq req;
	struct list_head owner_list;
};

50
#if defined(CONFIG_FB_SIS) || defined(CONFIG_FB_SIS_MODULE)
51
/* fb management via fb device */
D
Dave Airlie 已提交
52

53 54
#define SIS_MM_ALIGN_SHIFT 0
#define SIS_MM_ALIGN_MASK 0
L
Linus Torvalds 已提交
55

56
#else /* CONFIG_FB_SIS[_MODULE] */
A
Adrian Bunk 已提交
57 58

#define SIS_MM_ALIGN_SHIFT 4
59
#define SIS_MM_ALIGN_MASK ((1 << SIS_MM_ALIGN_SHIFT) - 1)
A
Adrian Bunk 已提交
60

61
#endif /* CONFIG_FB_SIS[_MODULE] */
L
Linus Torvalds 已提交
62

63
static int sis_fb_init(struct drm_device *dev, void *data, struct drm_file *file_priv)
L
Linus Torvalds 已提交
64 65
{
	drm_sis_private_t *dev_priv = dev->dev_private;
66
	drm_sis_fb_t *fb = data;
L
Linus Torvalds 已提交
67

68
	mutex_lock(&dev->struct_mutex);
69 70 71
	/* Unconditionally init the drm_mm, even though we don't use it when the
	 * fb sis driver is available - make cleanup easier. */
	drm_mm_init(&dev_priv->vram_mm, 0, fb->size >> SIS_MM_ALIGN_SHIFT);
L
Linus Torvalds 已提交
72

73
	dev_priv->vram_initialized = 1;
74
	dev_priv->vram_offset = fb->offset;
L
Linus Torvalds 已提交
75

76
	mutex_unlock(&dev->struct_mutex);
77
	DRM_DEBUG("offset = %lu, size = %lu\n", fb->offset, fb->size);
L
Linus Torvalds 已提交
78 79 80 81

	return 0;
}

82
static int sis_drm_alloc(struct drm_device *dev, struct drm_file *file,
83
			 void *data, int pool)
L
Linus Torvalds 已提交
84 85
{
	drm_sis_private_t *dev_priv = dev->dev_private;
86
	drm_sis_mem_t *mem = data;
87
	int retval = 0, user_key;
88
	struct sis_memblock *item;
89
	struct sis_file_private *file_priv = file->driver_priv;
90
	unsigned long offset;
L
Linus Torvalds 已提交
91

92 93
	mutex_lock(&dev->struct_mutex);

94
	if (0 == ((pool == 0) ? dev_priv->vram_initialized :
95 96 97
		      dev_priv->agp_initialized)) {
		DRM_ERROR
		    ("Attempt to allocate from uninitialized memory manager.\n");
98
		mutex_unlock(&dev->struct_mutex);
E
Eric Anholt 已提交
99
		return -EINVAL;
100
	}
D
Dave Airlie 已提交
101

102
	item = kzalloc(sizeof(*item), GFP_KERNEL);
103 104 105 106
	if (!item) {
		retval = -ENOMEM;
		goto fail_alloc;
	}
107

108 109 110 111
	mem->size = (mem->size + SIS_MM_ALIGN_MASK) >> SIS_MM_ALIGN_SHIFT;
	if (pool == AGP_TYPE) {
		retval = drm_mm_insert_node(&dev_priv->agp_mm,
					    &item->mm_node,
112 113
					    mem->size, 0,
					    DRM_MM_SEARCH_DEFAULT);
114 115 116 117 118 119 120 121 122 123 124
		offset = item->mm_node.start;
	} else {
#if defined(CONFIG_FB_SIS) || defined(CONFIG_FB_SIS_MODULE)
		item->req.size = mem->size;
		sis_malloc(&item->req);
		if (item->req.size == 0)
			retval = -ENOMEM;
		offset = item->req.offset;
#else
		retval = drm_mm_insert_node(&dev_priv->vram_mm,
					    &item->mm_node,
125 126
					    mem->size, 0,
					    DRM_MM_SEARCH_DEFAULT);
127 128 129 130 131 132
		offset = item->mm_node.start;
#endif
	}
	if (retval)
		goto fail_alloc;

T
Tejun Heo 已提交
133 134
	retval = idr_alloc(&dev_priv->object_idr, item, 1, 0, GFP_KERNEL);
	if (retval < 0)
135
		goto fail_idr;
T
Tejun Heo 已提交
136
	user_key = retval;
137 138 139 140 141 142

	list_add(&item->owner_list, &file_priv->obj_list);
	mutex_unlock(&dev->struct_mutex);

	mem->offset = ((pool == 0) ?
		      dev_priv->vram_offset : dev_priv->agp_offset) +
143
	    (offset << SIS_MM_ALIGN_SHIFT);
144 145 146 147 148 149
	mem->free = user_key;
	mem->size = mem->size << SIS_MM_ALIGN_SHIFT;

	return 0;

fail_idr:
150
	drm_mm_remove_node(&item->mm_node);
151
fail_alloc:
152
	kfree(item);
153
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
154

155 156 157 158
	mem->offset = 0;
	mem->size = 0;
	mem->free = 0;

159
	DRM_DEBUG("alloc %d, size = %ld, offset = %ld\n", pool, mem->size,
160
		  mem->offset);
L
Linus Torvalds 已提交
161 162 163 164

	return retval;
}

165
static int sis_drm_free(struct drm_device *dev, void *data, struct drm_file *file_priv)
L
Linus Torvalds 已提交
166 167
{
	drm_sis_private_t *dev_priv = dev->dev_private;
168
	drm_sis_mem_t *mem = data;
169
	struct sis_memblock *obj;
L
Linus Torvalds 已提交
170

171
	mutex_lock(&dev->struct_mutex);
172 173 174 175 176 177 178
	obj = idr_find(&dev_priv->object_idr, mem->free);
	if (obj == NULL) {
		mutex_unlock(&dev->struct_mutex);
		return -EINVAL;
	}

	idr_remove(&dev_priv->object_idr, mem->free);
179 180 181 182 183 184 185 186
	list_del(&obj->owner_list);
	if (drm_mm_node_allocated(&obj->mm_node))
		drm_mm_remove_node(&obj->mm_node);
#if defined(CONFIG_FB_SIS) || defined(CONFIG_FB_SIS_MODULE)
	else
		sis_free(obj->req.offset);
#endif
	kfree(obj);
187
	mutex_unlock(&dev->struct_mutex);
188
	DRM_DEBUG("free = 0x%lx\n", mem->free);
L
Linus Torvalds 已提交
189

190
	return 0;
L
Linus Torvalds 已提交
191 192
}

193 194
static int sis_fb_alloc(struct drm_device *dev, void *data,
			struct drm_file *file_priv)
195
{
196
	return sis_drm_alloc(dev, file_priv, data, VIDEO_TYPE);
197
}
L
Linus Torvalds 已提交
198

199 200
static int sis_ioctl_agp_init(struct drm_device *dev, void *data,
			      struct drm_file *file_priv)
L
Linus Torvalds 已提交
201 202
{
	drm_sis_private_t *dev_priv = dev->dev_private;
203
	drm_sis_agp_t *agp = data;
204
	dev_priv = dev->dev_private;
L
Linus Torvalds 已提交
205

206
	mutex_lock(&dev->struct_mutex);
207
	drm_mm_init(&dev_priv->agp_mm, 0, agp->size >> SIS_MM_ALIGN_SHIFT);
L
Linus Torvalds 已提交
208

209
	dev_priv->agp_initialized = 1;
210
	dev_priv->agp_offset = agp->offset;
211
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
212

213
	DRM_DEBUG("offset = %lu, size = %lu\n", agp->offset, agp->size);
L
Linus Torvalds 已提交
214 215 216
	return 0;
}

217 218
static int sis_ioctl_agp_alloc(struct drm_device *dev, void *data,
			       struct drm_file *file_priv)
L
Linus Torvalds 已提交
219 220
{

221
	return sis_drm_alloc(dev, file_priv, data, AGP_TYPE);
L
Linus Torvalds 已提交
222 223
}

224
static drm_local_map_t *sis_reg_init(struct drm_device *dev)
T
Thomas Hellstrom 已提交
225
{
D
Dave Airlie 已提交
226
	struct drm_map_list *entry;
T
Thomas Hellstrom 已提交
227 228
	drm_local_map_t *map;

229
	list_for_each_entry(entry, &dev->maplist, head) {
T
Thomas Hellstrom 已提交
230 231 232
		map = entry->map;
		if (!map)
			continue;
233
		if (map->type == _DRM_REGISTERS)
T
Thomas Hellstrom 已提交
234 235 236 237 238
			return map;
	}
	return NULL;
}

239
int sis_idle(struct drm_device *dev)
T
Thomas Hellstrom 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
{
	drm_sis_private_t *dev_priv = dev->dev_private;
	uint32_t idle_reg;
	unsigned long end;
	int i;

	if (dev_priv->idle_fault)
		return 0;

	if (dev_priv->mmio == NULL) {
		dev_priv->mmio = sis_reg_init(dev);
		if (dev_priv->mmio == NULL) {
			DRM_ERROR("Could not find register map.\n");
			return 0;
		}
	}
D
Dave Airlie 已提交
256

T
Thomas Hellstrom 已提交
257 258 259 260 261 262 263 264 265 266 267 268
	/*
	 * Implement a device switch here if needed
	 */

	if (dev_priv->chipset != SIS_CHIP_315)
		return 0;

	/*
	 * Timeout after 3 seconds. We cannot use DRM_WAIT_ON here
	 * because its polling frequency is too low.
	 */

D
Daniel Vetter 已提交
269
	end = jiffies + (HZ * 3);
T
Thomas Hellstrom 已提交
270

271
	for (i = 0; i < 4; ++i) {
T
Thomas Hellstrom 已提交
272 273
		do {
			idle_reg = SIS_READ(0x85cc);
274
		} while (!time_after_eq(jiffies, end) &&
T
Thomas Hellstrom 已提交
275 276 277 278 279 280
			  ((idle_reg & 0x80000000) != 0x80000000));
	}

	if (time_after_eq(jiffies, end)) {
		DRM_ERROR("Graphics engine idle timeout. "
			  "Disabling idle check\n");
281
		dev_priv->idle_fault = 1;
T
Thomas Hellstrom 已提交
282 283 284 285 286 287 288 289 290 291 292
	}

	/*
	 * The caller never sees an error code. It gets trapped
	 * in libdrm.
	 */

	return 0;
}


293
void sis_lastclose(struct drm_device *dev)
L
Linus Torvalds 已提交
294 295 296
{
	drm_sis_private_t *dev_priv = dev->dev_private;

297 298
	if (!dev_priv)
		return;
L
Linus Torvalds 已提交
299

300
	mutex_lock(&dev->struct_mutex);
301 302 303 304 305 306 307 308
	if (dev_priv->vram_initialized) {
		drm_mm_takedown(&dev_priv->vram_mm);
		dev_priv->vram_initialized = 0;
	}
	if (dev_priv->agp_initialized) {
		drm_mm_takedown(&dev_priv->agp_mm);
		dev_priv->agp_initialized = 0;
	}
T
Thomas Hellstrom 已提交
309
	dev_priv->mmio = NULL;
310
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
311 312
}

313
void sis_reclaim_buffers_locked(struct drm_device *dev,
314
				struct drm_file *file)
L
Linus Torvalds 已提交
315
{
316
	struct sis_file_private *file_priv = file->driver_priv;
317
	struct sis_memblock *entry, *next;
L
Linus Torvalds 已提交
318

319 320 321
	if (!(file->minor->master && file->master->lock.hw_lock))
		return;

322
	drm_legacy_idlelock_take(&file->master->lock);
323

324
	mutex_lock(&dev->struct_mutex);
325
	if (list_empty(&file_priv->obj_list)) {
326
		mutex_unlock(&dev->struct_mutex);
327
		drm_legacy_idlelock_release(&file->master->lock);
328

329
		return;
L
Linus Torvalds 已提交
330 331
	}

332
	sis_idle(dev);
D
Dave Airlie 已提交
333

334 335 336

	list_for_each_entry_safe(entry, next, &file_priv->obj_list,
				 owner_list) {
337 338 339 340 341 342 343 344
		list_del(&entry->owner_list);
		if (drm_mm_node_allocated(&entry->mm_node))
			drm_mm_remove_node(&entry->mm_node);
#if defined(CONFIG_FB_SIS) || defined(CONFIG_FB_SIS_MODULE)
		else
			sis_free(entry->req.offset);
#endif
		kfree(entry);
345
	}
346
	mutex_unlock(&dev->struct_mutex);
347

348
	drm_legacy_idlelock_release(&file->master->lock);
349

350
	return;
L
Linus Torvalds 已提交
351 352
}

R
Rob Clark 已提交
353
const struct drm_ioctl_desc sis_ioctls[] = {
354 355 356 357 358 359
	DRM_IOCTL_DEF_DRV(SIS_FB_ALLOC, sis_fb_alloc, DRM_AUTH),
	DRM_IOCTL_DEF_DRV(SIS_FB_FREE, sis_drm_free, DRM_AUTH),
	DRM_IOCTL_DEF_DRV(SIS_AGP_INIT, sis_ioctl_agp_init, DRM_AUTH | DRM_MASTER | DRM_ROOT_ONLY),
	DRM_IOCTL_DEF_DRV(SIS_AGP_ALLOC, sis_ioctl_agp_alloc, DRM_AUTH),
	DRM_IOCTL_DEF_DRV(SIS_AGP_FREE, sis_drm_free, DRM_AUTH),
	DRM_IOCTL_DEF_DRV(SIS_FB_INIT, sis_fb_init, DRM_AUTH | DRM_MASTER | DRM_ROOT_ONLY),
L
Linus Torvalds 已提交
360 361
};

362
int sis_max_ioctl = ARRAY_SIZE(sis_ioctls);