1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2021 Raspberry Pi
9 #define V3D_PERFMONID_MIN 1
10 #define V3D_PERFMONID_MAX U32_MAX
12 void v3d_perfmon_get(struct v3d_perfmon *perfmon)
15 refcount_inc(&perfmon->refcnt);
18 void v3d_perfmon_put(struct v3d_perfmon *perfmon)
20 if (perfmon && refcount_dec_and_test(&perfmon->refcnt)) {
21 mutex_destroy(&perfmon->lock);
26 void v3d_perfmon_start(struct v3d_dev *v3d, struct v3d_perfmon *perfmon)
32 if (WARN_ON_ONCE(!perfmon || v3d->active_perfmon))
35 ncounters = perfmon->ncounters;
36 mask = GENMASK(ncounters - 1, 0);
38 for (i = 0; i < ncounters; i++) {
40 u32 channel = V3D_SET_FIELD(perfmon->counters[i], V3D_PCTR_S0);
43 channel |= V3D_SET_FIELD(i < ncounters ? perfmon->counters[i] : 0,
46 channel |= V3D_SET_FIELD(i < ncounters ? perfmon->counters[i] : 0,
49 channel |= V3D_SET_FIELD(i < ncounters ? perfmon->counters[i] : 0,
51 V3D_CORE_WRITE(0, V3D_V4_PCTR_0_SRC_X(source), channel);
54 V3D_CORE_WRITE(0, V3D_V4_PCTR_0_CLR, mask);
55 V3D_CORE_WRITE(0, V3D_PCTR_0_OVERFLOW, mask);
56 V3D_CORE_WRITE(0, V3D_V4_PCTR_0_EN, mask);
58 v3d->active_perfmon = perfmon;
61 void v3d_perfmon_stop(struct v3d_dev *v3d, struct v3d_perfmon *perfmon,
66 if (!perfmon || !v3d->active_perfmon)
69 mutex_lock(&perfmon->lock);
70 if (perfmon != v3d->active_perfmon) {
71 mutex_unlock(&perfmon->lock);
76 for (i = 0; i < perfmon->ncounters; i++)
77 perfmon->values[i] += V3D_CORE_READ(0, V3D_PCTR_0_PCTRX(i));
79 V3D_CORE_WRITE(0, V3D_V4_PCTR_0_EN, 0);
81 v3d->active_perfmon = NULL;
82 mutex_unlock(&perfmon->lock);
85 struct v3d_perfmon *v3d_perfmon_find(struct v3d_file_priv *v3d_priv, int id)
87 struct v3d_perfmon *perfmon;
89 mutex_lock(&v3d_priv->perfmon.lock);
90 perfmon = idr_find(&v3d_priv->perfmon.idr, id);
91 v3d_perfmon_get(perfmon);
92 mutex_unlock(&v3d_priv->perfmon.lock);
97 void v3d_perfmon_open_file(struct v3d_file_priv *v3d_priv)
99 mutex_init(&v3d_priv->perfmon.lock);
100 idr_init_base(&v3d_priv->perfmon.idr, 1);
103 static int v3d_perfmon_idr_del(int id, void *elem, void *data)
105 struct v3d_perfmon *perfmon = elem;
107 v3d_perfmon_put(perfmon);
112 void v3d_perfmon_close_file(struct v3d_file_priv *v3d_priv)
114 mutex_lock(&v3d_priv->perfmon.lock);
115 idr_for_each(&v3d_priv->perfmon.idr, v3d_perfmon_idr_del, NULL);
116 idr_destroy(&v3d_priv->perfmon.idr);
117 mutex_unlock(&v3d_priv->perfmon.lock);
118 mutex_destroy(&v3d_priv->perfmon.lock);
121 int v3d_perfmon_create_ioctl(struct drm_device *dev, void *data,
122 struct drm_file *file_priv)
124 struct v3d_file_priv *v3d_priv = file_priv->driver_priv;
125 struct drm_v3d_perfmon_create *req = data;
126 struct v3d_perfmon *perfmon;
130 /* Number of monitored counters cannot exceed HW limits. */
131 if (req->ncounters > DRM_V3D_MAX_PERF_COUNTERS ||
135 /* Make sure all counters are valid. */
136 for (i = 0; i < req->ncounters; i++) {
137 if (req->counters[i] >= V3D_PERFCNT_NUM)
141 perfmon = kzalloc(struct_size(perfmon, values, req->ncounters),
146 for (i = 0; i < req->ncounters; i++)
147 perfmon->counters[i] = req->counters[i];
149 perfmon->ncounters = req->ncounters;
151 refcount_set(&perfmon->refcnt, 1);
152 mutex_init(&perfmon->lock);
154 mutex_lock(&v3d_priv->perfmon.lock);
155 ret = idr_alloc(&v3d_priv->perfmon.idr, perfmon, V3D_PERFMONID_MIN,
156 V3D_PERFMONID_MAX, GFP_KERNEL);
157 mutex_unlock(&v3d_priv->perfmon.lock);
160 mutex_destroy(&perfmon->lock);
170 int v3d_perfmon_destroy_ioctl(struct drm_device *dev, void *data,
171 struct drm_file *file_priv)
173 struct v3d_file_priv *v3d_priv = file_priv->driver_priv;
174 struct drm_v3d_perfmon_destroy *req = data;
175 struct v3d_perfmon *perfmon;
177 mutex_lock(&v3d_priv->perfmon.lock);
178 perfmon = idr_remove(&v3d_priv->perfmon.idr, req->id);
179 mutex_unlock(&v3d_priv->perfmon.lock);
184 v3d_perfmon_put(perfmon);
189 int v3d_perfmon_get_values_ioctl(struct drm_device *dev, void *data,
190 struct drm_file *file_priv)
192 struct v3d_dev *v3d = to_v3d_dev(dev);
193 struct v3d_file_priv *v3d_priv = file_priv->driver_priv;
194 struct drm_v3d_perfmon_get_values *req = data;
195 struct v3d_perfmon *perfmon;
201 mutex_lock(&v3d_priv->perfmon.lock);
202 perfmon = idr_find(&v3d_priv->perfmon.idr, req->id);
203 v3d_perfmon_get(perfmon);
204 mutex_unlock(&v3d_priv->perfmon.lock);
209 v3d_perfmon_stop(v3d, perfmon, true);
211 if (copy_to_user(u64_to_user_ptr(req->values_ptr), perfmon->values,
212 perfmon->ncounters * sizeof(u64)))
215 v3d_perfmon_put(perfmon);