lkml.org 
[lkml]   [2019]   [Apr]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH AUTOSEL 4.9 15/16] iommu/amd: Set exclusion range correctly
    Date
    From: Joerg Roedel <jroedel@suse.de>

    [ Upstream commit 3c677d206210f53a4be972211066c0f1cd47fe12 ]

    The exlcusion range limit register needs to contain the
    base-address of the last page that is part of the range, as
    bits 0-11 of this register are treated as 0xfff by the
    hardware for comparisons.

    So correctly set the exclusion range in the hardware to the
    last page which is _in_ the range.

    Fixes: b2026aa2dce44 ('x86, AMD IOMMU: add functions for programming IOMMU MMIO space')
    Signed-off-by: Joerg Roedel <jroedel@suse.de>
    Signed-off-by: Sasha Levin <sashal@kernel.org>
    ---
    drivers/iommu/amd_iommu_init.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/iommu/amd_iommu_init.c b/drivers/iommu/amd_iommu_init.c
    index 157e93421fb8..13bbe5795e4e 100644
    --- a/drivers/iommu/amd_iommu_init.c
    +++ b/drivers/iommu/amd_iommu_init.c
    @@ -318,7 +318,7 @@ static void iommu_write_l2(struct amd_iommu *iommu, u8 address, u32 val)
    static void iommu_set_exclusion_range(struct amd_iommu *iommu)
    {
    u64 start = iommu->exclusion_start & PAGE_MASK;
    - u64 limit = (start + iommu->exclusion_length) & PAGE_MASK;
    + u64 limit = (start + iommu->exclusion_length - 1) & PAGE_MASK;
    u64 entry;

    if (!iommu->exclusion_start)
    --
    2.19.1
    \
     
     \ /
      Last update: 2019-04-27 03:46    [W:3.306 / U:0.172 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site