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