Dave Jiang | efebc71 | 2017-04-07 15:33:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016, Intel Corporation. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms and conditions of the GNU General Public License, |
| 6 | * version 2, as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 11 | * more details. |
| 12 | */ |
| 13 | #include "test/nfit_test.h" |
| 14 | #include <linux/mm.h> |
| 15 | #include "../../../drivers/dax/dax-private.h" |
| 16 | |
Dan Williams | 7361636 | 2017-05-04 23:38:43 -0700 | [diff] [blame] | 17 | phys_addr_t dax_pgoff_to_phys(struct dev_dax *dev_dax, pgoff_t pgoff, |
Dave Jiang | efebc71 | 2017-04-07 15:33:36 -0700 | [diff] [blame] | 18 | unsigned long size) |
| 19 | { |
Dan Williams | 753a085 | 2017-07-14 13:54:50 -0700 | [diff] [blame] | 20 | struct resource *res = &dev_dax->region->res; |
Dave Jiang | efebc71 | 2017-04-07 15:33:36 -0700 | [diff] [blame] | 21 | phys_addr_t addr; |
Dave Jiang | efebc71 | 2017-04-07 15:33:36 -0700 | [diff] [blame] | 22 | |
Dan Williams | 753a085 | 2017-07-14 13:54:50 -0700 | [diff] [blame] | 23 | addr = pgoff * PAGE_SIZE + res->start; |
| 24 | if (addr >= res->start && addr <= res->end) { |
Dave Jiang | efebc71 | 2017-04-07 15:33:36 -0700 | [diff] [blame] | 25 | if (addr + size - 1 <= res->end) { |
| 26 | if (get_nfit_res(addr)) { |
| 27 | struct page *page; |
| 28 | |
Dan Williams | 7361636 | 2017-05-04 23:38:43 -0700 | [diff] [blame] | 29 | if (dev_dax->region->align > PAGE_SIZE) |
Dave Jiang | efebc71 | 2017-04-07 15:33:36 -0700 | [diff] [blame] | 30 | return -1; |
| 31 | |
| 32 | page = vmalloc_to_page((void *)addr); |
| 33 | return PFN_PHYS(page_to_pfn(page)); |
| 34 | } else |
| 35 | return addr; |
| 36 | } |
| 37 | } |
Dave Jiang | efebc71 | 2017-04-07 15:33:36 -0700 | [diff] [blame] | 38 | return -1; |
| 39 | } |