]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/testing/nvdimm/test/nfit_test.h
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/shli/md
[mirror_ubuntu-artful-kernel.git] / tools / testing / nvdimm / test / nfit_test.h
CommitLineData
6bc75619
DW
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#ifndef __NFIT_TEST_H__
14#define __NFIT_TEST_H__
f295e53b 15#include <linux/list.h>
6bc75619
DW
16
17struct nfit_test_resource {
18 struct list_head list;
19 struct resource *res;
20 struct device *dev;
21 void *buf;
22};
23
24typedef struct nfit_test_resource *(*nfit_test_lookup_fn)(resource_size_t);
25void __iomem *__wrap_ioremap_nocache(resource_size_t offset,
26 unsigned long size);
27void __wrap_iounmap(volatile void __iomem *addr);
28void nfit_test_setup(nfit_test_lookup_fn lookup);
29void nfit_test_teardown(void);
f295e53b 30struct nfit_test_resource *get_nfit_res(resource_size_t resource);
6bc75619 31#endif