cregit-Linux how code gets into the kernel

Release 4.11 drivers/gpu/drm/nouveau/nvkm/subdev/timer/base.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 "priv.h"


u64 nvkm_timer_read(struct nvkm_timer *tmr) { return tmr->func->read(tmr); }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs20100.00%1100.00%
Total20100.00%1100.00%


void nvkm_timer_alarm_trigger(struct nvkm_timer *tmr) { struct nvkm_alarm *alarm, *atemp; unsigned long flags; LIST_HEAD(exec); /* move any due alarms off the pending list */ spin_lock_irqsave(&tmr->lock, flags); list_for_each_entry_safe(alarm, atemp, &tmr->alarms, head) { if (alarm->timestamp <= nvkm_timer_read(tmr)) list_move_tail(&alarm->head, &exec); } /* reschedule interrupt for next alarm time */ if (!list_empty(&tmr->alarms)) { alarm = list_first_entry(&tmr->alarms, typeof(*alarm), head); tmr->func->alarm_init(tmr, alarm->timestamp); } else { tmr->func->alarm_fini(tmr); } spin_unlock_irqrestore(&tmr->lock, flags); /* execute any pending alarm handlers */ list_for_each_entry_safe(alarm, atemp, &exec, head) { list_del_init(&alarm->head); alarm->func(alarm); } }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs167100.00%1100.00%
Total167100.00%1100.00%


void nvkm_timer_alarm(struct nvkm_timer *tmr, u32 nsec, struct nvkm_alarm *alarm) { struct nvkm_alarm *list; unsigned long flags; alarm->timestamp = nvkm_timer_read(tmr) + nsec; /* append new alarm to list, in soonest-alarm-first order */ spin_lock_irqsave(&tmr->lock, flags); if (!nsec) { if (!list_empty(&alarm->head)) list_del(&alarm->head); } else { list_for_each_entry(list, &tmr->alarms, head) { if (list->timestamp > alarm->timestamp) break; } list_add_tail(&alarm->head, &list->head); } spin_unlock_irqrestore(&tmr->lock, flags); /* process pending alarms */ nvkm_timer_alarm_trigger(tmr); }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs128100.00%4100.00%
Total128100.00%4100.00%


void nvkm_timer_alarm_cancel(struct nvkm_timer *tmr, struct nvkm_alarm *alarm) { unsigned long flags; spin_lock_irqsave(&tmr->lock, flags); list_del_init(&alarm->head); spin_unlock_irqrestore(&tmr->lock, flags); }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs3880.85%266.67%
Martin Peres919.15%133.33%
Total47100.00%3100.00%


static void nvkm_timer_intr(struct nvkm_subdev *subdev) { struct nvkm_timer *tmr = nvkm_timer(subdev); tmr->func->intr(tmr); }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs30100.00%1100.00%
Total30100.00%1100.00%


static int nvkm_timer_fini(struct nvkm_subdev *subdev, bool suspend) { struct nvkm_timer *tmr = nvkm_timer(subdev); tmr->func->alarm_fini(tmr); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs2980.56%375.00%
Martin Peres719.44%125.00%
Total36100.00%4100.00%


static int nvkm_timer_init(struct nvkm_subdev *subdev) { struct nvkm_timer *tmr = nvkm_timer(subdev); if (tmr->func->init) tmr->func->init(tmr); tmr->func->time(tmr, ktime_to_ns(ktime_get())); nvkm_timer_alarm_trigger(tmr); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs5996.72%266.67%
Martin Peres23.28%133.33%
Total61100.00%3100.00%


static void * nvkm_timer_dtor(struct nvkm_subdev *subdev) { return nvkm_timer(subdev); }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs18100.00%1100.00%
Total18100.00%1100.00%

static const struct nvkm_subdev_func nvkm_timer = { .dtor = nvkm_timer_dtor, .init = nvkm_timer_init, .fini = nvkm_timer_fini, .intr = nvkm_timer_intr, };
int nvkm_timer_new_(const struct nvkm_timer_func *func, struct nvkm_device *device, int index, struct nvkm_timer **ptmr) { struct nvkm_timer *tmr; if (!(tmr = *ptmr = kzalloc(sizeof(*tmr), GFP_KERNEL))) return -ENOMEM; nvkm_subdev_ctor(&nvkm_timer, device, index, &tmr->subdev); tmr->func = func; INIT_LIST_HEAD(&tmr->alarms); spin_lock_init(&tmr->lock); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs9296.84%150.00%
Martin Peres33.16%150.00%
Total95100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs61396.69%480.00%
Martin Peres213.31%120.00%
Total634100.00%5100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.