Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 1 | /************************************************************************** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 3 | * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND., USA. |
| 4 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 7 | * copy of this software and associated documentation files (the |
| 8 | * "Software"), to deal in the Software without restriction, including |
| 9 | * without limitation the rights to use, copy, modify, merge, publish, |
| 10 | * distribute, sub license, and/or sell copies of the Software, and to |
| 11 | * permit persons to whom the Software is furnished to do so, subject to |
| 12 | * the following conditions: |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 13 | * |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 14 | * The above copyright notice and this permission notice (including the |
| 15 | * next paragraph) shall be included in all copies or substantial portions |
| 16 | * of the Software. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 17 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL |
| 21 | * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, |
| 22 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 23 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
| 24 | * USE OR OTHER DEALINGS IN THE SOFTWARE. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 25 | * |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 26 | * |
| 27 | **************************************************************************/ |
| 28 | |
| 29 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | * Authors: |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 31 | * Thomas Hellström <thomas-at-tungstengraphics-dot-com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | */ |
| 33 | |
| 34 | #include "drmP.h" |
| 35 | #include "sis_drm.h" |
| 36 | #include "sis_drv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 38 | #include <video/sisfb.h> |
| 39 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 40 | #define VIDEO_TYPE 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #define AGP_TYPE 1 |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
David Howells | 6bb9e4b | 2008-07-30 12:29:37 -0700 | [diff] [blame] | 44 | #if defined(CONFIG_FB_SIS) || defined(CONFIG_FB_SIS_MODULE) |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 45 | /* fb management via fb device */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 47 | #define SIS_MM_ALIGN_SHIFT 0 |
| 48 | #define SIS_MM_ALIGN_MASK 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 50 | static void *sis_sman_mm_allocate(void *private, unsigned long size, |
| 51 | unsigned alignment) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | struct sis_memreq req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 55 | req.size = size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | sis_malloc(&req); |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 57 | if (req.size == 0) |
| 58 | return NULL; |
| 59 | else |
David Howells | 48f185d | 2008-07-30 12:29:38 -0700 | [diff] [blame] | 60 | return (void *)(unsigned long)~req.offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | } |
| 62 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 63 | static void sis_sman_mm_free(void *private, void *ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 65 | sis_free(~((unsigned long)ref)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 67 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 68 | static void sis_sman_mm_destroy(void *private) |
| 69 | { |
| 70 | ; |
| 71 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Adrian Bunk | fb41e54 | 2006-08-16 11:55:18 +1000 | [diff] [blame] | 73 | static unsigned long sis_sman_mm_offset(void *private, void *ref) |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 74 | { |
| 75 | return ~((unsigned long)ref); |
| 76 | } |
| 77 | |
David Howells | 6bb9e4b | 2008-07-30 12:29:37 -0700 | [diff] [blame] | 78 | #else /* CONFIG_FB_SIS[_MODULE] */ |
Adrian Bunk | fb41e54 | 2006-08-16 11:55:18 +1000 | [diff] [blame] | 79 | |
| 80 | #define SIS_MM_ALIGN_SHIFT 4 |
| 81 | #define SIS_MM_ALIGN_MASK ( (1 << SIS_MM_ALIGN_SHIFT) - 1) |
| 82 | |
David Howells | 6bb9e4b | 2008-07-30 12:29:37 -0700 | [diff] [blame] | 83 | #endif /* CONFIG_FB_SIS[_MODULE] */ |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 84 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 85 | static int sis_fb_init(struct drm_device *dev, void *data, struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | drm_sis_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 88 | drm_sis_fb_t *fb = data; |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 89 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 91 | mutex_lock(&dev->struct_mutex); |
David Howells | 6bb9e4b | 2008-07-30 12:29:37 -0700 | [diff] [blame] | 92 | #if defined(CONFIG_FB_SIS) || defined(CONFIG_FB_SIS_MODULE) |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 93 | { |
Dave Airlie | cca5307 | 2007-07-17 12:55:58 +1000 | [diff] [blame] | 94 | struct drm_sman_mm sman_mm; |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 95 | sman_mm.private = (void *)0xFFFFFFFF; |
| 96 | sman_mm.allocate = sis_sman_mm_allocate; |
| 97 | sman_mm.free = sis_sman_mm_free; |
| 98 | sman_mm.destroy = sis_sman_mm_destroy; |
| 99 | sman_mm.offset = sis_sman_mm_offset; |
| 100 | ret = |
| 101 | drm_sman_set_manager(&dev_priv->sman, VIDEO_TYPE, &sman_mm); |
| 102 | } |
| 103 | #else |
| 104 | ret = drm_sman_set_range(&dev_priv->sman, VIDEO_TYPE, 0, |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 105 | fb->size >> SIS_MM_ALIGN_SHIFT); |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 106 | #endif |
| 107 | |
| 108 | if (ret) { |
| 109 | DRM_ERROR("VRAM memory manager initialisation error\n"); |
| 110 | mutex_unlock(&dev->struct_mutex); |
| 111 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | } |
| 113 | |
Andrew Morton | a1d0fcf | 2006-08-14 11:35:15 +1000 | [diff] [blame] | 114 | dev_priv->vram_initialized = 1; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 115 | dev_priv->vram_offset = fb->offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 117 | mutex_unlock(&dev->struct_mutex); |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 118 | DRM_DEBUG("offset = %u, size = %u\n", fb->offset, fb->size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
| 120 | return 0; |
| 121 | } |
| 122 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 123 | static int sis_drm_alloc(struct drm_device *dev, struct drm_file *file_priv, |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 124 | void *data, int pool) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | drm_sis_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 127 | drm_sis_mem_t *mem = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | int retval = 0; |
Dave Airlie | 9698b4d | 2007-07-12 10:21:05 +1000 | [diff] [blame] | 129 | struct drm_memblock_item *item; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 131 | mutex_lock(&dev->struct_mutex); |
| 132 | |
Andrew Morton | a1d0fcf | 2006-08-14 11:35:15 +1000 | [diff] [blame] | 133 | if (0 == ((pool == 0) ? dev_priv->vram_initialized : |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 134 | dev_priv->agp_initialized)) { |
| 135 | DRM_ERROR |
| 136 | ("Attempt to allocate from uninitialized memory manager.\n"); |
Roel Kluin | 038477a | 2007-11-05 10:53:18 +1000 | [diff] [blame] | 137 | mutex_unlock(&dev->struct_mutex); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 138 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 141 | mem->size = (mem->size + SIS_MM_ALIGN_MASK) >> SIS_MM_ALIGN_SHIFT; |
| 142 | item = drm_sman_alloc(&dev_priv->sman, pool, mem->size, 0, |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 143 | (unsigned long)file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 145 | mutex_unlock(&dev->struct_mutex); |
| 146 | if (item) { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 147 | mem->offset = ((pool == 0) ? |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 148 | dev_priv->vram_offset : dev_priv->agp_offset) + |
| 149 | (item->mm-> |
| 150 | offset(item->mm, item->mm_info) << SIS_MM_ALIGN_SHIFT); |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 151 | mem->free = item->user_hash.key; |
| 152 | mem->size = mem->size << SIS_MM_ALIGN_SHIFT; |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 153 | } else { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 154 | mem->offset = 0; |
| 155 | mem->size = 0; |
| 156 | mem->free = 0; |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 157 | retval = -ENOMEM; |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 158 | } |
| 159 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 160 | DRM_DEBUG("alloc %d, size = %d, offset = %d\n", pool, mem->size, |
| 161 | mem->offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
| 163 | return retval; |
| 164 | } |
| 165 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 166 | static int sis_drm_free(struct drm_device *dev, void *data, struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | drm_sis_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 169 | drm_sis_mem_t *mem = data; |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 170 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 172 | mutex_lock(&dev->struct_mutex); |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 173 | ret = drm_sman_free_key(&dev_priv->sman, mem->free); |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 174 | mutex_unlock(&dev->struct_mutex); |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 175 | DRM_DEBUG("free = 0x%lx\n", mem->free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 177 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | } |
| 179 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 180 | static int sis_fb_alloc(struct drm_device *dev, void *data, |
| 181 | struct drm_file *file_priv) |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 182 | { |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 183 | return sis_drm_alloc(dev, file_priv, data, VIDEO_TYPE); |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 184 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 186 | static int sis_ioctl_agp_init(struct drm_device *dev, void *data, |
| 187 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | drm_sis_private_t *dev_priv = dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 190 | drm_sis_agp_t *agp = data; |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 191 | int ret; |
| 192 | dev_priv = dev->dev_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 194 | mutex_lock(&dev->struct_mutex); |
| 195 | ret = drm_sman_set_range(&dev_priv->sman, AGP_TYPE, 0, |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 196 | agp->size >> SIS_MM_ALIGN_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 198 | if (ret) { |
| 199 | DRM_ERROR("AGP memory manager initialisation error\n"); |
| 200 | mutex_unlock(&dev->struct_mutex); |
| 201 | return ret; |
| 202 | } |
| 203 | |
Andrew Morton | a1d0fcf | 2006-08-14 11:35:15 +1000 | [diff] [blame] | 204 | dev_priv->agp_initialized = 1; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 205 | dev_priv->agp_offset = agp->offset; |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 206 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 208 | DRM_DEBUG("offset = %u, size = %u\n", agp->offset, agp->size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | return 0; |
| 210 | } |
| 211 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 212 | static int sis_ioctl_agp_alloc(struct drm_device *dev, void *data, |
| 213 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 215 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 216 | return sis_drm_alloc(dev, file_priv, data, AGP_TYPE); |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 217 | } |
| 218 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 219 | static drm_local_map_t *sis_reg_init(struct drm_device *dev) |
Thomas Hellstrom | 7981bf7 | 2006-08-08 21:34:46 +1000 | [diff] [blame] | 220 | { |
Dave Airlie | 5591051 | 2007-07-11 16:53:40 +1000 | [diff] [blame] | 221 | struct drm_map_list *entry; |
Thomas Hellstrom | 7981bf7 | 2006-08-08 21:34:46 +1000 | [diff] [blame] | 222 | drm_local_map_t *map; |
| 223 | |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 224 | list_for_each_entry(entry, &dev->maplist, head) { |
Thomas Hellstrom | 7981bf7 | 2006-08-08 21:34:46 +1000 | [diff] [blame] | 225 | map = entry->map; |
| 226 | if (!map) |
| 227 | continue; |
| 228 | if (map->type == _DRM_REGISTERS) { |
| 229 | return map; |
| 230 | } |
| 231 | } |
| 232 | return NULL; |
| 233 | } |
| 234 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 235 | int sis_idle(struct drm_device *dev) |
Thomas Hellstrom | 7981bf7 | 2006-08-08 21:34:46 +1000 | [diff] [blame] | 236 | { |
| 237 | drm_sis_private_t *dev_priv = dev->dev_private; |
| 238 | uint32_t idle_reg; |
| 239 | unsigned long end; |
| 240 | int i; |
| 241 | |
| 242 | if (dev_priv->idle_fault) |
| 243 | return 0; |
| 244 | |
| 245 | if (dev_priv->mmio == NULL) { |
| 246 | dev_priv->mmio = sis_reg_init(dev); |
| 247 | if (dev_priv->mmio == NULL) { |
| 248 | DRM_ERROR("Could not find register map.\n"); |
| 249 | return 0; |
| 250 | } |
| 251 | } |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 252 | |
Thomas Hellstrom | 7981bf7 | 2006-08-08 21:34:46 +1000 | [diff] [blame] | 253 | /* |
| 254 | * Implement a device switch here if needed |
| 255 | */ |
| 256 | |
| 257 | if (dev_priv->chipset != SIS_CHIP_315) |
| 258 | return 0; |
| 259 | |
| 260 | /* |
| 261 | * Timeout after 3 seconds. We cannot use DRM_WAIT_ON here |
| 262 | * because its polling frequency is too low. |
| 263 | */ |
| 264 | |
| 265 | end = jiffies + (DRM_HZ * 3); |
| 266 | |
| 267 | for (i=0; i<4; ++i) { |
| 268 | do { |
| 269 | idle_reg = SIS_READ(0x85cc); |
| 270 | } while ( !time_after_eq(jiffies, end) && |
| 271 | ((idle_reg & 0x80000000) != 0x80000000)); |
| 272 | } |
| 273 | |
| 274 | if (time_after_eq(jiffies, end)) { |
| 275 | DRM_ERROR("Graphics engine idle timeout. " |
| 276 | "Disabling idle check\n"); |
Andrew Morton | a1d0fcf | 2006-08-14 11:35:15 +1000 | [diff] [blame] | 277 | dev_priv->idle_fault = 1; |
Thomas Hellstrom | 7981bf7 | 2006-08-08 21:34:46 +1000 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | /* |
| 281 | * The caller never sees an error code. It gets trapped |
| 282 | * in libdrm. |
| 283 | */ |
| 284 | |
| 285 | return 0; |
| 286 | } |
| 287 | |
| 288 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 289 | void sis_lastclose(struct drm_device *dev) |
| 290 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | drm_sis_private_t *dev_priv = dev->dev_private; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 292 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 293 | if (!dev_priv) |
| 294 | return; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 295 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 296 | mutex_lock(&dev->struct_mutex); |
| 297 | drm_sman_cleanup(&dev_priv->sman); |
Andrew Morton | a1d0fcf | 2006-08-14 11:35:15 +1000 | [diff] [blame] | 298 | dev_priv->vram_initialized = 0; |
| 299 | dev_priv->agp_initialized = 0; |
Thomas Hellstrom | 7981bf7 | 2006-08-08 21:34:46 +1000 | [diff] [blame] | 300 | dev_priv->mmio = NULL; |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 301 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | } |
| 303 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 304 | void sis_reclaim_buffers_locked(struct drm_device * dev, |
| 305 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | drm_sis_private_t *dev_priv = dev->dev_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 309 | mutex_lock(&dev->struct_mutex); |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 310 | if (drm_sman_owner_clean(&dev_priv->sman, (unsigned long)file_priv)) { |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 311 | mutex_unlock(&dev->struct_mutex); |
| 312 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | } |
| 314 | |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 315 | if (dev->driver->dma_quiescent) { |
| 316 | dev->driver->dma_quiescent(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 318 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 319 | drm_sman_owner_cleanup(&dev_priv->sman, (unsigned long)file_priv); |
Thomas Hellstrom | ce65a44 | 2006-08-07 22:03:22 +1000 | [diff] [blame] | 320 | mutex_unlock(&dev->struct_mutex); |
| 321 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 324 | struct drm_ioctl_desc sis_ioctls[] = { |
| 325 | DRM_IOCTL_DEF(DRM_SIS_FB_ALLOC, sis_fb_alloc, DRM_AUTH), |
| 326 | DRM_IOCTL_DEF(DRM_SIS_FB_FREE, sis_drm_free, DRM_AUTH), |
| 327 | DRM_IOCTL_DEF(DRM_SIS_AGP_INIT, sis_ioctl_agp_init, DRM_AUTH | DRM_MASTER | DRM_ROOT_ONLY), |
| 328 | DRM_IOCTL_DEF(DRM_SIS_AGP_ALLOC, sis_ioctl_agp_alloc, DRM_AUTH), |
| 329 | DRM_IOCTL_DEF(DRM_SIS_AGP_FREE, sis_drm_free, DRM_AUTH), |
| 330 | DRM_IOCTL_DEF(DRM_SIS_FB_INIT, sis_fb_init, DRM_AUTH | DRM_MASTER | DRM_ROOT_ONLY), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | }; |
| 332 | |
| 333 | int sis_max_ioctl = DRM_ARRAY_SIZE(sis_ioctls); |