Searched refs:pde_shift (Results 1 - 1 of 1) sorted by relevance

/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_gtt.h84 #define NUM_PTE(pde_shift) (1 << (pde_shift - PAGE_SHIFT))
528 static inline u32 i915_pte_index(u64 address, unsigned int pde_shift) argument
530 const u32 mask = NUM_PTE(pde_shift) - 1;
540 static inline u32 i915_pte_count(u64 addr, u64 length, unsigned int pde_shift) argument
542 const u64 mask = ~((1ULL << pde_shift) - 1);
551 return NUM_PTE(pde_shift) - i915_pte_index(addr, pde_shift);
553 return i915_pte_index(end, pde_shift) - i915_pte_index(addr, pde_shift);
[all...]

Completed in 213 milliseconds