Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Tegra host1x Syncpoints |
| 3 | * |
Arto Merilainen | d4b5781 | 2016-11-08 19:51:33 +0200 | [diff] [blame] | 4 | * Copyright (c) 2010-2015, NVIDIA Corporation. |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms and conditions of the GNU General Public License, |
| 8 | * version 2, as published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | * more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 17 | */ |
| 18 | |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/device.h> |
| 21 | #include <linux/slab.h> |
| 22 | |
| 23 | #include <trace/events/host1x.h> |
| 24 | |
| 25 | #include "syncpt.h" |
| 26 | #include "dev.h" |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 27 | #include "intr.h" |
Terje Bergstrom | 6236451 | 2013-03-22 16:34:04 +0200 | [diff] [blame] | 28 | #include "debug.h" |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 29 | |
| 30 | #define SYNCPT_CHECK_PERIOD (2 * HZ) |
| 31 | #define MAX_STUCK_CHECK_COUNT 15 |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 32 | |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 33 | static struct host1x_syncpt_base * |
| 34 | host1x_syncpt_base_request(struct host1x *host) |
| 35 | { |
| 36 | struct host1x_syncpt_base *bases = host->bases; |
| 37 | unsigned int i; |
| 38 | |
| 39 | for (i = 0; i < host->info->nb_bases; i++) |
| 40 | if (!bases[i].requested) |
| 41 | break; |
| 42 | |
| 43 | if (i >= host->info->nb_bases) |
| 44 | return NULL; |
| 45 | |
| 46 | bases[i].requested = true; |
| 47 | return &bases[i]; |
| 48 | } |
| 49 | |
| 50 | static void host1x_syncpt_base_free(struct host1x_syncpt_base *base) |
| 51 | { |
| 52 | if (base) |
| 53 | base->requested = false; |
| 54 | } |
| 55 | |
Arto Merilainen | 8736fe8 | 2013-10-14 15:21:52 +0300 | [diff] [blame] | 56 | static struct host1x_syncpt *host1x_syncpt_alloc(struct host1x *host, |
| 57 | struct device *dev, |
| 58 | unsigned long flags) |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 59 | { |
| 60 | int i; |
| 61 | struct host1x_syncpt *sp = host->syncpt; |
| 62 | char *name; |
| 63 | |
Arto Merilainen | d4b5781 | 2016-11-08 19:51:33 +0200 | [diff] [blame] | 64 | mutex_lock(&host->syncpt_mutex); |
| 65 | |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 66 | for (i = 0; i < host->info->nb_pts && sp->name; i++, sp++) |
| 67 | ; |
Arto Merilainen | edeabfc | 2013-05-29 13:26:06 +0300 | [diff] [blame] | 68 | |
| 69 | if (i >= host->info->nb_pts) |
Arto Merilainen | d4b5781 | 2016-11-08 19:51:33 +0200 | [diff] [blame] | 70 | goto unlock; |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 71 | |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 72 | if (flags & HOST1X_SYNCPT_HAS_BASE) { |
| 73 | sp->base = host1x_syncpt_base_request(host); |
| 74 | if (!sp->base) |
Arto Merilainen | d4b5781 | 2016-11-08 19:51:33 +0200 | [diff] [blame] | 75 | goto unlock; |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 76 | } |
| 77 | |
Thierry Reding | 5c0d8d3 | 2016-06-23 11:19:00 +0200 | [diff] [blame] | 78 | name = kasprintf(GFP_KERNEL, "%02u-%s", sp->id, |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 79 | dev ? dev_name(dev) : NULL); |
| 80 | if (!name) |
Arto Merilainen | d4b5781 | 2016-11-08 19:51:33 +0200 | [diff] [blame] | 81 | goto free_base; |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 82 | |
| 83 | sp->dev = dev; |
| 84 | sp->name = name; |
Arto Merilainen | 8736fe8 | 2013-10-14 15:21:52 +0300 | [diff] [blame] | 85 | |
| 86 | if (flags & HOST1X_SYNCPT_CLIENT_MANAGED) |
| 87 | sp->client_managed = true; |
| 88 | else |
| 89 | sp->client_managed = false; |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 90 | |
Arto Merilainen | d4b5781 | 2016-11-08 19:51:33 +0200 | [diff] [blame] | 91 | mutex_unlock(&host->syncpt_mutex); |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 92 | return sp; |
Arto Merilainen | d4b5781 | 2016-11-08 19:51:33 +0200 | [diff] [blame] | 93 | |
| 94 | free_base: |
| 95 | host1x_syncpt_base_free(sp->base); |
| 96 | sp->base = NULL; |
| 97 | unlock: |
| 98 | mutex_unlock(&host->syncpt_mutex); |
| 99 | return NULL; |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 100 | } |
| 101 | |
Thierry Reding | 466749f | 2017-04-10 12:27:01 +0200 | [diff] [blame] | 102 | /** |
| 103 | * host1x_syncpt_id() - retrieve syncpoint ID |
| 104 | * @sp: host1x syncpoint |
| 105 | * |
| 106 | * Given a pointer to a struct host1x_syncpt, retrieves its ID. This ID is |
| 107 | * often used as a value to program into registers that control how hardware |
| 108 | * blocks interact with syncpoints. |
| 109 | */ |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 110 | u32 host1x_syncpt_id(struct host1x_syncpt *sp) |
| 111 | { |
| 112 | return sp->id; |
| 113 | } |
Thierry Reding | fae798a | 2013-11-08 11:41:42 +0100 | [diff] [blame] | 114 | EXPORT_SYMBOL(host1x_syncpt_id); |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 115 | |
Thierry Reding | 466749f | 2017-04-10 12:27:01 +0200 | [diff] [blame] | 116 | /** |
| 117 | * host1x_syncpt_incr_max() - update the value sent to hardware |
| 118 | * @sp: host1x syncpoint |
| 119 | * @incrs: number of increments |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 120 | */ |
| 121 | u32 host1x_syncpt_incr_max(struct host1x_syncpt *sp, u32 incrs) |
| 122 | { |
| 123 | return (u32)atomic_add_return(incrs, &sp->max_val); |
| 124 | } |
Bryan Wu | 64400c3 | 2014-02-19 14:48:36 -0800 | [diff] [blame] | 125 | EXPORT_SYMBOL(host1x_syncpt_incr_max); |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 126 | |
| 127 | /* |
| 128 | * Write cached syncpoint and waitbase values to hardware. |
| 129 | */ |
| 130 | void host1x_syncpt_restore(struct host1x *host) |
| 131 | { |
| 132 | struct host1x_syncpt *sp_base = host->syncpt; |
Thierry Reding | 14c95fc | 2016-06-22 16:44:07 +0200 | [diff] [blame] | 133 | unsigned int i; |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 134 | |
| 135 | for (i = 0; i < host1x_syncpt_nb_pts(host); i++) |
| 136 | host1x_hw_syncpt_restore(host, sp_base + i); |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 137 | |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 138 | for (i = 0; i < host1x_syncpt_nb_bases(host); i++) |
| 139 | host1x_hw_syncpt_restore_wait_base(host, sp_base + i); |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 140 | |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 141 | wmb(); |
| 142 | } |
| 143 | |
| 144 | /* |
| 145 | * Update the cached syncpoint and waitbase values by reading them |
| 146 | * from the registers. |
| 147 | */ |
| 148 | void host1x_syncpt_save(struct host1x *host) |
| 149 | { |
| 150 | struct host1x_syncpt *sp_base = host->syncpt; |
Thierry Reding | 14c95fc | 2016-06-22 16:44:07 +0200 | [diff] [blame] | 151 | unsigned int i; |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 152 | |
| 153 | for (i = 0; i < host1x_syncpt_nb_pts(host); i++) { |
| 154 | if (host1x_syncpt_client_managed(sp_base + i)) |
| 155 | host1x_hw_syncpt_load(host, sp_base + i); |
| 156 | else |
| 157 | WARN_ON(!host1x_syncpt_idle(sp_base + i)); |
| 158 | } |
| 159 | |
| 160 | for (i = 0; i < host1x_syncpt_nb_bases(host); i++) |
| 161 | host1x_hw_syncpt_load_wait_base(host, sp_base + i); |
| 162 | } |
| 163 | |
| 164 | /* |
| 165 | * Updates the cached syncpoint value by reading a new value from the hardware |
| 166 | * register |
| 167 | */ |
| 168 | u32 host1x_syncpt_load(struct host1x_syncpt *sp) |
| 169 | { |
| 170 | u32 val; |
Thierry Reding | 6df633d | 2016-06-23 11:33:31 +0200 | [diff] [blame] | 171 | |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 172 | val = host1x_hw_syncpt_load(sp->host, sp); |
| 173 | trace_host1x_syncpt_load_min(sp->id, val); |
| 174 | |
| 175 | return val; |
| 176 | } |
| 177 | |
| 178 | /* |
| 179 | * Get the current syncpoint base |
| 180 | */ |
| 181 | u32 host1x_syncpt_load_wait_base(struct host1x_syncpt *sp) |
| 182 | { |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 183 | host1x_hw_syncpt_load_wait_base(sp->host, sp); |
Thierry Reding | 4b92e29 | 2016-06-23 11:39:11 +0200 | [diff] [blame] | 184 | |
| 185 | return sp->base_val; |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 186 | } |
| 187 | |
Thierry Reding | 466749f | 2017-04-10 12:27:01 +0200 | [diff] [blame] | 188 | /** |
| 189 | * host1x_syncpt_incr() - increment syncpoint value from CPU, updating cache |
| 190 | * @sp: host1x syncpoint |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 191 | */ |
Arto Merilainen | ebae30b | 2013-05-29 13:26:08 +0300 | [diff] [blame] | 192 | int host1x_syncpt_incr(struct host1x_syncpt *sp) |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 193 | { |
Arto Merilainen | ebae30b | 2013-05-29 13:26:08 +0300 | [diff] [blame] | 194 | return host1x_hw_syncpt_cpu_incr(sp->host, sp); |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 195 | } |
Thierry Reding | fae798a | 2013-11-08 11:41:42 +0100 | [diff] [blame] | 196 | EXPORT_SYMBOL(host1x_syncpt_incr); |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 197 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 198 | /* |
| 199 | * Updated sync point form hardware, and returns true if syncpoint is expired, |
| 200 | * false if we may need to wait |
| 201 | */ |
| 202 | static bool syncpt_load_min_is_expired(struct host1x_syncpt *sp, u32 thresh) |
| 203 | { |
| 204 | host1x_hw_syncpt_load(sp->host, sp); |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 205 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 206 | return host1x_syncpt_is_expired(sp, thresh); |
| 207 | } |
| 208 | |
Thierry Reding | 466749f | 2017-04-10 12:27:01 +0200 | [diff] [blame] | 209 | /** |
| 210 | * host1x_syncpt_wait() - wait for a syncpoint to reach a given value |
| 211 | * @sp: host1x syncpoint |
| 212 | * @thresh: threshold |
| 213 | * @timeout: maximum time to wait for the syncpoint to reach the given value |
| 214 | * @value: return location for the syncpoint value |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 215 | */ |
| 216 | int host1x_syncpt_wait(struct host1x_syncpt *sp, u32 thresh, long timeout, |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 217 | u32 *value) |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 218 | { |
| 219 | DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq); |
| 220 | void *ref; |
| 221 | struct host1x_waitlist *waiter; |
| 222 | int err = 0, check_count = 0; |
| 223 | u32 val; |
| 224 | |
| 225 | if (value) |
| 226 | *value = 0; |
| 227 | |
| 228 | /* first check cache */ |
| 229 | if (host1x_syncpt_is_expired(sp, thresh)) { |
| 230 | if (value) |
| 231 | *value = host1x_syncpt_load(sp); |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 232 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 233 | return 0; |
| 234 | } |
| 235 | |
| 236 | /* try to read from register */ |
| 237 | val = host1x_hw_syncpt_load(sp->host, sp); |
| 238 | if (host1x_syncpt_is_expired(sp, thresh)) { |
| 239 | if (value) |
| 240 | *value = val; |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 241 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 242 | goto done; |
| 243 | } |
| 244 | |
| 245 | if (!timeout) { |
| 246 | err = -EAGAIN; |
| 247 | goto done; |
| 248 | } |
| 249 | |
| 250 | /* allocate a waiter */ |
| 251 | waiter = kzalloc(sizeof(*waiter), GFP_KERNEL); |
| 252 | if (!waiter) { |
| 253 | err = -ENOMEM; |
| 254 | goto done; |
| 255 | } |
| 256 | |
| 257 | /* schedule a wakeup when the syncpoint value is reached */ |
| 258 | err = host1x_intr_add_action(sp->host, sp->id, thresh, |
| 259 | HOST1X_INTR_ACTION_WAKEUP_INTERRUPTIBLE, |
| 260 | &wq, waiter, &ref); |
| 261 | if (err) |
| 262 | goto done; |
| 263 | |
| 264 | err = -EAGAIN; |
| 265 | /* Caller-specified timeout may be impractically low */ |
| 266 | if (timeout < 0) |
| 267 | timeout = LONG_MAX; |
| 268 | |
| 269 | /* wait for the syncpoint, or timeout, or signal */ |
| 270 | while (timeout) { |
| 271 | long check = min_t(long, SYNCPT_CHECK_PERIOD, timeout); |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 272 | int remain; |
| 273 | |
| 274 | remain = wait_event_interruptible_timeout(wq, |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 275 | syncpt_load_min_is_expired(sp, thresh), |
| 276 | check); |
| 277 | if (remain > 0 || host1x_syncpt_is_expired(sp, thresh)) { |
| 278 | if (value) |
| 279 | *value = host1x_syncpt_load(sp); |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 280 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 281 | err = 0; |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 282 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 283 | break; |
| 284 | } |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 285 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 286 | if (remain < 0) { |
| 287 | err = remain; |
| 288 | break; |
| 289 | } |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 290 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 291 | timeout -= check; |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 292 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 293 | if (timeout && check_count <= MAX_STUCK_CHECK_COUNT) { |
| 294 | dev_warn(sp->host->dev, |
Thierry Reding | 5c0d8d3 | 2016-06-23 11:19:00 +0200 | [diff] [blame] | 295 | "%s: syncpoint id %u (%s) stuck waiting %d, timeout=%ld\n", |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 296 | current->comm, sp->id, sp->name, |
| 297 | thresh, timeout); |
Terje Bergstrom | 6236451 | 2013-03-22 16:34:04 +0200 | [diff] [blame] | 298 | |
| 299 | host1x_debug_dump_syncpts(sp->host); |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 300 | |
Terje Bergstrom | 6236451 | 2013-03-22 16:34:04 +0200 | [diff] [blame] | 301 | if (check_count == MAX_STUCK_CHECK_COUNT) |
| 302 | host1x_debug_dump(sp->host); |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 303 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 304 | check_count++; |
| 305 | } |
| 306 | } |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 307 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 308 | host1x_intr_put_ref(sp->host, sp->id, ref); |
| 309 | |
| 310 | done: |
| 311 | return err; |
| 312 | } |
| 313 | EXPORT_SYMBOL(host1x_syncpt_wait); |
| 314 | |
| 315 | /* |
| 316 | * Returns true if syncpoint is expired, false if we may need to wait |
| 317 | */ |
| 318 | bool host1x_syncpt_is_expired(struct host1x_syncpt *sp, u32 thresh) |
| 319 | { |
| 320 | u32 current_val; |
| 321 | u32 future_val; |
Thierry Reding | 6df633d | 2016-06-23 11:33:31 +0200 | [diff] [blame] | 322 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 323 | smp_rmb(); |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 324 | |
Terje Bergstrom | 7ede0b0 | 2013-03-22 16:34:02 +0200 | [diff] [blame] | 325 | current_val = (u32)atomic_read(&sp->min_val); |
| 326 | future_val = (u32)atomic_read(&sp->max_val); |
| 327 | |
| 328 | /* Note the use of unsigned arithmetic here (mod 1<<32). |
| 329 | * |
| 330 | * c = current_val = min_val = the current value of the syncpoint. |
| 331 | * t = thresh = the value we are checking |
| 332 | * f = future_val = max_val = the value c will reach when all |
| 333 | * outstanding increments have completed. |
| 334 | * |
| 335 | * Note that c always chases f until it reaches f. |
| 336 | * |
| 337 | * Dtf = (f - t) |
| 338 | * Dtc = (c - t) |
| 339 | * |
| 340 | * Consider all cases: |
| 341 | * |
| 342 | * A) .....c..t..f..... Dtf < Dtc need to wait |
| 343 | * B) .....c.....f..t.. Dtf > Dtc expired |
| 344 | * C) ..t..c.....f..... Dtf > Dtc expired (Dct very large) |
| 345 | * |
| 346 | * Any case where f==c: always expired (for any t). Dtf == Dcf |
| 347 | * Any case where t==c: always expired (for any f). Dtf >= Dtc (because Dtc==0) |
| 348 | * Any case where t==f!=c: always wait. Dtf < Dtc (because Dtf==0, |
| 349 | * Dtc!=0) |
| 350 | * |
| 351 | * Other cases: |
| 352 | * |
| 353 | * A) .....t..f..c..... Dtf < Dtc need to wait |
| 354 | * A) .....f..c..t..... Dtf < Dtc need to wait |
| 355 | * A) .....f..t..c..... Dtf > Dtc expired |
| 356 | * |
| 357 | * So: |
| 358 | * Dtf >= Dtc implies EXPIRED (return true) |
| 359 | * Dtf < Dtc implies WAIT (return false) |
| 360 | * |
| 361 | * Note: If t is expired then we *cannot* wait on it. We would wait |
| 362 | * forever (hang the system). |
| 363 | * |
| 364 | * Note: do NOT get clever and remove the -thresh from both sides. It |
| 365 | * is NOT the same. |
| 366 | * |
| 367 | * If future valueis zero, we have a client managed sync point. In that |
| 368 | * case we do a direct comparison. |
| 369 | */ |
| 370 | if (!host1x_syncpt_client_managed(sp)) |
| 371 | return future_val - thresh >= current_val - thresh; |
| 372 | else |
| 373 | return (s32)(current_val - thresh) >= 0; |
| 374 | } |
| 375 | |
Terje Bergstrom | 6579324 | 2013-03-22 16:34:03 +0200 | [diff] [blame] | 376 | /* remove a wait pointed to by patch_addr */ |
| 377 | int host1x_syncpt_patch_wait(struct host1x_syncpt *sp, void *patch_addr) |
| 378 | { |
| 379 | return host1x_hw_syncpt_patch_wait(sp->host, sp, patch_addr); |
| 380 | } |
| 381 | |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 382 | int host1x_syncpt_init(struct host1x *host) |
| 383 | { |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 384 | struct host1x_syncpt_base *bases; |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 385 | struct host1x_syncpt *syncpt; |
Thierry Reding | 14c95fc | 2016-06-22 16:44:07 +0200 | [diff] [blame] | 386 | unsigned int i; |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 387 | |
Thierry Reding | b47a049 | 2016-06-23 11:24:59 +0200 | [diff] [blame] | 388 | syncpt = devm_kcalloc(host->dev, host->info->nb_pts, sizeof(*syncpt), |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 389 | GFP_KERNEL); |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 390 | if (!syncpt) |
| 391 | return -ENOMEM; |
| 392 | |
Thierry Reding | b47a049 | 2016-06-23 11:24:59 +0200 | [diff] [blame] | 393 | bases = devm_kcalloc(host->dev, host->info->nb_bases, sizeof(*bases), |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 394 | GFP_KERNEL); |
| 395 | if (!bases) |
| 396 | return -ENOMEM; |
| 397 | |
| 398 | for (i = 0; i < host->info->nb_pts; i++) { |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 399 | syncpt[i].id = i; |
| 400 | syncpt[i].host = host; |
| 401 | } |
| 402 | |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 403 | for (i = 0; i < host->info->nb_bases; i++) |
| 404 | bases[i].id = i; |
| 405 | |
Arto Merilainen | d4b5781 | 2016-11-08 19:51:33 +0200 | [diff] [blame] | 406 | mutex_init(&host->syncpt_mutex); |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 407 | host->syncpt = syncpt; |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 408 | host->bases = bases; |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 409 | |
| 410 | host1x_syncpt_restore(host); |
| 411 | |
Terje Bergstrom | 6579324 | 2013-03-22 16:34:03 +0200 | [diff] [blame] | 412 | /* Allocate sync point to use for clearing waits for expired fences */ |
Arto Merilainen | 8736fe8 | 2013-10-14 15:21:52 +0300 | [diff] [blame] | 413 | host->nop_sp = host1x_syncpt_alloc(host, NULL, 0); |
Terje Bergstrom | 6579324 | 2013-03-22 16:34:03 +0200 | [diff] [blame] | 414 | if (!host->nop_sp) |
| 415 | return -ENOMEM; |
| 416 | |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 417 | return 0; |
| 418 | } |
| 419 | |
Thierry Reding | 466749f | 2017-04-10 12:27:01 +0200 | [diff] [blame] | 420 | /** |
| 421 | * host1x_syncpt_request() - request a syncpoint |
| 422 | * @dev: device requesting the syncpoint |
| 423 | * @flags: flags |
| 424 | * |
| 425 | * host1x client drivers can use this function to allocate a syncpoint for |
| 426 | * subsequent use. A syncpoint returned by this function will be reserved for |
| 427 | * use by the client exclusively. When no longer using a syncpoint, a host1x |
| 428 | * client driver needs to release it using host1x_syncpt_free(). |
| 429 | */ |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 430 | struct host1x_syncpt *host1x_syncpt_request(struct device *dev, |
Arto Merilainen | 8736fe8 | 2013-10-14 15:21:52 +0300 | [diff] [blame] | 431 | unsigned long flags) |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 432 | { |
| 433 | struct host1x *host = dev_get_drvdata(dev->parent); |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 434 | |
Arto Merilainen | 8736fe8 | 2013-10-14 15:21:52 +0300 | [diff] [blame] | 435 | return host1x_syncpt_alloc(host, dev, flags); |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 436 | } |
Thierry Reding | fae798a | 2013-11-08 11:41:42 +0100 | [diff] [blame] | 437 | EXPORT_SYMBOL(host1x_syncpt_request); |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 438 | |
Thierry Reding | 466749f | 2017-04-10 12:27:01 +0200 | [diff] [blame] | 439 | /** |
| 440 | * host1x_syncpt_free() - free a requested syncpoint |
| 441 | * @sp: host1x syncpoint |
| 442 | * |
| 443 | * Release a syncpoint previously allocated using host1x_syncpt_request(). A |
| 444 | * host1x client driver should call this when the syncpoint is no longer in |
| 445 | * use. Note that client drivers must ensure that the syncpoint doesn't remain |
| 446 | * under the control of hardware after calling this function, otherwise two |
| 447 | * clients may end up trying to access the same syncpoint concurrently. |
| 448 | */ |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 449 | void host1x_syncpt_free(struct host1x_syncpt *sp) |
| 450 | { |
| 451 | if (!sp) |
| 452 | return; |
| 453 | |
Arto Merilainen | d4b5781 | 2016-11-08 19:51:33 +0200 | [diff] [blame] | 454 | mutex_lock(&sp->host->syncpt_mutex); |
| 455 | |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 456 | host1x_syncpt_base_free(sp->base); |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 457 | kfree(sp->name); |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 458 | sp->base = NULL; |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 459 | sp->dev = NULL; |
| 460 | sp->name = NULL; |
Arto Merilainen | ece6689 | 2013-05-29 13:26:07 +0300 | [diff] [blame] | 461 | sp->client_managed = false; |
Arto Merilainen | d4b5781 | 2016-11-08 19:51:33 +0200 | [diff] [blame] | 462 | |
| 463 | mutex_unlock(&sp->host->syncpt_mutex); |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 464 | } |
Thierry Reding | fae798a | 2013-11-08 11:41:42 +0100 | [diff] [blame] | 465 | EXPORT_SYMBOL(host1x_syncpt_free); |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 466 | |
| 467 | void host1x_syncpt_deinit(struct host1x *host) |
| 468 | { |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 469 | struct host1x_syncpt *sp = host->syncpt; |
Thierry Reding | 14c95fc | 2016-06-22 16:44:07 +0200 | [diff] [blame] | 470 | unsigned int i; |
| 471 | |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 472 | for (i = 0; i < host->info->nb_pts; i++, sp++) |
| 473 | kfree(sp->name); |
| 474 | } |
| 475 | |
Thierry Reding | 466749f | 2017-04-10 12:27:01 +0200 | [diff] [blame] | 476 | /** |
| 477 | * host1x_syncpt_read_max() - read maximum syncpoint value |
| 478 | * @sp: host1x syncpoint |
| 479 | * |
| 480 | * The maximum syncpoint value indicates how many operations there are in |
| 481 | * queue, either in channel or in a software thread. |
Thierry Reding | 6df633d | 2016-06-23 11:33:31 +0200 | [diff] [blame] | 482 | */ |
Thierry Reding | 35d747a | 2013-09-24 16:30:32 +0200 | [diff] [blame] | 483 | u32 host1x_syncpt_read_max(struct host1x_syncpt *sp) |
| 484 | { |
| 485 | smp_rmb(); |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 486 | |
Thierry Reding | 35d747a | 2013-09-24 16:30:32 +0200 | [diff] [blame] | 487 | return (u32)atomic_read(&sp->max_val); |
| 488 | } |
Thierry Reding | fae798a | 2013-11-08 11:41:42 +0100 | [diff] [blame] | 489 | EXPORT_SYMBOL(host1x_syncpt_read_max); |
Thierry Reding | 35d747a | 2013-09-24 16:30:32 +0200 | [diff] [blame] | 490 | |
Thierry Reding | 466749f | 2017-04-10 12:27:01 +0200 | [diff] [blame] | 491 | /** |
| 492 | * host1x_syncpt_read_min() - read minimum syncpoint value |
| 493 | * @sp: host1x syncpoint |
| 494 | * |
| 495 | * The minimum syncpoint value is a shadow of the current sync point value in |
| 496 | * hardware. |
Thierry Reding | 35d747a | 2013-09-24 16:30:32 +0200 | [diff] [blame] | 497 | */ |
| 498 | u32 host1x_syncpt_read_min(struct host1x_syncpt *sp) |
| 499 | { |
| 500 | smp_rmb(); |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 501 | |
Thierry Reding | 35d747a | 2013-09-24 16:30:32 +0200 | [diff] [blame] | 502 | return (u32)atomic_read(&sp->min_val); |
| 503 | } |
Thierry Reding | fae798a | 2013-11-08 11:41:42 +0100 | [diff] [blame] | 504 | EXPORT_SYMBOL(host1x_syncpt_read_min); |
Thierry Reding | 35d747a | 2013-09-24 16:30:32 +0200 | [diff] [blame] | 505 | |
Thierry Reding | 466749f | 2017-04-10 12:27:01 +0200 | [diff] [blame] | 506 | /** |
| 507 | * host1x_syncpt_read() - read the current syncpoint value |
| 508 | * @sp: host1x syncpoint |
| 509 | */ |
Thierry Reding | b4a20144 | 2015-01-28 14:29:02 +0100 | [diff] [blame] | 510 | u32 host1x_syncpt_read(struct host1x_syncpt *sp) |
| 511 | { |
| 512 | return host1x_syncpt_load(sp); |
| 513 | } |
| 514 | EXPORT_SYMBOL(host1x_syncpt_read); |
| 515 | |
Thierry Reding | 14c95fc | 2016-06-22 16:44:07 +0200 | [diff] [blame] | 516 | unsigned int host1x_syncpt_nb_pts(struct host1x *host) |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 517 | { |
| 518 | return host->info->nb_pts; |
| 519 | } |
| 520 | |
Thierry Reding | 14c95fc | 2016-06-22 16:44:07 +0200 | [diff] [blame] | 521 | unsigned int host1x_syncpt_nb_bases(struct host1x *host) |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 522 | { |
| 523 | return host->info->nb_bases; |
| 524 | } |
| 525 | |
Thierry Reding | 14c95fc | 2016-06-22 16:44:07 +0200 | [diff] [blame] | 526 | unsigned int host1x_syncpt_nb_mlocks(struct host1x *host) |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 527 | { |
| 528 | return host->info->nb_mlocks; |
| 529 | } |
| 530 | |
Thierry Reding | 466749f | 2017-04-10 12:27:01 +0200 | [diff] [blame] | 531 | /** |
| 532 | * host1x_syncpt_get() - obtain a syncpoint by ID |
| 533 | * @host: host1x controller |
| 534 | * @id: syncpoint ID |
| 535 | */ |
Thierry Reding | 5c0d8d3 | 2016-06-23 11:19:00 +0200 | [diff] [blame] | 536 | struct host1x_syncpt *host1x_syncpt_get(struct host1x *host, unsigned int id) |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 537 | { |
Thierry Reding | 8cadb01 | 2017-03-09 20:04:57 +0100 | [diff] [blame] | 538 | if (id >= host->info->nb_pts) |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 539 | return NULL; |
Thierry Reding | 0b8070d1 | 2016-06-23 11:35:50 +0200 | [diff] [blame] | 540 | |
Terje Bergstrom | 7547168 | 2013-03-22 16:34:01 +0200 | [diff] [blame] | 541 | return host->syncpt + id; |
| 542 | } |
Thierry Reding | fae798a | 2013-11-08 11:41:42 +0100 | [diff] [blame] | 543 | EXPORT_SYMBOL(host1x_syncpt_get); |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 544 | |
Thierry Reding | 466749f | 2017-04-10 12:27:01 +0200 | [diff] [blame] | 545 | /** |
| 546 | * host1x_syncpt_get_base() - obtain the wait base associated with a syncpoint |
| 547 | * @sp: host1x syncpoint |
| 548 | */ |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 549 | struct host1x_syncpt_base *host1x_syncpt_get_base(struct host1x_syncpt *sp) |
| 550 | { |
| 551 | return sp ? sp->base : NULL; |
| 552 | } |
Thierry Reding | fae798a | 2013-11-08 11:41:42 +0100 | [diff] [blame] | 553 | EXPORT_SYMBOL(host1x_syncpt_get_base); |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 554 | |
Thierry Reding | 466749f | 2017-04-10 12:27:01 +0200 | [diff] [blame] | 555 | /** |
| 556 | * host1x_syncpt_base_id() - retrieve the ID of a syncpoint wait base |
| 557 | * @base: host1x syncpoint wait base |
| 558 | */ |
Arto Merilainen | f5a954f | 2013-10-14 15:21:53 +0300 | [diff] [blame] | 559 | u32 host1x_syncpt_base_id(struct host1x_syncpt_base *base) |
| 560 | { |
| 561 | return base->id; |
| 562 | } |
Thierry Reding | fae798a | 2013-11-08 11:41:42 +0100 | [diff] [blame] | 563 | EXPORT_SYMBOL(host1x_syncpt_base_id); |