blob: 4f7897e99cba8a8fc7b5a33343825cfb94ce2d68 [file] [log] [blame]
Tejun Heo9ac78492007-01-20 16:00:26 +09001Devres - Managed Device Resource
2================================
3
4Tejun Heo <teheo@suse.de>
5
6First draft 10 January 2007
7
8
91. Intro : Huh? Devres?
102. Devres : Devres in a nutshell
113. Devres Group : Group devres'es and release them together
124. Details : Life time rules, calling context, ...
135. Overhead : How much do we have to pay for this?
146. List of managed interfaces : Currently implemented managed interfaces
15
16
17 1. Intro
18 --------
19
20devres came up while trying to convert libata to use iomap. Each
21iomapped address should be kept and unmapped on driver detach. For
22example, a plain SFF ATA controller (that is, good old PCI IDE) in
23native mode makes use of 5 PCI BARs and all of them should be
24maintained.
25
26As with many other device drivers, libata low level drivers have
27sufficient bugs in ->remove and ->probe failure path. Well, yes,
28that's probably because libata low level driver developers are lazy
29bunch, but aren't all low level driver developers? After spending a
30day fiddling with braindamaged hardware with no document or
31braindamaged document, if it's finally working, well, it's working.
32
33For one reason or another, low level drivers don't receive as much
34attention or testing as core code, and bugs on driver detach or
Matt LaPlante01dd2fb2007-10-20 01:34:40 +020035initialization failure don't happen often enough to be noticeable.
Tejun Heo9ac78492007-01-20 16:00:26 +090036Init failure path is worse because it's much less travelled while
37needs to handle multiple entry points.
38
39So, many low level drivers end up leaking resources on driver detach
40and having half broken failure path implementation in ->probe() which
41would leak resources or even cause oops when failure occurs. iomap
42adds more to this mix. So do msi and msix.
43
44
45 2. Devres
46 ---------
47
48devres is basically linked list of arbitrarily sized memory areas
49associated with a struct device. Each devres entry is associated with
50a release function. A devres can be released in several ways. No
51matter what, all devres entries are released on driver detach. On
52release, the associated release function is invoked and then the
53devres entry is freed.
54
55Managed interface is created for resources commonly used by device
56drivers using devres. For example, coherent DMA memory is acquired
57using dma_alloc_coherent(). The managed version is called
58dmam_alloc_coherent(). It is identical to dma_alloc_coherent() except
59for the DMA memory allocated using it is managed and will be
60automatically released on driver detach. Implementation looks like
61the following.
62
63 struct dma_devres {
64 size_t size;
65 void *vaddr;
66 dma_addr_t dma_handle;
67 };
68
69 static void dmam_coherent_release(struct device *dev, void *res)
70 {
71 struct dma_devres *this = res;
72
73 dma_free_coherent(dev, this->size, this->vaddr, this->dma_handle);
74 }
75
76 dmam_alloc_coherent(dev, size, dma_handle, gfp)
77 {
78 struct dma_devres *dr;
79 void *vaddr;
80
81 dr = devres_alloc(dmam_coherent_release, sizeof(*dr), gfp);
82 ...
83
84 /* alloc DMA memory as usual */
85 vaddr = dma_alloc_coherent(...);
86 ...
87
88 /* record size, vaddr, dma_handle in dr */
89 dr->vaddr = vaddr;
90 ...
91
92 devres_add(dev, dr);
93
94 return vaddr;
95 }
96
97If a driver uses dmam_alloc_coherent(), the area is guaranteed to be
98freed whether initialization fails half-way or the device gets
99detached. If most resources are acquired using managed interface, a
100driver can have much simpler init and exit code. Init path basically
101looks like the following.
102
103 my_init_one()
104 {
105 struct mydev *d;
106
107 d = devm_kzalloc(dev, sizeof(*d), GFP_KERNEL);
108 if (!d)
109 return -ENOMEM;
110
111 d->ring = dmam_alloc_coherent(...);
112 if (!d->ring)
113 return -ENOMEM;
114
115 if (check something)
116 return -EINVAL;
117 ...
118
119 return register_to_upper_layer(d);
120 }
121
122And exit path,
123
124 my_remove_one()
125 {
126 unregister_from_upper_layer(d);
127 shutdown_my_hardware();
128 }
129
130As shown above, low level drivers can be simplified a lot by using
131devres. Complexity is shifted from less maintained low level drivers
132to better maintained higher layer. Also, as init failure path is
133shared with exit path, both can get more testing.
134
135
136 3. Devres group
137 ---------------
138
139Devres entries can be grouped using devres group. When a group is
140released, all contained normal devres entries and properly nested
141groups are released. One usage is to rollback series of acquired
142resources on failure. For example,
143
144 if (!devres_open_group(dev, NULL, GFP_KERNEL))
145 return -ENOMEM;
146
147 acquire A;
148 if (failed)
149 goto err;
150
151 acquire B;
152 if (failed)
153 goto err;
154 ...
155
156 devres_remove_group(dev, NULL);
157 return 0;
158
159 err:
160 devres_release_group(dev, NULL);
161 return err_code;
162
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200163As resource acquisition failure usually means probe failure, constructs
Tejun Heo9ac78492007-01-20 16:00:26 +0900164like above are usually useful in midlayer driver (e.g. libata core
165layer) where interface function shouldn't have side effect on failure.
166For LLDs, just returning error code suffices in most cases.
167
168Each group is identified by void *id. It can either be explicitly
169specified by @id argument to devres_open_group() or automatically
170created by passing NULL as @id as in the above example. In both
171cases, devres_open_group() returns the group's id. The returned id
172can be passed to other devres functions to select the target group.
173If NULL is given to those functions, the latest open group is
174selected.
175
176For example, you can do something like the following.
177
178 int my_midlayer_create_something()
179 {
180 if (!devres_open_group(dev, my_midlayer_create_something, GFP_KERNEL))
181 return -ENOMEM;
182
183 ...
184
Rolf Eike Beer3265b542007-05-01 11:00:19 +0200185 devres_close_group(dev, my_midlayer_create_something);
Tejun Heo9ac78492007-01-20 16:00:26 +0900186 return 0;
187 }
188
189 void my_midlayer_destroy_something()
190 {
Matt LaPlante19f59462009-04-27 15:06:31 +0200191 devres_release_group(dev, my_midlayer_create_something);
Tejun Heo9ac78492007-01-20 16:00:26 +0900192 }
193
194
195 4. Details
196 ----------
197
198Lifetime of a devres entry begins on devres allocation and finishes
199when it is released or destroyed (removed and freed) - no reference
200counting.
201
202devres core guarantees atomicity to all basic devres operations and
203has support for single-instance devres types (atomic
204lookup-and-add-if-not-found). Other than that, synchronizing
205concurrent accesses to allocated devres data is caller's
206responsibility. This is usually non-issue because bus ops and
207resource allocations already do the job.
208
209For an example of single-instance devres type, read pcim_iomap_table()
Brandon Philips2c19c492007-07-17 22:09:34 -0700210in lib/devres.c.
Tejun Heo9ac78492007-01-20 16:00:26 +0900211
212All devres interface functions can be called without context if the
213right gfp mask is given.
214
215
216 5. Overhead
217 -----------
218
219Each devres bookkeeping info is allocated together with requested data
220area. With debug option turned off, bookkeeping info occupies 16
221bytes on 32bit machines and 24 bytes on 64bit (three pointers rounded
222up to ull alignment). If singly linked list is used, it can be
223reduced to two pointers (8 bytes on 32bit, 16 bytes on 64bit).
224
225Each devres group occupies 8 pointers. It can be reduced to 6 if
226singly linked list is used.
227
228Memory space overhead on ahci controller with two ports is between 300
229and 400 bytes on 32bit machine after naive conversion (we can
230certainly invest a bit more effort into libata core layer).
231
232
233 6. List of managed interfaces
234 -----------------------------
235
Wolfram Sang543f43c2012-01-15 13:31:46 +0100236MEM
237 devm_kzalloc()
238 devm_kfree()
239
Oleksandr Kravchenko224b9952013-07-23 09:39:00 +0100240IIO
241 devm_iio_device_alloc()
242 devm_iio_device_free()
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100243 devm_iio_trigger_alloc()
244 devm_iio_trigger_free()
Sachin Kamat8caa07c2013-10-29 11:39:00 +0000245 devm_iio_device_register()
246 devm_iio_device_unregister()
Oleksandr Kravchenko224b9952013-07-23 09:39:00 +0100247
Tejun Heo9ac78492007-01-20 16:00:26 +0900248IO region
249 devm_request_region()
250 devm_request_mem_region()
251 devm_release_region()
252 devm_release_mem_region()
253
254IRQ
255 devm_request_irq()
256 devm_free_irq()
257
258DMA
259 dmam_alloc_coherent()
260 dmam_free_coherent()
261 dmam_alloc_noncoherent()
262 dmam_free_noncoherent()
263 dmam_declare_coherent_memory()
264 dmam_pool_create()
265 dmam_pool_destroy()
266
267PCI
268 pcim_enable_device() : after success, all PCI ops become managed
269 pcim_pin_device() : keep PCI device enabled after release
270
271IOMAP
272 devm_ioport_map()
273 devm_ioport_unmap()
274 devm_ioremap()
275 devm_ioremap_nocache()
276 devm_iounmap()
Thierry Reding75096572013-01-21 11:08:54 +0100277 devm_ioremap_resource() : checks resource, requests memory region, ioremaps
278 devm_request_and_ioremap() : obsoleted by devm_ioremap_resource()
Tejun Heo9ac78492007-01-20 16:00:26 +0900279 pcim_iomap()
280 pcim_iounmap()
281 pcim_iomap_table() : array of mapped addresses indexed by BAR
282 pcim_iomap_regions() : do request_region() and iomap() on multiple BARs
Stephen Boyd070b9072012-01-16 19:39:58 -0800283
284REGULATOR
285 devm_regulator_get()
Axel Linc1432b12012-01-31 14:44:01 +0800286 devm_regulator_put()
287 devm_regulator_bulk_get()
Mark Brownb33e46b2013-08-31 11:58:26 +0100288 devm_regulator_register()
Mark Browna8a97db2012-04-05 11:42:09 +0100289
290CLOCK
291 devm_clk_get()
292 devm_clk_put()
Linus Torvalds3d1482f2012-05-21 16:58:23 -0700293
Stephen Warren6d4ca1f2012-04-16 10:51:00 -0600294PINCTRL
295 devm_pinctrl_get()
296 devm_pinctrl_put()
Alexandre Courbot63543162012-08-01 19:20:58 +0900297
298PWM
299 devm_pwm_get()
300 devm_pwm_put()
Marko Katic2202d4e2012-12-13 19:14:54 +0100301
302PHY
303 devm_usb_get_phy()
304 devm_usb_put_phy()
Andy Shevchenko0244d842013-08-21 14:27:05 +0300305
306SLAVE DMA ENGINE
307 devm_acpi_dma_controller_register()
Mark Brown666d5b42013-08-31 18:50:52 +0100308
309SPI
310 devm_spi_register_master()