1 // SPDX-License-Identifier: GPL-2.0
6 #include <linux/export.h>
7 #include <linux/of_address.h>
9 enum devm_ioremap_type
{
15 void devm_ioremap_release(struct device
*dev
, void *res
)
17 iounmap(*(void __iomem
**)res
);
20 static int devm_ioremap_match(struct device
*dev
, void *res
, void *match_data
)
22 return *(void **)res
== match_data
;
25 static void __iomem
*__devm_ioremap(struct device
*dev
, resource_size_t offset
,
27 enum devm_ioremap_type type
)
29 void __iomem
**ptr
, *addr
= NULL
;
31 ptr
= devres_alloc(devm_ioremap_release
, sizeof(*ptr
), GFP_KERNEL
);
37 addr
= ioremap(offset
, size
);
40 addr
= ioremap_nocache(offset
, size
);
43 addr
= ioremap_wc(offset
, size
);
57 * devm_ioremap - Managed ioremap()
58 * @dev: Generic device to remap IO address for
59 * @offset: Resource address to map
62 * Managed ioremap(). Map is automatically unmapped on driver detach.
64 void __iomem
*devm_ioremap(struct device
*dev
, resource_size_t offset
,
67 return __devm_ioremap(dev
, offset
, size
, DEVM_IOREMAP
);
69 EXPORT_SYMBOL(devm_ioremap
);
72 * devm_ioremap_nocache - Managed ioremap_nocache()
73 * @dev: Generic device to remap IO address for
74 * @offset: Resource address to map
77 * Managed ioremap_nocache(). Map is automatically unmapped on driver
80 void __iomem
*devm_ioremap_nocache(struct device
*dev
, resource_size_t offset
,
83 return __devm_ioremap(dev
, offset
, size
, DEVM_IOREMAP_NC
);
85 EXPORT_SYMBOL(devm_ioremap_nocache
);
88 * devm_ioremap_wc - Managed ioremap_wc()
89 * @dev: Generic device to remap IO address for
90 * @offset: Resource address to map
93 * Managed ioremap_wc(). Map is automatically unmapped on driver detach.
95 void __iomem
*devm_ioremap_wc(struct device
*dev
, resource_size_t offset
,
98 return __devm_ioremap(dev
, offset
, size
, DEVM_IOREMAP_WC
);
100 EXPORT_SYMBOL(devm_ioremap_wc
);
103 * devm_iounmap - Managed iounmap()
104 * @dev: Generic device to unmap for
105 * @addr: Address to unmap
107 * Managed iounmap(). @addr must have been mapped using devm_ioremap*().
109 void devm_iounmap(struct device
*dev
, void __iomem
*addr
)
111 WARN_ON(devres_destroy(dev
, devm_ioremap_release
, devm_ioremap_match
,
112 (__force
void *)addr
));
115 EXPORT_SYMBOL(devm_iounmap
);
118 * devm_ioremap_resource() - check, request region, and ioremap resource
119 * @dev: generic device to handle the resource for
120 * @res: resource to be handled
122 * Checks that a resource is a valid memory region, requests the memory
123 * region and ioremaps it. All operations are managed and will be undone
126 * Returns a pointer to the remapped memory or an ERR_PTR() encoded error code
127 * on failure. Usage example:
129 * res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
130 * base = devm_ioremap_resource(&pdev->dev, res);
132 * return PTR_ERR(base);
134 void __iomem
*devm_ioremap_resource(struct device
*dev
, struct resource
*res
)
136 resource_size_t size
;
137 void __iomem
*dest_ptr
;
141 if (!res
|| resource_type(res
) != IORESOURCE_MEM
) {
142 dev_err(dev
, "invalid resource\n");
143 return IOMEM_ERR_PTR(-EINVAL
);
146 size
= resource_size(res
);
148 if (!devm_request_mem_region(dev
, res
->start
, size
, dev_name(dev
))) {
149 dev_err(dev
, "can't request region for resource %pR\n", res
);
150 return IOMEM_ERR_PTR(-EBUSY
);
153 dest_ptr
= devm_ioremap(dev
, res
->start
, size
);
155 dev_err(dev
, "ioremap failed for resource %pR\n", res
);
156 devm_release_mem_region(dev
, res
->start
, size
);
157 dest_ptr
= IOMEM_ERR_PTR(-ENOMEM
);
162 EXPORT_SYMBOL(devm_ioremap_resource
);
165 * devm_of_iomap - Requests a resource and maps the memory mapped IO
166 * for a given device_node managed by a given device
168 * Checks that a resource is a valid memory region, requests the memory
169 * region and ioremaps it. All operations are managed and will be undone
170 * on driver detach of the device.
172 * This is to be used when a device requests/maps resources described
173 * by other device tree nodes (children or otherwise).
175 * @dev: The device "managing" the resource
176 * @node: The device-tree node where the resource resides
177 * @index: index of the MMIO range in the "reg" property
178 * @size: Returns the size of the resource (pass NULL if not needed)
179 * Returns a pointer to the requested and mapped memory or an ERR_PTR() encoded
180 * error code on failure. Usage example:
182 * base = devm_of_iomap(&pdev->dev, node, 0, NULL);
184 * return PTR_ERR(base);
186 void __iomem
*devm_of_iomap(struct device
*dev
, struct device_node
*node
, int index
,
187 resource_size_t
*size
)
191 if (of_address_to_resource(node
, index
, &res
))
192 return IOMEM_ERR_PTR(-EINVAL
);
194 *size
= resource_size(&res
);
195 return devm_ioremap_resource(dev
, &res
);
197 EXPORT_SYMBOL(devm_of_iomap
);
199 #ifdef CONFIG_HAS_IOPORT_MAP
201 * Generic iomap devres
203 static void devm_ioport_map_release(struct device
*dev
, void *res
)
205 ioport_unmap(*(void __iomem
**)res
);
208 static int devm_ioport_map_match(struct device
*dev
, void *res
,
211 return *(void **)res
== match_data
;
215 * devm_ioport_map - Managed ioport_map()
216 * @dev: Generic device to map ioport for
218 * @nr: Number of ports to map
220 * Managed ioport_map(). Map is automatically unmapped on driver
223 void __iomem
*devm_ioport_map(struct device
*dev
, unsigned long port
,
226 void __iomem
**ptr
, *addr
;
228 ptr
= devres_alloc(devm_ioport_map_release
, sizeof(*ptr
), GFP_KERNEL
);
232 addr
= ioport_map(port
, nr
);
235 devres_add(dev
, ptr
);
241 EXPORT_SYMBOL(devm_ioport_map
);
244 * devm_ioport_unmap - Managed ioport_unmap()
245 * @dev: Generic device to unmap for
246 * @addr: Address to unmap
248 * Managed ioport_unmap(). @addr must have been mapped using
251 void devm_ioport_unmap(struct device
*dev
, void __iomem
*addr
)
254 WARN_ON(devres_destroy(dev
, devm_ioport_map_release
,
255 devm_ioport_map_match
, (__force
void *)addr
));
257 EXPORT_SYMBOL(devm_ioport_unmap
);
258 #endif /* CONFIG_HAS_IOPORT_MAP */
264 #define PCIM_IOMAP_MAX PCI_ROM_RESOURCE
266 struct pcim_iomap_devres
{
267 void __iomem
*table
[PCIM_IOMAP_MAX
];
270 static void pcim_iomap_release(struct device
*gendev
, void *res
)
272 struct pci_dev
*dev
= to_pci_dev(gendev
);
273 struct pcim_iomap_devres
*this = res
;
276 for (i
= 0; i
< PCIM_IOMAP_MAX
; i
++)
278 pci_iounmap(dev
, this->table
[i
]);
282 * pcim_iomap_table - access iomap allocation table
283 * @pdev: PCI device to access iomap table for
285 * Access iomap allocation table for @dev. If iomap table doesn't
286 * exist and @pdev is managed, it will be allocated. All iomaps
287 * recorded in the iomap table are automatically unmapped on driver
290 * This function might sleep when the table is first allocated but can
291 * be safely called without context and guaranteed to succed once
294 void __iomem
* const *pcim_iomap_table(struct pci_dev
*pdev
)
296 struct pcim_iomap_devres
*dr
, *new_dr
;
298 dr
= devres_find(&pdev
->dev
, pcim_iomap_release
, NULL
, NULL
);
302 new_dr
= devres_alloc(pcim_iomap_release
, sizeof(*new_dr
), GFP_KERNEL
);
305 dr
= devres_get(&pdev
->dev
, new_dr
, NULL
, NULL
);
308 EXPORT_SYMBOL(pcim_iomap_table
);
311 * pcim_iomap - Managed pcim_iomap()
312 * @pdev: PCI device to iomap for
314 * @maxlen: Maximum length of iomap
316 * Managed pci_iomap(). Map is automatically unmapped on driver
319 void __iomem
*pcim_iomap(struct pci_dev
*pdev
, int bar
, unsigned long maxlen
)
323 BUG_ON(bar
>= PCIM_IOMAP_MAX
);
325 tbl
= (void __iomem
**)pcim_iomap_table(pdev
);
326 if (!tbl
|| tbl
[bar
]) /* duplicate mappings not allowed */
329 tbl
[bar
] = pci_iomap(pdev
, bar
, maxlen
);
332 EXPORT_SYMBOL(pcim_iomap
);
335 * pcim_iounmap - Managed pci_iounmap()
336 * @pdev: PCI device to iounmap for
337 * @addr: Address to unmap
339 * Managed pci_iounmap(). @addr must have been mapped using pcim_iomap().
341 void pcim_iounmap(struct pci_dev
*pdev
, void __iomem
*addr
)
346 pci_iounmap(pdev
, addr
);
348 tbl
= (void __iomem
**)pcim_iomap_table(pdev
);
351 for (i
= 0; i
< PCIM_IOMAP_MAX
; i
++)
352 if (tbl
[i
] == addr
) {
358 EXPORT_SYMBOL(pcim_iounmap
);
361 * pcim_iomap_regions - Request and iomap PCI BARs
362 * @pdev: PCI device to map IO resources for
363 * @mask: Mask of BARs to request and iomap
364 * @name: Name used when requesting regions
366 * Request and iomap regions specified by @mask.
368 int pcim_iomap_regions(struct pci_dev
*pdev
, int mask
, const char *name
)
370 void __iomem
* const *iomap
;
373 iomap
= pcim_iomap_table(pdev
);
377 for (i
= 0; i
< DEVICE_COUNT_RESOURCE
; i
++) {
380 if (!(mask
& (1 << i
)))
384 len
= pci_resource_len(pdev
, i
);
388 rc
= pci_request_region(pdev
, i
, name
);
393 if (!pcim_iomap(pdev
, i
, 0))
400 pci_release_region(pdev
, i
);
403 if (!(mask
& (1 << i
)))
405 pcim_iounmap(pdev
, iomap
[i
]);
406 pci_release_region(pdev
, i
);
411 EXPORT_SYMBOL(pcim_iomap_regions
);
414 * pcim_iomap_regions_request_all - Request all BARs and iomap specified ones
415 * @pdev: PCI device to map IO resources for
416 * @mask: Mask of BARs to iomap
417 * @name: Name used when requesting regions
419 * Request all PCI BARs and iomap regions specified by @mask.
421 int pcim_iomap_regions_request_all(struct pci_dev
*pdev
, int mask
,
424 int request_mask
= ((1 << 6) - 1) & ~mask
;
427 rc
= pci_request_selected_regions(pdev
, request_mask
, name
);
431 rc
= pcim_iomap_regions(pdev
, mask
, name
);
433 pci_release_selected_regions(pdev
, request_mask
);
436 EXPORT_SYMBOL(pcim_iomap_regions_request_all
);
439 * pcim_iounmap_regions - Unmap and release PCI BARs
440 * @pdev: PCI device to map IO resources for
441 * @mask: Mask of BARs to unmap and release
443 * Unmap and release regions specified by @mask.
445 void pcim_iounmap_regions(struct pci_dev
*pdev
, int mask
)
447 void __iomem
* const *iomap
;
450 iomap
= pcim_iomap_table(pdev
);
454 for (i
= 0; i
< PCIM_IOMAP_MAX
; i
++) {
455 if (!(mask
& (1 << i
)))
458 pcim_iounmap(pdev
, iomap
[i
]);
459 pci_release_region(pdev
, i
);
462 EXPORT_SYMBOL(pcim_iounmap_regions
);
463 #endif /* CONFIG_PCI */