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/memremap.h>
14 #include <linux/rculist.h>
15 #include <linux/export.h>
16 #include <linux/ioport.h>
17 #include <linux/module.h>
18 #include <linux/types.h>
19 #include <linux/pfn_t.h>
20 #include <linux/acpi.h>
23 #include "nfit_test.h"
25 static LIST_HEAD(iomap_head
);
27 static struct iomap_ops
{
28 nfit_test_lookup_fn nfit_test_lookup
;
29 nfit_test_evaluate_dsm_fn evaluate_dsm
;
30 struct list_head list
;
32 .list
= LIST_HEAD_INIT(iomap_ops
.list
),
35 void nfit_test_setup(nfit_test_lookup_fn lookup
,
36 nfit_test_evaluate_dsm_fn evaluate
)
38 iomap_ops
.nfit_test_lookup
= lookup
;
39 iomap_ops
.evaluate_dsm
= evaluate
;
40 list_add_rcu(&iomap_ops
.list
, &iomap_head
);
42 EXPORT_SYMBOL(nfit_test_setup
);
44 void nfit_test_teardown(void)
46 list_del_rcu(&iomap_ops
.list
);
49 EXPORT_SYMBOL(nfit_test_teardown
);
51 static struct nfit_test_resource
*__get_nfit_res(resource_size_t resource
)
53 struct iomap_ops
*ops
;
55 ops
= list_first_or_null_rcu(&iomap_head
, typeof(*ops
), list
);
57 return ops
->nfit_test_lookup(resource
);
61 struct nfit_test_resource
*get_nfit_res(resource_size_t resource
)
63 struct nfit_test_resource
*res
;
66 res
= __get_nfit_res(resource
);
71 EXPORT_SYMBOL(get_nfit_res
);
73 void __iomem
*__nfit_test_ioremap(resource_size_t offset
, unsigned long size
,
74 void __iomem
*(*fallback_fn
)(resource_size_t
, unsigned long))
76 struct nfit_test_resource
*nfit_res
= get_nfit_res(offset
);
79 return (void __iomem
*) nfit_res
->buf
+ offset
80 - nfit_res
->res
.start
;
81 return fallback_fn(offset
, size
);
84 void __iomem
*__wrap_devm_ioremap_nocache(struct device
*dev
,
85 resource_size_t offset
, unsigned long size
)
87 struct nfit_test_resource
*nfit_res
= get_nfit_res(offset
);
90 return (void __iomem
*) nfit_res
->buf
+ offset
91 - nfit_res
->res
.start
;
92 return devm_ioremap_nocache(dev
, offset
, size
);
94 EXPORT_SYMBOL(__wrap_devm_ioremap_nocache
);
96 void *__wrap_devm_memremap(struct device
*dev
, resource_size_t offset
,
97 size_t size
, unsigned long flags
)
99 struct nfit_test_resource
*nfit_res
= get_nfit_res(offset
);
102 return nfit_res
->buf
+ offset
- nfit_res
->res
.start
;
103 return devm_memremap(dev
, offset
, size
, flags
);
105 EXPORT_SYMBOL(__wrap_devm_memremap
);
107 void *__wrap_devm_memremap_pages(struct device
*dev
, struct dev_pagemap
*pgmap
)
109 resource_size_t offset
= pgmap
->res
.start
;
110 struct nfit_test_resource
*nfit_res
= get_nfit_res(offset
);
113 return nfit_res
->buf
+ offset
- nfit_res
->res
.start
;
114 return devm_memremap_pages(dev
, pgmap
);
116 EXPORT_SYMBOL(__wrap_devm_memremap_pages
);
118 pfn_t
__wrap_phys_to_pfn_t(phys_addr_t addr
, unsigned long flags
)
120 struct nfit_test_resource
*nfit_res
= get_nfit_res(addr
);
124 return phys_to_pfn_t(addr
, flags
);
126 EXPORT_SYMBOL(__wrap_phys_to_pfn_t
);
128 void *__wrap_memremap(resource_size_t offset
, size_t size
,
131 struct nfit_test_resource
*nfit_res
= get_nfit_res(offset
);
134 return nfit_res
->buf
+ offset
- nfit_res
->res
.start
;
135 return memremap(offset
, size
, flags
);
137 EXPORT_SYMBOL(__wrap_memremap
);
139 void __wrap_devm_memunmap(struct device
*dev
, void *addr
)
141 struct nfit_test_resource
*nfit_res
= get_nfit_res((long) addr
);
145 return devm_memunmap(dev
, addr
);
147 EXPORT_SYMBOL(__wrap_devm_memunmap
);
149 void __iomem
*__wrap_ioremap_nocache(resource_size_t offset
, unsigned long size
)
151 return __nfit_test_ioremap(offset
, size
, ioremap_nocache
);
153 EXPORT_SYMBOL(__wrap_ioremap_nocache
);
155 void __iomem
*__wrap_ioremap_wc(resource_size_t offset
, unsigned long size
)
157 return __nfit_test_ioremap(offset
, size
, ioremap_wc
);
159 EXPORT_SYMBOL(__wrap_ioremap_wc
);
161 void __wrap_iounmap(volatile void __iomem
*addr
)
163 struct nfit_test_resource
*nfit_res
= get_nfit_res((long) addr
);
166 return iounmap(addr
);
168 EXPORT_SYMBOL(__wrap_iounmap
);
170 void __wrap_memunmap(void *addr
)
172 struct nfit_test_resource
*nfit_res
= get_nfit_res((long) addr
);
176 return memunmap(addr
);
178 EXPORT_SYMBOL(__wrap_memunmap
);
180 static bool nfit_test_release_region(struct device
*dev
,
181 struct resource
*parent
, resource_size_t start
,
184 static void nfit_devres_release(struct device
*dev
, void *data
)
186 struct resource
*res
= *((struct resource
**) data
);
188 WARN_ON(!nfit_test_release_region(NULL
, &iomem_resource
, res
->start
,
189 resource_size(res
)));
192 static int match(struct device
*dev
, void *__res
, void *match_data
)
194 struct resource
*res
= *((struct resource
**) __res
);
195 resource_size_t start
= *((resource_size_t
*) match_data
);
197 return res
->start
== start
;
200 static bool nfit_test_release_region(struct device
*dev
,
201 struct resource
*parent
, resource_size_t start
,
204 if (parent
== &iomem_resource
) {
205 struct nfit_test_resource
*nfit_res
= get_nfit_res(start
);
208 struct nfit_test_request
*req
;
209 struct resource
*res
= NULL
;
212 devres_release(dev
, nfit_devres_release
, match
,
217 spin_lock(&nfit_res
->lock
);
218 list_for_each_entry(req
, &nfit_res
->requests
, list
)
219 if (req
->res
.start
== start
) {
221 list_del(&req
->list
);
224 spin_unlock(&nfit_res
->lock
);
226 WARN(!res
|| resource_size(res
) != n
,
227 "%s: start: %llx n: %llx mismatch: %pr\n",
228 __func__
, start
, n
, res
);
237 static struct resource
*nfit_test_request_region(struct device
*dev
,
238 struct resource
*parent
, resource_size_t start
,
239 resource_size_t n
, const char *name
, int flags
)
241 struct nfit_test_resource
*nfit_res
;
243 if (parent
== &iomem_resource
) {
244 nfit_res
= get_nfit_res(start
);
246 struct nfit_test_request
*req
;
247 struct resource
*res
= NULL
;
249 if (start
+ n
> nfit_res
->res
.start
250 + resource_size(&nfit_res
->res
)) {
251 pr_debug("%s: start: %llx n: %llx overflow: %pr\n",
257 spin_lock(&nfit_res
->lock
);
258 list_for_each_entry(req
, &nfit_res
->requests
, list
)
259 if (start
== req
->res
.start
) {
263 spin_unlock(&nfit_res
->lock
);
266 WARN(1, "%pr already busy\n", res
);
270 req
= kzalloc(sizeof(*req
), GFP_KERNEL
);
273 INIT_LIST_HEAD(&req
->list
);
277 res
->end
= start
+ n
- 1;
279 res
->flags
= resource_type(parent
);
280 res
->flags
|= IORESOURCE_BUSY
| flags
;
281 spin_lock(&nfit_res
->lock
);
282 list_add(&req
->list
, &nfit_res
->requests
);
283 spin_unlock(&nfit_res
->lock
);
288 d
= devres_alloc(nfit_devres_release
,
289 sizeof(struct resource
*),
297 pr_debug("%s: %pr\n", __func__
, res
);
302 return __devm_request_region(dev
, parent
, start
, n
, name
);
303 return __request_region(parent
, start
, n
, name
, flags
);
306 struct resource
*__wrap___request_region(struct resource
*parent
,
307 resource_size_t start
, resource_size_t n
, const char *name
,
310 return nfit_test_request_region(NULL
, parent
, start
, n
, name
, flags
);
312 EXPORT_SYMBOL(__wrap___request_region
);
314 int __wrap_insert_resource(struct resource
*parent
, struct resource
*res
)
316 if (get_nfit_res(res
->start
))
318 return insert_resource(parent
, res
);
320 EXPORT_SYMBOL(__wrap_insert_resource
);
322 int __wrap_remove_resource(struct resource
*res
)
324 if (get_nfit_res(res
->start
))
326 return remove_resource(res
);
328 EXPORT_SYMBOL(__wrap_remove_resource
);
330 struct resource
*__wrap___devm_request_region(struct device
*dev
,
331 struct resource
*parent
, resource_size_t start
,
332 resource_size_t n
, const char *name
)
336 return nfit_test_request_region(dev
, parent
, start
, n
, name
, 0);
338 EXPORT_SYMBOL(__wrap___devm_request_region
);
340 void __wrap___release_region(struct resource
*parent
, resource_size_t start
,
343 if (!nfit_test_release_region(NULL
, parent
, start
, n
))
344 __release_region(parent
, start
, n
);
346 EXPORT_SYMBOL(__wrap___release_region
);
348 void __wrap___devm_release_region(struct device
*dev
, struct resource
*parent
,
349 resource_size_t start
, resource_size_t n
)
351 if (!nfit_test_release_region(dev
, parent
, start
, n
))
352 __devm_release_region(dev
, parent
, start
, n
);
354 EXPORT_SYMBOL(__wrap___devm_release_region
);
356 acpi_status
__wrap_acpi_evaluate_object(acpi_handle handle
, acpi_string path
,
357 struct acpi_object_list
*p
, struct acpi_buffer
*buf
)
359 struct nfit_test_resource
*nfit_res
= get_nfit_res((long) handle
);
360 union acpi_object
**obj
;
362 if (!nfit_res
|| strcmp(path
, "_FIT") || !buf
)
363 return acpi_evaluate_object(handle
, path
, p
, buf
);
366 buf
->length
= sizeof(union acpi_object
);
370 EXPORT_SYMBOL(__wrap_acpi_evaluate_object
);
372 union acpi_object
* __wrap_acpi_evaluate_dsm(acpi_handle handle
, const guid_t
*guid
,
373 u64 rev
, u64 func
, union acpi_object
*argv4
)
375 union acpi_object
*obj
= ERR_PTR(-ENXIO
);
376 struct iomap_ops
*ops
;
379 ops
= list_first_or_null_rcu(&iomap_head
, typeof(*ops
), list
);
381 obj
= ops
->evaluate_dsm(handle
, guid
, rev
, func
, argv4
);
385 return acpi_evaluate_dsm(handle
, guid
, rev
, func
, argv4
);
388 EXPORT_SYMBOL(__wrap_acpi_evaluate_dsm
);
390 MODULE_LICENSE("GPL v2");