blob: 029e9b6568bdf710d3a6ac75c0cce0de8ab4563c [file] [log] [blame]
Ben Skeggs94580292012-07-06 12:14:00 +10001#ifndef __NOUVEAU_DRMCLI_H__
2#define __NOUVEAU_DRMCLI_H__
3
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
12#define DRIVER_MINOR 1
Mario Kleiner7820e5e2014-08-06 06:09:44 +020013#define DRIVER_PATCHLEVEL 2
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
Christoph Bumiller142c21b2013-03-27 22:25:52 +010026 */
Ben Skeggs77145f12012-07-31 16:16:21 +100027
Ben Skeggs94580292012-07-06 12:14:00 +100028#include <core/client.h>
Ben Skeggs1d7c71a2013-01-31 09:23:34 +100029#include <core/event.h>
Ben Skeggs94580292012-07-06 12:14:00 +100030
Ben Skeggsebb945a2012-07-20 08:17:34 +100031#include <subdev/vm.h>
32
Ben Skeggs94580292012-07-06 12:14:00 +100033#include <drmP.h>
34#include <drm/nouveau_drm.h>
35
Linus Torvalds612a9aa2012-10-03 23:29:23 -070036#include <drm/ttm/ttm_bo_api.h>
37#include <drm/ttm/ttm_bo_driver.h>
38#include <drm/ttm/ttm_placement.h>
39#include <drm/ttm/ttm_memory.h>
40#include <drm/ttm/ttm_module.h>
41#include <drm/ttm/ttm_page_alloc.h>
Ben Skeggsebb945a2012-07-20 08:17:34 +100042
43struct nouveau_channel;
Alexandre Courbot8ba9ff12014-06-26 14:33:32 +090044struct platform_device;
Ben Skeggsebb945a2012-07-20 08:17:34 +100045
46#define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)
47
Ben Skeggsebb945a2012-07-20 08:17:34 +100048#include "nouveau_fence.h"
Ben Skeggs77145f12012-07-31 16:16:21 +100049#include "nouveau_bios.h"
Ben Skeggsebb945a2012-07-20 08:17:34 +100050
51struct nouveau_drm_tile {
52 struct nouveau_fence *fence;
53 bool used;
54};
55
Ben Skeggs94580292012-07-06 12:14:00 +100056enum nouveau_drm_handle {
Ben Skeggs26fdd782013-10-15 11:52:56 +100057 NVDRM_CLIENT = 0xffffffff,
58 NVDRM_DEVICE = 0xdddddddd,
59 NVDRM_CONTROL = 0xdddddddc,
Ben Skeggs2332b312014-01-22 12:58:12 +100060 NVDRM_DISPLAY = 0xd1500000,
Ben Skeggs26fdd782013-10-15 11:52:56 +100061 NVDRM_PUSH = 0xbbbb0000, /* |= client chid */
62 NVDRM_CHAN = 0xcccc0000, /* |= client chid */
Ben Skeggs69a61462013-11-13 10:58:51 +100063 NVDRM_NVSW = 0x55550000,
Ben Skeggs94580292012-07-06 12:14:00 +100064};
65
66struct nouveau_cli {
67 struct nouveau_client base;
68 struct list_head head;
69 struct mutex mutex;
Ben Skeggsebb945a2012-07-20 08:17:34 +100070 void *abi16;
Ben Skeggs94580292012-07-06 12:14:00 +100071};
72
Ben Skeggsebb945a2012-07-20 08:17:34 +100073static inline struct nouveau_cli *
74nouveau_cli(struct drm_file *fpriv)
75{
76 return fpriv ? fpriv->driver_priv : NULL;
77}
78
Dave Airlie5addcf02012-09-10 14:20:51 +100079extern int nouveau_runtime_pm;
80
Ben Skeggs94580292012-07-06 12:14:00 +100081struct nouveau_drm {
82 struct nouveau_cli client;
83 struct drm_device *dev;
84
85 struct nouveau_object *device;
86 struct list_head clients;
Ben Skeggscb75d972012-07-11 10:44:20 +100087
88 struct {
89 enum {
90 UNKNOWN = 0,
91 DISABLE = 1,
92 ENABLED = 2
93 } stat;
94 u32 base;
95 u32 size;
96 } agp;
Ben Skeggsebb945a2012-07-20 08:17:34 +100097
98 /* TTM interface support */
99 struct {
100 struct drm_global_reference mem_global_ref;
101 struct ttm_bo_global_ref bo_global_ref;
102 struct ttm_bo_device bdev;
103 atomic_t validate_sequence;
104 int (*move)(struct nouveau_channel *,
105 struct ttm_buffer_object *,
106 struct ttm_mem_reg *, struct ttm_mem_reg *);
Ben Skeggs1bb3f6a2013-07-08 10:40:35 +1000107 struct nouveau_channel *chan;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000108 int mtrr;
109 } ttm;
110
111 /* GEM interface support */
112 struct {
113 u64 vram_available;
114 u64 gart_available;
115 } gem;
116
117 /* synchronisation */
118 void *fence;
119
120 /* context for accelerated drm-internal operations */
Ben Skeggs49981042012-08-06 19:38:25 +1000121 struct nouveau_channel *cechan;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000122 struct nouveau_channel *channel;
123 struct nouveau_gpuobj *notify;
124 struct nouveau_fbdev *fbcon;
125
126 /* nv10-nv40 tiling regions */
127 struct {
128 struct nouveau_drm_tile reg[15];
129 spinlock_t lock;
130 } tile;
Ben Skeggs51a3d342012-07-26 09:12:47 +1000131
Ben Skeggs77145f12012-07-31 16:16:21 +1000132 /* modesetting */
133 struct nvbios vbios;
134 struct nouveau_display *display;
Ben Skeggs51a3d342012-07-26 09:12:47 +1000135 struct backlight_device *backlight;
Ben Skeggs77145f12012-07-31 16:16:21 +1000136
137 /* power management */
Ben Skeggsb9ed9192013-10-15 09:44:02 +1000138 struct nouveau_hwmon *hwmon;
Ben Skeggs26fdd782013-10-15 11:52:56 +1000139 struct nouveau_sysfs *sysfs;
Dave Airlie5addcf02012-09-10 14:20:51 +1000140
141 /* display power reference */
142 bool have_disp_power_ref;
143
144 struct dev_pm_domain vga_pm_domain;
145 struct pci_dev *hdmi_device;
Ben Skeggs94580292012-07-06 12:14:00 +1000146};
147
Ben Skeggsebb945a2012-07-20 08:17:34 +1000148static inline struct nouveau_drm *
149nouveau_drm(struct drm_device *dev)
150{
Ben Skeggs77145f12012-07-31 16:16:21 +1000151 return dev->dev_private;
152}
153
154static inline struct nouveau_device *
155nouveau_dev(struct drm_device *dev)
156{
157 return nv_device(nouveau_drm(dev)->device);
Ben Skeggsebb945a2012-07-20 08:17:34 +1000158}
159
Dave Airlie2d8b9cc2012-11-02 11:04:28 +1000160int nouveau_pmops_suspend(struct device *);
161int nouveau_pmops_resume(struct device *);
Ben Skeggs94580292012-07-06 12:14:00 +1000162
Alexandre Courbot8ba9ff12014-06-26 14:33:32 +0900163#define nouveau_platform_device_create(p, u) \
164 nouveau_platform_device_create_(p, sizeof(**u), (void **)u)
165struct drm_device *
166nouveau_platform_device_create_(struct platform_device *pdev,
167 int size, void **pobject);
168void nouveau_drm_device_remove(struct drm_device *dev);
169
Ben Skeggsaa74c372012-09-12 13:38:13 +1000170#define NV_FATAL(cli, fmt, args...) nv_fatal((cli), fmt, ##args)
171#define NV_ERROR(cli, fmt, args...) nv_error((cli), fmt, ##args)
172#define NV_WARN(cli, fmt, args...) nv_warn((cli), fmt, ##args)
173#define NV_INFO(cli, fmt, args...) nv_info((cli), fmt, ##args)
Ilia Mirkinc33e05a2014-02-13 21:35:14 -0500174#define NV_DEBUG(cli, fmt, args...) nv_debug((cli), fmt, ##args)
Ben Skeggs94580292012-07-06 12:14:00 +1000175
Ben Skeggs94307382012-10-31 12:11:15 +1000176extern int nouveau_modeset;
177
Ben Skeggs94580292012-07-06 12:14:00 +1000178#endif