Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Header file for reservations for dma-buf and ttm |
| 3 | * |
| 4 | * Copyright(C) 2011 Linaro Limited. All rights reserved. |
| 5 | * Copyright (C) 2012-2013 Canonical Ltd |
| 6 | * Copyright (C) 2012 Texas Instruments |
| 7 | * |
| 8 | * Authors: |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 9 | * Rob Clark <robdclark@gmail.com> |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 10 | * Maarten Lankhorst <maarten.lankhorst@canonical.com> |
| 11 | * Thomas Hellstrom <thellstrom-at-vmware-dot-com> |
| 12 | * |
| 13 | * Based on bo.c which bears the following copyright notice, |
| 14 | * but is dual licensed: |
| 15 | * |
| 16 | * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA |
| 17 | * All Rights Reserved. |
| 18 | * |
| 19 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 20 | * copy of this software and associated documentation files (the |
| 21 | * "Software"), to deal in the Software without restriction, including |
| 22 | * without limitation the rights to use, copy, modify, merge, publish, |
| 23 | * distribute, sub license, and/or sell copies of the Software, and to |
| 24 | * permit persons to whom the Software is furnished to do so, subject to |
| 25 | * the following conditions: |
| 26 | * |
| 27 | * The above copyright notice and this permission notice (including the |
| 28 | * next paragraph) shall be included in all copies or substantial portions |
| 29 | * of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 32 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 33 | * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL |
| 34 | * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, |
| 35 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 36 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
| 37 | * USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | #ifndef _LINUX_RESERVATION_H |
| 40 | #define _LINUX_RESERVATION_H |
| 41 | |
Maarten Lankhorst | 1b375dc | 2013-07-05 09:29:32 +0200 | [diff] [blame] | 42 | #include <linux/ww_mutex.h> |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 43 | #include <linux/fence.h> |
| 44 | #include <linux/slab.h> |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 45 | |
| 46 | extern struct ww_class reservation_ww_class; |
| 47 | |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame^] | 48 | struct reservation_object_list { |
| 49 | u32 shared_count, shared_max; |
| 50 | struct fence *shared[]; |
| 51 | }; |
| 52 | |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 53 | struct reservation_object { |
| 54 | struct ww_mutex lock; |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 55 | |
| 56 | struct fence *fence_excl; |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame^] | 57 | struct reservation_object_list *fence; |
| 58 | struct reservation_object_list *staged; |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 59 | }; |
| 60 | |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame^] | 61 | #define reservation_object_assert_held(obj) \ |
| 62 | lockdep_assert_held(&(obj)->lock.base) |
| 63 | |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 64 | static inline void |
| 65 | reservation_object_init(struct reservation_object *obj) |
| 66 | { |
| 67 | ww_mutex_init(&obj->lock, &reservation_ww_class); |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 68 | |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 69 | obj->fence_excl = NULL; |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame^] | 70 | obj->fence = NULL; |
| 71 | obj->staged = NULL; |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | static inline void |
| 75 | reservation_object_fini(struct reservation_object *obj) |
| 76 | { |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 77 | int i; |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame^] | 78 | struct reservation_object_list *fobj; |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 79 | |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame^] | 80 | /* |
| 81 | * This object should be dead and all references must have |
| 82 | * been released to it. |
| 83 | */ |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 84 | if (obj->fence_excl) |
| 85 | fence_put(obj->fence_excl); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame^] | 86 | |
| 87 | fobj = obj->fence; |
| 88 | if (fobj) { |
| 89 | for (i = 0; i < fobj->shared_count; ++i) |
| 90 | fence_put(fobj->shared[i]); |
| 91 | |
| 92 | kfree(fobj); |
| 93 | } |
| 94 | kfree(obj->staged); |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 95 | |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 96 | ww_mutex_destroy(&obj->lock); |
| 97 | } |
| 98 | |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame^] | 99 | static inline struct reservation_object_list * |
| 100 | reservation_object_get_list(struct reservation_object *obj) |
| 101 | { |
| 102 | reservation_object_assert_held(obj); |
| 103 | |
| 104 | return obj->fence; |
| 105 | } |
| 106 | |
| 107 | static inline struct fence * |
| 108 | reservation_object_get_excl(struct reservation_object *obj) |
| 109 | { |
| 110 | reservation_object_assert_held(obj); |
| 111 | |
| 112 | return obj->fence_excl; |
| 113 | } |
| 114 | |
| 115 | int reservation_object_reserve_shared(struct reservation_object *obj); |
| 116 | void reservation_object_add_shared_fence(struct reservation_object *obj, |
| 117 | struct fence *fence); |
| 118 | |
| 119 | void reservation_object_add_excl_fence(struct reservation_object *obj, |
| 120 | struct fence *fence); |
| 121 | |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 122 | #endif /* _LINUX_RESERVATION_H */ |