Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Ben Skeggs | 4dc2813 | 2016-05-20 09:22:55 +1000 | [diff] [blame] | 2 | #ifndef __NOUVEAU_DRV_H__ |
| 3 | #define __NOUVEAU_DRV_H__ |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 4 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 5 | #define DRIVER_AUTHOR "Nouveau Project" |
| 6 | #define DRIVER_EMAIL "nouveau@lists.freedesktop.org" |
| 7 | |
| 8 | #define DRIVER_NAME "nouveau" |
Rhys Kidd | 451b58d | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 9 | #define DRIVER_DESC "nVidia Riva/TNT/GeForce/Quadro/Tesla/Tegra K1+" |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 10 | #define DRIVER_DATE "20120801" |
| 11 | |
| 12 | #define DRIVER_MAJOR 1 |
Ben Skeggs | a3c1ff8 | 2015-08-20 14:54:23 +1000 | [diff] [blame] | 13 | #define DRIVER_MINOR 3 |
Ben Skeggs | 79ef5dc | 2015-11-03 12:40:13 +1000 | [diff] [blame] | 14 | #define DRIVER_PATCHLEVEL 1 |
Christoph Bumiller | 142c21b | 2013-03-27 22:25:52 +0100 | [diff] [blame] | 15 | |
| 16 | /* |
| 17 | * 1.1.1: |
| 18 | * - added support for tiled system memory buffer objects |
| 19 | * - added support for NOUVEAU_GETPARAM_GRAPH_UNITS on [nvc0,nve0]. |
| 20 | * - added support for compressed memory storage types on [nvc0,nve0]. |
| 21 | * - added support for software methods 0x600,0x644,0x6ac on nvc0 |
| 22 | * to control registers on the MPs to enable performance counters, |
| 23 | * and to control the warp error enable mask (OpenGL requires out of |
| 24 | * bounds access to local memory to be silently ignored / return 0). |
Mario Kleiner | 7820e5e | 2014-08-06 06:09:44 +0200 | [diff] [blame] | 25 | * 1.1.2: |
| 26 | * - fixes multiple bugs in flip completion events and timestamping |
Ben Skeggs | 27111a2 | 2014-08-10 04:10:31 +1000 | [diff] [blame] | 27 | * 1.2.0: |
| 28 | * - object api exposed to userspace |
| 29 | * - fermi,kepler,maxwell zbc |
Maarten Lankhorst | 055dffd | 2014-09-10 16:15:23 +0200 | [diff] [blame] | 30 | * 1.2.1: |
| 31 | * - allow concurrent access to bo's mapped read/write. |
Ben Skeggs | 8245275 | 2015-03-04 10:17:08 +1000 | [diff] [blame] | 32 | * 1.2.2: |
| 33 | * - add NOUVEAU_GEM_DOMAIN_COHERENT flag |
Ben Skeggs | a3c1ff8 | 2015-08-20 14:54:23 +1000 | [diff] [blame] | 34 | * 1.3.0: |
| 35 | * - NVIF ABI modified, safe because only (current) users are test |
| 36 | * programs that get directly linked with NVKM. |
Ben Skeggs | 79ef5dc | 2015-11-03 12:40:13 +1000 | [diff] [blame] | 37 | * 1.3.1: |
| 38 | * - implemented limited ABI16/NVIF interop |
Christoph Bumiller | 142c21b | 2013-03-27 22:25:52 +0100 | [diff] [blame] | 39 | */ |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 40 | |
Hans de Goede | 3a6536c | 2016-11-09 18:17:44 +0100 | [diff] [blame] | 41 | #include <linux/notifier.h> |
| 42 | |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 43 | #include <nvif/client.h> |
| 44 | #include <nvif/device.h> |
Ben Skeggs | f5e5518 | 2015-11-24 15:34:51 +1000 | [diff] [blame] | 45 | #include <nvif/ioctl.h> |
Ben Skeggs | 01670a7 | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 46 | #include <nvif/mmu.h> |
Ben Skeggs | 96da0bc | 2017-11-01 03:56:20 +1000 | [diff] [blame] | 47 | #include <nvif/vmm.h> |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 48 | |
Masahiro Yamada | ae95621 | 2017-04-24 13:50:29 +0900 | [diff] [blame] | 49 | #include <drm/drmP.h> |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 50 | |
Linus Torvalds | 612a9aa | 2012-10-03 23:29:23 -0700 | [diff] [blame] | 51 | #include <drm/ttm/ttm_bo_api.h> |
| 52 | #include <drm/ttm/ttm_bo_driver.h> |
| 53 | #include <drm/ttm/ttm_placement.h> |
| 54 | #include <drm/ttm/ttm_memory.h> |
| 55 | #include <drm/ttm/ttm_module.h> |
| 56 | #include <drm/ttm/ttm_page_alloc.h> |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 57 | |
Ben Skeggs | a4e610b | 2014-08-10 04:10:23 +1000 | [diff] [blame] | 58 | #include "uapi/drm/nouveau_drm.h" |
| 59 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 60 | struct nouveau_channel; |
Alexandre Courbot | 8ba9ff1 | 2014-06-26 14:33:32 +0900 | [diff] [blame] | 61 | struct platform_device; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 62 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 63 | #include "nouveau_fence.h" |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 64 | #include "nouveau_bios.h" |
Ben Skeggs | 24e8375 | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 65 | #include "nouveau_vmm.h" |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 66 | |
| 67 | struct nouveau_drm_tile { |
| 68 | struct nouveau_fence *fence; |
| 69 | bool used; |
| 70 | }; |
| 71 | |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 72 | enum nouveau_drm_object_route { |
Ben Skeggs | f5e5518 | 2015-11-24 15:34:51 +1000 | [diff] [blame] | 73 | NVDRM_OBJECT_NVIF = NVIF_IOCTL_V0_OWNER_NVIF, |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 74 | NVDRM_OBJECT_USIF, |
| 75 | NVDRM_OBJECT_ABI16, |
Ben Skeggs | f5e5518 | 2015-11-24 15:34:51 +1000 | [diff] [blame] | 76 | NVDRM_OBJECT_ANY = NVIF_IOCTL_V0_OWNER_ANY, |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 77 | }; |
| 78 | |
| 79 | enum nouveau_drm_notify_route { |
| 80 | NVDRM_NOTIFY_NVIF = 0, |
| 81 | NVDRM_NOTIFY_USIF |
| 82 | }; |
| 83 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 84 | enum nouveau_drm_handle { |
Ben Skeggs | 26fdd78 | 2013-10-15 11:52:56 +1000 | [diff] [blame] | 85 | NVDRM_CHAN = 0xcccc0000, /* |= client chid */ |
Ben Skeggs | 69a6146 | 2013-11-13 10:58:51 +1000 | [diff] [blame] | 86 | NVDRM_NVSW = 0x55550000, |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 87 | }; |
| 88 | |
| 89 | struct nouveau_cli { |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 90 | struct nvif_client base; |
Ben Skeggs | e75c091 | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 91 | struct nouveau_drm *drm; |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 92 | struct mutex mutex; |
| 93 | |
Ben Skeggs | 1167c6b | 2016-05-18 13:57:42 +1000 | [diff] [blame] | 94 | struct nvif_device device; |
Ben Skeggs | 01670a7 | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 95 | struct nvif_mmu mmu; |
Ben Skeggs | 24e8375 | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 96 | struct nouveau_vmm vmm; |
Ben Skeggs | bfe91af | 2019-02-19 17:21:48 +1000 | [diff] [blame] | 97 | struct nouveau_vmm svm; |
Ben Skeggs | 7f50762 | 2017-11-01 03:56:20 +1000 | [diff] [blame] | 98 | const struct nvif_mclass *mem; |
Ben Skeggs | 1167c6b | 2016-05-18 13:57:42 +1000 | [diff] [blame] | 99 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 100 | struct list_head head; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 101 | void *abi16; |
Ben Skeggs | 27111a2 | 2014-08-10 04:10:31 +1000 | [diff] [blame] | 102 | struct list_head objects; |
| 103 | struct list_head notifys; |
Ben Skeggs | 9ad97ed | 2015-08-20 14:54:13 +1000 | [diff] [blame] | 104 | char name[32]; |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 105 | |
Ben Skeggs | 814a232 | 2017-11-01 03:56:20 +1000 | [diff] [blame] | 106 | struct work_struct work; |
| 107 | struct list_head worker; |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 108 | struct mutex lock; |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 109 | }; |
| 110 | |
Ben Skeggs | 814a232 | 2017-11-01 03:56:20 +1000 | [diff] [blame] | 111 | struct nouveau_cli_work { |
| 112 | void (*func)(struct nouveau_cli_work *); |
| 113 | struct nouveau_cli *cli; |
| 114 | struct list_head head; |
| 115 | |
| 116 | struct dma_fence *fence; |
| 117 | struct dma_fence_cb cb; |
| 118 | }; |
| 119 | |
| 120 | void nouveau_cli_work_queue(struct nouveau_cli *, struct dma_fence *, |
| 121 | struct nouveau_cli_work *); |
| 122 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 123 | static inline struct nouveau_cli * |
| 124 | nouveau_cli(struct drm_file *fpriv) |
| 125 | { |
| 126 | return fpriv ? fpriv->driver_priv : NULL; |
| 127 | } |
| 128 | |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 129 | #include <nvif/object.h> |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 130 | #include <nvif/device.h> |
Ben Skeggs | db2bec1 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 131 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 132 | struct nouveau_drm { |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 133 | struct nouveau_cli master; |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 134 | struct nouveau_cli client; |
| 135 | struct drm_device *dev; |
| 136 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 137 | struct list_head clients; |
Ben Skeggs | cb75d97 | 2012-07-11 10:44:20 +1000 | [diff] [blame] | 138 | |
| 139 | struct { |
Ben Skeggs | 340b0e7 | 2015-08-20 14:54:23 +1000 | [diff] [blame] | 140 | struct agp_bridge_data *bridge; |
Ben Skeggs | cb75d97 | 2012-07-11 10:44:20 +1000 | [diff] [blame] | 141 | u32 base; |
| 142 | u32 size; |
Ben Skeggs | 340b0e7 | 2015-08-20 14:54:23 +1000 | [diff] [blame] | 143 | bool cma; |
Ben Skeggs | cb75d97 | 2012-07-11 10:44:20 +1000 | [diff] [blame] | 144 | } agp; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 145 | |
| 146 | /* TTM interface support */ |
| 147 | struct { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 148 | struct ttm_bo_device bdev; |
| 149 | atomic_t validate_sequence; |
| 150 | int (*move)(struct nouveau_channel *, |
| 151 | struct ttm_buffer_object *, |
| 152 | struct ttm_mem_reg *, struct ttm_mem_reg *); |
Ben Skeggs | 1bb3f6a | 2013-07-08 10:40:35 +1000 | [diff] [blame] | 153 | struct nouveau_channel *chan; |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 154 | struct nvif_object copy; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 155 | int mtrr; |
Ben Skeggs | 658c71f | 2017-11-01 03:56:20 +1000 | [diff] [blame] | 156 | int type_vram; |
Ben Skeggs | 74a3995 | 2017-12-14 11:19:27 +1000 | [diff] [blame] | 157 | int type_host[2]; |
| 158 | int type_ncoh[2]; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 159 | } ttm; |
| 160 | |
| 161 | /* GEM interface support */ |
| 162 | struct { |
| 163 | u64 vram_available; |
| 164 | u64 gart_available; |
| 165 | } gem; |
| 166 | |
| 167 | /* synchronisation */ |
| 168 | void *fence; |
| 169 | |
Ben Skeggs | eb47db4 | 2018-05-08 20:39:46 +1000 | [diff] [blame] | 170 | /* Global channel management. */ |
| 171 | struct { |
| 172 | int nr; |
| 173 | u64 context_base; |
| 174 | } chan; |
| 175 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 176 | /* context for accelerated drm-internal operations */ |
Ben Skeggs | 4998104 | 2012-08-06 19:38:25 +1000 | [diff] [blame] | 177 | struct nouveau_channel *cechan; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 178 | struct nouveau_channel *channel; |
Ben Skeggs | be83cd4 | 2015-01-14 15:36:34 +1000 | [diff] [blame] | 179 | struct nvkm_gpuobj *notify; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 180 | struct nouveau_fbdev *fbcon; |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 181 | struct nvif_object nvsw; |
| 182 | struct nvif_object ntfy; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 183 | |
| 184 | /* nv10-nv40 tiling regions */ |
| 185 | struct { |
| 186 | struct nouveau_drm_tile reg[15]; |
| 187 | spinlock_t lock; |
| 188 | } tile; |
Ben Skeggs | 51a3d34 | 2012-07-26 09:12:47 +1000 | [diff] [blame] | 189 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 190 | /* modesetting */ |
| 191 | struct nvbios vbios; |
| 192 | struct nouveau_display *display; |
Hans de Goede | 81280d0 | 2016-11-21 17:50:54 +0100 | [diff] [blame] | 193 | struct work_struct hpd_work; |
Lyude Paul | 15266ae | 2017-01-11 21:25:24 -0500 | [diff] [blame] | 194 | struct work_struct fbcon_work; |
| 195 | int fbcon_new_state; |
Hans de Goede | 3a6536c | 2016-11-09 18:17:44 +0100 | [diff] [blame] | 196 | #ifdef CONFIG_ACPI |
| 197 | struct notifier_block acpi_nb; |
Hans de Goede | 3a6536c | 2016-11-09 18:17:44 +0100 | [diff] [blame] | 198 | #endif |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 199 | |
| 200 | /* power management */ |
Ben Skeggs | b9ed919 | 2013-10-15 09:44:02 +1000 | [diff] [blame] | 201 | struct nouveau_hwmon *hwmon; |
Karol Herbst | b126a20 | 2015-07-30 11:52:23 +0200 | [diff] [blame] | 202 | struct nouveau_debugfs *debugfs; |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 203 | |
Martin Peres | 8d021d7 | 2016-08-25 03:57:07 +0300 | [diff] [blame] | 204 | /* led management */ |
| 205 | struct nouveau_led *led; |
| 206 | |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 207 | /* display power reference */ |
| 208 | bool have_disp_power_ref; |
| 209 | |
| 210 | struct dev_pm_domain vga_pm_domain; |
Ben Skeggs | eeaf06ac | 2018-07-05 12:57:12 +1000 | [diff] [blame] | 211 | |
| 212 | struct nouveau_svm *svm; |
Jérôme Glisse | 5be73b6 | 2018-07-26 17:59:13 -0400 | [diff] [blame] | 213 | |
| 214 | struct nouveau_dmem *dmem; |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 215 | }; |
| 216 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 217 | static inline struct nouveau_drm * |
| 218 | nouveau_drm(struct drm_device *dev) |
| 219 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 220 | return dev->dev_private; |
| 221 | } |
| 222 | |
Ben Skeggs | 74a3995 | 2017-12-14 11:19:27 +1000 | [diff] [blame] | 223 | static inline bool |
| 224 | nouveau_drm_use_coherent_gpu_mapping(struct nouveau_drm *drm) |
| 225 | { |
| 226 | struct nvif_mmu *mmu = &drm->client.mmu; |
| 227 | return !(mmu->type[drm->ttm.type_host[0]].type & NVIF_MEM_UNCACHED); |
| 228 | } |
| 229 | |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 230 | int nouveau_pmops_suspend(struct device *); |
| 231 | int nouveau_pmops_resume(struct device *); |
Ben Skeggs | 321f5c5 | 2017-06-02 14:38:07 +1000 | [diff] [blame] | 232 | bool nouveau_pmops_runtime(void); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 233 | |
Alexandre Courbot | e396ecd | 2015-09-04 19:59:31 +0900 | [diff] [blame] | 234 | #include <nvkm/core/tegra.h> |
| 235 | |
Alexandre Courbot | 8ba9ff1 | 2014-06-26 14:33:32 +0900 | [diff] [blame] | 236 | struct drm_device * |
Alexandre Courbot | e396ecd | 2015-09-04 19:59:31 +0900 | [diff] [blame] | 237 | nouveau_platform_device_create(const struct nvkm_device_tegra_func *, |
| 238 | struct platform_device *, struct nvkm_device **); |
Alexandre Courbot | 8ba9ff1 | 2014-06-26 14:33:32 +0900 | [diff] [blame] | 239 | void nouveau_drm_device_remove(struct drm_device *dev); |
| 240 | |
Ben Skeggs | fa2bade | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 241 | #define NV_PRINTK(l,c,f,a...) do { \ |
| 242 | struct nouveau_cli *_cli = (c); \ |
Ben Skeggs | e75c091 | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 243 | dev_##l(_cli->drm->dev->dev, "%s: "f, _cli->name, ##a); \ |
Ben Skeggs | fa2bade | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 244 | } while(0) |
Lyude Paul | 4c49707 | 2018-09-06 17:43:22 -0400 | [diff] [blame] | 245 | |
Ben Skeggs | 9ad97ed | 2015-08-20 14:54:13 +1000 | [diff] [blame] | 246 | #define NV_FATAL(drm,f,a...) NV_PRINTK(crit, &(drm)->client, f, ##a) |
| 247 | #define NV_ERROR(drm,f,a...) NV_PRINTK(err, &(drm)->client, f, ##a) |
Ben Skeggs | fa2bade | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 248 | #define NV_WARN(drm,f,a...) NV_PRINTK(warn, &(drm)->client, f, ##a) |
| 249 | #define NV_INFO(drm,f,a...) NV_PRINTK(info, &(drm)->client, f, ##a) |
Lyude Paul | 4c49707 | 2018-09-06 17:43:22 -0400 | [diff] [blame] | 250 | |
Ben Skeggs | 9ad97ed | 2015-08-20 14:54:13 +1000 | [diff] [blame] | 251 | #define NV_DEBUG(drm,f,a...) do { \ |
| 252 | if (unlikely(drm_debug & DRM_UT_DRIVER)) \ |
| 253 | NV_PRINTK(info, &(drm)->client, f, ##a); \ |
| 254 | } while(0) |
Ben Skeggs | 3dbd036 | 2016-11-04 17:20:36 +1000 | [diff] [blame] | 255 | #define NV_ATOMIC(drm,f,a...) do { \ |
| 256 | if (unlikely(drm_debug & DRM_UT_ATOMIC)) \ |
| 257 | NV_PRINTK(info, &(drm)->client, f, ##a); \ |
| 258 | } while(0) |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 259 | |
Lyude Paul | 4c49707 | 2018-09-06 17:43:22 -0400 | [diff] [blame] | 260 | #define NV_PRINTK_ONCE(l,c,f,a...) NV_PRINTK(l##_once,c,f, ##a) |
| 261 | |
| 262 | #define NV_ERROR_ONCE(drm,f,a...) NV_PRINTK_ONCE(err, &(drm)->client, f, ##a) |
| 263 | #define NV_WARN_ONCE(drm,f,a...) NV_PRINTK_ONCE(warn, &(drm)->client, f, ##a) |
| 264 | #define NV_INFO_ONCE(drm,f,a...) NV_PRINTK_ONCE(info, &(drm)->client, f, ##a) |
| 265 | |
Ben Skeggs | 9430738 | 2012-10-31 12:11:15 +1000 | [diff] [blame] | 266 | extern int nouveau_modeset; |
| 267 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 268 | #endif |