blob: 81577bb783e826c8f100ed4af71be530312feffb [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
Ben Skeggs3863c9b2012-07-14 19:09:17 +100028#ifndef XXX_THIS_IS_A_HACK
29#include <core/object.h>
30#include <core/subdev.h>
31#include <core/device.h>
32#endif
Ben Skeggs02a841d2012-07-04 23:44:54 +100033#include <core/mm.h>
Ben Skeggsa11c3192010-08-27 10:00:25 +100034
Ben Skeggs3863c9b2012-07-14 19:09:17 +100035#ifndef XXX_THIS_IS_A_HACK
Ben Skeggsa11c3192010-08-27 10:00:25 +100036struct nouveau_vm_pgt {
Ben Skeggs3ee01282010-12-15 11:04:39 +100037 struct nouveau_gpuobj *obj[2];
38 u32 refcount[2];
Ben Skeggsa11c3192010-08-27 10:00:25 +100039};
40
41struct nouveau_vm_pgd {
42 struct list_head head;
43 struct nouveau_gpuobj *obj;
44};
Ben Skeggs3863c9b2012-07-14 19:09:17 +100045#endif
46
47struct nouveau_gpuobj;
48struct nouveau_mem;
Ben Skeggsa11c3192010-08-27 10:00:25 +100049
50struct nouveau_vma {
Ben Skeggsfd2871a2011-06-06 14:07:04 +100051 struct list_head head;
Ben Skeggs2fd3db62011-06-07 15:25:12 +100052 int refcount;
Ben Skeggsa11c3192010-08-27 10:00:25 +100053 struct nouveau_vm *vm;
54 struct nouveau_mm_node *node;
55 u64 offset;
56 u32 access;
57};
58
59struct nouveau_vm {
Ben Skeggs3863c9b2012-07-14 19:09:17 +100060 struct nouveau_vmmgr *vmm;
Ben Skeggs987eec12011-06-24 10:14:07 +100061 struct nouveau_mm mm;
Ben Skeggsa11c3192010-08-27 10:00:25 +100062 int refcount;
63
64 struct list_head pgd_list;
Ben Skeggs3863c9b2012-07-14 19:09:17 +100065 atomic_t engref[64]; //NVDEV_SUBDEV_NR];
Ben Skeggsa11c3192010-08-27 10:00:25 +100066
67 struct nouveau_vm_pgt *pgt;
68 u32 fpde;
69 u32 lpde;
Ben Skeggs3863c9b2012-07-14 19:09:17 +100070};
71
72#ifndef XXX_THIS_IS_A_HACK
73struct nouveau_vmmgr {
74 struct nouveau_subdev base;
Ben Skeggsa11c3192010-08-27 10:00:25 +100075
76 u32 pgt_bits;
77 u8 spg_shift;
78 u8 lpg_shift;
79
Ben Skeggs3863c9b2012-07-14 19:09:17 +100080 int (*create)(struct nouveau_vmmgr *, u64 offset, u64 length,
81 u64 mm_offset, struct nouveau_vm **);
82
Ben Skeggs3ee01282010-12-15 11:04:39 +100083 void (*map_pgt)(struct nouveau_gpuobj *pgd, u32 pde,
84 struct nouveau_gpuobj *pgt[2]);
Ben Skeggsa11c3192010-08-27 10:00:25 +100085 void (*map)(struct nouveau_vma *, struct nouveau_gpuobj *,
Ben Skeggs8f7286f2011-02-14 09:57:35 +100086 struct nouveau_mem *, u32 pte, u32 cnt,
87 u64 phys, u64 delta);
Ben Skeggsa11c3192010-08-27 10:00:25 +100088 void (*map_sg)(struct nouveau_vma *, struct nouveau_gpuobj *,
Ben Skeggs26c0c9e2011-02-10 12:59:51 +100089 struct nouveau_mem *, u32 pte, u32 cnt, dma_addr_t *);
Ben Skeggsa11c3192010-08-27 10:00:25 +100090 void (*unmap)(struct nouveau_gpuobj *pgt, u32 pte, u32 cnt);
91 void (*flush)(struct nouveau_vm *);
92};
93
Ben Skeggs3863c9b2012-07-14 19:09:17 +100094static inline struct nouveau_vmmgr *
95nouveau_vmmgr(void *obj)
96{
97 return (void *)nv_device(obj)->subdev[NVDEV_SUBDEV_VM];
98}
99
100#define nouveau_vmmgr_create(p,e,o,i,f,d) \
101 nouveau_subdev_create((p), (e), (o), 0, (i), (f), (d))
102#define nouveau_vmmgr_destroy(p) \
103 nouveau_subdev_destroy(&(p)->base)
104#define nouveau_vmmgr_init(p) \
105 nouveau_subdev_init(&(p)->base)
106#define nouveau_vmmgr_fini(p,s) \
107 nouveau_subdev_fini(&(p)->base, (s))
108
109#define _nouveau_vmmgr_dtor _nouveau_subdev_dtor
110#define _nouveau_vmmgr_init _nouveau_subdev_init
111#define _nouveau_vmmgr_fini _nouveau_subdev_fini
112
113extern struct nouveau_oclass nv04_vmmgr_oclass;
114extern struct nouveau_oclass nv41_vmmgr_oclass;
115extern struct nouveau_oclass nv44_vmmgr_oclass;
116extern struct nouveau_oclass nv50_vmmgr_oclass;
117extern struct nouveau_oclass nvc0_vmmgr_oclass;
118
119int nv04_vm_create(struct nouveau_vmmgr *, u64, u64, u64,
Ben Skeggsa11c3192010-08-27 10:00:25 +1000120 struct nouveau_vm **);
Ben Skeggs3863c9b2012-07-14 19:09:17 +1000121void nv04_vmmgr_dtor(struct nouveau_object *);
122
123void nv50_vm_flush_engine(struct nouveau_subdev *, int engine);
124void nvc0_vm_flush_engine(struct nouveau_subdev *, u64 addr, int type);
125
126/* nouveau_vm.c */
127int nouveau_vm_create(struct nouveau_vmmgr *, u64 offset, u64 length,
128 u64 mm_offset, u32 block, struct nouveau_vm **);
129int nouveau_vm_new(struct nouveau_device *, u64 offset, u64 length,
130 u64 mm_offset, struct nouveau_vm **);
131#endif
Ben Skeggsa11c3192010-08-27 10:00:25 +1000132int nouveau_vm_ref(struct nouveau_vm *, struct nouveau_vm **,
133 struct nouveau_gpuobj *pgd);
134int nouveau_vm_get(struct nouveau_vm *, u64 size, u32 page_shift,
135 u32 access, struct nouveau_vma *);
136void nouveau_vm_put(struct nouveau_vma *);
Ben Skeggsd5f42392011-02-10 12:22:52 +1000137void nouveau_vm_map(struct nouveau_vma *, struct nouveau_mem *);
138void nouveau_vm_map_at(struct nouveau_vma *, u64 offset, struct nouveau_mem *);
Ben Skeggsa11c3192010-08-27 10:00:25 +1000139void nouveau_vm_unmap(struct nouveau_vma *);
140void nouveau_vm_unmap_at(struct nouveau_vma *, u64 offset, u64 length);
141void nouveau_vm_map_sg(struct nouveau_vma *, u64 offset, u64 length,
Ben Skeggsf7b24c42011-12-22 15:20:21 +1000142 struct nouveau_mem *);
Dave Airlie22b33e82012-04-02 11:53:06 +0100143void nouveau_vm_map_sg_table(struct nouveau_vma *vma, u64 delta, u64 length,
Ben Skeggs3863c9b2012-07-14 19:09:17 +1000144 struct nouveau_mem *mem);
Ben Skeggs4c74eb72010-11-10 14:10:04 +1000145
Ben Skeggsa11c3192010-08-27 10:00:25 +1000146#endif