drm/i915: kick any firmware framebuffers before claiming the gtt
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 12 Jun 2012 09:28:17 +0000 (11:28 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 13 Jun 2012 11:33:42 +0000 (13:33 +0200)
commite188719a2891f01b3100dca4ae3a055fb5a7ab52
tree7d62b339c322886454f60e7fe233d329d659d7c3
parent8ecd1a6615f0d9de6759aafe229bc1cc4ee99c7b
drm/i915: kick any firmware framebuffers before claiming the gtt

Especially vesafb likes to map everything as uc- (yikes), and if that
mapping hangs around still while we try to map the gtt as wc the
kernel will downgrade our request to uc-, resulting in abyssal
performance.

Unfortunately we can't do this as early as readon does (i.e. as the
first thing we do when initializing the hw) because our fb/mmio space
region moves around on a per-gen basis. So I've had to move it below
the gtt initialization, but that seems to work, too. The important
thing is that we do this before we set up the gtt wc mapping.

Now an altogether different question is why people compile their
kernels with vesafb enabled, but I guess making things just work isn't
bad per se ...

v2:
- s/radeondrmfb/inteldrmfb/
- fix up error handling

v3: Kill #ifdef X86, this is Intel after all. Noticed by Ben Widawsky.

v4: Jani Nikula complained about the pointless bool primary
initialization.

v5: Don't oops if we can't allocate, noticed by Chris Wilson.

v6: Resolve conflicts with agp rework and fixup whitespace.

Reported-and-tested-by: "Kilarski, Bernard R" <bernard.r.kilarski@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_dma.c