]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/nouveau/nouveau_drm.h
drm/nouveau/sw/nv04: replace direct context access with GetRef method
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / nouveau / nouveau_drm.h
CommitLineData
94580299
BS
1#ifndef __NOUVEAU_DRMCLI_H__
2#define __NOUVEAU_DRMCLI_H__
3
77145f1c
BS
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"
9#define DRIVER_DATE "20120801"
10
11#define DRIVER_MAJOR 1
27111a23 12#define DRIVER_MINOR 2
82452755 13#define DRIVER_PATCHLEVEL 2
142c21b8
CB
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).
7820e5ee
MK
24 * 1.1.2:
25 * - fixes multiple bugs in flip completion events and timestamping
27111a23
BS
26 * 1.2.0:
27 * - object api exposed to userspace
28 * - fermi,kepler,maxwell zbc
055dffdf
ML
29 * 1.2.1:
30 * - allow concurrent access to bo's mapped read/write.
82452755
BS
31 * 1.2.2:
32 * - add NOUVEAU_GEM_DOMAIN_COHERENT flag
142c21b8 33 */
77145f1c 34
0ad72863
BS
35#include <nvif/client.h>
36#include <nvif/device.h>
37
94580299 38#include <drmP.h>
94580299 39
612a9aab
LT
40#include <drm/ttm/ttm_bo_api.h>
41#include <drm/ttm/ttm_bo_driver.h>
42#include <drm/ttm/ttm_placement.h>
43#include <drm/ttm/ttm_memory.h>
44#include <drm/ttm/ttm_module.h>
45#include <drm/ttm/ttm_page_alloc.h>
ebb945a9 46
a4e610b5
BS
47#include "uapi/drm/nouveau_drm.h"
48
ebb945a9 49struct nouveau_channel;
8ba9ff11 50struct platform_device;
ebb945a9
BS
51
52#define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)
53
ebb945a9 54#include "nouveau_fence.h"
77145f1c 55#include "nouveau_bios.h"
ebb945a9
BS
56
57struct nouveau_drm_tile {
58 struct nouveau_fence *fence;
59 bool used;
60};
61
0ad72863
BS
62enum nouveau_drm_object_route {
63 NVDRM_OBJECT_NVIF = 0,
64 NVDRM_OBJECT_USIF,
65 NVDRM_OBJECT_ABI16,
66};
67
68enum nouveau_drm_notify_route {
69 NVDRM_NOTIFY_NVIF = 0,
70 NVDRM_NOTIFY_USIF
71};
72
94580299 73enum nouveau_drm_handle {
26fdd78c
BS
74 NVDRM_CLIENT = 0xffffffff,
75 NVDRM_DEVICE = 0xdddddddd,
76 NVDRM_CONTROL = 0xdddddddc,
2332b311 77 NVDRM_DISPLAY = 0xd1500000,
26fdd78c
BS
78 NVDRM_PUSH = 0xbbbb0000, /* |= client chid */
79 NVDRM_CHAN = 0xcccc0000, /* |= client chid */
69a6146d 80 NVDRM_NVSW = 0x55550000,
94580299
BS
81};
82
83struct nouveau_cli {
0ad72863 84 struct nvif_client base;
be83cd4e 85 struct nvkm_vm *vm; /*XXX*/
94580299
BS
86 struct list_head head;
87 struct mutex mutex;
ebb945a9 88 void *abi16;
27111a23
BS
89 struct list_head objects;
90 struct list_head notifys;
9ad97ede
BS
91 char name[32];
92 struct drm_device *dev;
94580299
BS
93};
94
ebb945a9
BS
95static inline struct nouveau_cli *
96nouveau_cli(struct drm_file *fpriv)
97{
98 return fpriv ? fpriv->driver_priv : NULL;
99}
100
967e7bde 101#include <nvif/object.h>
967e7bde 102#include <nvif/device.h>
db2bec18 103
5addcf0a
DA
104extern int nouveau_runtime_pm;
105
94580299
BS
106struct nouveau_drm {
107 struct nouveau_cli client;
108 struct drm_device *dev;
109
967e7bde 110 struct nvif_device device;
94580299 111 struct list_head clients;
cb75d97e
BS
112
113 struct {
114 enum {
115 UNKNOWN = 0,
116 DISABLE = 1,
117 ENABLED = 2
118 } stat;
119 u32 base;
120 u32 size;
121 } agp;
ebb945a9
BS
122
123 /* TTM interface support */
124 struct {
125 struct drm_global_reference mem_global_ref;
126 struct ttm_bo_global_ref bo_global_ref;
127 struct ttm_bo_device bdev;
128 atomic_t validate_sequence;
129 int (*move)(struct nouveau_channel *,
130 struct ttm_buffer_object *,
131 struct ttm_mem_reg *, struct ttm_mem_reg *);
1bb3f6a2 132 struct nouveau_channel *chan;
0ad72863 133 struct nvif_object copy;
ebb945a9
BS
134 int mtrr;
135 } ttm;
136
137 /* GEM interface support */
138 struct {
139 u64 vram_available;
140 u64 gart_available;
141 } gem;
142
143 /* synchronisation */
144 void *fence;
145
146 /* context for accelerated drm-internal operations */
49981046 147 struct nouveau_channel *cechan;
ebb945a9 148 struct nouveau_channel *channel;
be83cd4e 149 struct nvkm_gpuobj *notify;
ebb945a9 150 struct nouveau_fbdev *fbcon;
0ad72863
BS
151 struct nvif_object nvsw;
152 struct nvif_object ntfy;
ebb945a9
BS
153
154 /* nv10-nv40 tiling regions */
155 struct {
156 struct nouveau_drm_tile reg[15];
157 spinlock_t lock;
158 } tile;
51a3d342 159
77145f1c
BS
160 /* modesetting */
161 struct nvbios vbios;
162 struct nouveau_display *display;
51a3d342 163 struct backlight_device *backlight;
77145f1c
BS
164
165 /* power management */
b9ed919f 166 struct nouveau_hwmon *hwmon;
26fdd78c 167 struct nouveau_sysfs *sysfs;
5addcf0a
DA
168
169 /* display power reference */
170 bool have_disp_power_ref;
171
172 struct dev_pm_domain vga_pm_domain;
173 struct pci_dev *hdmi_device;
94580299
BS
174};
175
ebb945a9
BS
176static inline struct nouveau_drm *
177nouveau_drm(struct drm_device *dev)
178{
77145f1c
BS
179 return dev->dev_private;
180}
181
2d8b9ccb
DA
182int nouveau_pmops_suspend(struct device *);
183int nouveau_pmops_resume(struct device *);
94580299 184
8ba9ff11 185struct drm_device *
47b2505e 186nouveau_platform_device_create(struct platform_device *, struct nvkm_device **);
8ba9ff11
AC
187void nouveau_drm_device_remove(struct drm_device *dev);
188
fa2bade9
BS
189#define NV_PRINTK(l,c,f,a...) do { \
190 struct nouveau_cli *_cli = (c); \
9ad97ede 191 dev_##l(_cli->dev->dev, "%s: "f, _cli->name, ##a); \
fa2bade9 192} while(0)
9ad97ede
BS
193#define NV_FATAL(drm,f,a...) NV_PRINTK(crit, &(drm)->client, f, ##a)
194#define NV_ERROR(drm,f,a...) NV_PRINTK(err, &(drm)->client, f, ##a)
fa2bade9
BS
195#define NV_WARN(drm,f,a...) NV_PRINTK(warn, &(drm)->client, f, ##a)
196#define NV_INFO(drm,f,a...) NV_PRINTK(info, &(drm)->client, f, ##a)
9ad97ede
BS
197#define NV_DEBUG(drm,f,a...) do { \
198 if (unlikely(drm_debug & DRM_UT_DRIVER)) \
199 NV_PRINTK(info, &(drm)->client, f, ##a); \
200} while(0)
94580299 201
9430738d
BS
202extern int nouveau_modeset;
203
94580299 204#endif