]> git.baikalelectronics.ru Git - kernel.git/commit
drm/i915: Init PPGTT before context enable
authorDavid Woodhouse <dwmw2@infradead.org>
Tue, 20 Jan 2015 17:21:42 +0000 (17:21 +0000)
committerJani Nikula <jani.nikula@intel.com>
Mon, 26 Jan 2015 09:00:32 +0000 (11:00 +0200)
commitd0babec7e7561ce026a8f8cd17f24e1aa60cf962
tree7ba6c9747abdf3237774a557b305c975897f3aab
parent595bd192f596cf6aa525fc6fbe21ccdb8dab0aa1
drm/i915: Init PPGTT before context enable

Commit d481971d0 ("drm/i915: Rework ppgtt init to no require an aliasing
ppgtt") introduced a regression on Broadwell, triggering the following
IOMMU fault at startup:

  vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
  dmar: DRHD: handling fault status reg 2
  dmar: DMAR:[DMA Write] Request device [00:02.0] fault addr 880000
  DMAR:[fault reason 23] Unknown
  fbcon: inteldrmfb (fb0) is primary device

Further commentary from Daniel:

I sugggested this change to David after staring at the offending patch
for a while. I have no idea and theory whatsoever why this would upset
the gpu less than the other way round. But it seems to work. David
promised to chase hw people a bit more to get a more meaningful answer.

Wrt the comment that this deletes: I've done some digging and afaict
loading context before ppgtt enable was once required before our recent
restructuring of the context/ppgtt init code: Before that context sw
setup (i.e. allocating the default context) and hw setup was smashed
together.  Also the setup of the default context was the bit that
actually allocated the aliasing ppgtt structures. Which is the reason
for the context before ppgtt depency.

Or was, since with all the untangling there's no no real depency any
more (functional, who knows what the hw is doing), so the comment is
just stale.

Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/i915_gem.c