[Bug 57531] [GEM] RS780V allocation errors with piglit

2012-11-25 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=57531

Kenney Phillis Jr  changed:

   What|Removed |Added

   Hardware|Other   |x86 (IA32)
 OS|All |Linux (All)

-- 
You are receiving this mail because:
You are the assignee for the bug.
-- next part --
An HTML attachment was scrubbed...
URL: 
<http://lists.freedesktop.org/archives/dri-devel/attachments/20121125/0b9d3bff/attachment.html>


[Bug 57531] [GEM] RS780V allocation errors with piglit

2012-11-25 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=57531

--- Comment #2 from Kenney Phillis Jr  ---
Created attachment 70560
  --> https://bugs.freedesktop.org/attachment.cgi?id=70560=edit
Piglit test results for all 3 passes

-- 
You are receiving this mail because:
You are the assignee for the bug.
-- next part --
An HTML attachment was scrubbed...
URL: 
<http://lists.freedesktop.org/archives/dri-devel/attachments/20121125/f4181ec5/attachment.html>


[Bug 57531] [GEM] RS780V allocation errors with piglit

2012-11-25 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=57531

--- Comment #1 from Kenney Phillis Jr  ---
Created attachment 70559
  --> https://bugs.freedesktop.org/attachment.cgi?id=70559=edit
Xorg log

-- 
You are receiving this mail because:
You are the assignee for the bug.
-- next part --
An HTML attachment was scrubbed...
URL: 
<http://lists.freedesktop.org/archives/dri-devel/attachments/20121125/80a244d0/attachment-0001.html>


[Bug 57531] New: [GEM] RS780V allocation errors with piglit

2012-11-25 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=57531

  Priority: medium
Bug ID: 57531
  Assignee: dri-devel at lists.freedesktop.org
   Summary: [GEM] RS780V allocation errors with piglit
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: kphillisjr at gmail.com
  Hardware: Other
Status: NEW
   Version: git
 Component: Drivers/DRI/R600
   Product: Mesa

Created attachment 70558
  --> https://bugs.freedesktop.org/attachment.cgi?id=70558=edit
Dmesg log - after third pass of piglit.

I was giving piglit a trial run, and noticed that there was a few errors about
the radeon driver being able to allocate gem objects.

Piglit package: 1.0.0~git20121122.cf47699-0edgers~quantal1 
Piglit Git revision:cf47699087f74a6fd94c59a74837fc6c3c6422a8

Mesa Package: 9.1~git20121110.c6f426c0-0ubuntu0ricotz~quantal
Mesa Git Revision: c6f426c02d14fcdfdbdd03473d098d4c9b81a8b2

Libdrm package: 2.4.40+git20121109.e01d68f9-0ubuntu0ricotz~quantal
libdrm revision: e01d68f9f3acfc35fe164283904b5d058c2ab378

Notes: In the kernel log, the first pass errors started at: 11166.715813,
second pass started at 11742.67 and third pass had errors start
13408.932142.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-- next part --
An HTML attachment was scrubbed...
URL: 
<http://lists.freedesktop.org/archives/dri-devel/attachments/20121125/d1b39fef/attachment-0001.html>


[Bug 47481] Random blank screen: radeon_cs_ib_chunk Failed to schedule IB on AMD PALM

2012-11-25 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=47481





--- Comment #11 from Anisse Astier   2012-11-25 22:23:45 
---
Indeed. Bug is fixed in 3.7, but I still have to backport the two commits I
cited on kernel <= 3.6. These should be proposed to stable (I thought they
were).

-- 
Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are watching the assignee of the bug.


[PATCH 1/1] drm: only build ati_pcigart if PCI enabled

2012-11-25 Thread Alex Deucher
On Fri, Nov 23, 2012 at 6:12 AM, James Hogan  wrote:
> Prevent ati_pcigart.c being built unless PCI is enabled. The exported
> functions in this file are only used by drivers which depend on PCI
> (namely r128 and radeon), and it tries to use PCI specific functions
> (pci_unmap_page, pci_map_page, and pci_dma_mapping_error) that cause
> compiler errors when PCI is disabled.
>
> Signed-off-by: James Hogan 
> Cc: David Airlie 

Reviewed-by: Alex Deucher 

