Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Red Hat Inc. |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice shall be included in |
| 12 | * all copies or substantial portions of the Software. |
| 13 | * |
| 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 17 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 18 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 19 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 20 | * OTHER DEALINGS IN THE SOFTWARE. |
| 21 | * |
| 22 | * Authors: Ben Skeggs |
| 23 | */ |
| 24 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 25 | #include <linux/console.h> |
Lukas Wunner | c5fd936 | 2015-04-19 17:18:01 +0200 | [diff] [blame] | 26 | #include <linux/delay.h> |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 27 | #include <linux/module.h> |
| 28 | #include <linux/pci.h> |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 29 | #include <linux/pm_runtime.h> |
| 30 | #include <linux/vga_switcheroo.h> |
Ben Skeggs | fdb751e | 2014-08-10 04:10:23 +1000 | [diff] [blame] | 31 | |
Masahiro Yamada | ae95621 | 2017-04-24 13:50:29 +0900 | [diff] [blame] | 32 | #include <drm/drmP.h> |
| 33 | #include <drm/drm_crtc_helper.h> |
Ben Skeggs | fdb751e | 2014-08-10 04:10:23 +1000 | [diff] [blame] | 34 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 35 | #include <core/gpuobj.h> |
Ilia Mirkin | c33e05a | 2014-02-13 21:35:14 -0500 | [diff] [blame] | 36 | #include <core/option.h> |
Ben Skeggs | 7974dd1 | 2015-08-20 14:54:17 +1000 | [diff] [blame] | 37 | #include <core/pci.h> |
| 38 | #include <core/tegra.h> |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 39 | |
Ben Skeggs | 04b8867 | 2016-05-22 20:35:16 +1000 | [diff] [blame] | 40 | #include <nvif/driver.h> |
| 41 | |
Ben Skeggs | 923bc41 | 2015-11-08 12:23:16 +1000 | [diff] [blame] | 42 | #include <nvif/class.h> |
Ben Skeggs | 845f272 | 2015-11-08 12:16:40 +1000 | [diff] [blame] | 43 | #include <nvif/cl0002.h> |
Ben Skeggs | 8ed1730 | 2015-11-08 11:28:26 +1000 | [diff] [blame] | 44 | #include <nvif/cla06f.h> |
Ben Skeggs | 538b269 | 2015-11-08 10:34:50 +1000 | [diff] [blame] | 45 | #include <nvif/if0004.h> |
| 46 | |
Ben Skeggs | 4dc2813 | 2016-05-20 09:22:55 +1000 | [diff] [blame] | 47 | #include "nouveau_drv.h" |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 48 | #include "nouveau_dma.h" |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 49 | #include "nouveau_ttm.h" |
| 50 | #include "nouveau_gem.h" |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 51 | #include "nouveau_vga.h" |
Martin Peres | 8d021d7 | 2016-08-25 03:57:07 +0300 | [diff] [blame] | 52 | #include "nouveau_led.h" |
Ben Skeggs | b9ed919 | 2013-10-15 09:44:02 +1000 | [diff] [blame] | 53 | #include "nouveau_hwmon.h" |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 54 | #include "nouveau_acpi.h" |
| 55 | #include "nouveau_bios.h" |
| 56 | #include "nouveau_ioctl.h" |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 57 | #include "nouveau_abi16.h" |
| 58 | #include "nouveau_fbcon.h" |
| 59 | #include "nouveau_fence.h" |
Marcin Slusarz | 33b903e | 2013-02-08 21:42:13 +0100 | [diff] [blame] | 60 | #include "nouveau_debugfs.h" |
Ben Skeggs | 27111a2 | 2014-08-10 04:10:31 +1000 | [diff] [blame] | 61 | #include "nouveau_usif.h" |
Pierre Moreau | 703fa26 | 2014-08-18 22:43:24 +0200 | [diff] [blame] | 62 | #include "nouveau_connector.h" |
Alexandre Courbot | 055a65d | 2015-01-15 15:29:56 +0900 | [diff] [blame] | 63 | #include "nouveau_platform.h" |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 64 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 65 | MODULE_PARM_DESC(config, "option string to pass to driver core"); |
| 66 | static char *nouveau_config; |
| 67 | module_param_named(config, nouveau_config, charp, 0400); |
| 68 | |
| 69 | MODULE_PARM_DESC(debug, "debug string to pass to driver core"); |
| 70 | static char *nouveau_debug; |
| 71 | module_param_named(debug, nouveau_debug, charp, 0400); |
| 72 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 73 | MODULE_PARM_DESC(noaccel, "disable kernel/abi16 acceleration"); |
| 74 | static int nouveau_noaccel = 0; |
| 75 | module_param_named(noaccel, nouveau_noaccel, int, 0400); |
| 76 | |
Ben Skeggs | 9430738 | 2012-10-31 12:11:15 +1000 | [diff] [blame] | 77 | MODULE_PARM_DESC(modeset, "enable driver (default: auto, " |
| 78 | "0 = disabled, 1 = enabled, 2 = headless)"); |
| 79 | int nouveau_modeset = -1; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 80 | module_param_named(modeset, nouveau_modeset, int, 0400); |
| 81 | |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 82 | MODULE_PARM_DESC(runpm, "disable (0), force enable (1), optimus only default (-1)"); |
Ben Skeggs | 321f5c5 | 2017-06-02 14:38:07 +1000 | [diff] [blame] | 83 | static int nouveau_runtime_pm = -1; |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 84 | module_param_named(runpm, nouveau_runtime_pm, int, 0400); |
| 85 | |
David Herrmann | 915b4d1 | 2014-08-29 12:12:43 +0200 | [diff] [blame] | 86 | static struct drm_driver driver_stub; |
| 87 | static struct drm_driver driver_pci; |
| 88 | static struct drm_driver driver_platform; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 89 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 90 | static u64 |
Alexandre Courbot | 420b946 | 2014-02-17 15:17:26 +0900 | [diff] [blame] | 91 | nouveau_pci_name(struct pci_dev *pdev) |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 92 | { |
| 93 | u64 name = (u64)pci_domain_nr(pdev->bus) << 32; |
| 94 | name |= pdev->bus->number << 16; |
| 95 | name |= PCI_SLOT(pdev->devfn) << 8; |
| 96 | return name | PCI_FUNC(pdev->devfn); |
| 97 | } |
| 98 | |
Alexandre Courbot | 420b946 | 2014-02-17 15:17:26 +0900 | [diff] [blame] | 99 | static u64 |
| 100 | nouveau_platform_name(struct platform_device *platformdev) |
| 101 | { |
| 102 | return platformdev->id; |
| 103 | } |
| 104 | |
| 105 | static u64 |
| 106 | nouveau_name(struct drm_device *dev) |
| 107 | { |
| 108 | if (dev->pdev) |
| 109 | return nouveau_pci_name(dev->pdev); |
| 110 | else |
Laurent Pinchart | 76adb46 | 2016-12-18 00:01:19 +0200 | [diff] [blame] | 111 | return nouveau_platform_name(to_platform_device(dev->dev)); |
Alexandre Courbot | 420b946 | 2014-02-17 15:17:26 +0900 | [diff] [blame] | 112 | } |
| 113 | |
Ben Skeggs | 814a232 | 2017-11-01 03:56:20 +1000 | [diff] [blame^] | 114 | static inline bool |
| 115 | nouveau_cli_work_ready(struct dma_fence *fence, bool wait) |
| 116 | { |
| 117 | if (!dma_fence_is_signaled(fence)) { |
| 118 | if (!wait) |
| 119 | return false; |
| 120 | WARN_ON(dma_fence_wait_timeout(fence, false, 2 * HZ) <= 0); |
| 121 | } |
| 122 | dma_fence_put(fence); |
| 123 | return true; |
| 124 | } |
| 125 | |
| 126 | static void |
| 127 | nouveau_cli_work_flush(struct nouveau_cli *cli, bool wait) |
| 128 | { |
| 129 | struct nouveau_cli_work *work, *wtmp; |
| 130 | mutex_lock(&cli->lock); |
| 131 | list_for_each_entry_safe(work, wtmp, &cli->worker, head) { |
| 132 | if (!work->fence || nouveau_cli_work_ready(work->fence, wait)) { |
| 133 | list_del(&work->head); |
| 134 | work->func(work); |
| 135 | } |
| 136 | } |
| 137 | mutex_unlock(&cli->lock); |
| 138 | } |
| 139 | |
| 140 | static void |
| 141 | nouveau_cli_work_fence(struct dma_fence *fence, struct dma_fence_cb *cb) |
| 142 | { |
| 143 | struct nouveau_cli_work *work = container_of(cb, typeof(*work), cb); |
| 144 | schedule_work(&work->cli->work); |
| 145 | } |
| 146 | |
| 147 | void |
| 148 | nouveau_cli_work_queue(struct nouveau_cli *cli, struct dma_fence *fence, |
| 149 | struct nouveau_cli_work *work) |
| 150 | { |
| 151 | work->fence = dma_fence_get(fence); |
| 152 | work->cli = cli; |
| 153 | mutex_lock(&cli->lock); |
| 154 | list_add_tail(&work->head, &cli->worker); |
| 155 | mutex_unlock(&cli->lock); |
| 156 | if (dma_fence_add_callback(fence, &work->cb, nouveau_cli_work_fence)) |
| 157 | nouveau_cli_work_fence(fence, &work->cb); |
| 158 | } |
| 159 | |
| 160 | static void |
| 161 | nouveau_cli_work(struct work_struct *w) |
| 162 | { |
| 163 | struct nouveau_cli *cli = container_of(w, typeof(*cli), work); |
| 164 | nouveau_cli_work_flush(cli, false); |
| 165 | } |
| 166 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 167 | static void |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 168 | nouveau_cli_fini(struct nouveau_cli *cli) |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 169 | { |
Ben Skeggs | 814a232 | 2017-11-01 03:56:20 +1000 | [diff] [blame^] | 170 | nouveau_cli_work_flush(cli, true); |
Ben Skeggs | 27111a2 | 2014-08-10 04:10:31 +1000 | [diff] [blame] | 171 | usif_client_fini(cli); |
Ben Skeggs | 24e8375 | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 172 | nouveau_vmm_fini(&cli->vmm); |
Ben Skeggs | 01670a7 | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 173 | nvif_mmu_fini(&cli->mmu); |
Ben Skeggs | 1167c6b | 2016-05-18 13:57:42 +1000 | [diff] [blame] | 174 | nvif_device_fini(&cli->device); |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 175 | mutex_lock(&cli->drm->master.lock); |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 176 | nvif_client_fini(&cli->base); |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 177 | mutex_unlock(&cli->drm->master.lock); |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | static int |
| 181 | nouveau_cli_init(struct nouveau_drm *drm, const char *sname, |
| 182 | struct nouveau_cli *cli) |
| 183 | { |
Ben Skeggs | 01670a7 | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 184 | static const struct nvif_mclass |
Ben Skeggs | 7f50762 | 2017-11-01 03:56:20 +1000 | [diff] [blame] | 185 | mems[] = { |
| 186 | { NVIF_CLASS_MEM_GF100, -1 }, |
| 187 | { NVIF_CLASS_MEM_NV50 , -1 }, |
| 188 | { NVIF_CLASS_MEM_NV04 , -1 }, |
| 189 | {} |
| 190 | }; |
| 191 | static const struct nvif_mclass |
Ben Skeggs | 01670a7 | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 192 | mmus[] = { |
| 193 | { NVIF_CLASS_MMU_GF100, -1 }, |
| 194 | { NVIF_CLASS_MMU_NV50 , -1 }, |
| 195 | { NVIF_CLASS_MMU_NV04 , -1 }, |
| 196 | {} |
| 197 | }; |
Ben Skeggs | 96da0bc | 2017-11-01 03:56:20 +1000 | [diff] [blame] | 198 | static const struct nvif_mclass |
| 199 | vmms[] = { |
| 200 | { NVIF_CLASS_VMM_GP100, -1 }, |
| 201 | { NVIF_CLASS_VMM_GM200, -1 }, |
| 202 | { NVIF_CLASS_VMM_GF100, -1 }, |
| 203 | { NVIF_CLASS_VMM_NV50 , -1 }, |
| 204 | { NVIF_CLASS_VMM_NV04 , -1 }, |
| 205 | {} |
| 206 | }; |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 207 | u64 device = nouveau_name(drm->dev); |
| 208 | int ret; |
| 209 | |
| 210 | snprintf(cli->name, sizeof(cli->name), "%s", sname); |
Ben Skeggs | e75c091 | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 211 | cli->drm = drm; |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 212 | mutex_init(&cli->mutex); |
| 213 | usif_client_init(cli); |
| 214 | |
Ben Skeggs | 814a232 | 2017-11-01 03:56:20 +1000 | [diff] [blame^] | 215 | INIT_WORK(&cli->work, nouveau_cli_work); |
| 216 | INIT_LIST_HEAD(&cli->worker); |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 217 | mutex_init(&cli->lock); |
| 218 | |
| 219 | if (cli == &drm->master) { |
Ben Skeggs | 80e6097 | 2016-05-23 11:25:17 +1000 | [diff] [blame] | 220 | ret = nvif_driver_init(NULL, nouveau_config, nouveau_debug, |
| 221 | cli->name, device, &cli->base); |
| 222 | } else { |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 223 | mutex_lock(&drm->master.lock); |
| 224 | ret = nvif_client_init(&drm->master.base, cli->name, device, |
Ben Skeggs | 80e6097 | 2016-05-23 11:25:17 +1000 | [diff] [blame] | 225 | &cli->base); |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 226 | mutex_unlock(&drm->master.lock); |
Ben Skeggs | 80e6097 | 2016-05-23 11:25:17 +1000 | [diff] [blame] | 227 | } |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 228 | if (ret) { |
| 229 | NV_ERROR(drm, "Client allocation failed: %d\n", ret); |
| 230 | goto done; |
| 231 | } |
| 232 | |
Ben Skeggs | 1167c6b | 2016-05-18 13:57:42 +1000 | [diff] [blame] | 233 | ret = nvif_device_init(&cli->base.object, 0, NV_DEVICE, |
| 234 | &(struct nv_device_v0) { |
| 235 | .device = ~0, |
| 236 | }, sizeof(struct nv_device_v0), |
| 237 | &cli->device); |
| 238 | if (ret) { |
| 239 | NV_ERROR(drm, "Device allocation failed: %d\n", ret); |
| 240 | goto done; |
| 241 | } |
| 242 | |
Ben Skeggs | 01670a7 | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 243 | ret = nvif_mclass(&cli->device.object, mmus); |
| 244 | if (ret < 0) { |
| 245 | NV_ERROR(drm, "No supported MMU class\n"); |
| 246 | goto done; |
| 247 | } |
| 248 | |
| 249 | ret = nvif_mmu_init(&cli->device.object, mmus[ret].oclass, &cli->mmu); |
| 250 | if (ret) { |
| 251 | NV_ERROR(drm, "MMU allocation failed: %d\n", ret); |
| 252 | goto done; |
| 253 | } |
| 254 | |
Ben Skeggs | 96da0bc | 2017-11-01 03:56:20 +1000 | [diff] [blame] | 255 | ret = nvif_mclass(&cli->mmu.object, vmms); |
| 256 | if (ret < 0) { |
| 257 | NV_ERROR(drm, "No supported VMM class\n"); |
| 258 | goto done; |
| 259 | } |
| 260 | |
| 261 | ret = nouveau_vmm_init(cli, vmms[ret].oclass, &cli->vmm); |
| 262 | if (ret) { |
| 263 | NV_ERROR(drm, "VMM allocation failed: %d\n", ret); |
| 264 | goto done; |
| 265 | } |
| 266 | |
Ben Skeggs | 7f50762 | 2017-11-01 03:56:20 +1000 | [diff] [blame] | 267 | ret = nvif_mclass(&cli->mmu.object, mems); |
| 268 | if (ret < 0) { |
| 269 | NV_ERROR(drm, "No supported MEM class\n"); |
| 270 | goto done; |
| 271 | } |
| 272 | |
| 273 | cli->mem = &mems[ret]; |
| 274 | |
Ben Skeggs | 96da0bc | 2017-11-01 03:56:20 +1000 | [diff] [blame] | 275 | if (1) { |
| 276 | cli->vm = cli->vmm.vm; |
| 277 | nvxx_client(&cli->base)->vm = cli->vm; |
| 278 | } |
| 279 | |
Ben Skeggs | 7f50762 | 2017-11-01 03:56:20 +1000 | [diff] [blame] | 280 | return 0; |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 281 | done: |
| 282 | if (ret) |
| 283 | nouveau_cli_fini(cli); |
| 284 | return ret; |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 285 | } |
| 286 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 287 | static void |
| 288 | nouveau_accel_fini(struct nouveau_drm *drm) |
| 289 | { |
Ben Skeggs | fbd58eb | 2015-08-20 14:54:22 +1000 | [diff] [blame] | 290 | nouveau_channel_idle(drm->channel); |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 291 | nvif_object_fini(&drm->ntfy); |
Ben Skeggs | f027f49 | 2015-08-20 14:54:17 +1000 | [diff] [blame] | 292 | nvkm_gpuobj_del(&drm->notify); |
Ben Skeggs | fbd58eb | 2015-08-20 14:54:22 +1000 | [diff] [blame] | 293 | nvif_notify_fini(&drm->flip); |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 294 | nvif_object_fini(&drm->nvsw); |
Ben Skeggs | fbd58eb | 2015-08-20 14:54:22 +1000 | [diff] [blame] | 295 | nouveau_channel_del(&drm->channel); |
| 296 | |
| 297 | nouveau_channel_idle(drm->cechan); |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 298 | nvif_object_fini(&drm->ttm.copy); |
Ben Skeggs | fbd58eb | 2015-08-20 14:54:22 +1000 | [diff] [blame] | 299 | nouveau_channel_del(&drm->cechan); |
| 300 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 301 | if (drm->fence) |
| 302 | nouveau_fence(drm)->dtor(drm); |
| 303 | } |
| 304 | |
| 305 | static void |
| 306 | nouveau_accel_init(struct nouveau_drm *drm) |
| 307 | { |
Ben Skeggs | 1167c6b | 2016-05-18 13:57:42 +1000 | [diff] [blame] | 308 | struct nvif_device *device = &drm->client.device; |
Ben Skeggs | 41a6340 | 2015-08-20 14:54:16 +1000 | [diff] [blame] | 309 | struct nvif_sclass *sclass; |
Ben Skeggs | 4998104 | 2012-08-06 19:38:25 +1000 | [diff] [blame] | 310 | u32 arg0, arg1; |
Ben Skeggs | 41a6340 | 2015-08-20 14:54:16 +1000 | [diff] [blame] | 311 | int ret, i, n; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 312 | |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 313 | if (nouveau_noaccel) |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 314 | return; |
| 315 | |
| 316 | /* initialise synchronisation routines */ |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 317 | /*XXX: this is crap, but the fence/channel stuff is a little |
| 318 | * backwards in some places. this will be fixed. |
| 319 | */ |
Ben Skeggs | 41a6340 | 2015-08-20 14:54:16 +1000 | [diff] [blame] | 320 | ret = n = nvif_object_sclass_get(&device->object, &sclass); |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 321 | if (ret < 0) |
| 322 | return; |
| 323 | |
Ben Skeggs | 41a6340 | 2015-08-20 14:54:16 +1000 | [diff] [blame] | 324 | for (ret = -ENOSYS, i = 0; i < n; i++) { |
| 325 | switch (sclass[i].oclass) { |
Ben Skeggs | bbf8906 | 2014-08-10 04:10:25 +1000 | [diff] [blame] | 326 | case NV03_CHANNEL_DMA: |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 327 | ret = nv04_fence_create(drm); |
| 328 | break; |
Ben Skeggs | bbf8906 | 2014-08-10 04:10:25 +1000 | [diff] [blame] | 329 | case NV10_CHANNEL_DMA: |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 330 | ret = nv10_fence_create(drm); |
| 331 | break; |
Ben Skeggs | bbf8906 | 2014-08-10 04:10:25 +1000 | [diff] [blame] | 332 | case NV17_CHANNEL_DMA: |
| 333 | case NV40_CHANNEL_DMA: |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 334 | ret = nv17_fence_create(drm); |
| 335 | break; |
Ben Skeggs | bbf8906 | 2014-08-10 04:10:25 +1000 | [diff] [blame] | 336 | case NV50_CHANNEL_GPFIFO: |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 337 | ret = nv50_fence_create(drm); |
| 338 | break; |
Ben Skeggs | bbf8906 | 2014-08-10 04:10:25 +1000 | [diff] [blame] | 339 | case G82_CHANNEL_GPFIFO: |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 340 | ret = nv84_fence_create(drm); |
| 341 | break; |
Ben Skeggs | bbf8906 | 2014-08-10 04:10:25 +1000 | [diff] [blame] | 342 | case FERMI_CHANNEL_GPFIFO: |
| 343 | case KEPLER_CHANNEL_GPFIFO_A: |
Ben Skeggs | 63f8c9b | 2016-03-11 13:09:28 +1000 | [diff] [blame] | 344 | case KEPLER_CHANNEL_GPFIFO_B: |
Ben Skeggs | a1020af | 2015-04-14 11:47:24 +1000 | [diff] [blame] | 345 | case MAXWELL_CHANNEL_GPFIFO_A: |
Ben Skeggs | e8ff979 | 2016-07-09 10:41:01 +1000 | [diff] [blame] | 346 | case PASCAL_CHANNEL_GPFIFO_A: |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 347 | ret = nvc0_fence_create(drm); |
| 348 | break; |
| 349 | default: |
| 350 | break; |
| 351 | } |
| 352 | } |
| 353 | |
Ben Skeggs | 41a6340 | 2015-08-20 14:54:16 +1000 | [diff] [blame] | 354 | nvif_object_sclass_put(&sclass); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 355 | if (ret) { |
| 356 | NV_ERROR(drm, "failed to initialise sync subsystem, %d\n", ret); |
| 357 | nouveau_accel_fini(drm); |
| 358 | return; |
| 359 | } |
| 360 | |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 361 | if (device->info.family >= NV_DEVICE_INFO_V0_KEPLER) { |
Ben Skeggs | 1167c6b | 2016-05-18 13:57:42 +1000 | [diff] [blame] | 362 | ret = nouveau_channel_new(drm, &drm->client.device, |
Ben Skeggs | 1f5ff7f | 2016-03-11 13:09:28 +1000 | [diff] [blame] | 363 | NVA06F_V0_ENGINE_CE0 | |
| 364 | NVA06F_V0_ENGINE_CE1, |
Ben Skeggs | bbf8906 | 2014-08-10 04:10:25 +1000 | [diff] [blame] | 365 | 0, &drm->cechan); |
Ben Skeggs | 4998104 | 2012-08-06 19:38:25 +1000 | [diff] [blame] | 366 | if (ret) |
| 367 | NV_ERROR(drm, "failed to create ce channel, %d\n", ret); |
| 368 | |
Ben Skeggs | 1f5ff7f | 2016-03-11 13:09:28 +1000 | [diff] [blame] | 369 | arg0 = NVA06F_V0_ENGINE_GR; |
Ben Skeggs | 4946980 | 2012-11-22 13:43:55 +1000 | [diff] [blame] | 370 | arg1 = 1; |
Ben Skeggs | 00fc6f6 | 2013-07-09 14:20:15 +1000 | [diff] [blame] | 371 | } else |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 372 | if (device->info.chipset >= 0xa3 && |
| 373 | device->info.chipset != 0xaa && |
| 374 | device->info.chipset != 0xac) { |
Ben Skeggs | 1167c6b | 2016-05-18 13:57:42 +1000 | [diff] [blame] | 375 | ret = nouveau_channel_new(drm, &drm->client.device, |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 376 | NvDmaFB, NvDmaTT, &drm->cechan); |
Ben Skeggs | 00fc6f6 | 2013-07-09 14:20:15 +1000 | [diff] [blame] | 377 | if (ret) |
| 378 | NV_ERROR(drm, "failed to create ce channel, %d\n", ret); |
| 379 | |
| 380 | arg0 = NvDmaFB; |
| 381 | arg1 = NvDmaTT; |
Ben Skeggs | 4998104 | 2012-08-06 19:38:25 +1000 | [diff] [blame] | 382 | } else { |
| 383 | arg0 = NvDmaFB; |
| 384 | arg1 = NvDmaTT; |
| 385 | } |
| 386 | |
Ben Skeggs | 1167c6b | 2016-05-18 13:57:42 +1000 | [diff] [blame] | 387 | ret = nouveau_channel_new(drm, &drm->client.device, |
| 388 | arg0, arg1, &drm->channel); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 389 | if (ret) { |
| 390 | NV_ERROR(drm, "failed to create kernel channel, %d\n", ret); |
| 391 | nouveau_accel_fini(drm); |
| 392 | return; |
| 393 | } |
| 394 | |
Ben Skeggs | a01ca78 | 2015-08-20 14:54:15 +1000 | [diff] [blame] | 395 | ret = nvif_object_init(&drm->channel->user, NVDRM_NVSW, |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 396 | nouveau_abi16_swclass(drm), NULL, 0, &drm->nvsw); |
Ben Skeggs | 69a6146 | 2013-11-13 10:58:51 +1000 | [diff] [blame] | 397 | if (ret == 0) { |
Ben Skeggs | 69a6146 | 2013-11-13 10:58:51 +1000 | [diff] [blame] | 398 | ret = RING_SPACE(drm->channel, 2); |
| 399 | if (ret == 0) { |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 400 | if (device->info.family < NV_DEVICE_INFO_V0_FERMI) { |
Ben Skeggs | 69a6146 | 2013-11-13 10:58:51 +1000 | [diff] [blame] | 401 | BEGIN_NV04(drm->channel, NvSubSw, 0, 1); |
| 402 | OUT_RING (drm->channel, NVDRM_NVSW); |
| 403 | } else |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 404 | if (device->info.family < NV_DEVICE_INFO_V0_KEPLER) { |
Ben Skeggs | 69a6146 | 2013-11-13 10:58:51 +1000 | [diff] [blame] | 405 | BEGIN_NVC0(drm->channel, FermiSw, 0, 1); |
| 406 | OUT_RING (drm->channel, 0x001f0000); |
| 407 | } |
| 408 | } |
Ben Skeggs | 898a2b3 | 2015-08-20 14:54:18 +1000 | [diff] [blame] | 409 | |
| 410 | ret = nvif_notify_init(&drm->nvsw, nouveau_flip_complete, |
Ben Skeggs | 538b269 | 2015-11-08 10:34:50 +1000 | [diff] [blame] | 411 | false, NV04_NVSW_NTFY_UEVENT, |
| 412 | NULL, 0, 0, &drm->flip); |
Ben Skeggs | 898a2b3 | 2015-08-20 14:54:18 +1000 | [diff] [blame] | 413 | if (ret == 0) |
| 414 | ret = nvif_notify_get(&drm->flip); |
| 415 | if (ret) { |
| 416 | nouveau_accel_fini(drm); |
| 417 | return; |
| 418 | } |
Ben Skeggs | 69a6146 | 2013-11-13 10:58:51 +1000 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | if (ret) { |
| 422 | NV_ERROR(drm, "failed to allocate software object, %d\n", ret); |
| 423 | nouveau_accel_fini(drm); |
| 424 | return; |
| 425 | } |
| 426 | |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 427 | if (device->info.family < NV_DEVICE_INFO_V0_FERMI) { |
Ben Skeggs | 1167c6b | 2016-05-18 13:57:42 +1000 | [diff] [blame] | 428 | ret = nvkm_gpuobj_new(nvxx_device(&drm->client.device), 32, 0, |
| 429 | false, NULL, &drm->notify); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 430 | if (ret) { |
| 431 | NV_ERROR(drm, "failed to allocate notifier, %d\n", ret); |
| 432 | nouveau_accel_fini(drm); |
| 433 | return; |
| 434 | } |
| 435 | |
Ben Skeggs | a01ca78 | 2015-08-20 14:54:15 +1000 | [diff] [blame] | 436 | ret = nvif_object_init(&drm->channel->user, NvNotify0, |
Ben Skeggs | 4acfd70 | 2014-08-10 04:10:24 +1000 | [diff] [blame] | 437 | NV_DMA_IN_MEMORY, |
| 438 | &(struct nv_dma_v0) { |
| 439 | .target = NV_DMA_V0_TARGET_VRAM, |
| 440 | .access = NV_DMA_V0_ACCESS_RDWR, |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 441 | .start = drm->notify->addr, |
| 442 | .limit = drm->notify->addr + 31 |
Ben Skeggs | 4acfd70 | 2014-08-10 04:10:24 +1000 | [diff] [blame] | 443 | }, sizeof(struct nv_dma_v0), |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 444 | &drm->ntfy); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 445 | if (ret) { |
| 446 | nouveau_accel_fini(drm); |
| 447 | return; |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | |
Ben Skeggs | 4998104 | 2012-08-06 19:38:25 +1000 | [diff] [blame] | 452 | nouveau_bo_move_init(drm); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 453 | } |
| 454 | |
Greg Kroah-Hartman | 56550d9 | 2012-12-21 15:09:25 -0800 | [diff] [blame] | 455 | static int nouveau_drm_probe(struct pci_dev *pdev, |
| 456 | const struct pci_device_id *pent) |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 457 | { |
Ben Skeggs | be83cd4 | 2015-01-14 15:36:34 +1000 | [diff] [blame] | 458 | struct nvkm_device *device; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 459 | struct apertures_struct *aper; |
| 460 | bool boot = false; |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 461 | int ret; |
| 462 | |
Lukas Wunner | b00e533 | 2016-05-31 11:13:27 +0200 | [diff] [blame] | 463 | if (vga_switcheroo_client_probe_defer(pdev)) |
Lukas Wunner | 98b3a34 | 2016-01-11 20:09:20 +0100 | [diff] [blame] | 464 | return -EPROBE_DEFER; |
| 465 | |
Ben Skeggs | 0e67bed | 2016-07-12 11:57:07 +1000 | [diff] [blame] | 466 | /* We need to check that the chipset is supported before booting |
| 467 | * fbdev off the hardware, as there's no way to put it back. |
| 468 | */ |
| 469 | ret = nvkm_device_pci_new(pdev, NULL, "error", true, false, 0, &device); |
| 470 | if (ret) |
| 471 | return ret; |
| 472 | |
| 473 | nvkm_device_del(&device); |
| 474 | |
| 475 | /* Remove conflicting drivers (vesafb, efifb etc). */ |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 476 | aper = alloc_apertures(3); |
| 477 | if (!aper) |
| 478 | return -ENOMEM; |
| 479 | |
| 480 | aper->ranges[0].base = pci_resource_start(pdev, 1); |
| 481 | aper->ranges[0].size = pci_resource_len(pdev, 1); |
| 482 | aper->count = 1; |
| 483 | |
| 484 | if (pci_resource_len(pdev, 2)) { |
| 485 | aper->ranges[aper->count].base = pci_resource_start(pdev, 2); |
| 486 | aper->ranges[aper->count].size = pci_resource_len(pdev, 2); |
| 487 | aper->count++; |
| 488 | } |
| 489 | |
| 490 | if (pci_resource_len(pdev, 3)) { |
| 491 | aper->ranges[aper->count].base = pci_resource_start(pdev, 3); |
| 492 | aper->ranges[aper->count].size = pci_resource_len(pdev, 3); |
| 493 | aper->count++; |
| 494 | } |
| 495 | |
| 496 | #ifdef CONFIG_X86 |
| 497 | boot = pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW; |
| 498 | #endif |
Ben Skeggs | 771fa0e | 2014-08-10 04:10:31 +1000 | [diff] [blame] | 499 | if (nouveau_modeset != 2) |
Daniel Vetter | 44adece | 2016-08-10 18:52:34 +0200 | [diff] [blame] | 500 | drm_fb_helper_remove_conflicting_framebuffers(aper, "nouveaufb", boot); |
Tommi Rantala | 83ef777 | 2012-11-09 09:19:40 +0000 | [diff] [blame] | 501 | kfree(aper); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 502 | |
Ben Skeggs | 7974dd1 | 2015-08-20 14:54:17 +1000 | [diff] [blame] | 503 | ret = nvkm_device_pci_new(pdev, nouveau_config, nouveau_debug, |
| 504 | true, true, ~0ULL, &device); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 505 | if (ret) |
| 506 | return ret; |
| 507 | |
| 508 | pci_set_master(pdev); |
| 509 | |
David Herrmann | 915b4d1 | 2014-08-29 12:12:43 +0200 | [diff] [blame] | 510 | ret = drm_get_pci_dev(pdev, pent, &driver_pci); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 511 | if (ret) { |
Ben Skeggs | e781dc8 | 2015-08-20 14:54:15 +1000 | [diff] [blame] | 512 | nvkm_device_del(&device); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 513 | return ret; |
| 514 | } |
| 515 | |
| 516 | return 0; |
| 517 | } |
| 518 | |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 519 | #define PCI_CLASS_MULTIMEDIA_HD_AUDIO 0x0403 |
| 520 | |
| 521 | static void |
Ilia Mirkin | 46941b0 | 2014-02-13 03:39:50 -0500 | [diff] [blame] | 522 | nouveau_get_hdmi_dev(struct nouveau_drm *drm) |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 523 | { |
Ilia Mirkin | 46941b0 | 2014-02-13 03:39:50 -0500 | [diff] [blame] | 524 | struct pci_dev *pdev = drm->dev->pdev; |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 525 | |
Alexandre Courbot | 420b946 | 2014-02-17 15:17:26 +0900 | [diff] [blame] | 526 | if (!pdev) { |
Alexandre Courbot | f2a0ada | 2016-03-02 19:13:03 +0900 | [diff] [blame] | 527 | NV_DEBUG(drm, "not a PCI device; no HDMI\n"); |
Alexandre Courbot | 420b946 | 2014-02-17 15:17:26 +0900 | [diff] [blame] | 528 | drm->hdmi_device = NULL; |
| 529 | return; |
| 530 | } |
| 531 | |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 532 | /* subfunction one is a hdmi audio device? */ |
| 533 | drm->hdmi_device = pci_get_bus_and_slot((unsigned int)pdev->bus->number, |
| 534 | PCI_DEVFN(PCI_SLOT(pdev->devfn), 1)); |
| 535 | |
| 536 | if (!drm->hdmi_device) { |
Ilia Mirkin | 46941b0 | 2014-02-13 03:39:50 -0500 | [diff] [blame] | 537 | NV_DEBUG(drm, "hdmi device not found %d %d %d\n", pdev->bus->number, PCI_SLOT(pdev->devfn), 1); |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 538 | return; |
| 539 | } |
| 540 | |
| 541 | if ((drm->hdmi_device->class >> 8) != PCI_CLASS_MULTIMEDIA_HD_AUDIO) { |
Ilia Mirkin | 46941b0 | 2014-02-13 03:39:50 -0500 | [diff] [blame] | 542 | NV_DEBUG(drm, "possible hdmi device not audio %d\n", drm->hdmi_device->class); |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 543 | pci_dev_put(drm->hdmi_device); |
| 544 | drm->hdmi_device = NULL; |
| 545 | return; |
| 546 | } |
| 547 | } |
| 548 | |
Marcin Slusarz | 5b8a43a | 2012-08-19 23:00:00 +0200 | [diff] [blame] | 549 | static int |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 550 | nouveau_drm_load(struct drm_device *dev, unsigned long flags) |
| 551 | { |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 552 | struct nouveau_drm *drm; |
| 553 | int ret; |
| 554 | |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 555 | if (!(drm = kzalloc(sizeof(*drm), GFP_KERNEL))) |
| 556 | return -ENOMEM; |
| 557 | dev->dev_private = drm; |
| 558 | drm->dev = dev; |
| 559 | |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 560 | ret = nouveau_cli_init(drm, "DRM-master", &drm->master); |
| 561 | if (ret) |
| 562 | return ret; |
| 563 | |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 564 | ret = nouveau_cli_init(drm, "DRM", &drm->client); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 565 | if (ret) |
| 566 | return ret; |
| 567 | |
Ben Skeggs | 1167c6b | 2016-05-18 13:57:42 +1000 | [diff] [blame] | 568 | dev->irq_enabled = true; |
| 569 | |
Ben Skeggs | 989aa5b | 2015-01-12 12:33:37 +1000 | [diff] [blame] | 570 | nvxx_client(&drm->client.base)->debug = |
Ben Skeggs | be83cd4 | 2015-01-14 15:36:34 +1000 | [diff] [blame] | 571 | nvkm_dbgopt(nouveau_debug, "DRM"); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 572 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 573 | INIT_LIST_HEAD(&drm->clients); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 574 | spin_lock_init(&drm->tile.lock); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 575 | |
Ilia Mirkin | 46941b0 | 2014-02-13 03:39:50 -0500 | [diff] [blame] | 576 | nouveau_get_hdmi_dev(drm); |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 577 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 578 | /* workaround an odd issue on nvc1 by disabling the device's |
| 579 | * nosnoop capability. hopefully won't cause issues until a |
| 580 | * better fix is found - assuming there is one... |
| 581 | */ |
Ben Skeggs | 1167c6b | 2016-05-18 13:57:42 +1000 | [diff] [blame] | 582 | if (drm->client.device.info.chipset == 0xc1) |
| 583 | nvif_mask(&drm->client.device.object, 0x00088080, 0x00000800, 0x00000000); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 584 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 585 | nouveau_vga_init(drm); |
Ben Skeggs | cb75d97 | 2012-07-11 10:44:20 +1000 | [diff] [blame] | 586 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 587 | ret = nouveau_ttm_init(drm); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 588 | if (ret) |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 589 | goto fail_ttm; |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 590 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 591 | ret = nouveau_bios_init(dev); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 592 | if (ret) |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 593 | goto fail_bios; |
| 594 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 595 | ret = nouveau_display_create(dev); |
| 596 | if (ret) |
| 597 | goto fail_dispctor; |
| 598 | |
| 599 | if (dev->mode_config.num_crtc) { |
| 600 | ret = nouveau_display_init(dev); |
| 601 | if (ret) |
| 602 | goto fail_dispinit; |
| 603 | } |
| 604 | |
Karol Herbst | b126a20 | 2015-07-30 11:52:23 +0200 | [diff] [blame] | 605 | nouveau_debugfs_init(drm); |
Ben Skeggs | b9ed919 | 2013-10-15 09:44:02 +1000 | [diff] [blame] | 606 | nouveau_hwmon_init(dev); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 607 | nouveau_accel_init(drm); |
| 608 | nouveau_fbcon_init(dev); |
Martin Peres | 8d021d7 | 2016-08-25 03:57:07 +0300 | [diff] [blame] | 609 | nouveau_led_init(dev); |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 610 | |
Ben Skeggs | 8fa4338 | 2017-06-02 14:49:45 +1000 | [diff] [blame] | 611 | if (nouveau_pmops_runtime()) { |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 612 | pm_runtime_use_autosuspend(dev->dev); |
| 613 | pm_runtime_set_autosuspend_delay(dev->dev, 5000); |
| 614 | pm_runtime_set_active(dev->dev); |
| 615 | pm_runtime_allow(dev->dev); |
| 616 | pm_runtime_mark_last_busy(dev->dev); |
| 617 | pm_runtime_put(dev->dev); |
Peter Ujfalusi | 9a2eba3 | 2017-05-15 12:04:31 +0300 | [diff] [blame] | 618 | } else { |
| 619 | /* enable polling for external displays */ |
| 620 | drm_kms_helper_poll_enable(dev); |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 621 | } |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 622 | return 0; |
| 623 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 624 | fail_dispinit: |
| 625 | nouveau_display_destroy(dev); |
| 626 | fail_dispctor: |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 627 | nouveau_bios_takedown(dev); |
| 628 | fail_bios: |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 629 | nouveau_ttm_fini(drm); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 630 | fail_ttm: |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 631 | nouveau_vga_fini(drm); |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 632 | nouveau_cli_fini(&drm->client); |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 633 | nouveau_cli_fini(&drm->master); |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 634 | kfree(drm); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 635 | return ret; |
| 636 | } |
| 637 | |
Gabriel Krisman Bertazi | 11b3c20 | 2017-01-06 15:57:31 -0200 | [diff] [blame] | 638 | static void |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 639 | nouveau_drm_unload(struct drm_device *dev) |
| 640 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 641 | struct nouveau_drm *drm = nouveau_drm(dev); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 642 | |
Ben Skeggs | 8fa4338 | 2017-06-02 14:49:45 +1000 | [diff] [blame] | 643 | if (nouveau_pmops_runtime()) { |
Lukas Wunner | c1b16b4 | 2016-06-08 18:47:27 +0200 | [diff] [blame] | 644 | pm_runtime_get_sync(dev->dev); |
Lukas Wunner | 55c868a | 2016-06-08 18:47:27 +0200 | [diff] [blame] | 645 | pm_runtime_forbid(dev->dev); |
Lukas Wunner | c1b16b4 | 2016-06-08 18:47:27 +0200 | [diff] [blame] | 646 | } |
| 647 | |
Martin Peres | 8d021d7 | 2016-08-25 03:57:07 +0300 | [diff] [blame] | 648 | nouveau_led_fini(dev); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 649 | nouveau_fbcon_fini(dev); |
| 650 | nouveau_accel_fini(drm); |
Ben Skeggs | b9ed919 | 2013-10-15 09:44:02 +1000 | [diff] [blame] | 651 | nouveau_hwmon_fini(dev); |
Karol Herbst | b126a20 | 2015-07-30 11:52:23 +0200 | [diff] [blame] | 652 | nouveau_debugfs_fini(drm); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 653 | |
Ben Skeggs | 9430738 | 2012-10-31 12:11:15 +1000 | [diff] [blame] | 654 | if (dev->mode_config.num_crtc) |
Ben Skeggs | 3b4c0ab | 2016-11-04 17:20:35 +1000 | [diff] [blame] | 655 | nouveau_display_fini(dev, false); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 656 | nouveau_display_destroy(dev); |
| 657 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 658 | nouveau_bios_takedown(dev); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 659 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 660 | nouveau_ttm_fini(drm); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 661 | nouveau_vga_fini(drm); |
Ben Skeggs | cb75d97 | 2012-07-11 10:44:20 +1000 | [diff] [blame] | 662 | |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 663 | if (drm->hdmi_device) |
| 664 | pci_dev_put(drm->hdmi_device); |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 665 | nouveau_cli_fini(&drm->client); |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 666 | nouveau_cli_fini(&drm->master); |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 667 | kfree(drm); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 668 | } |
| 669 | |
Alexandre Courbot | 8ba9ff1 | 2014-06-26 14:33:32 +0900 | [diff] [blame] | 670 | void |
| 671 | nouveau_drm_device_remove(struct drm_device *dev) |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 672 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 673 | struct nouveau_drm *drm = nouveau_drm(dev); |
Ben Skeggs | be83cd4 | 2015-01-14 15:36:34 +1000 | [diff] [blame] | 674 | struct nvkm_client *client; |
Ben Skeggs | 76ecea5 | 2015-08-20 14:54:15 +1000 | [diff] [blame] | 675 | struct nvkm_device *device; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 676 | |
Ilia Mirkin | 7d3428c | 2014-01-29 19:53:00 -0500 | [diff] [blame] | 677 | dev->irq_enabled = false; |
Ben Skeggs | 989aa5b | 2015-01-12 12:33:37 +1000 | [diff] [blame] | 678 | client = nvxx_client(&drm->client.base); |
Ben Skeggs | 4e7e62d | 2015-08-20 14:54:15 +1000 | [diff] [blame] | 679 | device = nvkm_device_find(client->device); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 680 | drm_put_dev(dev); |
| 681 | |
Ben Skeggs | e781dc8 | 2015-08-20 14:54:15 +1000 | [diff] [blame] | 682 | nvkm_device_del(&device); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 683 | } |
Alexandre Courbot | 8ba9ff1 | 2014-06-26 14:33:32 +0900 | [diff] [blame] | 684 | |
| 685 | static void |
| 686 | nouveau_drm_remove(struct pci_dev *pdev) |
| 687 | { |
| 688 | struct drm_device *dev = pci_get_drvdata(pdev); |
| 689 | |
| 690 | nouveau_drm_device_remove(dev); |
| 691 | } |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 692 | |
Marcin Slusarz | cd89783 | 2013-01-27 15:01:55 +0100 | [diff] [blame] | 693 | static int |
Dave Airlie | 05c63c2 | 2014-03-26 14:10:06 +1000 | [diff] [blame] | 694 | nouveau_do_suspend(struct drm_device *dev, bool runtime) |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 695 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 696 | struct nouveau_drm *drm = nouveau_drm(dev); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 697 | int ret; |
| 698 | |
Martin Peres | 8d021d7 | 2016-08-25 03:57:07 +0300 | [diff] [blame] | 699 | nouveau_led_suspend(dev); |
| 700 | |
Ben Skeggs | 6fbb702 | 2014-10-02 13:22:27 +1000 | [diff] [blame] | 701 | if (dev->mode_config.num_crtc) { |
Ben Skeggs | 2d38a53 | 2017-08-14 08:40:55 +1000 | [diff] [blame] | 702 | NV_DEBUG(drm, "suspending console...\n"); |
Ben Skeggs | 6fbb702 | 2014-10-02 13:22:27 +1000 | [diff] [blame] | 703 | nouveau_fbcon_set_suspend(dev, 1); |
Ben Skeggs | 2d38a53 | 2017-08-14 08:40:55 +1000 | [diff] [blame] | 704 | NV_DEBUG(drm, "suspending display...\n"); |
Ben Skeggs | 6fbb702 | 2014-10-02 13:22:27 +1000 | [diff] [blame] | 705 | ret = nouveau_display_suspend(dev, runtime); |
Ben Skeggs | 9430738 | 2012-10-31 12:11:15 +1000 | [diff] [blame] | 706 | if (ret) |
| 707 | return ret; |
| 708 | } |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 709 | |
Ben Skeggs | 2d38a53 | 2017-08-14 08:40:55 +1000 | [diff] [blame] | 710 | NV_DEBUG(drm, "evicting buffers...\n"); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 711 | ttm_bo_evict_mm(&drm->ttm.bdev, TTM_PL_VRAM); |
| 712 | |
Ben Skeggs | 2d38a53 | 2017-08-14 08:40:55 +1000 | [diff] [blame] | 713 | NV_DEBUG(drm, "waiting for kernel channels to go idle...\n"); |
Ben Skeggs | 81dff21 | 2013-05-07 08:33:10 +1000 | [diff] [blame] | 714 | if (drm->cechan) { |
| 715 | ret = nouveau_channel_idle(drm->cechan); |
| 716 | if (ret) |
Ilia Mirkin | f3980dc | 2014-01-23 02:45:02 -0500 | [diff] [blame] | 717 | goto fail_display; |
Ben Skeggs | 81dff21 | 2013-05-07 08:33:10 +1000 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | if (drm->channel) { |
| 721 | ret = nouveau_channel_idle(drm->channel); |
| 722 | if (ret) |
Ilia Mirkin | f3980dc | 2014-01-23 02:45:02 -0500 | [diff] [blame] | 723 | goto fail_display; |
Ben Skeggs | 81dff21 | 2013-05-07 08:33:10 +1000 | [diff] [blame] | 724 | } |
| 725 | |
Ben Skeggs | 2d38a53 | 2017-08-14 08:40:55 +1000 | [diff] [blame] | 726 | NV_DEBUG(drm, "suspending fence...\n"); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 727 | if (drm->fence && nouveau_fence(drm)->suspend) { |
Ilia Mirkin | f3980dc | 2014-01-23 02:45:02 -0500 | [diff] [blame] | 728 | if (!nouveau_fence(drm)->suspend(drm)) { |
| 729 | ret = -ENOMEM; |
| 730 | goto fail_display; |
| 731 | } |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 732 | } |
| 733 | |
Ben Skeggs | 2d38a53 | 2017-08-14 08:40:55 +1000 | [diff] [blame] | 734 | NV_DEBUG(drm, "suspending object tree...\n"); |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 735 | ret = nvif_client_suspend(&drm->master.base); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 736 | if (ret) |
| 737 | goto fail_client; |
| 738 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 739 | return 0; |
| 740 | |
| 741 | fail_client: |
Ilia Mirkin | f3980dc | 2014-01-23 02:45:02 -0500 | [diff] [blame] | 742 | if (drm->fence && nouveau_fence(drm)->resume) |
| 743 | nouveau_fence(drm)->resume(drm); |
| 744 | |
| 745 | fail_display: |
Ben Skeggs | 9430738 | 2012-10-31 12:11:15 +1000 | [diff] [blame] | 746 | if (dev->mode_config.num_crtc) { |
Ben Skeggs | 2d38a53 | 2017-08-14 08:40:55 +1000 | [diff] [blame] | 747 | NV_DEBUG(drm, "resuming display...\n"); |
Ben Skeggs | 6fbb702 | 2014-10-02 13:22:27 +1000 | [diff] [blame] | 748 | nouveau_display_resume(dev, runtime); |
Ben Skeggs | 9430738 | 2012-10-31 12:11:15 +1000 | [diff] [blame] | 749 | } |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 750 | return ret; |
| 751 | } |
| 752 | |
Marcin Slusarz | cd89783 | 2013-01-27 15:01:55 +0100 | [diff] [blame] | 753 | static int |
Ben Skeggs | 6fbb702 | 2014-10-02 13:22:27 +1000 | [diff] [blame] | 754 | nouveau_do_resume(struct drm_device *dev, bool runtime) |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 755 | { |
| 756 | struct nouveau_drm *drm = nouveau_drm(dev); |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 757 | |
Ben Skeggs | 2d38a53 | 2017-08-14 08:40:55 +1000 | [diff] [blame] | 758 | NV_DEBUG(drm, "resuming object tree...\n"); |
Ben Skeggs | cb7e88e | 2017-11-01 03:56:19 +1000 | [diff] [blame] | 759 | nvif_client_resume(&drm->master.base); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 760 | |
Ben Skeggs | 2d38a53 | 2017-08-14 08:40:55 +1000 | [diff] [blame] | 761 | NV_DEBUG(drm, "resuming fence...\n"); |
Ben Skeggs | 81dff21 | 2013-05-07 08:33:10 +1000 | [diff] [blame] | 762 | if (drm->fence && nouveau_fence(drm)->resume) |
| 763 | nouveau_fence(drm)->resume(drm); |
| 764 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 765 | nouveau_run_vbios_init(dev); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 766 | |
Ben Skeggs | 9430738 | 2012-10-31 12:11:15 +1000 | [diff] [blame] | 767 | if (dev->mode_config.num_crtc) { |
Ben Skeggs | 2d38a53 | 2017-08-14 08:40:55 +1000 | [diff] [blame] | 768 | NV_DEBUG(drm, "resuming display...\n"); |
Ben Skeggs | 6fbb702 | 2014-10-02 13:22:27 +1000 | [diff] [blame] | 769 | nouveau_display_resume(dev, runtime); |
Ben Skeggs | 2d38a53 | 2017-08-14 08:40:55 +1000 | [diff] [blame] | 770 | NV_DEBUG(drm, "resuming console...\n"); |
Ben Skeggs | 6fbb702 | 2014-10-02 13:22:27 +1000 | [diff] [blame] | 771 | nouveau_fbcon_set_suspend(dev, 0); |
Ben Skeggs | 9430738 | 2012-10-31 12:11:15 +1000 | [diff] [blame] | 772 | } |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 773 | |
Martin Peres | 8d021d7 | 2016-08-25 03:57:07 +0300 | [diff] [blame] | 774 | nouveau_led_resume(dev); |
| 775 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 776 | return 0; |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 777 | } |
| 778 | |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 779 | int |
| 780 | nouveau_pmops_suspend(struct device *dev) |
| 781 | { |
| 782 | struct pci_dev *pdev = to_pci_dev(dev); |
| 783 | struct drm_device *drm_dev = pci_get_drvdata(pdev); |
| 784 | int ret; |
| 785 | |
| 786 | if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF || |
| 787 | drm_dev->switch_power_state == DRM_SWITCH_POWER_DYNAMIC_OFF) |
| 788 | return 0; |
| 789 | |
| 790 | ret = nouveau_do_suspend(drm_dev, false); |
| 791 | if (ret) |
| 792 | return ret; |
| 793 | |
| 794 | pci_save_state(pdev); |
| 795 | pci_disable_device(pdev); |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 796 | pci_set_power_state(pdev, PCI_D3hot); |
Lukas Wunner | c5fd936 | 2015-04-19 17:18:01 +0200 | [diff] [blame] | 797 | udelay(200); |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 798 | return 0; |
| 799 | } |
| 800 | |
| 801 | int |
| 802 | nouveau_pmops_resume(struct device *dev) |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 803 | { |
| 804 | struct pci_dev *pdev = to_pci_dev(dev); |
| 805 | struct drm_device *drm_dev = pci_get_drvdata(pdev); |
| 806 | int ret; |
| 807 | |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 808 | if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF || |
| 809 | drm_dev->switch_power_state == DRM_SWITCH_POWER_DYNAMIC_OFF) |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 810 | return 0; |
| 811 | |
| 812 | pci_set_power_state(pdev, PCI_D0); |
| 813 | pci_restore_state(pdev); |
| 814 | ret = pci_enable_device(pdev); |
| 815 | if (ret) |
| 816 | return ret; |
| 817 | pci_set_master(pdev); |
| 818 | |
Hans de Goede | 0b2fe65 | 2016-11-21 17:50:55 +0100 | [diff] [blame] | 819 | ret = nouveau_do_resume(drm_dev, false); |
| 820 | |
| 821 | /* Monitors may have been connected / disconnected during suspend */ |
| 822 | schedule_work(&nouveau_drm(drm_dev)->hpd_work); |
| 823 | |
| 824 | return ret; |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 825 | } |
| 826 | |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 827 | static int |
| 828 | nouveau_pmops_freeze(struct device *dev) |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 829 | { |
| 830 | struct pci_dev *pdev = to_pci_dev(dev); |
| 831 | struct drm_device *drm_dev = pci_get_drvdata(pdev); |
Ben Skeggs | 6fbb702 | 2014-10-02 13:22:27 +1000 | [diff] [blame] | 832 | return nouveau_do_suspend(drm_dev, false); |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 833 | } |
| 834 | |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 835 | static int |
| 836 | nouveau_pmops_thaw(struct device *dev) |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 837 | { |
| 838 | struct pci_dev *pdev = to_pci_dev(dev); |
| 839 | struct drm_device *drm_dev = pci_get_drvdata(pdev); |
Ben Skeggs | 6fbb702 | 2014-10-02 13:22:27 +1000 | [diff] [blame] | 840 | return nouveau_do_resume(drm_dev, false); |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 841 | } |
| 842 | |
Ben Skeggs | 321f5c5 | 2017-06-02 14:38:07 +1000 | [diff] [blame] | 843 | bool |
Arnd Bergmann | 5499473 | 2017-06-09 12:38:33 +0200 | [diff] [blame] | 844 | nouveau_pmops_runtime(void) |
Ben Skeggs | 321f5c5 | 2017-06-02 14:38:07 +1000 | [diff] [blame] | 845 | { |
| 846 | if (nouveau_runtime_pm == -1) |
| 847 | return nouveau_is_optimus() || nouveau_is_v1_dsm(); |
| 848 | return nouveau_runtime_pm == 1; |
| 849 | } |
| 850 | |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 851 | static int |
| 852 | nouveau_pmops_runtime_suspend(struct device *dev) |
| 853 | { |
| 854 | struct pci_dev *pdev = to_pci_dev(dev); |
| 855 | struct drm_device *drm_dev = pci_get_drvdata(pdev); |
| 856 | int ret; |
| 857 | |
Ben Skeggs | 321f5c5 | 2017-06-02 14:38:07 +1000 | [diff] [blame] | 858 | if (!nouveau_pmops_runtime()) { |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 859 | pm_runtime_forbid(dev); |
| 860 | return -EBUSY; |
| 861 | } |
| 862 | |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 863 | drm_kms_helper_poll_disable(drm_dev); |
| 864 | vga_switcheroo_set_dynamic_switch(pdev, VGA_SWITCHEROO_OFF); |
| 865 | nouveau_switcheroo_optimus_dsm(); |
| 866 | ret = nouveau_do_suspend(drm_dev, true); |
| 867 | pci_save_state(pdev); |
| 868 | pci_disable_device(pdev); |
Dave Airlie | 8c86394 | 2014-12-08 10:33:52 +1000 | [diff] [blame] | 869 | pci_ignore_hotplug(pdev); |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 870 | pci_set_power_state(pdev, PCI_D3cold); |
| 871 | drm_dev->switch_power_state = DRM_SWITCH_POWER_DYNAMIC_OFF; |
| 872 | return ret; |
| 873 | } |
| 874 | |
| 875 | static int |
| 876 | nouveau_pmops_runtime_resume(struct device *dev) |
| 877 | { |
| 878 | struct pci_dev *pdev = to_pci_dev(dev); |
| 879 | struct drm_device *drm_dev = pci_get_drvdata(pdev); |
Ben Skeggs | 1167c6b | 2016-05-18 13:57:42 +1000 | [diff] [blame] | 880 | struct nvif_device *device = &nouveau_drm(drm_dev)->client.device; |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 881 | int ret; |
| 882 | |
Ben Skeggs | 321f5c5 | 2017-06-02 14:38:07 +1000 | [diff] [blame] | 883 | if (!nouveau_pmops_runtime()) { |
| 884 | pm_runtime_forbid(dev); |
| 885 | return -EBUSY; |
| 886 | } |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 887 | |
| 888 | pci_set_power_state(pdev, PCI_D0); |
| 889 | pci_restore_state(pdev); |
| 890 | ret = pci_enable_device(pdev); |
| 891 | if (ret) |
| 892 | return ret; |
| 893 | pci_set_master(pdev); |
| 894 | |
| 895 | ret = nouveau_do_resume(drm_dev, true); |
Lyude Paul | cae9ff0 | 2017-01-11 21:25:23 -0500 | [diff] [blame] | 896 | |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 897 | /* do magic */ |
Ben Skeggs | a01ca78 | 2015-08-20 14:54:15 +1000 | [diff] [blame] | 898 | nvif_mask(&device->object, 0x088488, (1 << 25), (1 << 25)); |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 899 | vga_switcheroo_set_dynamic_switch(pdev, VGA_SWITCHEROO_ON); |
| 900 | drm_dev->switch_power_state = DRM_SWITCH_POWER_ON; |
Hans de Goede | 0b2fe65 | 2016-11-21 17:50:55 +0100 | [diff] [blame] | 901 | |
| 902 | /* Monitors may have been connected / disconnected during suspend */ |
| 903 | schedule_work(&nouveau_drm(drm_dev)->hpd_work); |
| 904 | |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 905 | return ret; |
| 906 | } |
| 907 | |
| 908 | static int |
| 909 | nouveau_pmops_runtime_idle(struct device *dev) |
| 910 | { |
| 911 | struct pci_dev *pdev = to_pci_dev(dev); |
| 912 | struct drm_device *drm_dev = pci_get_drvdata(pdev); |
| 913 | struct nouveau_drm *drm = nouveau_drm(drm_dev); |
| 914 | struct drm_crtc *crtc; |
| 915 | |
Ben Skeggs | 321f5c5 | 2017-06-02 14:38:07 +1000 | [diff] [blame] | 916 | if (!nouveau_pmops_runtime()) { |
Ben Skeggs | 7bb6d44 | 2014-10-02 13:31:00 +1000 | [diff] [blame] | 917 | pm_runtime_forbid(dev); |
| 918 | return -EBUSY; |
| 919 | } |
| 920 | |
| 921 | /* if we have a hdmi audio device - make sure it has a driver loaded */ |
| 922 | if (drm->hdmi_device) { |
| 923 | if (!drm->hdmi_device->driver) { |
| 924 | DRM_DEBUG_DRIVER("failing to power off - no HDMI audio driver loaded\n"); |
| 925 | pm_runtime_mark_last_busy(dev); |
| 926 | return -EBUSY; |
| 927 | } |
| 928 | } |
| 929 | |
| 930 | list_for_each_entry(crtc, &drm->dev->mode_config.crtc_list, head) { |
| 931 | if (crtc->enabled) { |
| 932 | DRM_DEBUG_DRIVER("failing to power off - crtc active\n"); |
| 933 | return -EBUSY; |
| 934 | } |
| 935 | } |
| 936 | pm_runtime_mark_last_busy(dev); |
| 937 | pm_runtime_autosuspend(dev); |
| 938 | /* we don't want the main rpm_idle to call suspend - we want to autosuspend */ |
| 939 | return 1; |
| 940 | } |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 941 | |
Marcin Slusarz | 5b8a43a | 2012-08-19 23:00:00 +0200 | [diff] [blame] | 942 | static int |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 943 | nouveau_drm_open(struct drm_device *dev, struct drm_file *fpriv) |
| 944 | { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 945 | struct nouveau_drm *drm = nouveau_drm(dev); |
| 946 | struct nouveau_cli *cli; |
Marcin Slusarz | a2896ce | 2012-12-09 15:45:21 +0100 | [diff] [blame] | 947 | char name[32], tmpname[TASK_COMM_LEN]; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 948 | int ret; |
| 949 | |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 950 | /* need to bring up power immediately if opening device */ |
| 951 | ret = pm_runtime_get_sync(dev->dev); |
Alexandre Courbot | b6c4285 | 2014-02-12 14:00:59 +0900 | [diff] [blame] | 952 | if (ret < 0 && ret != -EACCES) |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 953 | return ret; |
| 954 | |
Marcin Slusarz | a2896ce | 2012-12-09 15:45:21 +0100 | [diff] [blame] | 955 | get_task_comm(tmpname, current); |
| 956 | snprintf(name, sizeof(name), "%s[%d]", tmpname, pid_nr(fpriv->pid)); |
Ben Skeggs | fa6df8c | 2012-09-12 13:09:23 +1000 | [diff] [blame] | 957 | |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 958 | if (!(cli = kzalloc(sizeof(*cli), GFP_KERNEL))) |
| 959 | return ret; |
Alexandre Courbot | 420b946 | 2014-02-17 15:17:26 +0900 | [diff] [blame] | 960 | |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 961 | ret = nouveau_cli_init(drm, name, cli); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 962 | if (ret) |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 963 | goto done; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 964 | |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 965 | cli->base.super = false; |
| 966 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 967 | fpriv->driver_priv = cli; |
| 968 | |
| 969 | mutex_lock(&drm->client.mutex); |
| 970 | list_add(&cli->head, &drm->clients); |
| 971 | mutex_unlock(&drm->client.mutex); |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 972 | |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 973 | done: |
| 974 | if (ret && cli) { |
| 975 | nouveau_cli_fini(cli); |
| 976 | kfree(cli); |
| 977 | } |
| 978 | |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 979 | pm_runtime_mark_last_busy(dev->dev); |
| 980 | pm_runtime_put_autosuspend(dev->dev); |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 981 | return ret; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 982 | } |
| 983 | |
Marcin Slusarz | 5b8a43a | 2012-08-19 23:00:00 +0200 | [diff] [blame] | 984 | static void |
Daniel Vetter | f0e73ff | 2017-05-08 10:26:30 +0200 | [diff] [blame] | 985 | nouveau_drm_postclose(struct drm_device *dev, struct drm_file *fpriv) |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 986 | { |
| 987 | struct nouveau_cli *cli = nouveau_cli(fpriv); |
| 988 | struct nouveau_drm *drm = nouveau_drm(dev); |
| 989 | |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 990 | pm_runtime_get_sync(dev->dev); |
| 991 | |
Kamil Dudka | ac8c793 | 2015-07-15 17:18:15 +0200 | [diff] [blame] | 992 | mutex_lock(&cli->mutex); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 993 | if (cli->abi16) |
| 994 | nouveau_abi16_fini(cli->abi16); |
Kamil Dudka | ac8c793 | 2015-07-15 17:18:15 +0200 | [diff] [blame] | 995 | mutex_unlock(&cli->mutex); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 996 | |
| 997 | mutex_lock(&drm->client.mutex); |
| 998 | list_del(&cli->head); |
| 999 | mutex_unlock(&drm->client.mutex); |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 1000 | |
Ben Skeggs | 20d8a88 | 2016-05-18 13:36:34 +1000 | [diff] [blame] | 1001 | nouveau_cli_fini(cli); |
| 1002 | kfree(cli); |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 1003 | pm_runtime_mark_last_busy(dev->dev); |
| 1004 | pm_runtime_put_autosuspend(dev->dev); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 1005 | } |
| 1006 | |
Rob Clark | baa7094 | 2013-08-02 13:27:49 -0400 | [diff] [blame] | 1007 | static const struct drm_ioctl_desc |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1008 | nouveau_ioctls[] = { |
Daniel Vetter | f8c4714 | 2015-09-08 13:56:30 +0200 | [diff] [blame] | 1009 | DRM_IOCTL_DEF_DRV(NOUVEAU_GETPARAM, nouveau_abi16_ioctl_getparam, DRM_AUTH|DRM_RENDER_ALLOW), |
| 1010 | DRM_IOCTL_DEF_DRV(NOUVEAU_SETPARAM, nouveau_abi16_ioctl_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), |
| 1011 | DRM_IOCTL_DEF_DRV(NOUVEAU_CHANNEL_ALLOC, nouveau_abi16_ioctl_channel_alloc, DRM_AUTH|DRM_RENDER_ALLOW), |
| 1012 | DRM_IOCTL_DEF_DRV(NOUVEAU_CHANNEL_FREE, nouveau_abi16_ioctl_channel_free, DRM_AUTH|DRM_RENDER_ALLOW), |
| 1013 | DRM_IOCTL_DEF_DRV(NOUVEAU_GROBJ_ALLOC, nouveau_abi16_ioctl_grobj_alloc, DRM_AUTH|DRM_RENDER_ALLOW), |
| 1014 | DRM_IOCTL_DEF_DRV(NOUVEAU_NOTIFIEROBJ_ALLOC, nouveau_abi16_ioctl_notifierobj_alloc, DRM_AUTH|DRM_RENDER_ALLOW), |
| 1015 | DRM_IOCTL_DEF_DRV(NOUVEAU_GPUOBJ_FREE, nouveau_abi16_ioctl_gpuobj_free, DRM_AUTH|DRM_RENDER_ALLOW), |
| 1016 | DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_NEW, nouveau_gem_ioctl_new, DRM_AUTH|DRM_RENDER_ALLOW), |
| 1017 | DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_PUSHBUF, nouveau_gem_ioctl_pushbuf, DRM_AUTH|DRM_RENDER_ALLOW), |
| 1018 | DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_CPU_PREP, nouveau_gem_ioctl_cpu_prep, DRM_AUTH|DRM_RENDER_ALLOW), |
| 1019 | DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_CPU_FINI, nouveau_gem_ioctl_cpu_fini, DRM_AUTH|DRM_RENDER_ALLOW), |
| 1020 | DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_INFO, nouveau_gem_ioctl_info, DRM_AUTH|DRM_RENDER_ALLOW), |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1021 | }; |
| 1022 | |
Ben Skeggs | 27111a2 | 2014-08-10 04:10:31 +1000 | [diff] [blame] | 1023 | long |
| 1024 | nouveau_drm_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 1025 | { |
Ben Skeggs | 27111a2 | 2014-08-10 04:10:31 +1000 | [diff] [blame] | 1026 | struct drm_file *filp = file->private_data; |
| 1027 | struct drm_device *dev = filp->minor->dev; |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 1028 | long ret; |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 1029 | |
| 1030 | ret = pm_runtime_get_sync(dev->dev); |
Alexandre Courbot | b6c4285 | 2014-02-12 14:00:59 +0900 | [diff] [blame] | 1031 | if (ret < 0 && ret != -EACCES) |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 1032 | return ret; |
| 1033 | |
Ben Skeggs | 27111a2 | 2014-08-10 04:10:31 +1000 | [diff] [blame] | 1034 | switch (_IOC_NR(cmd) - DRM_COMMAND_BASE) { |
| 1035 | case DRM_NOUVEAU_NVIF: |
| 1036 | ret = usif_ioctl(filp, (void __user *)arg, _IOC_SIZE(cmd)); |
| 1037 | break; |
| 1038 | default: |
| 1039 | ret = drm_ioctl(file, cmd, arg); |
| 1040 | break; |
| 1041 | } |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 1042 | |
| 1043 | pm_runtime_mark_last_busy(dev->dev); |
| 1044 | pm_runtime_put_autosuspend(dev->dev); |
| 1045 | return ret; |
| 1046 | } |
Ben Skeggs | 27111a2 | 2014-08-10 04:10:31 +1000 | [diff] [blame] | 1047 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1048 | static const struct file_operations |
| 1049 | nouveau_driver_fops = { |
| 1050 | .owner = THIS_MODULE, |
| 1051 | .open = drm_open, |
| 1052 | .release = drm_release, |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 1053 | .unlocked_ioctl = nouveau_drm_ioctl, |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1054 | .mmap = nouveau_ttm_mmap, |
| 1055 | .poll = drm_poll, |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1056 | .read = drm_read, |
| 1057 | #if defined(CONFIG_COMPAT) |
| 1058 | .compat_ioctl = nouveau_compat_ioctl, |
| 1059 | #endif |
| 1060 | .llseek = noop_llseek, |
| 1061 | }; |
| 1062 | |
| 1063 | static struct drm_driver |
David Herrmann | 915b4d1 | 2014-08-29 12:12:43 +0200 | [diff] [blame] | 1064 | driver_stub = { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1065 | .driver_features = |
Peter Antoine | 0e97598 | 2015-06-23 08:18:49 +0100 | [diff] [blame] | 1066 | DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME | DRIVER_RENDER | |
| 1067 | DRIVER_KMS_LEGACY_CONTEXT, |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1068 | |
| 1069 | .load = nouveau_drm_load, |
| 1070 | .unload = nouveau_drm_unload, |
| 1071 | .open = nouveau_drm_open, |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1072 | .postclose = nouveau_drm_postclose, |
| 1073 | .lastclose = nouveau_vga_lastclose, |
| 1074 | |
Marcin Slusarz | 33b903e | 2013-02-08 21:42:13 +0100 | [diff] [blame] | 1075 | #if defined(CONFIG_DEBUG_FS) |
Karol Herbst | 56c101a | 2015-07-31 00:35:42 +0200 | [diff] [blame] | 1076 | .debugfs_init = nouveau_drm_debugfs_init, |
Marcin Slusarz | 33b903e | 2013-02-08 21:42:13 +0100 | [diff] [blame] | 1077 | #endif |
| 1078 | |
Ben Skeggs | 51cb4b3 | 2013-10-03 07:02:29 +1000 | [diff] [blame] | 1079 | .enable_vblank = nouveau_display_vblank_enable, |
| 1080 | .disable_vblank = nouveau_display_vblank_disable, |
Ben Skeggs | d83ef85 | 2013-11-14 13:37:49 +1000 | [diff] [blame] | 1081 | .get_scanout_position = nouveau_display_scanoutpos, |
Daniel Vetter | 1bf6ad6 | 2017-05-09 16:03:28 +0200 | [diff] [blame] | 1082 | .get_vblank_timestamp = drm_calc_vbltimestamp_from_scanoutpos, |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1083 | |
| 1084 | .ioctls = nouveau_ioctls, |
Rob Clark | baa7094 | 2013-08-02 13:27:49 -0400 | [diff] [blame] | 1085 | .num_ioctls = ARRAY_SIZE(nouveau_ioctls), |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1086 | .fops = &nouveau_driver_fops, |
| 1087 | |
| 1088 | .prime_handle_to_fd = drm_gem_prime_handle_to_fd, |
| 1089 | .prime_fd_to_handle = drm_gem_prime_fd_to_handle, |
Aaron Plattner | ab9ccb9 | 2013-01-15 20:47:43 +0000 | [diff] [blame] | 1090 | .gem_prime_export = drm_gem_prime_export, |
| 1091 | .gem_prime_import = drm_gem_prime_import, |
| 1092 | .gem_prime_pin = nouveau_gem_prime_pin, |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 1093 | .gem_prime_res_obj = nouveau_gem_prime_res_obj, |
Maarten Lankhorst | 1af7c7d | 2013-06-27 13:38:19 +0200 | [diff] [blame] | 1094 | .gem_prime_unpin = nouveau_gem_prime_unpin, |
Aaron Plattner | ab9ccb9 | 2013-01-15 20:47:43 +0000 | [diff] [blame] | 1095 | .gem_prime_get_sg_table = nouveau_gem_prime_get_sg_table, |
| 1096 | .gem_prime_import_sg_table = nouveau_gem_prime_import_sg_table, |
| 1097 | .gem_prime_vmap = nouveau_gem_prime_vmap, |
| 1098 | .gem_prime_vunmap = nouveau_gem_prime_vunmap, |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1099 | |
Daniel Vetter | a51e6ac | 2016-05-30 19:53:00 +0200 | [diff] [blame] | 1100 | .gem_free_object_unlocked = nouveau_gem_object_del, |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1101 | .gem_open_object = nouveau_gem_object_open, |
| 1102 | .gem_close_object = nouveau_gem_object_close, |
| 1103 | |
| 1104 | .dumb_create = nouveau_display_dumb_create, |
| 1105 | .dumb_map_offset = nouveau_display_dumb_map_offset, |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1106 | |
| 1107 | .name = DRIVER_NAME, |
| 1108 | .desc = DRIVER_DESC, |
| 1109 | #ifdef GIT_REVISION |
| 1110 | .date = GIT_REVISION, |
| 1111 | #else |
| 1112 | .date = DRIVER_DATE, |
| 1113 | #endif |
| 1114 | .major = DRIVER_MAJOR, |
| 1115 | .minor = DRIVER_MINOR, |
| 1116 | .patchlevel = DRIVER_PATCHLEVEL, |
| 1117 | }; |
| 1118 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 1119 | static struct pci_device_id |
| 1120 | nouveau_drm_pci_table[] = { |
| 1121 | { |
| 1122 | PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID), |
| 1123 | .class = PCI_BASE_CLASS_DISPLAY << 16, |
| 1124 | .class_mask = 0xff << 16, |
| 1125 | }, |
| 1126 | { |
| 1127 | PCI_DEVICE(PCI_VENDOR_ID_NVIDIA_SGS, PCI_ANY_ID), |
| 1128 | .class = PCI_BASE_CLASS_DISPLAY << 16, |
| 1129 | .class_mask = 0xff << 16, |
| 1130 | }, |
| 1131 | {} |
| 1132 | }; |
| 1133 | |
Pierre Moreau | 703fa26 | 2014-08-18 22:43:24 +0200 | [diff] [blame] | 1134 | static void nouveau_display_options(void) |
| 1135 | { |
| 1136 | DRM_DEBUG_DRIVER("Loading Nouveau with parameters:\n"); |
| 1137 | |
| 1138 | DRM_DEBUG_DRIVER("... tv_disable : %d\n", nouveau_tv_disable); |
| 1139 | DRM_DEBUG_DRIVER("... ignorelid : %d\n", nouveau_ignorelid); |
| 1140 | DRM_DEBUG_DRIVER("... duallink : %d\n", nouveau_duallink); |
| 1141 | DRM_DEBUG_DRIVER("... nofbaccel : %d\n", nouveau_nofbaccel); |
| 1142 | DRM_DEBUG_DRIVER("... config : %s\n", nouveau_config); |
| 1143 | DRM_DEBUG_DRIVER("... debug : %s\n", nouveau_debug); |
| 1144 | DRM_DEBUG_DRIVER("... noaccel : %d\n", nouveau_noaccel); |
| 1145 | DRM_DEBUG_DRIVER("... modeset : %d\n", nouveau_modeset); |
| 1146 | DRM_DEBUG_DRIVER("... runpm : %d\n", nouveau_runtime_pm); |
| 1147 | DRM_DEBUG_DRIVER("... vram_pushbuf : %d\n", nouveau_vram_pushbuf); |
Ben Skeggs | f3a8b66 | 2016-11-04 11:44:21 +1000 | [diff] [blame] | 1148 | DRM_DEBUG_DRIVER("... hdmimhz : %d\n", nouveau_hdmimhz); |
Pierre Moreau | 703fa26 | 2014-08-18 22:43:24 +0200 | [diff] [blame] | 1149 | } |
| 1150 | |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 1151 | static const struct dev_pm_ops nouveau_pm_ops = { |
| 1152 | .suspend = nouveau_pmops_suspend, |
| 1153 | .resume = nouveau_pmops_resume, |
| 1154 | .freeze = nouveau_pmops_freeze, |
| 1155 | .thaw = nouveau_pmops_thaw, |
| 1156 | .poweroff = nouveau_pmops_freeze, |
| 1157 | .restore = nouveau_pmops_resume, |
Dave Airlie | 5addcf0 | 2012-09-10 14:20:51 +1000 | [diff] [blame] | 1158 | .runtime_suspend = nouveau_pmops_runtime_suspend, |
| 1159 | .runtime_resume = nouveau_pmops_runtime_resume, |
| 1160 | .runtime_idle = nouveau_pmops_runtime_idle, |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 1161 | }; |
| 1162 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 1163 | static struct pci_driver |
| 1164 | nouveau_drm_pci_driver = { |
| 1165 | .name = "nouveau", |
| 1166 | .id_table = nouveau_drm_pci_table, |
| 1167 | .probe = nouveau_drm_probe, |
| 1168 | .remove = nouveau_drm_remove, |
Dave Airlie | 2d8b9cc | 2012-11-02 11:04:28 +1000 | [diff] [blame] | 1169 | .driver.pm = &nouveau_pm_ops, |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 1170 | }; |
| 1171 | |
Alexandre Courbot | 8ba9ff1 | 2014-06-26 14:33:32 +0900 | [diff] [blame] | 1172 | struct drm_device * |
Alexandre Courbot | e396ecd | 2015-09-04 19:59:31 +0900 | [diff] [blame] | 1173 | nouveau_platform_device_create(const struct nvkm_device_tegra_func *func, |
| 1174 | struct platform_device *pdev, |
Ben Skeggs | 47b2505 | 2015-08-20 14:54:15 +1000 | [diff] [blame] | 1175 | struct nvkm_device **pdevice) |
Alexandre Courbot | 420b946 | 2014-02-17 15:17:26 +0900 | [diff] [blame] | 1176 | { |
Alexandre Courbot | 8ba9ff1 | 2014-06-26 14:33:32 +0900 | [diff] [blame] | 1177 | struct drm_device *drm; |
| 1178 | int err; |
Alexandre Courbot | 420b946 | 2014-02-17 15:17:26 +0900 | [diff] [blame] | 1179 | |
Alexandre Courbot | e396ecd | 2015-09-04 19:59:31 +0900 | [diff] [blame] | 1180 | err = nvkm_device_tegra_new(func, pdev, nouveau_config, nouveau_debug, |
Ben Skeggs | 7974dd1 | 2015-08-20 14:54:17 +1000 | [diff] [blame] | 1181 | true, true, ~0ULL, pdevice); |
Alexandre Courbot | 8ba9ff1 | 2014-06-26 14:33:32 +0900 | [diff] [blame] | 1182 | if (err) |
Ben Skeggs | e781dc8 | 2015-08-20 14:54:15 +1000 | [diff] [blame] | 1183 | goto err_free; |
Alexandre Courbot | 420b946 | 2014-02-17 15:17:26 +0900 | [diff] [blame] | 1184 | |
David Herrmann | 915b4d1 | 2014-08-29 12:12:43 +0200 | [diff] [blame] | 1185 | drm = drm_dev_alloc(&driver_platform, &pdev->dev); |
Tom Gundersen | 0f28860 | 2016-09-21 16:59:19 +0200 | [diff] [blame] | 1186 | if (IS_ERR(drm)) { |
| 1187 | err = PTR_ERR(drm); |
Alexandre Courbot | 8ba9ff1 | 2014-06-26 14:33:32 +0900 | [diff] [blame] | 1188 | goto err_free; |
Alexandre Courbot | 420b946 | 2014-02-17 15:17:26 +0900 | [diff] [blame] | 1189 | } |
| 1190 | |
Alexandre Courbot | 8ba9ff1 | 2014-06-26 14:33:32 +0900 | [diff] [blame] | 1191 | platform_set_drvdata(pdev, drm); |
| 1192 | |
| 1193 | return drm; |
| 1194 | |
| 1195 | err_free: |
Ben Skeggs | e781dc8 | 2015-08-20 14:54:15 +1000 | [diff] [blame] | 1196 | nvkm_device_del(pdevice); |
Alexandre Courbot | 8ba9ff1 | 2014-06-26 14:33:32 +0900 | [diff] [blame] | 1197 | |
| 1198 | return ERR_PTR(err); |
Alexandre Courbot | 420b946 | 2014-02-17 15:17:26 +0900 | [diff] [blame] | 1199 | } |
| 1200 | |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 1201 | static int __init |
| 1202 | nouveau_drm_init(void) |
| 1203 | { |
David Herrmann | 915b4d1 | 2014-08-29 12:12:43 +0200 | [diff] [blame] | 1204 | driver_pci = driver_stub; |
David Herrmann | 915b4d1 | 2014-08-29 12:12:43 +0200 | [diff] [blame] | 1205 | driver_platform = driver_stub; |
David Herrmann | 915b4d1 | 2014-08-29 12:12:43 +0200 | [diff] [blame] | 1206 | |
Pierre Moreau | 703fa26 | 2014-08-18 22:43:24 +0200 | [diff] [blame] | 1207 | nouveau_display_options(); |
| 1208 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1209 | if (nouveau_modeset == -1) { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1210 | if (vgacon_text_force()) |
| 1211 | nouveau_modeset = 0; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1212 | } |
| 1213 | |
| 1214 | if (!nouveau_modeset) |
| 1215 | return 0; |
| 1216 | |
Alexandre Courbot | 055a65d | 2015-01-15 15:29:56 +0900 | [diff] [blame] | 1217 | #ifdef CONFIG_NOUVEAU_PLATFORM_DRIVER |
| 1218 | platform_driver_register(&nouveau_platform_driver); |
| 1219 | #endif |
| 1220 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1221 | nouveau_register_dsm_handler(); |
Pierre Moreau | db1a0ae2 | 2016-12-08 00:57:08 +0100 | [diff] [blame] | 1222 | nouveau_backlight_ctor(); |
Daniel Vetter | 10631d7 | 2017-05-24 16:51:40 +0200 | [diff] [blame] | 1223 | |
| 1224 | #ifdef CONFIG_PCI |
| 1225 | return pci_register_driver(&nouveau_drm_pci_driver); |
| 1226 | #else |
| 1227 | return 0; |
| 1228 | #endif |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 1229 | } |
| 1230 | |
| 1231 | static void __exit |
| 1232 | nouveau_drm_exit(void) |
| 1233 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1234 | if (!nouveau_modeset) |
| 1235 | return; |
| 1236 | |
Daniel Vetter | 10631d7 | 2017-05-24 16:51:40 +0200 | [diff] [blame] | 1237 | #ifdef CONFIG_PCI |
| 1238 | pci_unregister_driver(&nouveau_drm_pci_driver); |
| 1239 | #endif |
Pierre Moreau | db1a0ae2 | 2016-12-08 00:57:08 +0100 | [diff] [blame] | 1240 | nouveau_backlight_dtor(); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1241 | nouveau_unregister_dsm_handler(); |
Alexandre Courbot | 055a65d | 2015-01-15 15:29:56 +0900 | [diff] [blame] | 1242 | |
| 1243 | #ifdef CONFIG_NOUVEAU_PLATFORM_DRIVER |
| 1244 | platform_driver_unregister(&nouveau_platform_driver); |
| 1245 | #endif |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 1246 | } |
| 1247 | |
| 1248 | module_init(nouveau_drm_init); |
| 1249 | module_exit(nouveau_drm_exit); |
| 1250 | |
| 1251 | MODULE_DEVICE_TABLE(pci, nouveau_drm_pci_table); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 1252 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 1253 | MODULE_DESCRIPTION(DRIVER_DESC); |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 1254 | MODULE_LICENSE("GPL and additional rights"); |