Home | History | Annotate | Download | only in i915

Lines Matching refs:wopcm

15  * struct intel_wopcm - Overall WOPCM info and WOPCM regions.
16 * @size: Size of overall WOPCM.
17 * @guc: GuC WOPCM Region info.
18 * @guc.base: GuC WOPCM base which is offset from WOPCM base.
19 * @guc.size: Size of the GuC WOPCM region.
31 * @wopcm: intel_wopcm structure
33 * Returns the base of the WOPCM shadowed region.
37 * Otherwise, the GuC WOPCM base.
39 static inline u32 intel_wopcm_guc_base(struct intel_wopcm *wopcm)
41 return wopcm->guc.base;
46 * @wopcm: intel_wopcm structure
48 * Returns size of the WOPCM shadowed region.
52 * Otherwise, the GuC WOPCM size.
54 static inline u32 intel_wopcm_guc_size(struct intel_wopcm *wopcm)
56 return wopcm->guc.size;
59 void intel_wopcm_init_early(struct intel_wopcm *wopcm);
60 void intel_wopcm_init(struct intel_wopcm *wopcm);