dax-dev.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. phys_addr_t dax_pgoff_to_phys(struct dev_dax *dev_dax, pgoff_t pgoff,
  17. unsigned long size)
  18. {
  19. struct resource *res;
  20. phys_addr_t addr;
  21. int i;
  22. for (i = 0; i < dev_dax->num_resources; i++) {
  23. res = &dev_dax->res[i];
  24. addr = pgoff * PAGE_SIZE + res->start;
  25. if (addr >= res->start && addr <= res->end)
  26. break;
  27. pgoff -= PHYS_PFN(resource_size(res));
  28. }
  29. if (i < dev_dax->num_resources) {
  30. res = &dev_dax->res[i];
  31. if (addr + size - 1 <= res->end) {
  32. if (get_nfit_res(addr)) {
  33. struct page *page;
  34. if (dev_dax->region->align > PAGE_SIZE)
  35. return -1;
  36. page = vmalloc_to_page((void *)addr);
  37. return PFN_PHYS(page_to_pfn(page));
  38. } else
  39. return addr;
  40. }
  41. }
  42. return -1;
  43. }