2 * Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 #include <linux/rculist.h>
14 #include <linux/export.h>
15 #include <linux/ioport.h>
16 #include <linux/module.h>
17 #include <linux/types.h>
19 #include "nfit_test.h"
21 static LIST_HEAD(iomap_head);
23 static struct iomap_ops {
24 nfit_test_lookup_fn nfit_test_lookup;
25 struct list_head list;
27 .list = LIST_HEAD_INIT(iomap_ops.list),
30 void nfit_test_setup(nfit_test_lookup_fn lookup)
32 iomap_ops.nfit_test_lookup = lookup;
33 list_add_rcu(&iomap_ops.list, &iomap_head);
35 EXPORT_SYMBOL(nfit_test_setup);
37 void nfit_test_teardown(void)
39 list_del_rcu(&iomap_ops.list);
42 EXPORT_SYMBOL(nfit_test_teardown);
44 static struct nfit_test_resource *get_nfit_res(resource_size_t resource)
46 struct iomap_ops *ops;
48 ops = list_first_or_null_rcu(&iomap_head, typeof(*ops), list);
50 return ops->nfit_test_lookup(resource);
54 void __iomem *__nfit_test_ioremap(resource_size_t offset, unsigned long size,
55 void __iomem *(*fallback_fn)(resource_size_t, unsigned long))
57 struct nfit_test_resource *nfit_res;
60 nfit_res = get_nfit_res(offset);
63 return (void __iomem *) nfit_res->buf + offset
64 - nfit_res->res->start;
65 return fallback_fn(offset, size);
68 void __iomem *__wrap_ioremap_cache(resource_size_t offset, unsigned long size)
70 return __nfit_test_ioremap(offset, size, ioremap_cache);
72 EXPORT_SYMBOL(__wrap_ioremap_cache);
74 void __iomem *__wrap_ioremap_nocache(resource_size_t offset, unsigned long size)
76 return __nfit_test_ioremap(offset, size, ioremap_nocache);
78 EXPORT_SYMBOL(__wrap_ioremap_nocache);
80 void __wrap_iounmap(volatile void __iomem *addr)
82 struct nfit_test_resource *nfit_res;
85 nfit_res = get_nfit_res((unsigned long) addr);
91 EXPORT_SYMBOL(__wrap_iounmap);
93 struct resource *__wrap___request_region(struct resource *parent,
94 resource_size_t start, resource_size_t n, const char *name,
97 struct nfit_test_resource *nfit_res;
99 if (parent == &iomem_resource) {
101 nfit_res = get_nfit_res(start);
104 struct resource *res = nfit_res->res + 1;
106 if (start + n > nfit_res->res->start
107 + resource_size(nfit_res->res)) {
108 pr_debug("%s: start: %llx n: %llx overflow: %pr\n",
115 res->end = start + n - 1;
117 res->flags = resource_type(parent);
118 res->flags |= IORESOURCE_BUSY | flags;
119 pr_debug("%s: %pr\n", __func__, res);
123 return __request_region(parent, start, n, name, flags);
125 EXPORT_SYMBOL(__wrap___request_region);
127 void __wrap___release_region(struct resource *parent, resource_size_t start,
130 struct nfit_test_resource *nfit_res;
132 if (parent == &iomem_resource) {
134 nfit_res = get_nfit_res(start);
137 struct resource *res = nfit_res->res + 1;
139 if (start != res->start || resource_size(res) != n)
140 pr_info("%s: start: %llx n: %llx mismatch: %pr\n",
141 __func__, start, n, res);
143 memset(res, 0, sizeof(*res));
147 __release_region(parent, start, n);
149 EXPORT_SYMBOL(__wrap___release_region);
151 MODULE_LICENSE("GPL v2");