blob: a11b6aaed325f17ddf6f82c8fd8ced531191574a [file] [log] [blame]
Ben Skeggs4dc28132016-05-20 09:22:55 +10001#ifndef __NOUVEAU_DRV_H__
2#define __NOUVEAU_DRV_H__
Ben Skeggs94580292012-07-06 12:14:00 +10003
Ben Skeggs77145f12012-07-31 16:16:21 +10004#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
Ben Skeggsa3c1ff82015-08-20 14:54:23 +100012#define DRIVER_MINOR 3
Ben Skeggs79ef5dc2015-11-03 12:40:13 +100013#define DRIVER_PATCHLEVEL 1
Christoph Bumiller142c21b2013-03-27 22:25:52 +010014
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).
Mario Kleiner7820e5e2014-08-06 06:09:44 +020024 * 1.1.2:
25 * - fixes multiple bugs in flip completion events and timestamping
Ben Skeggs27111a22014-08-10 04:10:31 +100026 * 1.2.0:
27 * - object api exposed to userspace
28 * - fermi,kepler,maxwell zbc
Maarten Lankhorst055dffd2014-09-10 16:15:23 +020029 * 1.2.1:
30 * - allow concurrent access to bo's mapped read/write.
Ben Skeggs82452752015-03-04 10:17:08 +100031 * 1.2.2:
32 * - add NOUVEAU_GEM_DOMAIN_COHERENT flag
Ben Skeggsa3c1ff82015-08-20 14:54:23 +100033 * 1.3.0:
34 * - NVIF ABI modified, safe because only (current) users are test
35 * programs that get directly linked with NVKM.
Ben Skeggs79ef5dc2015-11-03 12:40:13 +100036 * 1.3.1:
37 * - implemented limited ABI16/NVIF interop
Christoph Bumiller142c21b2013-03-27 22:25:52 +010038 */
Ben Skeggs77145f12012-07-31 16:16:21 +100039
Hans de Goede3a6536c2016-11-09 18:17:44 +010040#include <linux/notifier.h>
41
Ben Skeggs0ad72862014-08-10 04:10:22 +100042#include <nvif/client.h>
43#include <nvif/device.h>
Ben Skeggsf5e55182015-11-24 15:34:51 +100044#include <nvif/ioctl.h>
Ben Skeggs0ad72862014-08-10 04:10:22 +100045
Ben Skeggs94580292012-07-06 12:14:00 +100046#include <drmP.h>
Ben Skeggs94580292012-07-06 12:14:00 +100047
Linus Torvalds612a9aa2012-10-03 23:29:23 -070048#include <drm/ttm/ttm_bo_api.h>
49#include <drm/ttm/ttm_bo_driver.h>
50#include <drm/ttm/ttm_placement.h>
51#include <drm/ttm/ttm_memory.h>
52#include <drm/ttm/ttm_module.h>
53#include <drm/ttm/ttm_page_alloc.h>
Ben Skeggsebb945a2012-07-20 08:17:34 +100054
Ben Skeggsa4e610b2014-08-10 04:10:23 +100055#include "uapi/drm/nouveau_drm.h"
56
Ben Skeggsebb945a2012-07-20 08:17:34 +100057struct nouveau_channel;
Alexandre Courbot8ba9ff12014-06-26 14:33:32 +090058struct platform_device;
Ben Skeggsebb945a2012-07-20 08:17:34 +100059
60#define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)
61
Ben Skeggsebb945a2012-07-20 08:17:34 +100062#include "nouveau_fence.h"
Ben Skeggs77145f12012-07-31 16:16:21 +100063#include "nouveau_bios.h"
Ben Skeggsebb945a2012-07-20 08:17:34 +100064
65struct nouveau_drm_tile {
66 struct nouveau_fence *fence;
67 bool used;
68};
69
Ben Skeggs0ad72862014-08-10 04:10:22 +100070enum nouveau_drm_object_route {
Ben Skeggsf5e55182015-11-24 15:34:51 +100071 NVDRM_OBJECT_NVIF = NVIF_IOCTL_V0_OWNER_NVIF,
Ben Skeggs0ad72862014-08-10 04:10:22 +100072 NVDRM_OBJECT_USIF,
73 NVDRM_OBJECT_ABI16,
Ben Skeggsf5e55182015-11-24 15:34:51 +100074 NVDRM_OBJECT_ANY = NVIF_IOCTL_V0_OWNER_ANY,
Ben Skeggs0ad72862014-08-10 04:10:22 +100075};
76
77enum nouveau_drm_notify_route {
78 NVDRM_NOTIFY_NVIF = 0,
79 NVDRM_NOTIFY_USIF
80};
81
Ben Skeggs94580292012-07-06 12:14:00 +100082enum nouveau_drm_handle {
Ben Skeggs26fdd782013-10-15 11:52:56 +100083 NVDRM_CHAN = 0xcccc0000, /* |= client chid */
Ben Skeggs69a61462013-11-13 10:58:51 +100084 NVDRM_NVSW = 0x55550000,
Ben Skeggs94580292012-07-06 12:14:00 +100085};
86
87struct nouveau_cli {
Ben Skeggs0ad72862014-08-10 04:10:22 +100088 struct nvif_client base;
Ben Skeggs20d8a882016-05-18 13:36:34 +100089 struct drm_device *dev;
90 struct mutex mutex;
91
Ben Skeggs1167c6b2016-05-18 13:57:42 +100092 struct nvif_device device;
93
Ben Skeggsbe83cd42015-01-14 15:36:34 +100094 struct nvkm_vm *vm; /*XXX*/
Ben Skeggs94580292012-07-06 12:14:00 +100095 struct list_head head;
Ben Skeggsebb945a2012-07-20 08:17:34 +100096 void *abi16;
Ben Skeggs27111a22014-08-10 04:10:31 +100097 struct list_head objects;
98 struct list_head notifys;
Ben Skeggs9ad97ed2015-08-20 14:54:13 +100099 char name[32];
Ben Skeggs94580292012-07-06 12:14:00 +1000100};
101
Ben Skeggsebb945a2012-07-20 08:17:34 +1000102static inline struct nouveau_cli *
103nouveau_cli(struct drm_file *fpriv)
104{
105 return fpriv ? fpriv->driver_priv : NULL;
106}
107
Ben Skeggs967e7bd2014-08-10 04:10:22 +1000108#include <nvif/object.h>
Ben Skeggs967e7bd2014-08-10 04:10:22 +1000109#include <nvif/device.h>
Ben Skeggsdb2bec12014-08-10 04:10:22 +1000110
Ben Skeggs94580292012-07-06 12:14:00 +1000111struct nouveau_drm {
112 struct nouveau_cli client;
113 struct drm_device *dev;
114
Ben Skeggs94580292012-07-06 12:14:00 +1000115 struct list_head clients;
Ben Skeggscb75d972012-07-11 10:44:20 +1000116
117 struct {
Ben Skeggs340b0e72015-08-20 14:54:23 +1000118 struct agp_bridge_data *bridge;
Ben Skeggscb75d972012-07-11 10:44:20 +1000119 u32 base;
120 u32 size;
Ben Skeggs340b0e72015-08-20 14:54:23 +1000121 bool cma;
Ben Skeggscb75d972012-07-11 10:44:20 +1000122 } agp;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000123
124 /* TTM interface support */
125 struct {
126 struct drm_global_reference mem_global_ref;
127 struct ttm_bo_global_ref bo_global_ref;
128 struct ttm_bo_device bdev;
129 atomic_t validate_sequence;
130 int (*move)(struct nouveau_channel *,
131 struct ttm_buffer_object *,
132 struct ttm_mem_reg *, struct ttm_mem_reg *);
Ben Skeggs1bb3f6a2013-07-08 10:40:35 +1000133 struct nouveau_channel *chan;
Ben Skeggs0ad72862014-08-10 04:10:22 +1000134 struct nvif_object copy;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000135 int mtrr;
136 } ttm;
137
138 /* GEM interface support */
139 struct {
140 u64 vram_available;
141 u64 gart_available;
142 } gem;
143
144 /* synchronisation */
145 void *fence;
146
147 /* context for accelerated drm-internal operations */
Ben Skeggs49981042012-08-06 19:38:25 +1000148 struct nouveau_channel *cechan;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000149 struct nouveau_channel *channel;
Ben Skeggsbe83cd42015-01-14 15:36:34 +1000150 struct nvkm_gpuobj *notify;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000151 struct nouveau_fbdev *fbcon;
Ben Skeggs0ad72862014-08-10 04:10:22 +1000152 struct nvif_object nvsw;
153 struct nvif_object ntfy;
Ben Skeggs898a2b32015-08-20 14:54:18 +1000154 struct nvif_notify flip;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000155
156 /* nv10-nv40 tiling regions */
157 struct {
158 struct nouveau_drm_tile reg[15];
159 spinlock_t lock;
160 } tile;
Ben Skeggs51a3d342012-07-26 09:12:47 +1000161
Ben Skeggs77145f12012-07-31 16:16:21 +1000162 /* modesetting */
163 struct nvbios vbios;
164 struct nouveau_display *display;
Ben Skeggs51a3d342012-07-26 09:12:47 +1000165 struct backlight_device *backlight;
Pierre Moreaudb1a0ae22016-12-08 00:57:08 +0100166 struct list_head bl_connectors;
Hans de Goede81280d02016-11-21 17:50:54 +0100167 struct work_struct hpd_work;
Lyude Paul15266ae2017-01-11 21:25:24 -0500168 struct work_struct fbcon_work;
169 int fbcon_new_state;
Hans de Goede3a6536c2016-11-09 18:17:44 +0100170#ifdef CONFIG_ACPI
171 struct notifier_block acpi_nb;
Hans de Goede3a6536c2016-11-09 18:17:44 +0100172#endif
Ben Skeggs77145f12012-07-31 16:16:21 +1000173
174 /* power management */
Ben Skeggsb9ed9192013-10-15 09:44:02 +1000175 struct nouveau_hwmon *hwmon;
Karol Herbstb126a202015-07-30 11:52:23 +0200176 struct nouveau_debugfs *debugfs;
Dave Airlie5addcf02012-09-10 14:20:51 +1000177
Martin Peres8d021d72016-08-25 03:57:07 +0300178 /* led management */
179 struct nouveau_led *led;
180
Dave Airlie5addcf02012-09-10 14:20:51 +1000181 /* display power reference */
182 bool have_disp_power_ref;
183
184 struct dev_pm_domain vga_pm_domain;
185 struct pci_dev *hdmi_device;
Ben Skeggs94580292012-07-06 12:14:00 +1000186};
187
Ben Skeggsebb945a2012-07-20 08:17:34 +1000188static inline struct nouveau_drm *
189nouveau_drm(struct drm_device *dev)
190{
Ben Skeggs77145f12012-07-31 16:16:21 +1000191 return dev->dev_private;
192}
193
Dave Airlie2d8b9cc2012-11-02 11:04:28 +1000194int nouveau_pmops_suspend(struct device *);
195int nouveau_pmops_resume(struct device *);
Ben Skeggs321f5c52017-06-02 14:38:07 +1000196bool nouveau_pmops_runtime(void);
Ben Skeggs94580292012-07-06 12:14:00 +1000197
Alexandre Courbote396ecd2015-09-04 19:59:31 +0900198#include <nvkm/core/tegra.h>
199
Alexandre Courbot8ba9ff12014-06-26 14:33:32 +0900200struct drm_device *
Alexandre Courbote396ecd2015-09-04 19:59:31 +0900201nouveau_platform_device_create(const struct nvkm_device_tegra_func *,
202 struct platform_device *, struct nvkm_device **);
Alexandre Courbot8ba9ff12014-06-26 14:33:32 +0900203void nouveau_drm_device_remove(struct drm_device *dev);
204
Ben Skeggsfa2bade2014-08-10 04:10:22 +1000205#define NV_PRINTK(l,c,f,a...) do { \
206 struct nouveau_cli *_cli = (c); \
Ben Skeggs9ad97ed2015-08-20 14:54:13 +1000207 dev_##l(_cli->dev->dev, "%s: "f, _cli->name, ##a); \
Ben Skeggsfa2bade2014-08-10 04:10:22 +1000208} while(0)
Ben Skeggs9ad97ed2015-08-20 14:54:13 +1000209#define NV_FATAL(drm,f,a...) NV_PRINTK(crit, &(drm)->client, f, ##a)
210#define NV_ERROR(drm,f,a...) NV_PRINTK(err, &(drm)->client, f, ##a)
Ben Skeggsfa2bade2014-08-10 04:10:22 +1000211#define NV_WARN(drm,f,a...) NV_PRINTK(warn, &(drm)->client, f, ##a)
212#define NV_INFO(drm,f,a...) NV_PRINTK(info, &(drm)->client, f, ##a)
Ben Skeggs9ad97ed2015-08-20 14:54:13 +1000213#define NV_DEBUG(drm,f,a...) do { \
214 if (unlikely(drm_debug & DRM_UT_DRIVER)) \
215 NV_PRINTK(info, &(drm)->client, f, ##a); \
216} while(0)
Ben Skeggs3dbd0362016-11-04 17:20:36 +1000217#define NV_ATOMIC(drm,f,a...) do { \
218 if (unlikely(drm_debug & DRM_UT_ATOMIC)) \
219 NV_PRINTK(info, &(drm)->client, f, ##a); \
220} while(0)
Ben Skeggs94580292012-07-06 12:14:00 +1000221
Ben Skeggs94307382012-10-31 12:11:15 +1000222extern int nouveau_modeset;
223
Ben Skeggs94580292012-07-06 12:14:00 +1000224#endif