blob: 0d55432e02a25c4e4d2130c0adb430d71a55f4dc [file] [log] [blame]
Dave Airlie22f579c2005-06-28 22:48:56 +10001/*
Thomas Hellstromce65a442006-08-07 22:03:22 +10002 * Copyright 2006 Tungsten Graphics Inc., Bismarck, ND., USA.
3 * All rights reserved.
Dave Airlie22f579c2005-06-28 22:48:56 +10004 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sub license,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial portions
14 * of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
Thomas Hellstromce65a442006-08-07 22:03:22 +100019 * THE AUTHORS OR COPYRIGHT HOLDERS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
Dave Airlie22f579c2005-06-28 22:48:56 +100021 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
Thomas Hellstromce65a442006-08-07 22:03:22 +100024/*
Jan Engelhardt96de0e22007-10-19 23:21:04 +020025 * Authors: Thomas Hellström <thomas-at-tungstengraphics-dot-com>
Thomas Hellstromce65a442006-08-07 22:03:22 +100026 */
27
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
29#include <drm/via_drm.h>
Dave Airlie22f579c2005-06-28 22:48:56 +100030#include "via_drv.h"
Dave Airlie22f579c2005-06-28 22:48:56 +100031
Thomas Hellstromce65a442006-08-07 22:03:22 +100032#define VIA_MM_ALIGN_SHIFT 4
Nicolas Kaiser58c1e852010-07-11 15:32:42 +020033#define VIA_MM_ALIGN_MASK ((1 << VIA_MM_ALIGN_SHIFT) - 1)
Dave Airlie22f579c2005-06-28 22:48:56 +100034
Daniel Vetter977b4f62011-10-26 22:21:13 +020035struct via_memblock {
36 struct drm_mm_node mm_node;
37 struct list_head owner_list;
38};
39
Eric Anholtc153f452007-09-03 12:06:45 +100040int via_agp_init(struct drm_device *dev, void *data, struct drm_file *file_priv)
Dave Airlie22f579c2005-06-28 22:48:56 +100041{
Eric Anholtc153f452007-09-03 12:06:45 +100042 drm_via_agp_t *agp = data;
Thomas Hellstromce65a442006-08-07 22:03:22 +100043 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
Dave Airlie22f579c2005-06-28 22:48:56 +100044
Thomas Hellstromce65a442006-08-07 22:03:22 +100045 mutex_lock(&dev->struct_mutex);
Daniel Vetter977b4f62011-10-26 22:21:13 +020046 drm_mm_init(&dev_priv->agp_mm, 0, agp->size >> VIA_MM_ALIGN_SHIFT);
Dave Airlie22f579c2005-06-28 22:48:56 +100047
Dave Airlied40c8532006-08-19 17:40:50 +100048 dev_priv->agp_initialized = 1;
Eric Anholtc153f452007-09-03 12:06:45 +100049 dev_priv->agp_offset = agp->offset;
Thomas Hellstromce65a442006-08-07 22:03:22 +100050 mutex_unlock(&dev->struct_mutex);
Dave Airlie22f579c2005-06-28 22:48:56 +100051
Márton Németh3e684ea2008-01-24 15:58:57 +100052 DRM_DEBUG("offset = %u, size = %u\n", agp->offset, agp->size);
Dave Airlie22f579c2005-06-28 22:48:56 +100053 return 0;
54}
55
Eric Anholtc153f452007-09-03 12:06:45 +100056int via_fb_init(struct drm_device *dev, void *data, struct drm_file *file_priv)
Dave Airlie22f579c2005-06-28 22:48:56 +100057{
Eric Anholtc153f452007-09-03 12:06:45 +100058 drm_via_fb_t *fb = data;
Thomas Hellstromce65a442006-08-07 22:03:22 +100059 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
Dave Airlie22f579c2005-06-28 22:48:56 +100060
Thomas Hellstromce65a442006-08-07 22:03:22 +100061 mutex_lock(&dev->struct_mutex);
Daniel Vetter977b4f62011-10-26 22:21:13 +020062 drm_mm_init(&dev_priv->vram_mm, 0, fb->size >> VIA_MM_ALIGN_SHIFT);
Dave Airlie22f579c2005-06-28 22:48:56 +100063
Dave Airlied40c8532006-08-19 17:40:50 +100064 dev_priv->vram_initialized = 1;
Eric Anholtc153f452007-09-03 12:06:45 +100065 dev_priv->vram_offset = fb->offset;
Thomas Hellstromce65a442006-08-07 22:03:22 +100066
67 mutex_unlock(&dev->struct_mutex);
Márton Németh3e684ea2008-01-24 15:58:57 +100068 DRM_DEBUG("offset = %u, size = %u\n", fb->offset, fb->size);
Thomas Hellstromce65a442006-08-07 22:03:22 +100069
70 return 0;
71
Dave Airlie22f579c2005-06-28 22:48:56 +100072}
73
74int via_final_context(struct drm_device *dev, int context)
Dave Airlieb5e89ed2005-09-25 14:28:13 +100075{
Dave Airlie22f579c2005-06-28 22:48:56 +100076 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
77
Dave Airlieb5e89ed2005-09-25 14:28:13 +100078 via_release_futex(dev_priv, context);
79
Dave Airlie22f579c2005-06-28 22:48:56 +100080 /* Linux specific until context tracking code gets ported to BSD */
81 /* Last context, perform cleanup */
82 if (dev->ctx_count == 1 && dev->dev_private) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +100083 DRM_DEBUG("Last Context\n");
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -070084 drm_irq_uninstall(dev);
Dave Airlie22f579c2005-06-28 22:48:56 +100085 via_cleanup_futex(dev_priv);
86 via_do_cleanup_map(dev);
87 }
Dave Airlie22f579c2005-06-28 22:48:56 +100088 return 1;
89}
90
Thomas Hellstromce65a442006-08-07 22:03:22 +100091void via_lastclose(struct drm_device *dev)
92{
93 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
94
95 if (!dev_priv)
96 return;
97
98 mutex_lock(&dev->struct_mutex);
Daniel Vetter977b4f62011-10-26 22:21:13 +020099 if (dev_priv->vram_initialized) {
100 drm_mm_takedown(&dev_priv->vram_mm);
101 dev_priv->vram_initialized = 0;
102 }
103 if (dev_priv->agp_initialized) {
104 drm_mm_takedown(&dev_priv->agp_mm);
105 dev_priv->agp_initialized = 0;
106 }
Thomas Hellstromce65a442006-08-07 22:03:22 +1000107 mutex_unlock(&dev->struct_mutex);
Dave Airliebc5f4522007-11-05 12:50:58 +1000108}
Thomas Hellstromce65a442006-08-07 22:03:22 +1000109
Eric Anholtc153f452007-09-03 12:06:45 +1000110int via_mem_alloc(struct drm_device *dev, void *data,
Daniel Vetterc828e202011-10-25 16:32:45 +0200111 struct drm_file *file)
Dave Airlie22f579c2005-06-28 22:48:56 +1000112{
Eric Anholtc153f452007-09-03 12:06:45 +1000113 drm_via_mem_t *mem = data;
Daniel Vetter77ee8f32011-10-25 17:55:31 +0200114 int retval = 0, user_key;
Daniel Vetter977b4f62011-10-26 22:21:13 +0200115 struct via_memblock *item;
Thomas Hellstromce65a442006-08-07 22:03:22 +1000116 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
Daniel Vetterc828e202011-10-25 16:32:45 +0200117 struct via_file_private *file_priv = file->driver_priv;
Thomas Hellstromce65a442006-08-07 22:03:22 +1000118 unsigned long tmpSize;
Dave Airlie22f579c2005-06-28 22:48:56 +1000119
Eric Anholtc153f452007-09-03 12:06:45 +1000120 if (mem->type > VIA_MEM_AGP) {
Thomas Hellstromce65a442006-08-07 22:03:22 +1000121 DRM_ERROR("Unknown memory type allocation\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000122 return -EINVAL;
Thomas Hellstromce65a442006-08-07 22:03:22 +1000123 }
124 mutex_lock(&dev->struct_mutex);
Eric Anholtc153f452007-09-03 12:06:45 +1000125 if (0 == ((mem->type == VIA_MEM_VIDEO) ? dev_priv->vram_initialized :
Thomas Hellstromce65a442006-08-07 22:03:22 +1000126 dev_priv->agp_initialized)) {
127 DRM_ERROR
128 ("Attempt to allocate from uninitialized memory manager.\n");
129 mutex_unlock(&dev->struct_mutex);
Eric Anholt20caafa2007-08-25 19:22:43 +1000130 return -EINVAL;
Dave Airlie22f579c2005-06-28 22:48:56 +1000131 }
132
Daniel Vetter977b4f62011-10-26 22:21:13 +0200133 item = kzalloc(sizeof(*item), GFP_KERNEL);
Daniel Vetter77ee8f32011-10-25 17:55:31 +0200134 if (!item) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000135 retval = -ENOMEM;
Daniel Vetter77ee8f32011-10-25 17:55:31 +0200136 goto fail_alloc;
Dave Airlie22f579c2005-06-28 22:48:56 +1000137 }
Daniel Vetter77ee8f32011-10-25 17:55:31 +0200138
Daniel Vetter977b4f62011-10-26 22:21:13 +0200139 tmpSize = (mem->size + VIA_MM_ALIGN_MASK) >> VIA_MM_ALIGN_SHIFT;
140 if (mem->type == VIA_MEM_AGP)
141 retval = drm_mm_insert_node(&dev_priv->agp_mm,
142 &item->mm_node,
143 tmpSize, 0);
144 else
145 retval = drm_mm_insert_node(&dev_priv->vram_mm,
146 &item->mm_node,
147 tmpSize, 0);
148 if (retval)
149 goto fail_alloc;
150
Daniel Vetter77ee8f32011-10-25 17:55:31 +0200151again:
152 if (idr_pre_get(&dev_priv->object_idr, GFP_KERNEL) == 0) {
153 retval = -ENOMEM;
154 goto fail_idr;
155 }
156
157 retval = idr_get_new_above(&dev_priv->object_idr, item, 1, &user_key);
158 if (retval == -EAGAIN)
159 goto again;
160 if (retval)
161 goto fail_idr;
162
163 list_add(&item->owner_list, &file_priv->obj_list);
Daniel Vetterc828e202011-10-25 16:32:45 +0200164 mutex_unlock(&dev->struct_mutex);
Dave Airlie22f579c2005-06-28 22:48:56 +1000165
Daniel Vetter77ee8f32011-10-25 17:55:31 +0200166 mem->offset = ((mem->type == VIA_MEM_VIDEO) ?
167 dev_priv->vram_offset : dev_priv->agp_offset) +
Daniel Vetter977b4f62011-10-26 22:21:13 +0200168 ((item->mm_node.start) << VIA_MM_ALIGN_SHIFT);
Daniel Vetter77ee8f32011-10-25 17:55:31 +0200169 mem->index = user_key;
170
171 return 0;
172
173fail_idr:
Daniel Vetter977b4f62011-10-26 22:21:13 +0200174 drm_mm_remove_node(&item->mm_node);
Daniel Vetter77ee8f32011-10-25 17:55:31 +0200175fail_alloc:
Daniel Vetter977b4f62011-10-26 22:21:13 +0200176 kfree(item);
Daniel Vetter77ee8f32011-10-25 17:55:31 +0200177 mutex_unlock(&dev->struct_mutex);
178
179 mem->offset = 0;
180 mem->size = 0;
181 mem->index = 0;
182 DRM_DEBUG("Video memory allocation failed\n");
183
Dave Airlie22f579c2005-06-28 22:48:56 +1000184 return retval;
185}
186
Eric Anholtc153f452007-09-03 12:06:45 +1000187int via_mem_free(struct drm_device *dev, void *data, struct drm_file *file_priv)
Dave Airlie22f579c2005-06-28 22:48:56 +1000188{
Thomas Hellstromce65a442006-08-07 22:03:22 +1000189 drm_via_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000190 drm_via_mem_t *mem = data;
Daniel Vetter977b4f62011-10-26 22:21:13 +0200191 struct via_memblock *obj;
Dave Airlie22f579c2005-06-28 22:48:56 +1000192
Thomas Hellstromce65a442006-08-07 22:03:22 +1000193 mutex_lock(&dev->struct_mutex);
Daniel Vetter77ee8f32011-10-25 17:55:31 +0200194 obj = idr_find(&dev_priv->object_idr, mem->index);
195 if (obj == NULL) {
196 mutex_unlock(&dev->struct_mutex);
197 return -EINVAL;
198 }
199
200 idr_remove(&dev_priv->object_idr, mem->index);
Daniel Vetter977b4f62011-10-26 22:21:13 +0200201 list_del(&obj->owner_list);
202 drm_mm_remove_node(&obj->mm_node);
203 kfree(obj);
Thomas Hellstromce65a442006-08-07 22:03:22 +1000204 mutex_unlock(&dev->struct_mutex);
Daniel Vetter77ee8f32011-10-25 17:55:31 +0200205
Eric Anholtc153f452007-09-03 12:06:45 +1000206 DRM_DEBUG("free = 0x%lx\n", mem->index);
Dave Airlie22f579c2005-06-28 22:48:56 +1000207
Daniel Vetterb5215ef2012-01-08 22:42:27 +0100208 return 0;
Dave Airlie22f579c2005-06-28 22:48:56 +1000209}
210
Thomas Hellstromce65a442006-08-07 22:03:22 +1000211
Nicolas Kaiser58c1e852010-07-11 15:32:42 +0200212void via_reclaim_buffers_locked(struct drm_device *dev,
Daniel Vetterc828e202011-10-25 16:32:45 +0200213 struct drm_file *file)
Dave Airlie22f579c2005-06-28 22:48:56 +1000214{
Daniel Vetterc828e202011-10-25 16:32:45 +0200215 struct via_file_private *file_priv = file->driver_priv;
Daniel Vetter977b4f62011-10-26 22:21:13 +0200216 struct via_memblock *entry, *next;
Dave Airlie22f579c2005-06-28 22:48:56 +1000217
Daniel Vetter834859c2011-10-25 23:37:09 +0200218 if (!(file->minor->master && file->master->lock.hw_lock))
219 return;
220
221 drm_idlelock_take(&file->master->lock);
222
Thomas Hellstromce65a442006-08-07 22:03:22 +1000223 mutex_lock(&dev->struct_mutex);
Daniel Vetterc828e202011-10-25 16:32:45 +0200224 if (list_empty(&file_priv->obj_list)) {
Thomas Hellstromce65a442006-08-07 22:03:22 +1000225 mutex_unlock(&dev->struct_mutex);
Daniel Vetter834859c2011-10-25 23:37:09 +0200226 drm_idlelock_release(&file->master->lock);
227
Thomas Hellstromce65a442006-08-07 22:03:22 +1000228 return;
Dave Airlie22f579c2005-06-28 22:48:56 +1000229 }
230
Daniel Vetter834859c2011-10-25 23:37:09 +0200231 via_driver_dma_quiescent(dev);
Dave Airlie22f579c2005-06-28 22:48:56 +1000232
Daniel Vetterc828e202011-10-25 16:32:45 +0200233 list_for_each_entry_safe(entry, next, &file_priv->obj_list,
234 owner_list) {
Daniel Vetter977b4f62011-10-26 22:21:13 +0200235 list_del(&entry->owner_list);
236 drm_mm_remove_node(&entry->mm_node);
237 kfree(entry);
Daniel Vetterc828e202011-10-25 16:32:45 +0200238 }
Thomas Hellstromce65a442006-08-07 22:03:22 +1000239 mutex_unlock(&dev->struct_mutex);
Daniel Vetter834859c2011-10-25 23:37:09 +0200240
241 drm_idlelock_release(&file->master->lock);
242
Thomas Hellstromce65a442006-08-07 22:03:22 +1000243 return;
Dave Airlie22f579c2005-06-28 22:48:56 +1000244}