mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
16356049f5
Over time chery-picks for KGSL have been skipped or have been resolved differently between branches. As a result, this branch of KGSL has become increasingly difficult to maintain due to merge conflicts. With a few exceptions KGSL should match the msm-3.4 mainline exactly. To rectify the situation, this change brings KGSL up-to-date with the msm-3.4 mainline as a bulk change because cherry-picks are not practical. Change-Id: I53f9f7fbf4942e147dea486ff5dbf179af75ea8c Signed-off-by: Jeff Boody <jboody@codeaurora.org>
296 lines
7.6 KiB
C
296 lines
7.6 KiB
C
/* Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#include <linux/err.h>
|
|
#include <linux/file.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
#include "kgsl_sync.h"
|
|
|
|
struct sync_pt *kgsl_sync_pt_create(struct sync_timeline *timeline,
|
|
unsigned int timestamp)
|
|
{
|
|
struct sync_pt *pt;
|
|
pt = sync_pt_create(timeline, (int) sizeof(struct kgsl_sync_pt));
|
|
if (pt) {
|
|
struct kgsl_sync_pt *kpt = (struct kgsl_sync_pt *) pt;
|
|
kpt->timestamp = timestamp;
|
|
}
|
|
return pt;
|
|
}
|
|
|
|
/*
|
|
* This should only be called on sync_pts which have been created but
|
|
* not added to a fence.
|
|
*/
|
|
void kgsl_sync_pt_destroy(struct sync_pt *pt)
|
|
{
|
|
sync_pt_free(pt);
|
|
}
|
|
|
|
static struct sync_pt *kgsl_sync_pt_dup(struct sync_pt *pt)
|
|
{
|
|
struct kgsl_sync_pt *kpt = (struct kgsl_sync_pt *) pt;
|
|
return kgsl_sync_pt_create(pt->parent, kpt->timestamp);
|
|
}
|
|
|
|
static int kgsl_sync_pt_has_signaled(struct sync_pt *pt)
|
|
{
|
|
struct kgsl_sync_pt *kpt = (struct kgsl_sync_pt *) pt;
|
|
struct kgsl_sync_timeline *ktimeline =
|
|
(struct kgsl_sync_timeline *) pt->parent;
|
|
unsigned int ts = kpt->timestamp;
|
|
unsigned int last_ts = ktimeline->last_timestamp;
|
|
if (timestamp_cmp(last_ts, ts) >= 0) {
|
|
/* signaled */
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int kgsl_sync_pt_compare(struct sync_pt *a, struct sync_pt *b)
|
|
{
|
|
struct kgsl_sync_pt *kpt_a = (struct kgsl_sync_pt *) a;
|
|
struct kgsl_sync_pt *kpt_b = (struct kgsl_sync_pt *) b;
|
|
unsigned int ts_a = kpt_a->timestamp;
|
|
unsigned int ts_b = kpt_b->timestamp;
|
|
return timestamp_cmp(ts_a, ts_b);
|
|
}
|
|
|
|
struct kgsl_fence_event_priv {
|
|
struct kgsl_context *context;
|
|
unsigned int timestamp;
|
|
};
|
|
|
|
/**
|
|
* kgsl_fence_event_cb - Event callback for a fence timestamp event
|
|
* @device - The KGSL device that expired the timestamp
|
|
* @priv - private data for the event
|
|
* @context_id - the context id that goes with the timestamp
|
|
* @timestamp - the timestamp that triggered the event
|
|
*
|
|
* Signal a fence following the expiration of a timestamp
|
|
*/
|
|
|
|
static inline void kgsl_fence_event_cb(struct kgsl_device *device,
|
|
void *priv, u32 context_id, u32 timestamp, u32 type)
|
|
{
|
|
struct kgsl_fence_event_priv *ev = priv;
|
|
kgsl_sync_timeline_signal(ev->context->timeline, ev->timestamp);
|
|
kgsl_context_put(ev->context);
|
|
kfree(ev);
|
|
}
|
|
|
|
/**
|
|
* kgsl_add_fence_event - Create a new fence event
|
|
* @device - KGSL device to create the event on
|
|
* @timestamp - Timestamp to trigger the event
|
|
* @data - Return fence fd stored in struct kgsl_timestamp_event_fence
|
|
* @len - length of the fence event
|
|
* @owner - driver instance that owns this event
|
|
* @returns 0 on success or error code on error
|
|
*
|
|
* Create a fence and register an event to signal the fence when
|
|
* the timestamp expires
|
|
*/
|
|
|
|
int kgsl_add_fence_event(struct kgsl_device *device,
|
|
u32 context_id, u32 timestamp, void __user *data, int len,
|
|
struct kgsl_device_private *owner)
|
|
{
|
|
struct kgsl_fence_event_priv *event;
|
|
struct kgsl_timestamp_event_fence priv;
|
|
struct kgsl_context *context;
|
|
struct sync_pt *pt;
|
|
struct sync_fence *fence = NULL;
|
|
int ret = -EINVAL;
|
|
|
|
if (len != sizeof(priv))
|
|
return -EINVAL;
|
|
|
|
event = kzalloc(sizeof(*event), GFP_KERNEL);
|
|
if (event == NULL)
|
|
return -ENOMEM;
|
|
|
|
context = kgsl_context_get_owner(owner, context_id);
|
|
|
|
if (context == NULL)
|
|
goto fail_pt;
|
|
|
|
event->context = context;
|
|
event->timestamp = timestamp;
|
|
|
|
pt = kgsl_sync_pt_create(context->timeline, timestamp);
|
|
if (pt == NULL) {
|
|
KGSL_DRV_ERR(device, "kgsl_sync_pt_create failed\n");
|
|
ret = -ENOMEM;
|
|
goto fail_pt;
|
|
}
|
|
|
|
fence = sync_fence_create("kgsl-fence", pt);
|
|
if (fence == NULL) {
|
|
/* only destroy pt when not added to fence */
|
|
kgsl_sync_pt_destroy(pt);
|
|
KGSL_DRV_ERR(device, "sync_fence_create failed\n");
|
|
ret = -ENOMEM;
|
|
goto fail_fence;
|
|
}
|
|
|
|
priv.fence_fd = get_unused_fd_flags(0);
|
|
if (priv.fence_fd < 0) {
|
|
KGSL_DRV_ERR(device, "invalid fence fd\n");
|
|
ret = -EINVAL;
|
|
goto fail_fd;
|
|
}
|
|
sync_fence_install(fence, priv.fence_fd);
|
|
|
|
if (copy_to_user(data, &priv, sizeof(priv))) {
|
|
ret = -EFAULT;
|
|
goto fail_copy_fd;
|
|
}
|
|
|
|
/*
|
|
* Hold the context ref-count for the event - it will get released in
|
|
* the callback
|
|
*/
|
|
ret = kgsl_add_event(device, context_id, timestamp,
|
|
kgsl_fence_event_cb, event, owner);
|
|
if (ret)
|
|
goto fail_event;
|
|
|
|
return 0;
|
|
|
|
fail_event:
|
|
fail_copy_fd:
|
|
/* clean up sync_fence_install */
|
|
put_unused_fd(priv.fence_fd);
|
|
fail_fd:
|
|
/* clean up sync_fence_create */
|
|
sync_fence_put(fence);
|
|
fail_fence:
|
|
fail_pt:
|
|
kgsl_context_put(context);
|
|
kfree(event);
|
|
return ret;
|
|
}
|
|
|
|
static void kgsl_sync_timeline_release_obj(struct sync_timeline *sync_timeline)
|
|
{
|
|
/*
|
|
* Make sure to free the timeline only after destroy flag is set.
|
|
* This is to avoid further accessing to the timeline from KGSL and
|
|
* also to catch any unbalanced kref of timeline.
|
|
*/
|
|
BUG_ON(sync_timeline && (sync_timeline->destroyed != true));
|
|
}
|
|
static const struct sync_timeline_ops kgsl_sync_timeline_ops = {
|
|
.driver_name = "kgsl-timeline",
|
|
.dup = kgsl_sync_pt_dup,
|
|
.has_signaled = kgsl_sync_pt_has_signaled,
|
|
.compare = kgsl_sync_pt_compare,
|
|
.release_obj = kgsl_sync_timeline_release_obj,
|
|
};
|
|
|
|
int kgsl_sync_timeline_create(struct kgsl_context *context)
|
|
{
|
|
struct kgsl_sync_timeline *ktimeline;
|
|
|
|
context->timeline = sync_timeline_create(&kgsl_sync_timeline_ops,
|
|
(int) sizeof(struct kgsl_sync_timeline), "kgsl-timeline");
|
|
if (context->timeline == NULL)
|
|
return -EINVAL;
|
|
|
|
ktimeline = (struct kgsl_sync_timeline *) context->timeline;
|
|
ktimeline->last_timestamp = 0;
|
|
|
|
return 0;
|
|
}
|
|
|
|
void kgsl_sync_timeline_signal(struct sync_timeline *timeline,
|
|
unsigned int timestamp)
|
|
{
|
|
struct kgsl_sync_timeline *ktimeline =
|
|
(struct kgsl_sync_timeline *) timeline;
|
|
|
|
if (timestamp_cmp(timestamp, ktimeline->last_timestamp) > 0)
|
|
ktimeline->last_timestamp = timestamp;
|
|
sync_timeline_signal(timeline);
|
|
}
|
|
|
|
void kgsl_sync_timeline_destroy(struct kgsl_context *context)
|
|
{
|
|
sync_timeline_destroy(context->timeline);
|
|
}
|
|
|
|
static void kgsl_sync_callback(struct sync_fence *fence,
|
|
struct sync_fence_waiter *waiter)
|
|
{
|
|
struct kgsl_sync_fence_waiter *kwaiter =
|
|
(struct kgsl_sync_fence_waiter *) waiter;
|
|
kwaiter->func(kwaiter->priv);
|
|
sync_fence_put(kwaiter->fence);
|
|
kfree(kwaiter);
|
|
}
|
|
|
|
struct kgsl_sync_fence_waiter *kgsl_sync_fence_async_wait(int fd,
|
|
void (*func)(void *priv), void *priv)
|
|
{
|
|
struct kgsl_sync_fence_waiter *kwaiter;
|
|
struct sync_fence *fence;
|
|
int status;
|
|
|
|
fence = sync_fence_fdget(fd);
|
|
if (fence == NULL)
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
/* create the waiter */
|
|
kwaiter = kzalloc(sizeof(*kwaiter), GFP_ATOMIC);
|
|
if (kwaiter == NULL) {
|
|
sync_fence_put(fence);
|
|
return ERR_PTR(-ENOMEM);
|
|
}
|
|
kwaiter->fence = fence;
|
|
kwaiter->priv = priv;
|
|
kwaiter->func = func;
|
|
sync_fence_waiter_init((struct sync_fence_waiter *) kwaiter,
|
|
kgsl_sync_callback);
|
|
|
|
/* if status then error or signaled */
|
|
status = sync_fence_wait_async(fence,
|
|
(struct sync_fence_waiter *) kwaiter);
|
|
if (status) {
|
|
kfree(kwaiter);
|
|
sync_fence_put(fence);
|
|
if (status < 0)
|
|
kwaiter = ERR_PTR(status);
|
|
else
|
|
kwaiter = NULL;
|
|
}
|
|
|
|
return kwaiter;
|
|
}
|
|
|
|
int kgsl_sync_fence_async_cancel(struct kgsl_sync_fence_waiter *kwaiter)
|
|
{
|
|
if (kwaiter == NULL)
|
|
return 0;
|
|
|
|
if(sync_fence_cancel_async(kwaiter->fence,
|
|
(struct sync_fence_waiter *) kwaiter) == 0) {
|
|
sync_fence_put(kwaiter->fence);
|
|
kfree(kwaiter);
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|