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