nouveau_drv.h 6.93 KB
Newer Older
1
/* SPDX-License-Identifier: MIT */
2 3
#ifndef __NOUVEAU_DRV_H__
#define __NOUVEAU_DRV_H__
4

5 6 7 8
#define DRIVER_AUTHOR		"Nouveau Project"
#define DRIVER_EMAIL		"nouveau@lists.freedesktop.org"

#define DRIVER_NAME		"nouveau"
9
#define DRIVER_DESC		"nVidia Riva/TNT/GeForce/Quadro/Tesla/Tegra K1+"
10 11 12
#define DRIVER_DATE		"20120801"

#define DRIVER_MAJOR		1
13
#define DRIVER_MINOR		3
14
#define DRIVER_PATCHLEVEL	1
15 16 17 18 19 20 21 22 23 24

/*
 * 1.1.1:
 * 	- added support for tiled system memory buffer objects
 *      - added support for NOUVEAU_GETPARAM_GRAPH_UNITS on [nvc0,nve0].
 *      - added support for compressed memory storage types on [nvc0,nve0].
 *      - added support for software methods 0x600,0x644,0x6ac on nvc0
 *        to control registers on the MPs to enable performance counters,
 *        and to control the warp error enable mask (OpenGL requires out of
 *        bounds access to local memory to be silently ignored / return 0).
25 26
 * 1.1.2:
 *      - fixes multiple bugs in flip completion events and timestamping
27 28 29
 * 1.2.0:
 * 	- object api exposed to userspace
 * 	- fermi,kepler,maxwell zbc
30 31
 * 1.2.1:
 *      - allow concurrent access to bo's mapped read/write.
32 33
 * 1.2.2:
 *      - add NOUVEAU_GEM_DOMAIN_COHERENT flag
34 35 36
 * 1.3.0:
 *      - NVIF ABI modified, safe because only (current) users are test
 *        programs that get directly linked with NVKM.
37 38
 * 1.3.1:
 *      - implemented limited ABI16/NVIF interop
39
 */
40

41 42
#include <linux/notifier.h>

43 44
#include <nvif/client.h>
#include <nvif/device.h>
45
#include <nvif/ioctl.h>
46
#include <nvif/mmu.h>
47
#include <nvif/vmm.h>
48

49 50 51 52
#include <drm/drm_connector.h>
#include <drm/drm_device.h>
#include <drm/drm_drv.h>
#include <drm/drm_file.h>
53

54
#include <drm/ttm/ttm_bo.h>
55
#include <drm/ttm/ttm_placement.h>
56

57 58
#include <drm/drm_audio_component.h>

59 60
#include "uapi/drm/nouveau_drm.h"

61
struct nouveau_channel;
62
struct platform_device;
63 64

#include "nouveau_fence.h"
65
#include "nouveau_bios.h"
66
#include "nouveau_vmm.h"
67 68 69 70 71 72

struct nouveau_drm_tile {
	struct nouveau_fence *fence;
	bool used;
};

73
enum nouveau_drm_object_route {
74
	NVDRM_OBJECT_NVIF = NVIF_IOCTL_V0_OWNER_NVIF,
75 76
	NVDRM_OBJECT_USIF,
	NVDRM_OBJECT_ABI16,
77
	NVDRM_OBJECT_ANY = NVIF_IOCTL_V0_OWNER_ANY,
78 79
};

80
enum nouveau_drm_handle {
81
	NVDRM_CHAN    = 0xcccc0000, /* |= client chid */
82
	NVDRM_NVSW    = 0x55550000,
83 84 85
};

struct nouveau_cli {
86
	struct nvif_client base;
87
	struct nouveau_drm *drm;
88 89
	struct mutex mutex;

90
	struct nvif_device device;
91
	struct nvif_mmu mmu;
92
	struct nouveau_vmm vmm;
93
	struct nouveau_vmm svm;
94
	const struct nvif_mclass *mem;
95

96
	struct list_head head;
97
	void *abi16;
98
	struct list_head objects;
99
	char name[32];
100

101 102
	struct work_struct work;
	struct list_head worker;
103
	struct mutex lock;
104 105
};

106 107 108 109 110 111 112 113 114 115 116 117
struct nouveau_cli_work {
	void (*func)(struct nouveau_cli_work *);
	struct nouveau_cli *cli;
	struct list_head head;

	struct dma_fence *fence;
	struct dma_fence_cb cb;
};

void nouveau_cli_work_queue(struct nouveau_cli *, struct dma_fence *,
			    struct nouveau_cli_work *);

118 119 120 121 122 123
static inline struct nouveau_cli *
nouveau_cli(struct drm_file *fpriv)
{
	return fpriv ? fpriv->driver_priv : NULL;
}

124
#include <nvif/object.h>
125
#include <nvif/parent.h>
126

127
struct nouveau_drm {
128
	struct nvif_parent parent;
129
	struct nouveau_cli master;
130 131 132 133
	struct nouveau_cli client;
	struct drm_device *dev;

	struct list_head clients;
134

135 136 137 138 139
	/**
	 * @clients_lock: Protects access to the @clients list of &struct nouveau_cli.
	 */
	struct mutex clients_lock;

140 141
	u8 old_pm_cap;

142
	struct {
143
		struct agp_bridge_data *bridge;
144 145
		u32 base;
		u32 size;
146
		bool cma;
147
	} agp;
148 149 150

