[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 1 of 3] amd iommu: Add 2 helper functions: iommu_is_pte_present and iommu_next_level
# HG changeset patch # User Wei Wang <wei.wang2@xxxxxxx> # Date 1344872310 -7200 # Node ID b6ca536658ac712c5f03b5ffedce3bb61d55adaf # Parent 47080c96593702acd4145c5a1175b7d7f8f0679d amd iommu: Add 2 helper functions: iommu_is_pte_present and iommu_next_level. Signed-off-by: Wei Wang <wei.wang2@xxxxxxx> diff -r 47080c965937 -r b6ca536658ac xen/drivers/passthrough/amd/iommu_map.c --- a/xen/drivers/passthrough/amd/iommu_map.c Fri Aug 10 09:51:01 2012 +0200 +++ b/xen/drivers/passthrough/amd/iommu_map.c Mon Aug 13 17:38:30 2012 +0200 @@ -306,20 +306,6 @@ u64 amd_iommu_get_next_table_from_pte(u3 return ptr; } -static unsigned int iommu_next_level(u32 *entry) -{ - return get_field_from_reg_u32(entry[0], - IOMMU_PDE_NEXT_LEVEL_MASK, - IOMMU_PDE_NEXT_LEVEL_SHIFT); -} - -static int amd_iommu_is_pte_present(u32 *entry) -{ - return get_field_from_reg_u32(entry[0], - IOMMU_PDE_PRESENT_MASK, - IOMMU_PDE_PRESENT_SHIFT); -} - /* For each pde, We use ignored bits (bit 1 - bit 8 and bit 63) * to save pde count, pde count = 511 is a candidate of page coalescing. */ @@ -489,7 +475,7 @@ static int iommu_pde_from_gfn(struct dom >> PAGE_SHIFT; /* Split super page frame into smaller pieces.*/ - if ( amd_iommu_is_pte_present((u32*)pde) && + if ( iommu_is_pte_present((u32*)pde) && (iommu_next_level((u32*)pde) == 0) && next_table_mfn != 0 ) { @@ -526,7 +512,7 @@ static int iommu_pde_from_gfn(struct dom } /* Install lower level page table for non-present entries */ - else if ( !amd_iommu_is_pte_present((u32*)pde) ) + else if ( !iommu_is_pte_present((u32*)pde) ) { if ( next_table_mfn == 0 ) { diff -r 47080c965937 -r b6ca536658ac xen/drivers/passthrough/amd/pci_amd_iommu.c --- a/xen/drivers/passthrough/amd/pci_amd_iommu.c Fri Aug 10 09:51:01 2012 +0200 +++ b/xen/drivers/passthrough/amd/pci_amd_iommu.c Mon Aug 13 17:38:30 2012 +0200 @@ -392,8 +392,7 @@ static void deallocate_next_page_table(s { void *table_vaddr, *pde; u64 next_table_maddr; - int index, next_level, present; - u32 *entry; + int index, next_level; table_vaddr = __map_domain_page(pg); @@ -403,18 +402,11 @@ static void deallocate_next_page_table(s { pde = table_vaddr + (index * IOMMU_PAGE_TABLE_ENTRY_SIZE); next_table_maddr = amd_iommu_get_next_table_from_pte(pde); - entry = (u32*)pde; - next_level = get_field_from_reg_u32(entry[0], - IOMMU_PDE_NEXT_LEVEL_MASK, - IOMMU_PDE_NEXT_LEVEL_SHIFT); - - present = get_field_from_reg_u32(entry[0], - IOMMU_PDE_PRESENT_MASK, - IOMMU_PDE_PRESENT_SHIFT); + next_level = iommu_next_level((u32*)pde); if ( (next_table_maddr != 0) && (next_level != 0) - && present ) + && iommu_is_pte_present((u32*)pde) ) { deallocate_next_page_table( maddr_to_page(next_table_maddr), level - 1); diff -r 47080c965937 -r b6ca536658ac xen/include/asm-x86/hvm/svm/amd-iommu-proto.h --- a/xen/include/asm-x86/hvm/svm/amd-iommu-proto.h Fri Aug 10 09:51:01 2012 +0200 +++ b/xen/include/asm-x86/hvm/svm/amd-iommu-proto.h Mon Aug 13 17:38:30 2012 +0200 @@ -257,4 +257,18 @@ static inline void iommu_set_addr_hi_to_ IOMMU_REG_BASE_ADDR_HIGH_SHIFT, reg); } +static inline int iommu_is_pte_present(u32 *entry) +{ + return get_field_from_reg_u32(entry[0], + IOMMU_PDE_PRESENT_MASK, + IOMMU_PDE_PRESENT_SHIFT); +} + +static inline unsigned int iommu_next_level(u32 *entry) +{ + return get_field_from_reg_u32(entry[0], + IOMMU_PDE_NEXT_LEVEL_MASK, + IOMMU_PDE_NEXT_LEVEL_SHIFT); +} + #endif /* _ASM_X86_64_AMD_IOMMU_PROTO_H */ _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |