Commit Graph

7 Commits

Author SHA1 Message Date
Donald Dutile 18c3e9737d hmm-tests: add test for migrate_device_range()
Bugzilla: http://bugzilla.redhat.com/2159905

commit ad4c365221b0f92f9c24a203119f2bade30c970e
Author: Alistair Popple <apopple@nvidia.com>
Date:   Wed Sep 28 22:01:22 2022 +1000

    hmm-tests: add test for migrate_device_range()

    Link: https://lkml.kernel.org/r/a73cf109de0224cfd118d22be58ddebac3ae2897.1664366292.git-series.apopple@nvidia.com
    Signed-off-by: Alistair Popple <apopple@nvidia.com>
    Cc: Jason Gunthorpe <jgg@nvidia.com>
    Cc: Ralph Campbell <rcampbell@nvidia.com>
    Cc: John Hubbard <jhubbard@nvidia.com>
    Cc: Alex Sierra <alex.sierra@amd.com>
    Cc: Felix Kuehling <Felix.Kuehling@amd.com>
    Cc: Alex Deucher <alexander.deucher@amd.com>
    Cc: Ben Skeggs <bskeggs@redhat.com>
    Cc: Christian König <christian.koenig@amd.com>
    Cc: Dan Williams <dan.j.williams@intel.com>
    Cc: David Hildenbrand <david@redhat.com>
    Cc: "Huang, Ying" <ying.huang@intel.com>
    Cc: Lyude Paul <lyude@redhat.com>
    Cc: Matthew Wilcox <willy@infradead.org>
    Cc: Michael Ellerman <mpe@ellerman.id.au>
    Cc: Yang Shi <shy828301@gmail.com>
    Cc: Zi Yan <ziy@nvidia.com>
    Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

Signed-off-by: Donald Dutile <ddutile@redhat.com>
2023-05-02 16:47:26 -04:00
Chris von Recklinghausen 97fa2c7817 lib: add support for device coherent type in test_hmm
Bugzilla: https://bugzilla.redhat.com/2160210

commit 4c2e0f764eb4444272cfd2fa4afeb84c453a1a34
Author: Alex Sierra <alex.sierra@amd.com>
Date:   Fri Jul 15 10:05:17 2022 -0500

    lib: add support for device coherent type in test_hmm

    Device Coherent type uses device memory that is coherently accesible by
    the CPU.  This could be shown as SP (special purpose) memory range at the
    BIOS-e820 memory enumeration.  If no SP memory is supported in system,
    this could be faked by setting CONFIG_EFI_FAKE_MEMMAP.

    Currently, test_hmm only supports two different SP ranges of at least
    256MB size. This could be specified in the kernel parameter variable
    efi_fake_mem. Ex. Two SP ranges of 1GB starting at 0x100000000 &
    0x140000000 physical address. Ex.
    efi_fake_mem=1G@0x100000000:0x40000,1G@0x140000000:0x40000

    Private and coherent device mirror instances can be created in the same
    probed.  This is done by passing the module parameters spm_addr_dev0 &
    spm_addr_dev1.  In this case, it will create four instances of
    device_mirror.  The first two correspond to private device type, the last
    two to coherent type.  Then, they can be easily accessed from user space
    through /dev/hmm_mirror<num_device>.  Usually num_device 0 and 1 are for
    private, and 2 and 3 for coherent types.  If no module parameters are
    passed, two instances of private type device_mirror will be created only.

    Link: https://lkml.kernel.org/r/20220715150521.18165-11-alex.sierra@amd.com
    Signed-off-by: Alex Sierra <alex.sierra@amd.com>
    Acked-by: Felix Kuehling <Felix.Kuehling@amd.com>
    Reviewed-by: Alistair Poppple <apopple@nvidia.com>
    Cc: Christoph Hellwig <hch@lst.de>
    Cc: David Hildenbrand <david@redhat.com>
    Cc: Jason Gunthorpe <jgg@nvidia.com>
    Cc: Jerome Glisse <jglisse@redhat.com>
    Cc: Matthew Wilcox <willy@infradead.org>
    Cc: Ralph Campbell <rcampbell@nvidia.com>
    Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

Signed-off-by: Chris von Recklinghausen <crecklin@redhat.com>
2023-03-24 11:19:23 -04:00
Chris von Recklinghausen 0b3fd58777 lib: test_hmm add module param for zone device type
Bugzilla: https://bugzilla.redhat.com/2160210