> ---
>  drivers/gpu/drm/Makefile |3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
> index 2ff5cef..3e303b1b 100644
> --- a/drivers/gpu/drm/Makefile
> +++ b/drivers/gpu/drm/Makefile
> @@ -8,7 +8,7 @@ drm-y   :=  drm_auth.o drm_buffer.o drm_bufs.o 
> drm_cache.o \
> drm_context.o drm_dma.o \
> drm_drv.o drm_fops.o drm_gem.o drm_ioctl.o drm_irq.o \
> drm_lock.o drm_memory.o drm_proc.o drm_stub.o drm_vm.o \
> -   drm_agpsupport.o drm_scatter.o ati_pcigart.o drm_pci.o \
> +   drm_agpsupport.o drm_scatter.o drm_pci.o \
> drm_platform.o drm_sysfs.o drm_hashtab.o drm_mm.o \
> drm_crtc.o drm_modes.o drm_edid.o \
> drm_info.o drm_debugfs.o drm_encoder_slave.o \
> @@ -16,6 +16,7 @@ drm-y   :=drm_auth.o drm_buffer.o drm_bufs.o 
> drm_cache.o \
>
>  drm-$(CONFIG_COMPAT) += drm_ioc32.o
>  drm-$(CONFIG_DRM_GEM_CMA_HELPER) += drm_gem_cma_helper.o
> +drm-$(CONFIG_PCI) += ati_pcigart.o
>
>  drm-usb-y   := drm_usb.o
>
> --
> 1.7.7.6
>
>
> ___
> dri-devel mailing list
> dri-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel


[pull] drm-fixes

2012-11-25 Thread Daniel Vetter
Hi Dave,

One more on top.

On Fri, Nov 23, 2012 at 05:58:55PM +0100, Daniel Vetter wrote:
> Two small fixes for 3.7:
> - Unbreak mbp retina, this time with a much more fine-grained approach
>   (since the previous "completely ignore edp vbt bpp value" regressed some
>   machines even after fixing a bug in our dp bw code).
> - Disable cloning on sdvo. It just doesn't work (yeah took us a while to
>   figure out), leading to jittery outputs in the best case.
- Revert rc6 for ilk again. It seems to help a few of the gpu hang
  reporters at least, and it's definitely the best we've got.
  Head-against-the-wall-banging is still ongoing for what really breaks
  (and how we can reproduce the non-rc6 hangs and how to reproduce on
  gen4).

Cheers, Daniel

The following changes since commit f4a75d2eb7b1e2206094b901be09adb31ba63681:

  Linux 3.7-rc6 (2012-11-16 17:42:40 -0800)

are available in the git repository at:

  git://people.freedesktop.org/~danvet/drm-intel drm-intel-fixes

for you to fetch changes up to 6567d748c4e94e3481e523803ec07ebd825c80d6:

  Revert "drm/i915: enable rc6 on ilk again" (2012-11-25 20:53:52 +0100)


Chris Wilson (1):
  Revert "drm/i915: enable rc6 on ilk again"

Daniel Vetter (1):
  drm/i915: disable cloning on sdvo

Jani Nikula (1):
  drm/i915: do not default to 18 bpp for eDP if missing from VBT

 drivers/gpu/drm/i915/intel_bios.c|   11 ++-
 drivers/gpu/drm/i915/intel_display.c |2 +-
 drivers/gpu/drm/i915/intel_pm.c  |   12 +++-
 drivers/gpu/drm/i915/intel_sdvo.c|   17 ++---
 4 files changed, 16 insertions(+), 26 deletions(-)
-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch


[Bug 47481] Random blank screen: radeon_cs_ib_chunk Failed to schedule IB on AMD PALM

2012-11-25 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=47481


Andre  changed:

   What|Removed |Added

 CC||andros at all-ein.net




--- Comment #10 from Andre   2012-11-25 19:03:33 ---
I can confirm this bug on my AMD A8-3550-m
Kernel 3.5.7 and 3.6.6  -> radeon.modeset=1

The trouble began about tree days ago, as i updated my Gentoo system (stable
branch) and the following updates where installed:

xorg-server1.12.4 =>   1.13.0-r1
mesa   8.0.4-r1   =>   9.0
xf86-video-ati 6.14.6-r1  =>   7.0.0

After that i had strange artifacts in X and random crashes of the X-server.
Where the mouse is movable but the windows are frozen and the screen turns
black after a a short time.

I have test-installed 3 other linux distributions, all came out with the same
bug, after upgrading the installations to the latest stable releases.


Sadly only after tree days of experimenting, i came to the conclusion that this
error only occurs when the VGA output is active. 
With the LVDA or HDMI output i have no problems so far. 

It's really sad to see, that this bug is two months old and now shows up in
major Linux Distributions, in the >>stable-branches<<.

-- 
Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are watching the assignee of the bug.