blob: d97269f5309dfc717d5b99fa3c4d089cdcb20292 [file] [log] [blame]
Thomas Hellstrom6bacb182006-06-06 14:19:00 +00001/*
2 * Copyright 2006 Tungsten Graphics Inc., Bismarck, ND., USA.
3 * All rights reserved.
4 *
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
Dave Airliee5240282006-08-07 21:34:40 +100019 * THE AUTHORS OR COPYRIGHT HOLDERS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
Thomas Hellstrom6bacb182006-06-06 14:19:00 +000020 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
24/*
25 * Authors: Thomas Hellström <thomas-at-tungstengraphics-dot-com>
26 */
27
28#include "drmP.h"
29#include "via_drm.h"
30#include "via_drv.h"
31#include "drm_sman.h"
32
33#define VIA_MM_ALIGN_SHIFT 4
34#define VIA_MM_ALIGN_MASK ( (1 << VIA_MM_ALIGN_SHIFT) - 1)
35
36int via_agp_init(DRM_IOCTL_ARGS)
37{
38 DRM_DEVICE;
39 drm_via_agp_t agp;
40 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
41 int ret;
42
43 DRM_COPY_FROM_USER_IOCTL(agp, (drm_via_agp_t __user *) data,
44 sizeof(agp));
Dave Airlie5cfbd5d2006-07-24 10:51:27 +100045 mutex_lock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +000046 ret = drm_sman_set_range(&dev_priv->sman, VIA_MEM_AGP, 0,
47 agp.size >> VIA_MM_ALIGN_SHIFT);
48
49 if (ret) {
50 DRM_ERROR("AGP memory manager initialisation error\n");
Dave Airlie5cfbd5d2006-07-24 10:51:27 +100051 mutex_unlock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +000052 return ret;
53 }
54
Dave Airlie0d60cd02006-08-14 11:52:34 +100055 dev_priv->agp_initialized = 1;
Thomas Hellstrom6bacb182006-06-06 14:19:00 +000056 dev_priv->agp_offset = agp.offset;
Dave Airlie5cfbd5d2006-07-24 10:51:27 +100057 mutex_unlock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +000058
59 DRM_DEBUG("offset = %u, size = %u", agp.offset, agp.size);
60 return 0;
61}
62
63int via_fb_init(DRM_IOCTL_ARGS)
64{
65 DRM_DEVICE;
66 drm_via_fb_t fb;
67 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
68 int ret;
69
70 DRM_COPY_FROM_USER_IOCTL(fb, (drm_via_fb_t __user *) data, sizeof(fb));
71
Dave Airlie5cfbd5d2006-07-24 10:51:27 +100072 mutex_lock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +000073 ret = drm_sman_set_range(&dev_priv->sman, VIA_MEM_VIDEO, 0,
74 fb.size >> VIA_MM_ALIGN_SHIFT);
75
76 if (ret) {
77 DRM_ERROR("VRAM memory manager initialisation error\n");
Dave Airlie5cfbd5d2006-07-24 10:51:27 +100078 mutex_unlock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +000079 return ret;
80 }
81
Dave Airlie0d60cd02006-08-14 11:52:34 +100082 dev_priv->vram_initialized = 1;
Thomas Hellstrom6bacb182006-06-06 14:19:00 +000083 dev_priv->vram_offset = fb.offset;
84
Dave Airlie5cfbd5d2006-07-24 10:51:27 +100085 mutex_unlock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +000086 DRM_DEBUG("offset = %u, size = %u", fb.offset, fb.size);
87
88 return 0;
89
90}
91
92int via_final_context(struct drm_device *dev, int context)
93{
94 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
95
96 via_release_futex(dev_priv, context);
97
98#if defined(__linux__)
99 /* Linux specific until context tracking code gets ported to BSD */
100 /* Last context, perform cleanup */
101 if (dev->ctx_count == 1 && dev->dev_private) {
102 DRM_DEBUG("Last Context\n");
103 if (dev->irq)
104 drm_irq_uninstall(dev);
105 via_cleanup_futex(dev_priv);
106 via_do_cleanup_map(dev);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000107 }
108#endif
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000109 return 1;
110}
111
Thomas Hellstromca1a7762006-06-15 18:37:05 +0000112void via_lastclose(struct drm_device *dev)
113{
114 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
115
116 if (!dev_priv)
117 return;
118
Dave Airlie5cfbd5d2006-07-24 10:51:27 +1000119 mutex_lock(&dev->struct_mutex);
Thomas Hellstromca1a7762006-06-15 18:37:05 +0000120 drm_sman_cleanup(&dev_priv->sman);
Dave Airlie18a48a92006-08-14 11:49:52 +1000121 dev_priv->vram_initialized = 0;
122 dev_priv->agp_initialized = 0;
Dave Airlie5cfbd5d2006-07-24 10:51:27 +1000123 mutex_unlock(&dev->struct_mutex);
Thomas Hellstromca1a7762006-06-15 18:37:05 +0000124}
125
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000126int via_mem_alloc(DRM_IOCTL_ARGS)
127{
128 DRM_DEVICE;
129
130 drm_via_mem_t mem;
131 int retval = 0;
132 drm_memblock_item_t *item;
133 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
Thomas Hellstrom0203eda2006-06-16 15:20:20 +0000134 unsigned long tmpSize;
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000135
136 DRM_COPY_FROM_USER_IOCTL(mem, (drm_via_mem_t __user *) data,
137 sizeof(mem));
138
139 if (mem.type > VIA_MEM_AGP) {
140 DRM_ERROR("Unknown memory type allocation\n");
141 return DRM_ERR(EINVAL);
142 }
Dave Airlie5cfbd5d2006-07-24 10:51:27 +1000143 mutex_lock(&dev->struct_mutex);
Dave Airlie18a48a92006-08-14 11:49:52 +1000144 if (0 == ((mem.type == VIA_MEM_VIDEO) ? dev_priv->vram_initialized :
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000145 dev_priv->agp_initialized)) {
146 DRM_ERROR
147 ("Attempt to allocate from uninitialized memory manager.\n");
Dave Airlie5cfbd5d2006-07-24 10:51:27 +1000148 mutex_unlock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000149 return DRM_ERR(EINVAL);
150 }
151
Thomas Hellstrom0203eda2006-06-16 15:20:20 +0000152 tmpSize = (mem.size + VIA_MM_ALIGN_MASK) >> VIA_MM_ALIGN_SHIFT;
153 item = drm_sman_alloc(&dev_priv->sman, mem.type, tmpSize, 0,
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000154 (unsigned long)priv);
Dave Airlie5cfbd5d2006-07-24 10:51:27 +1000155 mutex_unlock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000156 if (item) {
157 mem.offset = ((mem.type == VIA_MEM_VIDEO) ?
158 dev_priv->vram_offset : dev_priv->agp_offset) +
159 (item->mm->
160 offset(item->mm, item->mm_info) << VIA_MM_ALIGN_SHIFT);
161 mem.index = item->user_hash.key;
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000162 } else {
163 mem.offset = 0;
164 mem.size = 0;
165 mem.index = 0;
Thomas Hellstromca1a7762006-06-15 18:37:05 +0000166 DRM_DEBUG("Video memory allocation failed\n");
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000167 retval = DRM_ERR(ENOMEM);
168 }
169 DRM_COPY_TO_USER_IOCTL((drm_via_mem_t __user *) data, mem, sizeof(mem));
170
171 return retval;
172}
173
174int via_mem_free(DRM_IOCTL_ARGS)
175{
176 DRM_DEVICE;
177 drm_via_private_t *dev_priv = dev->dev_private;
178 drm_via_mem_t mem;
179 int ret;
180
181 DRM_COPY_FROM_USER_IOCTL(mem, (drm_via_mem_t __user *) data,
182 sizeof(mem));
183
Dave Airlie5cfbd5d2006-07-24 10:51:27 +1000184 mutex_lock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000185 ret = drm_sman_free_key(&dev_priv->sman, mem.index);
Dave Airlie5cfbd5d2006-07-24 10:51:27 +1000186 mutex_unlock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000187 DRM_DEBUG("free = 0x%lx\n", mem.index);
188
189 return ret;
190}
191
Thomas Hellstromca1a7762006-06-15 18:37:05 +0000192
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000193void via_reclaim_buffers_locked(drm_device_t * dev, struct file *filp)
194{
195 drm_via_private_t *dev_priv = dev->dev_private;
196 drm_file_t *priv = filp->private_data;
197
Dave Airlie5cfbd5d2006-07-24 10:51:27 +1000198 mutex_lock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000199 if (drm_sman_owner_clean(&dev_priv->sman, (unsigned long)priv)) {
Dave Airlie5cfbd5d2006-07-24 10:51:27 +1000200 mutex_unlock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000201 return;
202 }
203
204 if (dev->driver->dma_quiescent) {
205 dev->driver->dma_quiescent(dev);
206 }
207
208 drm_sman_owner_cleanup(&dev_priv->sman, (unsigned long)priv);
Dave Airlie5cfbd5d2006-07-24 10:51:27 +1000209 mutex_unlock(&dev->struct_mutex);
Thomas Hellstrom6bacb182006-06-06 14:19:00 +0000210 return;
211}