2019-05-29 22:18:02 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2015-04-01 15:12:19 +08:00
|
|
|
/*
|
|
|
|
* Persistent Memory Driver
|
|
|
|
*
|
2015-06-10 03:33:45 +08:00
|
|
|
* Copyright (c) 2014-2015, Intel Corporation.
|
2015-04-01 15:12:19 +08:00
|
|
|
* Copyright (c) 2015, Christoph Hellwig <hch@lst.de>.
|
|
|
|
* Copyright (c) 2015, Boaz Harrosh <boaz@plexistor.com>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/blkdev.h>
|
2021-05-07 09:02:27 +08:00
|
|
|
#include <linux/pagemap.h>
|
2015-04-01 15:12:19 +08:00
|
|
|
#include <linux/hdreg.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/platform_device.h>
|
2018-07-14 12:50:37 +08:00
|
|
|
#include <linux/set_memory.h>
|
2015-04-01 15:12:19 +08:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/moduleparam.h>
|
2016-01-05 15:50:23 +08:00
|
|
|
#include <linux/badblocks.h>
|
2016-01-16 08:56:19 +08:00
|
|
|
#include <linux/memremap.h>
|
2023-07-13 12:50:09 +08:00
|
|
|
#include <linux/kstrtox.h>
|
2015-08-01 14:16:37 +08:00
|
|
|
#include <linux/vmalloc.h>
|
2017-04-29 01:23:37 +08:00
|
|
|
#include <linux/blk-mq.h>
|
2016-01-16 08:56:14 +08:00
|
|
|
#include <linux/pfn_t.h>
|
2015-04-01 15:12:19 +08:00
|
|
|
#include <linux/slab.h>
|
2017-05-30 03:22:50 +08:00
|
|
|
#include <linux/uio.h>
|
2017-01-25 15:02:09 +08:00
|
|
|
#include <linux/dax.h>
|
2015-06-10 03:33:45 +08:00
|
|
|
#include <linux/nd.h>
|
2020-06-08 12:41:42 +08:00
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <asm/cacheflush.h>
|
2016-06-18 02:08:06 +08:00
|
|
|
#include "pmem.h"
|
2021-03-10 09:43:38 +08:00
|
|
|
#include "btt.h"
|
2015-08-01 14:16:37 +08:00
|
|
|
#include "pfn.h"
|
2015-06-10 03:33:45 +08:00
|
|
|
#include "nd.h"
|
2015-04-01 15:12:19 +08:00
|
|
|
|
2016-07-08 10:44:50 +08:00
|
|
|
static struct device *to_dev(struct pmem_device *pmem)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* nvdimm bus services need a 'dev' parameter, and we record the device
|
|
|
|
* at init in bb.dev.
|
|
|
|
*/
|
|
|
|
return pmem->bb.dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct nd_region *to_region(struct pmem_device *pmem)
|
|
|
|
{
|
|
|
|
return to_nd_region(to_dev(pmem)->parent);
|
|
|
|
}
|
2015-04-01 15:12:19 +08:00
|
|
|
|
2022-07-01 02:28:02 +08:00
|
|
|
static phys_addr_t pmem_to_phys(struct pmem_device *pmem, phys_addr_t offset)
|
2018-07-14 12:50:37 +08:00
|
|
|
{
|
2022-04-23 06:45:07 +08:00
|
|
|
return pmem->phys_addr + offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static sector_t to_sect(struct pmem_device *pmem, phys_addr_t offset)
|
|
|
|
{
|
|
|
|
return (offset - pmem->data_offset) >> SECTOR_SHIFT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static phys_addr_t to_offset(struct pmem_device *pmem, sector_t sector)
|
|
|
|
{
|
|
|
|
return (sector << SECTOR_SHIFT) + pmem->data_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pmem_mkpage_present(struct pmem_device *pmem, phys_addr_t offset,
|
|
|
|
unsigned int len)
|
|
|
|
{
|
2022-07-01 02:28:02 +08:00
|
|
|
phys_addr_t phys = pmem_to_phys(pmem, offset);
|
2018-07-14 12:50:37 +08:00
|
|
|
unsigned long pfn_start, pfn_end, pfn;
|
|
|
|
|
|
|
|
/* only pmem in the linear map supports HWPoison */
|
|
|
|
if (is_vmalloc_addr(pmem->virt_addr))
|
|
|
|
return;
|
|
|
|
|
|
|
|
pfn_start = PHYS_PFN(phys);
|
|
|
|
pfn_end = pfn_start + PHYS_PFN(len);
|
|
|
|
for (pfn = pfn_start; pfn < pfn_end; pfn++) {
|
|
|
|
struct page *page = pfn_to_page(pfn);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note, no need to hold a get_dev_pagemap() reference
|
|
|
|
* here since we're in the driver I/O path and
|
|
|
|
* outstanding I/O requests pin the dev_pagemap.
|
|
|
|
*/
|
|
|
|
if (test_and_clear_pmem_poison(page))
|
|
|
|
clear_mce_nospec(pfn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-23 06:45:07 +08:00
|
|
|
static void pmem_clear_bb(struct pmem_device *pmem, sector_t sector, long blks)
|
2016-03-08 23:16:07 +08:00
|
|
|
{
|
2022-04-23 06:45:07 +08:00
|
|
|
if (blks == 0)
|
|
|
|
return;
|
|
|
|
badblocks_clear(&pmem->bb, sector, blks);
|
|
|
|
if (pmem->bb_state)
|
|
|
|
sysfs_notify_dirent(pmem->bb_state);
|
|
|
|
}
|
2016-03-08 23:16:07 +08:00
|
|
|
|
2022-04-23 06:45:07 +08:00
|
|
|
static long __pmem_clear_poison(struct pmem_device *pmem,
|
|
|
|
phys_addr_t offset, unsigned int len)
|
|
|
|
{
|
2022-07-01 02:28:02 +08:00
|
|
|
phys_addr_t phys = pmem_to_phys(pmem, offset);
|
2022-04-23 06:45:07 +08:00
|
|
|
long cleared = nvdimm_clear_poison(to_dev(pmem), phys, len);
|
2016-03-08 23:16:07 +08:00
|
|
|
|
2022-04-23 06:45:07 +08:00
|
|
|
if (cleared > 0) {
|
|
|
|
pmem_mkpage_present(pmem, offset, cleared);
|
|
|
|
arch_invalidate_pmem(pmem->virt_addr + offset, len);
|
2016-03-08 23:16:07 +08:00
|
|
|
}
|
2022-04-23 06:45:07 +08:00
|
|
|
return cleared;
|
|
|
|
}
|
2016-10-13 23:54:21 +08:00
|
|
|
|
2022-04-23 06:45:07 +08:00
|
|
|
static blk_status_t pmem_clear_poison(struct pmem_device *pmem,
|
|
|
|
phys_addr_t offset, unsigned int len)
|
|
|
|
{
|
|
|
|
long cleared = __pmem_clear_poison(pmem, offset, len);
|
2016-12-17 00:10:31 +08:00
|
|
|
|
2022-04-23 06:45:07 +08:00
|
|
|
if (cleared < 0)
|
|
|
|
return BLK_STS_IOERR;
|
|
|
|
|
|
|
|
pmem_clear_bb(pmem, to_sect(pmem, offset), cleared >> SECTOR_SHIFT);
|
|
|
|
if (cleared < len)
|
|
|
|
return BLK_STS_IOERR;
|
|
|
|
return BLK_STS_OK;
|
2016-03-08 23:16:07 +08:00
|
|
|
}
|
|
|
|
|
2016-10-01 07:19:30 +08:00
|
|
|
static void write_pmem(void *pmem_addr, struct page *page,
|
|
|
|
unsigned int off, unsigned int len)
|
|
|
|
{
|
2017-09-07 07:22:27 +08:00
|
|
|
unsigned int chunk;
|
|
|
|
void *mem;
|
|
|
|
|
|
|
|
while (len) {
|
|
|
|
mem = kmap_atomic(page);
|
2019-04-04 10:58:01 +08:00
|
|
|
chunk = min_t(unsigned int, len, PAGE_SIZE - off);
|
2017-09-07 07:22:27 +08:00
|
|
|
memcpy_flushcache(pmem_addr, mem + off, chunk);
|
|
|
|
kunmap_atomic(mem);
|
|
|
|
len -= chunk;
|
|
|
|
off = 0;
|
|
|
|
page++;
|
2019-04-04 10:58:01 +08:00
|
|
|
pmem_addr += chunk;
|
2017-09-07 07:22:27 +08:00
|
|
|
}
|
2016-10-01 07:19:30 +08:00
|
|
|
}
|
|
|
|
|
2017-06-03 15:38:06 +08:00
|
|
|
static blk_status_t read_pmem(struct page *page, unsigned int off,
|
2016-10-01 07:19:30 +08:00
|
|
|
void *pmem_addr, unsigned int len)
|
|
|
|
{
|
2017-09-07 07:22:27 +08:00
|
|
|
unsigned int chunk;
|
2018-05-04 08:06:21 +08:00
|
|
|
unsigned long rem;
|
2017-09-07 07:22:27 +08:00
|
|
|
void *mem;
|
|
|
|
|
|
|
|
while (len) {
|
|
|
|
mem = kmap_atomic(page);
|
2019-04-04 10:58:01 +08:00
|
|
|
chunk = min_t(unsigned int, len, PAGE_SIZE - off);
|
x86, powerpc: Rename memcpy_mcsafe() to copy_mc_to_{user, kernel}()
In reaction to a proposal to introduce a memcpy_mcsafe_fast()
implementation Linus points out that memcpy_mcsafe() is poorly named
relative to communicating the scope of the interface. Specifically what
addresses are valid to pass as source, destination, and what faults /
exceptions are handled.
Of particular concern is that even though x86 might be able to handle
the semantics of copy_mc_to_user() with its common copy_user_generic()
implementation other archs likely need / want an explicit path for this
case:
On Fri, May 1, 2020 at 11:28 AM Linus Torvalds <torvalds@linux-foundation.org> wrote:
>
> On Thu, Apr 30, 2020 at 6:21 PM Dan Williams <dan.j.williams@intel.com> wrote:
> >
> > However now I see that copy_user_generic() works for the wrong reason.
> > It works because the exception on the source address due to poison
> > looks no different than a write fault on the user address to the
> > caller, it's still just a short copy. So it makes copy_to_user() work
> > for the wrong reason relative to the name.
>
> Right.
>
> And it won't work that way on other architectures. On x86, we have a
> generic function that can take faults on either side, and we use it
> for both cases (and for the "in_user" case too), but that's an
> artifact of the architecture oddity.
>
> In fact, it's probably wrong even on x86 - because it can hide bugs -
> but writing those things is painful enough that everybody prefers
> having just one function.
Replace a single top-level memcpy_mcsafe() with either
copy_mc_to_user(), or copy_mc_to_kernel().
Introduce an x86 copy_mc_fragile() name as the rename for the
low-level x86 implementation formerly named memcpy_mcsafe(). It is used
as the slow / careful backend that is supplanted by a fast
copy_mc_generic() in a follow-on patch.
One side-effect of this reorganization is that separating copy_mc_64.S
to its own file means that perf no longer needs to track dependencies
for its memcpy_64.S benchmarks.
[ bp: Massage a bit. ]
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Tony Luck <tony.luck@intel.com>
Acked-by: Michael Ellerman <mpe@ellerman.id.au>
Cc: <stable@vger.kernel.org>
Link: http://lore.kernel.org/r/CAHk-=wjSqtXAqfUJxFtWNwmguFASTgB0dz1dT3V-78Quiezqbg@mail.gmail.com
Link: https://lkml.kernel.org/r/160195561680.2163339.11574962055305783722.stgit@dwillia2-desk3.amr.corp.intel.com
2020-10-06 11:40:16 +08:00
|
|
|
rem = copy_mc_to_kernel(mem + off, pmem_addr, chunk);
|
2017-09-07 07:22:27 +08:00
|
|
|
kunmap_atomic(mem);
|
2018-05-04 08:06:21 +08:00
|
|
|
if (rem)
|
2017-09-07 07:22:27 +08:00
|
|
|
return BLK_STS_IOERR;
|
|
|
|
len -= chunk;
|
|
|
|
off = 0;
|
|
|
|
page++;
|
2019-04-04 10:58:01 +08:00
|
|
|
pmem_addr += chunk;
|
2017-09-07 07:22:27 +08:00
|
|
|
}
|
2017-06-03 15:38:06 +08:00
|
|
|
return BLK_STS_OK;
|
2016-10-01 07:19:30 +08:00
|
|
|
}
|
|
|
|
|
2020-02-29 00:34:51 +08:00
|
|
|
static blk_status_t pmem_do_read(struct pmem_device *pmem,
|
|
|
|
struct page *page, unsigned int page_off,
|
|
|
|
sector_t sector, unsigned int len)
|
|
|
|
{
|
|
|
|
blk_status_t rc;
|
2022-04-23 06:45:07 +08:00
|
|
|
phys_addr_t pmem_off = to_offset(pmem, sector);
|
2020-02-29 00:34:51 +08:00
|
|
|
void *pmem_addr = pmem->virt_addr + pmem_off;
|
|
|
|
|
|
|
|
if (unlikely(is_bad_pmem(&pmem->bb, sector, len)))
|
|
|
|
return BLK_STS_IOERR;
|
|
|
|
|
|
|
|
rc = read_pmem(page, page_off, pmem_addr, len);
|
|
|
|
flush_dcache_page(page);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static blk_status_t pmem_do_write(struct pmem_device *pmem,
|
|
|
|
struct page *page, unsigned int page_off,
|
|
|
|
sector_t sector, unsigned int len)
|
2015-04-01 15:12:19 +08:00
|
|
|
{
|
2022-04-23 06:45:07 +08:00
|
|
|
phys_addr_t pmem_off = to_offset(pmem, sector);
|
2016-06-04 09:06:47 +08:00
|
|
|
void *pmem_addr = pmem->virt_addr + pmem_off;
|
2015-04-01 15:12:19 +08:00
|
|
|
|
2022-05-17 02:38:10 +08:00
|
|
|
if (unlikely(is_bad_pmem(&pmem->bb, sector, len))) {
|
|
|
|
blk_status_t rc = pmem_clear_poison(pmem, pmem_off, len);
|
|
|
|
|
|
|
|
if (rc != BLK_STS_OK)
|
|
|
|
return rc;
|
|
|
|
}
|
2016-03-08 23:16:07 +08:00
|
|
|
|
2020-02-29 00:34:51 +08:00
|
|
|
flush_dcache_page(page);
|
|
|
|
write_pmem(pmem_addr, page, page_off, len);
|
2015-04-01 15:12:19 +08:00
|
|
|
|
2022-05-17 02:38:10 +08:00
|
|
|
return BLK_STS_OK;
|
2015-04-01 15:12:19 +08:00
|
|
|
}
|
|
|
|
|
2021-10-12 19:12:24 +08:00
|
|
|
static void pmem_submit_bio(struct bio *bio)
|
2015-04-01 15:12:19 +08:00
|
|
|
{
|
2019-07-05 22:03:22 +08:00
|
|
|
int ret = 0;
|
2017-06-03 15:38:06 +08:00
|
|
|
blk_status_t rc = 0;
|
2015-05-17 00:28:53 +08:00
|
|
|
bool do_acct;
|
|
|
|
unsigned long start;
|
2015-04-01 15:12:19 +08:00
|
|
|
struct bio_vec bvec;
|
|
|
|
struct bvec_iter iter;
|
2021-01-24 18:02:34 +08:00
|
|
|
struct pmem_device *pmem = bio->bi_bdev->bd_disk->private_data;
|
2016-06-02 11:48:15 +08:00
|
|
|
struct nd_region *nd_region = to_region(pmem);
|
|
|
|
|
2018-06-07 00:45:12 +08:00
|
|
|
if (bio->bi_opf & REQ_PREFLUSH)
|
2019-07-05 22:03:22 +08:00
|
|
|
ret = nvdimm_flush(nd_region, bio);
|
2015-04-01 15:12:19 +08:00
|
|
|
|
2021-01-24 18:02:34 +08:00
|
|
|
do_acct = blk_queue_io_stat(bio->bi_bdev->bd_disk->queue);
|
2020-05-27 13:24:10 +08:00
|
|
|
if (do_acct)
|
|
|
|
start = bio_start_io_acct(bio);
|
2016-01-07 04:03:41 +08:00
|
|
|
bio_for_each_segment(bvec, bio, iter) {
|
2020-02-29 00:34:51 +08:00
|
|
|
if (op_is_write(bio_op(bio)))
|
|
|
|
rc = pmem_do_write(pmem, bvec.bv_page, bvec.bv_offset,
|
|
|
|
iter.bi_sector, bvec.bv_len);
|
|
|
|
else
|
|
|
|
rc = pmem_do_read(pmem, bvec.bv_page, bvec.bv_offset,
|
|
|
|
iter.bi_sector, bvec.bv_len);
|
2016-01-07 04:03:41 +08:00
|
|
|
if (rc) {
|
2017-06-03 15:38:06 +08:00
|
|
|
bio->bi_status = rc;
|
2016-01-07 04:03:41 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-05-17 00:28:53 +08:00
|
|
|
if (do_acct)
|
2020-05-27 13:24:10 +08:00
|
|
|
bio_end_io_acct(bio, start);
|
2015-06-25 15:08:39 +08:00
|
|
|
|
2016-08-06 05:35:16 +08:00
|
|
|
if (bio->bi_opf & REQ_FUA)
|
2019-07-05 22:03:22 +08:00
|
|
|
ret = nvdimm_flush(nd_region, bio);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
bio->bi_status = errno_to_blk_status(ret);
|
2015-06-25 15:08:39 +08:00
|
|
|
|
2015-07-20 21:29:37 +08:00
|
|
|
bio_endio(bio);
|
2015-04-01 15:12:19 +08:00
|
|
|
}
|
|
|
|
|
2016-06-18 02:08:06 +08:00
|
|
|
/* see "strong" declaration in tools/testing/nvdimm/pmem-dax.c */
|
2017-01-25 15:02:09 +08:00
|
|
|
__weak long __pmem_direct_access(struct pmem_device *pmem, pgoff_t pgoff,
|
2022-05-14 06:10:58 +08:00
|
|
|
long nr_pages, enum dax_access_mode mode, void **kaddr,
|
|
|
|
pfn_t *pfn)
|
2015-04-01 15:12:19 +08:00
|
|
|
{
|
2017-01-25 15:02:09 +08:00
|
|
|
resource_size_t offset = PFN_PHYS(pgoff) + pmem->data_offset;
|
2022-05-14 06:13:20 +08:00
|
|
|
sector_t sector = PFN_PHYS(pgoff) >> SECTOR_SHIFT;
|
|
|
|
unsigned int num = PFN_PHYS(nr_pages) >> SECTOR_SHIFT;
|
|
|
|
struct badblocks *bb = &pmem->bb;
|
|
|
|
sector_t first_bad;
|
|
|
|
int num_bad;
|
2018-07-30 15:15:43 +08:00
|
|
|
|
|
|
|
if (kaddr)
|
|
|
|
*kaddr = pmem->virt_addr + offset;
|
|
|
|
if (pfn)
|
|
|
|
*pfn = phys_to_pfn_t(pmem->phys_addr + offset, pmem->pfn_flags);
|
2015-04-01 15:12:19 +08:00
|
|
|
|
2022-05-14 06:13:20 +08:00
|
|
|
if (bb->count &&
|
|
|
|
badblocks_check(bb, sector, num, &first_bad, &num_bad)) {
|
|
|
|
long actual_nr;
|
|
|
|
|
|
|
|
if (mode != DAX_RECOVERY_WRITE)
|
2023-06-16 02:13:25 +08:00
|
|
|
return -EHWPOISON;
|
2022-05-14 06:13:20 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the recovery stride is set to kernel page size because
|
|
|
|
* the underlying driver and firmware clear poison functions
|
|
|
|
* don't appear to handle large chunk(such as 2MiB) reliably.
|
|
|
|
*/
|
|
|
|
actual_nr = PHYS_PFN(
|
|
|
|
PAGE_ALIGN((first_bad - sector) << SECTOR_SHIFT));
|
|
|
|
dev_dbg(pmem->bb.dev, "start sector(%llu), nr_pages(%ld), first_bad(%llu), actual_nr(%ld)\n",
|
|
|
|
sector, nr_pages, first_bad, actual_nr);
|
|
|
|
if (actual_nr)
|
|
|
|
return actual_nr;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-02-25 06:02:11 +08:00
|
|
|
/*
|
2022-05-14 06:13:20 +08:00
|
|
|
* If badblocks are present but not in the range, limit known good range
|
|
|
|
* to the requested range.
|
2016-02-25 06:02:11 +08:00
|
|
|
*/
|
2022-05-14 06:13:20 +08:00
|
|
|
if (bb->count)
|
2017-01-25 15:02:09 +08:00
|
|
|
return nr_pages;
|
|
|
|
return PHYS_PFN(pmem->size - pmem->pfn_pad - offset);
|
2015-04-01 15:12:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct block_device_operations pmem_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
2020-07-01 16:59:43 +08:00
|
|
|
.submit_bio = pmem_submit_bio,
|
2015-04-01 15:12:19 +08:00
|
|
|
};
|
|
|
|
|
2020-02-29 00:34:52 +08:00
|
|
|
static int pmem_dax_zero_page_range(struct dax_device *dax_dev, pgoff_t pgoff,
|
|
|
|
size_t nr_pages)
|
|
|
|
{
|
|
|
|
struct pmem_device *pmem = dax_get_private(dax_dev);
|
|
|
|
|
|
|
|
return blk_status_to_errno(pmem_do_write(pmem, ZERO_PAGE(0), 0,
|
|
|
|
PFN_PHYS(pgoff) >> SECTOR_SHIFT,
|
|
|
|
PAGE_SIZE));
|
|
|
|
}
|
|
|
|
|
2017-01-25 15:02:09 +08:00
|
|
|
static long pmem_dax_direct_access(struct dax_device *dax_dev,
|
2022-05-14 06:10:58 +08:00
|
|
|
pgoff_t pgoff, long nr_pages, enum dax_access_mode mode,
|
|
|
|
void **kaddr, pfn_t *pfn)
|
2017-01-25 15:02:09 +08:00
|
|
|
{
|
|
|
|
struct pmem_device *pmem = dax_get_private(dax_dev);
|
|
|
|
|
2022-05-14 06:10:58 +08:00
|
|
|
return __pmem_direct_access(pmem, pgoff, nr_pages, mode, kaddr, pfn);
|
2017-01-25 15:02:09 +08:00
|
|
|
}
|
|
|
|
|
2022-05-14 06:13:20 +08:00
|
|
|
/*
|
|
|
|
* The recovery write thread started out as a normal pwrite thread and
|
|
|
|
* when the filesystem was told about potential media error in the
|
|
|
|
* range, filesystem turns the normal pwrite to a dax_recovery_write.
|
|
|
|
*
|
|
|
|
* The recovery write consists of clearing media poison, clearing page
|
|
|
|
* HWPoison bit, reenable page-wide read-write permission, flush the
|
|
|
|
* caches and finally write. A competing pread thread will be held
|
|
|
|
* off during the recovery process since data read back might not be
|
|
|
|
* valid, and this is achieved by clearing the badblock records after
|
|
|
|
* the recovery write is complete. Competing recovery write threads
|
|
|
|
* are already serialized by writer lock held by dax_iomap_rw().
|
|
|
|
*/
|
2022-04-23 06:45:06 +08:00
|
|
|
static size_t pmem_recovery_write(struct dax_device *dax_dev, pgoff_t pgoff,
|
|
|
|
void *addr, size_t bytes, struct iov_iter *i)
|
|
|
|
{
|
2022-05-14 06:13:20 +08:00
|
|
|
struct pmem_device *pmem = dax_get_private(dax_dev);
|
|
|
|
size_t olen, len, off;
|
|
|
|
phys_addr_t pmem_off;
|
|
|
|
struct device *dev = pmem->bb.dev;
|
|
|
|
long cleared;
|
|
|
|
|
|
|
|
off = offset_in_page(addr);
|
|
|
|
len = PFN_PHYS(PFN_UP(off + bytes));
|
|
|
|
if (!is_bad_pmem(&pmem->bb, PFN_PHYS(pgoff) >> SECTOR_SHIFT, len))
|
|
|
|
return _copy_from_iter_flushcache(addr, bytes, i);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Not page-aligned range cannot be recovered. This should not
|
|
|
|
* happen unless something else went wrong.
|
|
|
|
*/
|
|
|
|
if (off || !PAGE_ALIGNED(bytes)) {
|
|
|
|
dev_dbg(dev, "Found poison, but addr(%p) or bytes(%#zx) not page aligned\n",
|
|
|
|
addr, bytes);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
pmem_off = PFN_PHYS(pgoff) + pmem->data_offset;
|
|
|
|
cleared = __pmem_clear_poison(pmem, pmem_off, len);
|
|
|
|
if (cleared > 0 && cleared < len) {
|
|
|
|
dev_dbg(dev, "poison cleared only %ld out of %zu bytes\n",
|
|
|
|
cleared, len);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (cleared < 0) {
|
|
|
|
dev_dbg(dev, "poison clear failed: %ld\n", cleared);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
olen = _copy_from_iter_flushcache(addr, bytes, i);
|
|
|
|
pmem_clear_bb(pmem, to_sect(pmem, pmem_off), cleared >> SECTOR_SHIFT);
|
|
|
|
|
|
|
|
return olen;
|
2022-04-23 06:45:06 +08:00
|
|
|
}
|
|
|
|
|
2017-01-25 15:02:09 +08:00
|
|
|
static const struct dax_operations pmem_dax_ops = {
|
|
|
|
.direct_access = pmem_dax_direct_access,
|
2020-02-29 00:34:52 +08:00
|
|
|
.zero_page_range = pmem_dax_zero_page_range,
|
2022-04-23 06:45:06 +08:00
|
|
|
.recovery_write = pmem_recovery_write,
|
2017-01-25 15:02:09 +08:00
|
|
|
};
|
|
|
|
|
2021-09-23 01:34:30 +08:00
|
|
|
static ssize_t write_cache_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
struct pmem_device *pmem = dev_to_disk(dev)->private_data;
|
|
|
|
|
|
|
|
return sprintf(buf, "%d\n", !!dax_write_cache_enabled(pmem->dax_dev));
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t write_cache_store(struct device *dev,
|
|
|
|
struct device_attribute *attr, const char *buf, size_t len)
|
|
|
|
{
|
|
|
|
struct pmem_device *pmem = dev_to_disk(dev)->private_data;
|
|
|
|
bool write_cache;
|
|
|
|
int rc;
|
|
|
|
|
2023-07-13 12:50:09 +08:00
|
|
|
rc = kstrtobool(buf, &write_cache);
|
2021-09-23 01:34:30 +08:00
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
dax_write_cache(pmem->dax_dev, write_cache);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
static DEVICE_ATTR_RW(write_cache);
|
|
|
|
|
|
|
|
static umode_t dax_visible(struct kobject *kobj, struct attribute *a, int n)
|
|
|
|
{
|
|
|
|
#ifndef CONFIG_ARCH_HAS_PMEM_API
|
|
|
|
if (a == &dev_attr_write_cache.attr)
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
return a->mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct attribute *dax_attributes[] = {
|
|
|
|
&dev_attr_write_cache.attr,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct attribute_group dax_attribute_group = {
|
|
|
|
.name = "dax",
|
|
|
|
.attrs = dax_attributes,
|
|
|
|
.is_visible = dax_visible,
|
|
|
|
};
|
|
|
|
|
2017-06-27 12:28:41 +08:00
|
|
|
static const struct attribute_group *pmem_attribute_groups[] = {
|
|
|
|
&dax_attribute_group,
|
|
|
|
NULL,
|
2017-01-25 15:02:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static void pmem_release_disk(void *__pmem)
|
2016-03-18 11:24:31 +08:00
|
|
|
{
|
2017-01-25 15:02:09 +08:00
|
|
|
struct pmem_device *pmem = __pmem;
|
|
|
|
|
2021-11-29 18:21:38 +08:00
|
|
|
dax_remove_host(pmem->disk);
|
2017-01-25 15:02:09 +08:00
|
|
|
kill_dax(pmem->dax_dev);
|
|
|
|
put_dax(pmem->dax_dev);
|
|
|
|
del_gendisk(pmem->disk);
|
2016-03-18 11:24:31 +08:00
|
|
|
|
2022-06-19 14:05:52 +08:00
|
|
|
put_disk(pmem->disk);
|
2021-10-19 15:36:40 +08:00
|
|
|
}
|
2019-06-26 20:27:08 +08:00
|
|
|
|
2022-06-03 13:37:27 +08:00
|
|
|
static int pmem_pagemap_memory_failure(struct dev_pagemap *pgmap,
|
|
|
|
unsigned long pfn, unsigned long nr_pages, int mf_flags)
|
|
|
|
{
|
|
|
|
struct pmem_device *pmem =
|
|
|
|
container_of(pgmap, struct pmem_device, pgmap);
|
|
|
|
u64 offset = PFN_PHYS(pfn) - pmem->phys_addr - pmem->data_offset;
|
|
|
|
u64 len = nr_pages << PAGE_SHIFT;
|
|
|
|
|
|
|
|
return dax_holder_notify_failure(pmem->dax_dev, offset, len, mf_flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct dev_pagemap_ops fsdax_pagemap_ops = {
|
|
|
|
.memory_failure = pmem_pagemap_memory_failure,
|
|
|
|
};
|
|
|
|
|
2016-03-22 15:22:16 +08:00
|
|
|
static int pmem_attach_disk(struct device *dev,
|
|
|
|
struct nd_namespace_common *ndns)
|
2015-04-01 15:12:19 +08:00
|
|
|
{
|
2016-03-22 15:22:16 +08:00
|
|
|
struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev);
|
2016-07-08 10:44:50 +08:00
|
|
|
struct nd_region *nd_region = to_nd_region(dev->parent);
|
2024-02-15 15:10:54 +08:00
|
|
|
struct queue_limits lim = {
|
|
|
|
.logical_block_size = pmem_sector_size(ndns),
|
|
|
|
.physical_block_size = PAGE_SIZE,
|
|
|
|
.max_hw_sectors = UINT_MAX,
|
2024-06-17 14:04:45 +08:00
|
|
|
.features = BLK_FEAT_WRITE_CACHE |
|
|
|
|
BLK_FEAT_SYNCHRONOUS,
|
2024-02-15 15:10:54 +08:00
|
|
|
};
|
2018-06-07 00:45:13 +08:00
|
|
|
int nid = dev_to_node(dev), fua;
|
2016-03-22 15:22:16 +08:00
|
|
|
struct resource *res = &nsio->res;
|
2020-10-14 07:50:29 +08:00
|
|
|
struct range bb_range;
|
2016-03-22 15:22:16 +08:00
|
|
|
struct nd_pfn *nd_pfn = NULL;
|
2017-01-25 15:02:09 +08:00
|
|
|
struct dax_device *dax_dev;
|
2016-03-22 15:22:16 +08:00
|
|
|
struct nd_pfn_sb *pfn_sb;
|
2015-04-01 15:12:19 +08:00
|
|
|
struct pmem_device *pmem;
|
2016-03-22 15:22:16 +08:00
|
|
|
struct gendisk *disk;
|
|
|
|
void *addr;
|
2017-12-29 15:54:05 +08:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
pmem = devm_kzalloc(dev, sizeof(*pmem), GFP_KERNEL);
|
|
|
|
if (!pmem)
|
|
|
|
return -ENOMEM;
|
2016-03-22 15:22:16 +08:00
|
|
|
|
2019-10-31 18:57:41 +08:00
|
|
|
rc = devm_namespace_enable(dev, ndns, nd_info_block_reserve());
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
2016-03-22 15:22:16 +08:00
|
|
|
/* while nsio_rw_bytes is active, parse a pfn info block if present */
|
|
|
|
if (is_nd_pfn(dev)) {
|
|
|
|
nd_pfn = to_nd_pfn(dev);
|
2017-12-29 15:54:05 +08:00
|
|
|
rc = nvdimm_setup_pfn(nd_pfn, &pmem->pgmap);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
2016-03-22 15:22:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* we're attaching a block device, disable raw namespace access */
|
2019-10-31 18:57:41 +08:00
|
|
|
devm_namespace_disable(dev, ndns);
|
2015-04-01 15:12:19 +08:00
|
|
|
|
2016-03-22 15:22:16 +08:00
|
|
|
dev_set_drvdata(dev, pmem);
|
2015-04-01 15:12:19 +08:00
|
|
|
pmem->phys_addr = res->start;
|
|
|
|
pmem->size = resource_size(res);
|
2017-06-10 00:46:50 +08:00
|
|
|
fua = nvdimm_has_flush(nd_region);
|
|
|
|
if (!IS_ENABLED(CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE) || fua < 0) {
|
2015-06-25 15:08:39 +08:00
|
|
|
dev_warn(dev, "unable to guarantee persistence of writes\n");
|
2017-06-10 00:46:50 +08:00
|
|
|
fua = 0;
|
|
|
|
}
|
2024-06-17 14:04:40 +08:00
|
|
|
if (fua)
|
|
|
|
lim.features |= BLK_FEAT_FUA;
|
2024-08-09 11:11:55 +08:00
|
|
|
if (is_nd_pfn(dev) || pmem_should_map_pages(dev))
|
2024-06-17 14:04:47 +08:00
|
|
|
lim.features |= BLK_FEAT_DAX;
|
2015-04-01 15:12:19 +08:00
|
|
|
|
2016-03-22 13:28:40 +08:00
|
|
|
if (!devm_request_mem_region(dev, res->start, resource_size(res),
|
libnvdimm: use consistent naming for request_mem_region()
Here is an example /proc/iomem listing for a system with 2 namespaces,
one in "sector" mode and one in "memory" mode:
1fc000000-2fbffffff : Persistent Memory (legacy)
1fc000000-2fbffffff : namespace1.0
340000000-34fffffff : Persistent Memory
340000000-34fffffff : btt0.1
Here is the corresponding ndctl listing:
# ndctl list
[
{
"dev":"namespace1.0",
"mode":"memory",
"size":4294967296,
"blockdev":"pmem1"
},
{
"dev":"namespace0.0",
"mode":"sector",
"size":267091968,
"uuid":"f7594f86-badb-4592-875f-ded577da2eaf",
"sector_size":4096,
"blockdev":"pmem0s"
}
]
Notice that the ndctl listing is purely in terms of namespace devices,
while the iomem listing leaks the internal "btt0.1" implementation
detail. Given that ndctl requires the namespace device name to change
the mode, for example:
# ndctl create-namespace --reconfig=namespace0.0 --mode=raw --force
...use the namespace name in the iomem listing to keep the claiming
device name consistent across different mode settings.
Cc: Vishal Verma <vishal.l.verma@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
2016-11-29 03:15:18 +08:00
|
|
|
dev_name(&ndns->dev))) {
|
2016-03-22 13:28:40 +08:00
|
|
|
dev_warn(dev, "could not reserve region %pR\n", res);
|
2016-03-22 15:22:16 +08:00
|
|
|
return -EBUSY;
|
2015-04-01 15:12:19 +08:00
|
|
|
}
|
|
|
|
|
2024-02-15 15:10:54 +08:00
|
|
|
disk = blk_alloc_disk(&lim, nid);
|
2024-02-15 15:10:47 +08:00
|
|
|
if (IS_ERR(disk))
|
|
|
|
return PTR_ERR(disk);
|
2016-01-16 08:56:46 +08:00
|
|
|
|
2021-05-21 13:51:07 +08:00
|
|
|
pmem->disk = disk;
|
2021-06-08 07:52:43 +08:00
|
|
|
pmem->pgmap.owner = pmem;
|
2016-01-16 08:56:14 +08:00
|
|
|
pmem->pfn_flags = PFN_DEV;
|
2016-03-22 15:22:16 +08:00
|
|
|
if (is_nd_pfn(dev)) {
|
2019-06-26 20:27:10 +08:00
|
|
|
pmem->pgmap.type = MEMORY_DEVICE_FS_DAX;
|
2022-06-03 13:37:27 +08:00
|
|
|
pmem->pgmap.ops = &fsdax_pagemap_ops;
|
2017-12-29 15:54:05 +08:00
|
|
|
addr = devm_memremap_pages(dev, &pmem->pgmap);
|
2016-03-22 15:22:16 +08:00
|
|
|
pfn_sb = nd_pfn->pfn_sb;
|
|
|
|
pmem->data_offset = le64_to_cpu(pfn_sb->dataoff);
|
2017-12-29 15:54:05 +08:00
|
|
|
pmem->pfn_pad = resource_size(res) -
|
2020-10-14 07:50:29 +08:00
|
|
|
range_len(&pmem->pgmap.range);
|
2016-03-22 15:22:16 +08:00
|
|
|
pmem->pfn_flags |= PFN_MAP;
|
2020-10-14 07:50:29 +08:00
|
|
|
bb_range = pmem->pgmap.range;
|
|
|
|
bb_range.start += pmem->data_offset;
|
2016-03-22 15:22:16 +08:00
|
|
|
} else if (pmem_should_map_pages(dev)) {
|
2020-10-14 07:50:29 +08:00
|
|
|
pmem->pgmap.range.start = res->start;
|
|
|
|
pmem->pgmap.range.end = res->end;
|
2020-10-14 07:50:34 +08:00
|
|
|
pmem->pgmap.nr_range = 1;
|
2019-06-26 20:27:10 +08:00
|
|
|
pmem->pgmap.type = MEMORY_DEVICE_FS_DAX;
|
2022-06-03 13:37:27 +08:00
|
|
|
pmem->pgmap.ops = &fsdax_pagemap_ops;
|
2017-12-29 15:54:05 +08:00
|
|
|
addr = devm_memremap_pages(dev, &pmem->pgmap);
|
2016-01-16 08:56:14 +08:00
|
|
|
pmem->pfn_flags |= PFN_MAP;
|
2020-10-14 07:50:29 +08:00
|
|
|
bb_range = pmem->pgmap.range;
|
2018-10-05 07:32:08 +08:00
|
|
|
} else {
|
2021-08-22 19:49:09 +08:00
|
|
|
addr = devm_memremap(dev, pmem->phys_addr,
|
|
|
|
pmem->size, ARCH_MEMREMAP_PMEM);
|
2020-10-14 07:50:29 +08:00
|
|
|
bb_range.start = res->start;
|
|
|
|
bb_range.end = res->end;
|
2018-10-05 07:32:08 +08:00
|
|
|
}
|
2015-09-15 14:42:20 +08:00
|
|
|
|
2021-11-04 07:04:28 +08:00
|
|
|
if (IS_ERR(addr)) {
|
|
|
|
rc = PTR_ERR(addr);
|
|
|
|
goto out;
|
|
|
|
}
|
2016-06-04 09:06:47 +08:00
|
|
|
pmem->virt_addr = addr;
|
2015-04-01 15:12:19 +08:00
|
|
|
|
|
|
|
disk->fops = &pmem_fops;
|
2020-05-09 00:15:17 +08:00
|
|
|
disk->private_data = pmem;
|
nd_btt: atomic sector updates
BTT stands for Block Translation Table, and is a way to provide power
fail sector atomicity semantics for block devices that have the ability
to perform byte granularity IO. It relies on the capability of libnvdimm
namespace devices to do byte aligned IO.
The BTT works as a stacked blocked device, and reserves a chunk of space
from the backing device for its accounting metadata. It is a bio-based
driver because all IO is done synchronously, and there is no queuing or
asynchronous completions at either the device or the driver level.
The BTT uses 'lanes' to index into various 'on-disk' data structures,
and lanes also act as a synchronization mechanism in case there are more
CPUs than available lanes. We did a comparison between two lane lock
strategies - first where we kept an atomic counter around that tracked
which was the last lane that was used, and 'our' lane was determined by
atomically incrementing that. That way, for the nr_cpus > nr_lanes case,
theoretically, no CPU would be blocked waiting for a lane. The other
strategy was to use the cpu number we're scheduled on to and hash it to
a lane number. Theoretically, this could block an IO that could've
otherwise run using a different, free lane. But some fio workloads
showed that the direct cpu -> lane hash performed faster than tracking
'last lane' - my reasoning is the cache thrash caused by moving the
atomic variable made that approach slower than simply waiting out the
in-progress IO. This supports the conclusion that the driver can be a
very simple bio-based one that does synchronous IOs instead of queuing.
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Boaz Harrosh <boaz@plexistor.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Jens Axboe <axboe@fb.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Neil Brown <neilb@suse.de>
Cc: Jeff Moyer <jmoyer@redhat.com>
Cc: Dave Chinner <david@fromorbit.com>
Cc: Greg KH <gregkh@linuxfoundation.org>
[jmoyer: fix nmi watchdog timeout in btt_map_init]
[jmoyer: move btt initialization to module load path]
[jmoyer: fix memory leak in the btt initialization path]
[jmoyer: Don't overwrite corrupted arenas]
Signed-off-by: Vishal Verma <vishal.l.verma@linux.intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
2015-06-25 16:20:32 +08:00
|
|
|
nvdimm_namespace_disk_name(ndns, disk->disk_name);
|
2016-03-04 01:38:00 +08:00
|
|
|
set_capacity(disk, (pmem->size - pmem->pfn_pad - pmem->data_offset)
|
|
|
|
/ 512);
|
2016-01-05 15:50:23 +08:00
|
|
|
if (devm_init_badblocks(dev, &pmem->bb))
|
|
|
|
return -ENOMEM;
|
2020-10-14 07:50:29 +08:00
|
|
|
nvdimm_badblocks_populate(nd_region, &pmem->bb, &bb_range);
|
2016-01-07 04:03:42 +08:00
|
|
|
disk->bb = &pmem->bb;
|
2016-06-16 05:59:17 +08:00
|
|
|
|
2021-12-15 16:45:07 +08:00
|
|
|
dax_dev = alloc_dax(pmem, &pmem_dax_ops);
|
2020-04-02 00:11:25 +08:00
|
|
|
if (IS_ERR(dax_dev)) {
|
2021-11-04 07:04:28 +08:00
|
|
|
rc = PTR_ERR(dax_dev);
|
2024-02-15 22:46:27 +08:00
|
|
|
if (rc != -EOPNOTSUPP)
|
|
|
|
goto out;
|
|
|
|
} else {
|
|
|
|
set_dax_nocache(dax_dev);
|
|
|
|
set_dax_nomc(dax_dev);
|
|
|
|
if (is_nvdimm_sync(nd_region))
|
|
|
|
set_dax_synchronous(dax_dev);
|
|
|
|
pmem->dax_dev = dax_dev;
|
|
|
|
rc = dax_add_host(dax_dev, disk);
|
|
|
|
if (rc)
|
|
|
|
goto out_cleanup_dax;
|
|
|
|
dax_write_cache(dax_dev, nvdimm_has_cache(nd_region));
|
2017-01-25 15:02:09 +08:00
|
|
|
}
|
2021-11-04 07:04:29 +08:00
|
|
|
rc = device_add_disk(dev, disk, pmem_attribute_groups);
|
|
|
|
if (rc)
|
2021-11-29 18:21:38 +08:00
|
|
|
goto out_remove_host;
|
2017-01-25 15:02:09 +08:00
|
|
|
if (devm_add_action_or_reset(dev, pmem_release_disk, pmem))
|
2016-06-16 05:59:17 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2020-09-01 23:57:47 +08:00
|
|
|
nvdimm_check_and_set_ro(disk);
|
2015-04-01 15:12:19 +08:00
|
|
|
|
2017-06-13 06:25:11 +08:00
|
|
|
pmem->bb_state = sysfs_get_dirent(disk_to_dev(disk)->kobj.sd,
|
|
|
|
"badblocks");
|
2017-07-01 09:56:03 +08:00
|
|
|
if (!pmem->bb_state)
|
|
|
|
dev_warn(dev, "'badblocks' notification disabled\n");
|
2015-06-25 16:20:04 +08:00
|
|
|
return 0;
|
2021-11-04 07:04:29 +08:00
|
|
|
|
2021-11-29 18:21:38 +08:00
|
|
|
out_remove_host:
|
|
|
|
dax_remove_host(pmem->disk);
|
2021-11-04 07:04:29 +08:00
|
|
|
out_cleanup_dax:
|
|
|
|
kill_dax(pmem->dax_dev);
|
|
|
|
put_dax(pmem->dax_dev);
|
2021-11-04 07:04:28 +08:00
|
|
|
out:
|
2022-06-19 14:05:52 +08:00
|
|
|
put_disk(pmem->disk);
|
2021-11-04 07:04:28 +08:00
|
|
|
return rc;
|
2015-06-25 16:20:04 +08:00
|
|
|
}
|
2015-04-01 15:12:19 +08:00
|
|
|
|
2015-06-10 03:33:45 +08:00
|
|
|
static int nd_pmem_probe(struct device *dev)
|
2015-04-01 15:12:19 +08:00
|
|
|
{
|
2019-09-05 23:45:58 +08:00
|
|
|
int ret;
|
2015-06-25 16:20:04 +08:00
|
|
|
struct nd_namespace_common *ndns;
|
2015-04-01 15:12:19 +08:00
|
|
|
|
2015-06-25 16:20:04 +08:00
|
|
|
ndns = nvdimm_namespace_common_probe(dev);
|
|
|
|
if (IS_ERR(ndns))
|
|
|
|
return PTR_ERR(ndns);
|
2015-06-18 05:14:46 +08:00
|
|
|
|
2016-03-22 15:22:16 +08:00
|
|
|
if (is_nd_btt(dev))
|
2015-08-11 11:07:08 +08:00
|
|
|
return nvdimm_namespace_attach_btt(ndns);
|
|
|
|
|
2015-08-01 14:16:37 +08:00
|
|
|
if (is_nd_pfn(dev))
|
2016-03-22 15:22:16 +08:00
|
|
|
return pmem_attach_disk(dev, ndns);
|
2015-08-01 14:16:37 +08:00
|
|
|
|
2019-10-31 18:57:41 +08:00
|
|
|
ret = devm_namespace_enable(dev, ndns, nd_info_block_reserve());
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2019-09-05 23:45:58 +08:00
|
|
|
ret = nd_btt_probe(dev, ndns);
|
|
|
|
if (ret == 0)
|
2015-08-01 14:16:37 +08:00
|
|
|
return -ENXIO;
|
|
|
|
|
2019-09-05 23:45:58 +08:00
|
|
|
/*
|
|
|
|
* We have two failure conditions here, there is no
|
|
|
|
* info reserver block or we found a valid info reserve block
|
|
|
|
* but failed to initialize the pfn superblock.
|
|
|
|
*
|
|
|
|
* For the first case consider namespace as a raw pmem namespace
|
|
|
|
* and attach a disk.
|
|
|
|
*
|
|
|
|
* For the latter, consider this a success and advance the namespace
|
|
|
|
* seed.
|
|
|
|
*/
|
|
|
|
ret = nd_pfn_probe(dev, ndns);
|
|
|
|
if (ret == 0)
|
|
|
|
return -ENXIO;
|
|
|
|
else if (ret == -EOPNOTSUPP)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = nd_dax_probe(dev, ndns);
|
|
|
|
if (ret == 0)
|
|
|
|
return -ENXIO;
|
|
|
|
else if (ret == -EOPNOTSUPP)
|
|
|
|
return ret;
|
2019-10-31 18:57:41 +08:00
|
|
|
|
|
|
|
/* probe complete, attach handles namespace enabling */
|
|
|
|
devm_namespace_disable(dev, ndns);
|
|
|
|
|
2016-03-22 15:22:16 +08:00
|
|
|
return pmem_attach_disk(dev, ndns);
|
2015-04-01 15:12:19 +08:00
|
|
|
}
|
|
|
|
|
2021-02-13 01:10:43 +08:00
|
|
|
static void nd_pmem_remove(struct device *dev)
|
2015-04-01 15:12:19 +08:00
|
|
|
{
|
2017-07-01 09:56:03 +08:00
|
|
|
struct pmem_device *pmem = dev_get_drvdata(dev);
|
|
|
|
|
2015-06-25 16:20:04 +08:00
|
|
|
if (is_nd_btt(dev))
|
2016-03-16 07:41:04 +08:00
|
|
|
nvdimm_namespace_detach_btt(to_nd_btt(dev));
|
2017-07-01 09:56:03 +08:00
|
|
|
else {
|
|
|
|
/*
|
2022-04-21 23:33:39 +08:00
|
|
|
* Note, this assumes device_lock() context to not
|
2019-07-18 09:08:26 +08:00
|
|
|
* race nd_pmem_notify()
|
2017-07-01 09:56:03 +08:00
|
|
|
*/
|
|
|
|
sysfs_put(pmem->bb_state);
|
|
|
|
pmem->bb_state = NULL;
|
|
|
|
}
|
2019-07-05 22:03:22 +08:00
|
|
|
nvdimm_flush(to_nd_region(dev->parent), NULL);
|
2015-04-01 15:12:19 +08:00
|
|
|
}
|
|
|
|
|
2016-07-09 15:12:52 +08:00
|
|
|
static void nd_pmem_shutdown(struct device *dev)
|
|
|
|
{
|
2019-07-05 22:03:22 +08:00
|
|
|
nvdimm_flush(to_nd_region(dev->parent), NULL);
|
2016-07-09 15:12:52 +08:00
|
|
|
}
|
|
|
|
|
2021-03-10 09:43:38 +08:00
|
|
|
static void pmem_revalidate_poison(struct device *dev)
|
2016-02-19 02:29:49 +08:00
|
|
|
{
|
2017-04-26 07:04:13 +08:00
|
|
|
struct nd_region *nd_region;
|
2016-03-16 07:41:04 +08:00
|
|
|
resource_size_t offset = 0, end_trunc = 0;
|
|
|
|
struct nd_namespace_common *ndns;
|
|
|
|
struct nd_namespace_io *nsio;
|
2017-04-26 07:04:13 +08:00
|
|
|
struct badblocks *bb;
|
2020-10-14 07:50:29 +08:00
|
|
|
struct range range;
|
2017-06-13 06:25:11 +08:00
|
|
|
struct kernfs_node *bb_state;
|
2016-02-19 02:29:49 +08:00
|
|
|
|
2016-03-16 07:41:04 +08:00
|
|
|
if (is_nd_btt(dev)) {
|
|
|
|
struct nd_btt *nd_btt = to_nd_btt(dev);
|
|
|
|
|
|
|
|
ndns = nd_btt->ndns;
|
2017-04-26 07:04:13 +08:00
|
|
|
nd_region = to_nd_region(ndns->dev.parent);
|
|
|
|
nsio = to_nd_namespace_io(&ndns->dev);
|
|
|
|
bb = &nsio->bb;
|
2017-06-13 06:25:11 +08:00
|
|
|
bb_state = NULL;
|
2017-04-26 07:04:13 +08:00
|
|
|
} else {
|
|
|
|
struct pmem_device *pmem = dev_get_drvdata(dev);
|
2016-04-08 11:02:06 +08:00
|
|
|
|
2017-04-26 07:04:13 +08:00
|
|
|
nd_region = to_region(pmem);
|
|
|
|
bb = &pmem->bb;
|
2017-06-13 06:25:11 +08:00
|
|
|
bb_state = pmem->bb_state;
|
2017-04-26 07:04:13 +08:00
|
|
|
|
|
|
|
if (is_nd_pfn(dev)) {
|
|
|
|
struct nd_pfn *nd_pfn = to_nd_pfn(dev);
|
|
|
|
struct nd_pfn_sb *pfn_sb = nd_pfn->pfn_sb;
|
|
|
|
|
|
|
|
ndns = nd_pfn->ndns;
|
|
|
|
offset = pmem->data_offset +
|
|
|
|
__le32_to_cpu(pfn_sb->start_pad);
|
|
|
|
end_trunc = __le32_to_cpu(pfn_sb->end_trunc);
|
|
|
|
} else {
|
|
|
|
ndns = to_ndns(dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsio = to_nd_namespace_io(&ndns->dev);
|
|
|
|
}
|
2016-04-08 11:02:06 +08:00
|
|
|
|
2020-10-14 07:50:29 +08:00
|
|
|
range.start = nsio->res.start + offset;
|
|
|
|
range.end = nsio->res.end - end_trunc;
|
|
|
|
nvdimm_badblocks_populate(nd_region, bb, &range);
|
2017-06-13 06:25:11 +08:00
|
|
|
if (bb_state)
|
|
|
|
sysfs_notify_dirent(bb_state);
|
2016-02-19 02:29:49 +08:00
|
|
|
}
|
|
|
|
|
2021-03-10 09:43:38 +08:00
|
|
|
static void pmem_revalidate_region(struct device *dev)
|
|
|
|
{
|
|
|
|
struct pmem_device *pmem;
|
|
|
|
|
|
|
|
if (is_nd_btt(dev)) {
|
|
|
|
struct nd_btt *nd_btt = to_nd_btt(dev);
|
|
|
|
struct btt *btt = nd_btt->btt;
|
|
|
|
|
|
|
|
nvdimm_check_and_set_ro(btt->btt_disk);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pmem = dev_get_drvdata(dev);
|
|
|
|
nvdimm_check_and_set_ro(pmem->disk);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void nd_pmem_notify(struct device *dev, enum nvdimm_event event)
|
|
|
|
{
|
|
|
|
switch (event) {
|
|
|
|
case NVDIMM_REVALIDATE_POISON:
|
|
|
|
pmem_revalidate_poison(dev);
|
|
|
|
break;
|
|
|
|
case NVDIMM_REVALIDATE_REGION:
|
|
|
|
pmem_revalidate_region(dev);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dev_WARN_ONCE(dev, 1, "notify: unknown event: %d\n", event);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-10 03:33:45 +08:00
|
|
|
MODULE_ALIAS("pmem");
|
|
|
|
MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_IO);
|
2015-06-18 05:14:46 +08:00
|
|
|
MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_PMEM);
|
2015-06-10 03:33:45 +08:00
|
|
|
static struct nd_device_driver nd_pmem_driver = {
|
|
|
|
.probe = nd_pmem_probe,
|
|
|
|
.remove = nd_pmem_remove,
|
2016-02-19 02:29:49 +08:00
|
|
|
.notify = nd_pmem_notify,
|
2016-07-09 15:12:52 +08:00
|
|
|
.shutdown = nd_pmem_shutdown,
|
2015-06-10 03:33:45 +08:00
|
|
|
.drv = {
|
|
|
|
.name = "nd_pmem",
|
2015-04-01 15:12:19 +08:00
|
|
|
},
|
2015-06-18 05:14:46 +08:00
|
|
|
.type = ND_DRIVER_NAMESPACE_IO | ND_DRIVER_NAMESPACE_PMEM,
|
2015-04-01 15:12:19 +08:00
|
|
|
};
|
|
|
|
|
2018-03-15 02:25:07 +08:00
|
|
|
module_nd_driver(nd_pmem_driver);
|
2015-04-01 15:12:19 +08:00
|
|
|
|
|
|
|
MODULE_AUTHOR("Ross Zwisler <ross.zwisler@linux.intel.com>");
|
2024-05-27 01:07:14 +08:00
|
|
|
MODULE_DESCRIPTION("NVDIMM Persistent Memory Driver");
|
2015-04-01 15:12:19 +08:00
|
|
|
MODULE_LICENSE("GPL v2");
|