blob: 183a6011adf0c9ef11f7683fece411e9f258cf24 [file] [log] [blame]
Hans de Goedea1a98682021-10-05 22:23:14 +02001// SPDX-License-Identifier: MIT
2/*
3 * Copyright (C) 2020 - 2021 Red Hat, Inc.
4 *
5 * Authors:
6 * Hans de Goede <hdegoede@redhat.com>
7 */
8
9#include <linux/device.h>
10#include <linux/kernel.h>
11#include <linux/list.h>
12#include <linux/module.h>
13#include <linux/mutex.h>
14#include <linux/slab.h>
15#include <drm/drm_privacy_screen_machine.h>
16#include <drm/drm_privacy_screen_consumer.h>
17#include <drm/drm_privacy_screen_driver.h>
18#include "drm_internal.h"
19
20/**
21 * DOC: overview
22 *
23 * This class allows non KMS drivers, from e.g. drivers/platform/x86 to
24 * register a privacy-screen device, which the KMS drivers can then use
25 * to implement the standard privacy-screen properties, see
26 * :ref:`Standard Connector Properties<standard_connector_properties>`.
27 *
28 * KMS drivers using a privacy-screen class device are advised to use the
29 * drm_connector_attach_privacy_screen_provider() and
30 * drm_connector_update_privacy_screen() helpers for dealing with this.
31 */
32
33#define to_drm_privacy_screen(dev) \
34 container_of(dev, struct drm_privacy_screen, dev)
35
36static DEFINE_MUTEX(drm_privacy_screen_lookup_lock);
37static LIST_HEAD(drm_privacy_screen_lookup_list);
38
39static DEFINE_MUTEX(drm_privacy_screen_devs_lock);
40static LIST_HEAD(drm_privacy_screen_devs);
41
42/*** drm_privacy_screen_machine.h functions ***/
43
44/**
45 * drm_privacy_screen_lookup_add - add an entry to the static privacy-screen
46 * lookup list
47 * @lookup: lookup list entry to add
48 *
49 * Add an entry to the static privacy-screen lookup list. Note the
50 * &struct list_head which is part of the &struct drm_privacy_screen_lookup
51 * gets added to a list owned by the privacy-screen core. So the passed in
52 * &struct drm_privacy_screen_lookup must not be free-ed until it is removed
53 * from the lookup list by calling drm_privacy_screen_lookup_remove().
54 */
55void drm_privacy_screen_lookup_add(struct drm_privacy_screen_lookup *lookup)
56{
57 mutex_lock(&drm_privacy_screen_lookup_lock);
58 list_add(&lookup->list, &drm_privacy_screen_lookup_list);
59 mutex_unlock(&drm_privacy_screen_lookup_lock);
60}
61EXPORT_SYMBOL(drm_privacy_screen_lookup_add);
62
63/**
64 * drm_privacy_screen_lookup_remove - remove an entry to the static
65 * privacy-screen lookup list
66 * @lookup: lookup list entry to remove
67 *
68 * Remove an entry previously added with drm_privacy_screen_lookup_add()
69 * from the static privacy-screen lookup list.
70 */
71void drm_privacy_screen_lookup_remove(struct drm_privacy_screen_lookup *lookup)
72{
73 mutex_lock(&drm_privacy_screen_lookup_lock);
74 list_del(&lookup->list);
75 mutex_unlock(&drm_privacy_screen_lookup_lock);
76}
77EXPORT_SYMBOL(drm_privacy_screen_lookup_remove);
78
79/*** drm_privacy_screen_consumer.h functions ***/
80
81static struct drm_privacy_screen *drm_privacy_screen_get_by_name(
82 const char *name)
83{
84 struct drm_privacy_screen *priv;
85 struct device *dev = NULL;
86
87 mutex_lock(&drm_privacy_screen_devs_lock);
88
89 list_for_each_entry(priv, &drm_privacy_screen_devs, list) {
90 if (strcmp(dev_name(&priv->dev), name) == 0) {
91 dev = get_device(&priv->dev);
92 break;
93 }
94 }
95
96 mutex_unlock(&drm_privacy_screen_devs_lock);
97
98 return dev ? to_drm_privacy_screen(dev) : NULL;
99}
100
101/**
102 * drm_privacy_screen_get - get a privacy-screen provider
103 * @dev: consumer-device for which to get a privacy-screen provider
104 * @con_id: (video)connector name for which to get a privacy-screen provider
105 *
106 * Get a privacy-screen provider for a privacy-screen attached to the
107 * display described by the @dev and @con_id parameters.
108 *
109 * Return:
110 * * A pointer to a &struct drm_privacy_screen on success.
111 * * ERR_PTR(-ENODEV) if no matching privacy-screen is found
112 * * ERR_PTR(-EPROBE_DEFER) if there is a matching privacy-screen,
113 * but it has not been registered yet.
114 */
115struct drm_privacy_screen *drm_privacy_screen_get(struct device *dev,
116 const char *con_id)
117{
118 const char *dev_id = dev ? dev_name(dev) : NULL;
119 struct drm_privacy_screen_lookup *l;
120 struct drm_privacy_screen *priv;
121 const char *provider = NULL;
122 int match, best = -1;
123
124 /*
125 * For now we only support using a static lookup table, which is
126 * populated by the drm_privacy_screen_arch_init() call. This should
127 * be extended with device-tree / fw_node lookup when support is added
128 * for device-tree using hardware with a privacy-screen.
129 *
130 * The lookup algorithm was shamelessly taken from the clock
131 * framework:
132 *
133 * We do slightly fuzzy matching here:
134 * An entry with a NULL ID is assumed to be a wildcard.
135 * If an entry has a device ID, it must match
136 * If an entry has a connection ID, it must match
137 * Then we take the most specific entry - with the following order
138 * of precedence: dev+con > dev only > con only.
139 */
140 mutex_lock(&drm_privacy_screen_lookup_lock);
141
142 list_for_each_entry(l, &drm_privacy_screen_lookup_list, list) {
143 match = 0;
144
145 if (l->dev_id) {
146 if (!dev_id || strcmp(l->dev_id, dev_id))
147 continue;
148
149 match += 2;
150 }
151
152 if (l->con_id) {
153 if (!con_id || strcmp(l->con_id, con_id))
154 continue;
155
156 match += 1;
157 }
158
159 if (match > best) {
160 provider = l->provider;
161 best = match;
162 }
163 }
164
165 mutex_unlock(&drm_privacy_screen_lookup_lock);
166
167 if (!provider)
168 return ERR_PTR(-ENODEV);
169
170 priv = drm_privacy_screen_get_by_name(provider);
171 if (!priv)
172 return ERR_PTR(-EPROBE_DEFER);
173
174 return priv;
175}
176EXPORT_SYMBOL(drm_privacy_screen_get);
177
178/**
179 * drm_privacy_screen_put - release a privacy-screen reference
180 * @priv: privacy screen reference to release
181 *
182 * Release a privacy-screen provider reference gotten through
183 * drm_privacy_screen_get(). May be called with a NULL or ERR_PTR,
184 * in which case it is a no-op.
185 */
186void drm_privacy_screen_put(struct drm_privacy_screen *priv)
187{
188 if (IS_ERR_OR_NULL(priv))
189 return;
190
191 put_device(&priv->dev);
192}
193EXPORT_SYMBOL(drm_privacy_screen_put);
194
195/**
196 * drm_privacy_screen_set_sw_state - set a privacy-screen's sw-state
197 * @priv: privacy screen to set the sw-state for
198 * @sw_state: new sw-state value to set
199 *
200 * Set the sw-state of a privacy screen. If the privacy-screen is not
201 * in a locked hw-state, then the actual and hw-state of the privacy-screen
202 * will be immediately updated to the new value. If the privacy-screen is
203 * in a locked hw-state, then the new sw-state will be remembered as the
204 * requested state to put the privacy-screen in when it becomes unlocked.
205 *
206 * Return: 0 on success, negative error code on failure.
207 */
208int drm_privacy_screen_set_sw_state(struct drm_privacy_screen *priv,
209 enum drm_privacy_screen_status sw_state)
210{
211 int ret = 0;
212
213 mutex_lock(&priv->lock);
214
215 if (!priv->ops) {
216 ret = -ENODEV;
217 goto out;
218 }
219
220 /*
221 * As per the DRM connector properties documentation, setting the
222 * sw_state while the hw_state is locked is allowed. In this case
223 * it is a no-op other then storing the new sw_state so that it
224 * can be honored when the state gets unlocked.
225 * Also skip the set if the hw already is in the desired state.
226 */
227 if (priv->hw_state >= PRIVACY_SCREEN_DISABLED_LOCKED ||
228 priv->hw_state == sw_state) {
229 priv->sw_state = sw_state;
230 goto out;
231 }
232
233 ret = priv->ops->set_sw_state(priv, sw_state);
234out:
235 mutex_unlock(&priv->lock);
236 return ret;
237}
238EXPORT_SYMBOL(drm_privacy_screen_set_sw_state);
239
240/**
241 * drm_privacy_screen_get_state - get privacy-screen's current state
242 * @priv: privacy screen to get the state for
243 * @sw_state_ret: address where to store the privacy-screens current sw-state
244 * @hw_state_ret: address where to store the privacy-screens current hw-state
245 *
246 * Get the current state of a privacy-screen, both the sw-state and the
247 * hw-state.
248 */
249void drm_privacy_screen_get_state(struct drm_privacy_screen *priv,
250 enum drm_privacy_screen_status *sw_state_ret,
251 enum drm_privacy_screen_status *hw_state_ret)
252{
253 mutex_lock(&priv->lock);
254 *sw_state_ret = priv->sw_state;
255 *hw_state_ret = priv->hw_state;
256 mutex_unlock(&priv->lock);
257}
258EXPORT_SYMBOL(drm_privacy_screen_get_state);
259
260/*** drm_privacy_screen_driver.h functions ***/
261
262static ssize_t sw_state_show(struct device *dev,
263 struct device_attribute *attr, char *buf)
264{
265 struct drm_privacy_screen *priv = to_drm_privacy_screen(dev);
266 const char * const sw_state_names[] = {
267 "Disabled",
268 "Enabled",
269 };
270 ssize_t ret;
271
272 mutex_lock(&priv->lock);
273
274 if (!priv->ops)
275 ret = -ENODEV;
276 else if (WARN_ON(priv->sw_state >= ARRAY_SIZE(sw_state_names)))
277 ret = -ENXIO;
278 else
279 ret = sprintf(buf, "%s\n", sw_state_names[priv->sw_state]);
280
281 mutex_unlock(&priv->lock);
282 return ret;
283}
284/*
285 * RO: Do not allow setting the sw_state through sysfs, this MUST be done
286 * through the drm_properties on the drm_connector.
287 */
288static DEVICE_ATTR_RO(sw_state);
289
290static ssize_t hw_state_show(struct device *dev,
291 struct device_attribute *attr, char *buf)
292{
293 struct drm_privacy_screen *priv = to_drm_privacy_screen(dev);
294 const char * const hw_state_names[] = {
295 "Disabled",
296 "Enabled",
297 "Disabled, locked",
298 "Enabled, locked",
299 };
300 ssize_t ret;
301
302 mutex_lock(&priv->lock);
303
304 if (!priv->ops)
305 ret = -ENODEV;
306 else if (WARN_ON(priv->hw_state >= ARRAY_SIZE(hw_state_names)))
307 ret = -ENXIO;
308 else
309 ret = sprintf(buf, "%s\n", hw_state_names[priv->hw_state]);
310
311 mutex_unlock(&priv->lock);
312 return ret;
313}
314static DEVICE_ATTR_RO(hw_state);
315
316static struct attribute *drm_privacy_screen_attrs[] = {
317 &dev_attr_sw_state.attr,
318 &dev_attr_hw_state.attr,
319 NULL
320};
321ATTRIBUTE_GROUPS(drm_privacy_screen);
322
323static struct device_type drm_privacy_screen_type = {
324 .name = "privacy_screen",
325 .groups = drm_privacy_screen_groups,
326};
327
328static void drm_privacy_screen_device_release(struct device *dev)
329{
330 struct drm_privacy_screen *priv = to_drm_privacy_screen(dev);
331
332 kfree(priv);
333}
334
335/**
336 * drm_privacy_screen_register - register a privacy-screen
337 * @parent: parent-device for the privacy-screen
338 * @ops: &struct drm_privacy_screen_ops pointer with ops for the privacy-screen
339 *
340 * Create and register a privacy-screen.
341 *
342 * Return:
343 * * A pointer to the created privacy-screen on success.
344 * * An ERR_PTR(errno) on failure.
345 */
346struct drm_privacy_screen *drm_privacy_screen_register(
347 struct device *parent, const struct drm_privacy_screen_ops *ops)
348{
349 struct drm_privacy_screen *priv;
350 int ret;
351
352 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
353 if (!priv)
354 return ERR_PTR(-ENOMEM);
355
356 mutex_init(&priv->lock);
357
358 priv->dev.class = drm_class;
359 priv->dev.type = &drm_privacy_screen_type;
360 priv->dev.parent = parent;
361 priv->dev.release = drm_privacy_screen_device_release;
362 dev_set_name(&priv->dev, "privacy_screen-%s", dev_name(parent));
363 priv->ops = ops;
364
365 priv->ops->get_hw_state(priv);
366
367 ret = device_register(&priv->dev);
368 if (ret) {
369 put_device(&priv->dev);
370 return ERR_PTR(ret);
371 }
372
373 mutex_lock(&drm_privacy_screen_devs_lock);
374 list_add(&priv->list, &drm_privacy_screen_devs);
375 mutex_unlock(&drm_privacy_screen_devs_lock);
376
377 return priv;
378}
379EXPORT_SYMBOL(drm_privacy_screen_register);
380
381/**
382 * drm_privacy_screen_unregister - unregister privacy-screen
383 * @priv: privacy-screen to unregister
384 *
385 * Unregister a privacy-screen registered with drm_privacy_screen_register().
386 * May be called with a NULL or ERR_PTR, in which case it is a no-op.
387 */
388void drm_privacy_screen_unregister(struct drm_privacy_screen *priv)
389{
390 if (IS_ERR_OR_NULL(priv))
391 return;
392
393 mutex_lock(&drm_privacy_screen_devs_lock);
394 list_del(&priv->list);
395 mutex_unlock(&drm_privacy_screen_devs_lock);
396
397 mutex_lock(&priv->lock);
398 priv->ops = NULL;
399 mutex_unlock(&priv->lock);
400
401 device_unregister(&priv->dev);
402}
403EXPORT_SYMBOL(drm_privacy_screen_unregister);