commit 25b80162d550408058b2d8fff2e63807bceda64c
Author: Alex Sierra <alex.sierra@amd.com>
Date:   Fri Jul 15 10:05:16 2022 -0500

    lib: test_hmm add module param for zone device type

    In order to configure device coherent in test_hmm, two module parameters
    should be passed, which correspond to the SP start address of each device
    (2) spm_addr_dev0 & spm_addr_dev1.  If no parameters are passed, private
    device type is configured.

    Link: https://lkml.kernel.org/r/20220715150521.18165-10-alex.sierra@amd.com
    Signed-off-by: Alex Sierra <alex.sierra@amd.com>
    Signed-off-by: Christoph Hellwig <hch@lst.de>
    Acked-by: Felix Kuehling <Felix.Kuehling@amd.com>
    Reviewed-by: Alistair Poppple <apopple@nvidia.com>
    Cc: David Hildenbrand <david@redhat.com>
    Cc: Jason Gunthorpe <jgg@nvidia.com>
    Cc: Jerome Glisse <jglisse@redhat.com>
    Cc: Matthew Wilcox <willy@infradead.org>
    Cc: Ralph Campbell <rcampbell@nvidia.com>
    Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

Signed-off-by: Chris von Recklinghausen <crecklin@redhat.com>
2023-03-24 11:19:23 -04:00
Chris von Recklinghausen 81762bad80 lib: test_hmm add ioctl to get zone device type
Bugzilla: https://bugzilla.redhat.com/2160210

commit 188f48268d04f3851cf30151af9025f1f661cc6f
Author: Alex Sierra <alex.sierra@amd.com>
Date:   Fri Jul 15 10:05:15 2022 -0500

    lib: test_hmm add ioctl to get zone device type

    Add new ioctl cmd to query zone device type.  This will be used once the
    test_hmm adds zone device coherent type.

    Link: https://lkml.kernel.org/r/20220715150521.18165-9-alex.sierra@amd.com
    Signed-off-by: Alex Sierra <alex.sierra@amd.com>
    Signed-off-by: Christoph Hellwig <hch@lst.de>
    Acked-by: Felix Kuehling <Felix.Kuehling@amd.com>
    Reviewed-by: Alistair Poppple <apopple@nvidia.com>
    Cc: David Hildenbrand <david@redhat.com>
    Cc: Jason Gunthorpe <jgg@nvidia.com>
    Cc: Jerome Glisse <jglisse@redhat.com>
    Cc: Matthew Wilcox <willy@infradead.org>
    Cc: Ralph Campbell <rcampbell@nvidia.com>
    Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

Signed-off-by: Chris von Recklinghausen <crecklin@redhat.com>
2023-03-24 11:19:23 -04:00
Alistair Popple b659baea75 mm: selftests for exclusive device memory
Adds some selftests for exclusive device memory.

Link: https://lkml.kernel.org/r/20210616105937.23201-9-apopple@nvidia.com
Signed-off-by: Alistair Popple <apopple@nvidia.com>
Acked-by: Jason Gunthorpe <jgg@nvidia.com>
Tested-by: Ralph Campbell <rcampbell@nvidia.com>
Reviewed-by: Ralph Campbell <rcampbell@nvidia.com>
Cc: Ben Skeggs <bskeggs@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Hugh Dickins <hughd@google.com>
Cc: John Hubbard <jhubbard@nvidia.com>
Cc: "Matthew Wilcox (Oracle)" <willy@infradead.org>
Cc: Peter Xu <peterx@redhat.com>
Cc: Shakeel Butt <shakeelb@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2021-07-01 11:06:03 -07:00
Ralph Campbell e478425bec mm/hmm: add tests for hmm_pfn_to_map_order()
Add a sanity test for hmm_range_fault() returning the page mapping size
order.

Link: https://lore.kernel.org/r/20200701225352.9649-6-rcampbell@nvidia.com
Signed-off-by: Ralph Campbell <rcampbell@nvidia.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
2020-07-10 16:24:28 -03:00
Ralph Campbell b2ef9f5a5c mm/hmm/test: add selftest driver for HMM
This driver is for testing device private memory migration and devices
which use hmm_range_fault() to access system memory via device page tables.

Link: https://lore.kernel.org/r/20200422195028.3684-2-rcampbell@nvidia.com
Link: https://lore.kernel.org/r/20200516010424.2013-1-rcampbell@nvidia.com
Signed-off-by: Ralph Campbell <rcampbell@nvidia.com>
Signed-off-by: Jérôme Glisse <jglisse@redhat.com>
Link: https://lore.kernel.org/r/20200509030225.14592-1-weiyongjun1@huawei.com
Link: https://lore.kernel.org/r/20200509030234.14747-1-weiyongjun1@huawei.com
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Link: https://lore.kernel.org/r/20200511183704.GA225608@mwanda
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
2020-05-19 16:48:30 -03:00