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
;
138 void __iomem
*dest_ptr
;
142 if (!res
|| resource_type(res
) != IORESOURCE_MEM
) {
143 dev_err(dev
, "invalid resource\n");
144 return IOMEM_ERR_PTR(-EINVAL
);
147 size
= resource_size(res
);
148 name
= res
->name
?: dev_name(dev
);
150 if (!devm_request_mem_region(dev
, res
->start
, size
, name
)) {
151 dev_err(dev
, "can't request region for resource %pR\n", res
);
152 return IOMEM_ERR_PTR(-EBUSY
);
155 dest_ptr
= devm_ioremap(dev
, res
->start
, size
);
157 dev_err(dev
, "ioremap failed for resource %pR\n", res
);
158 devm_release_mem_region(dev
, res
->start
, size
);
159 dest_ptr
= IOMEM_ERR_PTR(-ENOMEM
);
164 EXPORT_SYMBOL(devm_ioremap_resource
);
167 * devm_of_iomap - Requests a resource and maps the memory mapped IO
168 * for a given device_node managed by a given device
170 * Checks that a resource is a valid memory region, requests the memory
171 * region and ioremaps it. All operations are managed and will be undone
172 * on driver detach of the device.
174 * This is to be used when a device requests/maps resources described
175 * by other device tree nodes (children or otherwise).
177 * @dev: The device "managing" the resource
178 * @node: The device-tree node where the resource resides
179 * @index: index of the MMIO range in the "reg" property
180 * @size: Returns the size of the resource (pass NULL if not needed)
181 * Returns a pointer to the requested and mapped memory or an ERR_PTR() encoded
182 * error code on failure. Usage example:
184 * base = devm_of_iomap(&pdev->dev, node, 0, NULL);
186 * return PTR_ERR(base);
188 void __iomem
*devm_of_iomap(struct device
*dev
, struct device_node
*node
, int index
,
189 resource_size_t
*size
)
193 if (of_address_to_resource(node
, index
, &res
))
194 return IOMEM_ERR_PTR(-EINVAL
);
196 *size
= resource_size(&res
);
197 return devm_ioremap_resource(dev
, &res
);
199 EXPORT_SYMBOL(devm_of_iomap
);
201 #ifdef CONFIG_HAS_IOPORT_MAP
203 * Generic iomap devres
205 static void devm_ioport_map_release(struct device
*dev
, void *res
)
207 ioport_unmap(*(void __iomem
**)res
);
210 static int devm_ioport_map_match(struct device
*dev
, void *res
,
213 return *(void **)res
== match_data
;
217 * devm_ioport_map - Managed ioport_map()
218 * @dev: Generic device to map ioport for
220 * @nr: Number of ports to map
222 * Managed ioport_map(). Map is automatically unmapped on driver
225 void __iomem
*devm_ioport_map(struct device
*dev
, unsigned long port
,
228 void __iomem
**ptr
, *addr
;
230 ptr
= devres_alloc(devm_ioport_map_release
, sizeof(*ptr
), GFP_KERNEL
);
234 addr
= ioport_map(port
, nr
);
237 devres_add(dev
, ptr
);
243 EXPORT_SYMBOL(devm_ioport_map
);
246 * devm_ioport_unmap - Managed ioport_unmap()
247 * @dev: Generic device to unmap for
248 * @addr: Address to unmap
250 * Managed ioport_unmap(). @addr must have been mapped using
253 void devm_ioport_unmap(struct device
*dev
, void __iomem
*addr
)
256 WARN_ON(devres_destroy(dev
, devm_ioport_map_release
,
257 devm_ioport_map_match
, (__force
void *)addr
));
259 EXPORT_SYMBOL(devm_ioport_unmap
);
260 #endif /* CONFIG_HAS_IOPORT_MAP */
266 #define PCIM_IOMAP_MAX PCI_ROM_RESOURCE
268 struct pcim_iomap_devres
{
269 void __iomem
*table
[PCIM_IOMAP_MAX
];
272 static void pcim_iomap_release(struct device
*gendev
, void *res
)
274 struct pci_dev
*dev
= to_pci_dev(gendev
);
275 struct pcim_iomap_devres
*this = res
;
278 for (i
= 0; i
< PCIM_IOMAP_MAX
; i
++)
280 pci_iounmap(dev
, this->table
[i
]);
284 * pcim_iomap_table - access iomap allocation table
285 * @pdev: PCI device to access iomap table for
287 * Access iomap allocation table for @dev. If iomap table doesn't
288 * exist and @pdev is managed, it will be allocated. All iomaps
289 * recorded in the iomap table are automatically unmapped on driver
292 * This function might sleep when the table is first allocated but can
293 * be safely called without context and guaranteed to succed once
296 void __iomem
* const *pcim_iomap_table(struct pci_dev
*pdev
)
298 struct pcim_iomap_devres
*dr
, *new_dr
;
300 dr
= devres_find(&pdev
->dev
, pcim_iomap_release
, NULL
, NULL
);
304 new_dr
= devres_alloc(pcim_iomap_release
, sizeof(*new_dr
), GFP_KERNEL
);
307 dr
= devres_get(&pdev
->dev
, new_dr
, NULL
, NULL
);
310 EXPORT_SYMBOL(pcim_iomap_table
);
313 * pcim_iomap - Managed pcim_iomap()
314 * @pdev: PCI device to iomap for
316 * @maxlen: Maximum length of iomap
318 * Managed pci_iomap(). Map is automatically unmapped on driver
321 void __iomem
*pcim_iomap(struct pci_dev
*pdev
, int bar
, unsigned long maxlen
)
325 BUG_ON(bar
>= PCIM_IOMAP_MAX
);
327 tbl
= (void __iomem
**)pcim_iomap_table(pdev
);
328 if (!tbl
|| tbl
[bar
]) /* duplicate mappings not allowed */
331 tbl
[bar
] = pci_iomap(pdev
, bar
, maxlen
);
334 EXPORT_SYMBOL(pcim_iomap
);
337 * pcim_iounmap - Managed pci_iounmap()
338 * @pdev: PCI device to iounmap for
339 * @addr: Address to unmap
341 * Managed pci_iounmap(). @addr must have been mapped using pcim_iomap().
343 void pcim_iounmap(struct pci_dev
*pdev
, void __iomem
*addr
)
348 pci_iounmap(pdev
, addr
);
350 tbl
= (void __iomem
**)pcim_iomap_table(pdev
);
353 for (i
= 0; i
< PCIM_IOMAP_MAX
; i
++)
354 if (tbl
[i
] == addr
) {
360 EXPORT_SYMBOL(pcim_iounmap
);
363 * pcim_iomap_regions - Request and iomap PCI BARs
364 * @pdev: PCI device to map IO resources for
365 * @mask: Mask of BARs to request and iomap
366 * @name: Name used when requesting regions
368 * Request and iomap regions specified by @mask.
370 int pcim_iomap_regions(struct pci_dev
*pdev
, int mask
, const char *name
)
372 void __iomem
* const *iomap
;
375 iomap
= pcim_iomap_table(pdev
);
379 for (i
= 0; i
< DEVICE_COUNT_RESOURCE
; i
++) {
382 if (!(mask
& (1 << i
)))
386 len
= pci_resource_len(pdev
, i
);
390 rc
= pci_request_region(pdev
, i
, name
);
395 if (!pcim_iomap(pdev
, i
, 0))
402 pci_release_region(pdev
, i
);
405 if (!(mask
& (1 << i
)))
407 pcim_iounmap(pdev
, iomap
[i
]);
408 pci_release_region(pdev
, i
);
413 EXPORT_SYMBOL(pcim_iomap_regions
);
416 * pcim_iomap_regions_request_all - Request all BARs and iomap specified ones
417 * @pdev: PCI device to map IO resources for
418 * @mask: Mask of BARs to iomap
419 * @name: Name used when requesting regions
421 * Request all PCI BARs and iomap regions specified by @mask.
423 int pcim_iomap_regions_request_all(struct pci_dev
*pdev
, int mask
,
426 int request_mask
= ((1 << 6) - 1) & ~mask
;
429 rc
= pci_request_selected_regions(pdev
, request_mask
, name
);
433 rc
= pcim_iomap_regions(pdev
, mask
, name
);
435 pci_release_selected_regions(pdev
, request_mask
);
438 EXPORT_SYMBOL(pcim_iomap_regions_request_all
);
441 * pcim_iounmap_regions - Unmap and release PCI BARs
442 * @pdev: PCI device to map IO resources for
443 * @mask: Mask of BARs to unmap and release
445 * Unmap and release regions specified by @mask.
447 void pcim_iounmap_regions(struct pci_dev
*pdev
, int mask
)
449 void __iomem
* const *iomap
;
452 iomap
= pcim_iomap_table(pdev
);
456 for (i
= 0; i
< PCIM_IOMAP_MAX
; i
++) {
457 if (!(mask
& (1 << i
)))
460 pcim_iounmap(pdev
, iomap
[i
]);
461 pci_release_region(pdev
, i
);
464 EXPORT_SYMBOL(pcim_iounmap_regions
);
465 #endif /* CONFIG_PCI */