22 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2020 Intel Corporation4 */5 6#ifndef __GEN8_PPGTT_H__7#define __GEN8_PPGTT_H__8 9#include <linux/kernel.h>10 11struct i915_address_space;12struct intel_gt;13 14struct i915_ppgtt *gen8_ppgtt_create(struct intel_gt *gt,15 unsigned long lmem_pt_obj_flags);16 17u64 gen8_ggtt_pte_encode(dma_addr_t addr,18 unsigned int pat_index,19 u32 flags);20 21#endif22