1 // SPDX-License-Identifier: GPL-2.0
3 #ifndef _DRM_MANAGED_H_
4 #define _DRM_MANAGED_H_
7 #include <linux/overflow.h>
8 #include <linux/types.h>
12 typedef void (*drmres_release_t)(struct drm_device *dev, void *res);
15 * drmm_add_action - add a managed release action to a &drm_device
17 * @action: function which should be called when @dev is released
18 * @data: opaque pointer, passed to @action
20 * This function adds the @release action with optional parameter @data to the
21 * list of cleanup actions for @dev. The cleanup actions will be run in reverse
22 * order in the final drm_dev_put() call for @dev.
24 #define drmm_add_action(dev, action, data) \
25 __drmm_add_action(dev, action, data, #action)
27 int __must_check __drmm_add_action(struct drm_device *dev,
28 drmres_release_t action,
29 void *data, const char *name);
32 * drmm_add_action_or_reset - add a managed release action to a &drm_device
34 * @action: function which should be called when @dev is released
35 * @data: opaque pointer, passed to @action
37 * Similar to drmm_add_action(), with the only difference that upon failure
38 * @action is directly called for any cleanup work necessary on failures.
40 #define drmm_add_action_or_reset(dev, action, data) \
41 __drmm_add_action_or_reset(dev, action, data, #action)
43 int __must_check __drmm_add_action_or_reset(struct drm_device *dev,
44 drmres_release_t action,
45 void *data, const char *name);
47 void *drmm_kmalloc(struct drm_device *dev, size_t size, gfp_t gfp) __malloc;
50 * drmm_kzalloc - &drm_device managed kzalloc()
52 * @size: size of the memory allocation
53 * @gfp: GFP allocation flags
55 * This is a &drm_device managed version of kzalloc(). The allocated memory is
56 * automatically freed on the final drm_dev_put(). Memory can also be freed
57 * before the final drm_dev_put() by calling drmm_kfree().
59 static inline void *drmm_kzalloc(struct drm_device *dev, size_t size, gfp_t gfp)
61 return drmm_kmalloc(dev, size, gfp | __GFP_ZERO);
65 * drmm_kmalloc_array - &drm_device managed kmalloc_array()
67 * @n: number of array elements to allocate
68 * @size: size of array member
69 * @flags: GFP allocation flags
71 * This is a &drm_device managed version of kmalloc_array(). The allocated
72 * memory is automatically freed on the final drm_dev_put() and works exactly
73 * like a memory allocation obtained by drmm_kmalloc().
75 static inline void *drmm_kmalloc_array(struct drm_device *dev,
76 size_t n, size_t size, gfp_t flags)
80 if (unlikely(check_mul_overflow(n, size, &bytes)))
83 return drmm_kmalloc(dev, bytes, flags);
87 * drmm_kcalloc - &drm_device managed kcalloc()
89 * @n: number of array elements to allocate
90 * @size: size of array member
91 * @flags: GFP allocation flags
93 * This is a &drm_device managed version of kcalloc(). The allocated memory is
94 * automatically freed on the final drm_dev_put() and works exactly like a
95 * memory allocation obtained by drmm_kmalloc().
97 static inline void *drmm_kcalloc(struct drm_device *dev,
98 size_t n, size_t size, gfp_t flags)
100 return drmm_kmalloc_array(dev, n, size, flags | __GFP_ZERO);
103 char *drmm_kstrdup(struct drm_device *dev, const char *s, gfp_t gfp);
105 void drmm_kfree(struct drm_device *dev, void *data);