	/* TTM interface support */
	struct {
151
		struct ttm_device bdev;
152 153 154
		atomic_t validate_sequence;
		int (*move)(struct nouveau_channel *,
			    struct ttm_buffer_object *,
155
			    struct ttm_resource *, struct ttm_resource *);
156
		struct nouveau_channel *chan;
157
		struct nvif_object copy;
158
		int mtrr;
159
		int type_vram;
160 161
		int type_host[2];
		int type_ncoh[2];
162 163
		struct mutex io_reserve_mutex;
		struct list_head io_reserve_lru;
164 165 166 167 168 169 170 171 172 173 174
	} ttm;

	/* GEM interface support */
	struct {
		u64 vram_available;
		u64 gart_available;
	} gem;

	/* synchronisation */
	void *fence;

175
	/* Global channel management. */
176 177 178
	int chan_total; /* Number of channels across all runlists. */
	int chan_nr;	/* 0 if per-runlist CHIDs. */
	int runl_nr;
179
	struct {
180 181
		int chan_nr;
		int chan_id_base;
182
		u64 context_base;
183
	} *runl;
184

185
	/* context for accelerated drm-internal operations */
186
	struct nouveau_channel *cechan;
187
	struct nouveau_channel *channel;
188
	struct nvkm_gpuobj *notify;
189
	struct nvif_object ntfy;
190 191 192 193 194 195

	/* nv10-nv40 tiling regions */
	struct {
		struct nouveau_drm_tile reg[15];
		spinlock_t lock;
	} tile;
196

197 198 199
	/* modesetting */
	struct nvbios vbios;
	struct nouveau_display *display;
200
	struct work_struct hpd_work;
201
	spinlock_t hpd_lock;
202
	u32 hpd_pending;
203 204 205
#ifdef CONFIG_ACPI
	struct notifier_block acpi_nb;
#endif
206 207

	/* power management */
208
	struct nouveau_hwmon *hwmon;
209
	struct nouveau_debugfs *debugfs;
210

211 212 213
	/* led management */
	struct nouveau_led *led;

214
	struct dev_pm_domain vga_pm_domain;
215 216

	struct nouveau_svm *svm;
217 218

	struct nouveau_dmem *dmem;
219 220 221

	struct {
		struct drm_audio_component *component;
222
		struct mutex lock;
223 224
		bool component_registered;
	} audio;
225 226
};

227 228 229
static inline struct nouveau_drm *
nouveau_drm(struct drm_device *dev)
{
230 231 232
	return dev->dev_private;
}

233 234 235 236 237 238 239
static inline bool
nouveau_drm_use_coherent_gpu_mapping(struct nouveau_drm *drm)
{
	struct nvif_mmu *mmu = &drm->client.mmu;
	return !(mmu->type[drm->ttm.type_host[0]].type & NVIF_MEM_UNCACHED);
}

240 241
int nouveau_pmops_suspend(struct device *);
int nouveau_pmops_resume(struct device *);
242
bool nouveau_pmops_runtime(void);
243

244 245
#include <nvkm/core/tegra.h>

246
struct drm_device *
247 248
nouveau_platform_device_create(const struct nvkm_device_tegra_func *,
			       struct platform_device *, struct nvkm_device **);
249 250
void nouveau_drm_device_remove(struct drm_device *dev);

251 252
#define NV_PRINTK(l,c,f,a...) do {                                             \
	struct nouveau_cli *_cli = (c);                                        \
253
	dev_##l(_cli->drm->dev->dev, "%s: "f, _cli->name, ##a);                \
254
} while(0)
255

256 257
#define NV_FATAL(drm,f,a...) NV_PRINTK(crit, &(drm)->client, f, ##a)
#define NV_ERROR(drm,f,a...) NV_PRINTK(err, &(drm)->client, f, ##a)
258 259
#define NV_WARN(drm,f,a...) NV_PRINTK(warn, &(drm)->client, f, ##a)
#define NV_INFO(drm,f,a...) NV_PRINTK(info, &(drm)->client, f, ##a)
260

261
#define NV_DEBUG(drm,f,a...) do {                                              \
262
	if (drm_debug_enabled(DRM_UT_DRIVER))                                  \
263 264
		NV_PRINTK(info, &(drm)->client, f, ##a);                       \
} while(0)
265
#define NV_ATOMIC(drm,f,a...) do {                                             \
266
	if (drm_debug_enabled(DRM_UT_ATOMIC))                                  \
267 268
		NV_PRINTK(info, &(drm)->client, f, ##a);                       \
} while(0)
269

270 271 272 273 274 275
#define NV_PRINTK_ONCE(l,c,f,a...) NV_PRINTK(l##_once,c,f, ##a)

#define NV_ERROR_ONCE(drm,f,a...) NV_PRINTK_ONCE(err, &(drm)->client, f, ##a)
#define NV_WARN_ONCE(drm,f,a...) NV_PRINTK_ONCE(warn, &(drm)->client, f, ##a)
#define NV_INFO_ONCE(drm,f,a...) NV_PRINTK_ONCE(info, &(drm)->client, f, ##a)

276 277
extern int nouveau_modeset;

278
#endif