cregit-Linux how code gets into the kernel

Release 4.11 drivers/gpu/drm/amd/scheduler/sched_fence.c

/*
 * Copyright 2015 Advanced Micro Devices, 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.
 *
 *
 */
#include <linux/kthread.h>
#include <linux/wait.h>
#include <linux/sched.h>
#include <drm/drmP.h>
#include "gpu_scheduler.h"


static struct kmem_cache *sched_fence_slab;


int amd_sched_fence_slab_init(void) { sched_fence_slab = kmem_cache_create( "amd_sched_fence", sizeof(struct amd_sched_fence), 0, SLAB_HWCACHE_ALIGN, NULL); if (!sched_fence_slab) return -ENOMEM; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Christian König38100.00%1100.00%
Total38100.00%1100.00%


void amd_sched_fence_slab_fini(void) { rcu_barrier(); kmem_cache_destroy(sched_fence_slab); }

Contributors

PersonTokensPropCommitsCommitProp
Christian König15100.00%1100.00%
Total15100.00%1100.00%


struct amd_sched_fence *amd_sched_fence_create(struct amd_sched_entity *entity, void *owner) { struct amd_sched_fence *fence = NULL; unsigned seq; fence = kmem_cache_zalloc(sched_fence_slab, GFP_KERNEL); if (fence == NULL) return NULL; fence->owner = owner; fence->sched = entity->sched; spin_lock_init(&fence->lock); seq = atomic_inc_return(&entity->fence_seq); dma_fence_init(&fence->scheduled, &amd_sched_fence_ops_scheduled, &fence->lock, entity->fence_context, seq); dma_fence_init(&fence->finished, &amd_sched_fence_ops_finished, &fence->lock, entity->fence_context + 1, seq); return fence; }

Contributors

PersonTokensPropCommitsCommitProp
Chunming Zhou7862.40%330.00%
Christian König4536.00%660.00%
Chris Wilson21.60%110.00%
Total125100.00%10100.00%


void amd_sched_fence_scheduled(struct amd_sched_fence *fence) { int ret = dma_fence_signal(&fence->scheduled); if (!ret) DMA_FENCE_TRACE(&fence->scheduled, "signaled from irq context\n"); else DMA_FENCE_TRACE(&fence->scheduled, "was already signaled\n"); }

Contributors

PersonTokensPropCommitsCommitProp
Chunming Zhou4085.11%133.33%
Christian König48.51%133.33%
Chris Wilson36.38%133.33%
Total47100.00%3100.00%


void amd_sched_fence_finished(struct amd_sched_fence *fence) { int ret = dma_fence_signal(&fence->finished); if (!ret) DMA_FENCE_TRACE(&fence->finished, "signaled from irq context\n"); else DMA_FENCE_TRACE(&fence->finished, "was already signaled\n"); }

Contributors

PersonTokensPropCommitsCommitProp
Christian König4493.62%266.67%
Chris Wilson36.38%133.33%
Total47100.00%3100.00%


static const char *amd_sched_fence_get_driver_name(struct dma_fence *fence) { return "amd_sched"; }

Contributors

PersonTokensPropCommitsCommitProp
Chunming Zhou1593.75%150.00%
Chris Wilson16.25%150.00%
Total16100.00%2100.00%


static const char *amd_sched_fence_get_timeline_name(struct dma_fence *f) { struct amd_sched_fence *fence = to_amd_sched_fence(f); return (const char *)fence->sched->name; }

Contributors

PersonTokensPropCommitsCommitProp
Chunming Zhou3394.29%133.33%
Chris Wilson12.86%133.33%
Christian König12.86%133.33%
Total35100.00%3100.00%


static bool amd_sched_fence_enable_signaling(struct dma_fence *f) { return true; }

Contributors

PersonTokensPropCommitsCommitProp
Chunming Zhou1285.71%133.33%
Christian König17.14%133.33%
Chris Wilson17.14%133.33%
Total14100.00%3100.00%

/** * amd_sched_fence_free - free up the fence memory * * @rcu: RCU callback head * * Free up the fence memory after the RCU grace period. */
static void amd_sched_fence_free(struct rcu_head *rcu) { struct dma_fence *f = container_of(rcu, struct dma_fence, rcu); struct amd_sched_fence *fence = to_amd_sched_fence(f); dma_fence_put(fence->parent); kmem_cache_free(sched_fence_slab, fence); }

Contributors

PersonTokensPropCommitsCommitProp
Chunming Zhou3162.00%250.00%
Christian König1632.00%125.00%
Chris Wilson36.00%125.00%
Total50100.00%4100.00%

/** * amd_sched_fence_release_scheduled - callback that fence can be freed * * @fence: fence * * This function is called when the reference count becomes zero. * It just RCU schedules freeing up the fence. */
static void amd_sched_fence_release_scheduled(struct dma_fence *f) { struct amd_sched_fence *fence = to_amd_sched_fence(f); call_rcu(&fence->finished.rcu, amd_sched_fence_free); }

Contributors

PersonTokensPropCommitsCommitProp
Christian König3296.97%266.67%
Chris Wilson13.03%133.33%
Total33100.00%3100.00%

/** * amd_sched_fence_release_finished - drop extra reference * * @f: fence * * Drop the extra reference from the scheduled fence to the base fence. */
static void amd_sched_fence_release_finished(struct dma_fence *f) { struct amd_sched_fence *fence = to_amd_sched_fence(f); dma_fence_put(&fence->scheduled); }

Contributors

PersonTokensPropCommitsCommitProp
Christian König2793.10%150.00%
Chris Wilson26.90%150.00%
Total29100.00%2100.00%

const struct dma_fence_ops amd_sched_fence_ops_scheduled = { .get_driver_name = amd_sched_fence_get_driver_name, .get_timeline_name = amd_sched_fence_get_timeline_name, .enable_signaling = amd_sched_fence_enable_signaling, .signaled = NULL, .wait = dma_fence_default_wait, .release = amd_sched_fence_release_scheduled, }; const struct dma_fence_ops amd_sched_fence_ops_finished = { .get_driver_name = amd_sched_fence_get_driver_name, .get_timeline_name = amd_sched_fence_get_timeline_name, .enable_signaling = amd_sched_fence_enable_signaling, .signaled = NULL, .wait = dma_fence_default_wait, .release = amd_sched_fence_release_finished, };

Overall Contributors

PersonTokensPropCommitsCommitProp
Christian König26848.91%1062.50%
Chunming Zhou25746.90%425.00%
Chris Wilson213.83%16.25%
Grazvydas Ignotas20.36%16.25%
Total548100.00%16100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.