blob: f719205105ac19192bd8b7881d17ab87810696eb [file] [log] [blame]
Terje Bergstrom75471682013-03-22 16:34:01 +02001/*
2 * Tegra host1x Syncpoints
3 *
4 * Copyright (c) 2010-2013, NVIDIA Corporation.
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#ifndef __HOST1X_SYNCPT_H
20#define __HOST1X_SYNCPT_H
21
22#include <linux/atomic.h>
Thierry Reding35d747a2013-09-24 16:30:32 +020023#include <linux/host1x.h>
Terje Bergstrom75471682013-03-22 16:34:01 +020024#include <linux/kernel.h>
25#include <linux/sched.h>
26
Terje Bergstrom7ede0b02013-03-22 16:34:02 +020027#include "intr.h"
28
Terje Bergstrom75471682013-03-22 16:34:01 +020029struct host1x;
30
Terje Bergstrom65793242013-03-22 16:34:03 +020031/* Reserved for replacing an expired wait with a NOP */
32#define HOST1X_SYNCPT_RESERVED 0
33
Arto Merilainenf5a954f2013-10-14 15:21:53 +030034struct host1x_syncpt_base {
35 unsigned int id;
36 bool requested;
37};
38
Terje Bergstrom75471682013-03-22 16:34:01 +020039struct host1x_syncpt {
Thierry Reding5c0d8d32016-06-23 11:19:00 +020040 unsigned int id;
Terje Bergstrom75471682013-03-22 16:34:01 +020041 atomic_t min_val;
42 atomic_t max_val;
43 u32 base_val;
44 const char *name;
Arto Merilainenece66892013-05-29 13:26:07 +030045 bool client_managed;
Terje Bergstrom75471682013-03-22 16:34:01 +020046 struct host1x *host;
47 struct device *dev;
Arto Merilainenf5a954f2013-10-14 15:21:53 +030048 struct host1x_syncpt_base *base;
Terje Bergstrom7ede0b02013-03-22 16:34:02 +020049
50 /* interrupt data */
51 struct host1x_syncpt_intr intr;
Terje Bergstrom75471682013-03-22 16:34:01 +020052};
53
54/* Initialize sync point array */
55int host1x_syncpt_init(struct host1x *host);
56
57/* Free sync point array */
58void host1x_syncpt_deinit(struct host1x *host);
59
Terje Bergstrom75471682013-03-22 16:34:01 +020060/* Return number of sync point supported. */
Thierry Reding14c95fc2016-06-22 16:44:07 +020061unsigned int host1x_syncpt_nb_pts(struct host1x *host);
Terje Bergstrom75471682013-03-22 16:34:01 +020062
63/* Return number of wait bases supported. */
Thierry Reding14c95fc2016-06-22 16:44:07 +020064unsigned int host1x_syncpt_nb_bases(struct host1x *host);
Terje Bergstrom75471682013-03-22 16:34:01 +020065
66/* Return number of mlocks supported. */
Thierry Reding14c95fc2016-06-22 16:44:07 +020067unsigned int host1x_syncpt_nb_mlocks(struct host1x *host);
Terje Bergstrom75471682013-03-22 16:34:01 +020068
69/*
70 * Check sync point sanity. If max is larger than min, there have too many
71 * sync point increments.
72 *
73 * Client managed sync point are not tracked.
74 * */
75static inline bool host1x_syncpt_check_max(struct host1x_syncpt *sp, u32 real)
76{
77 u32 max;
78 if (sp->client_managed)
79 return true;
80 max = host1x_syncpt_read_max(sp);
81 return (s32)(max - real) >= 0;
82}
83
84/* Return true if sync point is client managed. */
Arto Merilainenece66892013-05-29 13:26:07 +030085static inline bool host1x_syncpt_client_managed(struct host1x_syncpt *sp)
Terje Bergstrom75471682013-03-22 16:34:01 +020086{
87 return sp->client_managed;
88}
89
90/*
91 * Returns true if syncpoint min == max, which means that there are no
92 * outstanding operations.
93 */
94static inline bool host1x_syncpt_idle(struct host1x_syncpt *sp)
95{
96 int min, max;
97 smp_rmb();
98 min = atomic_read(&sp->min_val);
99 max = atomic_read(&sp->max_val);
100 return (min == max);
101}
102
Terje Bergstrom75471682013-03-22 16:34:01 +0200103/* Load current value from hardware to the shadow register. */
104u32 host1x_syncpt_load(struct host1x_syncpt *sp);
105
Terje Bergstrom7ede0b02013-03-22 16:34:02 +0200106/* Check if the given syncpoint value has already passed */
107bool host1x_syncpt_is_expired(struct host1x_syncpt *sp, u32 thresh);
108
Terje Bergstrom75471682013-03-22 16:34:01 +0200109/* Save host1x sync point state into shadow registers. */
110void host1x_syncpt_save(struct host1x *host);
111
112/* Reset host1x sync point state from shadow registers. */
113void host1x_syncpt_restore(struct host1x *host);
114
115/* Read current wait base value into shadow register and return it. */
116u32 host1x_syncpt_load_wait_base(struct host1x_syncpt *sp);
117
Terje Bergstrom75471682013-03-22 16:34:01 +0200118/* Indicate future operations by incrementing the sync point max. */
119u32 host1x_syncpt_incr_max(struct host1x_syncpt *sp, u32 incrs);
120
Terje Bergstrom75471682013-03-22 16:34:01 +0200121/* Check if sync point id is valid. */
122static inline int host1x_syncpt_is_valid(struct host1x_syncpt *sp)
123{
124 return sp->id < host1x_syncpt_nb_pts(sp->host);
125}
126
Terje Bergstrom65793242013-03-22 16:34:03 +0200127/* Patch a wait by replacing it with a wait for syncpt 0 value 0 */
128int host1x_syncpt_patch_wait(struct host1x_syncpt *sp, void *patch_addr);
129
Terje Bergstrom75471682013-03-22 16:34:01 +0200130#endif