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