Home | History | Annotate | Line # | Download | only in ttm
ttm_bo_vm.c revision 1.16
      1 /*	$NetBSD: ttm_bo_vm.c,v 1.16 2021/12/19 09:57:17 riastradh Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2014 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Taylor R. Campbell.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  * POSSIBILITY OF SUCH DAMAGE.
     30  */
     31 
     32 #include <sys/cdefs.h>
     33 __KERNEL_RCSID(0, "$NetBSD: ttm_bo_vm.c,v 1.16 2021/12/19 09:57:17 riastradh Exp $");
     34 
     35 #include <sys/types.h>
     36 
     37 #include <uvm/uvm.h>
     38 #include <uvm/uvm_extern.h>
     39 #include <uvm/uvm_fault.h>
     40 
     41 #include <linux/bitops.h>
     42 
     43 #include <drm/drm_vma_manager.h>
     44 
     45 #include <ttm/ttm_bo_driver.h>
     46 
     47 static int	ttm_bo_uvm_fault_idle(struct ttm_buffer_object *,
     48 		    struct uvm_faultinfo *);
     49 static int	ttm_bo_uvm_lookup(struct ttm_bo_device *, unsigned long,
     50 		    unsigned long, struct ttm_buffer_object **);
     51 
     52 void
     53 ttm_bo_uvm_reference(struct uvm_object *uobj)
     54 {
     55 	struct ttm_buffer_object *const bo = container_of(uobj,
     56 	    struct ttm_buffer_object, uvmobj);
     57 
     58 	(void)ttm_bo_get(bo);
     59 }
     60 
     61 void
     62 ttm_bo_uvm_detach(struct uvm_object *uobj)
     63 {
     64 	struct ttm_buffer_object *bo = container_of(uobj,
     65 	    struct ttm_buffer_object, uvmobj);
     66 
     67 	ttm_bo_put(bo);
     68 	KASSERT(bo == NULL);
     69 }
     70 
     71 int
     72 ttm_bo_uvm_fault(struct uvm_faultinfo *ufi, vaddr_t vaddr,
     73     struct vm_page **pps, int npages, int centeridx, vm_prot_t access_type,
     74     int flags)
     75 {
     76 	struct uvm_object *const uobj = ufi->entry->object.uvm_obj;
     77 	struct ttm_buffer_object *const bo = container_of(uobj,
     78 	    struct ttm_buffer_object, uvmobj);
     79 	struct ttm_bo_device *const bdev = bo->bdev;
     80 	struct ttm_mem_type_manager *man =
     81 	    &bdev->man[bo->mem.mem_type];
     82 	union {
     83 		bus_addr_t base;
     84 		struct ttm_tt *ttm;
     85 	} u;
     86 	size_t size __diagused;
     87 	voff_t uoffset;		/* offset in bytes into bo */
     88 	unsigned startpage;	/* offset in pages into bo */
     89 	unsigned i;
     90 	vm_prot_t vm_prot;	/* VM_PROT_* */
     91 	pgprot_t pgprot;	/* VM_PROT_* | PMAP_* cacheability flags */
     92 	int ret;
     93 
     94 	/* Thanks, uvm, but we don't need this lock.  */
     95 	rw_exit(uobj->vmobjlock);
     96 
     97 	/* Copy-on-write mappings make no sense for the graphics aperture.  */
     98 	if (UVM_ET_ISCOPYONWRITE(ufi->entry)) {
     99 		ret = -EIO;
    100 		goto out0;
    101 	}
    102 
    103 	/* Try to lock the buffer.  */
    104 	ret = ttm_bo_reserve(bo, true, true, NULL);
    105 	if (ret) {
    106 		if (ret != -EBUSY)
    107 			goto out0;
    108 		/*
    109 		 * It's currently locked.  Unlock the fault, wait for
    110 		 * it, and start over.
    111 		 */
    112 		uvmfault_unlockall(ufi, ufi->entry->aref.ar_amap, NULL);
    113 		(void)ttm_bo_wait_unreserved(bo);
    114 		return ERESTART;
    115 	}
    116 
    117 	/* drm prime buffers are not mappable.  XXX Catch this earlier?  */
    118 	if (bo->ttm && ISSET(bo->ttm->page_flags, TTM_PAGE_FLAG_SG)) {
    119 		ret = -EINVAL;
    120 		goto out1;
    121 	}
    122 
    123 	/* Notify the driver of a fault if it wants.  */
    124 	if (bdev->driver->fault_reserve_notify) {
    125 		ret = (*bdev->driver->fault_reserve_notify)(bo);
    126 		if (ret) {
    127 			if (ret == -ERESTART)
    128 				ret = -EIO;
    129 			goto out1;
    130 		}
    131 	}
    132 
    133 	ret = ttm_bo_uvm_fault_idle(bo, ufi);
    134 	if (ret) {
    135 		KASSERT(ret == -ERESTART || ret == -EFAULT);
    136 		/* ttm_bo_uvm_fault_idle calls uvmfault_unlockall for us.  */
    137 		ttm_bo_unreserve(bo);
    138 		/* XXX errno Linux->NetBSD */
    139 		return -ret;
    140 	}
    141 
    142 	ret = ttm_mem_io_lock(man, true);
    143 	if (ret) {
    144 		ret = -EIO;
    145 		goto out1;
    146 	}
    147 	ret = ttm_mem_io_reserve_vm(bo);
    148 	if (ret) {
    149 		ret = -EIO;
    150 		goto out2;
    151 	}
    152 
    153 	vm_prot = ufi->entry->protection;
    154 	if (bo->mem.bus.is_iomem) {
    155 		u.base = (bo->mem.bus.base + bo->mem.bus.offset);
    156 		size = bo->mem.bus.size;
    157 		pgprot = ttm_io_prot(bo->mem.placement, vm_prot);
    158 	} else {
    159 		struct ttm_operation_ctx ctx = {
    160 			.interruptible = false,
    161 			.no_wait_gpu = false,
    162 			.flags = TTM_OPT_FLAG_FORCE_ALLOC,
    163 		};
    164 		u.ttm = bo->ttm;
    165 		size = (bo->ttm->num_pages << PAGE_SHIFT);
    166 		if (ISSET(bo->mem.placement, TTM_PL_FLAG_CACHED))
    167 			pgprot = vm_prot;
    168 		else
    169 			pgprot = ttm_io_prot(bo->mem.placement, vm_prot);
    170 		if (ttm_tt_populate(u.ttm, &ctx)) {
    171 			ret = -ENOMEM;
    172 			goto out2;
    173 		}
    174 	}
    175 
    176 	KASSERT(ufi->entry->start <= vaddr);
    177 	KASSERT((ufi->entry->offset & (PAGE_SIZE - 1)) == 0);
    178 	KASSERT(ufi->entry->offset <= size);
    179 	KASSERT((vaddr - ufi->entry->start) <= (size - ufi->entry->offset));
    180 	KASSERT(npages <= ((size - ufi->entry->offset) -
    181 		(vaddr - ufi->entry->start)));
    182 	uoffset = (ufi->entry->offset + (vaddr - ufi->entry->start));
    183 	startpage = (uoffset >> PAGE_SHIFT);
    184 	for (i = 0; i < npages; i++) {
    185 		paddr_t paddr;
    186 
    187 		/* XXX PGO_ALLPAGES?  */
    188 		if (pps[i] == PGO_DONTCARE)
    189 			continue;
    190 		if (bo->mem.bus.is_iomem) {
    191 			const paddr_t cookie = bus_space_mmap(bdev->memt,
    192 			    u.base, ((startpage + i) << PAGE_SHIFT), vm_prot,
    193 			    0);
    194 
    195 			paddr = pmap_phys_address(cookie);
    196 		} else {
    197 			paddr = page_to_phys(u.ttm->pages[startpage + i]);
    198 		}
    199 		ret = -pmap_enter(ufi->orig_map->pmap, vaddr + i*PAGE_SIZE,
    200 		    paddr, vm_prot, (PMAP_CANFAIL | pgprot));
    201 		if (ret)
    202 			goto out3;
    203 	}
    204 
    205 out3:	pmap_update(ufi->orig_map->pmap);
    206 out2:	ttm_mem_io_unlock(man);
    207 out1:	ttm_bo_unreserve(bo);
    208 out0:	uvmfault_unlockall(ufi, ufi->entry->aref.ar_amap, NULL);
    209 	/* XXX errno Linux->NetBSD */
    210 	return -ret;
    211 }
    212 
    213 static int
    214 ttm_bo_uvm_fault_idle(struct ttm_buffer_object *bo, struct uvm_faultinfo *ufi)
    215 {
    216 	int ret = 0;
    217 
    218 	if (__predict_true(!bo->moving))
    219 		goto out0;
    220 
    221 	if (dma_fence_is_signaled(bo->moving))
    222 		goto out1;
    223 
    224 	if (dma_fence_wait(bo->moving, true) != 0) {
    225 		ret = -EFAULT;
    226 		goto out2;
    227 	}
    228 
    229 	ret = -ERESTART;
    230 out2:	uvmfault_unlockall(ufi, ufi->entry->aref.ar_amap, NULL);
    231 out1:	dma_fence_put(bo->moving);
    232 	bo->moving = NULL;
    233 out0:	return ret;
    234 }
    235 
    236 int
    237 ttm_bo_mmap_object(struct ttm_bo_device *bdev, off_t offset, size_t size,
    238     vm_prot_t prot, struct uvm_object **uobjp, voff_t *uoffsetp,
    239     struct file *file)
    240 {
    241 	const unsigned long startpage = (offset >> PAGE_SHIFT);
    242 	const unsigned long npages = (size >> PAGE_SHIFT);
    243 	struct ttm_buffer_object *bo;
    244 	int ret;
    245 
    246 	KASSERT(0 == (offset & (PAGE_SIZE - 1)));
    247 	KASSERT(0 == (size & (PAGE_SIZE - 1)));
    248 
    249 	ret = ttm_bo_uvm_lookup(bdev, startpage, npages, &bo);
    250 	if (ret)
    251 		goto fail0;
    252 	KASSERT(drm_vma_node_start(&bo->base.vma_node) <= offset);
    253 	/* XXX Just assert this?  */
    254 	if (__predict_false(bdev->driver->verify_access == NULL)) {
    255 		ret = -EPERM;
    256 		goto fail1;
    257 	}
    258 	ret = (*bdev->driver->verify_access)(bo, file);
    259 	if (ret)
    260 		goto fail1;
    261 
    262 	/* Success!  */
    263 	*uobjp = &bo->uvmobj;
    264 	*uoffsetp = (offset -
    265 	    (drm_vma_node_start(&bo->base.vma_node) << PAGE_SHIFT));
    266 	return 0;
    267 
    268 fail1:	ttm_bo_put(bo);
    269 fail0:	KASSERT(ret);
    270 	return ret;
    271 }
    272 
    273 static int
    274 ttm_bo_uvm_lookup(struct ttm_bo_device *bdev, unsigned long startpage,
    275     unsigned long npages, struct ttm_buffer_object **bop)
    276 {
    277 	struct ttm_buffer_object *bo = NULL;
    278 	struct drm_vma_offset_node *node;
    279 
    280 	drm_vma_offset_lock_lookup(bdev->vma_manager);
    281 	node = drm_vma_offset_lookup_locked(bdev->vma_manager, startpage,
    282 	    npages);
    283 	if (node != NULL) {
    284 		bo = container_of(node, struct ttm_buffer_object, base.vma_node);
    285 		if (!kref_get_unless_zero(&bo->kref))
    286 			bo = NULL;
    287 	}
    288 	drm_vma_offset_unlock_lookup(bdev->vma_manager);
    289 
    290 	if (bo == NULL)
    291 		return -ENOENT;
    292 
    293 	*bop = bo;
    294 	return 0;
    295 }
    296