OSDN Git Service

9f21b150396b9afc46b28b3f18ab84b18820a9b4
[uclinux-h8/linux.git] / tools / testing / nvdimm / test / iomap.c
1 /*
2  * Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
3  *
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.
7  *
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.
12  */
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>
18 #include <linux/io.h>
19 #include "nfit_test.h"
20
21 static LIST_HEAD(iomap_head);
22
23 static struct iomap_ops {
24         nfit_test_lookup_fn nfit_test_lookup;
25         struct list_head list;
26 } iomap_ops = {
27         .list = LIST_HEAD_INIT(iomap_ops.list),
28 };
29
30 void nfit_test_setup(nfit_test_lookup_fn lookup)
31 {
32         iomap_ops.nfit_test_lookup = lookup;
33         list_add_rcu(&iomap_ops.list, &iomap_head);
34 }
35 EXPORT_SYMBOL(nfit_test_setup);
36
37 void nfit_test_teardown(void)
38 {
39         list_del_rcu(&iomap_ops.list);
40         synchronize_rcu();
41 }
42 EXPORT_SYMBOL(nfit_test_teardown);
43
44 static struct nfit_test_resource *get_nfit_res(resource_size_t resource)
45 {
46         struct iomap_ops *ops;
47
48         ops = list_first_or_null_rcu(&iomap_head, typeof(*ops), list);
49         if (ops)
50                 return ops->nfit_test_lookup(resource);
51         return NULL;
52 }
53
54 void __iomem *__nfit_test_ioremap(resource_size_t offset, unsigned long size,
55                 void __iomem *(*fallback_fn)(resource_size_t, unsigned long))
56 {
57         struct nfit_test_resource *nfit_res;
58
59         rcu_read_lock();
60         nfit_res = get_nfit_res(offset);
61         rcu_read_unlock();
62         if (nfit_res)
63                 return (void __iomem *) nfit_res->buf + offset
64                         - nfit_res->res->start;
65         return fallback_fn(offset, size);
66 }
67
68 void __iomem *__wrap_ioremap_cache(resource_size_t offset, unsigned long size)
69 {
70         return __nfit_test_ioremap(offset, size, ioremap_cache);
71 }
72 EXPORT_SYMBOL(__wrap_ioremap_cache);
73
74 void __iomem *__wrap_ioremap_nocache(resource_size_t offset, unsigned long size)
75 {
76         return __nfit_test_ioremap(offset, size, ioremap_nocache);
77 }
78 EXPORT_SYMBOL(__wrap_ioremap_nocache);
79
80 void __iomem *__wrap_ioremap_wt(resource_size_t offset, unsigned long size)
81 {
82         return __nfit_test_ioremap(offset, size, ioremap_wt);
83 }
84 EXPORT_SYMBOL(__wrap_ioremap_wt);
85
86 void __wrap_iounmap(volatile void __iomem *addr)
87 {
88         struct nfit_test_resource *nfit_res;
89
90         rcu_read_lock();
91         nfit_res = get_nfit_res((unsigned long) addr);
92         rcu_read_unlock();
93         if (nfit_res)
94                 return;
95         return iounmap(addr);
96 }
97 EXPORT_SYMBOL(__wrap_iounmap);
98
99 struct resource *__wrap___request_region(struct resource *parent,
100                 resource_size_t start, resource_size_t n, const char *name,
101                 int flags)
102 {
103         struct nfit_test_resource *nfit_res;
104
105         if (parent == &iomem_resource) {
106                 rcu_read_lock();
107                 nfit_res = get_nfit_res(start);
108                 rcu_read_unlock();
109                 if (nfit_res) {
110                         struct resource *res = nfit_res->res + 1;
111
112                         if (start + n > nfit_res->res->start
113                                         + resource_size(nfit_res->res)) {
114                                 pr_debug("%s: start: %llx n: %llx overflow: %pr\n",
115                                                 __func__, start, n,
116                                                 nfit_res->res);
117                                 return NULL;
118                         }
119
120                         res->start = start;
121                         res->end = start + n - 1;
122                         res->name = name;
123                         res->flags = resource_type(parent);
124                         res->flags |= IORESOURCE_BUSY | flags;
125                         pr_debug("%s: %pr\n", __func__, res);
126                         return res;
127                 }
128         }
129         return __request_region(parent, start, n, name, flags);
130 }
131 EXPORT_SYMBOL(__wrap___request_region);
132
133 void __wrap___release_region(struct resource *parent, resource_size_t start,
134                                 resource_size_t n)
135 {
136         struct nfit_test_resource *nfit_res;
137
138         if (parent == &iomem_resource) {
139                 rcu_read_lock();
140                 nfit_res = get_nfit_res(start);
141                 rcu_read_unlock();
142                 if (nfit_res) {
143                         struct resource *res = nfit_res->res + 1;
144
145                         if (start != res->start || resource_size(res) != n)
146                                 pr_info("%s: start: %llx n: %llx mismatch: %pr\n",
147                                                 __func__, start, n, res);
148                         else
149                                 memset(res, 0, sizeof(*res));
150                         return;
151                 }
152         }
153         __release_region(parent, start, n);
154 }
155 EXPORT_SYMBOL(__wrap___release_region);
156
157 MODULE_LICENSE("GPL v2");