5 #include <linux/export.h>
7 void devm_ioremap_release(struct device *dev, void *res)
9 iounmap(*(void __iomem **)res);
12 static int devm_ioremap_match(struct device *dev, void *res, void *match_data)
14 return *(void **)res == match_data;
18 * devm_ioremap - Managed ioremap()
19 * @dev: Generic device to remap IO address for
20 * @offset: BUS offset to map
23 * Managed ioremap(). Map is automatically unmapped on driver detach.
25 void __iomem *devm_ioremap(struct device *dev, resource_size_t offset,
28 void __iomem **ptr, *addr;
30 ptr = devres_alloc(devm_ioremap_release, sizeof(*ptr), GFP_KERNEL);
34 addr = ioremap(offset, size);
43 EXPORT_SYMBOL(devm_ioremap);
46 * devm_ioremap_nocache - Managed ioremap_nocache()
47 * @dev: Generic device to remap IO address for
48 * @offset: BUS offset to map
51 * Managed ioremap_nocache(). Map is automatically unmapped on driver
54 void __iomem *devm_ioremap_nocache(struct device *dev, resource_size_t offset,
57 void __iomem **ptr, *addr;
59 ptr = devres_alloc(devm_ioremap_release, sizeof(*ptr), GFP_KERNEL);
63 addr = ioremap_nocache(offset, size);
72 EXPORT_SYMBOL(devm_ioremap_nocache);
75 * devm_iounmap - Managed iounmap()
76 * @dev: Generic device to unmap for
77 * @addr: Address to unmap
79 * Managed iounmap(). @addr must have been mapped using devm_ioremap*().
81 void devm_iounmap(struct device *dev, void __iomem *addr)
83 WARN_ON(devres_destroy(dev, devm_ioremap_release, devm_ioremap_match,
84 (__force void *)addr));
87 EXPORT_SYMBOL(devm_iounmap);
90 * devm_ioremap_resource() - check, request region, and ioremap resource
91 * @dev: generic device to handle the resource for
92 * @res: resource to be handled
94 * Checks that a resource is a valid memory region, requests the memory region
95 * and ioremaps it either as cacheable or as non-cacheable memory depending on
96 * the resource's flags. All operations are managed and will be undone on
99 * Returns a pointer to the remapped memory or an ERR_PTR() encoded error code
100 * on failure. Usage example:
102 * res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
103 * base = devm_ioremap_resource(&pdev->dev, res);
105 * return PTR_ERR(base);
107 void __iomem *devm_ioremap_resource(struct device *dev, struct resource *res)
109 resource_size_t size;
111 void __iomem *dest_ptr;
115 if (!res || resource_type(res) != IORESOURCE_MEM) {
116 dev_err(dev, "invalid resource\n");
117 return IOMEM_ERR_PTR(-EINVAL);
120 size = resource_size(res);
121 name = res->name ?: dev_name(dev);
123 if (!devm_request_mem_region(dev, res->start, size, name)) {
124 dev_err(dev, "can't request region for resource %pR\n", res);
125 return IOMEM_ERR_PTR(-EBUSY);
128 if (res->flags & IORESOURCE_CACHEABLE)
129 dest_ptr = devm_ioremap(dev, res->start, size);
131 dest_ptr = devm_ioremap_nocache(dev, res->start, size);
134 dev_err(dev, "ioremap failed for resource %pR\n", res);
135 devm_release_mem_region(dev, res->start, size);
136 dest_ptr = IOMEM_ERR_PTR(-ENOMEM);
141 EXPORT_SYMBOL(devm_ioremap_resource);
143 #ifdef CONFIG_HAS_IOPORT_MAP
145 * Generic iomap devres
147 static void devm_ioport_map_release(struct device *dev, void *res)
149 ioport_unmap(*(void __iomem **)res);
152 static int devm_ioport_map_match(struct device *dev, void *res,
155 return *(void **)res == match_data;
159 * devm_ioport_map - Managed ioport_map()
160 * @dev: Generic device to map ioport for
162 * @nr: Number of ports to map
164 * Managed ioport_map(). Map is automatically unmapped on driver
167 void __iomem *devm_ioport_map(struct device *dev, unsigned long port,
170 void __iomem **ptr, *addr;
172 ptr = devres_alloc(devm_ioport_map_release, sizeof(*ptr), GFP_KERNEL);
176 addr = ioport_map(port, nr);
179 devres_add(dev, ptr);
185 EXPORT_SYMBOL(devm_ioport_map);
188 * devm_ioport_unmap - Managed ioport_unmap()
189 * @dev: Generic device to unmap for
190 * @addr: Address to unmap
192 * Managed ioport_unmap(). @addr must have been mapped using
195 void devm_ioport_unmap(struct device *dev, void __iomem *addr)
198 WARN_ON(devres_destroy(dev, devm_ioport_map_release,
199 devm_ioport_map_match, (__force void *)addr));
201 EXPORT_SYMBOL(devm_ioport_unmap);
202 #endif /* CONFIG_HAS_IOPORT_MAP */
208 #define PCIM_IOMAP_MAX PCI_ROM_RESOURCE
210 struct pcim_iomap_devres {
211 void __iomem *table[PCIM_IOMAP_MAX];
214 static void pcim_iomap_release(struct device *gendev, void *res)
216 struct pci_dev *dev = container_of(gendev, struct pci_dev, dev);
217 struct pcim_iomap_devres *this = res;
220 for (i = 0; i < PCIM_IOMAP_MAX; i++)
222 pci_iounmap(dev, this->table[i]);
226 * pcim_iomap_table - access iomap allocation table
227 * @pdev: PCI device to access iomap table for
229 * Access iomap allocation table for @dev. If iomap table doesn't
230 * exist and @pdev is managed, it will be allocated. All iomaps
231 * recorded in the iomap table are automatically unmapped on driver
234 * This function might sleep when the table is first allocated but can
235 * be safely called without context and guaranteed to succed once
238 void __iomem * const *pcim_iomap_table(struct pci_dev *pdev)
240 struct pcim_iomap_devres *dr, *new_dr;
242 dr = devres_find(&pdev->dev, pcim_iomap_release, NULL, NULL);
246 new_dr = devres_alloc(pcim_iomap_release, sizeof(*new_dr), GFP_KERNEL);
249 dr = devres_get(&pdev->dev, new_dr, NULL, NULL);
252 EXPORT_SYMBOL(pcim_iomap_table);
255 * pcim_iomap - Managed pcim_iomap()
256 * @pdev: PCI device to iomap for
258 * @maxlen: Maximum length of iomap
260 * Managed pci_iomap(). Map is automatically unmapped on driver
263 void __iomem *pcim_iomap(struct pci_dev *pdev, int bar, unsigned long maxlen)
267 BUG_ON(bar >= PCIM_IOMAP_MAX);
269 tbl = (void __iomem **)pcim_iomap_table(pdev);
270 if (!tbl || tbl[bar]) /* duplicate mappings not allowed */
273 tbl[bar] = pci_iomap(pdev, bar, maxlen);
276 EXPORT_SYMBOL(pcim_iomap);
279 * pcim_iounmap - Managed pci_iounmap()
280 * @pdev: PCI device to iounmap for
281 * @addr: Address to unmap
283 * Managed pci_iounmap(). @addr must have been mapped using pcim_iomap().
285 void pcim_iounmap(struct pci_dev *pdev, void __iomem *addr)
290 pci_iounmap(pdev, addr);
292 tbl = (void __iomem **)pcim_iomap_table(pdev);
295 for (i = 0; i < PCIM_IOMAP_MAX; i++)
296 if (tbl[i] == addr) {
302 EXPORT_SYMBOL(pcim_iounmap);
305 * pcim_iomap_regions - Request and iomap PCI BARs
306 * @pdev: PCI device to map IO resources for
307 * @mask: Mask of BARs to request and iomap
308 * @name: Name used when requesting regions
310 * Request and iomap regions specified by @mask.
312 int pcim_iomap_regions(struct pci_dev *pdev, int mask, const char *name)
314 void __iomem * const *iomap;
317 iomap = pcim_iomap_table(pdev);
321 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
324 if (!(mask & (1 << i)))
328 len = pci_resource_len(pdev, i);
332 rc = pci_request_region(pdev, i, name);
337 if (!pcim_iomap(pdev, i, 0))
344 pci_release_region(pdev, i);
347 if (!(mask & (1 << i)))
349 pcim_iounmap(pdev, iomap[i]);
350 pci_release_region(pdev, i);
355 EXPORT_SYMBOL(pcim_iomap_regions);
358 * pcim_iomap_regions_request_all - Request all BARs and iomap specified ones
359 * @pdev: PCI device to map IO resources for
360 * @mask: Mask of BARs to iomap
361 * @name: Name used when requesting regions
363 * Request all PCI BARs and iomap regions specified by @mask.
365 int pcim_iomap_regions_request_all(struct pci_dev *pdev, int mask,
368 int request_mask = ((1 << 6) - 1) & ~mask;
371 rc = pci_request_selected_regions(pdev, request_mask, name);
375 rc = pcim_iomap_regions(pdev, mask, name);
377 pci_release_selected_regions(pdev, request_mask);
380 EXPORT_SYMBOL(pcim_iomap_regions_request_all);
383 * pcim_iounmap_regions - Unmap and release PCI BARs
384 * @pdev: PCI device to map IO resources for
385 * @mask: Mask of BARs to unmap and release
387 * Unmap and release regions specified by @mask.
389 void pcim_iounmap_regions(struct pci_dev *pdev, int mask)
391 void __iomem * const *iomap;
394 iomap = pcim_iomap_table(pdev);
398 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
399 if (!(mask & (1 << i)))
402 pcim_iounmap(pdev, iomap[i]);
403 pci_release_region(pdev, i);
406 EXPORT_SYMBOL(pcim_iounmap_regions);
407 #endif /* CONFIG_PCI */