blob: 6768b7b1af32d98bc26c259870ac471983e4a62d [file] [log] [blame]
Dave Airlief9aa76a2012-04-17 14:12:29 +01001/*
2 * Copyright 2012 Red Hat Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sub license, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
17 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18 * USE OR OTHER DEALINGS IN THE SOFTWARE.
19 *
20 * The above copyright notice and this permission notice (including the
21 * next paragraph) shall be included in all copies or substantial portions
22 * of the Software.
23 *
24 */
25/*
26 * Authors: Dave Airlie <airlied@redhat.com>
27 */
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
Dave Airlief9aa76a2012-04-17 14:12:29 +010029#include "cirrus_drv.h"
30#include <ttm/ttm_page_alloc.h>
31
32static inline struct cirrus_device *
33cirrus_bdev(struct ttm_bo_device *bd)
34{
35 return container_of(bd, struct cirrus_device, ttm.bdev);
36}
37
38static int
39cirrus_ttm_mem_global_init(struct drm_global_reference *ref)
40{
41 return ttm_mem_global_init(ref->object);
42}
43
44static void
45cirrus_ttm_mem_global_release(struct drm_global_reference *ref)
46{
47 ttm_mem_global_release(ref->object);
48}
49
50static int cirrus_ttm_global_init(struct cirrus_device *cirrus)
51{
52 struct drm_global_reference *global_ref;
53 int r;
54
55 global_ref = &cirrus->ttm.mem_global_ref;
56 global_ref->global_type = DRM_GLOBAL_TTM_MEM;
57 global_ref->size = sizeof(struct ttm_mem_global);
58 global_ref->init = &cirrus_ttm_mem_global_init;
59 global_ref->release = &cirrus_ttm_mem_global_release;
60 r = drm_global_item_ref(global_ref);
61 if (r != 0) {
62 DRM_ERROR("Failed setting up TTM memory accounting "
63 "subsystem.\n");
64 return r;
65 }
66
67 cirrus->ttm.bo_global_ref.mem_glob =
68 cirrus->ttm.mem_global_ref.object;
69 global_ref = &cirrus->ttm.bo_global_ref.ref;
70 global_ref->global_type = DRM_GLOBAL_TTM_BO;
71 global_ref->size = sizeof(struct ttm_bo_global);
72 global_ref->init = &ttm_bo_global_init;
73 global_ref->release = &ttm_bo_global_release;
74 r = drm_global_item_ref(global_ref);
75 if (r != 0) {
76 DRM_ERROR("Failed setting up TTM BO subsystem.\n");
77 drm_global_item_unref(&cirrus->ttm.mem_global_ref);
78 return r;
79 }
80 return 0;
81}
82
Rashikacdd73302014-01-06 20:31:42 +053083static void
Dave Airlief9aa76a2012-04-17 14:12:29 +010084cirrus_ttm_global_release(struct cirrus_device *cirrus)
85{
86 if (cirrus->ttm.mem_global_ref.release == NULL)
87 return;
88
89 drm_global_item_unref(&cirrus->ttm.bo_global_ref.ref);
90 drm_global_item_unref(&cirrus->ttm.mem_global_ref);
91 cirrus->ttm.mem_global_ref.release = NULL;
92}
93
94
95static void cirrus_bo_ttm_destroy(struct ttm_buffer_object *tbo)
96{
97 struct cirrus_bo *bo;
98
99 bo = container_of(tbo, struct cirrus_bo, bo);
100
101 drm_gem_object_release(&bo->gem);
102 kfree(bo);
103}
104
Rashikacdd73302014-01-06 20:31:42 +0530105static bool cirrus_ttm_bo_is_cirrus_bo(struct ttm_buffer_object *bo)
Dave Airlief9aa76a2012-04-17 14:12:29 +0100106{
107 if (bo->destroy == &cirrus_bo_ttm_destroy)
108 return true;
109 return false;
110}
111
112static int
113cirrus_bo_init_mem_type(struct ttm_bo_device *bdev, uint32_t type,
114 struct ttm_mem_type_manager *man)
115{
116 switch (type) {
117 case TTM_PL_SYSTEM:
118 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE;
119 man->available_caching = TTM_PL_MASK_CACHING;
120 man->default_caching = TTM_PL_FLAG_CACHED;
121 break;
122 case TTM_PL_VRAM:
123 man->func = &ttm_bo_manager_func;
124 man->flags = TTM_MEMTYPE_FLAG_FIXED |
125 TTM_MEMTYPE_FLAG_MAPPABLE;
126 man->available_caching = TTM_PL_FLAG_UNCACHED |
127 TTM_PL_FLAG_WC;
128 man->default_caching = TTM_PL_FLAG_WC;
129 break;
130 default:
131 DRM_ERROR("Unsupported memory type %u\n", (unsigned)type);
132 return -EINVAL;
133 }
134 return 0;
135}
136
137static void
138cirrus_bo_evict_flags(struct ttm_buffer_object *bo, struct ttm_placement *pl)
139{
140 struct cirrus_bo *cirrusbo = cirrus_bo(bo);
141
142 if (!cirrus_ttm_bo_is_cirrus_bo(bo))
143 return;
144
145 cirrus_ttm_placement(cirrusbo, TTM_PL_FLAG_SYSTEM);
146 *pl = cirrusbo->placement;
147}
148
149static int cirrus_bo_verify_access(struct ttm_buffer_object *bo, struct file *filp)
150{
David Herrmannacb46522013-08-25 18:28:59 +0200151 struct cirrus_bo *cirrusbo = cirrus_bo(bo);
152
153 return drm_vma_node_verify_access(&cirrusbo->gem.vma_node, filp);
Dave Airlief9aa76a2012-04-17 14:12:29 +0100154}
155
156static int cirrus_ttm_io_mem_reserve(struct ttm_bo_device *bdev,
157 struct ttm_mem_reg *mem)
158{
159 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
160 struct cirrus_device *cirrus = cirrus_bdev(bdev);
161
162 mem->bus.addr = NULL;
163 mem->bus.offset = 0;
164 mem->bus.size = mem->num_pages << PAGE_SHIFT;
165 mem->bus.base = 0;
166 mem->bus.is_iomem = false;
167 if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE))
168 return -EINVAL;
169 switch (mem->mem_type) {
170 case TTM_PL_SYSTEM:
171 /* system memory */
172 return 0;
173 case TTM_PL_VRAM:
174 mem->bus.offset = mem->start << PAGE_SHIFT;
175 mem->bus.base = pci_resource_start(cirrus->dev->pdev, 0);
176 mem->bus.is_iomem = true;
177 break;
178 default:
179 return -EINVAL;
180 break;
181 }
182 return 0;
183}
184
185static void cirrus_ttm_io_mem_free(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
186{
187}
188
189static int cirrus_bo_move(struct ttm_buffer_object *bo,
190 bool evict, bool interruptible,
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000191 bool no_wait_gpu,
Dave Airlief9aa76a2012-04-17 14:12:29 +0100192 struct ttm_mem_reg *new_mem)
193{
194 int r;
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000195 r = ttm_bo_move_memcpy(bo, evict, no_wait_gpu, new_mem);
Dave Airlief9aa76a2012-04-17 14:12:29 +0100196 return r;
197}
198
199
200static void cirrus_ttm_backend_destroy(struct ttm_tt *tt)
201{
202 ttm_tt_fini(tt);
203 kfree(tt);
204}
205
206static struct ttm_backend_func cirrus_tt_backend_func = {
207 .destroy = &cirrus_ttm_backend_destroy,
208};
209
210
Rashikacdd73302014-01-06 20:31:42 +0530211static struct ttm_tt *cirrus_ttm_tt_create(struct ttm_bo_device *bdev,
Dave Airlief9aa76a2012-04-17 14:12:29 +0100212 unsigned long size, uint32_t page_flags,
213 struct page *dummy_read_page)
214{
215 struct ttm_tt *tt;
216
217 tt = kzalloc(sizeof(struct ttm_tt), GFP_KERNEL);
218 if (tt == NULL)
219 return NULL;
220 tt->func = &cirrus_tt_backend_func;
221 if (ttm_tt_init(tt, bdev, size, page_flags, dummy_read_page)) {
222 kfree(tt);
223 return NULL;
224 }
225 return tt;
226}
227
228static int cirrus_ttm_tt_populate(struct ttm_tt *ttm)
229{
230 return ttm_pool_populate(ttm);
231}
232
233static void cirrus_ttm_tt_unpopulate(struct ttm_tt *ttm)
234{
235 ttm_pool_unpopulate(ttm);
236}
237
238struct ttm_bo_driver cirrus_bo_driver = {
239 .ttm_tt_create = cirrus_ttm_tt_create,
240 .ttm_tt_populate = cirrus_ttm_tt_populate,
241 .ttm_tt_unpopulate = cirrus_ttm_tt_unpopulate,
242 .init_mem_type = cirrus_bo_init_mem_type,
243 .evict_flags = cirrus_bo_evict_flags,
244 .move = cirrus_bo_move,
245 .verify_access = cirrus_bo_verify_access,
246 .io_mem_reserve = &cirrus_ttm_io_mem_reserve,
247 .io_mem_free = &cirrus_ttm_io_mem_free,
Christian König98c28722016-04-06 11:12:07 +0200248 .lru_tail = &ttm_bo_default_lru_tail,
249 .swap_lru_tail = &ttm_bo_default_swap_lru_tail,
Dave Airlief9aa76a2012-04-17 14:12:29 +0100250};
251
252int cirrus_mm_init(struct cirrus_device *cirrus)
253{
254 int ret;
255 struct drm_device *dev = cirrus->dev;
256 struct ttm_bo_device *bdev = &cirrus->ttm.bdev;
257
258 ret = cirrus_ttm_global_init(cirrus);
259 if (ret)
260 return ret;
261
262 ret = ttm_bo_device_init(&cirrus->ttm.bdev,
263 cirrus->ttm.bo_global_ref.ref.object,
David Herrmann44d847b2013-08-13 19:10:30 +0200264 &cirrus_bo_driver,
265 dev->anon_inode->i_mapping,
266 DRM_FILE_PAGE_OFFSET,
Dave Airlief9aa76a2012-04-17 14:12:29 +0100267 true);
268 if (ret) {
269 DRM_ERROR("Error initialising bo driver; %d\n", ret);
270 return ret;
271 }
272
273 ret = ttm_bo_init_mm(bdev, TTM_PL_VRAM,
274 cirrus->mc.vram_size >> PAGE_SHIFT);
275 if (ret) {
276 DRM_ERROR("Failed ttm VRAM init: %d\n", ret);
277 return ret;
278 }
279
Andy Lutomirski247d36d2013-05-13 23:58:41 +0000280 cirrus->fb_mtrr = arch_phys_wc_add(pci_resource_start(dev->pdev, 0),
281 pci_resource_len(dev->pdev, 0));
Dave Airlief9aa76a2012-04-17 14:12:29 +0100282
Dave Airlie93b4cc52012-05-31 13:53:56 +0100283 cirrus->mm_inited = true;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100284 return 0;
285}
286
287void cirrus_mm_fini(struct cirrus_device *cirrus)
288{
Dave Airlie93b4cc52012-05-31 13:53:56 +0100289 if (!cirrus->mm_inited)
290 return;
291
Dave Airlief9aa76a2012-04-17 14:12:29 +0100292 ttm_bo_device_release(&cirrus->ttm.bdev);
293
294 cirrus_ttm_global_release(cirrus);
295
Andy Lutomirski247d36d2013-05-13 23:58:41 +0000296 arch_phys_wc_del(cirrus->fb_mtrr);
297 cirrus->fb_mtrr = 0;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100298}
299
300void cirrus_ttm_placement(struct cirrus_bo *bo, int domain)
301{
302 u32 c = 0;
Christian Königf1217ed2014-08-27 13:16:04 +0200303 unsigned i;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100304 bo->placement.placement = bo->placements;
305 bo->placement.busy_placement = bo->placements;
306 if (domain & TTM_PL_FLAG_VRAM)
Christian Königf1217ed2014-08-27 13:16:04 +0200307 bo->placements[c++].flags = TTM_PL_FLAG_WC | TTM_PL_FLAG_UNCACHED | TTM_PL_FLAG_VRAM;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100308 if (domain & TTM_PL_FLAG_SYSTEM)
Christian Königf1217ed2014-08-27 13:16:04 +0200309 bo->placements[c++].flags = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100310 if (!c)
Christian Königf1217ed2014-08-27 13:16:04 +0200311 bo->placements[c++].flags = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100312 bo->placement.num_placement = c;
313 bo->placement.num_busy_placement = c;
Christian Königf1217ed2014-08-27 13:16:04 +0200314 for (i = 0; i < c; ++i) {
315 bo->placements[i].fpfn = 0;
316 bo->placements[i].lpfn = 0;
317 }
Dave Airlief9aa76a2012-04-17 14:12:29 +0100318}
319
Dave Airlief9aa76a2012-04-17 14:12:29 +0100320int cirrus_bo_create(struct drm_device *dev, int size, int align,
321 uint32_t flags, struct cirrus_bo **pcirrusbo)
322{
323 struct cirrus_device *cirrus = dev->dev_private;
324 struct cirrus_bo *cirrusbo;
325 size_t acc_size;
326 int ret;
327
328 cirrusbo = kzalloc(sizeof(struct cirrus_bo), GFP_KERNEL);
329 if (!cirrusbo)
330 return -ENOMEM;
331
332 ret = drm_gem_object_init(dev, &cirrusbo->gem, size);
333 if (ret) {
334 kfree(cirrusbo);
335 return ret;
336 }
337
Dave Airlief9aa76a2012-04-17 14:12:29 +0100338 cirrusbo->bo.bdev = &cirrus->ttm.bdev;
339
340 cirrus_ttm_placement(cirrusbo, TTM_PL_FLAG_VRAM | TTM_PL_FLAG_SYSTEM);
341
342 acc_size = ttm_bo_dma_acc_size(&cirrus->ttm.bdev, size,
343 sizeof(struct cirrus_bo));
344
345 ret = ttm_bo_init(&cirrus->ttm.bdev, &cirrusbo->bo, size,
346 ttm_bo_type_device, &cirrusbo->placement,
Marcin Slusarz0b91c4a2012-11-06 21:49:51 +0000347 align >> PAGE_SHIFT, false, NULL, acc_size,
Maarten Lankhorstf4f4e3e2014-01-09 11:03:15 +0100348 NULL, NULL, cirrus_bo_ttm_destroy);
Dave Airlief9aa76a2012-04-17 14:12:29 +0100349 if (ret)
350 return ret;
351
352 *pcirrusbo = cirrusbo;
353 return 0;
354}
355
356static inline u64 cirrus_bo_gpu_offset(struct cirrus_bo *bo)
357{
358 return bo->bo.offset;
359}
360
361int cirrus_bo_pin(struct cirrus_bo *bo, u32 pl_flag, u64 *gpu_addr)
362{
363 int i, ret;
364
365 if (bo->pin_count) {
366 bo->pin_count++;
367 if (gpu_addr)
368 *gpu_addr = cirrus_bo_gpu_offset(bo);
369 }
370
371 cirrus_ttm_placement(bo, pl_flag);
372 for (i = 0; i < bo->placement.num_placement; i++)
Christian Königf1217ed2014-08-27 13:16:04 +0200373 bo->placements[i].flags |= TTM_PL_FLAG_NO_EVICT;
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000374 ret = ttm_bo_validate(&bo->bo, &bo->placement, false, false);
Dave Airlief9aa76a2012-04-17 14:12:29 +0100375 if (ret)
376 return ret;
377
378 bo->pin_count = 1;
379 if (gpu_addr)
380 *gpu_addr = cirrus_bo_gpu_offset(bo);
381 return 0;
382}
383
Dave Airlief9aa76a2012-04-17 14:12:29 +0100384int cirrus_bo_push_sysram(struct cirrus_bo *bo)
385{
386 int i, ret;
387 if (!bo->pin_count) {
388 DRM_ERROR("unpin bad %p\n", bo);
389 return 0;
390 }
391 bo->pin_count--;
392 if (bo->pin_count)
393 return 0;
394
395 if (bo->kmap.virtual)
396 ttm_bo_kunmap(&bo->kmap);
397
398 cirrus_ttm_placement(bo, TTM_PL_FLAG_SYSTEM);
399 for (i = 0; i < bo->placement.num_placement ; i++)
Christian Königf1217ed2014-08-27 13:16:04 +0200400 bo->placements[i].flags |= TTM_PL_FLAG_NO_EVICT;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100401
Maarten Lankhorst97a875c2012-11-28 11:25:44 +0000402 ret = ttm_bo_validate(&bo->bo, &bo->placement, false, false);
Dave Airlief9aa76a2012-04-17 14:12:29 +0100403 if (ret) {
404 DRM_ERROR("pushing to VRAM failed\n");
405 return ret;
406 }
407 return 0;
408}
409
410int cirrus_mmap(struct file *filp, struct vm_area_struct *vma)
411{
412 struct drm_file *file_priv;
413 struct cirrus_device *cirrus;
414
415 if (unlikely(vma->vm_pgoff < DRM_FILE_PAGE_OFFSET))
Daniel Vetter884c6da2014-09-23 15:46:47 +0200416 return -EINVAL;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100417
418 file_priv = filp->private_data;
419 cirrus = file_priv->minor->dev->dev_private;
420 return ttm_bo_mmap(filp, vma, &cirrus->ttm.bdev);
421}