Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 1 | /************************************************************************** |
| 2 | * |
| 3 | * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA |
| 4 | * All Rights Reserved. |
| 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 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: |
| 13 | * |
| 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. |
| 17 | * |
| 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, |
| 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. |
| 25 | * |
| 26 | **************************************************************************/ |
| 27 | |
| 28 | #include "vmwgfx_drv.h" |
| 29 | #include "ttm/ttm_bo_driver.h" |
| 30 | #include "ttm/ttm_placement.h" |
| 31 | |
| 32 | static uint32_t vram_placement_flags = TTM_PL_FLAG_VRAM | |
| 33 | TTM_PL_FLAG_CACHED; |
| 34 | |
| 35 | static uint32_t vram_ne_placement_flags = TTM_PL_FLAG_VRAM | |
| 36 | TTM_PL_FLAG_CACHED | |
| 37 | TTM_PL_FLAG_NO_EVICT; |
| 38 | |
| 39 | static uint32_t sys_placement_flags = TTM_PL_FLAG_SYSTEM | |
| 40 | TTM_PL_FLAG_CACHED; |
| 41 | |
| 42 | struct ttm_placement vmw_vram_placement = { |
| 43 | .fpfn = 0, |
| 44 | .lpfn = 0, |
| 45 | .num_placement = 1, |
| 46 | .placement = &vram_placement_flags, |
| 47 | .num_busy_placement = 1, |
| 48 | .busy_placement = &vram_placement_flags |
| 49 | }; |
| 50 | |
Thomas Hellstrom | 8ba5152 | 2010-01-16 16:05:05 +0100 | [diff] [blame] | 51 | struct ttm_placement vmw_vram_sys_placement = { |
| 52 | .fpfn = 0, |
| 53 | .lpfn = 0, |
| 54 | .num_placement = 1, |
| 55 | .placement = &vram_placement_flags, |
| 56 | .num_busy_placement = 1, |
| 57 | .busy_placement = &sys_placement_flags |
| 58 | }; |
| 59 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 60 | struct ttm_placement vmw_vram_ne_placement = { |
| 61 | .fpfn = 0, |
| 62 | .lpfn = 0, |
| 63 | .num_placement = 1, |
| 64 | .placement = &vram_ne_placement_flags, |
| 65 | .num_busy_placement = 1, |
| 66 | .busy_placement = &vram_ne_placement_flags |
| 67 | }; |
| 68 | |
| 69 | struct ttm_placement vmw_sys_placement = { |
| 70 | .fpfn = 0, |
| 71 | .lpfn = 0, |
| 72 | .num_placement = 1, |
| 73 | .placement = &sys_placement_flags, |
| 74 | .num_busy_placement = 1, |
| 75 | .busy_placement = &sys_placement_flags |
| 76 | }; |
| 77 | |
| 78 | struct vmw_ttm_backend { |
| 79 | struct ttm_backend backend; |
| 80 | }; |
| 81 | |
| 82 | static int vmw_ttm_populate(struct ttm_backend *backend, |
| 83 | unsigned long num_pages, struct page **pages, |
| 84 | struct page *dummy_read_page) |
| 85 | { |
| 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | static int vmw_ttm_bind(struct ttm_backend *backend, struct ttm_mem_reg *bo_mem) |
| 90 | { |
| 91 | return 0; |
| 92 | } |
| 93 | |
| 94 | static int vmw_ttm_unbind(struct ttm_backend *backend) |
| 95 | { |
| 96 | return 0; |
| 97 | } |
| 98 | |
| 99 | static void vmw_ttm_clear(struct ttm_backend *backend) |
| 100 | { |
| 101 | } |
| 102 | |
| 103 | static void vmw_ttm_destroy(struct ttm_backend *backend) |
| 104 | { |
| 105 | struct vmw_ttm_backend *vmw_be = |
| 106 | container_of(backend, struct vmw_ttm_backend, backend); |
| 107 | |
| 108 | kfree(vmw_be); |
| 109 | } |
| 110 | |
| 111 | static struct ttm_backend_func vmw_ttm_func = { |
| 112 | .populate = vmw_ttm_populate, |
| 113 | .clear = vmw_ttm_clear, |
| 114 | .bind = vmw_ttm_bind, |
| 115 | .unbind = vmw_ttm_unbind, |
| 116 | .destroy = vmw_ttm_destroy, |
| 117 | }; |
| 118 | |
| 119 | struct ttm_backend *vmw_ttm_backend_init(struct ttm_bo_device *bdev) |
| 120 | { |
| 121 | struct vmw_ttm_backend *vmw_be; |
| 122 | |
| 123 | vmw_be = kmalloc(sizeof(*vmw_be), GFP_KERNEL); |
| 124 | if (!vmw_be) |
| 125 | return NULL; |
| 126 | |
| 127 | vmw_be->backend.func = &vmw_ttm_func; |
| 128 | |
| 129 | return &vmw_be->backend; |
| 130 | } |
| 131 | |
| 132 | int vmw_invalidate_caches(struct ttm_bo_device *bdev, uint32_t flags) |
| 133 | { |
| 134 | return 0; |
| 135 | } |
| 136 | |
| 137 | int vmw_init_mem_type(struct ttm_bo_device *bdev, uint32_t type, |
| 138 | struct ttm_mem_type_manager *man) |
| 139 | { |
| 140 | struct vmw_private *dev_priv = |
| 141 | container_of(bdev, struct vmw_private, bdev); |
| 142 | |
| 143 | switch (type) { |
| 144 | case TTM_PL_SYSTEM: |
| 145 | /* System memory */ |
| 146 | |
| 147 | man->flags = TTM_MEMTYPE_FLAG_MAPPABLE; |
| 148 | man->available_caching = TTM_PL_MASK_CACHING; |
| 149 | man->default_caching = TTM_PL_FLAG_CACHED; |
| 150 | break; |
| 151 | case TTM_PL_VRAM: |
| 152 | /* "On-card" video ram */ |
| 153 | man->gpu_offset = 0; |
| 154 | man->io_offset = dev_priv->vram_start; |
| 155 | man->io_size = dev_priv->vram_size; |
Jerome Glisse | 96bf8b8 | 2010-04-09 14:39:26 +0200 | [diff] [blame^] | 156 | man->flags = TTM_MEMTYPE_FLAG_FIXED | TTM_MEMTYPE_FLAG_MAPPABLE; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 157 | man->io_addr = NULL; |
| 158 | man->available_caching = TTM_PL_MASK_CACHING; |
| 159 | man->default_caching = TTM_PL_FLAG_WC; |
| 160 | break; |
| 161 | default: |
| 162 | DRM_ERROR("Unsupported memory type %u\n", (unsigned)type); |
| 163 | return -EINVAL; |
| 164 | } |
| 165 | return 0; |
| 166 | } |
| 167 | |
| 168 | void vmw_evict_flags(struct ttm_buffer_object *bo, |
| 169 | struct ttm_placement *placement) |
| 170 | { |
| 171 | *placement = vmw_sys_placement; |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * FIXME: Proper access checks on buffers. |
| 176 | */ |
| 177 | |
| 178 | static int vmw_verify_access(struct ttm_buffer_object *bo, struct file *filp) |
| 179 | { |
| 180 | return 0; |
| 181 | } |
| 182 | |
Thomas Hellstrom | effe110 | 2010-01-13 22:28:39 +0100 | [diff] [blame] | 183 | static void vmw_move_notify(struct ttm_buffer_object *bo, |
| 184 | struct ttm_mem_reg *new_mem) |
| 185 | { |
| 186 | if (new_mem->mem_type != TTM_PL_SYSTEM) |
| 187 | vmw_dmabuf_gmr_unbind(bo); |
| 188 | } |
| 189 | |
Thomas Hellstrom | 476d51d | 2010-01-13 22:28:41 +0100 | [diff] [blame] | 190 | static void vmw_swap_notify(struct ttm_buffer_object *bo) |
| 191 | { |
| 192 | vmw_dmabuf_gmr_unbind(bo); |
| 193 | } |
| 194 | |
Jerome Glisse | 96bf8b8 | 2010-04-09 14:39:26 +0200 | [diff] [blame^] | 195 | static int vmw_ttm_io_mem_reserve(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem) |
| 196 | { |
| 197 | struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type]; |
| 198 | struct vmw_private *dev_priv = container_of(bdev, struct vmw_private, bdev); |
| 199 | |
| 200 | mem->bus.addr = NULL; |
| 201 | mem->bus.is_iomem = false; |
| 202 | mem->bus.offset = 0; |
| 203 | mem->bus.size = mem->num_pages << PAGE_SHIFT; |
| 204 | mem->bus.base = 0; |
| 205 | if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE)) |
| 206 | return -EINVAL; |
| 207 | switch (mem->mem_type) { |
| 208 | case TTM_PL_SYSTEM: |
| 209 | /* System memory */ |
| 210 | return 0; |
| 211 | case TTM_PL_VRAM: |
| 212 | mem->bus.offset = mem->mm_node->start << PAGE_SHIFT; |
| 213 | mem->bus.base = dev_priv->vram_start; |
| 214 | mem->bus.is_iomem = true; |
| 215 | break; |
| 216 | default: |
| 217 | return -EINVAL; |
| 218 | } |
| 219 | return 0; |
| 220 | } |
| 221 | |
| 222 | static void vmw_ttm_io_mem_free(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem) |
| 223 | { |
| 224 | } |
| 225 | |
| 226 | static int vmw_ttm_fault_reserve_notify(struct ttm_buffer_object *bo) |
| 227 | { |
| 228 | return 0; |
| 229 | } |
| 230 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 231 | /** |
| 232 | * FIXME: We're using the old vmware polling method to sync. |
| 233 | * Do this with fences instead. |
| 234 | */ |
| 235 | |
| 236 | static void *vmw_sync_obj_ref(void *sync_obj) |
| 237 | { |
| 238 | return sync_obj; |
| 239 | } |
| 240 | |
| 241 | static void vmw_sync_obj_unref(void **sync_obj) |
| 242 | { |
| 243 | *sync_obj = NULL; |
| 244 | } |
| 245 | |
| 246 | static int vmw_sync_obj_flush(void *sync_obj, void *sync_arg) |
| 247 | { |
| 248 | struct vmw_private *dev_priv = (struct vmw_private *)sync_arg; |
| 249 | |
| 250 | mutex_lock(&dev_priv->hw_mutex); |
| 251 | vmw_write(dev_priv, SVGA_REG_SYNC, SVGA_SYNC_GENERIC); |
| 252 | mutex_unlock(&dev_priv->hw_mutex); |
| 253 | return 0; |
| 254 | } |
| 255 | |
| 256 | static bool vmw_sync_obj_signaled(void *sync_obj, void *sync_arg) |
| 257 | { |
| 258 | struct vmw_private *dev_priv = (struct vmw_private *)sync_arg; |
| 259 | uint32_t sequence = (unsigned long) sync_obj; |
| 260 | |
| 261 | return vmw_fence_signaled(dev_priv, sequence); |
| 262 | } |
| 263 | |
| 264 | static int vmw_sync_obj_wait(void *sync_obj, void *sync_arg, |
| 265 | bool lazy, bool interruptible) |
| 266 | { |
| 267 | struct vmw_private *dev_priv = (struct vmw_private *)sync_arg; |
| 268 | uint32_t sequence = (unsigned long) sync_obj; |
| 269 | |
| 270 | return vmw_wait_fence(dev_priv, false, sequence, false, 3*HZ); |
| 271 | } |
| 272 | |
| 273 | struct ttm_bo_driver vmw_bo_driver = { |
| 274 | .create_ttm_backend_entry = vmw_ttm_backend_init, |
| 275 | .invalidate_caches = vmw_invalidate_caches, |
| 276 | .init_mem_type = vmw_init_mem_type, |
| 277 | .evict_flags = vmw_evict_flags, |
| 278 | .move = NULL, |
| 279 | .verify_access = vmw_verify_access, |
| 280 | .sync_obj_signaled = vmw_sync_obj_signaled, |
| 281 | .sync_obj_wait = vmw_sync_obj_wait, |
| 282 | .sync_obj_flush = vmw_sync_obj_flush, |
| 283 | .sync_obj_unref = vmw_sync_obj_unref, |
Thomas Hellstrom | effe110 | 2010-01-13 22:28:39 +0100 | [diff] [blame] | 284 | .sync_obj_ref = vmw_sync_obj_ref, |
Thomas Hellstrom | 476d51d | 2010-01-13 22:28:41 +0100 | [diff] [blame] | 285 | .move_notify = vmw_move_notify, |
Jerome Glisse | 96bf8b8 | 2010-04-09 14:39:26 +0200 | [diff] [blame^] | 286 | .swap_notify = vmw_swap_notify, |
| 287 | .fault_reserve_notify = &vmw_ttm_fault_reserve_notify, |
| 288 | .io_mem_reserve = &vmw_ttm_io_mem_reserve, |
| 289 | .io_mem_free = &vmw_ttm_io_mem_free, |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 290 | }; |