1 // SPDX-License-Identifier: GPL-2.0
3 * drivers/base/devres.c - device resource management
5 * Copyright (c) 2006 SUSE Linux Products GmbH
6 * Copyright (c) 2006 Tejun Heo <teheo@suse.de>
9 #include <linux/device.h>
10 #include <linux/module.h>
11 #include <linux/slab.h>
12 #include <linux/percpu.h>
14 #include <asm/sections.h>
19 struct list_head entry
;
21 #ifdef CONFIG_DEBUG_DEVRES
28 struct devres_node node
;
30 * Some archs want to perform DMA into kmalloc caches
31 * and need a guaranteed alignment larger than
32 * the alignment of a 64-bit integer.
33 * Thus we use ARCH_KMALLOC_MINALIGN here and get exactly the same
34 * buffer alignment as if it was allocated by plain kmalloc().
36 u8
__aligned(ARCH_KMALLOC_MINALIGN
) data
[];
40 struct devres_node node
[2];
46 #ifdef CONFIG_DEBUG_DEVRES
47 static int log_devres
= 0;
48 module_param_named(log
, log_devres
, int, S_IRUGO
| S_IWUSR
);
50 static void set_node_dbginfo(struct devres_node
*node
, const char *name
,
57 static void devres_log(struct device
*dev
, struct devres_node
*node
,
60 if (unlikely(log_devres
))
61 dev_err(dev
, "DEVRES %3s %p %s (%lu bytes)\n",
62 op
, node
, node
->name
, (unsigned long)node
->size
);
64 #else /* CONFIG_DEBUG_DEVRES */
65 #define set_node_dbginfo(node, n, s) do {} while (0)
66 #define devres_log(dev, node, op) do {} while (0)
67 #endif /* CONFIG_DEBUG_DEVRES */
70 * Release functions for devres group. These callbacks are used only
73 static void group_open_release(struct device
*dev
, void *res
)
78 static void group_close_release(struct device
*dev
, void *res
)
83 static struct devres_group
* node_to_group(struct devres_node
*node
)
85 if (node
->release
== &group_open_release
)
86 return container_of(node
, struct devres_group
, node
[0]);
87 if (node
->release
== &group_close_release
)
88 return container_of(node
, struct devres_group
, node
[1]);
92 static bool check_dr_size(size_t size
, size_t *tot_size
)
94 /* We must catch any near-SIZE_MAX cases that could overflow. */
95 if (unlikely(check_add_overflow(sizeof(struct devres
),
102 static __always_inline
struct devres
* alloc_dr(dr_release_t release
,
103 size_t size
, gfp_t gfp
, int nid
)
108 if (!check_dr_size(size
, &tot_size
))
111 dr
= kmalloc_node_track_caller(tot_size
, gfp
, nid
);
115 memset(dr
, 0, offsetof(struct devres
, data
));
117 INIT_LIST_HEAD(&dr
->node
.entry
);
118 dr
->node
.release
= release
;
122 static void add_dr(struct device
*dev
, struct devres_node
*node
)
124 devres_log(dev
, node
, "ADD");
125 BUG_ON(!list_empty(&node
->entry
));
126 list_add_tail(&node
->entry
, &dev
->devres_head
);
129 static void replace_dr(struct device
*dev
,
130 struct devres_node
*old
, struct devres_node
*new)
132 devres_log(dev
, old
, "REPLACE");
133 BUG_ON(!list_empty(&new->entry
));
134 list_replace(&old
->entry
, &new->entry
);
137 #ifdef CONFIG_DEBUG_DEVRES
138 void * __devres_alloc_node(dr_release_t release
, size_t size
, gfp_t gfp
, int nid
,
143 dr
= alloc_dr(release
, size
, gfp
| __GFP_ZERO
, nid
);
146 set_node_dbginfo(&dr
->node
, name
, size
);
149 EXPORT_SYMBOL_GPL(__devres_alloc_node
);
152 * devres_alloc_node - Allocate device resource data
153 * @release: Release function devres will be associated with
154 * @size: Allocation size
155 * @gfp: Allocation flags
158 * Allocate devres of @size bytes. The allocated area is zeroed, then
159 * associated with @release. The returned pointer can be passed to
160 * other devres_*() functions.
163 * Pointer to allocated devres on success, NULL on failure.
165 void * devres_alloc_node(dr_release_t release
, size_t size
, gfp_t gfp
, int nid
)
169 dr
= alloc_dr(release
, size
, gfp
| __GFP_ZERO
, nid
);
174 EXPORT_SYMBOL_GPL(devres_alloc_node
);
178 * devres_for_each_res - Resource iterator
179 * @dev: Device to iterate resource from
180 * @release: Look for resources associated with this release function
181 * @match: Match function (optional)
182 * @match_data: Data for the match function
183 * @fn: Function to be called for each matched resource.
184 * @data: Data for @fn, the 3rd parameter of @fn
186 * Call @fn for each devres of @dev which is associated with @release
187 * and for which @match returns 1.
192 void devres_for_each_res(struct device
*dev
, dr_release_t release
,
193 dr_match_t match
, void *match_data
,
194 void (*fn
)(struct device
*, void *, void *),
197 struct devres_node
*node
;
198 struct devres_node
*tmp
;
204 spin_lock_irqsave(&dev
->devres_lock
, flags
);
205 list_for_each_entry_safe_reverse(node
, tmp
,
206 &dev
->devres_head
, entry
) {
207 struct devres
*dr
= container_of(node
, struct devres
, node
);
209 if (node
->release
!= release
)
211 if (match
&& !match(dev
, dr
->data
, match_data
))
213 fn(dev
, dr
->data
, data
);
215 spin_unlock_irqrestore(&dev
->devres_lock
, flags
);
217 EXPORT_SYMBOL_GPL(devres_for_each_res
);
220 * devres_free - Free device resource data
221 * @res: Pointer to devres data to free
223 * Free devres created with devres_alloc().
225 void devres_free(void *res
)
228 struct devres
*dr
= container_of(res
, struct devres
, data
);
230 BUG_ON(!list_empty(&dr
->node
.entry
));
234 EXPORT_SYMBOL_GPL(devres_free
);
237 * devres_add - Register device resource
238 * @dev: Device to add resource to
239 * @res: Resource to register
241 * Register devres @res to @dev. @res should have been allocated
242 * using devres_alloc(). On driver detach, the associated release
243 * function will be invoked and devres will be freed automatically.
245 void devres_add(struct device
*dev
, void *res
)
247 struct devres
*dr
= container_of(res
, struct devres
, data
);
250 spin_lock_irqsave(&dev
->devres_lock
, flags
);
251 add_dr(dev
, &dr
->node
);
252 spin_unlock_irqrestore(&dev
->devres_lock
, flags
);
254 EXPORT_SYMBOL_GPL(devres_add
);
256 static struct devres
*find_dr(struct device
*dev
, dr_release_t release
,
257 dr_match_t match
, void *match_data
)
259 struct devres_node
*node
;
261 list_for_each_entry_reverse(node
, &dev
->devres_head
, entry
) {
262 struct devres
*dr
= container_of(node
, struct devres
, node
);
264 if (node
->release
!= release
)
266 if (match
&& !match(dev
, dr
->data
, match_data
))
275 * devres_find - Find device resource
276 * @dev: Device to lookup resource from
277 * @release: Look for resources associated with this release function
278 * @match: Match function (optional)
279 * @match_data: Data for the match function
281 * Find the latest devres of @dev which is associated with @release
282 * and for which @match returns 1. If @match is NULL, it's considered
286 * Pointer to found devres, NULL if not found.
288 void * devres_find(struct device
*dev
, dr_release_t release
,
289 dr_match_t match
, void *match_data
)
294 spin_lock_irqsave(&dev
->devres_lock
, flags
);
295 dr
= find_dr(dev
, release
, match
, match_data
);
296 spin_unlock_irqrestore(&dev
->devres_lock
, flags
);
302 EXPORT_SYMBOL_GPL(devres_find
);
305 * devres_get - Find devres, if non-existent, add one atomically
306 * @dev: Device to lookup or add devres for
307 * @new_res: Pointer to new initialized devres to add if not found
308 * @match: Match function (optional)
309 * @match_data: Data for the match function
311 * Find the latest devres of @dev which has the same release function
312 * as @new_res and for which @match return 1. If found, @new_res is
313 * freed; otherwise, @new_res is added atomically.
316 * Pointer to found or added devres.
318 void * devres_get(struct device
*dev
, void *new_res
,
319 dr_match_t match
, void *match_data
)
321 struct devres
*new_dr
= container_of(new_res
, struct devres
, data
);
325 spin_lock_irqsave(&dev
->devres_lock
, flags
);
326 dr
= find_dr(dev
, new_dr
->node
.release
, match
, match_data
);
328 add_dr(dev
, &new_dr
->node
);
332 spin_unlock_irqrestore(&dev
->devres_lock
, flags
);
333 devres_free(new_res
);
337 EXPORT_SYMBOL_GPL(devres_get
);
340 * devres_remove - Find a device resource and remove it
341 * @dev: Device to find resource from
342 * @release: Look for resources associated with this release function
343 * @match: Match function (optional)
344 * @match_data: Data for the match function
346 * Find the latest devres of @dev associated with @release and for
347 * which @match returns 1. If @match is NULL, it's considered to
348 * match all. If found, the resource is removed atomically and
352 * Pointer to removed devres on success, NULL if not found.
354 void * devres_remove(struct device
*dev
, dr_release_t release
,
355 dr_match_t match
, void *match_data
)
360 spin_lock_irqsave(&dev
->devres_lock
, flags
);
361 dr
= find_dr(dev
, release
, match
, match_data
);
363 list_del_init(&dr
->node
.entry
);
364 devres_log(dev
, &dr
->node
, "REM");
366 spin_unlock_irqrestore(&dev
->devres_lock
, flags
);
372 EXPORT_SYMBOL_GPL(devres_remove
);
375 * devres_destroy - Find a device resource and destroy it
376 * @dev: Device to find resource from
377 * @release: Look for resources associated with this release function
378 * @match: Match function (optional)
379 * @match_data: Data for the match function
381 * Find the latest devres of @dev associated with @release and for
382 * which @match returns 1. If @match is NULL, it's considered to
383 * match all. If found, the resource is removed atomically and freed.
385 * Note that the release function for the resource will not be called,
386 * only the devres-allocated data will be freed. The caller becomes
387 * responsible for freeing any other data.
390 * 0 if devres is found and freed, -ENOENT if not found.
392 int devres_destroy(struct device
*dev
, dr_release_t release
,
393 dr_match_t match
, void *match_data
)
397 res
= devres_remove(dev
, release
, match
, match_data
);
404 EXPORT_SYMBOL_GPL(devres_destroy
);
408 * devres_release - Find a device resource and destroy it, calling release
409 * @dev: Device to find resource from
410 * @release: Look for resources associated with this release function
411 * @match: Match function (optional)
412 * @match_data: Data for the match function
414 * Find the latest devres of @dev associated with @release and for
415 * which @match returns 1. If @match is NULL, it's considered to
416 * match all. If found, the resource is removed atomically, the
417 * release function called and the resource freed.
420 * 0 if devres is found and freed, -ENOENT if not found.
422 int devres_release(struct device
*dev
, dr_release_t release
,
423 dr_match_t match
, void *match_data
)
427 res
= devres_remove(dev
, release
, match
, match_data
);
431 (*release
)(dev
, res
);
435 EXPORT_SYMBOL_GPL(devres_release
);
437 static int remove_nodes(struct device
*dev
,
438 struct list_head
*first
, struct list_head
*end
,
439 struct list_head
*todo
)
441 int cnt
= 0, nr_groups
= 0;
442 struct list_head
*cur
;
444 /* First pass - move normal devres entries to @todo and clear
445 * devres_group colors.
449 struct devres_node
*node
;
450 struct devres_group
*grp
;
452 node
= list_entry(cur
, struct devres_node
, entry
);
455 grp
= node_to_group(node
);
457 /* clear color of group markers in the first pass */
461 /* regular devres entry */
462 if (&node
->entry
== first
)
464 list_move_tail(&node
->entry
, todo
);
472 /* Second pass - Scan groups and color them. A group gets
473 * color value of two iff the group is wholly contained in
474 * [cur, end). That is, for a closed group, both opening and
475 * closing markers should be in the range, while just the
476 * opening marker is enough for an open group.
480 struct devres_node
*node
;
481 struct devres_group
*grp
;
483 node
= list_entry(cur
, struct devres_node
, entry
);
486 grp
= node_to_group(node
);
487 BUG_ON(!grp
|| list_empty(&grp
->node
[0].entry
));
490 if (list_empty(&grp
->node
[1].entry
))
493 BUG_ON(grp
->color
<= 0 || grp
->color
> 2);
494 if (grp
->color
== 2) {
495 /* No need to update cur or end. The removed
496 * nodes are always before both.
498 list_move_tail(&grp
->node
[0].entry
, todo
);
499 list_del_init(&grp
->node
[1].entry
);
506 static int release_nodes(struct device
*dev
, struct list_head
*first
,
507 struct list_head
*end
, unsigned long flags
)
508 __releases(&dev
->devres_lock
)
512 struct devres
*dr
, *tmp
;
514 cnt
= remove_nodes(dev
, first
, end
, &todo
);
516 spin_unlock_irqrestore(&dev
->devres_lock
, flags
);
518 /* Release. Note that both devres and devres_group are
519 * handled as devres in the following loop. This is safe.
521 list_for_each_entry_safe_reverse(dr
, tmp
, &todo
, node
.entry
) {
522 devres_log(dev
, &dr
->node
, "REL");
523 dr
->node
.release(dev
, dr
->data
);
531 * devres_release_all - Release all managed resources
532 * @dev: Device to release resources for
534 * Release all resources associated with @dev. This function is
535 * called on driver detach.
537 int devres_release_all(struct device
*dev
)
541 /* Looks like an uninitialized device structure */
542 if (WARN_ON(dev
->devres_head
.next
== NULL
))
544 spin_lock_irqsave(&dev
->devres_lock
, flags
);
545 return release_nodes(dev
, dev
->devres_head
.next
, &dev
->devres_head
,
550 * devres_open_group - Open a new devres group
551 * @dev: Device to open devres group for
553 * @gfp: Allocation flags
555 * Open a new devres group for @dev with @id. For @id, using a
556 * pointer to an object which won't be used for another group is
557 * recommended. If @id is NULL, address-wise unique ID is created.
560 * ID of the new group, NULL on failure.
562 void * devres_open_group(struct device
*dev
, void *id
, gfp_t gfp
)
564 struct devres_group
*grp
;
567 grp
= kmalloc(sizeof(*grp
), gfp
);
571 grp
->node
[0].release
= &group_open_release
;
572 grp
->node
[1].release
= &group_close_release
;
573 INIT_LIST_HEAD(&grp
->node
[0].entry
);
574 INIT_LIST_HEAD(&grp
->node
[1].entry
);
575 set_node_dbginfo(&grp
->node
[0], "grp<", 0);
576 set_node_dbginfo(&grp
->node
[1], "grp>", 0);
581 spin_lock_irqsave(&dev
->devres_lock
, flags
);
582 add_dr(dev
, &grp
->node
[0]);
583 spin_unlock_irqrestore(&dev
->devres_lock
, flags
);
586 EXPORT_SYMBOL_GPL(devres_open_group
);
588 /* Find devres group with ID @id. If @id is NULL, look for the latest. */
589 static struct devres_group
* find_group(struct device
*dev
, void *id
)
591 struct devres_node
*node
;
593 list_for_each_entry_reverse(node
, &dev
->devres_head
, entry
) {
594 struct devres_group
*grp
;
596 if (node
->release
!= &group_open_release
)
599 grp
= container_of(node
, struct devres_group
, node
[0]);
604 } else if (list_empty(&grp
->node
[1].entry
))
612 * devres_close_group - Close a devres group
613 * @dev: Device to close devres group for
614 * @id: ID of target group, can be NULL
616 * Close the group identified by @id. If @id is NULL, the latest open
619 void devres_close_group(struct device
*dev
, void *id
)
621 struct devres_group
*grp
;
624 spin_lock_irqsave(&dev
->devres_lock
, flags
);
626 grp
= find_group(dev
, id
);
628 add_dr(dev
, &grp
->node
[1]);
632 spin_unlock_irqrestore(&dev
->devres_lock
, flags
);
634 EXPORT_SYMBOL_GPL(devres_close_group
);
637 * devres_remove_group - Remove a devres group
638 * @dev: Device to remove group for
639 * @id: ID of target group, can be NULL
641 * Remove the group identified by @id. If @id is NULL, the latest
642 * open group is selected. Note that removing a group doesn't affect
643 * any other resources.
645 void devres_remove_group(struct device
*dev
, void *id
)
647 struct devres_group
*grp
;
650 spin_lock_irqsave(&dev
->devres_lock
, flags
);
652 grp
= find_group(dev
, id
);
654 list_del_init(&grp
->node
[0].entry
);
655 list_del_init(&grp
->node
[1].entry
);
656 devres_log(dev
, &grp
->node
[0], "REM");
660 spin_unlock_irqrestore(&dev
->devres_lock
, flags
);
664 EXPORT_SYMBOL_GPL(devres_remove_group
);
667 * devres_release_group - Release resources in a devres group
668 * @dev: Device to release group for
669 * @id: ID of target group, can be NULL
671 * Release all resources in the group identified by @id. If @id is
672 * NULL, the latest open group is selected. The selected group and
673 * groups properly nested inside the selected group are removed.
676 * The number of released non-group resources.
678 int devres_release_group(struct device
*dev
, void *id
)
680 struct devres_group
*grp
;
684 spin_lock_irqsave(&dev
->devres_lock
, flags
);
686 grp
= find_group(dev
, id
);
688 struct list_head
*first
= &grp
->node
[0].entry
;
689 struct list_head
*end
= &dev
->devres_head
;
691 if (!list_empty(&grp
->node
[1].entry
))
692 end
= grp
->node
[1].entry
.next
;
694 cnt
= release_nodes(dev
, first
, end
, flags
);
697 spin_unlock_irqrestore(&dev
->devres_lock
, flags
);
702 EXPORT_SYMBOL_GPL(devres_release_group
);
705 * Custom devres actions allow inserting a simple function call
706 * into the teadown sequence.
709 struct action_devres
{
711 void (*action
)(void *);
714 static int devm_action_match(struct device
*dev
, void *res
, void *p
)
716 struct action_devres
*devres
= res
;
717 struct action_devres
*target
= p
;
719 return devres
->action
== target
->action
&&
720 devres
->data
== target
->data
;
723 static void devm_action_release(struct device
*dev
, void *res
)
725 struct action_devres
*devres
= res
;
727 devres
->action(devres
->data
);
731 * devm_add_action() - add a custom action to list of managed resources
732 * @dev: Device that owns the action
733 * @action: Function that should be called
734 * @data: Pointer to data passed to @action implementation
736 * This adds a custom action to the list of managed resources so that
737 * it gets executed as part of standard resource unwinding.
739 int devm_add_action(struct device
*dev
, void (*action
)(void *), void *data
)
741 struct action_devres
*devres
;
743 devres
= devres_alloc(devm_action_release
,
744 sizeof(struct action_devres
), GFP_KERNEL
);
749 devres
->action
= action
;
751 devres_add(dev
, devres
);
754 EXPORT_SYMBOL_GPL(devm_add_action
);
757 * devm_remove_action() - removes previously added custom action
758 * @dev: Device that owns the action
759 * @action: Function implementing the action
760 * @data: Pointer to data passed to @action implementation
762 * Removes instance of @action previously added by devm_add_action().
763 * Both action and data should match one of the existing entries.
765 void devm_remove_action(struct device
*dev
, void (*action
)(void *), void *data
)
767 struct action_devres devres
= {
772 WARN_ON(devres_destroy(dev
, devm_action_release
, devm_action_match
,
775 EXPORT_SYMBOL_GPL(devm_remove_action
);
778 * devm_release_action() - release previously added custom action
779 * @dev: Device that owns the action
780 * @action: Function implementing the action
781 * @data: Pointer to data passed to @action implementation
783 * Releases and removes instance of @action previously added by
784 * devm_add_action(). Both action and data should match one of the
787 void devm_release_action(struct device
*dev
, void (*action
)(void *), void *data
)
789 struct action_devres devres
= {
794 WARN_ON(devres_release(dev
, devm_action_release
, devm_action_match
,
798 EXPORT_SYMBOL_GPL(devm_release_action
);
801 * Managed kmalloc/kfree
803 static void devm_kmalloc_release(struct device
*dev
, void *res
)
808 static int devm_kmalloc_match(struct device
*dev
, void *res
, void *data
)
814 * devm_kmalloc - Resource-managed kmalloc
815 * @dev: Device to allocate memory for
816 * @size: Allocation size
817 * @gfp: Allocation gfp flags
819 * Managed kmalloc. Memory allocated with this function is
820 * automatically freed on driver detach. Like all other devres
821 * resources, guaranteed alignment is unsigned long long.
824 * Pointer to allocated memory on success, NULL on failure.
826 void *devm_kmalloc(struct device
*dev
, size_t size
, gfp_t gfp
)
831 return ZERO_SIZE_PTR
;
833 /* use raw alloc_dr for kmalloc caller tracing */
834 dr
= alloc_dr(devm_kmalloc_release
, size
, gfp
, dev_to_node(dev
));
839 * This is named devm_kzalloc_release for historical reasons
840 * The initial implementation did not support kmalloc, only kzalloc
842 set_node_dbginfo(&dr
->node
, "devm_kzalloc_release", size
);
843 devres_add(dev
, dr
->data
);
846 EXPORT_SYMBOL_GPL(devm_kmalloc
);
849 * devm_krealloc - Resource-managed krealloc()
850 * @dev: Device to re-allocate memory for
851 * @ptr: Pointer to the memory chunk to re-allocate
852 * @new_size: New allocation size
853 * @gfp: Allocation gfp flags
855 * Managed krealloc(). Resizes the memory chunk allocated with devm_kmalloc().
856 * Behaves similarly to regular krealloc(): if @ptr is NULL or ZERO_SIZE_PTR,
857 * it's the equivalent of devm_kmalloc(). If new_size is zero, it frees the
858 * previously allocated memory and returns ZERO_SIZE_PTR. This function doesn't
859 * change the order in which the release callback for the re-alloc'ed devres
860 * will be called (except when falling back to devm_kmalloc() or when freeing
861 * resources when new_size is zero). The contents of the memory are preserved
862 * up to the lesser of new and old sizes.
864 void *devm_krealloc(struct device
*dev
, void *ptr
, size_t new_size
, gfp_t gfp
)
866 size_t total_new_size
, total_old_size
;
867 struct devres
*old_dr
, *new_dr
;
870 if (unlikely(!new_size
)) {
871 devm_kfree(dev
, ptr
);
872 return ZERO_SIZE_PTR
;
875 if (unlikely(ZERO_OR_NULL_PTR(ptr
)))
876 return devm_kmalloc(dev
, new_size
, gfp
);
878 if (WARN_ON(is_kernel_rodata((unsigned long)ptr
)))
880 * We cannot reliably realloc a const string returned by
881 * devm_kstrdup_const().
885 if (!check_dr_size(new_size
, &total_new_size
))
888 total_old_size
= ksize(container_of(ptr
, struct devres
, data
));
889 if (total_old_size
== 0) {
890 WARN(1, "Pointer doesn't point to dynamically allocated memory.");
895 * If new size is smaller or equal to the actual number of bytes
896 * allocated previously - just return the same pointer.
898 if (total_new_size
<= total_old_size
)
902 * Otherwise: allocate new, larger chunk. We need to allocate before
903 * taking the lock as most probably the caller uses GFP_KERNEL.
905 new_dr
= alloc_dr(devm_kmalloc_release
,
906 total_new_size
, gfp
, dev_to_node(dev
));
911 * The spinlock protects the linked list against concurrent
912 * modifications but not the resource itself.
914 spin_lock_irqsave(&dev
->devres_lock
, flags
);
916 old_dr
= find_dr(dev
, devm_kmalloc_release
, devm_kmalloc_match
, ptr
);
918 spin_unlock_irqrestore(&dev
->devres_lock
, flags
);
920 WARN(1, "Memory chunk not managed or managed by a different device.");
924 replace_dr(dev
, &old_dr
->node
, &new_dr
->node
);
926 spin_unlock_irqrestore(&dev
->devres_lock
, flags
);
929 * We can copy the memory contents after releasing the lock as we're
930 * no longer modyfing the list links.
932 memcpy(new_dr
->data
, old_dr
->data
,
933 total_old_size
- offsetof(struct devres
, data
));
935 * Same for releasing the old devres - it's now been removed from the
936 * list. This is also the reason why we must not use devm_kfree() - the
937 * links are no longer valid.
943 EXPORT_SYMBOL_GPL(devm_krealloc
);
946 * devm_kstrdup - Allocate resource managed space and
947 * copy an existing string into that.
948 * @dev: Device to allocate memory for
949 * @s: the string to duplicate
950 * @gfp: the GFP mask used in the devm_kmalloc() call when
953 * Pointer to allocated string on success, NULL on failure.
955 char *devm_kstrdup(struct device
*dev
, const char *s
, gfp_t gfp
)
963 size
= strlen(s
) + 1;
964 buf
= devm_kmalloc(dev
, size
, gfp
);
966 memcpy(buf
, s
, size
);
969 EXPORT_SYMBOL_GPL(devm_kstrdup
);
972 * devm_kstrdup_const - resource managed conditional string duplication
973 * @dev: device for which to duplicate the string
974 * @s: the string to duplicate
975 * @gfp: the GFP mask used in the kmalloc() call when allocating memory
977 * Strings allocated by devm_kstrdup_const will be automatically freed when
978 * the associated device is detached.
981 * Source string if it is in .rodata section otherwise it falls back to
984 const char *devm_kstrdup_const(struct device
*dev
, const char *s
, gfp_t gfp
)
986 if (is_kernel_rodata((unsigned long)s
))
989 return devm_kstrdup(dev
, s
, gfp
);
991 EXPORT_SYMBOL_GPL(devm_kstrdup_const
);
994 * devm_kvasprintf - Allocate resource managed space and format a string
996 * @dev: Device to allocate memory for
997 * @gfp: the GFP mask used in the devm_kmalloc() call when
999 * @fmt: The printf()-style format string
1000 * @ap: Arguments for the format string
1002 * Pointer to allocated string on success, NULL on failure.
1004 char *devm_kvasprintf(struct device
*dev
, gfp_t gfp
, const char *fmt
,
1012 len
= vsnprintf(NULL
, 0, fmt
, aq
);
1015 p
= devm_kmalloc(dev
, len
+1, gfp
);
1019 vsnprintf(p
, len
+1, fmt
, ap
);
1023 EXPORT_SYMBOL(devm_kvasprintf
);
1026 * devm_kasprintf - Allocate resource managed space and format a string
1028 * @dev: Device to allocate memory for
1029 * @gfp: the GFP mask used in the devm_kmalloc() call when
1031 * @fmt: The printf()-style format string
1032 * @...: Arguments for the format string
1034 * Pointer to allocated string on success, NULL on failure.
1036 char *devm_kasprintf(struct device
*dev
, gfp_t gfp
, const char *fmt
, ...)
1042 p
= devm_kvasprintf(dev
, gfp
, fmt
, ap
);
1047 EXPORT_SYMBOL_GPL(devm_kasprintf
);
1050 * devm_kfree - Resource-managed kfree
1051 * @dev: Device this memory belongs to
1052 * @p: Memory to free
1054 * Free memory allocated with devm_kmalloc().
1056 void devm_kfree(struct device
*dev
, const void *p
)
1061 * Special cases: pointer to a string in .rodata returned by
1062 * devm_kstrdup_const() or NULL/ZERO ptr.
1064 if (unlikely(is_kernel_rodata((unsigned long)p
) || ZERO_OR_NULL_PTR(p
)))
1067 rc
= devres_destroy(dev
, devm_kmalloc_release
,
1068 devm_kmalloc_match
, (void *)p
);
1071 EXPORT_SYMBOL_GPL(devm_kfree
);
1074 * devm_kmemdup - Resource-managed kmemdup
1075 * @dev: Device this memory belongs to
1076 * @src: Memory region to duplicate
1077 * @len: Memory region length
1078 * @gfp: GFP mask to use
1080 * Duplicate region of a memory using resource managed kmalloc
1082 void *devm_kmemdup(struct device
*dev
, const void *src
, size_t len
, gfp_t gfp
)
1086 p
= devm_kmalloc(dev
, len
, gfp
);
1088 memcpy(p
, src
, len
);
1092 EXPORT_SYMBOL_GPL(devm_kmemdup
);
1094 struct pages_devres
{
1099 static int devm_pages_match(struct device
*dev
, void *res
, void *p
)
1101 struct pages_devres
*devres
= res
;
1102 struct pages_devres
*target
= p
;
1104 return devres
->addr
== target
->addr
;
1107 static void devm_pages_release(struct device
*dev
, void *res
)
1109 struct pages_devres
*devres
= res
;
1111 free_pages(devres
->addr
, devres
->order
);
1115 * devm_get_free_pages - Resource-managed __get_free_pages
1116 * @dev: Device to allocate memory for
1117 * @gfp_mask: Allocation gfp flags
1118 * @order: Allocation size is (1 << order) pages
1120 * Managed get_free_pages. Memory allocated with this function is
1121 * automatically freed on driver detach.
1124 * Address of allocated memory on success, 0 on failure.
1127 unsigned long devm_get_free_pages(struct device
*dev
,
1128 gfp_t gfp_mask
, unsigned int order
)
1130 struct pages_devres
*devres
;
1133 addr
= __get_free_pages(gfp_mask
, order
);
1135 if (unlikely(!addr
))
1138 devres
= devres_alloc(devm_pages_release
,
1139 sizeof(struct pages_devres
), GFP_KERNEL
);
1140 if (unlikely(!devres
)) {
1141 free_pages(addr
, order
);
1145 devres
->addr
= addr
;
1146 devres
->order
= order
;
1148 devres_add(dev
, devres
);
1151 EXPORT_SYMBOL_GPL(devm_get_free_pages
);
1154 * devm_free_pages - Resource-managed free_pages
1155 * @dev: Device this memory belongs to
1156 * @addr: Memory to free
1158 * Free memory allocated with devm_get_free_pages(). Unlike free_pages,
1159 * there is no need to supply the @order.
1161 void devm_free_pages(struct device
*dev
, unsigned long addr
)
1163 struct pages_devres devres
= { .addr
= addr
};
1165 WARN_ON(devres_release(dev
, devm_pages_release
, devm_pages_match
,
1168 EXPORT_SYMBOL_GPL(devm_free_pages
);
1170 static void devm_percpu_release(struct device
*dev
, void *pdata
)
1174 p
= *(void __percpu
**)pdata
;
1178 static int devm_percpu_match(struct device
*dev
, void *data
, void *p
)
1180 struct devres
*devr
= container_of(data
, struct devres
, data
);
1182 return *(void **)devr
->data
== p
;
1186 * __devm_alloc_percpu - Resource-managed alloc_percpu
1187 * @dev: Device to allocate per-cpu memory for
1188 * @size: Size of per-cpu memory to allocate
1189 * @align: Alignment of per-cpu memory to allocate
1191 * Managed alloc_percpu. Per-cpu memory allocated with this function is
1192 * automatically freed on driver detach.
1195 * Pointer to allocated memory on success, NULL on failure.
1197 void __percpu
*__devm_alloc_percpu(struct device
*dev
, size_t size
,
1201 void __percpu
*pcpu
;
1203 pcpu
= __alloc_percpu(size
, align
);
1207 p
= devres_alloc(devm_percpu_release
, sizeof(void *), GFP_KERNEL
);
1213 *(void __percpu
**)p
= pcpu
;
1219 EXPORT_SYMBOL_GPL(__devm_alloc_percpu
);
1222 * devm_free_percpu - Resource-managed free_percpu
1223 * @dev: Device this memory belongs to
1224 * @pdata: Per-cpu memory to free
1226 * Free memory allocated with devm_alloc_percpu().
1228 void devm_free_percpu(struct device
*dev
, void __percpu
*pdata
)
1230 WARN_ON(devres_destroy(dev
, devm_percpu_release
, devm_percpu_match
,
1233 EXPORT_SYMBOL_GPL(devm_free_percpu
);