]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/gpu/drm/nouveau/nouveau_drv.h
drm/nouveau: allocate mmu object for every client
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / nouveau / nouveau_drv.h
1 #ifndef __NOUVEAU_DRV_H__
2 #define __NOUVEAU_DRV_H__
3
4 #define DRIVER_AUTHOR "Nouveau Project"
5 #define DRIVER_EMAIL "nouveau@lists.freedesktop.org"
6
7 #define DRIVER_NAME "nouveau"
8 #define DRIVER_DESC "nVidia Riva/TNT/GeForce/Quadro/Tesla/Tegra K1+"
9 #define DRIVER_DATE "20120801"
10
11 #define DRIVER_MAJOR 1
12 #define DRIVER_MINOR 3
13 #define DRIVER_PATCHLEVEL 1
14
15 /*
16 * 1.1.1:
17 * - added support for tiled system memory buffer objects
18 * - added support for NOUVEAU_GETPARAM_GRAPH_UNITS on [nvc0,nve0].
19 * - added support for compressed memory storage types on [nvc0,nve0].
20 * - added support for software methods 0x600,0x644,0x6ac on nvc0
21 * to control registers on the MPs to enable performance counters,
22 * and to control the warp error enable mask (OpenGL requires out of
23 * bounds access to local memory to be silently ignored / return 0).
24 * 1.1.2:
25 * - fixes multiple bugs in flip completion events and timestamping
26 * 1.2.0:
27 * - object api exposed to userspace
28 * - fermi,kepler,maxwell zbc
29 * 1.2.1:
30 * - allow concurrent access to bo's mapped read/write.
31 * 1.2.2:
32 * - add NOUVEAU_GEM_DOMAIN_COHERENT flag
33 * 1.3.0:
34 * - NVIF ABI modified, safe because only (current) users are test
35 * programs that get directly linked with NVKM.
36 * 1.3.1:
37 * - implemented limited ABI16/NVIF interop
38 */
39
40 #include <linux/notifier.h>
41
42 #include <nvif/client.h>
43 #include <nvif/device.h>
44 #include <nvif/ioctl.h>
45 #include <nvif/mmu.h>
46
47 #include <drm/drmP.h>
48
49 #include <drm/ttm/ttm_bo_api.h>
50 #include <drm/ttm/ttm_bo_driver.h>
51 #include <drm/ttm/ttm_placement.h>
52 #include <drm/ttm/ttm_memory.h>
53 #include <drm/ttm/ttm_module.h>
54 #include <drm/ttm/ttm_page_alloc.h>
55
56 #include "uapi/drm/nouveau_drm.h"
57
58 struct nouveau_channel;
59 struct platform_device;
60
61 #define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)
62
63 #include "nouveau_fence.h"
64 #include "nouveau_bios.h"
65 #include "nouveau_vmm.h"
66
67 struct nouveau_drm_tile {
68 struct nouveau_fence *fence;
69 bool used;
70 };
71
72 enum nouveau_drm_object_route {
73 NVDRM_OBJECT_NVIF = NVIF_IOCTL_V0_OWNER_NVIF,
74 NVDRM_OBJECT_USIF,
75 NVDRM_OBJECT_ABI16,
76 NVDRM_OBJECT_ANY = NVIF_IOCTL_V0_OWNER_ANY,
77 };
78
79 enum nouveau_drm_notify_route {
80 NVDRM_NOTIFY_NVIF = 0,
81 NVDRM_NOTIFY_USIF
82 };
83
84 enum nouveau_drm_handle {
85 NVDRM_CHAN = 0xcccc0000, /* |= client chid */
86 NVDRM_NVSW = 0x55550000,
87 };
88
89 struct nouveau_cli {
90 struct nvif_client base;
91 struct nouveau_drm *drm;
92 struct mutex mutex;
93
94 struct nvif_device device;
95 struct nvif_mmu mmu;
96 struct nouveau_vmm vmm;
97
98 struct nvkm_vm *vm;
99 struct list_head head;
100 void *abi16;
101 struct list_head objects;
102 struct list_head notifys;
103 char name[32];
104
105 struct mutex lock;
106 };
107
108 static inline struct nouveau_cli *
109 nouveau_cli(struct drm_file *fpriv)
110 {
111 return fpriv ? fpriv->driver_priv : NULL;
112 }
113
114 #include <nvif/object.h>
115 #include <nvif/device.h>
116
117 struct nouveau_drm {
118 struct nouveau_cli master;
119 struct nouveau_cli client;
120 struct drm_device *dev;
121
122 struct list_head clients;
123
124 struct {
125 struct agp_bridge_data *bridge;
126 u32 base;
127 u32 size;
128 bool cma;
129 } agp;
130
131 /* TTM interface support */
132 struct {
133 struct drm_global_reference mem_global_ref;
134 struct ttm_bo_global_ref bo_global_ref;
135 struct ttm_bo_device bdev;
136 atomic_t validate_sequence;
137 int (*move)(struct nouveau_channel *,
138 struct ttm_buffer_object *,
139 struct ttm_mem_reg *, struct ttm_mem_reg *);
140 struct nouveau_channel *chan;
141 struct nvif_object copy;
142 int mtrr;
143 } ttm;
144
145 /* GEM interface support */
146 struct {
147 u64 vram_available;
148 u64 gart_available;
149 } gem;
150
151 /* synchronisation */
152 void *fence;
153
154 /* context for accelerated drm-internal operations */
155 struct nouveau_channel *cechan;
156 struct nouveau_channel *channel;
157 struct nvkm_gpuobj *notify;
158 struct nouveau_fbdev *fbcon;
159 struct nvif_object nvsw;
160 struct nvif_object ntfy;
161 struct nvif_notify flip;
162
163 /* nv10-nv40 tiling regions */
164 struct {
165 struct nouveau_drm_tile reg[15];
166 spinlock_t lock;
167 } tile;
168
169 /* modesetting */
170 struct nvbios vbios;
171 struct nouveau_display *display;
172 struct backlight_device *backlight;
173 struct list_head bl_connectors;
174 struct work_struct hpd_work;
175 struct work_struct fbcon_work;
176 int fbcon_new_state;
177 #ifdef CONFIG_ACPI
178 struct notifier_block acpi_nb;
179 #endif
180
181 /* power management */
182 struct nouveau_hwmon *hwmon;
183 struct nouveau_debugfs *debugfs;
184
185 /* led management */
186 struct nouveau_led *led;
187
188 /* display power reference */
189 bool have_disp_power_ref;
190
191 struct dev_pm_domain vga_pm_domain;
192 struct pci_dev *hdmi_device;
193 };
194
195 static inline struct nouveau_drm *
196 nouveau_drm(struct drm_device *dev)
197 {
198 return dev->dev_private;
199 }
200
201 int nouveau_pmops_suspend(struct device *);
202 int nouveau_pmops_resume(struct device *);
203 bool nouveau_pmops_runtime(void);
204
205 #include <nvkm/core/tegra.h>
206
207 struct drm_device *
208 nouveau_platform_device_create(const struct nvkm_device_tegra_func *,
209 struct platform_device *, struct nvkm_device **);
210 void nouveau_drm_device_remove(struct drm_device *dev);
211
212 #define NV_PRINTK(l,c,f,a...) do { \
213 struct nouveau_cli *_cli = (c); \
214 dev_##l(_cli->drm->dev->dev, "%s: "f, _cli->name, ##a); \
215 } while(0)
216 #define NV_FATAL(drm,f,a...) NV_PRINTK(crit, &(drm)->client, f, ##a)
217 #define NV_ERROR(drm,f,a...) NV_PRINTK(err, &(drm)->client, f, ##a)
218 #define NV_WARN(drm,f,a...) NV_PRINTK(warn, &(drm)->client, f, ##a)
219 #define NV_INFO(drm,f,a...) NV_PRINTK(info, &(drm)->client, f, ##a)
220 #define NV_DEBUG(drm,f,a...) do { \
221 if (unlikely(drm_debug & DRM_UT_DRIVER)) \
222 NV_PRINTK(info, &(drm)->client, f, ##a); \
223 } while(0)
224 #define NV_ATOMIC(drm,f,a...) do { \
225 if (unlikely(drm_debug & DRM_UT_ATOMIC)) \
226 NV_PRINTK(info, &(drm)->client, f, ##a); \
227 } while(0)
228
229 extern int nouveau_modeset;
230
231 #endif