commit xf86-video-amdgpu for openSUSE:Factory

2020-05-09 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2020-05-09 19:49:04

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new.2738 (New)


Package is "xf86-video-amdgpu"

Sat May  9 19:49:04 2020 rev:27 rq:801381 version:19.1.0

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2020-01-12 23:18:27.362684580 +0100
+++ 
/work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new.2738/xf86-video-amdgpu.changes
2020-05-09 19:49:08.616424327 +0200
@@ -1,0 +2,6 @@
+Thu May  7 12:46:02 CEST 2020 - ti...@suse.de
+
+- N_amdgpu-present-Check-tiling-for-newer-versions-too.patch:
+  * fix crash with external HDMI and DPMS change (bsc#1169222)
+
+---

New:

  N_amdgpu-present-Check-tiling-for-newer-versions-too.patch



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.LxiFYK/_old  2020-05-09 19:49:09.632426508 +0200
+++ /var/tmp/diff_new_pack.LxiFYK/_new  2020-05-09 19:49:09.632426508 +0200
@@ -32,6 +32,7 @@
 Source2:%{name}.keyring
 Source3:amdgpu.ids
 Patch0: u_fno-common.patch
+Patch1: N_amdgpu-present-Check-tiling-for-newer-versions-too.patch
 BuildRequires:  autoconf >= 2.6.0
 BuildRequires:  automake
 BuildRequires:  libtool
@@ -66,6 +67,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 autoreconf -fiv

++ N_amdgpu-present-Check-tiling-for-newer-versions-too.patch ++
From: Takashi Iwai 
Subject: present: Check tiling for newer versions, too
Patch-mainline: Never, temporary workaround
References: bsc#1169222

This is essentially a partial revert of the commit a2b32e72fdaf
  present: Don't check tiling parameters with DC & DRM minor version >= 31

that caused a crash when DPMS is changed while an external HDMI
monitor is connected on the laptop.

Note that it's a temporary workaround until the actual cause gets
fixed in the kernel DRM side.

Signed-off-by: Takashi Iwai 

---
 src/amdgpu_present.c |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- a/src/amdgpu_present.c
+++ b/src/amdgpu_present.c
@@ -305,7 +305,8 @@ amdgpu_present_check_flip(RRCrtcPtr crtc
return FALSE;
}
 
-   if (!dc_enabled || info->dri2.pKernelDRMVersion->version_minor < 31) {
+   /* FIXME: reverted the DRM minor version check below (bsc#1169222) */
+   if (1 /*!dc_enabled || info->dri2.pKernelDRMVersion->version_minor < 
31*/) {
/* The kernel driver doesn't handle flipping between BOs with
 * different tiling parameters correctly
 */





commit xf86-video-amdgpu for openSUSE:Factory

2020-01-12 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2020-01-12 23:18:00

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new.6675 (New)


Package is "xf86-video-amdgpu"

Sun Jan 12 23:18:00 2020 rev:26 rq:762590 version:19.1.0

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2019-10-17 12:16:16.328078039 +0200
+++ 
/work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new.6675/xf86-video-amdgpu.changes
2020-01-12 23:18:27.362684580 +0100
@@ -1,0 +2,6 @@
+Thu Jan  9 23:39:11 UTC 2020 - Stefan Dirsch 
+
+- u_fno-common.patch
+  * fix build with gcc's -fno-common option (boo#1160421) 
+
+---

New:

  u_fno-common.patch



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.VqNGCe/_old  2020-01-12 23:18:28.946685166 +0100
+++ /var/tmp/diff_new_pack.VqNGCe/_new  2020-01-12 23:18:28.954685169 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-amdgpu
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -31,6 +31,7 @@
 Source1:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2.sig
 Source2:%{name}.keyring
 Source3:amdgpu.ids
+Patch0: u_fno-common.patch
 BuildRequires:  autoconf >= 2.6.0
 BuildRequires:  automake
 BuildRequires:  libtool
@@ -64,6 +65,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 autoreconf -fiv

++ u_fno-common.patch ++
--- xf86-video-amdgpu-19.1.0.old/src/drmmode_display.h  2020-01-09 
23:36:44.871438889 +
+++ xf86-video-amdgpu-19.1.0/src/drmmode_display.h  2020-01-09 
23:37:15.904031508 +
@@ -289,7 +289,7 @@
 uint64_t *ust, uint32_t *result_seq);
 
 
-miPointerSpriteFuncRec drmmode_sprite_funcs;
+extern miPointerSpriteFuncRec drmmode_sprite_funcs;
 
 
 #endif





commit xf86-video-amdgpu for openSUSE:Factory

2019-10-17 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2019-10-17 12:16:14

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new.2352 (New)


Package is "xf86-video-amdgpu"

Thu Oct 17 12:16:14 2019 rev:25 rq:737890 version:19.1.0

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2019-08-05 10:30:09.351447080 +0200
+++ 
/work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new.2352/xf86-video-amdgpu.changes
2019-10-17 12:16:16.328078039 +0200
@@ -1,0 +2,6 @@
+Sat Oct 12 13:39:40 UTC 2019 - Stefan Dirsch 
+
+- Update to version 19.1.0 
+  * bugfixes and minor improvements
+
+---

Old:

  xf86-video-amdgpu-19.0.1.tar.bz2
  xf86-video-amdgpu-19.0.1.tar.bz2.sig

New:

  xf86-video-amdgpu-19.1.0.tar.bz2
  xf86-video-amdgpu-19.1.0.tar.bz2.sig



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.BMRnai/_old  2019-10-17 12:16:16.956076463 +0200
+++ /var/tmp/diff_new_pack.BMRnai/_new  2019-10-17 12:16:16.960076453 +0200
@@ -21,7 +21,7 @@
 %define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids
 %endif
 Name:   xf86-video-amdgpu
-Version:19.0.1
+Version:19.1.0
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT

++ xf86-video-amdgpu-19.0.1.tar.bz2 -> xf86-video-amdgpu-19.1.0.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xf86-video-amdgpu-19.0.1/ChangeLog 
new/xf86-video-amdgpu-19.1.0/ChangeLog
--- old/xf86-video-amdgpu-19.0.1/ChangeLog  2019-03-19 18:50:39.0 
+0100
+++ new/xf86-video-amdgpu-19.1.0/ChangeLog  2019-10-11 17:21:22.0 
+0200
@@ -1,3 +1,156 @@
+commit b467d2569a003da05ad222b0dc095bee5eec450a
+Author: Michel Dänzer 
+Date:   Fri Oct 11 17:10:10 2019 +0200
+
+Bump version for the 19.1.0 release
+
+commit a1b7263277c033e109629829c370c0e95978e061
+Author: Michel Dänzer 
+Date:   Thu Sep 26 15:56:59 2019 +0200
+
+Don't unreference FBs of pixmaps from different screens in LeaveVT
+
+FindClientResourcesByType finds pixmaps from all screens, but trying to
+process ones from other screens here makes no sense and likely results
+in a crash or memory corruption.
+
+Fixes: c16ff42f927d ("Make all active CRTCs scan out an all-black
+  framebuffer in LeaveVT")
+(Ported from radeon commit 2faaecc69b127248718e759c6c98c84d56dd1b6b)
+
+commit 5b8bc9fc505c551dcd9b0ed5ab835a49fa4f9fda
+Author: Michel Dänzer 
+Date:   Wed Sep 18 12:55:45 2019 +0200
+
+Don't set up black scanout buffer if LeaveVT is called from CloseScreen
+
+Avoids a crash described in
+
https://gitlab.freedesktop.org/xorg/driver/xf86-video-amdgpu/merge_requests/43#note_223718
+
+Reviewed-by: Alex Deucher 
+
+commit e6fce59a071220967fcd4e2c9e4a262c72870761
+Author: Michel Dänzer 
+Date:   Wed Jul 24 16:05:05 2019 +0200
+
+present: Don't check pixmap pitch in check_flip with non-DC >= 3.34
+
+The current non-DC kernel driver also handles flipping between different
+pitches correctly.
+
+Reviewed-by: Nicholas Kazlauskas 
+
+commit 5bb2580b266468f87843b5585ae64e056b63bb88
+Author: Michel Dänzer 
+Date:   Wed Jul 24 15:55:19 2019 +0200
+
+present: Don't check pixmap pitch in check_flip with current DC
+
+Current DC handles flipping between different pitches correctly.
+
+Reviewed-by: Nicholas Kazlauskas 
+
+commit ac66086613cbd0974b421cd5eda872adc15242ed
+Author: Michel Dänzer 
+Date:   Wed Jul 24 15:45:21 2019 +0200
+
+present: Also check pixmap pitch in check_flip with current xserver
+
+The corresponding check in the xserver Present code was removed again,
+because flipping between different pitches can work in some cases.
+
+Reviewed-by: Nicholas Kazlauskas 
+
+commit 98f172eb2d2353e19edd8167f22215ce596811f8
+Author: Michel Dänzer 
+Date:   Mon Jul 29 18:54:24 2019 +0200
+
+gitlab-ci: Use templates from wayland/ci-templates
+
+These are already used by xserver, Mesa and some other projects.
+
+Current Debian testing brings e.g. GCC 8.3.0 and clang 7.0.1.
+
+commit 87f41ace4920fd2069794211683659eb25b025a6
+Author: Michel Dänzer 
+Date:   Fri Jul 5 12:43:53 2019 +0200
+
+Don't disable page flipping completely with SW cursor
+
+Even with SW cursor, page flipping can be used while no X cursor is
+visible.
+
+Occurred to me in the context of xorg/xserver#828.
+
+commit 7d3fef72e0c871e1677e9e544f4cae5e238b5c52

commit xf86-video-amdgpu for openSUSE:Factory

2019-08-05 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2019-08-05 10:30:07

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new.4126 (New)


Package is "xf86-video-amdgpu"

Mon Aug  5 10:30:07 2019 rev:24 rq:719826 version:19.0.1

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2019-03-26 22:30:08.617738781 +0100
+++ 
/work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new.4126/xf86-video-amdgpu.changes
2019-08-05 10:30:09.351447080 +0200
@@ -1,0 +2,6 @@
+Tue Jul 30 12:49:36 UTC 2019 - Stefan Dirsch 
+
+- move xorg.conf.d snippet from /etc/X11/xorg.conf.d to
+  /usr/share/X11/xorg.conf.d (boo#1139692)
+
+---



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.JfwlPM/_old  2019-08-05 10:30:10.243446980 +0200
+++ /var/tmp/diff_new_pack.JfwlPM/_new  2019-08-05 10:30:10.247446979 +0200
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -77,10 +77,6 @@
 rm -f %{buildroot}%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf
 mkdir -p %{buildroot}%{pci_ids_dir}
 cp %{SOURCE3} %{buildroot}%{pci_ids_dir}/
-%else
-mkdir -p %{buildroot}%{_sysconfdir}/X11/xorg.conf.d
-mv %{buildroot}/%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf \
-   %{buildroot}%{_sysconfdir}/X11/xorg.conf.d/
 %endif
 
 %files
@@ -93,7 +89,8 @@
 %dir %{pci_ids_dir}
 %{pci_ids_dir}/amdgpu.ids
 %else
-%config %{_sysconfdir}/X11/xorg.conf.d/10-amdgpu.conf
+%dir %{_datadir}/X11/xorg.conf.d
+%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf
 %endif
 
 %changelog






commit xf86-video-amdgpu for openSUSE:Factory

2019-03-26 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2019-03-26 22:30:07

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new.25356 (New)


Package is "xf86-video-amdgpu"

Tue Mar 26 22:30:07 2019 rev:23 rq:687666 version:19.0.1

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2019-03-12 09:47:16.071611580 +0100
+++ 
/work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new.25356/xf86-video-amdgpu.changes
   2019-03-26 22:30:08.617738781 +0100
@@ -1,0 +2,8 @@
+Fri Mar 22 13:08:07 UTC 2019 - Stefan Dirsch 
+
+- Update to version 19.0.1
+  * Add support for RandR output tile properties, allowing
+monitors using DisplayPort Multi Stream Transport tiling
+to work better out of the box.
+
+---

Old:

  xf86-video-amdgpu-19.0.0.tar.bz2
  xf86-video-amdgpu-19.0.0.tar.bz2.sig

New:

  xf86-video-amdgpu-19.0.1.tar.bz2
  xf86-video-amdgpu-19.0.1.tar.bz2.sig



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.LKlOAo/_old  2019-03-26 22:30:10.389738353 +0100
+++ /var/tmp/diff_new_pack.LKlOAo/_new  2019-03-26 22:30:10.429738344 +0100
@@ -21,7 +21,7 @@
 %define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids
 %endif
 Name:   xf86-video-amdgpu
-Version:19.0.0
+Version:19.0.1
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT

++ xf86-video-amdgpu-19.0.0.tar.bz2 -> xf86-video-amdgpu-19.0.1.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xf86-video-amdgpu-19.0.0/ChangeLog 
new/xf86-video-amdgpu-19.0.1/ChangeLog
--- old/xf86-video-amdgpu-19.0.0/ChangeLog  2019-03-06 12:43:13.0 
+0100
+++ new/xf86-video-amdgpu-19.0.1/ChangeLog  2019-03-19 18:50:39.0 
+0100
@@ -1,3 +1,23 @@
+commit bd4ffd4ebbdf1c43ab9e1ef9ba8b812fd2dde4a4
+Author: Michel Dänzer 
+Date:   Tue Mar 19 18:44:31 2019 +0100
+
+Bump version for the 19.0.1 release
+
+commit 6ee857726166f495abcd68e4ff60e3a09593d079
+Author: Dave Airlie 
+Date:   Mon Mar 23 11:33:23 2015 +1000
+
+modesetting: add tile property support
+
+This adds tiling support to the driver, it retrieves the tile info from
+the kernel and translates it into the server format and exposes the
+property.
+
+(Ported from xserver commits 8fb8bbb3062f1a06621ab7030a9e89d5e8367b35
+ and 6abdb54a11dac4e8854ff94ecdcb90a14321ab31)
+Reviewed-by: Alex Deucher 
+
 commit 9534bf3bb33d14cd3a5af08e36ef42b309647fc7
 Author: Michel Dänzer 
 Date:   Wed Mar 6 12:05:14 2019 +0100
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xf86-video-amdgpu-19.0.0/configure 
new/xf86-video-amdgpu-19.0.1/configure
--- old/xf86-video-amdgpu-19.0.0/configure  2019-03-06 12:42:57.0 
+0100
+++ new/xf86-video-amdgpu-19.0.1/configure  2019-03-19 18:50:23.0 
+0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for xf86-video-amdgpu 19.0.0.
+# Generated by GNU Autoconf 2.69 for xf86-video-amdgpu 19.0.1.
 #
 # Report bugs to 
.
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='xf86-video-amdgpu'
 PACKAGE_TARNAME='xf86-video-amdgpu'
-PACKAGE_VERSION='19.0.0'
-PACKAGE_STRING='xf86-video-amdgpu 19.0.0'
+PACKAGE_VERSION='19.0.1'
+PACKAGE_STRING='xf86-video-amdgpu 19.0.1'
 
PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg=Driver/AMDgpu'
 PACKAGE_URL=''
 
@@ -1404,7 +1404,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures xf86-video-amdgpu 19.0.0 to adapt to many kinds of 
systems.
+\`configure' configures xf86-video-amdgpu 19.0.1 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1476,7 +1476,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of xf86-video-amdgpu 19.0.0:";;
+ short | recursive ) echo "Configuration of xf86-video-amdgpu 19.0.1:";;
esac
   cat <<\_ACEOF
 
@@ -1635,7 +1635,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-xf86-video-amdgpu configure 19.0.0
+xf86-video-amdgpu configure 19.0.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2050,7 

commit xf86-video-amdgpu for openSUSE:Factory

2019-03-12 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2019-03-12 09:47:14

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new.28833 (New)


Package is "xf86-video-amdgpu"

Tue Mar 12 09:47:14 2019 rev:22 rq:682391 version:19.0.0

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2018-09-20 11:37:56.376980691 +0200
+++ 
/work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new.28833/xf86-video-amdgpu.changes
   2019-03-12 09:47:16.071611580 +0100
@@ -1,0 +2,13 @@
+Thu Mar  7 10:14:37 UTC 2019 - Stefan Dirsch 
+
+- Update to version 19.0.0
+  * Support for FreeSync variable refresh rate (this also requires the
+amdgpu driver from kernel 5.0 or newer, and radeonsi from Mesa 19.0 or
+newer).
+  * Various TearFree related fixes and robustness improvements.
+  * Support for scanout buffers using DCC colour compression.
+  * Up to six independent instances per GPU are now supported in "Zaphod"
+style multi-head configurations.
+  * Other improvements and fixes
+
+---

Old:

  xf86-video-amdgpu-18.1.0.tar.bz2
  xf86-video-amdgpu-18.1.0.tar.bz2.sig

New:

  xf86-video-amdgpu-19.0.0.tar.bz2
  xf86-video-amdgpu-19.0.0.tar.bz2.sig



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.xgb0ck/_old  2019-03-12 09:47:17.803611235 +0100
+++ /var/tmp/diff_new_pack.xgb0ck/_new  2019-03-12 09:47:17.843611227 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-amdgpu
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,7 +21,7 @@
 %define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids
 %endif
 Name:   xf86-video-amdgpu
-Version:18.1.0
+Version:19.0.0
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT
@@ -85,7 +85,7 @@
 
 %files
 %defattr(-,root,root)
-%doc COPYING README
+%doc COPYING README.md
 %dir %{_libdir}/xorg/modules/drivers
 %{_libdir}/xorg/modules/drivers/amdgpu_drv.so
 %{_mandir}/man4/amdgpu.4%{?ext_man}

++ xf86-video-amdgpu-18.1.0.tar.bz2 -> xf86-video-amdgpu-19.0.0.tar.bz2 
++
 3421 lines of diff (skipped)





commit xf86-video-amdgpu for openSUSE:Factory

2018-09-20 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2018-09-20 11:37:51

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Thu Sep 20 11:37:51 2018 rev:21 rq:635869 version:18.1.0

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2018-07-22 23:33:56.828281163 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2018-09-20 11:37:56.376980691 +0200
@@ -1,0 +2,15 @@
+Sat Sep 15 13:53:27 UTC 2018 - sndir...@suse.com
+
+- Update to version 18.1.0
+  * This release supports xserver versions 1.13-1.20.
+  * When using DC as of Linux 4.17:
+- Support advanced colour management functionality.
+- Support gamma correction and X11 colormaps when Xorg runs at depth
+  30 as well.
+  * Support for leasing RandR outputs to clients.
+  * Various robustness fixes for TearFree. In particular, fixed several
+cases in which disabling TearFree at runtime would result in the Xorg
+process freezing or crashing.
+  * Fixed some m4 related build issues with older versions of autotools.
+
+---

Old:

  xf86-video-amdgpu-18.0.1.tar.bz2
  xf86-video-amdgpu-18.0.1.tar.bz2.sig

New:

  xf86-video-amdgpu-18.1.0.tar.bz2
  xf86-video-amdgpu-18.1.0.tar.bz2.sig



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.fi2qsd/_old  2018-09-20 11:37:56.812980434 +0200
+++ /var/tmp/diff_new_pack.fi2qsd/_new  2018-09-20 11:37:56.812980434 +0200
@@ -21,7 +21,7 @@
 %define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids
 %endif
 Name:   xf86-video-amdgpu
-Version:18.0.1
+Version:18.1.0
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT

++ xf86-video-amdgpu-18.0.1.tar.bz2 -> xf86-video-amdgpu-18.1.0.tar.bz2 
++
 5132 lines of diff (skipped)





commit xf86-video-amdgpu for openSUSE:Factory

2018-07-22 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2018-07-22 23:33:55

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Sun Jul 22 23:33:55 2018 rev:20 rq:622483 version:18.0.1

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2018-04-07 20:49:25.122978062 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2018-07-22 23:33:56.828281163 +0200
@@ -1,0 +2,5 @@
+Fri Jul 13 14:50:48 UTC 2018 - sndir...@suse.com
+
+- fixed damageproto BuildRequires
+
+---



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.642WrZ/_old  2018-07-22 23:33:57.332280999 +0200
+++ /var/tmp/diff_new_pack.642WrZ/_new  2018-07-22 23:33:57.332280999 +0200
@@ -33,9 +33,9 @@
 Source3:amdgpu.ids
 BuildRequires:  autoconf >= 2.6.0
 BuildRequires:  automake
-BuildRequires:  damageproto-devel
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(damageproto)
 BuildRequires:  pkgconfig(fontsproto)
 BuildRequires:  pkgconfig(gbm)
 BuildRequires:  pkgconfig(libdrm) >= 2.4.58






commit xf86-video-amdgpu for openSUSE:Factory

2018-04-07 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2018-04-07 20:49:23

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Sat Apr  7 20:49:23 2018 rev:19 rq:593542 version:18.0.1

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2018-03-08 10:54:01.892827590 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2018-04-07 20:49:25.122978062 +0200
@@ -1,0 +2,18 @@
+Wed Apr  4 12:40:11 UTC 2018 - sndir...@suse.com
+
+- Update to version 18.0.1
+  * This release supports xserver versions 1.13-1.19. It also works
+with xserver 1.20 RC1, so unless something unexpected happens,
+it should work with xserver 1.20 as well.
+This is a bug-fix release addressing issues in 18.0.0. While
+those issues shouldn't affect most users, I recommend that all
+users of 18.0.0 update to 18.0.1.
++ The Xorg process could enter an infinite loop after a server
+  reset (in configurations where Xorg doesn't terminate when
+  the last client disconnects)
++ The Xorg process could crash when multiple primary screens
+  are configured in xorg.conf.
++ TearFree could trigger debugging messages in the pixman
+  library
+
+---

Old:

  xf86-video-amdgpu-18.0.0.tar.bz2
  xf86-video-amdgpu-18.0.0.tar.bz2.sig

New:

  xf86-video-amdgpu-18.0.1.tar.bz2
  xf86-video-amdgpu-18.0.1.tar.bz2.sig



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.QQOnvu/_old  2018-04-07 20:49:25.826952583 +0200
+++ /var/tmp/diff_new_pack.QQOnvu/_new  2018-04-07 20:49:25.826952583 +0200
@@ -21,7 +21,7 @@
 %define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids
 %endif
 Name:   xf86-video-amdgpu
-Version:18.0.0
+Version:18.0.1
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT

++ xf86-video-amdgpu-18.0.0.tar.bz2 -> xf86-video-amdgpu-18.0.1.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xf86-video-amdgpu-18.0.0/ChangeLog 
new/xf86-video-amdgpu-18.0.1/ChangeLog
--- old/xf86-video-amdgpu-18.0.0/ChangeLog  2018-03-02 18:31:51.0 
+0100
+++ new/xf86-video-amdgpu-18.0.1/ChangeLog  2018-03-15 16:40:55.0 
+0100
@@ -1,3 +1,63 @@
+commit 9f37a44473ded8c669897379acbc750362c15ec6
+Author: Michel Dänzer 
+Date:   Thu Mar 15 16:34:19 2018 +0100
+
+Bump version for 18.0.1 release
+
+commit 8af989546907ad9fb491d940e1936d3bfc89276b
+Author: Michel Dänzer 
+Date:   Thu Mar 8 18:48:28 2018 +0100
+
+Pass extents to amdgpu_scanout_do_update by value
+
+amdgpu_scanout_extents_intersect could leave the scanout damage region
+in an invalid state, triggering debugging checks in pixman:
+
+*** BUG ***
+In pixman_region_append_non_o: The expression r->x1 < r->x2 was false
+Set a breakpoint on '_pixman_log_error' to debug
+
+commit 29649652a08ece7e07741be161b067a4484455ca
+Author: Michel Dänzer 
+Date:   Wed Mar 7 17:51:25 2018 +0100
+
+Wrap the whole miPointerScreenFuncRec, instead of only Set/MoveCursor
+
+We were clobbering entries in mi's global miSpritePointerFuncs struct,
+which cannot work correctly with multiple primary screens. Instead,
+assign a pointer to our own wrapper struct to PointPriv->spriteFuncs.
+
+Fixes crashes with multiple primary screens.
+
+Fixes: 69e20839bfeb ("Keep track of how many SW cursors are visible on
+  each screen")
+Reported-by: Mario Kleiner 
+
+commit b4a28bdcfa7089e1cf708490ddf048b7df4c7eed
+Author: Michel Dänzer 
+Date:   Tue Mar 6 17:59:26 2018 +0100
+
+Only change Set/MoveCursor hooks from what we expect
+
+Since xf86CursorCloseScreen runs after AMDGPUCloseScreen_KMS,
+PointPriv->spriteFuncs doesn't point to the same struct in the latter as
+in AMDGPUCursorInit_KMS. So we were restoring info->Set/MoveCursor to
+the wrong struct. Then in the next server generation,
+info->Set/MoveCursor would end up pointing to
+drmmode_sprite_set/move_cursor, resulting in an infinite loop if one of
+them was called.
+
+To avoid this, only change the Set/MoveCursor hooks if their values
+match our expectations, otherwise leave them as is. This is kind of a
+hack, but the alternative would be invasive and 

commit xf86-video-amdgpu for openSUSE:Factory

2018-03-08 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2018-03-08 10:53:59

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Thu Mar  8 10:53:59 2018 rev:18 rq:583002 version:18.0.0

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2017-12-15 14:03:38.417671005 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2018-03-08 10:54:01.892827590 +0100
@@ -1,0 +2,20 @@
+Mon Mar  5 14:41:29 UTC 2018 - sndir...@suse.com
+
+- Update to version 18.0.0
+  "I'm pleased to announce the 18.0.0 release of xf86-video-amdgpu, the
+   Xorg driver for AMD Radeon GPUs supported by the amdgpu kernel driver.
+   This release supports xserver versions 1.13-1.19. It also works with
+   xserver 1.20 RC1, so unless something unexpected happens, it should work
+   with xserver 1.20 as well.
+   Highlights:
+   * New year-based versioning scheme
+   * Page flipping can now be used even when the HW cursor can't be used in
+ some cases
+   * Support for 30-bit RGB colour output. Note that gamma correction is
+ currently not available with 30-bit colour. Also, hardware
+ acceleration is not available with 30-bit colour with xserver versions
+ before 1.20.
+   Plus other improvements and fixes. Thanks to everybody who contributed
+   to this release in any way!
+
+---

Old:

  xf86-video-amdgpu-1.4.0.tar.bz2
  xf86-video-amdgpu-1.4.0.tar.bz2.sig

New:

  xf86-video-amdgpu-18.0.0.tar.bz2
  xf86-video-amdgpu-18.0.0.tar.bz2.sig



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.RyBSsS/_old  2018-03-08 10:54:02.544804120 +0100
+++ /var/tmp/diff_new_pack.RyBSsS/_new  2018-03-08 10:54:02.548803976 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-amdgpu
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,7 +21,7 @@
 %define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids
 %endif
 Name:   xf86-video-amdgpu
-Version:1.4.0
+Version:18.0.0
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT

++ xf86-video-amdgpu-1.4.0.tar.bz2 -> xf86-video-amdgpu-18.0.0.tar.bz2 
++
 4021 lines of diff (skipped)





commit xf86-video-amdgpu for openSUSE:Factory

2017-12-15 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2017-12-15 14:03:36

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Fri Dec 15 14:03:36 2017 rev:17 rq:556529 version:1.4.0

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2017-09-11 16:18:05.112354172 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2017-12-15 14:03:38.417671005 +0100
@@ -1,0 +2,9 @@
+Tue Dec 12 13:44:43 UTC 2017 - m...@suse.com
+
+- Remove build dependency on Mesa-devel. The only part of it needed
+  is libgbm-devel and that is already BuildRequired by
+  'pkgconfig(gbm)'. Added explicit damageproto-devel dependency
+  which was before pulled in by Mesa-devel. Mesa-devel is too
+  general and is a bottleneck in distribution build. (bnc#1071297)
+
+---



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.FhWEIp/_old  2017-12-15 14:03:39.221632194 +0100
+++ /var/tmp/diff_new_pack.FhWEIp/_new  2017-12-15 14:03:39.225632001 +0100
@@ -31,9 +31,9 @@
 Source1:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2.sig
 Source2:%{name}.keyring
 Source3:amdgpu.ids
-BuildRequires:  Mesa-devel
 BuildRequires:  autoconf >= 2.6.0
 BuildRequires:  automake
+BuildRequires:  damageproto-devel
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(fontsproto)






commit xf86-video-amdgpu for openSUSE:Factory

2017-09-11 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2017-09-11 16:17:55

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Mon Sep 11 16:17:55 2017 rev:16 rq:522262 version:1.4.0

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2017-04-20 20:58:43.481998528 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2017-09-11 16:18:05.112354172 +0200
@@ -1,0 +2,19 @@
+Fri Sep  8 08:57:42 UTC 2017 - sndir...@suse.com
+
+- Update to version 1.4.0
+  * Clients can now use DRI page flipping even while TearFree is enabled
+  for any CRTC. This should improve performance of such clients
+  (including compositing managers) while TearFree is enabled, and avoid
+  other issues such as tearing on other CRTCs where TearFree isn't
+  enabled.
+  * The driver now takes measures to prevent other DRM master processes
+  (potentially from other local users) from accessing buffers created by
+  this driver while switched away to a different VT. Other DRM master
+  processes should only be able to access a single buffer anymore, which
+  contains only all-black pixels.
+  * The gamma ramp is now applied to the HW cursor as well, so the HW
+  cursor doesn't look odd when e.g. using Redshift or similar tools.
+  * Plus other improvements and fixes. Thanks to everybody who contributed
+  to this release in any way!
+
+---

Old:

  xf86-video-amdgpu-1.3.0.tar.bz2
  xf86-video-amdgpu-1.3.0.tar.bz2.sig

New:

  xf86-video-amdgpu-1.4.0.tar.bz2
  xf86-video-amdgpu-1.4.0.tar.bz2.sig



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.aUzAgc/_old  2017-09-11 16:18:06.128211510 +0200
+++ /var/tmp/diff_new_pack.aUzAgc/_new  2017-09-11 16:18:06.136210387 +0200
@@ -21,7 +21,7 @@
 %define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids
 %endif
 Name:   xf86-video-amdgpu
-Version:1.3.0
+Version:1.4.0
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT

++ xf86-video-amdgpu-1.3.0.tar.bz2 -> xf86-video-amdgpu-1.4.0.tar.bz2 ++
 24947 lines of diff (skipped)





commit xf86-video-amdgpu for openSUSE:Factory

2017-04-20 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2017-04-20 20:58:42

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Thu Apr 20 20:58:42 2017 rev:15 rq:489053 version:1.3.0

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2017-03-20 17:09:19.579873537 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2017-04-20 20:58:43.481998528 +0200
@@ -1,0 +2,13 @@
+Tue Apr 18 09:19:27 UTC 2017 - sndir...@suse.com
+
+- exclude build on s390/s390x (bsc#1034602)
+
+---
+Thu Apr 13 10:11:02 UTC 2017 - sndir...@suse.com
+
+- SLE merge (missing fate entries)
+  * fate #320388 (added driver itself)
+  * fate #315643-315645, 319159-319161, 319618 (updates driver 
+to release 1.0.0, we're on 1.3.0 meanwhile)
+
+---



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.LXLOPV/_old  2017-04-20 20:58:44.221893890 +0200
+++ /var/tmp/diff_new_pack.LXLOPV/_new  2017-04-20 20:58:44.225893325 +0200
@@ -54,6 +54,7 @@
 # This was part of the xorg-x11-driver-video package up to version 7.6
 Conflicts:  xorg-x11-driver-video <= 7.6
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+ExcludeArch:s390 s390x
 %{x11_abi_videodrv_req}
 
 %description






commit xf86-video-amdgpu for openSUSE:Factory

2017-03-20 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2017-03-20 17:09:18

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Mon Mar 20 17:09:18 2017 rev:14 rq:480104 version:1.3.0

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2017-03-02 19:28:37.281629691 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2017-03-20 17:09:19.579873537 +0100
@@ -1,0 +2,13 @@
+Thu Mar 16 11:57:28 UTC 2017 - mplus...@suse.com
+
+- Update to version 1.3.0:
+  * Allow TearFree to be toggled at runtime via an RandR output
+property "TearFree". The xorg.conf option "TearFree" now
+controls the default value of the output properties.
+  * Use libdrm_amdgpu functionality to determine the GPU marketing
+name, remove corresponding tables from this driver.
+  * Use DRM render nodes for DRI3 clients when available.
+  * Plus many other improvements and fixes.
+- Make building more verbose
+
+---

Old:

  xf86-video-amdgpu-1.2.0.tar.bz2
  xf86-video-amdgpu-1.2.0.tar.bz2.sig

New:

  xf86-video-amdgpu-1.3.0.tar.bz2
  xf86-video-amdgpu-1.3.0.tar.bz2.sig



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.51VeWI/_old  2017-03-20 17:09:20.235780923 +0100
+++ /var/tmp/diff_new_pack.51VeWI/_new  2017-03-20 17:09:20.235780923 +0100
@@ -20,9 +20,8 @@
 %if 0%{?suse_version} < 1330
 %define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids
 %endif
-
 Name:   xf86-video-amdgpu
-Version:1.2.0
+Version:1.3.0
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT
@@ -36,7 +35,7 @@
 BuildRequires:  autoconf >= 2.6.0
 BuildRequires:  automake
 BuildRequires:  libtool
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(fontsproto)
 BuildRequires:  pkgconfig(gbm)
 BuildRequires:  pkgconfig(libdrm) >= 2.4.58
@@ -66,19 +65,19 @@
 %setup -q
 
 %build
-autoreconf -fi
+autoreconf -fiv
 %configure
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 
 %install
 %make_install
 find %{buildroot} -type f -name "*.la" -delete -print
 %if 0%{?pci_ids_dir:1}
 rm -f %{buildroot}%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf
-%{__mkdir_p} %{buildroot}%{pci_ids_dir}
-cp %{S:3} %{buildroot}%{pci_ids_dir}/
+mkdir -p %{buildroot}%{pci_ids_dir}
+cp %{SOURCE3} %{buildroot}%{pci_ids_dir}/
 %else
-%{__mkdir_p} %{buildroot}%{_sysconfdir}/X11/xorg.conf.d
+mkdir -p %{buildroot}%{_sysconfdir}/X11/xorg.conf.d
 mv %{buildroot}/%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf \
%{buildroot}%{_sysconfdir}/X11/xorg.conf.d/
 %endif

++ xf86-video-amdgpu-1.2.0.tar.bz2 -> xf86-video-amdgpu-1.3.0.tar.bz2 ++
 4899 lines of diff (skipped)





commit xf86-video-amdgpu for openSUSE:Factory

2017-03-02 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2017-03-02 19:28:36

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Thu Mar  2 19:28:36 2017 rev:13 rq:459571 version:1.2.0

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2017-02-04 16:52:02.377438406 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2017-03-02 19:28:37.281629691 +0100
@@ -1,0 +2,5 @@
+Wed Feb 22 01:54:59 UTC 2017 - sndir...@suse.com
+
+- specfile: added pci_ids_dir to filelist
+
+---



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.wpINN9/_old  2017-03-02 19:28:37.965532898 +0100
+++ /var/tmp/diff_new_pack.wpINN9/_new  2017-03-02 19:28:37.965532898 +0100
@@ -90,6 +90,7 @@
 %{_libdir}/xorg/modules/drivers/amdgpu_drv.so
 %{_mandir}/man4/amdgpu.4%{?ext_man}
 %if 0%{?pci_ids_dir:1}
+%dir %{pci_ids_dir}
 %{pci_ids_dir}/amdgpu.ids
 %else
 %config %{_sysconfdir}/X11/xorg.conf.d/10-amdgpu.conf






commit xf86-video-amdgpu for openSUSE:Factory

2017-02-04 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2017-02-04 15:23:06

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2017-02-03 20:05:54.215637990 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2017-02-04 16:52:02.377438406 +0100
@@ -1,0 +2,8 @@
+Fri Feb  3 11:05:07 UTC 2017 - sndir...@suse.com
+
+- make the driver default for Tumbleweed (upcoming Leap 42.3,
+  sle13, ...), if "amdgpu" is the kernel driver of the device;
+  still use device list specified in amdgpu.ids for older
+  distributions like Leap 42.2, sle12, ...
+
+---



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.mEhZzM/_old  2017-02-04 16:52:02.689393989 +0100
+++ /var/tmp/diff_new_pack.mEhZzM/_new  2017-02-04 16:52:02.693393420 +0100
@@ -17,7 +17,7 @@
 
 
 #
-%if 0%{?suse_version} >= 1330 
+%if 0%{?suse_version} < 1330
 %define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids
 %endif
 
@@ -73,10 +73,14 @@
 %install
 %make_install
 find %{buildroot} -type f -name "*.la" -delete -print
-rm -f %{buildroot}%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf
 %if 0%{?pci_ids_dir:1}
+rm -f %{buildroot}%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf
 %{__mkdir_p} %{buildroot}%{pci_ids_dir}
 cp %{S:3} %{buildroot}%{pci_ids_dir}/
+%else
+%{__mkdir_p} %{buildroot}%{_sysconfdir}/X11/xorg.conf.d
+mv %{buildroot}/%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf \
+   %{buildroot}%{_sysconfdir}/X11/xorg.conf.d/
 %endif
 
 %files
@@ -86,7 +90,9 @@
 %{_libdir}/xorg/modules/drivers/amdgpu_drv.so
 %{_mandir}/man4/amdgpu.4%{?ext_man}
 %if 0%{?pci_ids_dir:1}
-%config %{pci_ids_dir}/amdgpu.ids
+%{pci_ids_dir}/amdgpu.ids
+%else
+%config %{_sysconfdir}/X11/xorg.conf.d/10-amdgpu.conf
 %endif
 
 %changelog






commit xf86-video-amdgpu for openSUSE:Factory

2017-02-03 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2017-01-31 12:47:30

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2017-01-17 14:37:09.778639882 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2017-02-03 20:05:54.215637990 +0100
@@ -1,0 +2,5 @@
+Mon Jan 30 11:30:56 UTC 2017 - sndir...@suse.com
+
+- amdgpu.ids: enabled 100267DF (bnc #972126, comment #11) 
+
+---



Other differences:
--
++ amdgpu.ids ++
--- /var/tmp/diff_new_pack.5M5nzM/_old  2017-02-03 20:05:54.863546793 +0100
+++ /var/tmp/diff_new_pack.5M5nzM/_new  2017-02-03 20:05:54.863546793 +0100
@@ -68,7 +68,7 @@
 #100267EB
 #100267EF
 #100267C0
-#100267DF
+100267DF
 #10026900
 #10026901
 #10026902






commit xf86-video-amdgpu for openSUSE:Factory

2017-01-17 Thread root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2017-01-17 14:37:08

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2016-11-24 21:25:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2017-01-17 14:37:09.778639882 +0100
@@ -1,0 +2,5 @@
+Mon Jan 16 13:04:21 UTC 2017 - sndir...@suse.com
+
+- introduced hardware supplements (bnc#1020075)
+
+---



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.GLoxB6/_old  2017-01-17 14:37:10.202579784 +0100
+++ /var/tmp/diff_new_pack.GLoxB6/_new  2017-01-17 14:37:10.206579217 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-amdgpu
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -51,7 +51,7 @@
 BuildRequires:  pkgconfig(xorg-macros) >= 1.8
 BuildRequires:  pkgconfig(xorg-server) >= 1.16
 BuildRequires:  pkgconfig(xproto)
-Supplements:xorg-x11-server
+Supplements:modalias(xorg-x11-server:pci:v1002d*sv*sd*bc03sc*i*)
 # This was part of the xorg-x11-driver-video package up to version 7.6
 Conflicts:  xorg-x11-driver-video <= 7.6
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build






commit xf86-video-amdgpu for openSUSE:Factory

2016-11-24 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2016-11-24 21:25:28

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2016-09-20 13:28:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2016-11-24 21:25:29.0 +0100
@@ -1,0 +2,20 @@
+Sat Nov 19 11:03:20 UTC 2016 - mimi...@gmail.com
+
+- update to 1.2.0
+* Use pAMDGPUEnt to find both screens of a GPU in amdgpu_mode_hotplug
+* Refactor amdgpu_mode_hotplug
+* Check Xorg version at runtime instead of build time in two places
+* Require xserver 1.10 or newer
+* present: Check tiling info for flips
+* Consume all available udev events at once
+* PRIME: Fix swapping of provider sink / source capabilities
+* Always call PixmapStopDirtyTracking in drmmode_set_scanout_pixmap
+* Don't rely on randr_crtc->scanout_pixmap in drmmode_set_scanout_pixmap
+* Sayōnara, AM_MAINTAINER_MODE!
+* Order unique chipsets according to first appearance in ati_pciids.csv
+* Enable HW cursor support with PRIME slave output & Xorg > 1.18.99.901
+* Rotate and reflect cursor hotspot position for drmModeSetCursor2
+* Add support for ScreenPtr::SyncSharedPixmap
+* Untangle HAS_XORG_CONF_DIR / --with-xorg-conf-dir lines in configure.ac 
+
+---

Old:

  xf86-video-amdgpu-1.1.2.tar.bz2
  xf86-video-amdgpu-1.1.2.tar.bz2.sig

New:

  xf86-video-amdgpu-1.2.0.tar.bz2
  xf86-video-amdgpu-1.2.0.tar.bz2.sig



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.rJmIEK/_old  2016-11-24 21:25:31.0 +0100
+++ /var/tmp/diff_new_pack.rJmIEK/_new  2016-11-24 21:25:31.0 +0100
@@ -22,7 +22,7 @@
 %endif
 
 Name:   xf86-video-amdgpu
-Version:1.1.2
+Version:1.2.0
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT

++ xf86-video-amdgpu-1.1.2.tar.bz2 -> xf86-video-amdgpu-1.2.0.tar.bz2 ++
 4127 lines of diff (skipped)





commit xf86-video-amdgpu for openSUSE:Factory

2016-09-20 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2016-09-20 13:28:02

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2016-04-12 19:36:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2016-09-20 13:28:04.0 +0200
@@ -1,0 +2,43 @@
+Mon Sep 19 13:56:06 UTC 2016 - tobias.johannes.klausm...@mni.thm.de
+
+- Update to version 1.1.2:
+  The only change in this release is a fix for issues with the configure option
+  --with-xorg-conf-dir which slipped into the 1.1.1 release.
+- Packaging changes:
+  + Check the signature for the driver release, as other drivers already do.
+
+---
+Thu Sep 15 21:46:51 UTC 2016 - malcolmle...@opensuse.org
+
+- Update to version 1.1.1:
+  + Use --with-xorg-conf-dir=$prefix/share/X11/xorg.conf.d by
+default.
+  + Fix cursor size for SI.
+  + Add SI PCI IDs.
+  + Add missing Kaveri PCI ID (1318).
+  + Add Mullins PCI IDs (fdo#97472).
+  + DRI2: Fix amdgpu_dri2_exchange_buffers width/height
+copy'n'paste error.
+  + DRI2: Add interpolated_vblanks in amdgpu_dri2_get_crtc_msc.
+  + Only use RandR APIs if RandR is enabled (deb#827984).
+  + Destroy all dedicated scanout buffers during CloseScreen.
+  + glamor: Reallocate linear pixmap BO if necessary for DRI2
+PRIME.
+  + Move DRI2's local fixup_glamor helper to
+amdgpu_glamor_set_pixmap_bo v2 so it can be used outside of the
+DRI2 code.
+  + Consolidate get_drawable_pixmap helper.
+  + Add amdgpu_pixmap_get_tiling_info.
+  + Remove amdgpu_share_pixmap_backing.
+  + glamor: Fix amdgpu_glamor_share_pixmap_backing for priv->bo ==
+NULL.
+  + Add missing Bonaire PCI ID.
+  + Add more Polaris 10 and 11 PCI IDs.
+  + Fix amdgpu_mode_hotplug crash on multi GPU platform.
+  + Handle Zaphod mode correctly in amdgpu_mode_hotplug
+(fdo#93415).
+  + Add Strato PCI ID.
+  + Remove RR_Capability_SinkOutput for GPU without CRTC.
+- Set amdgpu.ids as a config file to fix rpmlint warning.
+
+---

Old:

  xf86-video-amdgpu-1.1.0.tar.bz2

New:

  xf86-video-amdgpu-1.1.2.tar.bz2
  xf86-video-amdgpu-1.1.2.tar.bz2.sig
  xf86-video-amdgpu.keyring



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.2AoORP/_old  2016-09-20 13:28:05.0 +0200
+++ /var/tmp/diff_new_pack.2AoORP/_new  2016-09-20 13:28:05.0 +0200
@@ -22,14 +22,16 @@
 %endif
 
 Name:   xf86-video-amdgpu
-Version:1.1.0
+Version:1.1.2
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT
 Group:  System/X11/Servers/XF86_4
 Url:http://xorg.freedesktop.org/
-Source: 
ftp://ftp.freedesktop.org/pub/xorg/individual/driver/%{name}-%{version}.tar.bz2
-Source1:amdgpu.ids
+Source: 
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
+Source1:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2.sig
+Source2:%{name}.keyring
+Source3:amdgpu.ids
 BuildRequires:  Mesa-devel
 BuildRequires:  autoconf >= 2.6.0
 BuildRequires:  automake
@@ -74,7 +76,7 @@
 rm -f %{buildroot}%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf
 %if 0%{?pci_ids_dir:1}
 %{__mkdir_p} %{buildroot}%{pci_ids_dir}
-cp %{S:1} %{buildroot}%{pci_ids_dir}/
+cp %{S:3} %{buildroot}%{pci_ids_dir}/
 %endif
 
 %files
@@ -84,7 +86,7 @@
 %{_libdir}/xorg/modules/drivers/amdgpu_drv.so
 %{_mandir}/man4/amdgpu.4%{?ext_man}
 %if 0%{?pci_ids_dir:1}
-%{pci_ids_dir}/amdgpu.ids
+%config %{pci_ids_dir}/amdgpu.ids
 %endif
 
 %changelog

++ amdgpu.ids ++
--- /var/tmp/diff_new_pack.2AoORP/_old  2016-09-20 13:28:05.0 +0200
+++ /var/tmp/diff_new_pack.2AoORP/_new  2016-09-20 13:28:05.0 +0200
@@ -83,6 +83,7 @@
 #10026930
 #10026938
 10026939
+#10029851
 #10029870  
 #10029874  
 #10029875  

++ xf86-video-amdgpu-1.1.0.tar.bz2 -> xf86-video-amdgpu-1.1.2.tar.bz2 ++
 1966 lines of diff (skipped)




commit xf86-video-amdgpu for openSUSE:Factory

2016-04-12 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2016-04-12 19:36:14

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2016-03-29 14:50:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2016-04-12 19:36:15.0 +0200
@@ -1,0 +2,25 @@
+Fri Apr  8 13:12:22 UTC 2016 - sndir...@suse.com
+
+- amdgpu.ids: added new PCI IDs supported by driver release 1.1.0
+
+---
+Thu Apr  7 19:07:08 UTC 2016 - mimi...@gmail.com
+
+- update to 1.1.0
+* Support for the upcoming Polaris family of GPUs.
+* Option "TearFree" can now prevent tearing with rotation/reflection as
+  well (with Xorg >= 1.16).
+* RandR CRTC transforms now work correctly (but for now still exhibit
+  tearing even with TearFree).
+* The RandR 1.4 provider name is now no longer hardcoded to "amdgpu"
+  but constructed from the GPU chipset name and bus ID, allowing
+  several GPUs supported by this driver to be distinguished by name.
+* The RandR primary output is now always explicitly marked as such.
+* The driver can prevent clients trying to use the DRI3 extension over a
+  display connection forwarded via SSH from hanging.
+* VDPAU/OpenGL interoperation can now work with DRI3 enabled.
+* Many more fixes for issues using the DRI3/Present extensions.
+* Plus many other small improvements and fixes. Thanks to everybody who
+   contributed to this release in any way!* 
+
+---

Old:

  xf86-video-amdgpu-1.0.1.tar.bz2

New:

  xf86-video-amdgpu-1.1.0.tar.bz2



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.vtJ1Ga/_old  2016-04-12 19:36:16.0 +0200
+++ /var/tmp/diff_new_pack.vtJ1Ga/_new  2016-04-12 19:36:16.0 +0200
@@ -22,13 +22,13 @@
 %endif
 
 Name:   xf86-video-amdgpu
-Version:1.0.1
+Version:1.1.0
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT
 Group:  System/X11/Servers/XF86_4
 Url:http://xorg.freedesktop.org/
-Source0:%{name}-%{version}.tar.bz2
+Source: 
ftp://ftp.freedesktop.org/pub/xorg/individual/driver/%{name}-%{version}.tar.bz2
 Source1:amdgpu.ids
 BuildRequires:  Mesa-devel
 BuildRequires:  autoconf >= 2.6.0
@@ -37,7 +37,7 @@
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
 BuildRequires:  pkgconfig(gbm)
-BuildRequires:  pkgconfig(libdrm) >= 2.4.46
+BuildRequires:  pkgconfig(libdrm) >= 2.4.58
 BuildRequires:  pkgconfig(libdrm_amdgpu)
 BuildRequires:  pkgconfig(libudev)
 BuildRequires:  pkgconfig(pciaccess) >= 0.8.0

++ amdgpu.ids ++
--- /var/tmp/diff_new_pack.vtJ1Ga/_old  2016-04-12 19:36:16.0 +0200
+++ /var/tmp/diff_new_pack.vtJ1Ga/_new  2016-04-12 19:36:16.0 +0200
@@ -61,6 +61,14 @@
 #100267B9   
 #100267BA   
 #100267BE   
+#100267E0
+#100267E1
+#100267E9
+#100267E9
+#100267EB
+#100267EF
+#100267C0
+#100267DF
 #10026900
 #10026901
 #10026902
@@ -81,4 +89,4 @@
 #10029876  
 #10029877  
 #10027300 
-#100298E4   
\ No newline at end of file
+#100298E4   

++ xf86-video-amdgpu-1.0.1.tar.bz2 -> xf86-video-amdgpu-1.1.0.tar.bz2 ++
 3723 lines of diff (skipped)




commit xf86-video-amdgpu for openSUSE:Factory

2016-03-29 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2016-03-29 14:50:33

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2016-02-24 18:43:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2016-03-29 14:50:34.0 +0200
@@ -1,0 +2,6 @@
+Tue Mar 22 12:48:37 UTC 2016 - e...@suse.com
+
+- Add amdgpu.ids which lists all supported PCI Id for server
+  (boo#972126).
+
+---

New:

  amdgpu.ids



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.duP8Yt/_old  2016-03-29 14:50:35.0 +0200
+++ /var/tmp/diff_new_pack.duP8Yt/_new  2016-03-29 14:50:35.0 +0200
@@ -16,6 +16,11 @@
 #
 
 
+#
+%if 0%{?suse_version} >= 1330 
+%define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids
+%endif
+
 Name:   xf86-video-amdgpu
 Version:1.0.1
 Release:0
@@ -24,6 +29,7 @@
 Group:  System/X11/Servers/XF86_4
 Url:http://xorg.freedesktop.org/
 Source0:%{name}-%{version}.tar.bz2
+Source1:amdgpu.ids
 BuildRequires:  Mesa-devel
 BuildRequires:  autoconf >= 2.6.0
 BuildRequires:  automake
@@ -66,6 +72,10 @@
 %make_install
 find %{buildroot} -type f -name "*.la" -delete -print
 rm -f %{buildroot}%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf
+%if 0%{?pci_ids_dir:1}
+%{__mkdir_p} %{buildroot}%{pci_ids_dir}
+cp %{S:1} %{buildroot}%{pci_ids_dir}/
+%endif
 
 %files
 %defattr(-,root,root)
@@ -73,5 +83,8 @@
 %dir %{_libdir}/xorg/modules/drivers
 %{_libdir}/xorg/modules/drivers/amdgpu_drv.so
 %{_mandir}/man4/amdgpu.4%{?ext_man}
+%if 0%{?pci_ids_dir:1}
+%{pci_ids_dir}/amdgpu.ids
+%endif
 
 %changelog

++ amdgpu.ids ++
# AMDGPU PCI Ids. To enable the amdgpu driver for your device
# find the PCI ID in the list and uncomment the entry (remove the '#').
# If your device is not enabled on the list and you find it to be working, 
# please let us know in:
# http://bugzilla.opensuse.org/show_bug.cgi?id=972126
#10026640  
#10026641  
#10026649  
#10026650  
#10026651  
#10026658  
#1002665C  
#1002665D  
#1002665F  
#10029830   
#10029831   
#10029832   
#10029833   
#10029834   
#10029835   
#10029836   
#10029837   
#10029838   
#10029839   
#1002983A   
#1002983B   
#1002983C   
#1002983D   
#1002983E   
#1002983F   
#10021304   
#10021305   
#10021306   
#10021307   
#10021309   
#1002130A   
#1002130B   
#1002130C   
#1002130D   
#1002130E   
#1002130F   
#10021310   
#10021311   
#10021312   
#10021313   
#10021315   
#10021316   
#10021317   
#1002131B   
#1002131C   
#1002131D   
#100267A0   
#100267A1   
#100267A2   
#100267A8   
#100267A9   
#100267AA   
#100267B0   
#100267B1   
#100267B8   
#100267B9   
#100267BA   
#100267BE   
#10026900
#10026901
#10026902
#10026903
#10026907
#10026920
#10026921
#10026928
#10026929
#1002692B
#1002692F
#10026930
#10026938
10026939
#10029870  
#10029874  
#10029875  
#10029876  
#10029877  
#10027300 
#100298E4   


commit xf86-video-amdgpu for openSUSE:Factory

2016-02-24 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2016-02-24 18:42:59

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2015-11-24 22:33:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2016-02-24 18:43:00.0 +0100
@@ -1,0 +2,11 @@
+Tue Feb 23 18:19:10 UTC 2016 - mimi...@gmail.com
+
+- update to 1.0.1
+* sync: Check if miSyncShmScreenInit symbol is resolved at runtime
+* Only map front buffer if glamor acceleration is disabled (v2)
+* Don't advertise any PRIME offloading capabilities without acceleration
+* Load fb module before glamoregl/shadow modules
+* HAS_DIRTYTRACKING_ROTATION also supports multiple CRTCs
+* Check for NULL koutput in drmmode_output_dpms
+
+---

Old:

  xf86-video-amdgpu-1.0.0.tar.bz2

New:

  xf86-video-amdgpu-1.0.1.tar.bz2



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.KvI0wv/_old  2016-02-24 18:43:01.0 +0100
+++ /var/tmp/diff_new_pack.KvI0wv/_new  2016-02-24 18:43:01.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-amdgpu
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   xf86-video-amdgpu
-Version:1.0.0
+Version:1.0.1
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT

++ xf86-video-amdgpu-1.0.0.tar.bz2 -> xf86-video-amdgpu-1.0.1.tar.bz2 ++
 20457 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xf86-video-amdgpu-1.0.0/ChangeLog new/xf86-video-amdgpu-1.0.1/ChangeLog
--- old/xf86-video-amdgpu-1.0.0/ChangeLog   2015-11-19 09:32:40.0 
+0100
+++ new/xf86-video-amdgpu-1.0.1/ChangeLog   2016-02-19 09:35:58.0 
+0100
@@ -1,3 +1,100 @@
+commit d68b3073a9627a81b047e9bdd4b5569359df898d
+Author: Michel Dänzer 
+Date:   Fri Feb 19 11:53:02 2016 +0900
+
+Bump version for 1.0.1 release
+
+commit c25a48b68695af71dddbdb6d239b2d0ec386db9c
+Author: Michel Dänzer 
+Date:   Mon Feb 15 18:41:51 2016 +0900
+
+HAS_DIRTYTRACKING_ROTATION also supports multiple CRTCs
+
+(ported from radeon commit ff9a6b6f079a8419f4e6fadfee778060618bf735)
+
+Reviewed-by: Alex Deucher 
+(cherry picked from commit a36bbfd98b96426bbe0be3923c64da7ec0e565d0)
+
+commit a05ea868f940b9649ead2333108d69619b9003bf
+Author: Michel Dänzer 
+Date:   Mon Feb 15 18:35:54 2016 +0900
+
+Load fb module before glamoregl/shadow modules
+
+Fixes unresolved symbols on some systems.
+
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93105
+(ported from radeon commit 78fbca095ae9887a2d3de48bb07975e2d1126e68)
+
+Reviewed-by: Alex Deucher 
+(cherry picked from commit a37746ffceaed83e48e48fb05439be7e020dd2ea)
+
+commit 7729b29b0a76c3e2eacfcb02abcbe115948b2937
+Author: Michel Dänzer 
+Date:   Mon Feb 15 18:28:13 2016 +0900
+
+Don't advertise any PRIME offloading capabilities without acceleration
+
+Acceleration is required even for display offloading. Trying to enable
+display offloading without acceleration resulted in a crash.
+
+(ported from radeon commit b19417e2fddf4df725951aea5ad5e9558338f59e)
+Reviewed-by: Alex Deucher 
+
+(cherry picked from commit 59c0a6807110eca829c6708e16585a38f39a5c17)
+
+commit 65ee496c0567ea6aaf947a6098fbf925d2f6b14b
+Author: Michel Dänzer 
+Date:   Tue Jan 26 16:12:28 2016 +0900
+
+Only map front buffer if glamor acceleration is disabled (v2)
+
+Otherwise the front buffer may not be accessible by the CPU, because Mesa
+sets the AMDGPU_GEM_CREATE_NO_CPU_ACCESS flag for tiled buffers, because
+accessing tiled buffers with the CPU 

commit xf86-video-amdgpu for openSUSE:Factory

2015-11-24 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2015-11-24 22:33:43

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2015-11-15 12:47:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2015-11-24 22:33:57.0 +0100
@@ -1,0 +2,16 @@
+Fri Nov 20 09:02:22 UTC 2015 - sndir...@suse.com
+
+- update to release 1.0.0
+  This is the initial release of the xf86-video-amdgpu driver.
+  It was forked from the xf86-video-ati radeon driver and modified to
+  support the amdgpu kernel driver via libdrm_amdgpu, and by extension
+  the latest AMD GPU families Tonga, Carrizo, Iceland, Fiji and Stoney.
+  Some functionality was removed because it's not relevant for the GPUs
+  supported by the amdgpu kernel driver, but other than that the two
+  drivers are more or less on par with respect to functionality and bug
+  fixes.
+  Thanks to everybody who contributed to this release!
+- get rid of _service file (no longer needed with official release
+  now being available)
+
+---

Old:

  _service
  xf86-video-amdgpu-0.0.01~git.20151104.92e7c93.tar.bz2

New:

  xf86-video-amdgpu-1.0.0.tar.bz2



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.G0Axe6/_old  2015-11-24 22:33:58.0 +0100
+++ /var/tmp/diff_new_pack.G0Axe6/_new  2015-11-24 22:33:58.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   xf86-video-amdgpu
-Version:0.0.01~git.20151104.92e7c93
+Version:1.0.0
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT

++ xf86-video-amdgpu-0.0.01~git.20151104.92e7c93.tar.bz2 -> 
xf86-video-amdgpu-1.0.0.tar.bz2 ++
 53758 lines of diff (skipped)




commit xf86-video-amdgpu for openSUSE:Factory

2015-11-15 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2015-11-15 12:46:40

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2015-11-11 10:36:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2015-11-15 12:47:57.0 +0100
@@ -1,0 +2,5 @@
+Fri Nov 13 13:39:24 UTC 2015 - o...@aepfle.de
+
+- Use human readable timestamp %cd instead of %ct in _service file
+
+---

Old:

  xf86-video-amdgpu-0.0.01~git.1446607417.92e7c93.tar.bz2

New:

  xf86-video-amdgpu-0.0.01~git.20151104.92e7c93.tar.bz2



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.mWKD47/_old  2015-11-15 12:47:57.0 +0100
+++ /var/tmp/diff_new_pack.mWKD47/_new  2015-11-15 12:47:57.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   xf86-video-amdgpu
-Version:0.0.01~git.1446607417.92e7c93
+Version:0.0.01~git.20151104.92e7c93
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT

++ _service ++
--- /var/tmp/diff_new_pack.mWKD47/_old  2015-11-15 12:47:57.0 +0100
+++ /var/tmp/diff_new_pack.mWKD47/_new  2015-11-15 12:47:57.0 +0100
@@ -6,7 +6,7 @@
 .git
 xf86-video-amdgpu
 master
-0.0.01~git.%ct.%h
+0.0.01~git.%cd.%h
 
 
 *.tar

++ xf86-video-amdgpu-0.0.01~git.1446607417.92e7c93.tar.bz2 -> 
xf86-video-amdgpu-0.0.01~git.20151104.92e7c93.tar.bz2 ++




commit xf86-video-amdgpu for openSUSE:Factory

2015-11-11 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-amdgpu for 
openSUSE:Factory checked in at 2015-11-11 10:32:03

Comparing /work/SRC/openSUSE:Factory/xf86-video-amdgpu (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new (New)


Package is "xf86-video-amdgpu"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-amdgpu/xf86-video-amdgpu.changes  
2015-11-10 10:02:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-amdgpu.new/xf86-video-amdgpu.changes 
2015-11-11 10:36:24.0 +0100
@@ -1,0 +2,7 @@
+Tue Nov 10 10:14:04 UTC 2015 - mimi...@gmail.com
+
+- update to 0.0.01~git.1446607417.92e7c93 
+* last upstream version - 
+http://cgit.freedesktop.org/xorg/driver/xf86-video-amdgpu/log/
+
+---

Old:

  xf86-video-amdgpu-0.0.01~git.1445612699.3b0a3c8.tar.bz2

New:

  xf86-video-amdgpu-0.0.01~git.1446607417.92e7c93.tar.bz2



Other differences:
--
++ xf86-video-amdgpu.spec ++
--- /var/tmp/diff_new_pack.v6wzY0/_old  2015-11-11 10:36:25.0 +0100
+++ /var/tmp/diff_new_pack.v6wzY0/_new  2015-11-11 10:36:25.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   xf86-video-amdgpu
-Version:0.0.01~git.1445612699.3b0a3c8
+Version:0.0.01~git.1446607417.92e7c93
 Release:0
 Summary:AMDGPU video driver for the Xorg X server
 License:MIT

++ xf86-video-amdgpu-0.0.01~git.1445612699.3b0a3c8.tar.bz2 -> 
xf86-video-amdgpu-0.0.01~git.1446607417.92e7c93.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xf86-video-amdgpu-0.0.01~git.1445612699.3b0a3c8/src/amdgpu_bo_helper.c 
new/xf86-video-amdgpu-0.0.01~git.1446607417.92e7c93/src/amdgpu_bo_helper.c
--- old/xf86-video-amdgpu-0.0.01~git.1445612699.3b0a3c8/src/amdgpu_bo_helper.c  
2015-10-24 20:17:38.0 +0200
+++ new/xf86-video-amdgpu-0.0.01~git.1446607417.92e7c93/src/amdgpu_bo_helper.c  
2015-11-10 11:13:16.0 +0100
@@ -133,19 +133,18 @@
 
 int amdgpu_bo_map(ScrnInfoPtr pScrn, struct amdgpu_buffer *bo)
 {
-   AMDGPUInfoPtr info = AMDGPUPTR(pScrn);
int ret = 0;
 
if (bo->flags & AMDGPU_BO_FLAGS_GBM) {
+   AMDGPUEntPtr pAMDGPUEnt = AMDGPUEntPriv(pScrn);
uint32_t handle, stride, height;
union drm_amdgpu_gem_mmap args;
-   int fd;
+   int fd = pAMDGPUEnt->fd;
void *ptr;
 
handle = gbm_bo_get_handle(bo->bo.gbm).u32;
stride = gbm_bo_get_stride(bo->bo.gbm);
height = gbm_bo_get_height(bo->bo.gbm);
-   fd = info->dri2.drm_fd;
 
memset(, 0, sizeof(union drm_amdgpu_gem_mmap));
args.in.handle = handle;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xf86-video-amdgpu-0.0.01~git.1445612699.3b0a3c8/src/amdgpu_dri2.c 
new/xf86-video-amdgpu-0.0.01~git.1446607417.92e7c93/src/amdgpu_dri2.c
--- old/xf86-video-amdgpu-0.0.01~git.1445612699.3b0a3c8/src/amdgpu_dri2.c   
2015-10-24 20:17:38.0 +0200
+++ new/xf86-video-amdgpu-0.0.01~git.1446607417.92e7c93/src/amdgpu_dri2.c   
2015-11-10 11:13:16.0 +0100
@@ -224,9 +224,11 @@
}
 
if (bo->flags & AMDGPU_BO_FLAGS_GBM) {
+   AMDGPUEntPtr pAMDGPUEnt = AMDGPUEntPriv(pScrn);
+
bo_handle = gbm_bo_get_handle(bo->bo.gbm);
flink.handle = bo_handle.u32;
-   if (ioctl(info->dri2.drm_fd, DRM_IOCTL_GEM_FLINK, 
) < 0)
+   if (ioctl(pAMDGPUEnt->fd, DRM_IOCTL_GEM_FLINK, ) 
< 0)
goto error;
buffers->name = flink.name;
} else {
@@ -458,13 +460,13 @@
/* CRTC is not running, extrapolate MSC and timestamp */
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
ScrnInfoPtr scrn = crtc->scrn;
-   AMDGPUInfoPtr info = AMDGPUPTR(scrn);
+   AMDGPUEntPtr pAMDGPUEnt = AMDGPUEntPriv(scrn);
CARD64 now, delta_t, delta_seq;
 
if (!drmmode_crtc->dpms_last_ust)
return FALSE;
 
-   if (drmmode_get_current_ust(info->dri2.drm_fd, ) != 0) {
+   if (drmmode_get_current_ust(pAMDGPUEnt->fd, ) != 0) {
xf86DrvMsg(scrn->scrnIndex, X_ERROR,
   "%s cannot get current time\n", __func__);
return FALSE;
@@ -625,7 +627,7 @@
 {
ScreenPtr screen = draw->pScreen;
ScrnInfoPtr scrn =