2 * Copyright 2006 Tungsten Graphics Inc., Bismarck, ND., USA.
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:
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial portions
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
19 * 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,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
25 * Authors: Thomas Hellström <thomas-at-tungstengraphics-dot-com>
33 #define VIA_MM_ALIGN_SHIFT 4
34 #define VIA_MM_ALIGN_MASK ( (1 << VIA_MM_ALIGN_SHIFT) - 1)
36 int via_agp_init(DRM_IOCTL_ARGS)
40 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
43 DRM_COPY_FROM_USER_IOCTL(agp, (drm_via_agp_t __user *) data,
45 mutex_lock(&dev->struct_mutex);
46 ret = drm_sman_set_range(&dev_priv->sman, VIA_MEM_AGP, 0,
47 agp.size >> VIA_MM_ALIGN_SHIFT);
50 DRM_ERROR("AGP memory manager initialisation error\n");
51 mutex_unlock(&dev->struct_mutex);
55 dev_priv->agp_initialized = 1;
56 dev_priv->agp_offset = agp.offset;
57 mutex_unlock(&dev->struct_mutex);
59 DRM_DEBUG("offset = %u, size = %u", agp.offset, agp.size);
63 int via_fb_init(DRM_IOCTL_ARGS)
67 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
70 DRM_COPY_FROM_USER_IOCTL(fb, (drm_via_fb_t __user *) data, sizeof(fb));
72 mutex_lock(&dev->struct_mutex);
73 ret = drm_sman_set_range(&dev_priv->sman, VIA_MEM_VIDEO, 0,
74 fb.size >> VIA_MM_ALIGN_SHIFT);
77 DRM_ERROR("VRAM memory manager initialisation error\n");
78 mutex_unlock(&dev->struct_mutex);
82 dev_priv->vram_initialized = 1;
83 dev_priv->vram_offset = fb.offset;
85 mutex_unlock(&dev->struct_mutex);
86 DRM_DEBUG("offset = %u, size = %u", fb.offset, fb.size);
92 int via_final_context(struct drm_device *dev, int context)
94 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
96 via_release_futex(dev_priv, context);
98 /* Linux specific until context tracking code gets ported to BSD */
99 /* Last context, perform cleanup */
100 if (dev->ctx_count == 1 && dev->dev_private) {
101 DRM_DEBUG("Last Context\n");
103 drm_irq_uninstall(dev);
104 via_cleanup_futex(dev_priv);
105 via_do_cleanup_map(dev);
110 void via_lastclose(struct drm_device *dev)
112 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
117 mutex_lock(&dev->struct_mutex);
118 drm_sman_cleanup(&dev_priv->sman);
119 dev_priv->vram_initialized = 0;
120 dev_priv->agp_initialized = 0;
121 mutex_unlock(&dev->struct_mutex);
124 int via_mem_alloc(DRM_IOCTL_ARGS)
130 struct drm_memblock_item *item;
131 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
132 unsigned long tmpSize;
134 DRM_COPY_FROM_USER_IOCTL(mem, (drm_via_mem_t __user *) data,
137 if (mem.type > VIA_MEM_AGP) {
138 DRM_ERROR("Unknown memory type allocation\n");
139 return DRM_ERR(EINVAL);
141 mutex_lock(&dev->struct_mutex);
142 if (0 == ((mem.type == VIA_MEM_VIDEO) ? dev_priv->vram_initialized :
143 dev_priv->agp_initialized)) {
145 ("Attempt to allocate from uninitialized memory manager.\n");
146 mutex_unlock(&dev->struct_mutex);
147 return DRM_ERR(EINVAL);
150 tmpSize = (mem.size + VIA_MM_ALIGN_MASK) >> VIA_MM_ALIGN_SHIFT;
151 item = drm_sman_alloc(&dev_priv->sman, mem.type, tmpSize, 0,
152 (unsigned long)priv);
153 mutex_unlock(&dev->struct_mutex);
155 mem.offset = ((mem.type == VIA_MEM_VIDEO) ?
156 dev_priv->vram_offset : dev_priv->agp_offset) +
158 offset(item->mm, item->mm_info) << VIA_MM_ALIGN_SHIFT);
159 mem.index = item->user_hash.key;
164 DRM_DEBUG("Video memory allocation failed\n");
165 retval = DRM_ERR(ENOMEM);
167 DRM_COPY_TO_USER_IOCTL((drm_via_mem_t __user *) data, mem, sizeof(mem));
172 int via_mem_free(DRM_IOCTL_ARGS)
175 drm_via_private_t *dev_priv = dev->dev_private;
179 DRM_COPY_FROM_USER_IOCTL(mem, (drm_via_mem_t __user *) data,
182 mutex_lock(&dev->struct_mutex);
183 ret = drm_sman_free_key(&dev_priv->sman, mem.index);
184 mutex_unlock(&dev->struct_mutex);
185 DRM_DEBUG("free = 0x%lx\n", mem.index);
191 void via_reclaim_buffers_locked(struct drm_device * dev, struct file *filp)
193 drm_via_private_t *dev_priv = dev->dev_private;
194 struct drm_file *priv = filp->private_data;
196 mutex_lock(&dev->struct_mutex);
197 if (drm_sman_owner_clean(&dev_priv->sman, (unsigned long)priv)) {
198 mutex_unlock(&dev->struct_mutex);
202 if (dev->driver->dma_quiescent) {
203 dev->driver->dma_quiescent(dev);
206 drm_sman_owner_cleanup(&dev_priv->sman, (unsigned long)priv);
207 mutex_unlock(&dev->struct_mutex);