1 // SPDX-License-Identifier: GPL-2.0 OR MIT
3 * Copyright (c) 2007-2008 Tungsten Graphics, Inc., Cedar Park, TX., USA,
4 * Copyright (c) 2009 VMware, Inc., Palo Alto, CA., USA,
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sub license,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial portions
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
20 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
21 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
23 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 #include "nouveau_drv.h"
26 #include "nouveau_gem.h"
27 #include "nouveau_mem.h"
28 #include "nouveau_ttm.h"
30 #include <drm/drm_legacy.h>
32 #include <core/tegra.h>
35 nouveau_manager_del(struct ttm_resource_manager *man, struct ttm_resource *reg)
41 nouveau_vram_manager_new(struct ttm_resource_manager *man,
42 struct ttm_buffer_object *bo,
43 const struct ttm_place *place,
44 struct ttm_resource *reg)
46 struct nouveau_bo *nvbo = nouveau_bo(bo);
47 struct nouveau_drm *drm = nouveau_bdev(bo->bdev);
50 if (drm->client.device.info.ram_size == 0)
53 ret = nouveau_mem_new(&drm->master, nvbo->kind, nvbo->comp, reg);
57 ret = nouveau_mem_vram(reg, nvbo->contig, nvbo->page);
66 const struct ttm_resource_manager_func nouveau_vram_manager = {
67 .alloc = nouveau_vram_manager_new,
68 .free = nouveau_manager_del,
72 nouveau_gart_manager_new(struct ttm_resource_manager *man,
73 struct ttm_buffer_object *bo,
74 const struct ttm_place *place,
75 struct ttm_resource *reg)
77 struct nouveau_bo *nvbo = nouveau_bo(bo);
78 struct nouveau_drm *drm = nouveau_bdev(bo->bdev);
81 ret = nouveau_mem_new(&drm->master, nvbo->kind, nvbo->comp, reg);
89 const struct ttm_resource_manager_func nouveau_gart_manager = {
90 .alloc = nouveau_gart_manager_new,
91 .free = nouveau_manager_del,
95 nv04_gart_manager_new(struct ttm_resource_manager *man,
96 struct ttm_buffer_object *bo,
97 const struct ttm_place *place,
98 struct ttm_resource *reg)
100 struct nouveau_bo *nvbo = nouveau_bo(bo);
101 struct nouveau_drm *drm = nouveau_bdev(bo->bdev);
102 struct nouveau_mem *mem;
105 ret = nouveau_mem_new(&drm->master, nvbo->kind, nvbo->comp, reg);
106 mem = nouveau_mem(reg);
110 ret = nvif_vmm_get(&mem->cli->vmm.vmm, PTES, false, 12, 0,
111 reg->num_pages << PAGE_SHIFT, &mem->vma[0]);
113 nouveau_mem_del(reg);
117 reg->start = mem->vma[0].addr >> PAGE_SHIFT;
121 const struct ttm_resource_manager_func nv04_gart_manager = {
122 .alloc = nv04_gart_manager_new,
123 .free = nouveau_manager_del,
126 static vm_fault_t nouveau_ttm_fault(struct vm_fault *vmf)
128 struct vm_area_struct *vma = vmf->vma;
129 struct ttm_buffer_object *bo = vma->vm_private_data;
133 ret = ttm_bo_vm_reserve(bo, vmf);
137 nouveau_bo_del_io_reserve_lru(bo);
139 prot = vm_get_page_prot(vma->vm_flags);
140 ret = ttm_bo_vm_fault_reserved(vmf, prot, TTM_BO_VM_NUM_PREFAULT, 1);
141 if (ret == VM_FAULT_RETRY && !(vmf->flags & FAULT_FLAG_RETRY_NOWAIT))
144 nouveau_bo_add_io_reserve_lru(bo);
146 dma_resv_unlock(bo->base.resv);
151 static struct vm_operations_struct nouveau_ttm_vm_ops = {
152 .fault = nouveau_ttm_fault,
153 .open = ttm_bo_vm_open,
154 .close = ttm_bo_vm_close,
155 .access = ttm_bo_vm_access
159 nouveau_ttm_mmap(struct file *filp, struct vm_area_struct *vma)
161 struct drm_file *file_priv = filp->private_data;
162 struct nouveau_drm *drm = nouveau_drm(file_priv->minor->dev);
165 ret = ttm_bo_mmap(filp, vma, &drm->ttm.bdev);
169 vma->vm_ops = &nouveau_ttm_vm_ops;
174 nouveau_ttm_init_host(struct nouveau_drm *drm, u8 kind)
176 struct nvif_mmu *mmu = &drm->client.mmu;
179 typei = nvif_mmu_type(mmu, NVIF_MEM_HOST | NVIF_MEM_MAPPABLE |
180 kind | NVIF_MEM_COHERENT);
184 drm->ttm.type_host[!!kind] = typei;
186 typei = nvif_mmu_type(mmu, NVIF_MEM_HOST | NVIF_MEM_MAPPABLE | kind);
190 drm->ttm.type_ncoh[!!kind] = typei;
195 nouveau_ttm_init_vram(struct nouveau_drm *drm)
197 if (drm->client.device.info.family >= NV_DEVICE_INFO_V0_TESLA) {
198 struct ttm_resource_manager *man = kzalloc(sizeof(*man), GFP_KERNEL);
203 man->func = &nouveau_vram_manager;
205 ttm_resource_manager_init(man,
206 drm->gem.vram_available >> PAGE_SHIFT);
207 ttm_set_driver_manager(&drm->ttm.bdev, TTM_PL_VRAM, man);
208 ttm_resource_manager_set_used(man, true);
211 return ttm_range_man_init(&drm->ttm.bdev, TTM_PL_VRAM, false,
212 drm->gem.vram_available >> PAGE_SHIFT);
217 nouveau_ttm_fini_vram(struct nouveau_drm *drm)
219 struct ttm_resource_manager *man = ttm_manager_type(&drm->ttm.bdev, TTM_PL_VRAM);
221 if (drm->client.device.info.family >= NV_DEVICE_INFO_V0_TESLA) {
222 ttm_resource_manager_set_used(man, false);
223 ttm_resource_manager_force_list_clean(&drm->ttm.bdev, man);
224 ttm_resource_manager_cleanup(man);
225 ttm_set_driver_manager(&drm->ttm.bdev, TTM_PL_VRAM, NULL);
228 ttm_range_man_fini(&drm->ttm.bdev, TTM_PL_VRAM);
232 nouveau_ttm_init_gtt(struct nouveau_drm *drm)
234 struct ttm_resource_manager *man;
235 unsigned long size_pages = drm->gem.gart_available >> PAGE_SHIFT;
236 const struct ttm_resource_manager_func *func = NULL;
238 if (drm->client.device.info.family >= NV_DEVICE_INFO_V0_TESLA)
239 func = &nouveau_gart_manager;
240 else if (!drm->agp.bridge)
241 func = &nv04_gart_manager;
243 return ttm_range_man_init(&drm->ttm.bdev, TTM_PL_TT, true,
246 man = kzalloc(sizeof(*man), GFP_KERNEL);
252 ttm_resource_manager_init(man, size_pages);
253 ttm_set_driver_manager(&drm->ttm.bdev, TTM_PL_TT, man);
254 ttm_resource_manager_set_used(man, true);
259 nouveau_ttm_fini_gtt(struct nouveau_drm *drm)
261 struct ttm_resource_manager *man = ttm_manager_type(&drm->ttm.bdev, TTM_PL_TT);
263 if (drm->client.device.info.family < NV_DEVICE_INFO_V0_TESLA &&
265 ttm_range_man_fini(&drm->ttm.bdev, TTM_PL_TT);
267 ttm_resource_manager_set_used(man, false);
268 ttm_resource_manager_force_list_clean(&drm->ttm.bdev, man);
269 ttm_resource_manager_cleanup(man);
270 ttm_set_driver_manager(&drm->ttm.bdev, TTM_PL_TT, NULL);
276 nouveau_ttm_init(struct nouveau_drm *drm)
278 struct nvkm_device *device = nvxx_device(&drm->client.device);
279 struct nvkm_pci *pci = device->pci;
280 struct nvif_mmu *mmu = &drm->client.mmu;
281 struct drm_device *dev = drm->dev;
284 ret = nouveau_ttm_init_host(drm, 0);
288 if (drm->client.device.info.family >= NV_DEVICE_INFO_V0_TESLA &&
289 drm->client.device.info.chipset != 0x50) {
290 ret = nouveau_ttm_init_host(drm, NVIF_MEM_KIND);
295 if (drm->client.device.info.platform != NV_DEVICE_INFO_V0_SOC &&
296 drm->client.device.info.family >= NV_DEVICE_INFO_V0_TESLA) {
297 typei = nvif_mmu_type(mmu, NVIF_MEM_VRAM | NVIF_MEM_MAPPABLE |
304 drm->ttm.type_vram = typei;
306 drm->ttm.type_vram = -1;
309 if (pci && pci->agp.bridge) {
310 drm->agp.bridge = pci->agp.bridge;
311 drm->agp.base = pci->agp.base;
312 drm->agp.size = pci->agp.size;
313 drm->agp.cma = pci->agp.cma;
316 ret = ttm_bo_device_init(&drm->ttm.bdev,
318 dev->anon_inode->i_mapping,
319 dev->vma_offset_manager,
320 drm->client.mmu.dmabits <= 32 ? true : false);
322 NV_ERROR(drm, "error initialising bo driver, %d\n", ret);
327 drm->gem.vram_available = drm->client.device.info.ram_user;
329 arch_io_reserve_memtype_wc(device->func->resource_addr(device, 1),
330 device->func->resource_size(device, 1));
332 ret = nouveau_ttm_init_vram(drm);
334 NV_ERROR(drm, "VRAM mm init failed, %d\n", ret);
338 drm->ttm.mtrr = arch_phys_wc_add(device->func->resource_addr(device, 1),
339 device->func->resource_size(device, 1));
342 if (!drm->agp.bridge) {
343 drm->gem.gart_available = drm->client.vmm.vmm.limit;
345 drm->gem.gart_available = drm->agp.size;
348 ret = nouveau_ttm_init_gtt(drm);
350 NV_ERROR(drm, "GART mm init failed, %d\n", ret);
354 mutex_init(&drm->ttm.io_reserve_mutex);
355 INIT_LIST_HEAD(&drm->ttm.io_reserve_lru);
357 NV_INFO(drm, "VRAM: %d MiB\n", (u32)(drm->gem.vram_available >> 20));
358 NV_INFO(drm, "GART: %d MiB\n", (u32)(drm->gem.gart_available >> 20));
363 nouveau_ttm_fini(struct nouveau_drm *drm)
365 struct nvkm_device *device = nvxx_device(&drm->client.device);
367 nouveau_ttm_fini_vram(drm);
368 nouveau_ttm_fini_gtt(drm);
370 ttm_bo_device_release(&drm->ttm.bdev);
372 arch_phys_wc_del(drm->ttm.mtrr);
374 arch_io_free_memtype_wc(device->func->resource_addr(device, 1),
375 device->func->resource_size(device, 1));