Simon Ser
d7223eae02
backend/drm: add explicit sync support to multi-GPU blits
2024-08-26 18:09:27 +02:00
Simon Ser
5432108846
backend/drm: drop SKIP in match_connectors_with_crtcs()
...
It's unused.
2024-08-21 22:25:19 +02:00
Simon Ser
1e03719361
backend/drm: drop match_connectors_with_crtcs() return value
...
It's unused.
2024-08-21 22:25:19 +02:00
Simon Ser
0bf642d246
backend/drm: use more descriptive names for match_obj()
...
This function is only used for connectors and CRTCs, so instead of
the abstract "obj"/"resource" wording, just use the concrete names.
2024-08-21 22:25:19 +02:00
Isaac Freund
08495d2596
backend/drm: don't set vsync present flag if page flip was async
2024-08-15 15:11:10 +00:00
Simon Ser
3067e45c2e
backend/drm: add support for explicit sync APIs
2024-08-06 17:37:06 +00:00
Simon Ser
a35b4f059d
backend/drm: add support for SIZE_HINTS property
...
This property allows the driver to advertise support for multiple
cursor sizes. On Intel, using a smaller buffer size reduces power
consumption.
References: https://lore.kernel.org/dri-devel/20240227193523.5601-2-ville.syrjala@linux.intel.com/
2024-07-10 22:42:44 +00:00
Simon Ser
0a79bc28c7
build: require libinput v1.19
...
This version has been published back in 2021.
2024-07-04 22:51:07 +02:00
Kirill Primak
67b88e46b0
Fix __VA_OPT__ macro invocations
2024-06-30 09:01:15 +03:00
Simon Ser
3880ee15d7
Use standard __VA_OPT__ instead of GNU's ##__VA_ARGS__
...
C23 has standardized a way to write variadic macros that accept
zero arguments:
https://open-std.org/JTC1/SC22/WG14/www/docs/n3033.htm
Use that instead of the GNU extension when available.
2024-06-27 18:13:05 +00:00
Kirill Primak
f320df65e6
backend/wayland: introduce wlr_wl_output_set_app_id()
2024-06-26 19:43:20 +00:00
Kirill Primak
5201836868
backend/drm: store drm prop lists as structs
...
This makes modifying the property lists slightly easier.
2024-06-25 13:49:54 +00:00
Kenny Levinsen
bedc890935
backend/drm: Use cached vrr support flag
...
We do not expect the connector support to change throughout the lifetime
of the link on this connector, so use the value we initially probed.
2024-06-21 14:18:34 +00:00
Kirill Primak
629a5171f2
backend/wayland: don't ack outdated configures
...
This commit fixes the following interaction:
1) The host compositor sends a configure sequence for an output.
2) Before handling it, the guest compositor disables and immediately
re-enables the output.
3) The guest compositor tries to ack the configure event from step 1
which isn't relevant anymore after unmapping and re-initialization.
Instead, ignore all configure events after unmapping until we're sure
the host compositor has processed the unmapping.
Also see
https://gitlab.freedesktop.org/wayland/wayland-protocols/-/issues/108 .
2024-06-11 09:44:42 +03:00
Kirill Primak
d80c46250d
backend/wayland: improve/fix xdg_toplevel (re-)initialization
...
- Reset all variables representing an initialized xdg_toplevel's state
on unmap.
- Send an initial commit only when an output is about to be enabled.
- If an output isn't configured yet, don't commit a buffer.
2024-06-11 09:44:42 +03:00
Kirill Primak
baf1e4f674
backend/wayland: don't ack a configure event too early
...
Postpone sending xdg_surface.ack_configure until the guest compositor
commits a buffer, if at all.
Also see
https://gitlab.freedesktop.org/wayland/wayland-protocols/-/issues/128 .
2024-06-11 09:44:42 +03:00
Kirill Primak
94e7165e85
backend/wayland: don't request a state too early
...
An xdg_toplevel configure sequence ends with xdg_surface.configure.
Wait for it before relaying the request to the guest compositor.
2024-06-11 09:44:42 +03:00
Kirill Primak
a62dfebf10
backend/wayland: store output xdg_toplevel title
...
This will be required to re-initialize the toplevel properly later.
2024-06-11 09:44:42 +03:00
Kirill Primak
2f82c92307
Avoid using wayland-{client,server}.h
...
Their use is discouraged. Instead, include -core or -protocol headers.
2024-04-17 13:37:12 +00:00
Ian Forbes
e3bd318547
drm/backend: add support for cursor hotspots
...
Enables DRM_CLIENT_CAP_CURSOR_PLANE_HOTSPOT and sets the cursor hotspots on the
cursor plane so virtualized drivers can accelerate mouse movement.
Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3776
2024-03-22 13:54:18 -05:00
Simon Ser
52e01a9c8b
backend/drm: implement wlr_backend_impl.{test,commit}
2024-03-14 22:03:10 +00:00
Simon Ser
fc4996d853
backend/drm: rework struct wlr_drm_page_flip for multiple connectors
...
We need to store the CRTC ID for each connector at the time of the
atomic commit, because future commits may change the CRTC/connector
mapping.
2024-03-14 22:03:10 +00:00
Simon Ser
805807fd5b
backend/drm: add infrastructure for device-wide commits
2024-03-14 22:03:10 +00:00
Simon Ser
4636f8c407
backend/drm: track pending atomic state in wlr_drm_connector_state
...
This centralizes logic common for both the atomic and libliftoff
backends. Additionally, a struct will make it easier to implement
multi-connector commits (since it can be stored in an array).
2024-03-14 22:03:10 +00:00
Simon Ser
f8f2dde1f0
backend/drm: add wlr_drm_connector_state.connector
...
Will be useful for multi-connector commits, to avoid having to
pass the list of connectors separately from their state.
2024-03-14 22:03:10 +00:00
Simon Ser
16b42bf65b
backend/drm: track cursor FB in wlr_drm_connector_state
...
Use the same logic for cursor FBs as we currently use for primary
FBs. This also fixes the same bug as [1] but in a different, more
robust way.
The new logic integrates better with atomic and will be required
anyways in the future when set_cursor will be superseded by a better
API.
[1]: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4577
2024-03-04 11:26:20 +01:00
Simon Ser
f6659414ba
backend/drm: add drm_fb_copy()
...
Similar to drm_fb_move(), but leaves old as-is.
2024-03-04 11:25:33 +01:00
Simon Ser
ee70932422
backend/libinput: use NULL to indicate missing device name
...
libinput guarantees that the name is non-NULL, and an empty string
if unset. However wlroots uses NULL to indicate that an input device
name is unset.
2024-02-29 12:08:02 +01:00
Simon Ser
ec5263e6b7
pointer: drop enum wlr_axis_relative_direction
...
Instead, use enum wl_pointer_axis_relative_direction from the
Wayland protocol.
2024-02-28 16:39:18 +00:00
Simon Ser
9f4cf242d9
pointer: drop enum wlr_axis_source
...
Instead, use enum wl_pointer_axis_source from the Wayland protocol.
2024-02-28 16:39:18 +00:00
Simon Ser
0d9ffef774
backend/drm: don't destroy previous DRM master blobs
...
On startup, we fetch the previous MODE_ID blob ID so that
compositors can keep using the previous mode if they want to.
However, that blob doesn't belong to us, it belongs to the
previous DRM master. As a result, we get an error when trying to
destroy it.
Fix this by tracking whether the blob belongs to us or not.
Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3811
2024-02-21 15:10:44 +00:00
Simon Ser
d8f4a3d78c
backend/drm: fix broken link to KMS property docs
...
The Linux graphics section of 01.org is no more. Link to more
official docs instead.
2024-02-21 12:03:37 +01:00
Simon Ser
d2acd4c362
backend/drm: move restore logic to drm.c
...
We'll need to use a bunch of internal functions from that file in
the next commits.
2024-02-15 09:37:46 +01:00
Simon Ser
505175e56f
backend/drm: atomically reset state after VT switch
...
Allows the KMS driver to parallelize the modesets, so should be
faster than going through each CRTC one by one.
2024-02-14 19:13:23 +01:00
Simon Ser
741aaa3f76
backend/drm: drop wlr_drm_backend arg from create_mode_blob()
...
No need for this, the backend can be grabbed from the connector.
2024-02-14 17:13:25 +01:00
Simon Ser
f27808b8d9
backend/multi: take wl_event_loop instead of wl_display
2024-01-25 15:05:36 +00:00
Simon Ser
54f9944b48
backend/drm: drop wl_display argument
...
We can grab the event loop from the wlr_session instead.
2024-01-25 15:05:36 +00:00
Simon Ser
b62ac611c8
backend/x11: take wl_event_loop instead of wl_display
2024-01-25 15:05:36 +00:00
Simon Ser
ed0bba581b
backend/wayland: take wl_event_loop instead of wl_display
2024-01-25 15:05:36 +00:00
Simon Ser
f5e8fa48f3
backend/libinput: drop wl_display argument
...
We can grab the event loop from the wlr_session instead.
2024-01-25 15:05:36 +00:00
Simon Ser
682dbf36e5
backend/headless: take wl_event_loop instead of wl_display
2024-01-25 15:05:36 +00:00
Simon Ser
98c708618e
backend/wayland: populate pointer axis relative direction
2024-01-23 08:37:29 +00:00
Simon Ser
f81c3d93cd
backend/drm: save current refresh rate
...
wlr_output.refresh is populated by core wlr_output, and thus will
be zero for a custom mode with an unset refresh rate.
Save the refresh rate from the drmModeModeInfo in wlr_drm_connector
instead.
Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3791
2023-12-30 20:06:33 +01:00
Simon Ser
67c77fdbdc
backend/drm: remove wlr_drm_renderer.backend
...
This is unused.
2023-11-30 14:44:46 +00:00
Simon Ser
f935ff0ef6
backend/drm: move drm_plane_finish_surface() to drm.c
...
This function touches queued_fb/current_fb, which the renderer has
nothing to do with.
2023-11-30 14:44:46 +00:00
Simon Ser
260dbdf704
backend/drm: split wlr_drm_fb related functions into separate file
2023-11-30 14:44:46 +00:00
Kirill Primak
4990ed99eb
backend/x11: don't send ConfigureRequest with the same size
...
Under X11, ConfigureNotify means that the window has already been resized.
Sending ConfigureRequest with the received size is not only useless, but also
can confuse the window manager, which will probably reply with the current
(i.e. *old*) size causing a configure loop.
Fixes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3769
2023-11-27 09:46:11 +00:00
Simon Ser
63792b38e4
backend/session: take wl_event_loop instead of wl_display
...
wl_display holds a lot more than wlr_session needs: wlr_session
only needs to wait for a FD to become readable, but wl_display
provides full access to the Wayland client and protocol objects.
Switch to wl_event_loop to better reflect the above.
2023-11-23 11:15:07 +00:00
Simon Ser
8c44e86077
backend/drm: add wlr_drm_connector_state.nonblock
...
Instead of having this condition checked in multiple places,
centralize it so that they don't go out-of-sync.
2023-11-19 15:32:30 +01:00
Alexander Orzechowski
b06d58fa8b
backend/drm: Destroy page flips on backend destroy
...
When we destroy the backend, page flips will no longer be invoked meaning
those won't clean up the page flips for us.
2023-11-17 14:34:32 -05:00