xref: /openbmc/linux/drivers/gpu/drm/drm_client.c (revision 4652ae7a)
1 // SPDX-License-Identifier: GPL-2.0 or MIT
2 /*
3  * Copyright 2018 Noralf Trønnes
4  */
5 
6 #include <linux/iosys-map.h>
7 #include <linux/list.h>
8 #include <linux/module.h>
9 #include <linux/mutex.h>
10 #include <linux/seq_file.h>
11 #include <linux/slab.h>
12 
13 #include <drm/drm_client.h>
14 #include <drm/drm_debugfs.h>
15 #include <drm/drm_device.h>
16 #include <drm/drm_drv.h>
17 #include <drm/drm_file.h>
18 #include <drm/drm_fourcc.h>
19 #include <drm/drm_framebuffer.h>
20 #include <drm/drm_gem.h>
21 #include <drm/drm_mode.h>
22 #include <drm/drm_print.h>
23 
24 #include "drm_crtc_internal.h"
25 #include "drm_internal.h"
26 
27 /**
28  * DOC: overview
29  *
30  * This library provides support for clients running in the kernel like fbdev and bootsplash.
31  *
32  * GEM drivers which provide a GEM based dumb buffer with a virtual address are supported.
33  */
34 
35 static int drm_client_open(struct drm_client_dev *client)
36 {
37 	struct drm_device *dev = client->dev;
38 	struct drm_file *file;
39 
40 	file = drm_file_alloc(dev->primary);
41 	if (IS_ERR(file))
42 		return PTR_ERR(file);
43 
44 	mutex_lock(&dev->filelist_mutex);
45 	list_add(&file->lhead, &dev->filelist_internal);
46 	mutex_unlock(&dev->filelist_mutex);
47 
48 	client->file = file;
49 
50 	return 0;
51 }
52 
53 static void drm_client_close(struct drm_client_dev *client)
54 {
55 	struct drm_device *dev = client->dev;
56 
57 	mutex_lock(&dev->filelist_mutex);
58 	list_del(&client->file->lhead);
59 	mutex_unlock(&dev->filelist_mutex);
60 
61 	drm_file_free(client->file);
62 }
63 
64 /**
65  * drm_client_init - Initialise a DRM client
66  * @dev: DRM device
67  * @client: DRM client
68  * @name: Client name
69  * @funcs: DRM client functions (optional)
70  *
71  * This initialises the client and opens a &drm_file.
72  * Use drm_client_register() to complete the process.
73  * The caller needs to hold a reference on @dev before calling this function.
74  * The client is freed when the &drm_device is unregistered. See drm_client_release().
75  *
76  * Returns:
77  * Zero on success or negative error code on failure.
78  */
79 int drm_client_init(struct drm_device *dev, struct drm_client_dev *client,
80 		    const char *name, const struct drm_client_funcs *funcs)
81 {
82 	int ret;
83 
84 	if (!drm_core_check_feature(dev, DRIVER_MODESET) || !dev->driver->dumb_create)
85 		return -EOPNOTSUPP;
86 
87 	if (funcs && !try_module_get(funcs->owner))
88 		return -ENODEV;
89 
90 	client->dev = dev;
91 	client->name = name;
92 	client->funcs = funcs;
93 
94 	ret = drm_client_modeset_create(client);
95 	if (ret)
96 		goto err_put_module;
97 
98 	ret = drm_client_open(client);
99 	if (ret)
100 		goto err_free;
101 
102 	drm_dev_get(dev);
103 
104 	return 0;
105 
106 err_free:
107 	drm_client_modeset_free(client);
108 err_put_module:
109 	if (funcs)
110 		module_put(funcs->owner);
111 
112 	return ret;
113 }
114 EXPORT_SYMBOL(drm_client_init);
115 
116 /**
117  * drm_client_register - Register client
118  * @client: DRM client
119  *
120  * Add the client to the &drm_device client list to activate its callbacks.
121  * @client must be initialized by a call to drm_client_init(). After
122  * drm_client_register() it is no longer permissible to call drm_client_release()
123  * directly (outside the unregister callback), instead cleanup will happen
124  * automatically on driver unload.
125  */
126 void drm_client_register(struct drm_client_dev *client)
127 {
128 	struct drm_device *dev = client->dev;
129 
130 	mutex_lock(&dev->clientlist_mutex);
131 	list_add(&client->list, &dev->clientlist);
132 	mutex_unlock(&dev->clientlist_mutex);
133 }
134 EXPORT_SYMBOL(drm_client_register);
135 
136 /**
137  * drm_client_release - Release DRM client resources
138  * @client: DRM client
139  *
140  * Releases resources by closing the &drm_file that was opened by drm_client_init().
141  * It is called automatically if the &drm_client_funcs.unregister callback is _not_ set.
142  *
143  * This function should only be called from the unregister callback. An exception
144  * is fbdev which cannot free the buffer if userspace has open file descriptors.
145  *
146  * Note:
147  * Clients cannot initiate a release by themselves. This is done to keep the code simple.
148  * The driver has to be unloaded before the client can be unloaded.
149  */
150 void drm_client_release(struct drm_client_dev *client)
151 {
152 	struct drm_device *dev = client->dev;
153 
154 	drm_dbg_kms(dev, "%s\n", client->name);
155 
156 	drm_client_modeset_free(client);
157 	drm_client_close(client);
158 	drm_dev_put(dev);
159 	if (client->funcs)
160 		module_put(client->funcs->owner);
161 }
162 EXPORT_SYMBOL(drm_client_release);
163 
164 void drm_client_dev_unregister(struct drm_device *dev)
165 {
166 	struct drm_client_dev *client, *tmp;
167 
168 	if (!drm_core_check_feature(dev, DRIVER_MODESET))
169 		return;
170 
171 	mutex_lock(&dev->clientlist_mutex);
172 	list_for_each_entry_safe(client, tmp, &dev->clientlist, list) {
173 		list_del(&client->list);
174 		if (client->funcs && client->funcs->unregister) {
175 			client->funcs->unregister(client);
176 		} else {
177 			drm_client_release(client);
178 			kfree(client);
179 		}
180 	}
181 	mutex_unlock(&dev->clientlist_mutex);
182 }
183 
184 /**
185  * drm_client_dev_hotplug - Send hotplug event to clients
186  * @dev: DRM device
187  *
188  * This function calls the &drm_client_funcs.hotplug callback on the attached clients.
189  *
190  * drm_kms_helper_hotplug_event() calls this function, so drivers that use it
191  * don't need to call this function themselves.
192  */
193 void drm_client_dev_hotplug(struct drm_device *dev)
194 {
195 	struct drm_client_dev *client;
196 	int ret;
197 
198 	if (!drm_core_check_feature(dev, DRIVER_MODESET))
199 		return;
200 
201 	if (!dev->mode_config.num_connector) {
202 		drm_dbg_kms(dev, "No connectors found, will not send hotplug events!\n");
203 		return;
204 	}
205 
206 	mutex_lock(&dev->clientlist_mutex);
207 	list_for_each_entry(client, &dev->clientlist, list) {
208 		if (!client->funcs || !client->funcs->hotplug)
209 			continue;
210 
211 		if (client->hotplug_failed)
212 			continue;
213 
214 		ret = client->funcs->hotplug(client);
215 		drm_dbg_kms(dev, "%s: ret=%d\n", client->name, ret);
216 		if (ret)
217 			client->hotplug_failed = true;
218 	}
219 	mutex_unlock(&dev->clientlist_mutex);
220 }
221 EXPORT_SYMBOL(drm_client_dev_hotplug);
222 
223 void drm_client_dev_restore(struct drm_device *dev)
224 {
225 	struct drm_client_dev *client;
226 	int ret;
227 
228 	if (!drm_core_check_feature(dev, DRIVER_MODESET))
229 		return;
230 
231 	mutex_lock(&dev->clientlist_mutex);
232 	list_for_each_entry(client, &dev->clientlist, list) {
233 		if (!client->funcs || !client->funcs->restore)
234 			continue;
235 
236 		ret = client->funcs->restore(client);
237 		drm_dbg_kms(dev, "%s: ret=%d\n", client->name, ret);
238 		if (!ret) /* The first one to return zero gets the privilege to restore */
239 			break;
240 	}
241 	mutex_unlock(&dev->clientlist_mutex);
242 }
243 
244 static void drm_client_buffer_delete(struct drm_client_buffer *buffer)
245 {
246 	struct drm_device *dev = buffer->client->dev;
247 
248 	if (buffer->gem) {
249 		drm_gem_vunmap_unlocked(buffer->gem, &buffer->map);
250 		drm_gem_object_put(buffer->gem);
251 	}
252 
253 	if (buffer->handle)
254 		drm_mode_destroy_dumb(dev, buffer->handle, buffer->client->file);
255 
256 	kfree(buffer);
257 }
258 
259 static struct drm_client_buffer *
260 drm_client_buffer_create(struct drm_client_dev *client, u32 width, u32 height, u32 format)
261 {
262 	const struct drm_format_info *info = drm_format_info(format);
263 	struct drm_mode_create_dumb dumb_args = { };
264 	struct drm_device *dev = client->dev;
265 	struct drm_client_buffer *buffer;
266 	struct drm_gem_object *obj;
267 	int ret;
268 
269 	buffer = kzalloc(sizeof(*buffer), GFP_KERNEL);
270 	if (!buffer)
271 		return ERR_PTR(-ENOMEM);
272 
273 	buffer->client = client;
274 
275 	dumb_args.width = width;
276 	dumb_args.height = height;
277 	dumb_args.bpp = drm_format_info_bpp(info, 0);
278 	ret = drm_mode_create_dumb(dev, &dumb_args, client->file);
279 	if (ret)
280 		goto err_delete;
281 
282 	buffer->handle = dumb_args.handle;
283 	buffer->pitch = dumb_args.pitch;
284 
285 	obj = drm_gem_object_lookup(client->file, dumb_args.handle);
286 	if (!obj)  {
287 		ret = -ENOENT;
288 		goto err_delete;
289 	}
290 
291 	buffer->gem = obj;
292 
293 	return buffer;
294 
295 err_delete:
296 	drm_client_buffer_delete(buffer);
297 
298 	return ERR_PTR(ret);
299 }
300 
301 /**
302  * drm_client_buffer_vmap - Map DRM client buffer into address space
303  * @buffer: DRM client buffer
304  * @map_copy: Returns the mapped memory's address
305  *
306  * This function maps a client buffer into kernel address space. If the
307  * buffer is already mapped, it returns the existing mapping's address.
308  *
309  * Client buffer mappings are not ref'counted. Each call to
310  * drm_client_buffer_vmap() should be followed by a call to
311  * drm_client_buffer_vunmap(); or the client buffer should be mapped
312  * throughout its lifetime.
313  *
314  * The returned address is a copy of the internal value. In contrast to
315  * other vmap interfaces, you don't need it for the client's vunmap
316  * function. So you can modify it at will during blit and draw operations.
317  *
318  * Returns:
319  *	0 on success, or a negative errno code otherwise.
320  */
321 int
322 drm_client_buffer_vmap(struct drm_client_buffer *buffer,
323 		       struct iosys_map *map_copy)
324 {
325 	struct iosys_map *map = &buffer->map;
326 	int ret;
327 
328 	/*
329 	 * FIXME: The dependency on GEM here isn't required, we could
330 	 * convert the driver handle to a dma-buf instead and use the
331 	 * backend-agnostic dma-buf vmap support instead. This would
332 	 * require that the handle2fd prime ioctl is reworked to pull the
333 	 * fd_install step out of the driver backend hooks, to make that
334 	 * final step optional for internal users.
335 	 */
336 	ret = drm_gem_vmap_unlocked(buffer->gem, map);
337 	if (ret)
338 		return ret;
339 
340 	*map_copy = *map;
341 
342 	return 0;
343 }
344 EXPORT_SYMBOL(drm_client_buffer_vmap);
345 
346 /**
347  * drm_client_buffer_vunmap - Unmap DRM client buffer
348  * @buffer: DRM client buffer
349  *
350  * This function removes a client buffer's memory mapping. Calling this
351  * function is only required by clients that manage their buffer mappings
352  * by themselves.
353  */
354 void drm_client_buffer_vunmap(struct drm_client_buffer *buffer)
355 {
356 	struct iosys_map *map = &buffer->map;
357 
358 	drm_gem_vunmap_unlocked(buffer->gem, map);
359 }
360 EXPORT_SYMBOL(drm_client_buffer_vunmap);
361 
362 static void drm_client_buffer_rmfb(struct drm_client_buffer *buffer)
363 {
364 	int ret;
365 
366 	if (!buffer->fb)
367 		return;
368 
369 	ret = drm_mode_rmfb(buffer->client->dev, buffer->fb->base.id, buffer->client->file);
370 	if (ret)
371 		drm_err(buffer->client->dev,
372 			"Error removing FB:%u (%d)\n", buffer->fb->base.id, ret);
373 
374 	buffer->fb = NULL;
375 }
376 
377 static int drm_client_buffer_addfb(struct drm_client_buffer *buffer,
378 				   u32 width, u32 height, u32 format)
379 {
380 	struct drm_client_dev *client = buffer->client;
381 	struct drm_mode_fb_cmd fb_req = { };
382 	const struct drm_format_info *info;
383 	int ret;
384 
385 	info = drm_format_info(format);
386 	fb_req.bpp = drm_format_info_bpp(info, 0);
387 	fb_req.depth = info->depth;
388 	fb_req.width = width;
389 	fb_req.height = height;
390 	fb_req.handle = buffer->handle;
391 	fb_req.pitch = buffer->pitch;
392 
393 	ret = drm_mode_addfb(client->dev, &fb_req, client->file);
394 	if (ret)
395 		return ret;
396 
397 	buffer->fb = drm_framebuffer_lookup(client->dev, buffer->client->file, fb_req.fb_id);
398 	if (WARN_ON(!buffer->fb))
399 		return -ENOENT;
400 
401 	/* drop the reference we picked up in framebuffer lookup */
402 	drm_framebuffer_put(buffer->fb);
403 
404 	strscpy(buffer->fb->comm, client->name, TASK_COMM_LEN);
405 
406 	return 0;
407 }
408 
409 /**
410  * drm_client_framebuffer_create - Create a client framebuffer
411  * @client: DRM client
412  * @width: Framebuffer width
413  * @height: Framebuffer height
414  * @format: Buffer format
415  *
416  * This function creates a &drm_client_buffer which consists of a
417  * &drm_framebuffer backed by a dumb buffer.
418  * Call drm_client_framebuffer_delete() to free the buffer.
419  *
420  * Returns:
421  * Pointer to a client buffer or an error pointer on failure.
422  */
423 struct drm_client_buffer *
424 drm_client_framebuffer_create(struct drm_client_dev *client, u32 width, u32 height, u32 format)
425 {
426 	struct drm_client_buffer *buffer;
427 	int ret;
428 
429 	buffer = drm_client_buffer_create(client, width, height, format);
430 	if (IS_ERR(buffer))
431 		return buffer;
432 
433 	ret = drm_client_buffer_addfb(buffer, width, height, format);
434 	if (ret) {
435 		drm_client_buffer_delete(buffer);
436 		return ERR_PTR(ret);
437 	}
438 
439 	return buffer;
440 }
441 EXPORT_SYMBOL(drm_client_framebuffer_create);
442 
443 /**
444  * drm_client_framebuffer_delete - Delete a client framebuffer
445  * @buffer: DRM client buffer (can be NULL)
446  */
447 void drm_client_framebuffer_delete(struct drm_client_buffer *buffer)
448 {
449 	if (!buffer)
450 		return;
451 
452 	drm_client_buffer_rmfb(buffer);
453 	drm_client_buffer_delete(buffer);
454 }
455 EXPORT_SYMBOL(drm_client_framebuffer_delete);
456 
457 /**
458  * drm_client_framebuffer_flush - Manually flush client framebuffer
459  * @buffer: DRM client buffer (can be NULL)
460  * @rect: Damage rectangle (if NULL flushes all)
461  *
462  * This calls &drm_framebuffer_funcs->dirty (if present) to flush buffer changes
463  * for drivers that need it.
464  *
465  * Returns:
466  * Zero on success or negative error code on failure.
467  */
468 int drm_client_framebuffer_flush(struct drm_client_buffer *buffer, struct drm_rect *rect)
469 {
470 	if (!buffer || !buffer->fb || !buffer->fb->funcs->dirty)
471 		return 0;
472 
473 	if (rect) {
474 		struct drm_clip_rect clip = {
475 			.x1 = rect->x1,
476 			.y1 = rect->y1,
477 			.x2 = rect->x2,
478 			.y2 = rect->y2,
479 		};
480 
481 		return buffer->fb->funcs->dirty(buffer->fb, buffer->client->file,
482 						0, 0, &clip, 1);
483 	}
484 
485 	return buffer->fb->funcs->dirty(buffer->fb, buffer->client->file,
486 					0, 0, NULL, 0);
487 }
488 EXPORT_SYMBOL(drm_client_framebuffer_flush);
489 
490 #ifdef CONFIG_DEBUG_FS
491 static int drm_client_debugfs_internal_clients(struct seq_file *m, void *data)
492 {
493 	struct drm_debugfs_entry *entry = m->private;
494 	struct drm_device *dev = entry->dev;
495 	struct drm_printer p = drm_seq_file_printer(m);
496 	struct drm_client_dev *client;
497 
498 	mutex_lock(&dev->clientlist_mutex);
499 	list_for_each_entry(client, &dev->clientlist, list)
500 		drm_printf(&p, "%s\n", client->name);
501 	mutex_unlock(&dev->clientlist_mutex);
502 
503 	return 0;
504 }
505 
506 static const struct drm_debugfs_info drm_client_debugfs_list[] = {
507 	{ "internal_clients", drm_client_debugfs_internal_clients, 0 },
508 };
509 
510 void drm_client_debugfs_init(struct drm_minor *minor)
511 {
512 	drm_debugfs_add_files(minor->dev, drm_client_debugfs_list,
513 			      ARRAY_SIZE(drm_client_debugfs_list));
514 }
515 #endif
516