Commit Graph

541 Commits

Author SHA1 Message Date
Dor Askayo
69365526d0 glamor: Set AMDGPU_CREATE_PIXMAP_SCANOUT on DRI2 and shared pixmaps
The scanout usage flag wasn't applied for DRI2 and shared pixmaps
in 0732f81a2c, resulting in GPU artifacts in some scenarios.

Fixes: 0732f81a2c ("glamor: Make pixmap scanout compatible if its
                      dimensions are")
Closes: https://gitlab.freedesktop.org/xorg/driver/xf86-video-amdgpu/-/issues/41
Signed-off-by: Dor Askayo <dor.askayo@gmail.com>
Signed-off-by: Michel Dänzer <mdaenzer@redhat.com>
Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
2021-08-27 14:36:03 +03:00
Alex Deucher
0d68a91dce Bump version for the 21.0.0 release
Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
xf86-video-amdgpu-21.0.0
2021-07-30 09:02:46 -04:00
Michel Dänzer
aedbf47ffc Include xf86drm.h instead of sarea.h
Fixes build against current xorg-x11-server-devel from Fedora
34/35/rawhide.

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
2021-04-27 11:06:19 +02:00
Michel Dänzer
6ed4863444 Drop dri.h includes
Not needed anymore.

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
2021-02-02 12:45:54 +01:00
Likun Gao
6234a1b265 Fix drmmode_crtc_scanout_create logic
If crtc scanout create successfully, the function of
drmmode_crtc_scanout_create should return TURE.
This will fix the regression caused by commit: "Make
drmmode_crtc_scanout_create/destroy static" (442efe73), as it will
result to some function (such as drmmode_set_scanout_pixmap) go to wrong
code path and result to NULL pointer.
Fixes: 442efe73 ("Make drmmode_crtc_scanout_create/destroy static")

Signed-off-by: Likun Gao <Likun.Gao@amd.com>
Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
2020-12-14 11:06:07 +08:00
Michel Dänzer
6bd3dc6bd8 Check for AMDGPU_CREATE_PIXMAP_SCANOUT in amdgpu_glamor_create_pixmap
We must not call glamor_create_pixmap or fbCreatePixmap when it's set.

Closes: https://gitlab.freedesktop.org/xorg/driver/xf86-video-amdgpu/-/issues/21
2020-08-28 10:50:50 +02:00
Michel Dänzer
2202cdfb0a Replace a few more instances of "master"
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
2020-07-17 12:46:42 +02:00
Michel Dänzer
0d1d479ecc Fix build against ABI_VIDEODRV_VERSION 25.2
Use primary/secondary instead of master/slave where applicable.

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
2020-07-10 11:13:21 +02:00
Michel Dänzer
442efe73dd Make drmmode_crtc_scanout_create/destroy static
And the latter inline.
2020-05-27 15:41:22 +00:00
Michel Dänzer
99f3c82e94 Drop struct drmmode_scanout altogether in favour of PixmapPtrs 2020-05-27 15:41:22 +00:00
Michel Dänzer
cfce4b3e6b Drop bo/width/height members from struct drmmode_scanout
The pixmap is all we really need.
2020-05-27 15:41:22 +00:00
Niclas Zeising
680b9a2976 Fix return value check of drmIoctl()
When the drmModeSetCursor2() call was replaced with bare drmIoctl() call in
b344e155, a bug was introduced.  With the use of drmModeSetCursor2(),
the return value from drmIoctl() (which calls ioctl()) were mangled, if
they were negative, they were replaced by -errno by a wrapper function
in xf86drMode.c in libdrm.  After replacing drmModeSetCursor2() with the
call to drmIoctl(), this mangling no longer happens, and we need to
explicitly check if the call to drmIoctl() fails, which is indicated by
returning -1, and then why it failed, by checking errno.
If the error indicated by errno is EINVAL, then we can't use the
DRM_IOCTL_MODE_CURSOR2 ioctl(), and need to fall back to the
DRM_IOCTL_MODE_CURSOR ioctl().

This bug can manifest itself by an invisible hw cursor on systems where the
DRM_IOCTL_MODE_CURSOR2 is not implemented by the graphics driver.

Signed-off-by: Niclas Zeising <zeising@daemonic.se>
2020-05-27 15:36:44 +00:00
Peter Hutterer
e923642bae gitlab CI: update to use the latest CI templates
Repository was moved there from wayland/ci-templates, and let's update to the
most recent version..

No real functional changes, we're just making use of the various CI template
bits and bobs now, specifically the FDO_* variables and the
.fdo.container-build and .fdo.distribution-image templates.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2020-05-27 14:31:57 +10:00
Michel Dänzer
0732f81a2c glamor: Make pixmap scanout compatible if its dimensions are
Namely, if its dimensions match those of the screen pixmap (enough that
it could stand in for it). When that's the case, the pixmap may end up
being scanned out directly due to page flipping via the Present
extension, e.g. with xfwm4 --vblank=xpresent .

v2:
* Use AMDGPU_CREATE_PIXMAP_SCANOUT instead of second-guessing in
  amdgpu_alloc_pixmap_bo, fixes corruption when resizing from smaller
  to larger virtual size via RandR.

Closes: https://gitlab.freedesktop.org/xorg/driver/xf86-video-amdgpu/-/issues/10
2020-04-21 10:54:47 +02:00
Michel Dänzer
cb27a5b112 Handle NULL fb_ptr in pixmap_get_fb
This can happen when HW acceleration is disabled.

Fixes https://gitlab.freedesktop.org/xorg/driver/xf86-video-ati/issues/188
(ported from radeon commit 4d84cf438e7f1bebf0053035ef0292e9fed257d1)
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
2020-03-18 17:47:15 +01:00
Michel Dänzer
e2cd67abb4 Bail from amdgpu_pixmap_get_handle with ShadowFB
There's no pixmap private in that case. The callers handle this
gracefully.

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
2020-03-16 17:44:36 +01:00
Emil Velikov
42a3148ae1 Factor out common code to amdgpu_probe()
Keep the distinct pci/platform screen management in the separate probe
entry point and fold the rest into a single function.

v2: Rebase

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
2020-03-16 14:25:40 +00:00
Emil Velikov
eeaaf37085 Introduce amdgpu_device_setup helper
It folds the device specifics (open fd, device init) into a single
place.

v2:
 - Rebase
 - Pass pAMDGPUEnt to amdgpu_device_setup (Michel)

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
2020-03-16 14:25:37 +00:00
Emil Velikov
1c9742e304 Kill off drmOpen/Close/drmSetInterfaceVersion in favour of drmDevices
The former has very subtle semantics (see the implementation in libdrm
for details) which were required in the UMS days.

With drmDevices around, we have enough information to build our
heuristics and avoid drmOpen all together.

In the odd case drmGetDevices2() can take a few extra cycles, so use a
reasonably sized local array.

v2:
 - Rebase
 - Rework now that amdgpu_kernel_mode_enabled() is staying
 - Keep amdgpu_bus_id()
 - Use local drmDevice array.

v3:
 - Correct error handling (Michel)
 - Preserve the "am I master" check (Michel)
 - Always initialise the fd variable

v4:
 - Don't print "-1" on drmGetDevices2 failure (Michel)
 - Use uppercase DRM (Michel)

v5:
 - Rebase on top of amdgpu_bus_id() rework
 - Pass both pci and platform dev to amdgpu_kernel_open_fd() (Michel)
 - Indent local_drmIsMaster() with tabs (Michel)

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
2020-03-16 14:25:26 +00:00
Emil Velikov
2dd730784e Use the device_id straight from gpu_info
This way we can remove the PciInfo and Chipset from the AMDGPUInfoRec.

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
2020-03-16 14:25:23 +00:00
Emil Velikov
655b3c55b9 Reuse the existing busid string
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
2020-03-16 14:25:19 +00:00
Emil Velikov
b357a84740 Store the busid string in AMDGPUEnt
This way we can reuse it, instead of redoing it later on.

v2: Pass the AMDGPUEnt as argument.
v3: free() the string at AMDGPUFreeRec (Michel)
v4: Inline amdgpu_bus_id, move at top of mdgpu_kernel_open_fd (Michel)

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com> (v3)
Acked-by: Alex Deucher <alexander.deucher@amd.com>
2020-03-16 14:25:16 +00:00
Emil Velikov
2c0c154a83 Remove NULL check after a "cannot fail" function
XNFasprintf cannot fail - aka busid cannot be NULL.

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
2020-03-16 14:25:13 +00:00
Emil Velikov
16ae0d06c6 Fixup the amdgpu_bus_id() string format
The func is a u, instead of a signed int.

v2: Drop the precision - s/1u/u/ (Michel)

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
2020-03-16 14:25:10 +00:00
Emil Velikov
abbe23fae7 Remove drmCheckModesettingSupported and kernel module loading, on Linux
The former of these is a UMS artefact which gives incorrect and
misleading promise whether KMS is supported. Not to mention that
AMDGPU is a only KMS driver.

In a similar fashion xf86LoadKernelModule() is a relic of the times,
where platforms had no scheme of detecting and loading the appropriate
kernel module.

Notes:
 - Since there is no reply from Robert the code is still around, behind
a FreeBSD guard.
 - If FreeBSD still needs this they should look and fix it ASAP, as:
   - wayland itself or compositors do _not_ load kernel modules
   - the kernel module should be loaded early to control the clocks/fan,
hence temperature of the card

v2: Keep the code as FreeBSD only, add 'Notes' in the commit message.

Cc: Robert Millan <rmh@freebsd.org>
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
2020-03-16 14:25:06 +00:00
Emil Velikov
0b3bc7addf Use ODEV_ATTRIB_PATH where possible for the device node.
Use the device node path, if the server knows it.

Note:
ODEV_ATTRIB_PATH was introduced with xserver 1.13 - the minimum version
required to build amdgpu. Yet it's defined in xf86platformBus.h. With
the header included only when XSERVER_PLATFORM_BUS is set.

Keep things obvious and use a ODEV_ATTRIB_PATH guard.

v2: Rebase, add commit message

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
2020-03-16 14:24:50 +00:00
Adam Jackson
edcbe5f52d Fix link failure with gcc 10
Without the 'extern' this looks like a definition not just a
declaration, in every file that includes the header. gcc 10 is stricter
about this kind of multiple definition.
2020-02-05 11:08:33 -05:00
Adam Jackson
fd66f5c0be kms: Handle changes to SourceValidate call chain in xserver 19
xserver 19 expects the SourceValidate hook to always be filled in with
something valid. For earlier servers it's harmless to simply fill this
in with a do-nothing function instead of NULL.

Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
2019-11-22 17:29:37 +01:00
Michel Dänzer
b467d2569a Bump version for the 19.1.0 release xf86-video-amdgpu-19.1.0 2019-10-11 17:10:10 +02:00
Michel Dänzer
a1b7263277 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: c16ff42f92 ("Make all active CRTCs scan out an all-black
                      framebuffer in LeaveVT")
(Ported from radeon commit 2faaecc69b127248718e759c6c98c84d56dd1b6b)
2019-09-26 15:56:59 +02:00
Michel Dänzer
5b8bc9fc50 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 <alexander.deucher@amd.com>
2019-09-18 12:55:45 +02:00
Michel Dänzer
e6fce59a07 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 <nicholas.kazlauskas@amd.com>
2019-08-07 18:11:54 +02:00
Michel Dänzer
5bb2580b26 present: Don't check pixmap pitch in check_flip with current DC
Current DC handles flipping between different pitches correctly.

Reviewed-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
2019-08-07 18:11:20 +02:00
Michel Dänzer
ac66086613 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 <nicholas.kazlauskas@amd.com>
2019-08-07 18:04:52 +02:00
Michel Dänzer
98f172eb2d 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.
2019-07-30 09:43:31 +02:00
Michel Dänzer
87f41ace49 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.
2019-07-05 12:43:53 +02:00
Michel Dänzer
7d3fef72e0 present: Check that we can get a KMS FB for flipping
This can legitimately fail if the pixmap's storage is shared from
another device, e.g. when using PRIME render offloading.
2019-06-25 15:28:36 +00:00
Michel Dänzer
ea19a52070 Remove dri2_drawable_crtc parameter consider_disabled
All callers were passing TRUE.

Reviewed-and-tested-by: Flora Cui <flora.cui@amd.com>
2019-06-14 11:09:19 +02:00
Michel Dänzer
3109f088fd dri2: Re-use previous CRTC when possible if pick_best_crtc returns NULL
This way, the MSC will continue ticking at the rate of (the last mode
which was enabled for) that CRTC, instead of the client running
unthrottled.

Reviewed-and-tested-by: Flora Cui <flora.cui@amd.com>
2019-06-14 11:07:32 +02:00
Flora Cui
fb06fb8147 dri2: reply to client for WaitMSC request in any case
otherwise client would wait for reply forever and desktop appears hang.

Signed-off-by: Flora Cui <flora.cui@amd.com>
Acked-by: Feifei Xu <Feifei.Xu@amd.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
2019-06-10 09:45:03 +08:00
Michel Dänzer
4b17533fcb dri3: Always flush glamor before sharing pixmap storage with clients
Even if glamor_gbm_bo_from_pixmap / glamor_fd_from_pixmap themselves
don't trigger any drawing, there could already be unflushed drawing to
the pixmap whose storage we share with a client.
2019-04-30 17:50:15 +02:00
Michel Dänzer
bf61e6d7ac Retry get_fb_ptr in get_fb
If get_fb_ptr returns NULL, try again after pixmap_get_handle, it should
work then.

Fixes spurious Present page flipping failures using "normal" pixmaps
which aren't shared with direct rendering clients, e.g. with a
compositor using the RENDER extension.

Bugzilla: https://bugs.freedesktop.org/110417
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
2019-04-18 19:21:40 +02:00
Michel Dänzer
bd4ffd4ebb Bump version for the 19.0.1 release xf86-video-amdgpu-19.0.1 2019-03-19 18:44:31 +01:00
Dave Airlie
6ee8577261 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 <alexander.deucher@amd.com>
2019-03-07 16:25:19 +01:00
Michel Dänzer
9534bf3bb3 Bump version for the 19.0.0 release xf86-video-amdgpu-19.0.0 2019-03-06 12:05:49 +01:00
Michel Dänzer
a2b32e72fd present: Don't check tiling parameters with DC & DRM minor version >= 31
Current DC handles any changes of tiling parameters for flips.

v2:
* Just check all tiling bits if DRM minor < 31 or DC is disabled.

Reviewed-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
2019-03-04 17:39:27 +01:00
Michel Dänzer
2798244be7 Make drmmode_cm_enabled an inline function
So that it can be used outside of drmmode_display.c as well.

Reviewed-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
2019-03-04 17:39:12 +01:00
Michel Dänzer
72653455e4 Revert "Remove set but unused amdgpu_dri2::pKernelDRMVersion"
This reverts commit 720a61000a.

We're going to make use of it now.

Reviewed-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
2019-03-04 17:31:45 +01:00
Michel Dänzer
28cd209ebf Revert "gitlab-ci: Only run docker-image stage if relevant source files change"
This reverts commit 9c23076b9e.

Some scenarios have come to light where this failed to ensure the docker
image exists:

* If the master branch of a forked repository is used for an MR which
  doesn't modify .gitlab-ci.yml, the docker-image job may not run.
* If the docker-image job of the first pipeline in a forked repository
  is cancelled or fails for any reason, and .gitlab-ci.yml isn't
  modified for the next pipeline run.
2019-03-01 10:09:21 +00:00
Michel Dänzer
09be74a3d1 dri2: Call drm_queue_handle_deferred in dri2_deferred_event
drm_queue_handler just puts the event on the signalled list; without
calling drm_queue_handle_deferred, actual processing of the event may be
delayed indefinitely, e.g. until another event arrives from the kernel.

This could result in DRI2 clients hanging during DPMS off.

Fixes: 739181c8d3 "Add amdgpu_drm_handle_event wrapper for
                      drmHandleEvent"
Reviewed-by: Aaron Liu <aaron.liu@amd.com>
Tested-by: Aaron Liu <aaron.liu@amd.com>
2019-03-01 09:53:38 +00:00