blob: faccf1a037d05cdd7cc179de960457016d6504cc [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Thierry Redingf4a18312013-01-22 22:24:46 +01002#include <linux/err.h>
Al Viro5ea81762007-02-11 15:41:31 +00003#include <linux/pci.h>
4#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09005#include <linux/gfp.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -05006#include <linux/export.h>
Benjamin Herrenschmidtd5e83822018-06-05 13:21:26 +10007#include <linux/of_address.h>
Al Viro5ea81762007-02-11 15:41:31 +00008
Yisheng Xie1b723412018-01-29 19:48:16 +08009enum devm_ioremap_type {
10 DEVM_IOREMAP = 0,
11 DEVM_IOREMAP_NC,
12 DEVM_IOREMAP_WC,
13};
14
Emil Medveb41e5ff2008-05-03 06:34:04 +100015void devm_ioremap_release(struct device *dev, void *res)
Al Viro5ea81762007-02-11 15:41:31 +000016{
17 iounmap(*(void __iomem **)res);
18}
19
20static int devm_ioremap_match(struct device *dev, void *res, void *match_data)
21{
22 return *(void **)res == match_data;
23}
24
Yisheng Xie1b723412018-01-29 19:48:16 +080025static void __iomem *__devm_ioremap(struct device *dev, resource_size_t offset,
26 resource_size_t size,
27 enum devm_ioremap_type type)
28{
29 void __iomem **ptr, *addr = NULL;
30
31 ptr = devres_alloc(devm_ioremap_release, sizeof(*ptr), GFP_KERNEL);
32 if (!ptr)
33 return NULL;
34
35 switch (type) {
36 case DEVM_IOREMAP:
37 addr = ioremap(offset, size);
38 break;
39 case DEVM_IOREMAP_NC:
40 addr = ioremap_nocache(offset, size);
41 break;
42 case DEVM_IOREMAP_WC:
43 addr = ioremap_wc(offset, size);
44 break;
45 }
46
47 if (addr) {
48 *ptr = addr;
49 devres_add(dev, ptr);
50 } else
51 devres_free(ptr);
52
53 return addr;
54}
55
Al Viro5ea81762007-02-11 15:41:31 +000056/**
57 * devm_ioremap - Managed ioremap()
58 * @dev: Generic device to remap IO address for
Lorenzo Pieralisi65247542017-04-19 17:48:54 +010059 * @offset: Resource address to map
Al Viro5ea81762007-02-11 15:41:31 +000060 * @size: Size of map
61 *
62 * Managed ioremap(). Map is automatically unmapped on driver detach.
63 */
Kumar Gala4f452e82008-04-29 10:25:48 -050064void __iomem *devm_ioremap(struct device *dev, resource_size_t offset,
Cristian Stoica5559b7b2014-10-07 18:25:43 +030065 resource_size_t size)
Al Viro5ea81762007-02-11 15:41:31 +000066{
Yisheng Xie1b723412018-01-29 19:48:16 +080067 return __devm_ioremap(dev, offset, size, DEVM_IOREMAP);
Al Viro5ea81762007-02-11 15:41:31 +000068}
69EXPORT_SYMBOL(devm_ioremap);
70
71/**
72 * devm_ioremap_nocache - Managed ioremap_nocache()
73 * @dev: Generic device to remap IO address for
Lorenzo Pieralisi65247542017-04-19 17:48:54 +010074 * @offset: Resource address to map
Al Viro5ea81762007-02-11 15:41:31 +000075 * @size: Size of map
76 *
77 * Managed ioremap_nocache(). Map is automatically unmapped on driver
78 * detach.
79 */
Kumar Gala4f452e82008-04-29 10:25:48 -050080void __iomem *devm_ioremap_nocache(struct device *dev, resource_size_t offset,
Cristian Stoica5559b7b2014-10-07 18:25:43 +030081 resource_size_t size)
Al Viro5ea81762007-02-11 15:41:31 +000082{
Yisheng Xie1b723412018-01-29 19:48:16 +080083 return __devm_ioremap(dev, offset, size, DEVM_IOREMAP_NC);
Al Viro5ea81762007-02-11 15:41:31 +000084}
85EXPORT_SYMBOL(devm_ioremap_nocache);
86
87/**
Abhilash Kesavan34644522015-02-06 19:15:27 +053088 * devm_ioremap_wc - Managed ioremap_wc()
89 * @dev: Generic device to remap IO address for
Lorenzo Pieralisi65247542017-04-19 17:48:54 +010090 * @offset: Resource address to map
Abhilash Kesavan34644522015-02-06 19:15:27 +053091 * @size: Size of map
92 *
93 * Managed ioremap_wc(). Map is automatically unmapped on driver detach.
94 */
95void __iomem *devm_ioremap_wc(struct device *dev, resource_size_t offset,
96 resource_size_t size)
97{
Yisheng Xie1b723412018-01-29 19:48:16 +080098 return __devm_ioremap(dev, offset, size, DEVM_IOREMAP_WC);
Abhilash Kesavan34644522015-02-06 19:15:27 +053099}
100EXPORT_SYMBOL(devm_ioremap_wc);
101
102/**
Al Viro5ea81762007-02-11 15:41:31 +0000103 * devm_iounmap - Managed iounmap()
104 * @dev: Generic device to unmap for
105 * @addr: Address to unmap
106 *
107 * Managed iounmap(). @addr must have been mapped using devm_ioremap*().
108 */
109void devm_iounmap(struct device *dev, void __iomem *addr)
110{
Al Viro5ea81762007-02-11 15:41:31 +0000111 WARN_ON(devres_destroy(dev, devm_ioremap_release, devm_ioremap_match,
Steven Rostedtb104d6a2014-04-03 14:49:07 -0700112 (__force void *)addr));
Maxin B Johnae891a12011-07-25 17:12:59 -0700113 iounmap(addr);
Al Viro5ea81762007-02-11 15:41:31 +0000114}
115EXPORT_SYMBOL(devm_iounmap);
116
Wolfram Sang72f8c0b2011-10-25 15:16:47 +0200117/**
Thierry Reding75096572013-01-21 11:08:54 +0100118 * devm_ioremap_resource() - check, request region, and ioremap resource
119 * @dev: generic device to handle the resource for
120 * @res: resource to be handled
121 *
Dan Williams92b19ff2015-08-10 23:07:06 -0400122 * 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
124 * on driver detach.
Thierry Reding75096572013-01-21 11:08:54 +0100125 *
126 * Returns a pointer to the remapped memory or an ERR_PTR() encoded error code
127 * on failure. Usage example:
128 *
129 * res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
130 * base = devm_ioremap_resource(&pdev->dev, res);
131 * if (IS_ERR(base))
132 * return PTR_ERR(base);
133 */
134void __iomem *devm_ioremap_resource(struct device *dev, struct resource *res)
135{
136 resource_size_t size;
137 const char *name;
138 void __iomem *dest_ptr;
139
140 BUG_ON(!dev);
141
142 if (!res || resource_type(res) != IORESOURCE_MEM) {
143 dev_err(dev, "invalid resource\n");
Steven Rostedtb104d6a2014-04-03 14:49:07 -0700144 return IOMEM_ERR_PTR(-EINVAL);
Thierry Reding75096572013-01-21 11:08:54 +0100145 }
146
147 size = resource_size(res);
148 name = res->name ?: dev_name(dev);
149
150 if (!devm_request_mem_region(dev, res->start, size, name)) {
151 dev_err(dev, "can't request region for resource %pR\n", res);
Steven Rostedtb104d6a2014-04-03 14:49:07 -0700152 return IOMEM_ERR_PTR(-EBUSY);
Thierry Reding75096572013-01-21 11:08:54 +0100153 }
154
Dan Williams92b19ff2015-08-10 23:07:06 -0400155 dest_ptr = devm_ioremap(dev, res->start, size);
Thierry Reding75096572013-01-21 11:08:54 +0100156 if (!dest_ptr) {
157 dev_err(dev, "ioremap failed for resource %pR\n", res);
158 devm_release_mem_region(dev, res->start, size);
Steven Rostedtb104d6a2014-04-03 14:49:07 -0700159 dest_ptr = IOMEM_ERR_PTR(-ENOMEM);
Thierry Reding75096572013-01-21 11:08:54 +0100160 }
161
162 return dest_ptr;
163}
164EXPORT_SYMBOL(devm_ioremap_resource);
165
Benjamin Herrenschmidtd5e83822018-06-05 13:21:26 +1000166/*
167 * devm_of_iomap - Requests a resource and maps the memory mapped IO
168 * for a given device_node managed by a given device
169 *
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.
173 *
174 * This is to be used when a device requests/maps resources described
175 * by other device tree nodes (children or otherwise).
176 *
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:
183 *
184 * base = devm_of_iomap(&pdev->dev, node, 0, NULL);
185 * if (IS_ERR(base))
186 * return PTR_ERR(base);
187 */
188void __iomem *devm_of_iomap(struct device *dev, struct device_node *node, int index,
189 resource_size_t *size)
190{
191 struct resource res;
192
193 if (of_address_to_resource(node, index, &res))
194 return IOMEM_ERR_PTR(-EINVAL);
195 if (size)
196 *size = resource_size(&res);
197 return devm_ioremap_resource(dev, &res);
198}
199EXPORT_SYMBOL(devm_of_iomap);
200
Uwe Kleine-Königce816fa2014-04-07 15:39:19 -0700201#ifdef CONFIG_HAS_IOPORT_MAP
Al Viro5ea81762007-02-11 15:41:31 +0000202/*
203 * Generic iomap devres
204 */
205static void devm_ioport_map_release(struct device *dev, void *res)
206{
207 ioport_unmap(*(void __iomem **)res);
208}
209
210static int devm_ioport_map_match(struct device *dev, void *res,
211 void *match_data)
212{
213 return *(void **)res == match_data;
214}
215
216/**
217 * devm_ioport_map - Managed ioport_map()
218 * @dev: Generic device to map ioport for
219 * @port: Port to map
220 * @nr: Number of ports to map
221 *
222 * Managed ioport_map(). Map is automatically unmapped on driver
223 * detach.
224 */
Fabian Frederick5cbb00c2014-05-23 22:30:50 +0200225void __iomem *devm_ioport_map(struct device *dev, unsigned long port,
Al Viro5ea81762007-02-11 15:41:31 +0000226 unsigned int nr)
227{
228 void __iomem **ptr, *addr;
229
230 ptr = devres_alloc(devm_ioport_map_release, sizeof(*ptr), GFP_KERNEL);
231 if (!ptr)
232 return NULL;
233
234 addr = ioport_map(port, nr);
235 if (addr) {
236 *ptr = addr;
237 devres_add(dev, ptr);
238 } else
239 devres_free(ptr);
240
241 return addr;
242}
243EXPORT_SYMBOL(devm_ioport_map);
244
245/**
246 * devm_ioport_unmap - Managed ioport_unmap()
247 * @dev: Generic device to unmap for
248 * @addr: Address to unmap
249 *
250 * Managed ioport_unmap(). @addr must have been mapped using
251 * devm_ioport_map().
252 */
253void devm_ioport_unmap(struct device *dev, void __iomem *addr)
254{
255 ioport_unmap(addr);
256 WARN_ON(devres_destroy(dev, devm_ioport_map_release,
Steven Rostedtb104d6a2014-04-03 14:49:07 -0700257 devm_ioport_map_match, (__force void *)addr));
Al Viro5ea81762007-02-11 15:41:31 +0000258}
259EXPORT_SYMBOL(devm_ioport_unmap);
Uwe Kleine-Königce816fa2014-04-07 15:39:19 -0700260#endif /* CONFIG_HAS_IOPORT_MAP */
Al Viro5ea81762007-02-11 15:41:31 +0000261
262#ifdef CONFIG_PCI
263/*
264 * PCI iomap devres
265 */
266#define PCIM_IOMAP_MAX PCI_ROM_RESOURCE
267
268struct pcim_iomap_devres {
269 void __iomem *table[PCIM_IOMAP_MAX];
270};
271
272static void pcim_iomap_release(struct device *gendev, void *res)
273{
Geliang Tang20af74e2015-12-27 18:46:05 +0800274 struct pci_dev *dev = to_pci_dev(gendev);
Al Viro5ea81762007-02-11 15:41:31 +0000275 struct pcim_iomap_devres *this = res;
276 int i;
277
278 for (i = 0; i < PCIM_IOMAP_MAX; i++)
279 if (this->table[i])
280 pci_iounmap(dev, this->table[i]);
281}
282
283/**
284 * pcim_iomap_table - access iomap allocation table
285 * @pdev: PCI device to access iomap table for
286 *
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
290 * detach.
291 *
292 * This function might sleep when the table is first allocated but can
293 * be safely called without context and guaranteed to succed once
294 * allocated.
295 */
Fabian Frederick5cbb00c2014-05-23 22:30:50 +0200296void __iomem * const *pcim_iomap_table(struct pci_dev *pdev)
Al Viro5ea81762007-02-11 15:41:31 +0000297{
298 struct pcim_iomap_devres *dr, *new_dr;
299
300 dr = devres_find(&pdev->dev, pcim_iomap_release, NULL, NULL);
301 if (dr)
302 return dr->table;
303
304 new_dr = devres_alloc(pcim_iomap_release, sizeof(*new_dr), GFP_KERNEL);
305 if (!new_dr)
306 return NULL;
307 dr = devres_get(&pdev->dev, new_dr, NULL, NULL);
308 return dr->table;
309}
310EXPORT_SYMBOL(pcim_iomap_table);
311
312/**
313 * pcim_iomap - Managed pcim_iomap()
314 * @pdev: PCI device to iomap for
315 * @bar: BAR to iomap
316 * @maxlen: Maximum length of iomap
317 *
318 * Managed pci_iomap(). Map is automatically unmapped on driver
319 * detach.
320 */
Fabian Frederick5cbb00c2014-05-23 22:30:50 +0200321void __iomem *pcim_iomap(struct pci_dev *pdev, int bar, unsigned long maxlen)
Al Viro5ea81762007-02-11 15:41:31 +0000322{
323 void __iomem **tbl;
324
325 BUG_ON(bar >= PCIM_IOMAP_MAX);
326
327 tbl = (void __iomem **)pcim_iomap_table(pdev);
328 if (!tbl || tbl[bar]) /* duplicate mappings not allowed */
329 return NULL;
330
331 tbl[bar] = pci_iomap(pdev, bar, maxlen);
332 return tbl[bar];
333}
334EXPORT_SYMBOL(pcim_iomap);
335
336/**
337 * pcim_iounmap - Managed pci_iounmap()
338 * @pdev: PCI device to iounmap for
339 * @addr: Address to unmap
340 *
341 * Managed pci_iounmap(). @addr must have been mapped using pcim_iomap().
342 */
343void pcim_iounmap(struct pci_dev *pdev, void __iomem *addr)
344{
345 void __iomem **tbl;
346 int i;
347
348 pci_iounmap(pdev, addr);
349
350 tbl = (void __iomem **)pcim_iomap_table(pdev);
351 BUG_ON(!tbl);
352
353 for (i = 0; i < PCIM_IOMAP_MAX; i++)
354 if (tbl[i] == addr) {
355 tbl[i] = NULL;
356 return;
357 }
358 WARN_ON(1);
359}
360EXPORT_SYMBOL(pcim_iounmap);
361
362/**
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
367 *
368 * Request and iomap regions specified by @mask.
369 */
Yinghai Lufb7ebfe2012-01-04 15:50:02 -0800370int pcim_iomap_regions(struct pci_dev *pdev, int mask, const char *name)
Al Viro5ea81762007-02-11 15:41:31 +0000371{
372 void __iomem * const *iomap;
373 int i, rc;
374
375 iomap = pcim_iomap_table(pdev);
376 if (!iomap)
377 return -ENOMEM;
378
379 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
380 unsigned long len;
381
382 if (!(mask & (1 << i)))
383 continue;
384
385 rc = -EINVAL;
386 len = pci_resource_len(pdev, i);
387 if (!len)
388 goto err_inval;
389
390 rc = pci_request_region(pdev, i, name);
391 if (rc)
Frederik Deweerdtfb4d64e2007-02-16 01:27:15 -0800392 goto err_inval;
Al Viro5ea81762007-02-11 15:41:31 +0000393
394 rc = -ENOMEM;
395 if (!pcim_iomap(pdev, i, 0))
Frederik Deweerdtfb4d64e2007-02-16 01:27:15 -0800396 goto err_region;
Al Viro5ea81762007-02-11 15:41:31 +0000397 }
398
399 return 0;
400
Al Viro5ea81762007-02-11 15:41:31 +0000401 err_region:
402 pci_release_region(pdev, i);
403 err_inval:
404 while (--i >= 0) {
Frederik Deweerdtfb4d64e2007-02-16 01:27:15 -0800405 if (!(mask & (1 << i)))
406 continue;
Al Viro5ea81762007-02-11 15:41:31 +0000407 pcim_iounmap(pdev, iomap[i]);
408 pci_release_region(pdev, i);
409 }
410
411 return rc;
412}
413EXPORT_SYMBOL(pcim_iomap_regions);
Tejun Heoec04b072007-03-09 19:45:58 +0900414
415/**
Tejun Heo916fbfb2008-03-12 15:26:34 +0900416 * 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
420 *
421 * Request all PCI BARs and iomap regions specified by @mask.
422 */
Yinghai Lufb7ebfe2012-01-04 15:50:02 -0800423int pcim_iomap_regions_request_all(struct pci_dev *pdev, int mask,
Tejun Heo916fbfb2008-03-12 15:26:34 +0900424 const char *name)
425{
426 int request_mask = ((1 << 6) - 1) & ~mask;
427 int rc;
428
429 rc = pci_request_selected_regions(pdev, request_mask, name);
430 if (rc)
431 return rc;
432
433 rc = pcim_iomap_regions(pdev, mask, name);
434 if (rc)
435 pci_release_selected_regions(pdev, request_mask);
436 return rc;
437}
438EXPORT_SYMBOL(pcim_iomap_regions_request_all);
439
440/**
Tejun Heoec04b072007-03-09 19:45:58 +0900441 * 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
444 *
Kulikov Vasiliy4d45ada2010-07-10 14:07:41 +0400445 * Unmap and release regions specified by @mask.
Tejun Heoec04b072007-03-09 19:45:58 +0900446 */
Yinghai Lufb7ebfe2012-01-04 15:50:02 -0800447void pcim_iounmap_regions(struct pci_dev *pdev, int mask)
Tejun Heoec04b072007-03-09 19:45:58 +0900448{
449 void __iomem * const *iomap;
450 int i;
451
452 iomap = pcim_iomap_table(pdev);
453 if (!iomap)
454 return;
455
Dan Carpenter1f35d042015-09-21 19:21:51 +0300456 for (i = 0; i < PCIM_IOMAP_MAX; i++) {
Tejun Heoec04b072007-03-09 19:45:58 +0900457 if (!(mask & (1 << i)))
458 continue;
459
460 pcim_iounmap(pdev, iomap[i]);
461 pci_release_region(pdev, i);
462 }
463}
464EXPORT_SYMBOL(pcim_iounmap_regions);
Wolfram Sang571806a2011-10-25 15:03:42 +0200465#endif /* CONFIG_PCI */