1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/err.h>
3 #include <linux/pci.h>
4 #include <linux/io.h>
5 #include <linux/gfp.h>
6 #include <linux/export.h>
7 #include <linux/of_address.h>
8
9 enum devm_ioremap_type {
10 DEVM_IOREMAP = 0,
11 DEVM_IOREMAP_NC,
12 DEVM_IOREMAP_UC,
13 DEVM_IOREMAP_WC,
14 };
15
devm_ioremap_release(struct device * dev,void * res)16 void devm_ioremap_release(struct device *dev, void *res)
17 {
18 iounmap(*(void __iomem **)res);
19 }
20
devm_ioremap_match(struct device * dev,void * res,void * match_data)21 static int devm_ioremap_match(struct device *dev, void *res, void *match_data)
22 {
23 return *(void **)res == match_data;
24 }
25
__devm_ioremap(struct device * dev,resource_size_t offset,resource_size_t size,enum devm_ioremap_type type)26 static void __iomem *__devm_ioremap(struct device *dev, resource_size_t offset,
27 resource_size_t size,
28 enum devm_ioremap_type type)
29 {
30 void __iomem **ptr, *addr = NULL;
31
32 ptr = devres_alloc(devm_ioremap_release, sizeof(*ptr), GFP_KERNEL);
33 if (!ptr)
34 return NULL;
35
36 switch (type) {
37 case DEVM_IOREMAP:
38 addr = ioremap(offset, size);
39 break;
40 case DEVM_IOREMAP_NC:
41 addr = ioremap_nocache(offset, size);
42 break;
43 case DEVM_IOREMAP_UC:
44 addr = ioremap_uc(offset, size);
45 break;
46 case DEVM_IOREMAP_WC:
47 addr = ioremap_wc(offset, size);
48 break;
49 }
50
51 if (addr) {
52 *ptr = addr;
53 devres_add(dev, ptr);
54 } else
55 devres_free(ptr);
56
57 return addr;
58 }
59
60 /**
61 * devm_ioremap - Managed ioremap()
62 * @dev: Generic device to remap IO address for
63 * @offset: Resource address to map
64 * @size: Size of map
65 *
66 * Managed ioremap(). Map is automatically unmapped on driver detach.
67 */
devm_ioremap(struct device * dev,resource_size_t offset,resource_size_t size)68 void __iomem *devm_ioremap(struct device *dev, resource_size_t offset,
69 resource_size_t size)
70 {
71 return __devm_ioremap(dev, offset, size, DEVM_IOREMAP);
72 }
73 EXPORT_SYMBOL(devm_ioremap);
74
75 /**
76 * devm_ioremap_uc - Managed ioremap_uc()
77 * @dev: Generic device to remap IO address for
78 * @offset: Resource address to map
79 * @size: Size of map
80 *
81 * Managed ioremap_uc(). Map is automatically unmapped on driver detach.
82 */
devm_ioremap_uc(struct device * dev,resource_size_t offset,resource_size_t size)83 void __iomem *devm_ioremap_uc(struct device *dev, resource_size_t offset,
84 resource_size_t size)
85 {
86 return __devm_ioremap(dev, offset, size, DEVM_IOREMAP_UC);
87 }
88 EXPORT_SYMBOL_GPL(devm_ioremap_uc);
89
90 /**
91 * devm_ioremap_nocache - Managed ioremap_nocache()
92 * @dev: Generic device to remap IO address for
93 * @offset: Resource address to map
94 * @size: Size of map
95 *
96 * Managed ioremap_nocache(). Map is automatically unmapped on driver
97 * detach.
98 */
devm_ioremap_nocache(struct device * dev,resource_size_t offset,resource_size_t size)99 void __iomem *devm_ioremap_nocache(struct device *dev, resource_size_t offset,
100 resource_size_t size)
101 {
102 return __devm_ioremap(dev, offset, size, DEVM_IOREMAP_NC);
103 }
104 EXPORT_SYMBOL(devm_ioremap_nocache);
105
106 /**
107 * devm_ioremap_wc - Managed ioremap_wc()
108 * @dev: Generic device to remap IO address for
109 * @offset: Resource address to map
110 * @size: Size of map
111 *
112 * Managed ioremap_wc(). Map is automatically unmapped on driver detach.
113 */
devm_ioremap_wc(struct device * dev,resource_size_t offset,resource_size_t size)114 void __iomem *devm_ioremap_wc(struct device *dev, resource_size_t offset,
115 resource_size_t size)
116 {
117 return __devm_ioremap(dev, offset, size, DEVM_IOREMAP_WC);
118 }
119 EXPORT_SYMBOL(devm_ioremap_wc);
120
121 /**
122 * devm_iounmap - Managed iounmap()
123 * @dev: Generic device to unmap for
124 * @addr: Address to unmap
125 *
126 * Managed iounmap(). @addr must have been mapped using devm_ioremap*().
127 */
devm_iounmap(struct device * dev,void __iomem * addr)128 void devm_iounmap(struct device *dev, void __iomem *addr)
129 {
130 WARN_ON(devres_destroy(dev, devm_ioremap_release, devm_ioremap_match,
131 (__force void *)addr));
132 iounmap(addr);
133 }
134 EXPORT_SYMBOL(devm_iounmap);
135
136 /**
137 * devm_ioremap_resource() - check, request region, and ioremap resource
138 * @dev: generic device to handle the resource for
139 * @res: resource to be handled
140 *
141 * Checks that a resource is a valid memory region, requests the memory
142 * region and ioremaps it. All operations are managed and will be undone
143 * on driver detach.
144 *
145 * Returns a pointer to the remapped memory or an ERR_PTR() encoded error code
146 * on failure. Usage example:
147 *
148 * res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
149 * base = devm_ioremap_resource(&pdev->dev, res);
150 * if (IS_ERR(base))
151 * return PTR_ERR(base);
152 */
devm_ioremap_resource(struct device * dev,const struct resource * res)153 void __iomem *devm_ioremap_resource(struct device *dev,
154 const struct resource *res)
155 {
156 resource_size_t size;
157 const char *name;
158 void __iomem *dest_ptr;
159
160 BUG_ON(!dev);
161
162 if (!res || resource_type(res) != IORESOURCE_MEM) {
163 dev_err(dev, "invalid resource\n");
164 return IOMEM_ERR_PTR(-EINVAL);
165 }
166
167 size = resource_size(res);
168 name = res->name ?: dev_name(dev);
169
170 if (!devm_request_mem_region(dev, res->start, size, name)) {
171 dev_err(dev, "can't request region for resource %pR\n", res);
172 return IOMEM_ERR_PTR(-EBUSY);
173 }
174
175 dest_ptr = devm_ioremap(dev, res->start, size);
176 if (!dest_ptr) {
177 dev_err(dev, "ioremap failed for resource %pR\n", res);
178 devm_release_mem_region(dev, res->start, size);
179 dest_ptr = IOMEM_ERR_PTR(-ENOMEM);
180 }
181
182 return dest_ptr;
183 }
184 EXPORT_SYMBOL(devm_ioremap_resource);
185
186 /*
187 * devm_of_iomap - Requests a resource and maps the memory mapped IO
188 * for a given device_node managed by a given device
189 *
190 * Checks that a resource is a valid memory region, requests the memory
191 * region and ioremaps it. All operations are managed and will be undone
192 * on driver detach of the device.
193 *
194 * This is to be used when a device requests/maps resources described
195 * by other device tree nodes (children or otherwise).
196 *
197 * @dev: The device "managing" the resource
198 * @node: The device-tree node where the resource resides
199 * @index: index of the MMIO range in the "reg" property
200 * @size: Returns the size of the resource (pass NULL if not needed)
201 * Returns a pointer to the requested and mapped memory or an ERR_PTR() encoded
202 * error code on failure. Usage example:
203 *
204 * base = devm_of_iomap(&pdev->dev, node, 0, NULL);
205 * if (IS_ERR(base))
206 * return PTR_ERR(base);
207 */
devm_of_iomap(struct device * dev,struct device_node * node,int index,resource_size_t * size)208 void __iomem *devm_of_iomap(struct device *dev, struct device_node *node, int index,
209 resource_size_t *size)
210 {
211 struct resource res;
212
213 if (of_address_to_resource(node, index, &res))
214 return IOMEM_ERR_PTR(-EINVAL);
215 if (size)
216 *size = resource_size(&res);
217 return devm_ioremap_resource(dev, &res);
218 }
219 EXPORT_SYMBOL(devm_of_iomap);
220
221 #ifdef CONFIG_HAS_IOPORT_MAP
222 /*
223 * Generic iomap devres
224 */
devm_ioport_map_release(struct device * dev,void * res)225 static void devm_ioport_map_release(struct device *dev, void *res)
226 {
227 ioport_unmap(*(void __iomem **)res);
228 }
229
devm_ioport_map_match(struct device * dev,void * res,void * match_data)230 static int devm_ioport_map_match(struct device *dev, void *res,
231 void *match_data)
232 {
233 return *(void **)res == match_data;
234 }
235
236 /**
237 * devm_ioport_map - Managed ioport_map()
238 * @dev: Generic device to map ioport for
239 * @port: Port to map
240 * @nr: Number of ports to map
241 *
242 * Managed ioport_map(). Map is automatically unmapped on driver
243 * detach.
244 */
devm_ioport_map(struct device * dev,unsigned long port,unsigned int nr)245 void __iomem *devm_ioport_map(struct device *dev, unsigned long port,
246 unsigned int nr)
247 {
248 void __iomem **ptr, *addr;
249
250 ptr = devres_alloc(devm_ioport_map_release, sizeof(*ptr), GFP_KERNEL);
251 if (!ptr)
252 return NULL;
253
254 addr = ioport_map(port, nr);
255 if (addr) {
256 *ptr = addr;
257 devres_add(dev, ptr);
258 } else
259 devres_free(ptr);
260
261 return addr;
262 }
263 EXPORT_SYMBOL(devm_ioport_map);
264
265 /**
266 * devm_ioport_unmap - Managed ioport_unmap()
267 * @dev: Generic device to unmap for
268 * @addr: Address to unmap
269 *
270 * Managed ioport_unmap(). @addr must have been mapped using
271 * devm_ioport_map().
272 */
devm_ioport_unmap(struct device * dev,void __iomem * addr)273 void devm_ioport_unmap(struct device *dev, void __iomem *addr)
274 {
275 ioport_unmap(addr);
276 WARN_ON(devres_destroy(dev, devm_ioport_map_release,
277 devm_ioport_map_match, (__force void *)addr));
278 }
279 EXPORT_SYMBOL(devm_ioport_unmap);
280 #endif /* CONFIG_HAS_IOPORT_MAP */
281
282 #ifdef CONFIG_PCI
283 /*
284 * PCI iomap devres
285 */
286 #define PCIM_IOMAP_MAX PCI_ROM_RESOURCE
287
288 struct pcim_iomap_devres {
289 void __iomem *table[PCIM_IOMAP_MAX];
290 };
291
pcim_iomap_release(struct device * gendev,void * res)292 static void pcim_iomap_release(struct device *gendev, void *res)
293 {
294 struct pci_dev *dev = to_pci_dev(gendev);
295 struct pcim_iomap_devres *this = res;
296 int i;
297
298 for (i = 0; i < PCIM_IOMAP_MAX; i++)
299 if (this->table[i])
300 pci_iounmap(dev, this->table[i]);
301 }
302
303 /**
304 * pcim_iomap_table - access iomap allocation table
305 * @pdev: PCI device to access iomap table for
306 *
307 * Access iomap allocation table for @dev. If iomap table doesn't
308 * exist and @pdev is managed, it will be allocated. All iomaps
309 * recorded in the iomap table are automatically unmapped on driver
310 * detach.
311 *
312 * This function might sleep when the table is first allocated but can
313 * be safely called without context and guaranteed to succed once
314 * allocated.
315 */
pcim_iomap_table(struct pci_dev * pdev)316 void __iomem * const *pcim_iomap_table(struct pci_dev *pdev)
317 {
318 struct pcim_iomap_devres *dr, *new_dr;
319
320 dr = devres_find(&pdev->dev, pcim_iomap_release, NULL, NULL);
321 if (dr)
322 return dr->table;
323
324 new_dr = devres_alloc(pcim_iomap_release, sizeof(*new_dr), GFP_KERNEL);
325 if (!new_dr)
326 return NULL;
327 dr = devres_get(&pdev->dev, new_dr, NULL, NULL);
328 return dr->table;
329 }
330 EXPORT_SYMBOL(pcim_iomap_table);
331
332 /**
333 * pcim_iomap - Managed pcim_iomap()
334 * @pdev: PCI device to iomap for
335 * @bar: BAR to iomap
336 * @maxlen: Maximum length of iomap
337 *
338 * Managed pci_iomap(). Map is automatically unmapped on driver
339 * detach.
340 */
pcim_iomap(struct pci_dev * pdev,int bar,unsigned long maxlen)341 void __iomem *pcim_iomap(struct pci_dev *pdev, int bar, unsigned long maxlen)
342 {
343 void __iomem **tbl;
344
345 BUG_ON(bar >= PCIM_IOMAP_MAX);
346
347 tbl = (void __iomem **)pcim_iomap_table(pdev);
348 if (!tbl || tbl[bar]) /* duplicate mappings not allowed */
349 return NULL;
350
351 tbl[bar] = pci_iomap(pdev, bar, maxlen);
352 return tbl[bar];
353 }
354 EXPORT_SYMBOL(pcim_iomap);
355
356 /**
357 * pcim_iounmap - Managed pci_iounmap()
358 * @pdev: PCI device to iounmap for
359 * @addr: Address to unmap
360 *
361 * Managed pci_iounmap(). @addr must have been mapped using pcim_iomap().
362 */
pcim_iounmap(struct pci_dev * pdev,void __iomem * addr)363 void pcim_iounmap(struct pci_dev *pdev, void __iomem *addr)
364 {
365 void __iomem **tbl;
366 int i;
367
368 pci_iounmap(pdev, addr);
369
370 tbl = (void __iomem **)pcim_iomap_table(pdev);
371 BUG_ON(!tbl);
372
373 for (i = 0; i < PCIM_IOMAP_MAX; i++)
374 if (tbl[i] == addr) {
375 tbl[i] = NULL;
376 return;
377 }
378 WARN_ON(1);
379 }
380 EXPORT_SYMBOL(pcim_iounmap);
381
382 /**
383 * pcim_iomap_regions - Request and iomap PCI BARs
384 * @pdev: PCI device to map IO resources for
385 * @mask: Mask of BARs to request and iomap
386 * @name: Name used when requesting regions
387 *
388 * Request and iomap regions specified by @mask.
389 */
pcim_iomap_regions(struct pci_dev * pdev,int mask,const char * name)390 int pcim_iomap_regions(struct pci_dev *pdev, int mask, const char *name)
391 {
392 void __iomem * const *iomap;
393 int i, rc;
394
395 iomap = pcim_iomap_table(pdev);
396 if (!iomap)
397 return -ENOMEM;
398
399 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
400 unsigned long len;
401
402 if (!(mask & (1 << i)))
403 continue;
404
405 rc = -EINVAL;
406 len = pci_resource_len(pdev, i);
407 if (!len)
408 goto err_inval;
409
410 rc = pci_request_region(pdev, i, name);
411 if (rc)
412 goto err_inval;
413
414 rc = -ENOMEM;
415 if (!pcim_iomap(pdev, i, 0))
416 goto err_region;
417 }
418
419 return 0;
420
421 err_region:
422 pci_release_region(pdev, i);
423 err_inval:
424 while (--i >= 0) {
425 if (!(mask & (1 << i)))
426 continue;
427 pcim_iounmap(pdev, iomap[i]);
428 pci_release_region(pdev, i);
429 }
430
431 return rc;
432 }
433 EXPORT_SYMBOL(pcim_iomap_regions);
434
435 /**
436 * pcim_iomap_regions_request_all - Request all BARs and iomap specified ones
437 * @pdev: PCI device to map IO resources for
438 * @mask: Mask of BARs to iomap
439 * @name: Name used when requesting regions
440 *
441 * Request all PCI BARs and iomap regions specified by @mask.
442 */
pcim_iomap_regions_request_all(struct pci_dev * pdev,int mask,const char * name)443 int pcim_iomap_regions_request_all(struct pci_dev *pdev, int mask,
444 const char *name)
445 {
446 int request_mask = ((1 << 6) - 1) & ~mask;
447 int rc;
448
449 rc = pci_request_selected_regions(pdev, request_mask, name);
450 if (rc)
451 return rc;
452
453 rc = pcim_iomap_regions(pdev, mask, name);
454 if (rc)
455 pci_release_selected_regions(pdev, request_mask);
456 return rc;
457 }
458 EXPORT_SYMBOL(pcim_iomap_regions_request_all);
459
460 /**
461 * pcim_iounmap_regions - Unmap and release PCI BARs
462 * @pdev: PCI device to map IO resources for
463 * @mask: Mask of BARs to unmap and release
464 *
465 * Unmap and release regions specified by @mask.
466 */
pcim_iounmap_regions(struct pci_dev * pdev,int mask)467 void pcim_iounmap_regions(struct pci_dev *pdev, int mask)
468 {
469 void __iomem * const *iomap;
470 int i;
471
472 iomap = pcim_iomap_table(pdev);
473 if (!iomap)
474 return;
475
476 for (i = 0; i < PCIM_IOMAP_MAX; i++) {
477 if (!(mask & (1 << i)))
478 continue;
479
480 pcim_iounmap(pdev, iomap[i]);
481 pci_release_region(pdev, i);
482 }
483 }
484 EXPORT_SYMBOL(pcim_iounmap_regions);
485 #endif /* CONFIG_PCI */
486