[Bug 73346] [radeonsi] not detecting all ports

2014-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73346

Michel Dänzer mic...@daenzer.net changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

--- Comment #6 from Michel Dänzer mic...@daenzer.net ---
The Gallium xorg state tracker (the basis of radeonsi_drv.so) was removed in
Mesa 10.0. Please use current xf86-video-ati and glamor.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
xorg-driver-ati mailing list
xorg-driver-ati@lists.x.org
http://lists.x.org/mailman/listinfo/xorg-driver-ati


[Bug 73356] New account request

2014-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73356

Oded Gabbay oded.gab...@amd.com changed:

   What|Removed |Added

   Assignee|sitewranglers@lists.freedes |xorg-driver-ati@lists.x.org
   |ktop.org|
 QA Contact||xorg-t...@lists.x.org
Product|freedesktop.org |xorg
  Component|New Accounts|Driver/Radeon

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
xorg-driver-ati mailing list
xorg-driver-ati@lists.x.org
http://lists.x.org/mailman/listinfo/xorg-driver-ati


[Bug 73356] New account request

2014-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73356

Oded Gabbay oded.gab...@amd.com changed:

   What|Removed |Added

 CC||ag...@yahoo.com

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
xorg-driver-ati mailing list
xorg-driver-ati@lists.x.org
http://lists.x.org/mailman/listinfo/xorg-driver-ati


[Bug 21508] low fps with radeon driver

2014-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=21508

Marek Olšák mar...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

--- Comment #8 from Marek Olšák mar...@gmail.com ---
Mesa 7.4 is no longer supported. RS690 should work fine with the R300 Gallium
driver and LLVM enabled.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
xorg-driver-ati mailing list
xorg-driver-ati@lists.x.org
http://lists.x.org/mailman/listinfo/xorg-driver-ati


[Bug 44099] Big Image in Firefox crashes X server in

2014-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44099

Alex Deucher ag...@yahoo.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #12 from Alex Deucher ag...@yahoo.com ---
Fix pushed:
http://cgit.freedesktop.org/xorg/driver/xf86-video-ati/commit/?id=bcc454ea2fb239e13942270faec7801270615b9c

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
xorg-driver-ati mailing list
xorg-driver-ati@lists.x.org
http://lists.x.org/mailman/listinfo/xorg-driver-ati


[Bug 68524] radeonsi with glamor has very poor performance with primitives drawing

2014-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68524

--- Comment #18 from darkbasic darkba...@linuxsystems.it ---
I tried the patch but it does not fix our gtk issue.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
xorg-driver-ati mailing list
xorg-driver-ati@lists.x.org
http://lists.x.org/mailman/listinfo/xorg-driver-ati


[Bug 73356] New account request

2014-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73356

Alex Deucher ag...@yahoo.com changed:

   What|Removed |Added

   Assignee|xorg-driver-ati@lists.x.org |sitewranglers@lists.freedes
   ||ktop.org
 QA Contact|xorg-t...@lists.x.org   |
Product|xorg|freedesktop.org
  Component|Driver/Radeon   |New Accounts

--- Comment #2 from Alex Deucher ag...@yahoo.com ---
Oded will be maintaining our AMD open source HSA driver and would like an fdo
account to post public git trees.  He doesn't need git access to any projects
at the moment.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
xorg-driver-ati mailing list
xorg-driver-ati@lists.x.org
http://lists.x.org/mailman/listinfo/xorg-driver-ati


[PATCH] dri2: Make last_vblank_seq local unsigned to match dpms_last_seq

2014-01-07 Thread Michel Dänzer
From: Michel Dänzer michel.daen...@amd.com

Without this, I was occasionally running into gnome-shell hangs due to wildly
off vblank sequence values. Doesn't seem to happen anymore with this change.

Signed-off-by: Michel Dänzer michel.daen...@amd.com
---
 src/radeon_dri2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/radeon_dri2.c b/src/radeon_dri2.c
index 79d8f39..d47b035 100644
--- a/src/radeon_dri2.c
+++ b/src/radeon_dri2.c
@@ -890,7 +890,7 @@ CARD32 radeon_dri2_extrapolate_msc_delay(xf86CrtcPtr crtc, 
CARD64 *target_msc,
 RADEONInfoPtr info = RADEONPTR(pScrn);
 int nominal_frame_rate = drmmode_crtc-dpms_last_fps;
 CARD64 last_vblank_ust = drmmode_crtc-dpms_last_ust;
-int last_vblank_seq = drmmode_crtc-dpms_last_seq;
+uint32_t last_vblank_seq = drmmode_crtc-dpms_last_seq;
 int interpolated_vblanks = drmmode_crtc-interpolated_vblanks;
 int target_seq;
 CARD64 now, target_time, delta_t;
-- 
1.8.5.2


___
xorg-driver-ati mailing list
xorg-driver-ati@lists.x.org
http://lists.x.org/mailman/listinfo/xorg-driver-ati


[Bug 66711] Xorg freezes with Radeon Xpress 1200/1250/1270 chipset

2014-01-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66711

--- Comment #9 from Yuri y...@tsoft.com ---
I tried 3.13, and it didn't help. It still freezes.

What concerns mesa drivers, latest version 10 isn't in Debian repository yet.
Also mesa driver isn't a kernel module. The freezing bug source is most likely
in kernel or kernel modules.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
xorg-driver-ati mailing list
xorg-driver-ati@lists.x.org
http://lists.x.org/mailman/listinfo/xorg-driver-ati