Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 | /* * Copyright 2012 Red Hat Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Authors: Ben Skeggs */ #include <core/subdev.h> #include <core/device.h> #include <core/option.h> #include <subdev/mc.h> const char * nvkm_subdev_type[NVKM_SUBDEV_NR] = { #define NVKM_LAYOUT_ONCE(type,data,ptr,...) [type] = #ptr, #define NVKM_LAYOUT_INST(A...) NVKM_LAYOUT_ONCE(A) #include <core/layout.h> #undef NVKM_LAYOUT_ONCE #undef NVKM_LAYOUT_INST }; void nvkm_subdev_intr(struct nvkm_subdev *subdev) { if (subdev->func->intr) subdev->func->intr(subdev); } int nvkm_subdev_info(struct nvkm_subdev *subdev, u64 mthd, u64 *data) { if (subdev->func->info) return subdev->func->info(subdev, mthd, data); return -ENOSYS; } int nvkm_subdev_fini(struct nvkm_subdev *subdev, bool suspend) { struct nvkm_device *device = subdev->device; const char *action = suspend ? "suspend" : subdev->use.enabled ? "fini" : "reset"; s64 time; nvkm_trace(subdev, "%s running...\n", action); time = ktime_to_us(ktime_get()); if (subdev->func->fini) { int ret = subdev->func->fini(subdev, suspend); if (ret) { nvkm_error(subdev, "%s failed, %d\n", action, ret); if (suspend) return ret; } } subdev->use.enabled = false; nvkm_mc_reset(device, subdev->type, subdev->inst); time = ktime_to_us(ktime_get()) - time; nvkm_trace(subdev, "%s completed in %lldus\n", action, time); return 0; } int nvkm_subdev_preinit(struct nvkm_subdev *subdev) { s64 time; nvkm_trace(subdev, "preinit running...\n"); time = ktime_to_us(ktime_get()); if (subdev->func->preinit) { int ret = subdev->func->preinit(subdev); if (ret) { nvkm_error(subdev, "preinit failed, %d\n", ret); return ret; } } time = ktime_to_us(ktime_get()) - time; nvkm_trace(subdev, "preinit completed in %lldus\n", time); return 0; } static int nvkm_subdev_oneinit_(struct nvkm_subdev *subdev) { s64 time; int ret; if (!subdev->func->oneinit || subdev->oneinit) return 0; nvkm_trace(subdev, "one-time init running...\n"); time = ktime_to_us(ktime_get()); ret = subdev->func->oneinit(subdev); if (ret) { nvkm_error(subdev, "one-time init failed, %d\n", ret); return ret; } subdev->oneinit = true; time = ktime_to_us(ktime_get()) - time; nvkm_trace(subdev, "one-time init completed in %lldus\n", time); return 0; } static int nvkm_subdev_init_(struct nvkm_subdev *subdev) { s64 time; int ret; if (subdev->use.enabled) { nvkm_trace(subdev, "init skipped, already running\n"); return 0; } nvkm_trace(subdev, "init running...\n"); time = ktime_to_us(ktime_get()); ret = nvkm_subdev_oneinit_(subdev); if (ret) return ret; subdev->use.enabled = true; if (subdev->func->init) { ret = subdev->func->init(subdev); if (ret) { nvkm_error(subdev, "init failed, %d\n", ret); return ret; } } time = ktime_to_us(ktime_get()) - time; nvkm_trace(subdev, "init completed in %lldus\n", time); return 0; } int nvkm_subdev_init(struct nvkm_subdev *subdev) { int ret; mutex_lock(&subdev->use.mutex); if (refcount_read(&subdev->use.refcount) == 0) { nvkm_trace(subdev, "init skipped, no users\n"); mutex_unlock(&subdev->use.mutex); return 0; } ret = nvkm_subdev_init_(subdev); mutex_unlock(&subdev->use.mutex); return ret; } int nvkm_subdev_oneinit(struct nvkm_subdev *subdev) { int ret; mutex_lock(&subdev->use.mutex); ret = nvkm_subdev_oneinit_(subdev); mutex_unlock(&subdev->use.mutex); return ret; } void nvkm_subdev_unref(struct nvkm_subdev *subdev) { if (refcount_dec_and_mutex_lock(&subdev->use.refcount, &subdev->use.mutex)) { nvkm_subdev_fini(subdev, false); mutex_unlock(&subdev->use.mutex); } } int nvkm_subdev_ref(struct nvkm_subdev *subdev) { int ret; if (subdev && !refcount_inc_not_zero(&subdev->use.refcount)) { mutex_lock(&subdev->use.mutex); if (!refcount_inc_not_zero(&subdev->use.refcount)) { if ((ret = nvkm_subdev_init_(subdev))) { mutex_unlock(&subdev->use.mutex); return ret; } refcount_set(&subdev->use.refcount, 1); } mutex_unlock(&subdev->use.mutex); } return 0; } void nvkm_subdev_del(struct nvkm_subdev **psubdev) { struct nvkm_subdev *subdev = *psubdev; s64 time; if (subdev && !WARN_ON(!subdev->func)) { nvkm_trace(subdev, "destroy running...\n"); time = ktime_to_us(ktime_get()); list_del(&subdev->head); if (subdev->func->dtor) *psubdev = subdev->func->dtor(subdev); mutex_destroy(&subdev->use.mutex); time = ktime_to_us(ktime_get()) - time; nvkm_trace(subdev, "destroy completed in %lldus\n", time); kfree(*psubdev); *psubdev = NULL; } } void nvkm_subdev_disable(struct nvkm_device *device, enum nvkm_subdev_type type, int inst) { struct nvkm_subdev *subdev; list_for_each_entry(subdev, &device->subdev, head) { if (subdev->type == type && subdev->inst == inst) { *subdev->pself = NULL; nvkm_subdev_del(&subdev); break; } } } void __nvkm_subdev_ctor(const struct nvkm_subdev_func *func, struct nvkm_device *device, enum nvkm_subdev_type type, int inst, struct nvkm_subdev *subdev) { subdev->func = func; subdev->device = device; subdev->type = type; subdev->inst = inst < 0 ? 0 : inst; if (inst >= 0) snprintf(subdev->name, sizeof(subdev->name), "%s%d", nvkm_subdev_type[type], inst); else strscpy(subdev->name, nvkm_subdev_type[type], sizeof(subdev->name)); subdev->debug = nvkm_dbgopt(device->dbgopt, subdev->name); refcount_set(&subdev->use.refcount, 1); list_add_tail(&subdev->head, &device->subdev); } int nvkm_subdev_new_(const struct nvkm_subdev_func *func, struct nvkm_device *device, enum nvkm_subdev_type type, int inst, struct nvkm_subdev **psubdev) { if (!(*psubdev = kzalloc(sizeof(**psubdev), GFP_KERNEL))) return -ENOMEM; nvkm_subdev_ctor(func, device, type, inst, *psubdev); return 0; } |