cregit-Linux how code gets into the kernel

Release 4.11 drivers/gpu/drm/nouveau/nvkm/core/engine.c

/*
 * 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/engine.h>
#include <core/device.h>
#include <core/option.h>

#include <subdev/fb.h>


bool nvkm_engine_chsw_load(struct nvkm_engine *engine) { if (engine->func->chsw_load) return engine->func->chsw_load(engine); return false; }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs31100.00%1100.00%
Total31100.00%1100.00%


void nvkm_engine_unref(struct nvkm_engine **pengine) { struct nvkm_engine *engine = *pengine; if (engine) { mutex_lock(&engine->subdev.mutex); if (--engine->usecount == 0) nvkm_subdev_fini(&engine->subdev, false); mutex_unlock(&engine->subdev.mutex); *pengine = NULL; } }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs69100.00%1100.00%
Total69100.00%1100.00%


struct nvkm_engine * nvkm_engine_ref(struct nvkm_engine *engine) { if (engine) { mutex_lock(&engine->subdev.mutex); if (++engine->usecount == 1) { int ret = nvkm_subdev_init(&engine->subdev); if (ret) { engine->usecount--; mutex_unlock(&engine->subdev.mutex); return ERR_PTR(ret); } } mutex_unlock(&engine->subdev.mutex); } return engine; }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs90100.00%1100.00%
Total90100.00%1100.00%


void nvkm_engine_tile(struct nvkm_engine *engine, int region) { struct nvkm_fb *fb = engine->subdev.device->fb; if (engine->func->tile) engine->func->tile(engine, region, &fb->tile.region[region]); }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs55100.00%1100.00%
Total55100.00%1100.00%


static void nvkm_engine_intr(struct nvkm_subdev *subdev) { struct nvkm_engine *engine = nvkm_engine(subdev); if (engine->func->intr) engine->func->intr(engine); }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs38100.00%2100.00%
Total38100.00%2100.00%


static int nvkm_engine_fini(struct nvkm_subdev *subdev, bool suspend) { struct nvkm_engine *engine = nvkm_engine(subdev); if (engine->func->fini) return engine->func->fini(engine, suspend); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs47100.00%2100.00%
Total47100.00%2100.00%


static int nvkm_engine_init(struct nvkm_subdev *subdev) { struct nvkm_engine *engine = nvkm_engine(subdev); struct nvkm_fb *fb = subdev->device->fb; int ret = 0, i; s64 time; if (!engine->usecount) { nvkm_trace(subdev, "init skipped, engine has no users\n"); return ret; } if (engine->func->oneinit && !engine->subdev.oneinit) { nvkm_trace(subdev, "one-time init running...\n"); time = ktime_to_us(ktime_get()); ret = engine->func->oneinit(engine); if (ret) { nvkm_trace(subdev, "one-time init failed, %d\n", ret); return ret; } engine->subdev.oneinit = true; time = ktime_to_us(ktime_get()) - time; nvkm_trace(subdev, "one-time init completed in %lldus\n", time); } if (engine->func->init) ret = engine->func->init(engine); for (i = 0; fb && i < fb->tile.regions; i++) nvkm_engine_tile(engine, i); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs197100.00%3100.00%
Total197100.00%3100.00%


static void * nvkm_engine_dtor(struct nvkm_subdev *subdev) { struct nvkm_engine *engine = nvkm_engine(subdev); if (engine->func->dtor) return engine->func->dtor(engine); return engine; }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs43100.00%2100.00%
Total43100.00%2100.00%

static const struct nvkm_subdev_func nvkm_engine_func = { .dtor = nvkm_engine_dtor, .init = nvkm_engine_init, .fini = nvkm_engine_fini, .intr = nvkm_engine_intr, };
int nvkm_engine_ctor(const struct nvkm_engine_func *func, struct nvkm_device *device, int index, bool enable, struct nvkm_engine *engine) { nvkm_subdev_ctor(&nvkm_engine_func, device, index, &engine->subdev); engine->func = func; if (!nvkm_boolopt(device->cfgopt, nvkm_subdev_name[index], enable)) { nvkm_debug(&engine->subdev, "disabled\n"); return -ENODEV; } spin_lock_init(&engine->lock); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs92100.00%1100.00%
Total92100.00%1100.00%


int nvkm_engine_new_(const struct nvkm_engine_func *func, struct nvkm_device *device, int index, bool enable, struct nvkm_engine **pengine) { if (!(*pengine = kzalloc(sizeof(**pengine), GFP_KERNEL))) return -ENOMEM; return nvkm_engine_ctor(func, device, index, enable, *pengine); }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs67100.00%1100.00%
Total67100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs770100.00%6100.00%
Total770100.00%6100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.