drm/i915/ppgtt: Set scratch page "globally"
The PPGTT scratch page is used for all gens, and doing it in the global part of our PPGTT setup makes the code a bit nicer. This was in a patch submitted earlier as part of the PPGTT cleanups. Grumpy maintainer must have missed it, and I didn't yell when appropriate. Apologies for everyone :-) v2: Update commit message Signed-off-by: Ben Widawsky <ben@bwidawsk.net> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
c81dbe0563
commit
1e7d12d467
1 changed files with 1 additions and 2 deletions
|
@ -201,8 +201,6 @@ static int gen6_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
|
||||||
ppgtt->pt_dma_addr[i] = pt_addr;
|
ppgtt->pt_dma_addr[i] = pt_addr;
|
||||||
}
|
}
|
||||||
|
|
||||||
ppgtt->scratch_page_dma_addr = dev_priv->gtt.scratch_page_dma;
|
|
||||||
|
|
||||||
ppgtt->clear_range(ppgtt, 0,
|
ppgtt->clear_range(ppgtt, 0,
|
||||||
ppgtt->num_pd_entries*I915_PPGTT_PT_ENTRIES);
|
ppgtt->num_pd_entries*I915_PPGTT_PT_ENTRIES);
|
||||||
|
|
||||||
|
@ -238,6 +236,7 @@ static int i915_gem_init_aliasing_ppgtt(struct drm_device *dev)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
ppgtt->dev = dev;
|
ppgtt->dev = dev;
|
||||||
|
ppgtt->scratch_page_dma_addr = dev_priv->gtt.scratch_page_dma;
|
||||||
|
|
||||||
ret = gen6_ppgtt_init(ppgtt);
|
ret = gen6_ppgtt_init(ppgtt);
|
||||||
if (ret)
|
if (ret)
|
||||||
|
|
Loading…
Add table
Reference in a new issue