blob: a8246e7e4a89ea7152955f0121a6aff4287aa8b7 [file] [log] [blame]
Ben Skeggsa11c3192010-08-27 10:00:25 +10001/*
2 * Copyright 2010 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 "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Ben Skeggs
23 */
24
25#ifndef __NOUVEAU_VM_H__
26#define __NOUVEAU_VM_H__
27
28#include "drmP.h"
29
30#include "nouveau_drv.h"
31#include "nouveau_mm.h"
32
33struct nouveau_vm_pgt {
Ben Skeggs3ee01282010-12-15 11:04:39 +100034 struct nouveau_gpuobj *obj[2];
35 u32 refcount[2];
Ben Skeggsa11c3192010-08-27 10:00:25 +100036};
37
38struct nouveau_vm_pgd {
39 struct list_head head;
40 struct nouveau_gpuobj *obj;
41};
42
43struct nouveau_vma {
Ben Skeggsfd2871a2011-06-06 14:07:04 +100044 struct list_head head;
Ben Skeggs2fd3db62011-06-07 15:25:12 +100045 int refcount;
Ben Skeggsa11c3192010-08-27 10:00:25 +100046 struct nouveau_vm *vm;
47 struct nouveau_mm_node *node;
48 u64 offset;
49 u32 access;
50};
51
52struct nouveau_vm {
53 struct drm_device *dev;
Ben Skeggs987eec12011-06-24 10:14:07 +100054 struct nouveau_mm mm;
Ben Skeggsa11c3192010-08-27 10:00:25 +100055 int refcount;
56
57 struct list_head pgd_list;
Ben Skeggs6dfdd7a2011-03-31 15:40:43 +100058 atomic_t engref[16];
Ben Skeggsa11c3192010-08-27 10:00:25 +100059
60 struct nouveau_vm_pgt *pgt;
61 u32 fpde;
62 u32 lpde;
63
64 u32 pgt_bits;
65 u8 spg_shift;
66 u8 lpg_shift;
67
Ben Skeggs3ee01282010-12-15 11:04:39 +100068 void (*map_pgt)(struct nouveau_gpuobj *pgd, u32 pde,
69 struct nouveau_gpuobj *pgt[2]);
Ben Skeggsa11c3192010-08-27 10:00:25 +100070 void (*map)(struct nouveau_vma *, struct nouveau_gpuobj *,
Ben Skeggs8f7286f2011-02-14 09:57:35 +100071 struct nouveau_mem *, u32 pte, u32 cnt,
72 u64 phys, u64 delta);
Ben Skeggsa11c3192010-08-27 10:00:25 +100073 void (*map_sg)(struct nouveau_vma *, struct nouveau_gpuobj *,
Ben Skeggs26c0c9e2011-02-10 12:59:51 +100074 struct nouveau_mem *, u32 pte, u32 cnt, dma_addr_t *);
Dave Airlie22b33e82012-04-02 11:53:06 +010075
76 void (*map_sg_table)(struct nouveau_vma *, struct nouveau_gpuobj *,
77 struct nouveau_mem *, u32 pte, u32 cnt, dma_addr_t *);
Ben Skeggsa11c3192010-08-27 10:00:25 +100078 void (*unmap)(struct nouveau_gpuobj *pgt, u32 pte, u32 cnt);
79 void (*flush)(struct nouveau_vm *);
80};
81
82/* nouveau_vm.c */
83int nouveau_vm_new(struct drm_device *, u64 offset, u64 length, u64 mm_offset,
Ben Skeggsa11c3192010-08-27 10:00:25 +100084 struct nouveau_vm **);
85int nouveau_vm_ref(struct nouveau_vm *, struct nouveau_vm **,
86 struct nouveau_gpuobj *pgd);
87int nouveau_vm_get(struct nouveau_vm *, u64 size, u32 page_shift,
88 u32 access, struct nouveau_vma *);
89void nouveau_vm_put(struct nouveau_vma *);
Ben Skeggsd5f42392011-02-10 12:22:52 +100090void nouveau_vm_map(struct nouveau_vma *, struct nouveau_mem *);
91void nouveau_vm_map_at(struct nouveau_vma *, u64 offset, struct nouveau_mem *);
Ben Skeggsa11c3192010-08-27 10:00:25 +100092void nouveau_vm_unmap(struct nouveau_vma *);
93void nouveau_vm_unmap_at(struct nouveau_vma *, u64 offset, u64 length);
94void nouveau_vm_map_sg(struct nouveau_vma *, u64 offset, u64 length,
Ben Skeggsf7b24c42011-12-22 15:20:21 +100095 struct nouveau_mem *);
Dave Airlie22b33e82012-04-02 11:53:06 +010096void nouveau_vm_map_sg_table(struct nouveau_vma *vma, u64 delta, u64 length,
97 struct nouveau_mem *mem);
Ben Skeggsa11c3192010-08-27 10:00:25 +100098/* nv50_vm.c */
Ben Skeggs3ee01282010-12-15 11:04:39 +100099void nv50_vm_map_pgt(struct nouveau_gpuobj *pgd, u32 pde,
100 struct nouveau_gpuobj *pgt[2]);
Ben Skeggsa11c3192010-08-27 10:00:25 +1000101void nv50_vm_map(struct nouveau_vma *, struct nouveau_gpuobj *,
Ben Skeggs8f7286f2011-02-14 09:57:35 +1000102 struct nouveau_mem *, u32 pte, u32 cnt, u64 phys, u64 delta);
Ben Skeggsa11c3192010-08-27 10:00:25 +1000103void nv50_vm_map_sg(struct nouveau_vma *, struct nouveau_gpuobj *,
Ben Skeggs26c0c9e2011-02-10 12:59:51 +1000104 struct nouveau_mem *, u32 pte, u32 cnt, dma_addr_t *);
Ben Skeggsa11c3192010-08-27 10:00:25 +1000105void nv50_vm_unmap(struct nouveau_gpuobj *, u32 pte, u32 cnt);
106void nv50_vm_flush(struct nouveau_vm *);
107void nv50_vm_flush_engine(struct drm_device *, int engine);
108
Ben Skeggs4c74eb72010-11-10 14:10:04 +1000109/* nvc0_vm.c */
110void nvc0_vm_map_pgt(struct nouveau_gpuobj *pgd, u32 pde,
111 struct nouveau_gpuobj *pgt[2]);
112void nvc0_vm_map(struct nouveau_vma *, struct nouveau_gpuobj *,
Ben Skeggs8f7286f2011-02-14 09:57:35 +1000113 struct nouveau_mem *, u32 pte, u32 cnt, u64 phys, u64 delta);
Ben Skeggs4c74eb72010-11-10 14:10:04 +1000114void nvc0_vm_map_sg(struct nouveau_vma *, struct nouveau_gpuobj *,
Ben Skeggs26c0c9e2011-02-10 12:59:51 +1000115 struct nouveau_mem *, u32 pte, u32 cnt, dma_addr_t *);
Ben Skeggs4c74eb72010-11-10 14:10:04 +1000116void nvc0_vm_unmap(struct nouveau_gpuobj *, u32 pte, u32 cnt);
117void nvc0_vm_flush(struct nouveau_vm *);
118
Ben Skeggsa11c3192010-08-27 10:00:25 +1000119#endif