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))
24 void v3d_perfmon_start(struct v3d_dev *v3d, struct v3d_perfmon *perfmon)
30 if (WARN_ON_ONCE(!perfmon || v3d->active_perfmon))
33 ncounters = perfmon->ncounters;
34 mask = GENMASK(ncounters - 1, 0);
36 for (i = 0; i < ncounters; i++) {
38 u32 channel = V3D_SET_FIELD(perfmon->counters[i], V3D_PCTR_S0);
41 channel |= V3D_SET_FIELD(i < ncounters ? perfmon->counters[i] : 0,
44 channel |= V3D_SET_FIELD(i < ncounters ? perfmon->counters[i] : 0,
47 channel |= V3D_SET_FIELD(i < ncounters ? perfmon->counters[i] : 0,
49 V3D_CORE_WRITE(0, V3D_V4_PCTR_0_SRC_X(source), channel);
52 V3D_CORE_WRITE(0, V3D_V4_PCTR_0_CLR, mask);
53 V3D_CORE_WRITE(0, V3D_PCTR_0_OVERFLOW, mask);
54 V3D_CORE_WRITE(0, V3D_V4_PCTR_0_EN, mask);
56 v3d->active_perfmon = perfmon;
59 void v3d_perfmon_stop(struct v3d_dev *v3d, struct v3d_perfmon *perfmon,
64 if (!perfmon || !v3d->active_perfmon)
67 mutex_lock(&perfmon->lock);
68 if (perfmon != v3d->active_perfmon) {
69 mutex_unlock(&perfmon->lock);
74 for (i = 0; i < perfmon->ncounters; i++)
75 perfmon->values[i] += V3D_CORE_READ(0, V3D_PCTR_0_PCTRX(i));
77 V3D_CORE_WRITE(0, V3D_V4_PCTR_0_EN, 0);
79 v3d->active_perfmon = NULL;
80 mutex_unlock(&perfmon->lock);
83 struct v3d_perfmon *v3d_perfmon_find(struct v3d_file_priv *v3d_priv, int id)
85 struct v3d_perfmon *perfmon;
87 mutex_lock(&v3d_priv->perfmon.lock);
88 perfmon = idr_find(&v3d_priv->perfmon.idr, id);
89 v3d_perfmon_get(perfmon);
90 mutex_unlock(&v3d_priv->perfmon.lock);
95 void v3d_perfmon_open_file(struct v3d_file_priv *v3d_priv)
97 mutex_init(&v3d_priv->perfmon.lock);
98 idr_init_base(&v3d_priv->perfmon.idr, 1);
101 static int v3d_perfmon_idr_del(int id, void *elem, void *data)
103 struct v3d_perfmon *perfmon = elem;
105 v3d_perfmon_put(perfmon);
110 void v3d_perfmon_close_file(struct v3d_file_priv *v3d_priv)
112 mutex_lock(&v3d_priv->perfmon.lock);
113 idr_for_each(&v3d_priv->perfmon.idr, v3d_perfmon_idr_del, NULL);
114 idr_destroy(&v3d_priv->perfmon.idr);
115 mutex_unlock(&v3d_priv->perfmon.lock);
118 int v3d_perfmon_create_ioctl(struct drm_device *dev, void *data,
119 struct drm_file *file_priv)
121 struct v3d_file_priv *v3d_priv = file_priv->driver_priv;
122 struct drm_v3d_perfmon_create *req = data;
123 struct v3d_perfmon *perfmon;
127 /* Number of monitored counters cannot exceed HW limits. */
128 if (req->ncounters > DRM_V3D_MAX_PERF_COUNTERS ||
132 /* Make sure all counters are valid. */
133 for (i = 0; i < req->ncounters; i++) {
134 if (req->counters[i] >= V3D_PERFCNT_NUM)
138 perfmon = kzalloc(struct_size(perfmon, values, req->ncounters),
143 for (i = 0; i < req->ncounters; i++)
144 perfmon->counters[i] = req->counters[i];
146 perfmon->ncounters = req->ncounters;
148 refcount_set(&perfmon->refcnt, 1);
149 mutex_init(&perfmon->lock);
151 mutex_lock(&v3d_priv->perfmon.lock);
152 ret = idr_alloc(&v3d_priv->perfmon.idr, perfmon, V3D_PERFMONID_MIN,
153 V3D_PERFMONID_MAX, GFP_KERNEL);
154 mutex_unlock(&v3d_priv->perfmon.lock);
166 int v3d_perfmon_destroy_ioctl(struct drm_device *dev, void *data,
167 struct drm_file *file_priv)
169 struct v3d_file_priv *v3d_priv = file_priv->driver_priv;
170 struct drm_v3d_perfmon_destroy *req = data;
171 struct v3d_perfmon *perfmon;
173 mutex_lock(&v3d_priv->perfmon.lock);
174 perfmon = idr_remove(&v3d_priv->perfmon.idr, req->id);
175 mutex_unlock(&v3d_priv->perfmon.lock);
180 v3d_perfmon_put(perfmon);
185 int v3d_perfmon_get_values_ioctl(struct drm_device *dev, void *data,
186 struct drm_file *file_priv)
188 struct v3d_dev *v3d = to_v3d_dev(dev);
189 struct v3d_file_priv *v3d_priv = file_priv->driver_priv;
190 struct drm_v3d_perfmon_get_values *req = data;
191 struct v3d_perfmon *perfmon;
197 mutex_lock(&v3d_priv->perfmon.lock);
198 perfmon = idr_find(&v3d_priv->perfmon.idr, req->id);
199 v3d_perfmon_get(perfmon);
200 mutex_unlock(&v3d_priv->perfmon.lock);
205 v3d_perfmon_stop(v3d, perfmon, true);
207 if (copy_to_user(u64_to_user_ptr(req->values_ptr), perfmon->values,
208 perfmon->ncounters * sizeof(u64)))
211 v3d_perfmon_put(perfmon);