HomeSort by: relevance | last modified time | path
    Searched refs:ttm_bo_device (Results 1 - 23 of 23) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/include/drm/ttm/
ttm_bo_api.h 59 struct ttm_bo_device;
192 struct ttm_bo_device *bdev;
423 int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev);
430 void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched);
446 * @bdev: Pointer to a ttm_bo_device struct.
452 size_t ttm_bo_acc_size(struct ttm_bo_device *bdev,
455 size_t ttm_bo_dma_acc_size(struct ttm_bo_device *bdev,
462 * @bdev: Pointer to a ttm_bo_device struct.
494 int ttm_bo_init_reserved(struct ttm_bo_device *bdev,
509 * @bdev: Pointer to a ttm_bo_device struct
    [all...]
ttm_bo_driver.h 173 struct ttm_bo_device *bdev;
282 int (*invalidate_caches)(struct ttm_bo_device *bdev, uint32_t flags);
283 int (*init_mem_type)(struct ttm_bo_device *bdev, uint32_t type,
365 int (*io_mem_reserve)(struct ttm_bo_device *bdev,
367 void (*io_mem_free)(struct ttm_bo_device *bdev,
466 * struct ttm_bo_device - Buffer object driver device-specific data.
480 struct ttm_bo_device { struct
573 * @bdev: Pointer to a struct ttm_bo_device.
579 bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem);
609 int ttm_bo_device_release(struct ttm_bo_device *bdev)
    [all...]
ttm_tt.h 91 * @bdev: Pointer to a struct ttm_bo_device.
97 * @bdev: Pointer to the current struct ttm_bo_device.
108 struct ttm_bo_device *bdev;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_ttm.h 8 nouveau_bdev(struct ttm_bo_device *bd)
nouveau_drv.h 155 struct ttm_bo_device bdev;
nouveau_bo.c 739 nouveau_bo_invalidate_caches(struct ttm_bo_device *bdev, uint32_t flags)
746 nouveau_bo_init_mem_type(struct ttm_bo_device *bdev, uint32_t type,
1532 nouveau_ttm_io_mem_reserve(struct ttm_bo_device *bdev, struct ttm_mem_reg *reg)
1614 nouveau_ttm_io_mem_free(struct ttm_bo_device *bdev, struct ttm_mem_reg *reg)
  /src/sys/external/bsd/drm2/dist/drm/ttm/
ttm_bo.c 104 static void ttm_mem_type_debug(struct ttm_bo_device *bdev, struct drm_printer *p,
197 struct ttm_bo_device *bdev = bo->bdev;
227 struct ttm_bo_device *bdev = bo->bdev;
332 struct ttm_bo_device *bdev = bo->bdev;
485 struct ttm_bo_device *bdev = bo->bdev;
625 static bool ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all)
667 struct ttm_bo_device *bdev =
668 container_of(work, struct ttm_bo_device, wq.work);
679 struct ttm_bo_device *bdev = bo->bdev;
706 int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev
    [all...]
ttm_bo_vm.c 103 struct ttm_bo_device *bdev = bo->bdev;
188 struct ttm_bo_device *bdev = bo->bdev;
456 static struct ttm_buffer_object *ttm_bo_vm_lookup(struct ttm_bo_device *bdev,
503 struct ttm_bo_device *bdev)
ttm_bo_util.c 141 int ttm_mem_io_reserve(struct ttm_bo_device *bdev,
165 void ttm_mem_io_free(struct ttm_bo_device *bdev,
211 static int ttm_mem_reg_ioremap(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem,
261 static void ttm_mem_reg_iounmap(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem,
417 struct ttm_bo_device *bdev = bo->bdev;
812 struct ttm_bo_device *bdev = bo->bdev;
873 struct ttm_bo_device *bdev = bo->bdev;
ttm_tt.c 55 struct ttm_bo_device *bdev = bo->bdev;
  /src/sys/external/bsd/drm2/dist/drm/qxl/
qxl_ttm.c 46 static struct qxl_device *qxl_get_qdev(struct ttm_bo_device *bdev)
56 static int qxl_invalidate_caches(struct ttm_bo_device *bdev, uint32_t flags)
61 static int qxl_init_mem_type(struct ttm_bo_device *bdev, uint32_t type,
118 int qxl_ttm_io_mem_reserve(struct ttm_bo_device *bdev,
151 static void qxl_ttm_io_mem_free(struct ttm_bo_device *bdev,
qxl_drv.h 129 struct ttm_bo_device bdev;
360 int qxl_ttm_io_mem_reserve(struct ttm_bo_device *bdev,
qxl_release.c 437 struct ttm_bo_device *bdev;
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_ttm.h 51 struct ttm_bo_device bdev;
amdgpu_ttm.c 79 static int amdgpu_invalidate_caches(struct ttm_bo_device *bdev, uint32_t flags)
95 static int amdgpu_init_mem_type(struct ttm_bo_device *bdev, uint32_t type,
714 static int amdgpu_ttm_io_mem_reserve(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
756 static void amdgpu_ttm_io_mem_free(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
amdgpu.h 1009 static inline struct amdgpu_device *amdgpu_ttm_adev(struct ttm_bo_device *bdev)
  /src/sys/external/bsd/drm2/ttm/
ttm_bo_vm.c 77 static int ttm_bo_uvm_lookup(struct ttm_bo_device *, unsigned long,
175 struct ttm_bo_device *const bdev = bo->bdev;
348 ttm_bo_mmap_object(struct ttm_bo_device *bdev, off_t offset, size_t size,
407 ttm_bo_uvm_lookup(struct ttm_bo_device *bdev, unsigned long startpage,
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_ttm_buffer.c 744 static int vmw_invalidate_caches(struct ttm_bo_device *bdev, uint32_t flags)
749 static int vmw_init_mem_type(struct ttm_bo_device *bdev, uint32_t type,
802 static int vmw_ttm_io_mem_reserve(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
830 static void vmw_ttm_io_mem_free(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
vmwgfx_bo.c 516 struct ttm_bo_device *bdev = &dev_priv->bdev;
1027 struct ttm_bo_device *bdev = bo->bdev;
vmwgfx_resource.c 872 struct ttm_bo_device *bdev = bo->bdev;
vmwgfx_drv.h 456 struct ttm_bo_device bdev;
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_ttm.c 71 static struct radeon_device *radeon_get_rdev(struct ttm_bo_device *bdev)
81 static int radeon_invalidate_caches(struct ttm_bo_device *bdev, uint32_t flags)
86 static int radeon_init_mem_type(struct ttm_bo_device *bdev, uint32_t type,
419 static int radeon_ttm_io_mem_reserve(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
494 static void radeon_ttm_io_mem_free(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
radeon.h 468 struct ttm_bo_device bdev;

Completed in 275 milliseconds