pmem-dax.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Copyright (c) 2014-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/blkdev.h>
  15. #include <pmem.h>
  16. #include <nd.h>
  17. long pmem_direct_access(struct block_device *bdev, sector_t sector,
  18. void **kaddr, pfn_t *pfn, long size)
  19. {
  20. struct pmem_device *pmem = bdev->bd_queue->queuedata;
  21. resource_size_t offset = sector * 512 + pmem->data_offset;
  22. if (unlikely(is_bad_pmem(&pmem->bb, sector, size)))
  23. return -EIO;
  24. /*
  25. * Limit dax to a single page at a time given vmalloc()-backed
  26. * in the nfit_test case.
  27. */
  28. if (get_nfit_res(pmem->phys_addr + offset)) {
  29. struct page *page;
  30. *kaddr = pmem->virt_addr + offset;
  31. page = vmalloc_to_page(pmem->virt_addr + offset);
  32. *pfn = page_to_pfn_t(page);
  33. dev_dbg_ratelimited(disk_to_dev(bdev->bd_disk)->parent,
  34. "%s: sector: %#llx pfn: %#lx\n", __func__,
  35. (unsigned long long) sector, page_to_pfn(page));
  36. return PAGE_SIZE;
  37. }
  38. *kaddr = pmem->virt_addr + offset;
  39. *pfn = phys_to_pfn_t(pmem->phys_addr + offset, pmem->pfn_flags);
  40. /*
  41. * If badblocks are present, limit known good range to the
  42. * requested range.
  43. */
  44. if (unlikely(pmem->bb.count))
  45. return size;
  46. return pmem->size - pmem->pfn_pad - offset;
  47. }