Skip to content

Instantly share code, notes, and snippets.

@gregath
Last active September 12, 2023 00:32
Show Gist options
  • Save gregath/84f6f187bf790d969e441e77bb94b987 to your computer and use it in GitHub Desktop.
Save gregath/84f6f187bf790d969e441e77bb94b987 to your computer and use it in GitHub Desktop.
Logs for issue with sway where the screen is blank after the monitor is power cycled
# Default config for sway
#
# Copy this to ~/.config/sway/config and edit it to your liking.
#
# Read `man 5 sway` for a complete reference.
### Variables
#
# Logo key. Use Mod1 for Alt.
set $mod Mod4
# Home row direction keys, like vim
set $left h
set $down j
set $up k
set $right l
# Your preferred terminal emulator
set $term /home//bin/gterm
# Your preferred application launcher
# Note: pass the final command to swaymsg so that the resulting window can be opened
# on the original workspace that the command was run on.
set $menu dmenu_path | dmenu | xargs swaymsg exec --
### Output configuration
#
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
output LVDS-1 disable
# output DP-1 bg /usr/share/backgrounds/fedora-workstation/dutch_skies.jpg fill
output DP-1 {
mode 2560x1440@59.951Hz
}
#
# Example configuration:
#
# output HDMI-A-1 resolution 1920x1080 position 1920,0
#
# You can get the names of your outputs by running: swaymsg -t get_outputs
### Idle configuration
#
# Example configuration:
#
# exec swayidle -w \
# timeout 300 'swaylock -f -c 000000' \
# timeout 600 'swaymsg "output * dpms off"' \
# resume 'swaymsg "output * dpms on"' \
# before-sleep 'swaylock -f -c 000000'
#
# This will lock your screen after 300 seconds of inactivity, then turn off
# your displays after another 300 seconds, and turn your screens back on when
# resumed. It will also lock your screen before your computer goes to sleep.
### Input configuration
#
# Example configuration:
#
# input "2:14:SynPS/2_Synaptics_TouchPad" {
# dwt enabled
# tap enabled
# natural_scroll enabled
# middle_emulation enabled
# }
#
# You can get the names of your inputs by running: swaymsg -t get_inputs
# Read `man 5 sway-input` for more information about this section.
input type:keyboard xkb_options caps:hyper
### Key bindings
#
# Basics:
#
# Start a terminal
bindsym $mod+Return exec $term
# Kill focused window
bindsym $mod+Shift+q kill
# Start your launcher
bindsym $mod+p exec $menu
# Drag floating windows by holding down $mod and left mouse button.
# Resize them with right mouse button + $mod.
# Despite the name, also works for non-floating windows.
# Change normal to inverse to use left mouse button for resizing and right
# mouse button for dragging.
floating_modifier $mod normal
# Reload the configuration file
bindsym $mod+Shift+c reload
# Exit sway (logs you out of your Wayland session)
bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'
#
# Moving around:
#
# Move your focus around
bindsym $mod+$left focus left
bindsym $mod+$down focus down
bindsym $mod+$up focus up
bindsym $mod+$right focus right
# Or use $mod+[up|down|left|right]
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right
# Move the focused window with the same, but add Shift
bindsym $mod+Shift+$left move left
bindsym $mod+Shift+$down move down
bindsym $mod+Shift+$up move up
bindsym $mod+Shift+$right move right
# Ditto, with arrow keys
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
#
# Workspaces:
#
# Switch to workspace
bindsym $mod+1 workspace 1
bindsym $mod+2 workspace 2
bindsym $mod+3 workspace 3
bindsym $mod+4 workspace 4
bindsym $mod+5 workspace 5
bindsym $mod+6 workspace 6
bindsym $mod+7 workspace 7
bindsym $mod+8 workspace 8
bindsym $mod+9 workspace 9
bindsym $mod+0 workspace 10
bindsym $mod+KP_1 workspace KP_1
bindsym $mod+KP_2 workspace KP_2
bindsym $mod+KP_3 workspace KP_3
bindsym $mod+KP_4 workspace KP_4
bindsym $mod+KP_5 workspace KP_5
bindsym $mod+KP_6 workspace KP_6
bindsym $mod+KP_7 workspace KP_7
bindsym $mod+KP_8 workspace KP_8
bindsym $mod+KP_9 workspace KP_9
bindsym $mod+KP_0 workspace KP_10
# Move focused container to workspace
bindsym $mod+Shift+1 move container to workspace 1
bindsym $mod+Shift+2 move container to workspace 2
bindsym $mod+Shift+3 move container to workspace 3
bindsym $mod+Shift+4 move container to workspace 4
bindsym $mod+Shift+5 move container to workspace 5
bindsym $mod+Shift+6 move container to workspace 6
bindsym $mod+Shift+7 move container to workspace 7
bindsym $mod+Shift+8 move container to workspace 8
bindsym $mod+Shift+9 move container to workspace 9
bindsym $mod+Shift+0 move container to workspace 10
bindsym $mod+Shift+KP_1 move container to workspace KP_1
bindsym $mod+Shift+KP_2 move container to workspace KP_2
bindsym $mod+Shift+KP_3 move container to workspace KP_3
bindsym $mod+Shift+KP_4 move container to workspace KP_4
bindsym $mod+Shift+KP_5 move container to workspace KP_5
bindsym $mod+Shift+KP_6 move container to workspace KP_6
bindsym $mod+Shift+KP_7 move container to workspace KP_7
bindsym $mod+Shift+KP_8 move container to workspace KP_8
bindsym $mod+Shift+KP_9 move container to workspace KP_9
bindsym $mod+Shift+KP_0 move container to workspace KP_10
# Note: workspaces can have any name you want, not just numbers.
# We just use 1-10 as the default.
#
# Layout stuff:
#
# You can "split" the current object of your focus with
# $mod+b or $mod+v, for horizontal and vertical splits
# respectively.
bindsym $mod+b splith
bindsym $mod+v splitv
# Switch the current container between different layout styles
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split
# Make the current focus fullscreen
bindsym $mod+f fullscreen
# Toggle the current focus between tiling and floating mode
bindsym $mod+Shift+space floating toggle
# Swap focus between the tiling area and the floating area
bindsym $mod+space focus mode_toggle
# Move focus to the parent container
bindsym $mod+a focus parent
#
# Scratchpad:
#
# Sway has a "scratchpad", which is a bag of holding for windows.
# You can send windows there and get them back later.
# Move the currently focused window to the scratchpad
bindsym $mod+Shift+minus move scratchpad
# Show the next scratchpad window or hide the focused scratchpad window.
# If there are multiple scratchpad windows, this command cycles through them.
bindsym $mod+minus scratchpad show
#
# Resizing containers:
#
mode "resize" {
# left will shrink the containers width
# right will grow the containers width
# up will shrink the containers height
# down will grow the containers height
bindsym $left resize shrink width 10px
bindsym $down resize grow height 10px
bindsym $up resize shrink height 10px
bindsym $right resize grow width 10px
# Ditto, with arrow keys
bindsym Left resize shrink width 10px
bindsym Down resize grow height 10px
bindsym Up resize shrink height 10px
bindsym Right resize grow width 10px
# Return to default mode
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"
#
# Status Bar:
#
# Read `man 5 sway-bar` for more information about this section.
bar {
position top
# When the status_command prints a new line to stdout, swaybar updates.
# The default just shows the current date and time.
status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
colors {
statusline #ffffff
background #323232
inactive_workspace #32323200 #32323200 #5c5c5c
}
}
include /etc/sway/config.d/*
[ 1839.104668] [drm:drm_stub_open]
[ 1839.104681] i915 0000:00:02.0: [drm:drm_open_helper] comm="systemd-logind", pid=1203, minor=1
[ 1839.104690] i915 0000:00:02.0: [drm:i915_gem_open [i915]]
[ 1839.104938] i915 0000:00:02.0: [drm:drm_ioctl] comm="systemd-logind" pid=1203, dev=0xe201, auth=1, DRM_IOCTL_SET_MASTER
[ 1839.105749] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[ 1839.108174] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_VERSION
[ 1839.108187] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_VERSION
[ 1839.108238] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GET_CAP
[ 1839.108250] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GET_CAP
[ 1839.108255] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GET_CAP
[ 1839.108261] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_SET_CLIENT_CAP
[ 1839.108266] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GET_CAP
[ 1839.108272] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_SET_CLIENT_CAP
[ 1839.108305] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GET_CAP
[ 1839.108315] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GET_CAP
[ 1839.108348] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[ 1839.108363] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[ 1839.108399] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCRTC
[ 1839.108412] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.108423] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.108431] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108437] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108444] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108449] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108454] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108459] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108464] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108469] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108474] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108478] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108483] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108488] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108493] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108498] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108503] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108508] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108513] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108517] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108523] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCRTC
[ 1839.108529] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.108534] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.108540] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108545] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108550] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108555] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108560] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108565] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108569] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108574] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108579] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108584] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108589] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108593] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108598] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108603] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108608] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108613] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108617] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108622] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108627] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCRTC
[ 1839.108633] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.108638] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.108644] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108649] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108654] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108659] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108664] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108668] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108673] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108678] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108683] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108688] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108693] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108697] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108702] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108707] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108712] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108717] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108721] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108726] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108732] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANERESOURCES
[ 1839.108737] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANERESOURCES
[ 1839.108769] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.108780] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.108787] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.108794] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.108801] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108806] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108813] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108818] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108823] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108828] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108833] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108838] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108843] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108848] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108853] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108858] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108863] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108867] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108872] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108877] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108882] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108887] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108892] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108897] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108902] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108907] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108912] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108916] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108921] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108926] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108931] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108936] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108942] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108947] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.108952] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.108958] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.108967] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.108973] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.108979] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1839.108984] [drm:drm_mode_object_put.part.0] OBJ ID: 32 (2)
[ 1839.108989] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1839.108993] [drm:drm_mode_object_put.part.0] OBJ ID: 32 (2)
[ 1839.108998] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.109004] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.109009] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109015] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109021] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109026] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109032] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109036] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109041] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109046] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109065] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109073] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109080] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109087] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109095] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109103] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109111] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109118] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109126] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109134] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109142] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109149] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109158] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109166] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109174] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109181] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109190] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109197] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109204] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109212] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109220] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109228] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109236] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109244] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109253] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109261] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109269] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109277] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109285] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109295] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109305] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.109313] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.109321] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109330] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109341] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109348] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109358] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109365] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109373] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109380] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109388] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109396] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109404] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109411] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109419] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109427] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109434] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109442] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109449] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109456] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109465] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109473] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109481] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109489] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109496] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109504] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109512] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109519] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109527] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109535] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109543] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109551] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109559] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109566] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109575] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109583] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109594] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109602] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109612] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1839.109618] [drm:drm_mode_object_put.part.0] OBJ ID: 42 (2)
[ 1839.109624] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1839.109630] [drm:drm_mode_object_put.part.0] OBJ ID: 42 (2)
[ 1839.109637] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.109644] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.109653] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109662] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109671] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109679] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109687] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109695] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109703] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109710] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109718] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109725] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109733] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109741] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109749] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109756] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109764] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109771] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109779] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109786] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109794] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109802] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109810] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109817] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109826] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109833] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109841] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109848] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109856] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109863] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109871] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109879] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109888] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109895] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.109903] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109912] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109923] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109933] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109942] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1839.109949] [drm:drm_mode_object_put.part.0] OBJ ID: 47 (2)
[ 1839.109954] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1839.109960] [drm:drm_mode_object_put.part.0] OBJ ID: 47 (2)
[ 1839.109967] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.109975] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.109983] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.109992] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110002] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110010] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110018] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110026] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110034] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110041] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110057] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110065] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110073] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110080] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110088] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110096] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110104] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110111] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110119] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110127] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110135] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110142] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110150] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110158] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110165] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110173] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110181] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110188] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110196] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110204] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110211] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110219] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110227] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110235] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110244] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110251] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110259] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110267] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110275] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110284] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110294] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.110302] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.110310] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110318] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110328] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110336] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110345] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110352] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110360] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110368] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110376] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110383] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110391] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110398] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110406] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110414] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110421] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110428] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110436] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110443] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110451] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110458] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110466] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110474] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110481] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110488] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110497] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110504] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110511] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110518] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110527] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110534] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110543] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110550] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110558] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110567] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110578] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110586] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110596] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1839.110602] [drm:drm_mode_object_put.part.0] OBJ ID: 57 (2)
[ 1839.110607] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1839.110613] [drm:drm_mode_object_put.part.0] OBJ ID: 57 (2)
[ 1839.110619] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.110627] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.110635] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110644] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110653] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110661] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110669] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110676] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110684] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110692] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110700] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110707] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110715] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110723] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110730] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110738] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110746] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110753] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110761] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110769] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110777] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110784] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110792] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110799] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110807] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110814] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110822] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110830] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110837] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110845] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110853] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110860] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110869] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110876] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110884] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110893] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110904] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110913] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110922] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1839.110928] [drm:drm_mode_object_put.part.0] OBJ ID: 62 (2)
[ 1839.110933] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1839.110939] [drm:drm_mode_object_put.part.0] OBJ ID: 62 (2)
[ 1839.110946] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.110954] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.110962] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110971] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.110981] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110988] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.110997] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111004] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111013] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111021] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111028] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111036] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111044] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111057] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111065] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111073] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111081] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111089] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111097] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111104] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111112] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111119] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111127] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111134] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111143] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111150] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111158] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111165] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111172] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111180] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111187] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111195] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111203] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111211] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111219] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111227] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111234] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111242] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111250] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.111259] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.111270] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.111278] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPLANE
[ 1839.111286] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.111295] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.111304] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111312] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111320] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111327] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111336] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111343] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111351] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111358] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111366] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111373] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111381] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111389] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111397] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111404] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111412] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111419] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111427] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111434] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111442] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111450] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111457] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111465] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111472] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111480] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111488] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111495] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111503] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111510] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111518] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111526] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1839.111534] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.111542] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.111553] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.111561] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1839.111571] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1839.111577] [drm:drm_mode_object_put.part.0] OBJ ID: 72 (2)
[ 1839.111582] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1839.111588] [drm:drm_mode_object_put.part.0] OBJ ID: 72 (2)
[ 1839.115540] [drm:drm_stub_open]
[ 1839.115551] i915 0000:00:02.0: [drm:drm_open_helper] comm="sway", pid=5381, minor=128
[ 1839.115560] i915 0000:00:02.0: [drm:i915_gem_open [i915]]
[ 1839.115864] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1839.115876] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1839.146252] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1839.146266] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1839.147991] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1839.148002] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1839.148009] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_QUERY
[ 1839.148015] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GETPARAM
[ 1839.148020] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GETPARAM
[ 1839.148025] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_QUERY
[ 1839.148030] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GETPARAM
[ 1839.148034] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-19
[ 1839.148039] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_QUERY
[ 1839.148044] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_QUERY
[ 1839.148107] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.148140] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_TILING
[ 1839.148152] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_GET_TILING
[ 1839.148161] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1839.148172] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_GET_APERTURE
[ 1839.148181] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CONTEXT_GETPARAM
[ 1839.148190] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.148206] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_TILING
[ 1839.148214] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1839.148223] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GETPARAM
[ 1839.148231] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GETPARAM
[ 1839.148238] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GETPARAM
[ 1839.148246] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_GET_APERTURE
[ 1839.151126] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GET_CAP
[ 1839.160696] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.160725] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1839.160746] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1839.160773] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.160785] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1839.160795] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1839.160850] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.160862] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1839.160877] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1839.160897] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CONTEXT_CREATE_EXT
[ 1839.160909] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CONTEXT_SETPARAM
[ 1839.160916] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CONTEXT_SETPARAM
[ 1839.160920] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-19
[ 1839.160940] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.160951] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1839.160967] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1839.160981] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.160991] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1839.161002] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1839.161014] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1839.161023] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.161032] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1839.161041] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1839.161072] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CONTEXT_CREATE_EXT
[ 1839.161082] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CONTEXT_SETPARAM
[ 1839.161089] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CONTEXT_SETPARAM
[ 1839.161095] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-19
[ 1839.161121] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.161139] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1839.161163] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1839.161184] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.161199] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1839.161218] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1839.161241] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1839.161966] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_QUERY
[ 1839.161975] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GETPARAM
[ 1839.161980] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CONTEXT_GETPARAM
[ 1839.174269] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1839.174400] [drm:intel_engine_cmd_parser [i915]] CMD: Rejected register 0x000020C0 in command: 0x11000001 (rcs0)
[ 1839.174639] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1839.174651] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1839.174658] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1839.174666] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.174685] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1839.174707] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1839.174732] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1839.174738] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.174750] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1839.174762] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1839.174780] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1839.174790] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1839.174861] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1839.174868] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1839.174873] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1839.174879] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.174890] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1839.174905] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1839.174923] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1839.174929] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1839.174939] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1839.174950] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1839.174964] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1839.174997] [drm:drm_stub_open]
[ 1839.175003] i915 0000:00:02.0: [drm:drm_open_helper] comm="sway", pid=5381, minor=128
[ 1839.175008] i915 0000:00:02.0: [drm:i915_gem_open [i915]]
[ 1839.176001] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_AUTH_MAGIC
[ 1839.176011] i915 0000:00:02.0: [drm:drm_authmagic] 0
[ 1839.176017] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-22
[ 1839.176026] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_CREATE_LEASE
[ 1839.176033] i915 0000:00:02.0: [drm:drm_mode_create_lease_ioctl] Creating lease
[ 1839.176037] i915 0000:00:02.0: [drm:drm_mode_create_lease_ioctl] lessor 0
[ 1839.176042] i915 0000:00:02.0: [drm:drm_mode_create_lease_ioctl] new lessee 1 00000000a1a81c6f, lessor 0 00000000f07c18d4
[ 1839.176059] i915 0000:00:02.0: [drm:drm_mode_create_lease_ioctl] Allocating lease file
[ 1839.176068] [drm:drm_stub_open]
[ 1839.176073] i915 0000:00:02.0: [drm:drm_open_helper] comm="sway", pid=5381, minor=1
[ 1839.176080] i915 0000:00:02.0: [drm:i915_gem_open [i915]]
[ 1839.176327] i915 0000:00:02.0: [drm:drm_mode_create_lease_ioctl] Returning fd 18 id 1
[ 1839.176330] i915 0000:00:02.0: [drm:drm_mode_create_lease_ioctl] drm_mode_create_lease_ioctl succeeded
[ 1839.176335] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GET_CAP
[ 1839.176351] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_VERSION
[ 1839.176358] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_VERSION
[ 1839.176429] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_VERSION
[ 1839.176435] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_VERSION
[ 1839.179246] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_VERSION
[ 1839.179256] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_VERSION
[ 1839.180939] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_VERSION
[ 1839.180948] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_VERSION
[ 1839.180955] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_QUERY
[ 1839.180961] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GETPARAM
[ 1839.180967] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GETPARAM
[ 1839.180971] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_QUERY
[ 1839.180976] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GETPARAM
[ 1839.180981] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-19
[ 1839.180986] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_QUERY
[ 1839.180991] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_QUERY
[ 1839.181028] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_CREATE
[ 1839.181058] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_TILING
[ 1839.181068] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_GET_TILING
[ 1839.181076] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1839.181088] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_GET_APERTURE
[ 1839.181098] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_CONTEXT_GETPARAM
[ 1839.181107] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_CREATE
[ 1839.181125] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_TILING
[ 1839.181134] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1839.181144] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GETPARAM
[ 1839.181151] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GETPARAM
[ 1839.181158] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GETPARAM
[ 1839.181166] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_GET_APERTURE
[ 1839.183087] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GET_CAP
[ 1839.183475] [drm:drm_stub_open]
[ 1839.183482] i915 0000:00:02.0: [drm:drm_open_helper] comm="sway", pid=5381, minor=1
[ 1839.183488] i915 0000:00:02.0: [drm:i915_gem_open [i915]]
[ 1839.183701] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=0, DRM_IOCTL_AUTH_MAGIC
[ 1839.183707] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-13
[ 1839.183713] i915 0000:00:02.0: [drm:drm_file_free] comm="sway", pid=5381, dev=0xe201, open_count=5
[ 1840.412979] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[ 1840.413001] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[ 1840.413014] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.413022] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:76:LVDS-1]
[ 1840.413048] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:76:LVDS-1] Assigning EDID-1.4 digital sink color depth as 6 bpc.
[ 1840.413057] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:76:LVDS-1] ELD monitor
[ 1840.413063] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:76:LVDS-1] ELD size 20, SAD count 0
[ 1840.413074] [drm:drm_mode_object_put.part.0] OBJ ID: 115 (1)
[ 1840.413134] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:76:LVDS-1] probed modes :
[ 1840.413138] [drm:drm_mode_debug_printmodeline] Modeline "1366x768": 60 76300 1366 1414 1446 1610 768 771 776 790 0x48 0xa
[ 1840.413143] [drm:drm_mode_debug_printmodeline] Modeline "1366x768": 40 50870 1366 1414 1446 1610 768 771 776 790 0x40 0xa
[ 1840.413149] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1840.413156] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.413164] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1840.413172] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 1840.413178] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 1840.413294] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.413305] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1840.413312] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.413319] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1840.413324] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413329] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413336] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413342] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413348] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413353] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413359] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413364] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413369] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413374] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413379] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413384] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413389] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413394] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.413400] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.413405] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1840.413409] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.413413] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1840.413418] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.413422] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1840.413425] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.413430] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1840.413433] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1840.413437] [drm:drm_mode_object_put.part.0] OBJ ID: 113 (2)
[ 1840.413441] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1840.413446] [drm:drm_mode_object_put.part.0] OBJ ID: 113 (2)
[ 1840.413461] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.413468] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.413475] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1840.413479] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1840.413482] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1840.413486] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1840.413520] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.413531] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.413606] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.413615] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:80:VGA-1]
[ 1840.413622] i915 0000:00:02.0: [drm:intel_crt_detect [i915]] [CONNECTOR:80:VGA-1] force=1
[ 1840.413829] i915 0000:00:02.0: [drm:intel_crt_detect [i915]] ironlake hotplug adpa=0xf40000, result 0
[ 1840.414013] i915 0000:00:02.0: [drm:intel_crt_detect [i915]] CRT not detected via hotplug
[ 1840.414362] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus vga] NAK for addr: 0050 w(1)
[ 1840.414533] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus vga] NAK on first message, retry
[ 1840.414888] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus vga] NAK for addr: 0050 w(1)
[ 1840.415061] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[ 1840.415067] i915 0000:00:02.0: [drm:intel_crt_get_edid [i915]] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[ 1840.415224] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus vga. force bit now 1
[ 1840.416107] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[ 1840.416112] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus vga. force bit now 0
[ 1840.416262] i915 0000:00:02.0: [drm:intel_crt_detect_ddc [i915]] CRT not detected via DDC:0x50 [no valid EDID found]
[ 1840.416413] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:80:VGA-1] disconnected
[ 1840.416419] [drm:drm_mode_object_put.part.0] OBJ ID: 80 (2)
[ 1840.416428] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.416435] [drm:drm_mode_object_put.part.0] OBJ ID: 80 (2)
[ 1840.416445] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 1840.416491] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.416499] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:83:HDMI-A-1]
[ 1840.416505] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-1]
[ 1840.416860] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 1840.417007] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 1840.417375] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 1840.417521] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpb
[ 1840.417526] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1840.417668] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 1840.418532] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpb
[ 1840.418536] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 1840.418697] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:83:HDMI-A-1] disconnected
[ 1840.418702] [drm:drm_mode_object_put.part.0] OBJ ID: 83 (2)
[ 1840.418710] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.418718] [drm:drm_mode_object_put.part.0] OBJ ID: 83 (2)
[ 1840.418726] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 1840.418768] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.418776] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:91:DP-1]
[ 1840.418784] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:91:DP-1]
[ 1840.419140] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1840.419516] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 15) 12 14 c4 01 00 05 01 83 02 00 00 00 00 00 04
[ 1840.419535] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX B/DP B: DPCD: 12 14 c4 01 00 05 01 83 02 00 00 00 00 00 04
[ 1840.419734] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1840.420100] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 22 30 10 02 1e
[ 1840.420123] i915 0000:00:02.0: [drm:drm_dp_read_desc [drm_display_helper]] AUX B/DP B: DP branch: OUI 90-cc-24 dev-ID SYNA"0 HW-rev 1.0 SW-rev 2.30 quirks 0x0008
[ 1840.420324] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1840.420524] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00200 AUX -> (ret= 1) 01
[ 1840.420722] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1840.420920] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00080 AUX -> (ret= 3) 08 0d 0d
[ 1840.420937] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX B/DP B: DPCD DFP: 08 0d 0d
[ 1840.421134] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1840.421334] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00021 AUX -> (ret= 1) 01
[ 1840.421351] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:90:DP B] MST support: port: no, sink: yes, modparam: yes
[ 1840.421506] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 270000
[ 1840.421668] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[ 1840.421816] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[ 1840.422147] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1840.422515] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00202 AUX -> (ret= 6) 77 77 81 03 00 00
[ 1840.430493] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:91:DP-1] Assigning EDID-1.4 digital sink color depth as 10 bpc.
[ 1840.430502] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:91:DP-1] ELD monitor LG ULTRAGEAR
[ 1840.430506] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:91:DP-1] ELD size 36, SAD count 1
[ 1840.430512] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (1)
[ 1840.430516] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:91:DP-1] VRR capable: no
[ 1840.430674] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:91:DP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 24Gbps
[ 1840.431010] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1840.431391] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00092 AUX -> (ret= 13) 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 1840.431409] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] PCON ENCODER DSC DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 1840.431558] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:91:DP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? no, YCbCr 4:4:4->4:2:0 conversion? no
[ 1840.431705] [drm:drm_detect_monitor_audio] Monitor has basic audio support
[ 1840.431894] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1840.432095] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x03000 AUX -> (ret= 1) 00
[ 1840.432297] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1840.432496] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00201 AUX -> (ret= 1) 00
[ 1840.432536] i915 0000:00:02.0: [drm:do_detailed_mode] [CONNECTOR:91:DP-1] Composite sync not supported
[ 1840.433254] [drm:drm_mode_debug_printmodeline] Modeline "2560x1440": 144 604250 2560 2608 2640 2720 1440 1443 1453 1543 0x48 0x9
[ 1840.433261] [drm:drm_mode_prune_invalid] Not using 2560x1440 mode: CLOCK_HIGH
[ 1840.433264] [drm:drm_mode_debug_printmodeline] Modeline "2560x1440": 100 410500 2560 2608 2640 2720 1440 1443 1453 1510 0x40 0xa
[ 1840.433268] [drm:drm_mode_prune_invalid] Not using 2560x1440 mode: CLOCK_HIGH
[ 1840.433271] [drm:drm_mode_debug_printmodeline] Modeline "2560x1440": 120 497750 2560 2608 2640 2720 1440 1443 1453 1525 0x40 0x9
[ 1840.433274] [drm:drm_mode_prune_invalid] Not using 2560x1440 mode: CLOCK_HIGH
[ 1840.433280] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:91:DP-1] probed modes :
[ 1840.433283] [drm:drm_mode_debug_printmodeline] Modeline "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[ 1840.433287] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 75 220960 1920 2064 2264 2608 1080 1083 1088 1130 0x0 0x6
[ 1840.433291] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[ 1840.433294] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[ 1840.433298] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[ 1840.433302] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5
[ 1840.433305] [drm:drm_mode_debug_printmodeline] Modeline "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[ 1840.433309] [drm:drm_mode_debug_printmodeline] Modeline "1600x900": 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5
[ 1840.433313] [drm:drm_mode_debug_printmodeline] Modeline "1280x1024": 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[ 1840.433317] [drm:drm_mode_debug_printmodeline] Modeline "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[ 1840.433321] [drm:drm_mode_debug_printmodeline] Modeline "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[ 1840.433324] [drm:drm_mode_debug_printmodeline] Modeline "1152x864": 60 81768 1152 1216 1336 1520 864 867 871 897 0x0 0x6
[ 1840.433328] [drm:drm_mode_debug_printmodeline] Modeline "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[ 1840.433332] [drm:drm_mode_debug_printmodeline] Modeline "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[ 1840.433336] [drm:drm_mode_debug_printmodeline] Modeline "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[ 1840.433339] [drm:drm_mode_debug_printmodeline] Modeline "1280x720": 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5
[ 1840.433343] [drm:drm_mode_debug_printmodeline] Modeline "1024x768": 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[ 1840.433347] [drm:drm_mode_debug_printmodeline] Modeline "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[ 1840.433351] [drm:drm_mode_debug_printmodeline] Modeline "800x600": 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[ 1840.433354] [drm:drm_mode_debug_printmodeline] Modeline "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[ 1840.433358] [drm:drm_mode_debug_printmodeline] Modeline "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[ 1840.433362] [drm:drm_mode_debug_printmodeline] Modeline "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[ 1840.433365] [drm:drm_mode_debug_printmodeline] Modeline "640x480": 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[ 1840.433369] [drm:drm_mode_debug_printmodeline] Modeline "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[ 1840.433373] [drm:drm_mode_debug_printmodeline] Modeline "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[ 1840.433377] [drm:drm_mode_debug_printmodeline] Modeline "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[ 1840.433381] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.433393] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.433404] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.433413] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 1840.433420] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 1840.433545] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.433557] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.433564] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.433572] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.433578] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433583] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433590] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433596] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433602] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433608] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433614] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433619] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433624] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433629] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433634] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433639] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433644] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433650] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433656] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433662] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433668] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433673] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433679] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433684] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433689] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433695] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433701] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.433706] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.433710] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.433714] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.433718] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433723] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433728] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.433733] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.433736] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.433740] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.433744] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1840.433748] [drm:drm_mode_object_put.part.0] OBJ ID: 115 (2)
[ 1840.433752] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1840.433756] [drm:drm_mode_object_put.part.0] OBJ ID: 115 (2)
[ 1840.433764] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.433768] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.433772] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.433776] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.433780] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433785] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1840.433794] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.433800] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.433807] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1840.433811] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1840.433814] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1840.433818] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1840.433854] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.433865] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.434644] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.434654] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:96:HDMI-A-2]
[ 1840.434660] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:96:HDMI-A-2]
[ 1840.435115] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[ 1840.435369] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[ 1840.435795] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[ 1840.436043] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[ 1840.436048] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1840.436285] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[ 1840.437245] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[ 1840.437250] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[ 1840.437398] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:96:HDMI-A-2] disconnected
[ 1840.437403] [drm:drm_mode_object_put.part.0] OBJ ID: 96 (2)
[ 1840.437411] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.437419] [drm:drm_mode_object_put.part.0] OBJ ID: 96 (2)
[ 1840.437427] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 1840.437471] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.437478] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:100:HDMI-A-3]
[ 1840.437485] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:100:HDMI-A-3]
[ 1840.437816] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[ 1840.437961] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[ 1840.438305] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[ 1840.438450] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpd
[ 1840.438454] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1840.438593] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[ 1840.439466] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpd
[ 1840.439470] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[ 1840.439612] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:100:HDMI-A-3] disconnected
[ 1840.439616] [drm:drm_mode_object_put.part.0] OBJ ID: 100 (2)
[ 1840.439624] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.439632] [drm:drm_mode_object_put.part.0] OBJ ID: 100 (2)
[ 1840.439639] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 1840.439680] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.439688] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:104:DP-2]
[ 1840.439694] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:104:DP-2]
[ 1840.439847] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:104:DP-2] disconnected
[ 1840.439851] [drm:drm_mode_object_put.part.0] OBJ ID: 104 (2)
[ 1840.439857] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.439862] [drm:drm_mode_object_put.part.0] OBJ ID: 104 (2)
[ 1840.439868] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 1840.439905] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.439913] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:108:DP-3]
[ 1840.439919] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:108:DP-3]
[ 1840.440074] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:108:DP-3] disconnected
[ 1840.440079] [drm:drm_mode_object_put.part.0] OBJ ID: 108 (2)
[ 1840.440086] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1840.440094] [drm:drm_mode_object_put.part.0] OBJ ID: 108 (2)
[ 1840.440103] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 1840.440711] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.440723] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000006ca633e6
[ 1840.440734] [drm:drm_mode_object_get] OBJ ID: 112 (5)
[ 1840.440736] [drm:drm_mode_object_get] OBJ ID: 112 (6)
[ 1840.440739] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:31:primary A] 00000000a7e794b6 state to 000000006ca633e6
[ 1840.440744] [drm:drm_mode_object_get] OBJ ID: 79 (1)
[ 1840.440746] [drm:drm_mode_object_get] OBJ ID: 117 (3)
[ 1840.440748] [drm:drm_mode_object_get] OBJ ID: 117 (4)
[ 1840.440751] [drm:drm_mode_object_get] OBJ ID: 117 (5)
[ 1840.440753] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:45:pipe A] 000000003e43d8ee state to 000000006ca633e6
[ 1840.440757] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:31:primary A] state 00000000a7e794b6
[ 1840.440760] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (7)
[ 1840.440763] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_plane] Link [PLANE:31:primary A] state 00000000a7e794b6 to [NOCRTC]
[ 1840.440768] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:41:cursor A] 000000004e9c2a5e state to 000000006ca633e6
[ 1840.440771] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:41:cursor A] state 000000004e9c2a5e
[ 1840.440775] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1840.440778] i915 0000:00:02.0: [drm:drm_atomic_set_mode_prop_for_crtc] Set [NOMODE] for [CRTC:45:pipe A] state 000000003e43d8ee
[ 1840.440783] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1840.440785] [drm:drm_mode_object_get] OBJ ID: 76 (5)
[ 1840.440787] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:76:LVDS-1] 00000000b7d092cd state to 000000006ca633e6
[ 1840.440791] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (6)
[ 1840.440793] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 00000000b7d092cd to [NOCRTC]
[ 1840.440796] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1840.440799] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000006ca633e6
[ 1840.440803] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:45:pipe A] mode changed
[ 1840.440807] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:45:pipe A] enable changed
[ 1840.440810] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:45:pipe A] active changed
[ 1840.440814] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:76:LVDS-1]
[ 1840.440817] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Disabling [CONNECTOR:76:LVDS-1]
[ 1840.440820] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:45:pipe A] needs all connectors, enable: n, active: n
[ 1840.440824] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:45:pipe A] to 000000006ca633e6
[ 1840.440829] i915 0000:00:02.0: [drm:drm_atomic_add_affected_planes] Adding all current planes for [CRTC:45:pipe A] to 000000006ca633e6
[ 1840.440833] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 000000006ca633e6
[ 1840.440838] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (6)
[ 1840.440840] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (5)
[ 1840.440843] [drm:drm_mode_object_get] OBJ ID: 117 (4)
[ 1840.440846] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.enable (expected 1, found 0)
[ 1840.441016] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.active (expected 1, found 0)
[ 1840.441194] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in cpu_transcoder (expected 0, found -1)
[ 1840.441434] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in has_pch_encoder (expected yes, found no)
[ 1840.441678] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in fdi_lanes (expected 1, found 0)
[ 1840.441921] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in fdi_m_n (expected tu 64 data 5326067/8388608 link 147946/524288, found tu 0, data 0/0 link 0/0)
[ 1840.442112] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in output_types (expected 0x00000010, found 0x00000000)
[ 1840.442290] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in framestart_delay (expected 1, found 0)
[ 1840.442448] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hdisplay (expected 1366, found 0)
[ 1840.442606] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_htotal (expected 1610, found 0)
[ 1840.442764] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hblank_start (expected 1366, found 0)
[ 1840.442922] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hblank_end (expected 1610, found 0)
[ 1840.443102] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hsync_start (expected 1414, found 0)
[ 1840.443324] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hsync_end (expected 1446, found 0)
[ 1840.443516] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vdisplay (expected 768, found 0)
[ 1840.443708] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vtotal (expected 790, found 0)
[ 1840.443868] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vblank_start (expected 768, found 0)
[ 1840.444033] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vblank_end (expected 790, found 0)
[ 1840.444247] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vsync_start (expected 771, found 0)
[ 1840.444405] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vsync_end (expected 776, found 0)
[ 1840.444563] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hdisplay (expected 1366, found 0)
[ 1840.444721] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_htotal (expected 1610, found 0)
[ 1840.444897] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hblank_start (expected 1366, found 0)
[ 1840.445061] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hblank_end (expected 1610, found 0)
[ 1840.445282] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hsync_start (expected 1414, found 0)
[ 1840.445439] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hsync_end (expected 1446, found 0)
[ 1840.445596] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vdisplay (expected 768, found 0)
[ 1840.445753] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vtotal (expected 790, found 0)
[ 1840.445910] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vblank_start (expected 768, found 0)
[ 1840.446073] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vblank_end (expected 790, found 0)
[ 1840.446294] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vsync_start (expected 771, found 0)
[ 1840.446451] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vsync_end (expected 776, found 0)
[ 1840.446608] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in pixel_multiplier (expected 1, found 0)
[ 1840.446765] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.flags (2) (expected 2, found 0)
[ 1840.446922] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.flags (8) (expected 8, found 0)
[ 1840.447087] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in pipe_bpp (expected 18, found 0)
[ 1840.447308] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_clock (expected 76190, found 0)
[ 1840.447500] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_clock (expected 76190, found 0)
[ 1840.447659] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in port_clock (expected 76190, found 0)
[ 1840.447819] i915 0000:00:02.0: [drm:intel_unreference_shared_dpll [i915]] [CRTC:45:pipe A] releasing PCH DPLL A
[ 1840.447975] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (6)
[ 1840.447980] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:45:pipe A] with [PLANE:31:primary A] visible 1 -> 0, off 1, on 0, ms 1
[ 1840.448153] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001a0ac647 state 000000005c8df559 to 000000006ca633e6
[ 1840.448368] i915 0000:00:02.0: [drm:intel_modeset_calc_cdclk [i915]] New cdclk calculated to be logical 400000 kHz, actual 400000 kHz
[ 1840.448527] i915 0000:00:02.0: [drm:intel_modeset_calc_cdclk [i915]] New voltage level calculated to be logical 0, actual 0
[ 1840.448686] [drm:drm_mode_object_get] OBJ ID: 117 (5)
[ 1840.448693] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:45:pipe A] enable: no [modeset]
[ 1840.448850] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:31:primary A] fb: [NOFB], visible: no
[ 1840.449006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:41:cursor A] fb: [NOFB], visible: no
[ 1840.449170] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000006ca633e6
[ 1840.449177] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1840.449181] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (6)
[ 1840.449184] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (5)
[ 1840.449187] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (4)
[ 1840.449193] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000006ca633e6
[ 1840.449251] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.449262] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000006ca633e6
[ 1840.449269] [drm:drm_mode_object_get] OBJ ID: 112 (5)
[ 1840.449272] [drm:drm_mode_object_get] OBJ ID: 112 (6)
[ 1840.449275] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:31:primary A] 00000000f610a5ac state to 000000006ca633e6
[ 1840.449283] [drm:drm_mode_object_get] OBJ ID: 79 (1)
[ 1840.449287] [drm:drm_mode_object_get] OBJ ID: 117 (3)
[ 1840.449290] [drm:drm_mode_object_get] OBJ ID: 117 (4)
[ 1840.449293] [drm:drm_mode_object_get] OBJ ID: 117 (5)
[ 1840.449297] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:45:pipe A] 000000008bf2f852 state to 000000006ca633e6
[ 1840.449303] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:31:primary A] state 00000000f610a5ac
[ 1840.449308] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (7)
[ 1840.449313] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_plane] Link [PLANE:31:primary A] state 00000000f610a5ac to [NOCRTC]
[ 1840.449319] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:41:cursor A] 000000004e9c2a5e state to 000000006ca633e6
[ 1840.449325] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:41:cursor A] state 000000004e9c2a5e
[ 1840.449331] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1840.449335] i915 0000:00:02.0: [drm:drm_atomic_set_mode_prop_for_crtc] Set [NOMODE] for [CRTC:45:pipe A] state 000000008bf2f852
[ 1840.449342] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1840.449346] [drm:drm_mode_object_get] OBJ ID: 76 (5)
[ 1840.449349] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:76:LVDS-1] 00000000f2e6e545 state to 000000006ca633e6
[ 1840.449355] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (6)
[ 1840.449358] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 00000000f2e6e545 to [NOCRTC]
[ 1840.449364] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1840.449368] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000006ca633e6
[ 1840.449373] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:45:pipe A] mode changed
[ 1840.449380] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:45:pipe A] enable changed
[ 1840.449385] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:45:pipe A] active changed
[ 1840.449390] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:76:LVDS-1]
[ 1840.449396] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Disabling [CONNECTOR:76:LVDS-1]
[ 1840.449401] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:45:pipe A] needs all connectors, enable: n, active: n
[ 1840.449407] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:45:pipe A] to 000000006ca633e6
[ 1840.449414] i915 0000:00:02.0: [drm:drm_atomic_add_affected_planes] Adding all current planes for [CRTC:45:pipe A] to 000000006ca633e6
[ 1840.449420] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 000000006ca633e6
[ 1840.449426] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (6)
[ 1840.449430] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (5)
[ 1840.449435] [drm:drm_mode_object_get] OBJ ID: 117 (4)
[ 1840.449439] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.enable (expected 1, found 0)
[ 1840.449691] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.active (expected 1, found 0)
[ 1840.449938] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in cpu_transcoder (expected 0, found -1)
[ 1840.450172] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in has_pch_encoder (expected yes, found no)
[ 1840.450346] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in fdi_lanes (expected 1, found 0)
[ 1840.450504] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in fdi_m_n (expected tu 64 data 5326067/8388608 link 147946/524288, found tu 0, data 0/0 link 0/0)
[ 1840.450664] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in output_types (expected 0x00000010, found 0x00000000)
[ 1840.450838] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in framestart_delay (expected 1, found 0)
[ 1840.451037] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hdisplay (expected 1366, found 0)
[ 1840.451247] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_htotal (expected 1610, found 0)
[ 1840.451406] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hblank_start (expected 1366, found 0)
[ 1840.451564] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hblank_end (expected 1610, found 0)
[ 1840.451721] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hsync_start (expected 1414, found 0)
[ 1840.451878] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hsync_end (expected 1446, found 0)
[ 1840.452042] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vdisplay (expected 768, found 0)
[ 1840.452260] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vtotal (expected 790, found 0)
[ 1840.452418] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vblank_start (expected 768, found 0)
[ 1840.452575] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vblank_end (expected 790, found 0)
[ 1840.452732] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vsync_start (expected 771, found 0)
[ 1840.452889] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vsync_end (expected 776, found 0)
[ 1840.453052] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hdisplay (expected 1366, found 0)
[ 1840.453275] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_htotal (expected 1610, found 0)
[ 1840.453432] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hblank_start (expected 1366, found 0)
[ 1840.453589] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hblank_end (expected 1610, found 0)
[ 1840.453745] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hsync_start (expected 1414, found 0)
[ 1840.453902] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hsync_end (expected 1446, found 0)
[ 1840.454066] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vdisplay (expected 768, found 0)
[ 1840.454287] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vtotal (expected 790, found 0)
[ 1840.454444] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vblank_start (expected 768, found 0)
[ 1840.454600] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vblank_end (expected 790, found 0)
[ 1840.454757] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vsync_start (expected 771, found 0)
[ 1840.454913] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vsync_end (expected 776, found 0)
[ 1840.455078] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in pixel_multiplier (expected 1, found 0)
[ 1840.455302] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.flags (2) (expected 2, found 0)
[ 1840.455461] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.flags (8) (expected 8, found 0)
[ 1840.455652] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in pipe_bpp (expected 18, found 0)
[ 1840.455843] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_clock (expected 76190, found 0)
[ 1840.456041] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_clock (expected 76190, found 0)
[ 1840.456250] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in port_clock (expected 76190, found 0)
[ 1840.456412] i915 0000:00:02.0: [drm:intel_unreference_shared_dpll [i915]] [CRTC:45:pipe A] releasing PCH DPLL A
[ 1840.456569] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (6)
[ 1840.456574] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:45:pipe A] with [PLANE:31:primary A] visible 1 -> 0, off 1, on 0, ms 1
[ 1840.456770] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001a0ac647 state 000000005c8df559 to 000000006ca633e6
[ 1840.456957] i915 0000:00:02.0: [drm:intel_modeset_calc_cdclk [i915]] New cdclk calculated to be logical 400000 kHz, actual 400000 kHz
[ 1840.457156] i915 0000:00:02.0: [drm:intel_modeset_calc_cdclk [i915]] New voltage level calculated to be logical 0, actual 0
[ 1840.457387] [drm:drm_mode_object_get] OBJ ID: 117 (5)
[ 1840.457393] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:45:pipe A] enable: no [modeset]
[ 1840.457553] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:31:primary A] fb: [NOFB], visible: no
[ 1840.457730] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:41:cursor A] fb: [NOFB], visible: no
[ 1840.457889] i915 0000:00:02.0: [drm:drm_atomic_commit] committing 000000006ca633e6
[ 1840.457919] i915 0000:00:02.0: [drm:intel_backlight_set_pwm_level [i915]] [CONNECTOR:76:LVDS-1] set backlight PWM = 0
[ 1840.458100] i915 0000:00:02.0: [drm:intel_disable_transcoder [i915]] disabling pipe A
[ 1840.690377] i915 0000:00:02.0: [drm:g4x_dp_port_enabled [i915]] No pipe for DP port C found
[ 1840.690596] i915 0000:00:02.0: [drm:g4x_dp_port_enabled [i915]] No pipe for DP port D found
[ 1840.701439] i915 0000:00:02.0: [drm:intel_disable_shared_dpll [i915]] disable PCH DPLL A (active 0x1, on? 1) for [CRTC:45:pipe A]
[ 1840.701658] i915 0000:00:02.0: [drm:intel_disable_shared_dpll [i915]] disabling PCH DPLL A
[ 1840.702069] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:77:LVDS]
[ 1840.702283] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:81:CRT]
[ 1840.702459] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:82:HDMI B]
[ 1840.702633] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:90:DP B]
[ 1840.702800] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:95:HDMI C]
[ 1840.702970] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:99:HDMI D]
[ 1840.703150] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:103:DP C]
[ 1840.703314] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:107:DP D]
[ 1840.703479] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:76:LVDS-1]
[ 1840.703645] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] PCH DPLL A
[ 1840.703812] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] PCH DPLL B
[ 1840.704002] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (1)
[ 1840.704009] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (6)
[ 1840.704012] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (5)
[ 1840.704014] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (4)
[ 1840.704017] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:45:pipe A]
[ 1840.704212] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_DESTROYPROPBLOB
[ 1840.704221] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-2
[ 1840.704439] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.704451] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.704460] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1840.704470] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.704700] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_CREATE
[ 1840.704736] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_DOMAIN
[ 1840.708737] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_TILING
[ 1840.708771] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_PRIME_HANDLE_TO_FD
[ 1840.708883] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1840.709000] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1840.709013] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ADDFB2
[ 1840.709048] i915 0000:00:02.0: [drm:drm_mode_addfb2] [FB:79]
[ 1840.709058] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1840.709070] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_CREATEPROPBLOB
[ 1840.709091] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.709100] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 00000000dccd5e72
[ 1840.709111] [drm:drm_mode_object_get] OBJ ID: 112 (5)
[ 1840.709116] [drm:drm_mode_object_get] OBJ ID: 112 (6)
[ 1840.709119] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000edf3db18 state to 00000000dccd5e72
[ 1840.709128] [drm:drm_mode_object_get] OBJ ID: 114 (1)
[ 1840.709132] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000061e4f93c state to 00000000dccd5e72
[ 1840.709141] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 00000000edf3db18
[ 1840.709146] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1840.709150] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (7)
[ 1840.709154] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1840.709157] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1840.709163] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000cd95951d state to 00000000dccd5e72
[ 1840.709169] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:56:cursor B] state 00000000cd95951d
[ 1840.709176] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1840.709181] [drm:drm_mode_object_get] OBJ ID: 111 (3)
[ 1840.709184] i915 0000:00:02.0: [drm:drm_atomic_set_mode_prop_for_crtc] Set [MODE:2560x1440] for [CRTC:60:pipe B] state 0000000061e4f93c
[ 1840.709190] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1840.709194] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1840.709201] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1840.709204] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1840.709208] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000314472df state to 00000000dccd5e72
[ 1840.709216] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1840.709219] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 00000000dccd5e72
[ 1840.709230] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1840.709237] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1840.709245] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000dccd5e72
[ 1840.709250] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000dccd5e72
[ 1840.709258] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (6)
[ 1840.709263] [drm:drm_mode_object_get] OBJ ID: 79 (2)
[ 1840.709272] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.709571] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 00000000dccd5e72
[ 1840.709578] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1840.709583] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.709586] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (2)
[ 1840.709590] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1840.709594] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1840.709598] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 00000000dccd5e72
[ 1840.709614] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_DESTROYPROPBLOB
[ 1840.709622] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (2)
[ 1840.709626] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (1)
[ 1840.710287] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1840.710300] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1840.710410] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.710458] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.710466] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1840.710477] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.710484] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1840.710499] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.710507] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1840.710517] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.710525] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1840.710537] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.710546] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.710555] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1840.710582] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1840.710607] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1840.710632] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.710638] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1840.710652] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1840.710665] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1840.710678] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1840.710710] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_CREATEPROPBLOB
[ 1840.710727] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.710733] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 00000000dccd5e72
[ 1840.710739] [drm:drm_mode_object_get] OBJ ID: 112 (5)
[ 1840.710742] [drm:drm_mode_object_get] OBJ ID: 112 (6)
[ 1840.710744] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000a826a0c9 state to 00000000dccd5e72
[ 1840.710750] [drm:drm_mode_object_get] OBJ ID: 114 (1)
[ 1840.710753] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000061e4f93c state to 00000000dccd5e72
[ 1840.710758] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 00000000a826a0c9
[ 1840.710762] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1840.710764] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (7)
[ 1840.710767] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1840.710769] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1840.710772] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000b8699f1c state to 00000000dccd5e72
[ 1840.710776] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:56:cursor B] state 00000000b8699f1c
[ 1840.710780] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1840.710784] [drm:drm_mode_object_get] OBJ ID: 111 (3)
[ 1840.710787] i915 0000:00:02.0: [drm:drm_atomic_set_mode_prop_for_crtc] Set [MODE:2560x1440] for [CRTC:60:pipe B] state 0000000061e4f93c
[ 1840.710793] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1840.710796] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1840.710803] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1840.710806] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1840.710808] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000008596b9c4 state to 00000000dccd5e72
[ 1840.710813] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1840.710816] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 00000000dccd5e72
[ 1840.710824] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1840.710829] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1840.710834] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000dccd5e72
[ 1840.710837] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000dccd5e72
[ 1840.710843] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (6)
[ 1840.710845] [drm:drm_mode_object_get] OBJ ID: 79 (2)
[ 1840.710852] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.711095] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 00000000dccd5e72
[ 1840.711100] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1840.711104] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.711108] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (2)
[ 1840.711112] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1840.711115] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1840.711118] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 00000000dccd5e72
[ 1840.711131] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_DESTROYPROPBLOB
[ 1840.711138] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (2)
[ 1840.711141] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (1)
[ 1840.711207] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_CREATEPROPBLOB
[ 1840.711229] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.711236] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 00000000dccd5e72
[ 1840.711243] [drm:drm_mode_object_get] OBJ ID: 112 (5)
[ 1840.711246] [drm:drm_mode_object_get] OBJ ID: 112 (6)
[ 1840.711250] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000d3ce0a6c state to 00000000dccd5e72
[ 1840.711257] [drm:drm_mode_object_get] OBJ ID: 114 (1)
[ 1840.711261] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000061e4f93c state to 00000000dccd5e72
[ 1840.711268] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 00000000d3ce0a6c
[ 1840.711273] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1840.711276] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (7)
[ 1840.711279] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1840.711282] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1840.711286] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000b8699f1c state to 00000000dccd5e72
[ 1840.711292] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:56:cursor B] state 00000000b8699f1c
[ 1840.711297] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1840.711301] [drm:drm_mode_object_get] OBJ ID: 111 (3)
[ 1840.711304] i915 0000:00:02.0: [drm:drm_atomic_set_mode_prop_for_crtc] Set [MODE:2560x1440] for [CRTC:60:pipe B] state 0000000061e4f93c
[ 1840.711310] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1840.711313] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1840.711318] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1840.711321] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1840.711324] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000007f8834be state to 00000000dccd5e72
[ 1840.711330] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1840.711334] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 00000000dccd5e72
[ 1840.711343] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1840.711349] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1840.711356] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000dccd5e72
[ 1840.711361] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000dccd5e72
[ 1840.711367] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (6)
[ 1840.711371] [drm:drm_mode_object_get] OBJ ID: 79 (2)
[ 1840.711378] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.711670] i915 0000:00:02.0: [drm:drm_atomic_commit] committing 00000000dccd5e72
[ 1840.711724] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000006ca633e6
[ 1840.711731] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1840.711736] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (3)
[ 1840.711742] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (5)
[ 1840.711746] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (4)
[ 1840.711752] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000006ca633e6
[ 1840.718786] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1840.724359] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 80734, current 80734
[ 1840.724407] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_DESTROYPROPBLOB
[ 1840.724416] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1840.724420] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-1
[ 1840.741022] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1840.754208] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1840.754248] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1840.754269] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_TILING
[ 1840.754279] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1840.754323] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.754407] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_CREATE
[ 1840.754432] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_DOMAIN
[ 1840.754525] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_TILING
[ 1840.754543] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_PRIME_HANDLE_TO_FD
[ 1840.754626] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1840.754777] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1840.754797] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1840.755053] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1840.756239] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1840.756258] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1840.756364] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.756373] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.756379] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.756385] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.756391] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.756396] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.756402] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1840.756432] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1840.756442] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ADDFB2
[ 1840.756457] i915 0000:00:02.0: [drm:drm_mode_addfb2] [FB:116]
[ 1840.756463] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1840.824740] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1840.824771] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1840.824792] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_TILING
[ 1840.824802] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1840.824832] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.824907] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_CREATE
[ 1840.824944] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_DOMAIN
[ 1840.825060] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_TILING
[ 1840.825082] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_PRIME_HANDLE_TO_FD
[ 1840.825165] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1840.825338] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.825372] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1840.825380] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1840.825451] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.825457] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.825463] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.825471] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.825476] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.825481] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.825487] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1840.825505] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1840.825514] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ADDFB2
[ 1840.825528] i915 0000:00:02.0: [drm:drm_mode_addfb2] [FB:118]
[ 1840.825533] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1840.826911] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 00000000dccd5e72
[ 1840.826923] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1840.826930] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.826935] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (1)
[ 1840.826941] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (3)
[ 1840.826945] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (2)
[ 1840.826950] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 00000000dccd5e72
[ 1840.840942] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_CREATE
[ 1840.840989] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_DOMAIN
[ 1840.846794] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_TILING
[ 1840.846844] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_PRIME_HANDLE_TO_FD
[ 1840.847012] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1840.847300] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1840.847313] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1840.847413] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.847424] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.847436] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.847450] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.847461] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.847469] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.847478] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1840.847518] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1840.847532] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ADDFB2
[ 1840.847550] i915 0000:00:02.0: [drm:drm_mode_addfb2] [FB:114]
[ 1840.847559] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1840.847599] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.847609] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 00000000dccd5e72
[ 1840.847621] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1840.847626] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1840.847630] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 0000000029beba30 state to 00000000dccd5e72
[ 1840.847641] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1840.847646] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000086ab33de state to 00000000dccd5e72
[ 1840.847656] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:114] for [PLANE:46:primary B] state 0000000029beba30
[ 1840.847662] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1840.847666] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1840.847670] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1840.847673] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1840.847680] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 000000009f0eff73 state to 00000000dccd5e72
[ 1840.847688] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 000000009f0eff73
[ 1840.847694] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1840.847698] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1840.847700] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (3)
[ 1840.847705] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_plane] Link [PLANE:56:cursor B] state 000000009f0eff73 to [CRTC:60:pipe B]
[ 1840.847713] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1840.847717] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1840.847725] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1840.847728] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1840.847731] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000a993f7e7 state to 00000000dccd5e72
[ 1840.847737] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1840.847741] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 00000000dccd5e72
[ 1840.847755] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1840.847765] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1840.847773] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000dccd5e72
[ 1840.847779] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000dccd5e72
[ 1840.847787] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1840.847791] [drm:drm_mode_object_get] OBJ ID: 114 (2)
[ 1840.847802] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.848158] [drm:drm_mode_object_get] OBJ ID: 118 (2)
[ 1840.848168] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 0 -> 1, off 0, on 1, ms 0
[ 1840.848469] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 00000000dccd5e72
[ 1840.848478] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1840.848483] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.848487] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1840.848491] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1840.848495] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1840.848498] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (3)
[ 1840.848501] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (2)
[ 1840.848505] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 00000000dccd5e72
[ 1840.848545] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.848557] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 00000000dccd5e72
[ 1840.848566] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1840.848570] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1840.848574] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000aa902736 state to 00000000dccd5e72
[ 1840.848582] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1840.848586] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000086ab33de state to 00000000dccd5e72
[ 1840.848596] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:114] for [PLANE:46:primary B] state 00000000aa902736
[ 1840.848601] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1840.848605] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1840.848608] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1840.848612] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1840.848619] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 000000009f0eff73 state to 00000000dccd5e72
[ 1840.848627] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 000000009f0eff73
[ 1840.848633] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1840.848636] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1840.848639] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (3)
[ 1840.848644] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_plane] Link [PLANE:56:cursor B] state 000000009f0eff73 to [CRTC:60:pipe B]
[ 1840.848651] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1840.848655] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1840.848662] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1840.848665] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1840.848669] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000a993f7e7 state to 00000000dccd5e72
[ 1840.848674] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1840.848679] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 00000000dccd5e72
[ 1840.848693] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1840.848701] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1840.848710] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000dccd5e72
[ 1840.848715] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000dccd5e72
[ 1840.848723] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1840.848726] [drm:drm_mode_object_get] OBJ ID: 114 (2)
[ 1840.848737] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.849062] [drm:drm_mode_object_get] OBJ ID: 118 (2)
[ 1840.849071] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 0 -> 1, off 0, on 1, ms 0
[ 1840.849347] i915 0000:00:02.0: [drm:drm_atomic_nonblocking_commit] committing 00000000dccd5e72 nonblocking
[ 1840.854889] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1840.857785] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 80742, current 80742
[ 1840.857842] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 00000000dccd5e72
[ 1840.857855] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1840.857864] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.857870] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1840.857876] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1840.857880] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1840.857887] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 00000000dccd5e72
[ 1840.874467] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1840.907339] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1840.907362] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1840.907465] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.907477] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.907486] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.907495] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.907504] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.907512] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.907521] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1840.907572] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.907583] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000006ca633e6
[ 1840.907594] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1840.907599] [drm:drm_mode_object_get] OBJ ID: 114 (4)
[ 1840.907604] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000d8dc374b state to 000000006ca633e6
[ 1840.907613] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1840.907618] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000013c23e8e state to 000000006ca633e6
[ 1840.907627] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 00000000d8dc374b
[ 1840.907633] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1840.907636] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1840.907639] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1840.907642] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1840.907649] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1840.907652] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1840.907655] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000bf2c09d4 state to 000000006ca633e6
[ 1840.907661] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 00000000bf2c09d4
[ 1840.907667] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1840.907670] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1840.907673] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1840.907676] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1840.907681] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1840.907684] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1840.907690] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1840.907693] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1840.907697] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 0000000041a64cff state to 000000006ca633e6
[ 1840.907702] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1840.907706] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000006ca633e6
[ 1840.907717] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1840.907723] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1840.907731] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000006ca633e6
[ 1840.907736] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000006ca633e6
[ 1840.907744] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1840.907748] [drm:drm_mode_object_get] OBJ ID: 79 (2)
[ 1840.907757] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.908065] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1840.908070] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1840.908077] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.908343] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000006ca633e6
[ 1840.908350] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1840.908354] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.908358] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1840.908361] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1840.908365] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1840.908368] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1840.908371] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1840.908375] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000006ca633e6
[ 1840.908404] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.908413] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000006ca633e6
[ 1840.908420] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1840.908424] [drm:drm_mode_object_get] OBJ ID: 114 (4)
[ 1840.908427] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000a13a42a2 state to 000000006ca633e6
[ 1840.908434] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1840.908437] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000013c23e8e state to 000000006ca633e6
[ 1840.908445] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 00000000a13a42a2
[ 1840.908450] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1840.908453] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1840.908456] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1840.908459] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1840.908464] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1840.908466] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1840.908469] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000bf2c09d4 state to 000000006ca633e6
[ 1840.908474] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 00000000bf2c09d4
[ 1840.908480] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1840.908482] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1840.908485] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1840.908488] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1840.908492] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1840.908496] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1840.908501] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1840.908504] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1840.908508] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 0000000041a64cff state to 000000006ca633e6
[ 1840.908514] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1840.908519] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000006ca633e6
[ 1840.908530] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1840.908536] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1840.908544] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000006ca633e6
[ 1840.908549] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000006ca633e6
[ 1840.908556] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1840.908559] [drm:drm_mode_object_get] OBJ ID: 79 (2)
[ 1840.908567] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.908827] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1840.908831] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1840.908836] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.909094] i915 0000:00:02.0: [drm:drm_atomic_nonblocking_commit] committing 000000006ca633e6 nonblocking
[ 1840.909122] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1840.920354] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1840.920394] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1840.920546] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_TILING
[ 1840.920558] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1840.920603] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.924531] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 80746, current 80746
[ 1840.924763] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1840.924776] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1840.924869] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.924878] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.924884] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.924890] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.924897] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.924902] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.924908] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1840.924941] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.924953] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 00000000bc194496
[ 1840.924961] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1840.924965] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1840.924968] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000cd5ff136 state to 00000000bc194496
[ 1840.924974] [drm:drm_mode_object_get] OBJ ID: 111 (3)
[ 1840.924977] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 000000003e43d8ee state to 00000000bc194496
[ 1840.924983] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:114] for [PLANE:46:primary B] state 00000000cd5ff136
[ 1840.924987] [drm:drm_mode_object_get] OBJ ID: 114 (5)
[ 1840.924990] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1840.924992] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (6)
[ 1840.924994] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1840.924998] [drm:drm_mode_object_get] OBJ ID: 118 (5)
[ 1840.925000] [drm:drm_mode_object_get] OBJ ID: 118 (6)
[ 1840.925002] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000a9830a76 state to 00000000bc194496
[ 1840.925007] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 00000000a9830a76
[ 1840.925010] [drm:drm_mode_object_get] OBJ ID: 118 (9)
[ 1840.925012] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (10)
[ 1840.925014] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (9)
[ 1840.925016] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1840.925033] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (6)
[ 1840.925036] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1840.925042] [drm:drm_mode_object_get] OBJ ID: 91 (6)
[ 1840.925046] [drm:drm_mode_object_get] OBJ ID: 91 (7)
[ 1840.925049] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000751f418c state to 00000000bc194496
[ 1840.925055] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (8)
[ 1840.925058] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 00000000bc194496
[ 1840.925071] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1840.925078] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1840.925089] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000bc194496
[ 1840.925095] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000bc194496
[ 1840.925103] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1840.925107] [drm:drm_mode_object_get] OBJ ID: 114 (4)
[ 1840.925119] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.925428] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1840.925433] [drm:drm_mode_object_get] OBJ ID: 118 (6)
[ 1840.925439] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.925743] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 00000000bc194496
[ 1840.925750] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (7)
[ 1840.925754] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1840.925758] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1840.925762] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1840.925765] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1840.925770] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1840.925773] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1840.925777] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 00000000bc194496
[ 1840.925805] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.925815] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 00000000bc194496
[ 1840.925823] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1840.925826] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1840.925830] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000d5a23287 state to 00000000bc194496
[ 1840.925837] [drm:drm_mode_object_get] OBJ ID: 111 (3)
[ 1840.925841] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 000000003e43d8ee state to 00000000bc194496
[ 1840.925849] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:114] for [PLANE:46:primary B] state 00000000d5a23287
[ 1840.925855] [drm:drm_mode_object_get] OBJ ID: 114 (5)
[ 1840.925859] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1840.925862] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (6)
[ 1840.925865] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1840.925871] [drm:drm_mode_object_get] OBJ ID: 118 (5)
[ 1840.925875] [drm:drm_mode_object_get] OBJ ID: 118 (6)
[ 1840.925878] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000a9830a76 state to 00000000bc194496
[ 1840.925885] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 00000000a9830a76
[ 1840.925890] [drm:drm_mode_object_get] OBJ ID: 118 (9)
[ 1840.925893] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (10)
[ 1840.925897] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (9)
[ 1840.925900] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1840.925905] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (6)
[ 1840.925908] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1840.925914] [drm:drm_mode_object_get] OBJ ID: 91 (6)
[ 1840.925917] [drm:drm_mode_object_get] OBJ ID: 91 (7)
[ 1840.925921] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000751f418c state to 00000000bc194496
[ 1840.925927] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (8)
[ 1840.925933] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 00000000bc194496
[ 1840.925942] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1840.925950] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1840.925957] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000bc194496
[ 1840.925963] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000bc194496
[ 1840.925970] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1840.925974] [drm:drm_mode_object_get] OBJ ID: 114 (4)
[ 1840.925981] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.926274] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1840.926278] [drm:drm_mode_object_get] OBJ ID: 118 (6)
[ 1840.926284] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.926559] i915 0000:00:02.0: [drm:drm_atomic_nonblocking_commit] committing 00000000bc194496 nonblocking
[ 1840.926705] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000006ca633e6
[ 1840.926711] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (7)
[ 1840.926714] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1840.926717] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1840.926720] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1840.926723] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1840.926726] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1840.926729] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1840.926732] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000006ca633e6
[ 1840.930447] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.941190] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 80747, current 80747
[ 1840.941423] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1840.941442] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1840.941527] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.941539] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.941548] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.941557] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.941567] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1840.941574] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1840.941583] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1840.941625] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.941634] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000006ca633e6
[ 1840.941645] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1840.941651] [drm:drm_mode_object_get] OBJ ID: 114 (4)
[ 1840.941655] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 000000005e3b3887 state to 000000006ca633e6
[ 1840.941664] [drm:drm_mode_object_get] OBJ ID: 111 (3)
[ 1840.941668] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000086ab33de state to 000000006ca633e6
[ 1840.941678] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 000000005e3b3887
[ 1840.941684] [drm:drm_mode_object_get] OBJ ID: 79 (5)
[ 1840.941689] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1840.941692] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (6)
[ 1840.941696] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1840.941703] [drm:drm_mode_object_get] OBJ ID: 118 (5)
[ 1840.941706] [drm:drm_mode_object_get] OBJ ID: 118 (6)
[ 1840.941710] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000466bf83b state to 000000006ca633e6
[ 1840.941718] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 00000000466bf83b
[ 1840.941723] [drm:drm_mode_object_get] OBJ ID: 118 (9)
[ 1840.941727] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (10)
[ 1840.941730] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (9)
[ 1840.941734] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1840.941738] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (6)
[ 1840.941742] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1840.941748] [drm:drm_mode_object_get] OBJ ID: 91 (6)
[ 1840.941751] [drm:drm_mode_object_get] OBJ ID: 91 (7)
[ 1840.941754] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000009a049e2e state to 000000006ca633e6
[ 1840.941760] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (8)
[ 1840.941764] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000006ca633e6
[ 1840.941775] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1840.941783] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1840.941791] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000006ca633e6
[ 1840.941797] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000006ca633e6
[ 1840.941806] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1840.941810] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1840.941821] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.942174] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1840.942180] [drm:drm_mode_object_get] OBJ ID: 118 (6)
[ 1840.942187] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.942459] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000006ca633e6
[ 1840.942466] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (7)
[ 1840.942471] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1840.942475] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1840.942479] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1840.942483] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1840.942486] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1840.942489] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1840.942493] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000006ca633e6
[ 1840.942521] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1840.942532] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000006ca633e6
[ 1840.942540] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1840.942544] [drm:drm_mode_object_get] OBJ ID: 114 (4)
[ 1840.942547] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 000000005705d457 state to 000000006ca633e6
[ 1840.942554] [drm:drm_mode_object_get] OBJ ID: 111 (3)
[ 1840.942558] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000086ab33de state to 000000006ca633e6
[ 1840.942566] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 000000005705d457
[ 1840.942571] [drm:drm_mode_object_get] OBJ ID: 79 (5)
[ 1840.942574] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1840.942578] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (6)
[ 1840.942581] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1840.942586] [drm:drm_mode_object_get] OBJ ID: 118 (5)
[ 1840.942589] [drm:drm_mode_object_get] OBJ ID: 118 (6)
[ 1840.942593] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000466bf83b state to 000000006ca633e6
[ 1840.942600] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 00000000466bf83b
[ 1840.942605] [drm:drm_mode_object_get] OBJ ID: 118 (9)
[ 1840.942608] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (10)
[ 1840.942612] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (9)
[ 1840.942615] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1840.942620] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (6)
[ 1840.942623] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1840.942629] [drm:drm_mode_object_get] OBJ ID: 91 (6)
[ 1840.942632] [drm:drm_mode_object_get] OBJ ID: 91 (7)
[ 1840.942636] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000009a049e2e state to 000000006ca633e6
[ 1840.942642] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (8)
[ 1840.942648] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000006ca633e6
[ 1840.942657] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1840.942664] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1840.942670] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000006ca633e6
[ 1840.942675] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000006ca633e6
[ 1840.942682] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1840.942686] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1840.942693] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.942957] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1840.942961] [drm:drm_mode_object_get] OBJ ID: 118 (6)
[ 1840.942967] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1840.943237] i915 0000:00:02.0: [drm:drm_atomic_nonblocking_commit] committing 000000006ca633e6 nonblocking
[ 1840.943379] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 00000000bc194496
[ 1840.943387] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (7)
[ 1840.943392] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1840.943397] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1840.943401] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1840.943404] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1840.943408] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1840.943412] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1840.943417] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 00000000bc194496
[ 1840.957870] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 80748, current 80748
[ 1840.958042] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000006ca633e6
[ 1840.958054] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1840.958062] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1840.958066] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1840.958070] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1840.958074] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1840.958079] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1840.958082] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1840.958087] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000006ca633e6
[ 1840.974550] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1841.121565] [drm:drm_stub_open]
[ 1841.121577] i915 0000:00:02.0: [drm:drm_open_helper] comm="Xwayland", pid=5445, minor=128
[ 1841.121584] i915 0000:00:02.0: [drm:i915_gem_open [i915]]
[ 1841.121789] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.121798] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.146122] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.146136] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.147778] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.147789] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.147795] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_QUERY
[ 1841.147801] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.147807] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.147811] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_QUERY
[ 1841.147816] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.147820] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland", pid=5445, ret=-19
[ 1841.147825] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_QUERY
[ 1841.147830] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_QUERY
[ 1841.147941] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.147963] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_TILING
[ 1841.147971] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_GET_TILING
[ 1841.147976] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1841.147984] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_GET_APERTURE
[ 1841.148001] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CONTEXT_GETPARAM
[ 1841.148007] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.148029] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_TILING
[ 1841.148037] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1841.148045] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.148053] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.148061] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.148068] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_GET_APERTURE
[ 1841.151684] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_GET_CAP
[ 1841.154612] i915 0000:00:02.0: [drm:drm_file_free] comm="Xwayland", pid=5445, dev=0xe280, open_count=5
[ 1841.155689] [drm:drm_stub_open]
[ 1841.155698] i915 0000:00:02.0: [drm:drm_open_helper] comm="Xwayland", pid=5445, minor=128
[ 1841.155704] i915 0000:00:02.0: [drm:i915_gem_open [i915]]
[ 1841.155928] i915 0000:00:02.0: [drm:drm_file_free] comm="Xwayland", pid=5445, dev=0xe280, open_count=5
[ 1841.155946] [drm:drm_stub_open]
[ 1841.155951] i915 0000:00:02.0: [drm:drm_open_helper] comm="Xwayland", pid=5445, minor=128
[ 1841.155955] i915 0000:00:02.0: [drm:i915_gem_open [i915]]
[ 1841.156492] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.156502] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.156553] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.156559] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.161974] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.161986] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.163652] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.163662] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_VERSION
[ 1841.163669] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_QUERY
[ 1841.163675] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.163680] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.163684] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_QUERY
[ 1841.163690] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.163693] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland", pid=5445, ret=-19
[ 1841.163698] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_QUERY
[ 1841.163703] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_QUERY
[ 1841.163738] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.163760] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_TILING
[ 1841.163768] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_GET_TILING
[ 1841.163773] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1841.163781] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_GET_APERTURE
[ 1841.163791] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CONTEXT_GETPARAM
[ 1841.163798] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.163808] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_TILING
[ 1841.163813] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1841.163819] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.163826] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.163831] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.163836] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_GET_APERTURE
[ 1841.165722] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_GET_CAP
[ 1841.167747] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.167770] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.167794] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.167816] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.167828] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.167837] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.167891] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.167903] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.167918] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.167938] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CONTEXT_CREATE_EXT
[ 1841.167949] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CONTEXT_SETPARAM
[ 1841.167955] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CONTEXT_SETPARAM
[ 1841.167960] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland", pid=5445, ret=-19
[ 1841.167980] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.167990] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.168004] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.168062] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.168074] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.168091] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.168105] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1841.168117] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.168127] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.168137] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.168152] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CONTEXT_CREATE_EXT
[ 1841.168159] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CONTEXT_SETPARAM
[ 1841.168165] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CONTEXT_SETPARAM
[ 1841.168169] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland", pid=5445, ret=-19
[ 1841.168183] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.168193] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.168211] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.168226] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.168236] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.168247] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.168263] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1841.168846] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_QUERY
[ 1841.168855] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GETPARAM
[ 1841.168861] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CONTEXT_GETPARAM
[ 1841.171684] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1841.171785] [drm:intel_engine_cmd_parser [i915]] CMD: Rejected register 0x000020C0 in command: 0x11000001 (rcs0)
[ 1841.172026] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1841.172038] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1841.172046] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1841.172053] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.172068] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.172085] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.172105] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1841.172111] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.172122] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.172134] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.172148] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1841.172157] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1841.172229] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1841.172235] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1841.172241] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1841.172246] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.172257] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.172273] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.172288] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1841.172294] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.172304] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.172315] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.172328] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1841.185977] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.186030] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.186062] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.186096] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1841.202104] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.202135] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.202159] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_TILING
[ 1841.202192] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1841.202208] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.225957] [drm:drm_stub_open]
[ 1841.225969] i915 0000:00:02.0: [drm:drm_open_helper] comm="sway", pid=5381, minor=1
[ 1841.225976] i915 0000:00:02.0: [drm:i915_gem_open [i915]]
[ 1841.226256] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=0, DRM_IOCTL_AUTH_MAGIC
[ 1841.226267] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-13
[ 1841.230407] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1841.230440] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1841.230465] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_SET_TILING
[ 1841.230489] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_PRIME_HANDLE_TO_FD
[ 1841.230528] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1841.230787] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1841.230810] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1841.230838] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_WAIT
[ 1841.232719] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1841.232740] i915 0000:00:02.0: [drm:drm_ioctl] comm="Xwayland" pid=5445, dev=0xe280, auth=0, I915_GEM_WAIT
[ 1841.906986] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1841.907465] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1841.907480] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1841.907577] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1841.907589] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1841.907596] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1841.907601] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1841.907608] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1841.907613] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1841.907618] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1841.907800] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1841.907809] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000006ca633e6
[ 1841.907818] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1841.907823] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1841.907826] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000304a30b2 state to 000000006ca633e6
[ 1841.907832] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1841.907835] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 000000003e43d8ee state to 000000006ca633e6
[ 1841.907842] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:114] for [PLANE:46:primary B] state 00000000304a30b2
[ 1841.907846] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1841.907848] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1841.907851] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1841.907853] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1841.907857] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1841.907859] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1841.907861] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000789660c8 state to 000000006ca633e6
[ 1841.907865] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 00000000789660c8
[ 1841.907869] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1841.907871] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1841.907873] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1841.907875] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1841.907878] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1841.907880] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1841.907885] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1841.907887] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1841.907890] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000002ccebbca state to 000000006ca633e6
[ 1841.907893] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1841.907896] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000006ca633e6
[ 1841.907905] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1841.907912] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1841.907918] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000006ca633e6
[ 1841.907921] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000006ca633e6
[ 1841.907928] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1841.907931] [drm:drm_mode_object_get] OBJ ID: 114 (2)
[ 1841.907938] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1841.908163] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1841.908168] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1841.908175] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1841.908462] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000006ca633e6
[ 1841.908469] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1841.908474] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1841.908477] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1841.908481] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1841.908485] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1841.908489] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1841.908492] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1841.908497] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000006ca633e6
[ 1841.908527] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1841.908537] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000006ca633e6
[ 1841.908543] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1841.908547] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1841.908551] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000abb92305 state to 000000006ca633e6
[ 1841.908558] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1841.908562] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 000000003e43d8ee state to 000000006ca633e6
[ 1841.908570] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:114] for [PLANE:46:primary B] state 00000000abb92305
[ 1841.908576] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1841.908580] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1841.908584] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1841.908587] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1841.908592] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1841.908595] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1841.908599] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000789660c8 state to 000000006ca633e6
[ 1841.908606] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 00000000789660c8
[ 1841.908611] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1841.908615] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1841.908619] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1841.908622] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1841.908627] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1841.908630] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1841.908637] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1841.908640] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1841.908644] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000002ccebbca state to 000000006ca633e6
[ 1841.908650] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1841.908655] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000006ca633e6
[ 1841.908666] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1841.908672] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1841.908678] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000006ca633e6
[ 1841.908683] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000006ca633e6
[ 1841.908689] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1841.908693] [drm:drm_mode_object_get] OBJ ID: 114 (2)
[ 1841.908699] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1841.908974] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1841.908978] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1841.908984] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1841.909270] i915 0000:00:02.0: [drm:drm_atomic_nonblocking_commit] committing 000000006ca633e6 nonblocking
[ 1841.909332] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1841.925361] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 80806, current 80806
[ 1841.925437] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000006ca633e6
[ 1841.925447] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1841.925453] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1841.925458] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1841.925464] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1841.925468] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1841.925473] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1841.925477] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1841.925482] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000006ca633e6
[ 1841.942066] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1842.911915] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1842.912306] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1842.912324] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1842.912419] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1842.912444] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1842.912454] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1842.912475] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1842.912485] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1842.912494] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1842.912503] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1842.912511] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1842.912519] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1842.912560] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1842.912567] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 00000000bc194496
[ 1842.912577] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1842.912582] [drm:drm_mode_object_get] OBJ ID: 114 (4)
[ 1842.912584] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000304a30b2 state to 00000000bc194496
[ 1842.912591] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1842.912593] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000013c23e8e state to 00000000bc194496
[ 1842.912600] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 00000000304a30b2
[ 1842.912604] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1842.912607] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1842.912609] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1842.912611] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1842.912616] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1842.912618] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1842.912620] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000466bf83b state to 00000000bc194496
[ 1842.912624] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 00000000466bf83b
[ 1842.912628] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1842.912630] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1842.912632] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1842.912634] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1842.912638] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1842.912640] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1842.912644] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1842.912646] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1842.912648] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000544a3692 state to 00000000bc194496
[ 1842.912652] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1842.912655] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 00000000bc194496
[ 1842.912664] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1842.912670] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1842.912675] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000bc194496
[ 1842.912679] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000bc194496
[ 1842.912685] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1842.912688] [drm:drm_mode_object_get] OBJ ID: 79 (2)
[ 1842.912696] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1842.912953] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1842.912956] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1842.912960] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1842.913186] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 00000000bc194496
[ 1842.913191] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1842.913194] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1842.913197] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1842.913199] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1842.913202] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1842.913204] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1842.913206] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1842.913209] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 00000000bc194496
[ 1842.913232] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1842.913238] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 00000000bc194496
[ 1842.913242] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1842.913244] [drm:drm_mode_object_get] OBJ ID: 114 (4)
[ 1842.913247] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000466bf83b state to 00000000bc194496
[ 1842.913251] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1842.913253] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000013c23e8e state to 00000000bc194496
[ 1842.913258] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 00000000466bf83b
[ 1842.913262] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1842.913264] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1842.913266] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1842.913268] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1842.913271] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1842.913274] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1842.913276] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 0000000009c11c16 state to 00000000bc194496
[ 1842.913280] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 0000000009c11c16
[ 1842.913283] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1842.913285] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1842.913287] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1842.913290] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1842.913292] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1842.913294] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1842.913298] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1842.913300] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1842.913302] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000544a3692 state to 00000000bc194496
[ 1842.913306] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1842.913309] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 00000000bc194496
[ 1842.913315] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1842.913320] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1842.913324] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000bc194496
[ 1842.913327] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000bc194496
[ 1842.913331] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1842.913334] [drm:drm_mode_object_get] OBJ ID: 79 (2)
[ 1842.913338] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1842.913532] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1842.913535] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1842.913538] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1842.913750] i915 0000:00:02.0: [drm:drm_atomic_nonblocking_commit] committing 00000000bc194496 nonblocking
[ 1842.913802] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1842.926193] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 80866, current 80866
[ 1842.926276] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 00000000bc194496
[ 1842.926285] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1842.926289] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1842.926293] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1842.926297] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1842.926299] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1842.926303] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1842.926306] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1842.926310] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 00000000bc194496
[ 1842.942872] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1843.916373] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1843.916648] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1843.916662] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1843.916716] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1843.916726] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1843.916732] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1843.916737] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1843.916744] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1843.916749] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1843.916755] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1843.916786] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1843.916794] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 0000000005859f8a
[ 1843.916803] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1843.916807] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1843.916809] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000d5a23287 state to 0000000005859f8a
[ 1843.916816] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1843.916819] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 000000003e43d8ee state to 0000000005859f8a
[ 1843.916826] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:114] for [PLANE:46:primary B] state 00000000d5a23287
[ 1843.916830] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1843.916832] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1843.916835] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1843.916837] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1843.916841] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1843.916843] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1843.916846] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 000000005705d457 state to 0000000005859f8a
[ 1843.916850] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 000000005705d457
[ 1843.916854] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1843.916856] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1843.916858] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1843.916860] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1843.916864] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1843.916866] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1843.916871] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1843.916873] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1843.916875] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000cd3cecab state to 0000000005859f8a
[ 1843.916879] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1843.916882] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 0000000005859f8a
[ 1843.916892] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1843.916898] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1843.916903] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000005859f8a
[ 1843.916907] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000005859f8a
[ 1843.916913] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1843.916916] [drm:drm_mode_object_get] OBJ ID: 114 (2)
[ 1843.916924] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1843.917179] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1843.917184] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1843.917192] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1843.917450] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 0000000005859f8a
[ 1843.917455] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1843.917458] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1843.917460] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1843.917463] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1843.917465] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1843.917467] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1843.917469] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1843.917472] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 0000000005859f8a
[ 1843.917495] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1843.917502] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 0000000005859f8a
[ 1843.917506] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1843.917509] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1843.917511] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 000000005e3b3887 state to 0000000005859f8a
[ 1843.917516] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1843.917518] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 000000003e43d8ee state to 0000000005859f8a
[ 1843.917523] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:114] for [PLANE:46:primary B] state 000000005e3b3887
[ 1843.917526] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1843.917529] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1843.917531] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1843.917533] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1843.917536] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1843.917538] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1843.917540] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 000000005705d457 state to 0000000005859f8a
[ 1843.917544] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 000000005705d457
[ 1843.917547] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1843.917549] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1843.917551] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1843.917554] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1843.917556] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1843.917558] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1843.917562] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1843.917564] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1843.917566] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000cd3cecab state to 0000000005859f8a
[ 1843.917570] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1843.917573] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 0000000005859f8a
[ 1843.917579] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1843.917583] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1843.917588] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000005859f8a
[ 1843.917592] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000005859f8a
[ 1843.917596] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1843.917598] [drm:drm_mode_object_get] OBJ ID: 114 (2)
[ 1843.917603] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1843.917797] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1843.917799] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1843.917803] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1843.918005] i915 0000:00:02.0: [drm:drm_atomic_nonblocking_commit] committing 0000000005859f8a nonblocking
[ 1843.918053] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1843.927005] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 80926, current 80926
[ 1843.927079] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 0000000005859f8a
[ 1843.927086] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1843.927092] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1843.927096] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1843.927100] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1843.927103] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1843.927106] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1843.927109] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1843.927114] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 0000000005859f8a
[ 1843.943692] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1844.920757] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1844.921144] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1844.921162] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1844.921255] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1844.921268] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1844.921278] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1844.921286] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1844.921295] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1844.921303] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1844.921311] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1844.921348] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1844.921356] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 00000000d5b25ed6
[ 1844.921366] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1844.921370] [drm:drm_mode_object_get] OBJ ID: 114 (4)
[ 1844.921373] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000d5a23287 state to 00000000d5b25ed6
[ 1844.921379] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1844.921382] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000086ab33de state to 00000000d5b25ed6
[ 1844.921389] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 00000000d5a23287
[ 1844.921393] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1844.921396] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1844.921398] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1844.921400] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1844.921404] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1844.921407] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1844.921409] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 0000000009c11c16 state to 00000000d5b25ed6
[ 1844.921414] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 0000000009c11c16
[ 1844.921417] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1844.921419] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1844.921422] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1844.921424] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1844.921427] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1844.921430] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1844.921434] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1844.921436] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1844.921439] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000001291ffe2 state to 00000000d5b25ed6
[ 1844.921443] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1844.921445] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 00000000d5b25ed6
[ 1844.921455] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1844.921461] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1844.921467] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000d5b25ed6
[ 1844.921470] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000d5b25ed6
[ 1844.921477] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1844.921479] [drm:drm_mode_object_get] OBJ ID: 79 (2)
[ 1844.921487] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1844.921726] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1844.921729] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1844.921734] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1844.921947] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 00000000d5b25ed6
[ 1844.921965] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1844.921969] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1844.921973] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1844.921976] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1844.921980] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1844.921982] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1844.921985] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1844.921987] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 00000000d5b25ed6
[ 1844.922006] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1844.922013] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 00000000d5b25ed6
[ 1844.922017] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1844.922020] [drm:drm_mode_object_get] OBJ ID: 114 (4)
[ 1844.922022] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000466bf83b state to 00000000d5b25ed6
[ 1844.922027] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1844.922029] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000086ab33de state to 00000000d5b25ed6
[ 1844.922034] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 00000000466bf83b
[ 1844.922038] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1844.922040] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1844.922042] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1844.922044] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1844.922047] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1844.922049] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1844.922051] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 0000000009c11c16 state to 00000000d5b25ed6
[ 1844.922055] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 0000000009c11c16
[ 1844.922059] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1844.922061] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1844.922063] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1844.922065] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1844.922068] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1844.922070] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1844.922074] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1844.922076] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1844.922079] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000001291ffe2 state to 00000000d5b25ed6
[ 1844.922082] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1844.922085] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 00000000d5b25ed6
[ 1844.922091] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1844.922096] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1844.922100] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000d5b25ed6
[ 1844.922104] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000d5b25ed6
[ 1844.922108] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1844.922110] [drm:drm_mode_object_get] OBJ ID: 79 (2)
[ 1844.922115] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1844.922324] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1844.922327] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1844.922330] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1844.922548] i915 0000:00:02.0: [drm:drm_atomic_nonblocking_commit] committing 00000000d5b25ed6 nonblocking
[ 1844.922599] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1844.927831] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 80986, current 80986
[ 1844.927915] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 00000000d5b25ed6
[ 1844.927923] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1844.927929] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1844.927932] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1844.927937] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1844.927939] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1844.927943] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1844.927946] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1844.927950] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 00000000d5b25ed6
[ 1844.944511] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1845.926022] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1845.926297] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1845.926310] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1845.926364] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1845.926372] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1845.926379] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1845.926385] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1845.926391] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1845.926396] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1845.926402] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1845.926434] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1845.926441] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000005898ede7
[ 1845.926450] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1845.926455] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1845.926458] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000d5a23287 state to 000000005898ede7
[ 1845.926465] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1845.926468] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 000000003e43d8ee state to 000000005898ede7
[ 1845.926475] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:114] for [PLANE:46:primary B] state 00000000d5a23287
[ 1845.926479] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1845.926482] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1845.926484] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1845.926486] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1845.926490] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1845.926492] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1845.926494] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 000000005705d457 state to 000000005898ede7
[ 1845.926499] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 000000005705d457
[ 1845.926502] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1845.926504] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1845.926506] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1845.926508] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1845.926512] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1845.926514] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1845.926518] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1845.926520] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1845.926523] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 0000000086d1e177 state to 000000005898ede7
[ 1845.926526] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1845.926529] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000005898ede7
[ 1845.926538] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1845.926544] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1845.926550] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000005898ede7
[ 1845.926553] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000005898ede7
[ 1845.926560] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1845.926562] [drm:drm_mode_object_get] OBJ ID: 114 (2)
[ 1845.926570] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1845.926789] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1845.926792] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1845.926797] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1845.927045] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000005898ede7
[ 1845.927050] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1845.927053] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1845.927056] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1845.927058] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1845.927060] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1845.927063] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1845.927065] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1845.927068] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000005898ede7
[ 1845.927087] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1845.927094] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000005898ede7
[ 1845.927099] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1845.927101] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1845.927103] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 000000005e3b3887 state to 000000005898ede7
[ 1845.927108] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1845.927110] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 000000003e43d8ee state to 000000005898ede7
[ 1845.927115] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:114] for [PLANE:46:primary B] state 000000005e3b3887
[ 1845.927119] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1845.927121] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1845.927123] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1845.927125] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1845.927129] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1845.927131] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1845.927133] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 000000005705d457 state to 000000005898ede7
[ 1845.927137] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 000000005705d457
[ 1845.927141] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1845.927143] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1845.927145] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1845.927147] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1845.927150] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1845.927152] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1845.927156] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1845.927159] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1845.927161] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 0000000086d1e177 state to 000000005898ede7
[ 1845.927164] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1845.927167] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000005898ede7
[ 1845.927173] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1845.927179] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1845.927184] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000005898ede7
[ 1845.927187] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000005898ede7
[ 1845.927192] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1845.927194] [drm:drm_mode_object_get] OBJ ID: 114 (2)
[ 1845.927199] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1845.927392] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1845.927395] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1845.927398] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1845.927586] i915 0000:00:02.0: [drm:drm_atomic_nonblocking_commit] committing 000000005898ede7 nonblocking
[ 1845.927637] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1845.928601] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 81046, current 81046
[ 1845.928647] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000005898ede7
[ 1845.928664] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1845.928668] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1845.928671] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1845.928675] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1845.928677] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1845.928681] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1845.928685] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1845.928689] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000005898ede7
[ 1845.945329] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1846.930197] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1846.930522] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1846.930539] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1846.930624] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1846.930635] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1846.930643] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1846.930651] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1846.930660] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1846.930667] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1846.930675] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1846.930716] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1846.930726] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 0000000045facf37
[ 1846.930738] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1846.930744] [drm:drm_mode_object_get] OBJ ID: 114 (4)
[ 1846.930747] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000d5a23287 state to 0000000045facf37
[ 1846.930756] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1846.930759] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000013c23e8e state to 0000000045facf37
[ 1846.930768] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 00000000d5a23287
[ 1846.930774] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1846.930777] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1846.930781] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1846.930784] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1846.930789] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1846.930792] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1846.930796] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 0000000009c11c16 state to 0000000045facf37
[ 1846.930802] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 0000000009c11c16
[ 1846.930807] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1846.930810] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1846.930813] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1846.930816] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1846.930821] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1846.930824] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1846.930829] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1846.930832] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1846.930836] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000731f4db9 state to 0000000045facf37
[ 1846.930841] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1846.930845] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 0000000045facf37
[ 1846.930858] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1846.930866] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1846.930874] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000045facf37
[ 1846.930878] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000045facf37
[ 1846.930886] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1846.930890] [drm:drm_mode_object_get] OBJ ID: 79 (2)
[ 1846.930900] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1846.931248] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1846.931255] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1846.931264] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1846.931657] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 0000000045facf37
[ 1846.931666] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1846.931673] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1846.931679] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1846.931685] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1846.931690] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1846.931696] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1846.931701] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1846.931707] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 0000000045facf37
[ 1846.931746] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1846.931760] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 0000000045facf37
[ 1846.931769] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1846.931775] [drm:drm_mode_object_get] OBJ ID: 114 (4)
[ 1846.931780] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000466bf83b state to 0000000045facf37
[ 1846.931790] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1846.931796] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000013c23e8e state to 0000000045facf37
[ 1846.931808] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:46:primary B] state 00000000466bf83b
[ 1846.931816] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1846.931821] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (5)
[ 1846.931826] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1846.931831] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1846.931840] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1846.931845] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1846.931850] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 0000000009c11c16 state to 0000000045facf37
[ 1846.931861] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:118] for [PLANE:56:cursor B] state 0000000009c11c16
[ 1846.931869] [drm:drm_mode_object_get] OBJ ID: 118 (7)
[ 1846.931874] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (8)
[ 1846.931880] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (7)
[ 1846.931885] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (6)
[ 1846.931891] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (5)
[ 1846.931897] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (4)
[ 1846.931905] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1846.931910] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1846.931915] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000731f4db9 state to 0000000045facf37
[ 1846.931940] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1846.931946] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 0000000045facf37
[ 1846.931961] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1846.931971] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1846.931982] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000045facf37
[ 1846.931989] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000045facf37
[ 1846.932011] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1846.932015] [drm:drm_mode_object_get] OBJ ID: 79 (2)
[ 1846.932021] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1846.932305] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1846.932308] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1846.932314] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[ 1846.932586] i915 0000:00:02.0: [drm:drm_atomic_nonblocking_commit] committing 0000000045facf37 nonblocking
[ 1846.932651] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1846.946150] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 81107, current 81107
[ 1846.946235] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 0000000045facf37
[ 1846.946245] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1846.946252] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1846.946256] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1846.946262] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1846.946266] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1846.946271] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1846.946275] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1846.946280] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 0000000045facf37
[ 1846.962829] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1847.210006] i915 0000:00:02.0: [drm:ibx_hpd_irq_handler [i915]] hotplug event received, stat 0x00200000, dig 0x00101012, pins 0x00000020, long 0x00000020
[ 1847.210498] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:90:DP B] - long
[ 1847.211106] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] Received HPD interrupt on PIN 5 - cnt: 10
[ 1847.211773] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:90:DP B] - long
[ 1847.212847] i915 0000:00:02.0: [drm:i915_hotplug_work_func [i915]] running encoder hotplug functions
[ 1847.213446] i915 0000:00:02.0: [drm:i915_hotplug_work_func [i915]] Connector HDMI-A-1 (pin 5) received hotplug event. (retry 0)
[ 1847.214094] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-1]
[ 1847.214800] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 1847.215279] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 1847.216000] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 1847.216504] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpb
[ 1847.216520] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1847.217017] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 1847.218352] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpb
[ 1847.218365] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 1847.218828] i915 0000:00:02.0: [drm:i915_hotplug_work_func [i915]] Connector DP-1 (pin 5) received hotplug event. (retry 0)
[ 1847.219337] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:91:DP-1]
[ 1847.219909] i915 0000:00:02.0: [drm:intel_encoder_hotplug [i915]] [CONNECTOR:91:DP-1] status updated from connected to disconnected (epoch counter 10->11)
[ 1847.220434] [drm:drm_sysfs_hotplug_event] generating hotplug event
[ 1847.249952] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[ 1847.249980] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[ 1847.249998] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.250007] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:76:LVDS-1]
[ 1847.250019] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:76:LVDS-1] Assigning EDID-1.4 digital sink color depth as 6 bpc.
[ 1847.250026] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:76:LVDS-1] ELD monitor
[ 1847.250031] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:76:LVDS-1] ELD size 20, SAD count 0
[ 1847.250038] [drm:drm_mode_object_put.part.0] OBJ ID: 113 (1)
[ 1847.250096] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:76:LVDS-1] probed modes :
[ 1847.250100] [drm:drm_mode_debug_printmodeline] Modeline "1366x768": 60 76300 1366 1414 1446 1610 768 771 776 790 0x48 0xa
[ 1847.250106] [drm:drm_mode_debug_printmodeline] Modeline "1366x768": 40 50870 1366 1414 1446 1610 768 771 776 790 0x40 0xa
[ 1847.250111] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (3)
[ 1847.250118] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.250125] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (3)
[ 1847.250131] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1847.250138] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (3)
[ 1847.250142] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1847.250148] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (3)
[ 1847.250154] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.250159] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:80:VGA-1]
[ 1847.250163] i915 0000:00:02.0: [drm:intel_crt_detect [i915]] [CONNECTOR:80:VGA-1] force=1
[ 1847.250369] i915 0000:00:02.0: [drm:intel_crt_detect [i915]] ironlake hotplug adpa=0xf40000, result 0
[ 1847.250558] i915 0000:00:02.0: [drm:intel_crt_detect [i915]] CRT not detected via hotplug
[ 1847.250961] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus vga] NAK for addr: 0050 w(1)
[ 1847.251214] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus vga] NAK on first message, retry
[ 1847.251656] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus vga] NAK for addr: 0050 w(1)
[ 1847.251912] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[ 1847.251928] i915 0000:00:02.0: [drm:intel_crt_get_edid [i915]] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[ 1847.252175] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus vga. force bit now 1
[ 1847.253164] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[ 1847.253172] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus vga. force bit now 0
[ 1847.253417] i915 0000:00:02.0: [drm:intel_crt_detect_ddc [i915]] CRT not detected via DDC:0x50 [no valid EDID found]
[ 1847.253662] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:80:VGA-1] disconnected
[ 1847.253672] [drm:drm_mode_object_put.part.0] OBJ ID: 80 (2)
[ 1847.253689] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.253701] [drm:drm_mode_object_put.part.0] OBJ ID: 80 (2)
[ 1847.253713] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.253721] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:83:HDMI-A-1]
[ 1847.253727] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-1]
[ 1847.254204] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 1847.254447] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 1847.254870] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 1847.255125] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpb
[ 1847.255133] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1847.255364] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 1847.256354] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpb
[ 1847.256362] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 1847.256606] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:83:HDMI-A-1] disconnected
[ 1847.256615] [drm:drm_mode_object_put.part.0] OBJ ID: 83 (2)
[ 1847.256629] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.256642] [drm:drm_mode_object_put.part.0] OBJ ID: 83 (2)
[ 1847.256653] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.256661] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:91:DP-1]
[ 1847.256670] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:91:DP-1]
[ 1847.256926] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:91:DP-1] disconnected
[ 1847.256932] i915 0000:00:02.0: [drm:drm_edid_connector_update] [CONNECTOR:91:DP-1] EDID changed, epoch counter 12
[ 1847.256939] [drm:drm_mode_object_put.part.0] OBJ ID: 115 (1)
[ 1847.256949] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1847.256958] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.256968] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1847.256976] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1847.256984] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1847.256991] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1847.256999] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1847.323317] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1847.323353] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_RMFB
[ 1847.323360] [drm:drm_mode_object_put.part.0] OBJ ID: 116 (2)
[ 1847.323364] [drm:drm_mode_object_put.part.0] OBJ ID: 116 (1)
[ 1847.323412] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1847.323425] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_RMFB
[ 1847.323429] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1847.323431] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (1)
[ 1847.323450] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1847.323504] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1847.323513] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 0000000045facf37
[ 1847.323520] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1847.323524] [drm:drm_mode_object_get] OBJ ID: 79 (4)
[ 1847.323528] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 00000000d5a23287 state to 0000000045facf37
[ 1847.323537] [drm:drm_mode_object_get] OBJ ID: 111 (2)
[ 1847.323540] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 000000003e43d8ee state to 0000000045facf37
[ 1847.323545] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:46:primary B] state 00000000d5a23287
[ 1847.323548] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (5)
[ 1847.323552] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_plane] Link [PLANE:46:primary B] state 00000000d5a23287 to [NOCRTC]
[ 1847.323556] [drm:drm_mode_object_get] OBJ ID: 118 (3)
[ 1847.323558] [drm:drm_mode_object_get] OBJ ID: 118 (4)
[ 1847.323561] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 000000005705d457 state to 0000000045facf37
[ 1847.323564] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:56:cursor B] state 000000005705d457
[ 1847.323567] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (5)
[ 1847.323570] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_plane] Link [PLANE:56:cursor B] state 000000005705d457 to [NOCRTC]
[ 1847.323573] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (3)
[ 1847.323576] i915 0000:00:02.0: [drm:drm_atomic_set_mode_prop_for_crtc] Set [NOMODE] for [CRTC:60:pipe B] state 000000003e43d8ee
[ 1847.323581] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1847.323583] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1847.323586] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000a3ba119b state to 0000000045facf37
[ 1847.323589] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (6)
[ 1847.323592] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 00000000a3ba119b to [NOCRTC]
[ 1847.323595] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1847.323598] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 0000000045facf37
[ 1847.323603] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:60:pipe B] mode changed
[ 1847.323608] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:60:pipe B] enable changed
[ 1847.323611] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:60:pipe B] active changed
[ 1847.323614] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1847.323626] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Disabling [CONNECTOR:91:DP-1]
[ 1847.323639] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:60:pipe B] needs all connectors, enable: n, active: n
[ 1847.323643] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:60:pipe B] to 0000000045facf37
[ 1847.323648] i915 0000:00:02.0: [drm:drm_atomic_add_affected_planes] Adding all current planes for [CRTC:60:pipe B] to 0000000045facf37
[ 1847.323653] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000045facf37
[ 1847.323659] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.enable (expected 1, found 0)
[ 1847.323867] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.active (expected 1, found 0)
[ 1847.324113] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in cpu_transcoder (expected 1, found -1)
[ 1847.324371] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in has_pch_encoder (expected yes, found no)
[ 1847.324619] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in fdi_lanes (expected 3, found 0)
[ 1847.324878] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in fdi_m_n (expected tu 64 data 7503143/8388608 link 468946/524288, found tu 0, data 0/0 link 0/0)
[ 1847.325166] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in lane_count (expected 4, found 0)
[ 1847.325424] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in dp_m_n (expected tu 64 data 5627357/8388608 link 468946/524288, found tu 0, data 0/0 link 0/0)
[ 1847.325680] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in dp_m2_n2 (expected tu 1 data 0/0 link 0/0, found tu 0, data 0/0 link 0/0)
[ 1847.325950] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in output_types (expected 0x00000080, found 0x00000000)
[ 1847.326204] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in framestart_delay (expected 1, found 0)
[ 1847.326449] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_hdisplay (expected 2560, found 0)
[ 1847.326695] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_htotal (expected 2720, found 0)
[ 1847.326946] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_hblank_start (expected 2560, found 0)
[ 1847.327186] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_hblank_end (expected 2720, found 0)
[ 1847.327435] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_hsync_start (expected 2608, found 0)
[ 1847.327682] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_hsync_end (expected 2640, found 0)
[ 1847.327934] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_vdisplay (expected 1440, found 0)
[ 1847.328172] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_vtotal (expected 1481, found 0)
[ 1847.328416] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_vblank_start (expected 1440, found 0)
[ 1847.328659] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_vblank_end (expected 1481, found 0)
[ 1847.328882] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_vsync_start (expected 1443, found 0)
[ 1847.329124] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_vsync_end (expected 1448, found 0)
[ 1847.329369] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_hdisplay (expected 2560, found 0)
[ 1847.329590] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_htotal (expected 2720, found 0)
[ 1847.329817] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_hblank_start (expected 2560, found 0)
[ 1847.330080] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_hblank_end (expected 2720, found 0)
[ 1847.330322] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_hsync_start (expected 2608, found 0)
[ 1847.330546] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_hsync_end (expected 2640, found 0)
[ 1847.330775] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_vdisplay (expected 1440, found 0)
[ 1847.331067] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_vtotal (expected 1481, found 0)
[ 1847.331308] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_vblank_start (expected 1440, found 0)
[ 1847.331535] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_vblank_end (expected 1481, found 0)
[ 1847.331760] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_vsync_start (expected 1443, found 0)
[ 1847.332020] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_vsync_end (expected 1448, found 0)
[ 1847.332263] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in pixel_multiplier (expected 1, found 0)
[ 1847.332491] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.flags (1) (expected 1, found 0)
[ 1847.332715] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.flags (8) (expected 8, found 0)
[ 1847.332977] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in has_audio (expected yes, found no)
[ 1847.333240] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] fastset mismatch in eld buffer
[ 1847.333481] expected: 10 00 08 00 6c 14 00 00 00 00 00 00 00 00 00 00
[ 1847.333484] expected: 1e 6d 7f 5b 4c 47 20 55 4c 54 52 41 47 45 41 52
[ 1847.333485] expected: 09 06 07
[ 1847.333487] found: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 1847.333488] found: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 1847.333490] found: 00 00 00
[ 1847.333493] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in pipe_bpp (expected 24, found 0)
[ 1847.333739] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_clock (expected 241500, found 0)
[ 1847.333985] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_clock (expected 241500, found 0)
[ 1847.334232] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in port_clock (expected 270000, found 0)
[ 1847.334481] i915 0000:00:02.0: [drm:intel_unreference_shared_dpll [i915]] [CRTC:60:pipe B] releasing PCH DPLL B
[ 1847.334726] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1847.334735] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 0, off 1, on 0, ms 1
[ 1847.334990] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (4)
[ 1847.334997] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:56:cursor B] visible 1 -> 0, off 1, on 0, ms 1
[ 1847.335243] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001a0ac647 state 000000001621644b to 0000000045facf37
[ 1847.335484] i915 0000:00:02.0: [drm:intel_modeset_calc_cdclk [i915]] New cdclk calculated to be logical 400000 kHz, actual 400000 kHz
[ 1847.335730] i915 0000:00:02.0: [drm:intel_modeset_calc_cdclk [i915]] New voltage level calculated to be logical 0, actual 0
[ 1847.335981] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:60:pipe B] enable: no [modeset]
[ 1847.336222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:46:primary B] fb: [NOFB], visible: no
[ 1847.336468] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:56:cursor B] fb: [NOFB], visible: no
[ 1847.336706] i915 0000:00:02.0: [drm:drm_atomic_commit] committing 0000000045facf37
[ 1847.336742] i915 0000:00:02.0: [drm:intel_audio_codec_disable [i915]] [CONNECTOR:91:DP-1][ENCODER:90:DP B] Disable audio codec on [CRTC:60:pipe B]
[ 1847.337011] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1847.363251] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port B
[ 1847.363778] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX B/DP B: 0x00600 AUX <- (ret= 1) 02
[ 1847.363885] i915 0000:00:02.0: [drm:intel_disable_transcoder [i915]] disabling pipe B
[ 1847.380246] i915 0000:00:02.0: [drm:intel_dp_link_down.isra.0 [i915]]
[ 1847.382003] i915 0000:00:02.0: [drm:g4x_dp_port_enabled [i915]] No pipe for DP port C found
[ 1847.382187] i915 0000:00:02.0: [drm:g4x_dp_port_enabled [i915]] No pipe for DP port D found
[ 1847.397425] i915 0000:00:02.0: [drm:intel_disable_shared_dpll [i915]] disable PCH DPLL B (active 0x2, on? 1) for [CRTC:60:pipe B]
[ 1847.397656] i915 0000:00:02.0: [drm:intel_disable_shared_dpll [i915]] disabling PCH DPLL B
[ 1847.398077] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:77:LVDS]
[ 1847.398266] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:81:CRT]
[ 1847.398449] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:82:HDMI B]
[ 1847.398632] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:90:DP B]
[ 1847.398821] i915 0000:00:02.0: [drm:g4x_dp_port_enabled [i915]] No pipe for DP port B found
[ 1847.399003] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:95:HDMI C]
[ 1847.399157] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:99:HDMI D]
[ 1847.399307] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:103:DP C]
[ 1847.399456] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:107:DP D]
[ 1847.399604] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:91:DP-1]
[ 1847.399758] i915 0000:00:02.0: [drm:g4x_dp_port_enabled [i915]] No pipe for DP port B found
[ 1847.399902] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] PCH DPLL A
[ 1847.400072] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] PCH DPLL B
[ 1847.400243] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (2)
[ 1847.400250] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:60:pipe B]
[ 1847.400428] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_DESTROYPROPBLOB
[ 1847.400435] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (2)
[ 1847.400438] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (1)
[ 1847.400452] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_RMFB
[ 1847.400457] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1847.400472] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 0000000045facf37
[ 1847.400478] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1847.400480] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1847.400484] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1847.400486] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1847.400489] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (3)
[ 1847.400491] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (2)
[ 1847.400494] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 0000000045facf37
[ 1847.400502] i915 0000:00:02.0: [drm:drm_mode_rmfb_work_fn] Removing [FB:79] from all active usage due to RMFB ioctl
[ 1847.400505] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (1)
[ 1847.400564] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1847.400575] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_RMFB
[ 1847.400579] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (2)
[ 1847.400581] [drm:drm_mode_object_put.part.0] OBJ ID: 118 (1)
[ 1847.400604] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1847.400619] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.400625] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:96:HDMI-A-2]
[ 1847.400630] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:96:HDMI-A-2]
[ 1847.400970] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[ 1847.401130] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[ 1847.401448] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[ 1847.401590] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[ 1847.401594] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1847.401732] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[ 1847.402599] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[ 1847.402603] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[ 1847.402747] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:96:HDMI-A-2] disconnected
[ 1847.402751] [drm:drm_mode_object_put.part.0] OBJ ID: 96 (2)
[ 1847.402759] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.402766] [drm:drm_mode_object_put.part.0] OBJ ID: 96 (2)
[ 1847.402772] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.402776] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:100:HDMI-A-3]
[ 1847.402779] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:100:HDMI-A-3]
[ 1847.403114] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[ 1847.403280] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[ 1847.403601] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[ 1847.403778] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpd
[ 1847.403782] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1847.403965] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[ 1847.404829] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpd
[ 1847.404832] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[ 1847.404980] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:100:HDMI-A-3] disconnected
[ 1847.404985] [drm:drm_mode_object_put.part.0] OBJ ID: 100 (2)
[ 1847.404992] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.404998] [drm:drm_mode_object_put.part.0] OBJ ID: 100 (2)
[ 1847.405003] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.405008] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:104:DP-2]
[ 1847.405011] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:104:DP-2]
[ 1847.405175] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:104:DP-2] disconnected
[ 1847.405180] [drm:drm_mode_object_put.part.0] OBJ ID: 104 (2)
[ 1847.405185] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.405191] [drm:drm_mode_object_put.part.0] OBJ ID: 104 (2)
[ 1847.405195] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.405199] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:108:DP-3]
[ 1847.405202] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:108:DP-3]
[ 1847.405348] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:108:DP-3] disconnected
[ 1847.405351] [drm:drm_mode_object_put.part.0] OBJ ID: 108 (2)
[ 1847.405356] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1847.405361] [drm:drm_mode_object_put.part.0] OBJ ID: 108 (2)
[ 1848.397049] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling always-on
[ 1850.956636] i915 0000:00:02.0: [drm:ibx_hpd_irq_handler [i915]] hotplug event received, stat 0x00200000, dig 0x00101012, pins 0x00000020, long 0x00000020
[ 1850.957143] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:90:DP B] - long
[ 1850.957759] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] Received HPD interrupt on PIN 5 - cnt: 10
[ 1850.958480] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:90:DP B] - long
[ 1850.959719] i915 0000:00:02.0: [drm:i915_hotplug_work_func [i915]] running encoder hotplug functions
[ 1850.960890] i915 0000:00:02.0: [drm:i915_hotplug_work_func [i915]] Connector HDMI-A-1 (pin 5) received hotplug event. (retry 0)
[ 1850.961744] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-1]
[ 1850.962484] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[ 1850.963452] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 1850.964246] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 1850.965187] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 1850.965934] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpb
[ 1850.965945] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1850.966674] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 1850.968295] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpb
[ 1850.968317] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 1850.969075] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling always-on
[ 1850.969846] i915 0000:00:02.0: [drm:i915_hotplug_work_func [i915]] Connector DP-1 (pin 5) received hotplug event. (retry 0)
[ 1850.970631] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:91:DP-1]
[ 1850.971392] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[ 1850.972393] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1850.972794] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 15) 12 14 c4 01 00 05 01 83 02 00 00 00 00 00 04
[ 1850.972835] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX B/DP B: DPCD: 12 14 c4 01 00 05 01 83 02 00 00 00 00 00 04
[ 1850.973069] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1850.973466] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 22 30 10 02 1e
[ 1850.973505] i915 0000:00:02.0: [drm:drm_dp_read_desc [drm_display_helper]] AUX B/DP B: DP branch: OUI 90-cc-24 dev-ID SYNA"0 HW-rev 1.0 SW-rev 2.30 quirks 0x0008
[ 1850.973734] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1850.974021] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00200 AUX -> (ret= 1) 01
[ 1850.974241] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1850.974463] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00080 AUX -> (ret= 3) 08 0d 0d
[ 1850.974536] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX B/DP B: DPCD DFP: 08 0d 0d
[ 1850.974810] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1850.975067] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00021 AUX -> (ret= 1) 01
[ 1850.975151] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:90:DP B] MST support: port: no, sink: yes, modparam: yes
[ 1850.975946] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 270000
[ 1850.976700] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[ 1850.977481] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[ 1850.987301] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:91:DP-1] Assigning EDID-1.4 digital sink color depth as 10 bpc.
[ 1850.987339] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:91:DP-1] ELD monitor LG ULTRAGEAR
[ 1850.987365] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:91:DP-1] ELD size 36, SAD count 1
[ 1850.987395] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:91:DP-1] VRR capable: no
[ 1850.988194] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:91:DP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 24Gbps
[ 1850.989216] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1850.989711] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00092 AUX -> (ret= 13) 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 1850.989801] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] PCON ENCODER DSC DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 1850.990608] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:91:DP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? no, YCbCr 4:4:4->4:2:0 conversion? no
[ 1850.991390] [drm:drm_detect_monitor_audio] Monitor has basic audio support
[ 1850.991645] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1850.991954] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x03000 AUX -> (ret= 1) 00
[ 1850.992256] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1850.992551] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00201 AUX -> (ret= 1) 00
[ 1850.992640] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling always-on
[ 1850.993445] i915 0000:00:02.0: [drm:intel_encoder_hotplug [i915]] [CONNECTOR:91:DP-1] status updated from disconnected to connected (epoch counter 12->13)
[ 1850.994257] [drm:drm_sysfs_hotplug_event] generating hotplug event
[ 1851.011947] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[ 1851.011974] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[ 1851.011992] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.011999] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:76:LVDS-1]
[ 1851.012009] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:76:LVDS-1] Assigning EDID-1.4 digital sink color depth as 6 bpc.
[ 1851.012015] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:76:LVDS-1] ELD monitor
[ 1851.012019] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:76:LVDS-1] ELD size 20, SAD count 0
[ 1851.012025] [drm:drm_mode_object_put.part.0] OBJ ID: 119 (1)
[ 1851.012081] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:76:LVDS-1] probed modes :
[ 1851.012085] [drm:drm_mode_debug_printmodeline] Modeline "1366x768": 60 76300 1366 1414 1446 1610 768 771 776 790 0x48 0xa
[ 1851.012090] [drm:drm_mode_debug_printmodeline] Modeline "1366x768": 40 50870 1366 1414 1446 1610 768 771 776 790 0x40 0xa
[ 1851.012095] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (3)
[ 1851.012101] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.012108] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (3)
[ 1851.012114] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.012119] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (3)
[ 1851.012123] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.012128] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (3)
[ 1851.012133] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.012137] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:80:VGA-1]
[ 1851.012141] i915 0000:00:02.0: [drm:intel_crt_detect [i915]] [CONNECTOR:80:VGA-1] force=1
[ 1851.012332] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[ 1851.012521] i915 0000:00:02.0: [drm:intel_crt_detect [i915]] ironlake hotplug adpa=0xf40000, result 0
[ 1851.012693] i915 0000:00:02.0: [drm:intel_crt_detect [i915]] CRT not detected via hotplug
[ 1851.013071] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus vga] NAK for addr: 0050 w(1)
[ 1851.013337] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus vga] NAK on first message, retry
[ 1851.013691] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus vga] NAK for addr: 0050 w(1)
[ 1851.013846] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[ 1851.013850] i915 0000:00:02.0: [drm:intel_crt_get_edid [i915]] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[ 1851.014020] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus vga. force bit now 1
[ 1851.014933] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[ 1851.014938] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus vga. force bit now 0
[ 1851.015086] i915 0000:00:02.0: [drm:intel_crt_detect_ddc [i915]] CRT not detected via DDC:0x50 [no valid EDID found]
[ 1851.015234] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling always-on
[ 1851.015391] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:80:VGA-1] disconnected
[ 1851.015397] [drm:drm_mode_object_put.part.0] OBJ ID: 80 (2)
[ 1851.015406] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.015414] [drm:drm_mode_object_put.part.0] OBJ ID: 80 (2)
[ 1851.015420] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.015425] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:83:HDMI-A-1]
[ 1851.015428] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-1]
[ 1851.015589] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[ 1851.015970] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 1851.016173] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 1851.016495] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 1851.016639] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpb
[ 1851.016642] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1851.016782] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 1851.017653] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpb
[ 1851.017656] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 1851.017810] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling always-on
[ 1851.017976] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:83:HDMI-A-1] disconnected
[ 1851.017982] [drm:drm_mode_object_put.part.0] OBJ ID: 83 (2)
[ 1851.017992] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.018002] [drm:drm_mode_object_put.part.0] OBJ ID: 83 (2)
[ 1851.018010] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.018017] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:91:DP-1]
[ 1851.018022] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:91:DP-1]
[ 1851.018215] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[ 1851.018563] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1851.018939] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 15) 12 14 c4 01 00 05 01 83 02 00 00 00 00 00 04
[ 1851.018967] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX B/DP B: DPCD: 12 14 c4 01 00 05 01 83 02 00 00 00 00 00 04
[ 1851.019166] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1851.019534] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 22 30 10 02 1e
[ 1851.019551] i915 0000:00:02.0: [drm:drm_dp_read_desc [drm_display_helper]] AUX B/DP B: DP branch: OUI 90-cc-24 dev-ID SYNA"0 HW-rev 1.0 SW-rev 2.30 quirks 0x0008
[ 1851.019752] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1851.019955] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00200 AUX -> (ret= 1) 01
[ 1851.020166] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1851.020367] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00080 AUX -> (ret= 3) 08 0d 0d
[ 1851.020383] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX B/DP B: DPCD DFP: 08 0d 0d
[ 1851.020580] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1851.020780] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00021 AUX -> (ret= 1) 01
[ 1851.020797] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:90:DP B] MST support: port: no, sink: yes, modparam: yes
[ 1851.020967] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 270000
[ 1851.021168] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[ 1851.021343] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[ 1851.029443] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:91:DP-1] Assigning EDID-1.4 digital sink color depth as 10 bpc.
[ 1851.029452] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:91:DP-1] ELD monitor LG ULTRAGEAR
[ 1851.029456] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:91:DP-1] ELD size 36, SAD count 1
[ 1851.029462] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (1)
[ 1851.029466] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:91:DP-1] VRR capable: no
[ 1851.029622] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:91:DP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 24Gbps
[ 1851.029957] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1851.030339] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00092 AUX -> (ret= 13) 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 1851.030359] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] PCON ENCODER DSC DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 1851.030508] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:91:DP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? no, YCbCr 4:4:4->4:2:0 conversion? no
[ 1851.030655] [drm:drm_detect_monitor_audio] Monitor has basic audio support
[ 1851.030843] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1851.031055] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x03000 AUX -> (ret= 1) 00
[ 1851.031256] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1851.031455] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00201 AUX -> (ret= 1) 00
[ 1851.031474] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling always-on
[ 1851.031657] i915 0000:00:02.0: [drm:do_detailed_mode] [CONNECTOR:91:DP-1] Composite sync not supported
[ 1851.032399] [drm:drm_mode_debug_printmodeline] Modeline "2560x1440": 144 604250 2560 2608 2640 2720 1440 1443 1453 1543 0x48 0x9
[ 1851.032406] [drm:drm_mode_prune_invalid] Not using 2560x1440 mode: CLOCK_HIGH
[ 1851.032409] [drm:drm_mode_debug_printmodeline] Modeline "2560x1440": 100 410500 2560 2608 2640 2720 1440 1443 1453 1510 0x40 0xa
[ 1851.032413] [drm:drm_mode_prune_invalid] Not using 2560x1440 mode: CLOCK_HIGH
[ 1851.032416] [drm:drm_mode_debug_printmodeline] Modeline "2560x1440": 120 497750 2560 2608 2640 2720 1440 1443 1453 1525 0x40 0x9
[ 1851.032420] [drm:drm_mode_prune_invalid] Not using 2560x1440 mode: CLOCK_HIGH
[ 1851.032426] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:91:DP-1] probed modes :
[ 1851.032429] [drm:drm_mode_debug_printmodeline] Modeline "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[ 1851.032433] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 75 220960 1920 2064 2264 2608 1080 1083 1088 1130 0x0 0x6
[ 1851.032437] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[ 1851.032441] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[ 1851.032445] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[ 1851.032448] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5
[ 1851.032452] [drm:drm_mode_debug_printmodeline] Modeline "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[ 1851.032456] [drm:drm_mode_debug_printmodeline] Modeline "1600x900": 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5
[ 1851.032460] [drm:drm_mode_debug_printmodeline] Modeline "1280x1024": 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[ 1851.032463] [drm:drm_mode_debug_printmodeline] Modeline "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[ 1851.032467] [drm:drm_mode_debug_printmodeline] Modeline "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[ 1851.032471] [drm:drm_mode_debug_printmodeline] Modeline "1152x864": 60 81768 1152 1216 1336 1520 864 867 871 897 0x0 0x6
[ 1851.032475] [drm:drm_mode_debug_printmodeline] Modeline "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[ 1851.032479] [drm:drm_mode_debug_printmodeline] Modeline "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[ 1851.032483] [drm:drm_mode_debug_printmodeline] Modeline "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[ 1851.032486] [drm:drm_mode_debug_printmodeline] Modeline "1280x720": 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5
[ 1851.032490] [drm:drm_mode_debug_printmodeline] Modeline "1024x768": 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[ 1851.032494] [drm:drm_mode_debug_printmodeline] Modeline "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[ 1851.032497] [drm:drm_mode_debug_printmodeline] Modeline "800x600": 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[ 1851.032501] [drm:drm_mode_debug_printmodeline] Modeline "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[ 1851.032505] [drm:drm_mode_debug_printmodeline] Modeline "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[ 1851.032509] [drm:drm_mode_debug_printmodeline] Modeline "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[ 1851.032512] [drm:drm_mode_debug_printmodeline] Modeline "640x480": 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[ 1851.032516] [drm:drm_mode_debug_printmodeline] Modeline "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[ 1851.032520] [drm:drm_mode_debug_printmodeline] Modeline "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[ 1851.032523] [drm:drm_mode_debug_printmodeline] Modeline "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[ 1851.032528] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.032544] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.032555] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.032562] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.032568] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.032572] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.032577] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.032672] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.032683] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.032689] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.032697] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.032703] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032709] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032717] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032726] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032735] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032744] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032752] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032760] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032767] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032775] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032783] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032791] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032800] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032809] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032818] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032824] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032830] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032835] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032841] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032846] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032866] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032875] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032886] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.032894] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.032900] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.032908] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.032916] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032924] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.032932] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.032939] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.032945] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.032952] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.032959] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1851.032965] [drm:drm_mode_object_put.part.0] OBJ ID: 113 (2)
[ 1851.032971] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 1851.032977] [drm:drm_mode_object_put.part.0] OBJ ID: 113 (2)
[ 1851.032990] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.032997] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.033003] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.033010] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.033016] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.033024] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 1851.033701] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.033709] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:96:HDMI-A-2]
[ 1851.033715] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:96:HDMI-A-2]
[ 1851.033976] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[ 1851.034421] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[ 1851.034677] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[ 1851.035006] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[ 1851.035170] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[ 1851.035174] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1851.035314] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[ 1851.036186] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[ 1851.036190] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[ 1851.036333] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling always-on
[ 1851.036489] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:96:HDMI-A-2] disconnected
[ 1851.036494] [drm:drm_mode_object_put.part.0] OBJ ID: 96 (2)
[ 1851.036502] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.036510] [drm:drm_mode_object_put.part.0] OBJ ID: 96 (2)
[ 1851.036516] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.036521] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:100:HDMI-A-3]
[ 1851.036524] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:100:HDMI-A-3]
[ 1851.036665] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[ 1851.037008] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[ 1851.037159] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[ 1851.037480] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[ 1851.037641] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpd
[ 1851.037644] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1851.037783] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[ 1851.038648] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpd
[ 1851.038652] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[ 1851.038792] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling always-on
[ 1851.038956] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:100:HDMI-A-3] disconnected
[ 1851.038962] [drm:drm_mode_object_put.part.0] OBJ ID: 100 (2)
[ 1851.038971] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.038981] [drm:drm_mode_object_put.part.0] OBJ ID: 100 (2)
[ 1851.038989] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.038995] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:104:DP-2]
[ 1851.039001] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:104:DP-2]
[ 1851.039194] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[ 1851.039354] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling always-on
[ 1851.039509] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:104:DP-2] disconnected
[ 1851.039513] [drm:drm_mode_object_put.part.0] OBJ ID: 104 (2)
[ 1851.039518] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.039524] [drm:drm_mode_object_put.part.0] OBJ ID: 104 (2)
[ 1851.039529] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.039533] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:108:DP-3]
[ 1851.039536] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:108:DP-3]
[ 1851.039677] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[ 1851.039850] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling always-on
[ 1851.040046] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:108:DP-3] disconnected
[ 1851.040051] [drm:drm_mode_object_put.part.0] OBJ ID: 108 (2)
[ 1851.040058] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 1851.040066] [drm:drm_mode_object_put.part.0] OBJ ID: 108 (2)
[ 1851.040714] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.040723] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.040728] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_OBJ_GETPROPERTIES
[ 1851.040734] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.041218] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_CREATE
[ 1851.041250] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_DOMAIN
[ 1851.044897] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_TILING
[ 1851.044924] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_PRIME_HANDLE_TO_FD
[ 1851.045010] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1851.045121] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1851.045140] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ADDFB2
[ 1851.045158] i915 0000:00:02.0: [drm:drm_mode_addfb2] [FB:79]
[ 1851.045166] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1851.045179] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_CREATEPROPBLOB
[ 1851.045198] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1851.045204] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 0000000062383939
[ 1851.045212] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:61:primary C] 000000006d30b5f8 state to 0000000062383939
[ 1851.045218] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:61:primary C] state 000000006d30b5f8
[ 1851.045222] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1851.045225] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1851.045227] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1851.045232] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:75:pipe C] 0000000054dca0ad state to 0000000062383939
[ 1851.045237] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_plane] Link [PLANE:61:primary C] state 000000006d30b5f8 to [CRTC:75:pipe C]
[ 1851.045241] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:71:cursor C] 00000000e934f480 state to 0000000062383939
[ 1851.045245] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:71:cursor C] state 00000000e934f480
[ 1851.045251] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1851.045253] i915 0000:00:02.0: [drm:drm_atomic_set_mode_prop_for_crtc] Set [MODE:2560x1440] for [CRTC:75:pipe C] state 0000000054dca0ad
[ 1851.045257] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1851.045259] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1851.045263] [drm:drm_mode_object_get] OBJ ID: 91 (3)
[ 1851.045265] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000007cbe8033 state to 0000000062383939
[ 1851.045270] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1851.045272] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 000000007cbe8033 to [CRTC:75:pipe C]
[ 1851.045276] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1851.045279] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 0000000062383939
[ 1851.045284] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:75:pipe C] mode changed
[ 1851.045288] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:75:pipe C] enable changed
[ 1851.045292] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:75:pipe C] active changed
[ 1851.045297] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1851.045301] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] using [ENCODER:90:DP B] on [CRTC:75:pipe C]
[ 1851.045306] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:75:pipe C] needs all connectors, enable: y, active: y
[ 1851.045310] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:75:pipe C] to 0000000062383939
[ 1851.045315] i915 0000:00:02.0: [drm:drm_atomic_add_affected_planes] Adding all current planes for [CRTC:75:pipe C] to 0000000062383939
[ 1851.045319] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000062383939
[ 1851.045325] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:91:DP-1] Limiting display bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[ 1851.045542] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP link computation with max lane count 4 max rate 270000 max bpp 24 pixel clock 241500KHz
[ 1851.045716] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP lane count 4 clock 270000 bpp 24
[ 1851.045891] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP link rate required 724500 available 1080000
[ 1851.046154] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] [CONNECTOR:91:DP-1] SDP split enable: no
[ 1851.046407] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] checking fdi config on pipe C, lanes 3
[ 1851.046649] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] only 2 lanes on pipe C: required 3 lanes
[ 1851.046859] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] fdi link bw constraint, reducing pipe bpp to 18
[ 1851.047030] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] checking fdi config on pipe C, lanes 3
[ 1851.047187] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] only 2 lanes on pipe C: required 3 lanes
[ 1851.047342] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:75:pipe C] bw constrained, retrying
[ 1851.047515] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP link computation with max lane count 4 max rate 270000 max bpp 18 pixel clock 241500KHz
[ 1851.047662] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP lane count 4 clock 162000 bpp 18
[ 1851.047806] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP link rate required 543375 available 648000
[ 1851.047973] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] [CONNECTOR:91:DP-1] SDP split enable: no
[ 1851.048182] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] checking fdi config on pipe C, lanes 3
[ 1851.048335] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] only 2 lanes on pipe C: required 3 lanes
[ 1851.048486] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:75:pipe C] config failure: -22
[ 1851.048643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:75:pipe C] enable: yes [failed]
[ 1851.048801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP (0x80), output format: RGB
[ 1851.048965] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 18, dithering: 0
[ 1851.049170] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[ 1851.049328] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[ 1851.049518] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] bigjoiner: no, pipes: 0x0
[ 1851.049710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[ 1851.049907] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fdi: lanes: 3; data_m: 5627357, data_n: 8388608, link_m: 468946, link_n: 524288, tu: 64
[ 1851.050107] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 4; data_m: 7034197, data_n: 8388608, link_m: 781577, link_n: 524288, tu: 64
[ 1851.050300] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 4; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 1
[ 1851.050492] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0
[ 1851.050684] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[ 1851.050882] ELD: 10 00 08 00 6c 14 00 00 00 00 00 00 00 00 00 00
[ 1851.050885] ELD: 1e 6d 7f 5b 4c 47 20 55 4c 54 52 41 47 45 41 52
[ 1851.050886] ELD: 09 06 07 00
[ 1851.050888] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, vmin: 0, vmax: 0, pipeline full: 0, guardband: 0 flipline: 0, vmin vblank: -1, vmax vblank: -2
[ 1851.051113] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[ 1851.051274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[ 1851.051433] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: clock=241500, hd=2560 hb=2560-2720 hs=2608-2640 ht=2720, vd=1440 vb=1440-1481 vs=1443-1448 vt=1481, flags=0x9
[ 1851.051593] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[ 1851.051751] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: clock=241500, hd=2560 hb=2560-2720 hs=2608-2640 ht=2720, vd=1440 vb=1440-1481 vs=1443-1448 vt=1481, flags=0x9
[ 1851.051917] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 162000, pipe src: 2560x1440+0+0, pixel rate 241500
[ 1851.052142] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 0, ips linetime: 0
[ 1851.052300] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[ 1851.052458] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[ 1851.052615] i915 0000:00:02.0: [drm:ibx_dump_hw_state [i915]] dpll_hw_state: dpll: 0xc4020002, dpll_md: 0x0, fp0: 0xc10c09, fp1: 0xc10c09
[ 1851.052768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[ 1851.052932] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[ 1851.053138] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:61:primary C] fb: [NOFB], visible: no
[ 1851.053296] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:71:cursor C] fb: [NOFB], visible: no
[ 1851.053453] i915 0000:00:02.0: [drm:drm_atomic_check_only] atomic driver check for 0000000062383939 failed: -22
[ 1851.053458] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 0000000062383939
[ 1851.053461] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1851.053465] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.053468] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1851.053471] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1851.053474] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 0000000062383939
[ 1851.053478] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-22
[ 1851.053563] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_DESTROYPROPBLOB
[ 1851.053573] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1851.053577] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (1)
[ 1851.053637] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1851.053648] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1851.053671] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1851.053681] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1851.053698] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1851.053708] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1851.053719] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1851.053729] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1851.053737] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1851.053743] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1851.053749] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1851.053754] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1851.053760] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1851.053765] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_GEM_CLOSE
[ 1851.053796] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1851.053804] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1851.053813] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[ 1851.054085] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1851.054095] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1851.054104] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1851.054114] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1851.057247] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1851.057281] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1851.057315] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1851.057329] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1851.057336] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1851.057471] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_RMFB
[ 1851.057482] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1851.057488] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (1)
[ 1851.057540] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1851.057627] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_CREATE
[ 1851.057663] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_DOMAIN
[ 1851.061397] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_SET_TILING
[ 1851.061411] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, I915_GEM_MMAP_OFFSET
[ 1851.061554] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_PRIME_HANDLE_TO_FD
[ 1851.061648] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1851.061664] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_GET_TILING
[ 1851.061754] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_PRIME_FD_TO_HANDLE
[ 1851.061767] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ADDFB2
[ 1851.061780] i915 0000:00:02.0: [drm:drm_mode_addfb2] [FB:79]
[ 1851.061785] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1851.061794] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_CREATEPROPBLOB
[ 1851.061808] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1851.061814] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 0000000062383939
[ 1851.061822] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:61:primary C] 00000000c7e321d8 state to 0000000062383939
[ 1851.061829] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:79] for [PLANE:61:primary C] state 00000000c7e321d8
[ 1851.061833] [drm:drm_mode_object_get] OBJ ID: 79 (3)
[ 1851.061837] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (4)
[ 1851.061839] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (3)
[ 1851.061844] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:75:pipe C] 0000000054dca0ad state to 0000000062383939
[ 1851.061848] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_plane] Link [PLANE:61:primary C] state 00000000c7e321d8 to [CRTC:75:pipe C]
[ 1851.061865] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:71:cursor C] 00000000ca562131 state to 0000000062383939
[ 1851.061871] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:71:cursor C] state 00000000ca562131
[ 1851.061878] [drm:drm_mode_object_get] OBJ ID: 114 (3)
[ 1851.061882] i915 0000:00:02.0: [drm:drm_atomic_set_mode_prop_for_crtc] Set [MODE:2560x1440] for [CRTC:75:pipe C] state 0000000054dca0ad
[ 1851.061888] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (4)
[ 1851.061891] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (3)
[ 1851.061897] [drm:drm_mode_object_get] OBJ ID: 91 (3)
[ 1851.061901] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000005d713b48 state to 0000000062383939
[ 1851.061909] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1851.061912] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 000000005d713b48 to [CRTC:75:pipe C]
[ 1851.061919] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1851.061923] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 0000000062383939
[ 1851.061930] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:75:pipe C] mode changed
[ 1851.061936] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:75:pipe C] enable changed
[ 1851.061941] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:75:pipe C] active changed
[ 1851.061950] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1851.061955] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] using [ENCODER:90:DP B] on [CRTC:75:pipe C]
[ 1851.061963] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:75:pipe C] needs all connectors, enable: y, active: y
[ 1851.061969] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:75:pipe C] to 0000000062383939
[ 1851.061976] i915 0000:00:02.0: [drm:drm_atomic_add_affected_planes] Adding all current planes for [CRTC:75:pipe C] to 0000000062383939
[ 1851.061982] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000062383939
[ 1851.061992] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:91:DP-1] Limiting display bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[ 1851.062299] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP link computation with max lane count 4 max rate 270000 max bpp 24 pixel clock 241500KHz
[ 1851.062567] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP lane count 4 clock 270000 bpp 24
[ 1851.062778] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP link rate required 724500 available 1080000
[ 1851.062963] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] [CONNECTOR:91:DP-1] SDP split enable: no
[ 1851.063143] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] checking fdi config on pipe C, lanes 3
[ 1851.063307] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] only 2 lanes on pipe C: required 3 lanes
[ 1851.063499] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] fdi link bw constraint, reducing pipe bpp to 18
[ 1851.063659] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] checking fdi config on pipe C, lanes 3
[ 1851.063816] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] only 2 lanes on pipe C: required 3 lanes
[ 1851.063981] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:75:pipe C] bw constrained, retrying
[ 1851.064200] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP link computation with max lane count 4 max rate 270000 max bpp 18 pixel clock 241500KHz
[ 1851.064380] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP lane count 4 clock 162000 bpp 18
[ 1851.064558] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP link rate required 543375 available 648000
[ 1851.064737] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] [CONNECTOR:91:DP-1] SDP split enable: no
[ 1851.064924] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] checking fdi config on pipe C, lanes 3
[ 1851.065124] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] only 2 lanes on pipe C: required 3 lanes
[ 1851.065278] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:75:pipe C] config failure: -22
[ 1851.065436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:75:pipe C] enable: yes [failed]
[ 1851.065595] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP (0x80), output format: RGB
[ 1851.065753] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 18, dithering: 0
[ 1851.065951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[ 1851.066157] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[ 1851.066316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] bigjoiner: no, pipes: 0x0
[ 1851.066473] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[ 1851.066631] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fdi: lanes: 3; data_m: 5627357, data_n: 8388608, link_m: 468946, link_n: 524288, tu: 64
[ 1851.066789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 4; data_m: 7034197, data_n: 8388608, link_m: 781577, link_n: 524288, tu: 64
[ 1851.066953] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 4; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 1
[ 1851.067163] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0
[ 1851.067321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[ 1851.067479] ELD: 10 00 08 00 6c 14 00 00 00 00 00 00 00 00 00 00
[ 1851.067480] ELD: 1e 6d 7f 5b 4c 47 20 55 4c 54 52 41 47 45 41 52
[ 1851.067481] ELD: 09 06 07 00
[ 1851.067482] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, vmin: 0, vmax: 0, pipeline full: 0, guardband: 0 flipline: 0, vmin vblank: -1, vmax vblank: -2
[ 1851.067640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[ 1851.067833] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[ 1851.068062] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: clock=241500, hd=2560 hb=2560-2720 hs=2608-2640 ht=2720, vd=1440 vb=1440-1481 vs=1443-1448 vt=1481, flags=0x9
[ 1851.068283] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[ 1851.068443] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: clock=241500, hd=2560 hb=2560-2720 hs=2608-2640 ht=2720, vd=1440 vb=1440-1481 vs=1443-1448 vt=1481, flags=0x9
[ 1851.068603] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 162000, pipe src: 2560x1440+0+0, pixel rate 241500
[ 1851.068778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 0, ips linetime: 0
[ 1851.068959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[ 1851.069169] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[ 1851.069327] i915 0000:00:02.0: [drm:ibx_dump_hw_state [i915]] dpll_hw_state: dpll: 0xc4020002, dpll_md: 0x0, fp0: 0xc10c09, fp1: 0xc10c09
[ 1851.069481] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[ 1851.069670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[ 1851.069869] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:61:primary C] fb: [NOFB], visible: no
[ 1851.070072] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:71:cursor C] fb: [NOFB], visible: no
[ 1851.070231] i915 0000:00:02.0: [drm:drm_atomic_check_only] atomic driver check for 0000000062383939 failed: -22
[ 1851.070237] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 0000000062383939
[ 1851.070241] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1851.070244] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (3)
[ 1851.070247] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1851.070250] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1851.070253] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 0000000062383939
[ 1851.070258] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-22
[ 1851.070346] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_DESTROYPROPBLOB
[ 1851.070356] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1851.070360] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (1)
[ 1851.070413] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_DESTROY
[ 1851.070424] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_EXECBUFFER2_WR
[ 1851.070515] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1851.070522] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1851.070528] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1851.070534] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MADVISE
[ 1851.070540] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_BUSY
[ 1851.070547] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_CREATE
[ 1851.070571] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_SET_DOMAIN
[ 1851.070592] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, I915_GEM_MMAP_OFFSET
[ 1851.070617] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe280, auth=0, DRM_IOCTL_SYNCOBJ_CREATE
[ 1851.070646] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_RMFB
[ 1851.070652] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1851.070654] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (1)
[ 1851.070782] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_GEM_CLOSE
[ 1852.428979] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling always-on
[ 1856.849902] i915 0000:00:02.0: [drm:drm_ioctl] comm="systemd-logind" pid=1203, dev=0xe201, auth=1, DRM_IOCTL_DROP_MASTER
[ 1856.850063] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 0000000062383939
[ 1856.850072] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:31:primary A] 0000000011c04c0e state to 0000000062383939
[ 1856.850078] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:35:sprite A] 00000000276b869d state to 0000000062383939
[ 1856.850082] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:35:sprite A] state 00000000276b869d
[ 1856.850086] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:41:cursor A] 00000000fe0ad5a0 state to 0000000062383939
[ 1856.850089] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:41:cursor A] state 00000000fe0ad5a0
[ 1856.850093] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 0000000099f514e6 state to 0000000062383939
[ 1856.850096] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:50:sprite B] 00000000c4b09efa state to 0000000062383939
[ 1856.850099] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:50:sprite B] state 00000000c4b09efa
[ 1856.850103] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000e934f480 state to 0000000062383939
[ 1856.850106] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:56:cursor B] state 00000000e934f480
[ 1856.850109] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:61:primary C] 000000003d68339c state to 0000000062383939
[ 1856.850112] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:65:sprite C] 000000009140a1da state to 0000000062383939
[ 1856.850115] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:65:sprite C] state 000000009140a1da
[ 1856.850118] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:71:cursor C] 000000006f180672 state to 0000000062383939
[ 1856.850121] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:71:cursor C] state 000000006f180672
[ 1856.850127] [drm:drm_mode_object_get] OBJ ID: 117 (3)
[ 1856.850130] [drm:drm_mode_object_get] OBJ ID: 117 (4)
[ 1856.850132] [drm:drm_mode_object_get] OBJ ID: 117 (5)
[ 1856.850134] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:45:pipe A] 0000000054dca0ad state to 0000000062383939
[ 1856.850141] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc] Set [MODE:1366x768] for [CRTC:45:pipe A] state 0000000054dca0ad
[ 1856.850144] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_plane] Link [PLANE:31:primary A] state 0000000011c04c0e to [CRTC:45:pipe A]
[ 1856.850149] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:31:primary A] state 0000000011c04c0e
[ 1856.850152] [drm:drm_mode_object_get] OBJ ID: 112 (1)
[ 1856.850154] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:45:pipe A] to 0000000062383939
[ 1856.850161] [drm:drm_mode_object_get] OBJ ID: 76 (2)
[ 1856.850163] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:76:LVDS-1] 000000009d095e01 state to 0000000062383939
[ 1856.850166] [drm:drm_mode_object_get] OBJ ID: 76 (3)
[ 1856.850168] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 000000009d095e01 to [CRTC:45:pipe A]
[ 1856.850174] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 00000000cda1ebdf state to 0000000062383939
[ 1856.850177] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc] Set [MODE:2560x1440] for [CRTC:60:pipe B] state 00000000cda1ebdf
[ 1856.850180] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_plane] Link [PLANE:46:primary B] state 0000000099f514e6 to [CRTC:60:pipe B]
[ 1856.850184] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:46:primary B] state 0000000099f514e6
[ 1856.850187] [drm:drm_mode_object_get] OBJ ID: 112 (2)
[ 1856.850189] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:60:pipe B] to 0000000062383939
[ 1856.850193] [drm:drm_mode_object_get] OBJ ID: 91 (2)
[ 1856.850195] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000005d713b48 state to 0000000062383939
[ 1856.850198] [drm:drm_mode_object_get] OBJ ID: 91 (3)
[ 1856.850200] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 000000005d713b48 to [CRTC:60:pipe B]
[ 1856.850205] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:75:pipe C] 0000000070d03294 state to 0000000062383939
[ 1856.850207] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc] Set [NOMODE] for [CRTC:75:pipe C] state 0000000070d03294
[ 1856.850210] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:61:primary C] state 000000003d68339c
[ 1856.850214] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:75:pipe C] to 0000000062383939
[ 1856.850217] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 0000000062383939
[ 1856.850222] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:45:pipe A] mode changed
[ 1856.850226] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:45:pipe A] enable changed
[ 1856.850229] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:45:pipe A] active changed
[ 1856.850232] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:60:pipe B] mode changed
[ 1856.850235] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:60:pipe B] enable changed
[ 1856.850237] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:60:pipe B] active changed
[ 1856.850243] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:76:LVDS-1]
[ 1856.850246] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:76:LVDS-1] using [ENCODER:77:LVDS] on [CRTC:45:pipe A]
[ 1856.850251] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1856.850254] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] using [ENCODER:90:DP B] on [CRTC:60:pipe B]
[ 1856.850258] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:45:pipe A] needs all connectors, enable: y, active: y
[ 1856.850261] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:45:pipe A] to 0000000062383939
[ 1856.850265] i915 0000:00:02.0: [drm:drm_atomic_add_affected_planes] Adding all current planes for [CRTC:45:pipe A] to 0000000062383939
[ 1856.850268] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CRTC:60:pipe B] needs all connectors, enable: y, active: y
[ 1856.850271] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:60:pipe B] to 0000000062383939
[ 1856.850274] i915 0000:00:02.0: [drm:drm_atomic_add_affected_planes] Adding all current planes for [CRTC:60:pipe B] to 0000000062383939
[ 1856.850277] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 0000000062383939
[ 1856.850279] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000062383939
[ 1856.850286] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (6)
[ 1856.850288] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (5)
[ 1856.850291] [drm:drm_mode_object_get] OBJ ID: 117 (4)
[ 1856.850293] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:76:LVDS-1] Limiting display bpp to 18 (EDID bpp 18, max requested bpp 0, max platform bpp 36)
[ 1856.850511] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] checking fdi config on pipe A, lanes 1
[ 1856.850691] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:45:pipe A] hw max bpp: 18, pipe bpp: 18, dithering: 1
[ 1856.850888] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:91:DP-1] Limiting display bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[ 1856.851078] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP link computation with max lane count 4 max rate 270000 max bpp 24 pixel clock 241500KHz
[ 1856.851235] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP lane count 4 clock 270000 bpp 24
[ 1856.851388] i915 0000:00:02.0: [drm:intel_dp_compute_link_config [i915]] DP link rate required 724500 available 1080000
[ 1856.851550] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] [CONNECTOR:91:DP-1] SDP split enable: no
[ 1856.851700] i915 0000:00:02.0: [drm:ilk_fdi_compute_config [i915]] checking fdi config on pipe B, lanes 3
[ 1856.851868] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:60:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[ 1856.852030] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.enable (expected 0, found 1)
[ 1856.852192] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.active (expected 0, found 1)
[ 1856.852352] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in cpu_transcoder (expected -1, found 0)
[ 1856.852514] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in has_pch_encoder (expected no, found yes)
[ 1856.852687] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in fdi_lanes (expected 0, found 1)
[ 1856.852859] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in fdi_m_n (expected tu 0 data 0/0 link 0/0, found tu 64, data 5326067/8388608 link 147946/524288)
[ 1856.853020] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in output_types (expected 0x00000000, found 0x00000010)
[ 1856.853180] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in framestart_delay (expected 0, found 1)
[ 1856.853353] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hdisplay (expected 0, found 1366)
[ 1856.853545] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_htotal (expected 0, found 1610)
[ 1856.853738] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hblank_start (expected 0, found 1366)
[ 1856.853906] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hblank_end (expected 0, found 1610)
[ 1856.854065] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hsync_start (expected 0, found 1414)
[ 1856.854223] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_hsync_end (expected 0, found 1446)
[ 1856.854380] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vdisplay (expected 0, found 768)
[ 1856.854570] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vtotal (expected 0, found 790)
[ 1856.854770] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vblank_start (expected 0, found 768)
[ 1856.854946] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vblank_end (expected 0, found 790)
[ 1856.855106] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vsync_start (expected 0, found 771)
[ 1856.855264] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_vsync_end (expected 0, found 776)
[ 1856.855422] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1366)
[ 1856.855579] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_htotal (expected 0, found 1610)
[ 1856.855737] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1366)
[ 1856.855910] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hblank_end (expected 0, found 1610)
[ 1856.856070] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hsync_start (expected 0, found 1414)
[ 1856.856227] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_hsync_end (expected 0, found 1446)
[ 1856.856385] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vdisplay (expected 0, found 768)
[ 1856.856575] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vtotal (expected 0, found 790)
[ 1856.856750] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vblank_start (expected 0, found 768)
[ 1856.856918] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vblank_end (expected 0, found 790)
[ 1856.857077] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vsync_start (expected 0, found 771)
[ 1856.857250] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_vsync_end (expected 0, found 776)
[ 1856.857442] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in pixel_multiplier (expected 0, found 1)
[ 1856.857634] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.flags (2) (expected 0, found 2)
[ 1856.857823] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.flags (8) (expected 0, found 8)
[ 1856.857986] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in pipe_bpp (expected 0, found 18)
[ 1856.858161] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.pipe_mode.crtc_clock (expected 0, found 76190)
[ 1856.858354] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in hw.adjusted_mode.crtc_clock (expected 0, found 76190)
[ 1856.858546] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:45:pipe A] fastset mismatch in port_clock (expected 0, found 76190)
[ 1856.858738] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.enable (expected 0, found 1)
[ 1856.858927] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.active (expected 0, found 1)
[ 1856.859088] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in cpu_transcoder (expected -1, found 1)
[ 1856.859248] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in has_pch_encoder (expected no, found yes)
[ 1856.859406] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in fdi_lanes (expected 0, found 3)
[ 1856.859564] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in fdi_m_n (expected tu 0 data 0/0 link 0/0, found tu 64, data 7503143/8388608 link 468946/524288)
[ 1856.859738] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in lane_count (expected 0, found 4)
[ 1856.859910] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 64, data 5627357/8388608 link 468946/524288)
[ 1856.860070] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in dp_m2_n2 (expected tu 0 data 0/0 link 0/0, found tu 1, data 0/0 link 0/0)
[ 1856.860229] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in output_types (expected 0x00000000, found 0x00000080)
[ 1856.860386] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in framestart_delay (expected 0, found 1)
[ 1856.860543] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_hdisplay (expected 0, found 2560)
[ 1856.860700] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_htotal (expected 0, found 2720)
[ 1856.860862] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_hblank_start (expected 0, found 2560)
[ 1856.861020] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_hblank_end (expected 0, found 2720)
[ 1856.861177] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_hsync_start (expected 0, found 2608)
[ 1856.861334] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_hsync_end (expected 0, found 2640)
[ 1856.861490] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_vdisplay (expected 0, found 1440)
[ 1856.861647] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_vtotal (expected 0, found 1481)
[ 1856.861812] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_vblank_start (expected 0, found 1440)
[ 1856.861969] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_vblank_end (expected 0, found 1481)
[ 1856.862126] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_vsync_start (expected 0, found 1443)
[ 1856.862283] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_vsync_end (expected 0, found 1448)
[ 1856.862439] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_hdisplay (expected 0, found 2560)
[ 1856.862596] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_htotal (expected 0, found 2720)
[ 1856.862752] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_hblank_start (expected 0, found 2560)
[ 1856.862917] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2720)
[ 1856.863075] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2608)
[ 1856.863260] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2640)
[ 1856.863442] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1440)
[ 1856.863600] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_vtotal (expected 0, found 1481)
[ 1856.863763] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1440)
[ 1856.863924] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1481)
[ 1856.864081] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1443)
[ 1856.864238] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1448)
[ 1856.864394] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in pixel_multiplier (expected 0, found 1)
[ 1856.864551] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.flags (1) (expected 0, found 1)
[ 1856.864708] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.flags (8) (expected 0, found 8)
[ 1856.864873] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in has_audio (expected no, found yes)
[ 1856.865031] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] fastset mismatch in eld buffer
[ 1856.865186] expected: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 1856.865188] expected: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 1856.865188] expected: 00 00 00
[ 1856.865189] found: 10 00 08 00 6c 14 00 00 00 00 00 00 00 00 00 00
[ 1856.865190] found: 1e 6d 7f 5b 4c 47 20 55 4c 54 52 41 47 45 41 52
[ 1856.865190] found: 09 06 07
[ 1856.865191] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in pipe_bpp (expected 0, found 24)
[ 1856.865366] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.pipe_mode.crtc_clock (expected 0, found 241500)
[ 1856.865524] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in hw.adjusted_mode.crtc_clock (expected 0, found 241500)
[ 1856.865681] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:60:pipe B] fastset mismatch in port_clock (expected 0, found 270000)
[ 1856.865849] [drm:drm_mode_object_get] OBJ ID: 112 (3)
[ 1856.865859] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:45:pipe A] with [PLANE:31:primary A] visible 0 -> 1, off 0, on 1, ms 1
[ 1856.866020] [drm:drm_mode_object_get] OBJ ID: 112 (4)
[ 1856.866024] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 0 -> 1, off 0, on 1, ms 1
[ 1856.866187] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001a0ac647 state 00000000568d66e6 to 0000000062383939
[ 1856.866355] i915 0000:00:02.0: [drm:intel_plane_calc_min_cdclk [i915]] [PLANE:31:primary A] min cdclk (76190 kHz) > [CRTC:45:pipe A] min cdclk (0 kHz)
[ 1856.866549] i915 0000:00:02.0: [drm:intel_plane_calc_min_cdclk [i915]] [PLANE:46:primary B] min cdclk (241500 kHz) > [CRTC:60:pipe B] min cdclk (0 kHz)
[ 1856.866746] i915 0000:00:02.0: [drm:intel_modeset_calc_cdclk [i915]] New cdclk calculated to be logical 400000 kHz, actual 400000 kHz
[ 1856.866918] i915 0000:00:02.0: [drm:intel_modeset_calc_cdclk [i915]] New voltage level calculated to be logical 0, actual 0
[ 1856.867087] i915 0000:00:02.0: [drm:intel_find_shared_dpll [i915]] [CRTC:45:pipe A] allocated PCH DPLL A
[ 1856.867242] i915 0000:00:02.0: [drm:intel_reference_shared_dpll [i915]] [CRTC:45:pipe A] reserving PCH DPLL A
[ 1856.867396] [drm:drm_mode_object_get] OBJ ID: 117 (5)
[ 1856.867402] i915 0000:00:02.0: [drm:intel_find_shared_dpll [i915]] [CRTC:60:pipe B] allocated PCH DPLL B
[ 1856.867588] i915 0000:00:02.0: [drm:intel_reference_shared_dpll [i915]] [CRTC:60:pipe B] reserving PCH DPLL B
[ 1856.867786] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:45:pipe A] enable: yes [modeset]
[ 1856.867947] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: LVDS (0x10), output format: RGB
[ 1856.868105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 18, dithering: 1
[ 1856.868263] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[ 1856.868419] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[ 1856.868576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] bigjoiner: no, pipes: 0x0
[ 1856.868732] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[ 1856.868899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fdi: lanes: 1; data_m: 5326067, data_n: 8388608, link_m: 147946, link_n: 524288, tu: 64
[ 1856.869059] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0
[ 1856.869216] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[ 1856.869385] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, vmin: 0, vmax: 0, pipeline full: 0, guardband: 0 flipline: 0, vmin vblank: -1, vmax vblank: -2
[ 1856.869578] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1366x768": 60 76300 1366 1414 1446 1610 768 771 776 790 0x48 0xa
[ 1856.869754] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1366x768": 60 76300 1366 1414 1446 1610 768 771 776 790 0x48 0xa
[ 1856.869952] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: clock=76190, hd=1366 hb=1366-1610 hs=1414-1446 ht=1610, vd=768 vb=768-790 vs=771-776 vt=790, flags=0xa
[ 1856.870116] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1366x768": 60 76190 1366 1414 1446 1610 768 771 776 790 0x40 0xa
[ 1856.870276] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: clock=76190, hd=1366 hb=1366-1610 hs=1414-1446 ht=1610, vd=768 vb=768-790 vs=771-776 vt=790, flags=0xa
[ 1856.870435] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 76190, pipe src: 1366x768+0+0, pixel rate 76190
[ 1856.870593] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 0, ips linetime: 0
[ 1856.870768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[ 1856.870934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[ 1856.871092] i915 0000:00:02.0: [drm:ibx_dump_hw_state [i915]] dpll_hw_state: dpll: 0x88040004, dpll_md: 0x0, fp0: 0x10c08, fp1: 0x10c08
[ 1856.871246] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x2 gamma_mode: 0x0 gamma_enable: 1 csc_enable: 0
[ 1856.871402] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 256 entries
[ 1856.871559] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:31:primary A] fb: [FB:112] 2560x1440 format = XR24 little-endian (0x34325258) modifier = 0x0, visible: yes
[ 1856.871731] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] rotation: 0x1, scaler: -1, scaling_filter: 0
[ 1856.871929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] src: 1366.000000x768.000000+0.000000+0.000000 dst: 1366x768+0+0
[ 1856.872090] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:sprite A] fb: [NOFB], visible: no
[ 1856.872247] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:41:cursor A] fb: [NOFB], visible: no
[ 1856.872405] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:60:pipe B] enable: yes [modeset]
[ 1856.872561] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP (0x80), output format: RGB
[ 1856.872718] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[ 1856.872879] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[ 1856.873035] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[ 1856.873191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] bigjoiner: no, pipes: 0x0
[ 1856.873361] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[ 1856.873553] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fdi: lanes: 3; data_m: 7503143, data_n: 8388608, link_m: 468946, link_n: 524288, tu: 64
[ 1856.873745] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 4; data_m: 5627357, data_n: 8388608, link_m: 468946, link_n: 524288, tu: 64
[ 1856.873941] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 4; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 1
[ 1856.874110] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0
[ 1856.874269] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[ 1856.874427] ELD: 10 00 08 00 6c 14 00 00 00 00 00 00 00 00 00 00
[ 1856.874428] ELD: 1e 6d 7f 5b 4c 47 20 55 4c 54 52 41 47 45 41 52
[ 1856.874428] ELD: 09 06 07 00
[ 1856.874429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, vmin: 0, vmax: 0, pipeline full: 0, guardband: 0 flipline: 0, vmin vblank: -1, vmax vblank: -2
[ 1856.874588] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[ 1856.874746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[ 1856.874933] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: clock=241500, hd=2560 hb=2560-2720 hs=2608-2640 ht=2720, vd=1440 vb=1440-1481 vs=1443-1448 vt=1481, flags=0x9
[ 1856.875093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[ 1856.875251] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: clock=241500, hd=2560 hb=2560-2720 hs=2608-2640 ht=2720, vd=1440 vb=1440-1481 vs=1443-1448 vt=1481, flags=0x9
[ 1856.875410] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pipe src: 2560x1440+0+0, pixel rate 241500
[ 1856.875581] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 0, ips linetime: 0
[ 1856.875777] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[ 1856.875960] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[ 1856.876127] i915 0000:00:02.0: [drm:ibx_dump_hw_state [i915]] dpll_hw_state: dpll: 0xc4010001, dpll_md: 0x0, fp0: 0xc20e08, fp1: 0xc20e08
[ 1856.876282] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x2 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[ 1856.876440] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[ 1856.876597] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:46:primary B] fb: [FB:112] 2560x1440 format = XR24 little-endian (0x34325258) modifier = 0x0, visible: yes
[ 1856.876778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] rotation: 0x1, scaler: -1, scaling_filter: 0
[ 1856.876993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] src: 2560.000000x1440.000000+0.000000+0.000000 dst: 2560x1440+0+0
[ 1856.877183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:50:sprite B] fb: [NOFB], visible: no
[ 1856.877375] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:56:cursor B] fb: [NOFB], visible: no
[ 1856.877568] i915 0000:00:02.0: [drm:drm_atomic_commit] committing 0000000062383939
[ 1856.877604] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[ 1856.877792] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:77:LVDS]
[ 1856.877990] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:81:CRT]
[ 1856.878139] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:82:HDMI B]
[ 1856.878288] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:90:DP B]
[ 1856.878436] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:95:HDMI C]
[ 1856.878584] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:99:HDMI D]
[ 1856.878731] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:103:DP C]
[ 1856.878897] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:107:DP D]
[ 1856.879099] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] PCH DPLL A
[ 1856.879256] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] PCH DPLL B
[ 1856.879415] i915 0000:00:02.0: [drm:drm_calc_timestamping_constants] crtc 45: hwmode: htotal 1610, vtotal 790, vdisplay 768
[ 1856.879420] i915 0000:00:02.0: [drm:drm_calc_timestamping_constants] crtc 45: clock 76190 kHz framedur 16693791 linedur 21131
[ 1856.879970] i915 0000:00:02.0: [drm:intel_enable_transcoder [i915]] enabling pipe A
[ 1856.880290] i915 0000:00:02.0: [drm:ivb_manual_fdi_link_train [i915]] FDI_RX_IIR before link train 0x0
[ 1856.880465] i915 0000:00:02.0: [drm:ivb_manual_fdi_link_train [i915]] FDI_RX_IIR 0x100
[ 1856.880651] i915 0000:00:02.0: [drm:ivb_manual_fdi_link_train [i915]] FDI train 1 done, level 0.
[ 1856.880839] i915 0000:00:02.0: [drm:ivb_manual_fdi_link_train [i915]] FDI_RX_IIR 0x200
[ 1856.881026] i915 0000:00:02.0: [drm:ivb_manual_fdi_link_train [i915]] FDI train 2 done, level 0.
[ 1856.881178] i915 0000:00:02.0: [drm:ilk_pch_enable [i915]] FDI train done.
[ 1856.881329] i915 0000:00:02.0: [drm:intel_enable_shared_dpll [i915]] enable PCH DPLL A (active 0x1, on? 0) for [CRTC:45:pipe A]
[ 1856.881483] i915 0000:00:02.0: [drm:intel_enable_shared_dpll [i915]] enabling PCH DPLL A
[ 1856.883099] i915 0000:00:02.0: [drm:intel_backlight_enable [i915]] pipe A
[ 1856.883267] i915 0000:00:02.0: [drm:intel_backlight_set_pwm_level [i915]] [CONNECTOR:76:LVDS-1] set backlight PWM = 3487
[ 1856.889783] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 0, ret: 0
[ 1856.916594] i915 0000:00:02.0: [drm:drm_calc_timestamping_constants] crtc 60: hwmode: htotal 2720, vtotal 1481, vdisplay 1440
[ 1856.916609] i915 0000:00:02.0: [drm:drm_calc_timestamping_constants] crtc 60: clock 241500 kHz framedur 16680414 linedur 11262
[ 1856.917144] i915 0000:00:02.0: [drm:intel_enable_transcoder [i915]] enabling pipe B
[ 1856.917558] i915 0000:00:02.0: [drm:ivb_manual_fdi_link_train [i915]] FDI_RX_IIR before link train 0x0
[ 1856.917725] i915 0000:00:02.0: [drm:ivb_manual_fdi_link_train [i915]] FDI_RX_IIR 0x100
[ 1856.917896] i915 0000:00:02.0: [drm:ivb_manual_fdi_link_train [i915]] FDI train 1 done, level 0.
[ 1856.918093] i915 0000:00:02.0: [drm:ivb_manual_fdi_link_train [i915]] FDI_RX_IIR 0x200
[ 1856.918251] i915 0000:00:02.0: [drm:ivb_manual_fdi_link_train [i915]] FDI train 2 done, level 0.
[ 1856.918407] i915 0000:00:02.0: [drm:ilk_pch_enable [i915]] FDI train done.
[ 1856.918563] i915 0000:00:02.0: [drm:intel_enable_shared_dpll [i915]] enable PCH DPLL B (active 0x2, on? 0) for [CRTC:60:pipe B]
[ 1856.918723] i915 0000:00:02.0: [drm:intel_enable_shared_dpll [i915]] enabling PCH DPLL B
[ 1856.920309] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [ENCODER:90:DP B][DPRX] Using DP training pattern TPS1
[ 1856.920740] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX B/DP B: 0x00600 AUX <- (ret= 1) 01
[ 1856.920948] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1856.921303] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 15) 12 14 c4 01 00 05 01 83 02 00 00 00 00 00 04
[ 1856.921322] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX B/DP B: DPCD: 12 14 c4 01 00 05 01 83 02 00 00 00 00 00 04
[ 1856.921339] i915 0000:00:02.0: [drm:intel_dp_start_link_train [i915]] [ENCODER:90:DP B] Using LINK_BW_SET value 0a
[ 1856.922096] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX B/DP B: 0x00100 AUX <- (ret= 2) 0a 84
[ 1856.922285] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX B/DP B: 0x00107 AUX <- (ret= 2) 00 01
[ 1856.922303] i915 0000:00:02.0: [drm:intel_dp_set_signal_levels [i915]] [ENCODER:90:DP B][DPRX] 8b/10b, lanes: 4, vswing levels: 0/0/0/0, pre-emphasis levels: 0/0/0/0
[ 1856.922457] i915 0000:00:02.0: [drm:g4x_set_signal_levels [i915]] Using signal levels 00000000
[ 1856.922611] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [ENCODER:90:DP B][DPRX] Using DP training pattern TPS1
[ 1856.923109] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX B/DP B: 0x00102 AUX <- (ret= 5) 21 00 00 00 00
[ 1856.933189] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 40663, current 40663
[ 1856.949902] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 0
[ 1856.955432] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1856.955795] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00202 AUX -> (ret= 6) 77 77 80 00 00 00
[ 1856.955857] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [ENCODER:90:DP B][DPRX] Clock recovery OK
[ 1856.956221] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [ENCODER:90:DP B][DPRX] Using DP training pattern TPS2
[ 1856.956768] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX B/DP B: 0x00102 AUX <- (ret= 5) 22 00 00 00 00
[ 1856.975899] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1856.976206] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00202 AUX -> (ret= 6) 77 77 81 00 00 00
[ 1856.976300] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [ENCODER:90:DP B][DPRX] Channel EQ done. DP Training successful
[ 1856.977073] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:91:DP-1][ENCODER:90:DP B][DPRX] Link Training passed at link rate = 270000, lane count = 4
[ 1856.977919] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX B/DP B: 0x00102 AUX <- (ret= 1) 00
[ 1856.977968] i915 0000:00:02.0: [drm:intel_audio_codec_enable [i915]] [CONNECTOR:91:DP-1][ENCODER:90:DP B] Enable audio codec on [CRTC:60:pipe B], 36 bytes ELD
[ 1856.978327] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1857.044837] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 81137, current 81137
[ 1857.044983] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:76:LVDS-1]
[ 1857.045581] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (6)
[ 1857.045601] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (5)
[ 1857.045609] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (4)
[ 1857.045619] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:45:pipe A]
[ 1857.046337] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] PCH DPLL A
[ 1857.046936] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:91:DP-1]
[ 1857.047314] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:60:pipe B]
[ 1857.047718] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] PCH DPLL B
[ 1857.048157] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 0000000062383939
[ 1857.048170] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1857.048179] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1857.048184] [drm:drm_mode_object_put.part.0] OBJ ID: 115 (1)
[ 1857.048202] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 0000000062383939
[ 1857.048225] i915 0000:00:02.0: [drm:drm_fb_helper_hotplug_event]
[ 1857.048236] [drm:drm_client_modeset_probe]
[ 1857.048243] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1857.048249] [drm:drm_mode_object_get] OBJ ID: 80 (2)
[ 1857.048254] [drm:drm_mode_object_get] OBJ ID: 83 (2)
[ 1857.048259] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1857.048264] [drm:drm_mode_object_get] OBJ ID: 96 (2)
[ 1857.048269] [drm:drm_mode_object_get] OBJ ID: 100 (2)
[ 1857.048274] [drm:drm_mode_object_get] OBJ ID: 104 (2)
[ 1857.048279] [drm:drm_mode_object_get] OBJ ID: 108 (2)
[ 1857.048286] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:76:LVDS-1]
[ 1857.048300] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:76:LVDS-1] Assigning EDID-1.4 digital sink color depth as 6 bpc.
[ 1857.048313] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:76:LVDS-1] ELD monitor
[ 1857.048323] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:76:LVDS-1] ELD size 20, SAD count 0
[ 1857.048337] [drm:drm_mode_object_put.part.0] OBJ ID: 111 (1)
[ 1857.048463] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:76:LVDS-1] probed modes :
[ 1857.048471] [drm:drm_mode_debug_printmodeline] Modeline "1366x768": 60 76300 1366 1414 1446 1610 768 771 776 790 0x48 0xa
[ 1857.048484] [drm:drm_mode_debug_printmodeline] Modeline "1366x768": 40 50870 1366 1414 1446 1610 768 771 776 790 0x40 0xa
[ 1857.048494] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:80:VGA-1]
[ 1857.048501] i915 0000:00:02.0: [drm:intel_crt_detect [i915]] [CONNECTOR:80:VGA-1] force=1
[ 1857.048894] i915 0000:00:02.0: [drm:intel_crt_detect [i915]] ironlake hotplug adpa=0xf40000, result 0
[ 1857.049276] i915 0000:00:02.0: [drm:intel_crt_detect [i915]] CRT not detected via hotplug
[ 1857.049869] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus vga] NAK for addr: 0050 w(1)
[ 1857.050256] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus vga] NAK on first message, retry
[ 1857.050812] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus vga] NAK for addr: 0050 w(1)
[ 1857.051179] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[ 1857.051189] i915 0000:00:02.0: [drm:intel_crt_get_edid [i915]] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[ 1857.051564] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus vga. force bit now 1
[ 1857.052707] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[ 1857.052717] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus vga. force bit now 0
[ 1857.053108] i915 0000:00:02.0: [drm:intel_crt_detect_ddc [i915]] CRT not detected via DDC:0x50 [no valid EDID found]
[ 1857.053482] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:80:VGA-1] disconnected
[ 1857.053494] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:83:HDMI-A-1]
[ 1857.053503] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-1]
[ 1857.054084] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 1857.054451] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 1857.055011] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 1857.055384] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpb
[ 1857.055394] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1857.055780] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 1857.056916] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpb
[ 1857.056926] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 1857.057307] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:83:HDMI-A-1] disconnected
[ 1857.057316] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:91:DP-1]
[ 1857.057327] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:91:DP-1]
[ 1857.057922] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1857.058340] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 15) 12 14 c4 01 00 05 01 83 02 00 00 00 00 00 04
[ 1857.058383] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX B/DP B: DPCD: 12 14 c4 01 00 05 01 83 02 00 00 00 00 00 04
[ 1857.058615] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1857.059040] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 22 30 10 02 1e
[ 1857.059083] i915 0000:00:02.0: [drm:drm_dp_read_desc [drm_display_helper]] AUX B/DP B: DP branch: OUI 90-cc-24 dev-ID SYNA"0 HW-rev 1.0 SW-rev 2.30 quirks 0x0008
[ 1857.059321] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1857.059550] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00200 AUX -> (ret= 1) 01
[ 1857.059780] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1857.060009] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00080 AUX -> (ret= 3) 08 0d 0d
[ 1857.060051] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX B/DP B: DPCD DFP: 08 0d 0d
[ 1857.060281] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1857.060512] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00021 AUX -> (ret= 1) 01
[ 1857.060553] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:90:DP B] MST support: port: no, sink: yes, modparam: yes
[ 1857.060953] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 270000
[ 1857.061435] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1857.061334] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[ 1857.061718] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[ 1857.062294] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1857.062705] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00202 AUX -> (ret= 6) 77 77 81 00 00 00
[ 1857.070765] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:91:DP-1] Assigning EDID-1.4 digital sink color depth as 10 bpc.
[ 1857.070783] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:91:DP-1] ELD monitor LG ULTRAGEAR
[ 1857.070790] i915 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:91:DP-1] ELD size 36, SAD count 1
[ 1857.070799] [drm:drm_mode_object_put.part.0] OBJ ID: 113 (1)
[ 1857.070806] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:91:DP-1] VRR capable: no
[ 1857.071066] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:91:DP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 24Gbps
[ 1857.071492] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1857.071893] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00092 AUX -> (ret= 13) 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 1857.071945] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] PCON ENCODER DSC DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 1857.072331] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:91:DP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? no, YCbCr 4:4:4->4:2:0 conversion? no
[ 1857.072721] [drm:drm_detect_monitor_audio] Monitor has basic audio support
[ 1857.072927] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1857.073166] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x03000 AUX -> (ret= 1) 00
[ 1857.073401] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX B/DP B: 0x00000 AUX -> (ret= 1) 12
[ 1857.073637] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX B/DP B: 0x00201 AUX -> (ret= 1) 00
[ 1857.073734] i915 0000:00:02.0: [drm:do_detailed_mode] [CONNECTOR:91:DP-1] Composite sync not supported
[ 1857.075410] [drm:drm_mode_debug_printmodeline] Modeline "2560x1440": 144 604250 2560 2608 2640 2720 1440 1443 1453 1543 0x48 0x9
[ 1857.075427] [drm:drm_mode_prune_invalid] Not using 2560x1440 mode: CLOCK_HIGH
[ 1857.075434] [drm:drm_mode_debug_printmodeline] Modeline "2560x1440": 100 410500 2560 2608 2640 2720 1440 1443 1453 1510 0x40 0xa
[ 1857.075446] [drm:drm_mode_prune_invalid] Not using 2560x1440 mode: CLOCK_HIGH
[ 1857.075453] [drm:drm_mode_debug_printmodeline] Modeline "2560x1440": 120 497750 2560 2608 2640 2720 1440 1443 1453 1525 0x40 0x9
[ 1857.075464] [drm:drm_mode_prune_invalid] Not using 2560x1440 mode: CLOCK_HIGH
[ 1857.075477] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:91:DP-1] probed modes :
[ 1857.075484] [drm:drm_mode_debug_printmodeline] Modeline "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[ 1857.075496] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 75 220960 1920 2064 2264 2608 1080 1083 1088 1130 0x0 0x6
[ 1857.075507] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[ 1857.075517] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[ 1857.075528] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[ 1857.075539] [drm:drm_mode_debug_printmodeline] Modeline "1920x1080": 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5
[ 1857.075549] [drm:drm_mode_debug_printmodeline] Modeline "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[ 1857.075559] [drm:drm_mode_debug_printmodeline] Modeline "1600x900": 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5
[ 1857.075570] [drm:drm_mode_debug_printmodeline] Modeline "1280x1024": 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[ 1857.075581] [drm:drm_mode_debug_printmodeline] Modeline "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[ 1857.075590] [drm:drm_mode_debug_printmodeline] Modeline "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[ 1857.075600] [drm:drm_mode_debug_printmodeline] Modeline "1152x864": 60 81768 1152 1216 1336 1520 864 867 871 897 0x0 0x6
[ 1857.075611] [drm:drm_mode_debug_printmodeline] Modeline "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[ 1857.075621] [drm:drm_mode_debug_printmodeline] Modeline "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[ 1857.075632] [drm:drm_mode_debug_printmodeline] Modeline "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[ 1857.075641] [drm:drm_mode_debug_printmodeline] Modeline "1280x720": 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5
[ 1857.075651] [drm:drm_mode_debug_printmodeline] Modeline "1024x768": 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[ 1857.075661] [drm:drm_mode_debug_printmodeline] Modeline "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[ 1857.075670] [drm:drm_mode_debug_printmodeline] Modeline "800x600": 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[ 1857.075680] [drm:drm_mode_debug_printmodeline] Modeline "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[ 1857.075690] [drm:drm_mode_debug_printmodeline] Modeline "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[ 1857.075701] [drm:drm_mode_debug_printmodeline] Modeline "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[ 1857.075711] [drm:drm_mode_debug_printmodeline] Modeline "640x480": 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[ 1857.075720] [drm:drm_mode_debug_printmodeline] Modeline "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[ 1857.075730] [drm:drm_mode_debug_printmodeline] Modeline "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[ 1857.075740] [drm:drm_mode_debug_printmodeline] Modeline "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[ 1857.075750] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:96:HDMI-A-2]
[ 1857.075768] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:96:HDMI-A-2]
[ 1857.076350] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[ 1857.076736] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[ 1857.077291] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[ 1857.077673] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[ 1857.077683] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1857.078070] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[ 1857.079224] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[ 1857.079234] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[ 1857.079606] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:96:HDMI-A-2] disconnected
[ 1857.079615] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:100:HDMI-A-3]
[ 1857.079623] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:100:HDMI-A-3]
[ 1857.080215] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[ 1857.080597] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[ 1857.081188] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[ 1857.081567] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpd
[ 1857.081576] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 1857.081965] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[ 1857.083095] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpd
[ 1857.083105] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[ 1857.083465] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:100:HDMI-A-3] disconnected
[ 1857.083474] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:104:DP-2]
[ 1857.083481] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:104:DP-2]
[ 1857.083852] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:104:DP-2] disconnected
[ 1857.083860] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:108:DP-3]
[ 1857.083868] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:108:DP-3]
[ 1857.084226] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:108:DP-3] disconnected
[ 1857.084233] [drm:drm_client_modeset_probe] connector 76 enabled? yes
[ 1857.084241] [drm:drm_client_modeset_probe] connector 80 enabled? no
[ 1857.084245] [drm:drm_client_modeset_probe] connector 83 enabled? no
[ 1857.084250] [drm:drm_client_modeset_probe] connector 91 enabled? yes
[ 1857.084254] [drm:drm_client_modeset_probe] connector 96 enabled? no
[ 1857.084258] [drm:drm_client_modeset_probe] connector 100 enabled? no
[ 1857.084262] [drm:drm_client_modeset_probe] connector 104 enabled? no
[ 1857.084266] [drm:drm_client_modeset_probe] connector 108 enabled? no
[ 1857.084274] [drm:drm_client_modeset_probe] Not using firmware configuration
[ 1857.084280] [drm:drm_client_modeset_probe] looking for cmdline mode on connector 76
[ 1857.084286] [drm:drm_client_modeset_probe] looking for preferred mode on connector 76 0
[ 1857.084291] [drm:drm_client_modeset_probe] found mode 1366x768
[ 1857.084296] [drm:drm_client_modeset_probe] looking for cmdline mode on connector 91
[ 1857.084301] [drm:drm_client_modeset_probe] looking for preferred mode on connector 91 0
[ 1857.084306] [drm:drm_client_modeset_probe] found mode 2560x1440
[ 1857.084310] [drm:drm_client_modeset_probe] picking CRTCs for 2560x1440 config
[ 1857.084324] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1857.084330] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1857.084336] [drm:drm_client_modeset_probe] desired mode 1366x768 set on crtc 45 (0,0)
[ 1857.084342] [drm:drm_mode_object_get] OBJ ID: 76 (3)
[ 1857.084347] [drm:drm_client_modeset_probe] desired mode 2560x1440 set on crtc 60 (0,0)
[ 1857.084353] [drm:drm_mode_object_get] OBJ ID: 91 (3)
[ 1857.084358] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1857.084363] [drm:drm_mode_object_put.part.0] OBJ ID: 80 (2)
[ 1857.084368] [drm:drm_mode_object_put.part.0] OBJ ID: 83 (2)
[ 1857.084373] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1857.084377] [drm:drm_mode_object_put.part.0] OBJ ID: 96 (2)
[ 1857.084382] [drm:drm_mode_object_put.part.0] OBJ ID: 100 (2)
[ 1857.084387] [drm:drm_mode_object_put.part.0] OBJ ID: 104 (2)
[ 1857.084392] [drm:drm_mode_object_put.part.0] OBJ ID: 108 (2)
[ 1857.084402] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 0000000053e03185
[ 1857.084413] [drm:drm_mode_object_get] OBJ ID: 112 (5)
[ 1857.084418] [drm:drm_mode_object_get] OBJ ID: 112 (6)
[ 1857.084423] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:31:primary A] 00000000761489fb state to 0000000053e03185
[ 1857.084436] [drm:drm_mode_object_get] OBJ ID: 79 (1)
[ 1857.084441] [drm:drm_mode_object_get] OBJ ID: 117 (3)
[ 1857.084446] [drm:drm_mode_object_get] OBJ ID: 117 (4)
[ 1857.084451] [drm:drm_mode_object_get] OBJ ID: 117 (5)
[ 1857.084456] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:45:pipe A] 00000000802f548c state to 0000000053e03185
[ 1857.084467] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:35:sprite A] 000000002a58f2cb state to 0000000053e03185
[ 1857.084476] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:35:sprite A] state 000000002a58f2cb
[ 1857.084485] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:41:cursor A] 0000000040fb2fb7 state to 0000000053e03185
[ 1857.084492] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:41:cursor A] state 0000000040fb2fb7
[ 1857.084500] [drm:drm_mode_object_get] OBJ ID: 112 (7)
[ 1857.084505] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1857.084511] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 0000000087ac20a9 state to 0000000053e03185
[ 1857.084521] [drm:drm_mode_object_get] OBJ ID: 114 (1)
[ 1857.084527] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 00000000d2ed5eab state to 0000000053e03185
[ 1857.084536] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:50:sprite B] 000000006cd688a4 state to 0000000053e03185
[ 1857.084544] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:50:sprite B] state 000000006cd688a4
[ 1857.084554] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 000000009182ffdf state to 0000000053e03185
[ 1857.084562] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:56:cursor B] state 000000009182ffdf
[ 1857.084571] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:61:primary C] 000000008743efde state to 0000000053e03185
[ 1857.084581] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:65:sprite C] 000000002ae77beb state to 0000000053e03185
[ 1857.084589] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:65:sprite C] state 000000002ae77beb
[ 1857.084598] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:71:cursor C] 00000000449fa82e state to 0000000053e03185
[ 1857.084606] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:71:cursor C] state 00000000449fa82e
[ 1857.084615] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:31:primary A] state 00000000761489fb
[ 1857.084624] [drm:drm_mode_object_get] OBJ ID: 112 (9)
[ 1857.084629] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (10)
[ 1857.084636] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:45:pipe A] to 0000000053e03185
[ 1857.084647] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1857.084652] [drm:drm_mode_object_get] OBJ ID: 76 (5)
[ 1857.084658] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:76:LVDS-1] 00000000a50f7427 state to 0000000053e03185
[ 1857.084669] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1857.084675] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 00000000a50f7427 to [NOCRTC]
[ 1857.084685] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1857.084691] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 00000000a50f7427 to [CRTC:45:pipe A]
[ 1857.084702] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:46:primary B] state 0000000087ac20a9
[ 1857.084711] [drm:drm_mode_object_get] OBJ ID: 112 (9)
[ 1857.084716] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (10)
[ 1857.084722] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:60:pipe B] to 0000000053e03185
[ 1857.084730] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1857.084735] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1857.084740] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000ab09b6ca state to 0000000053e03185
[ 1857.084749] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1857.084766] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 00000000ab09b6ca to [NOCRTC]
[ 1857.084775] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1857.084781] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 00000000ab09b6ca to [CRTC:60:pipe B]
[ 1857.084793] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:75:pipe C] 00000000682e676d state to 0000000053e03185
[ 1857.084801] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc] Set [NOMODE] for [CRTC:75:pipe C] state 00000000682e676d
[ 1857.084809] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:61:primary C] state 000000008743efde
[ 1857.084818] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:75:pipe C] to 0000000053e03185
[ 1857.084827] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 0000000053e03185
[ 1857.084843] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:76:LVDS-1]
[ 1857.084854] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:76:LVDS-1] keeps [ENCODER:77:LVDS], now on [CRTC:45:pipe A]
[ 1857.084864] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1857.084872] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1857.084883] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 0000000053e03185
[ 1857.084891] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 0000000053e03185
[ 1857.084898] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000053e03185
[ 1857.084906] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000053e03185
[ 1857.084919] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1857.084925] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1857.084938] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:45:pipe A] with [PLANE:31:primary A] visible 1 -> 1, off 0, on 0, ms 0
[ 1857.085348] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1857.085354] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1857.085363] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1857.085794] i915 0000:00:02.0: [drm:drm_atomic_commit] committing 0000000053e03185
[ 1857.085863] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 0, ret: 0
[ 1857.085886] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1857.094769] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 81140, current 81140
[ 1857.100060] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 40673, current 40673
[ 1857.100116] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 0000000053e03185
[ 1857.100127] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1857.100134] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1857.100139] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1857.100144] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1857.100148] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1857.100152] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (6)
[ 1857.100156] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (5)
[ 1857.100160] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (4)
[ 1857.100165] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1857.100171] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1857.100175] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (8)
[ 1857.100180] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (7)
[ 1857.100185] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (6)
[ 1857.100191] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 0000000053e03185
[ 1857.100210] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 0000000053e03185
[ 1857.100218] [drm:drm_mode_object_get] OBJ ID: 112 (5)
[ 1857.100222] [drm:drm_mode_object_get] OBJ ID: 112 (6)
[ 1857.100226] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:31:primary A] 00000000c1fef087 state to 0000000053e03185
[ 1857.100235] [drm:drm_mode_object_get] OBJ ID: 79 (1)
[ 1857.100240] [drm:drm_mode_object_get] OBJ ID: 117 (3)
[ 1857.100243] [drm:drm_mode_object_get] OBJ ID: 117 (4)
[ 1857.100247] [drm:drm_mode_object_get] OBJ ID: 117 (5)
[ 1857.100251] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:45:pipe A] 00000000cabc9e15 state to 0000000053e03185
[ 1857.100258] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:35:sprite A] 00000000f330415f state to 0000000053e03185
[ 1857.100265] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:35:sprite A] state 00000000f330415f
[ 1857.100273] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:41:cursor A] 000000003b96b4ae state to 0000000053e03185
[ 1857.100280] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:41:cursor A] state 000000003b96b4ae
[ 1857.100287] [drm:drm_mode_object_get] OBJ ID: 112 (7)
[ 1857.100291] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1857.100295] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 0000000099f514e6 state to 0000000053e03185
[ 1857.100303] [drm:drm_mode_object_get] OBJ ID: 114 (1)
[ 1857.100307] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 0000000070d03294 state to 0000000053e03185
[ 1857.100315] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:50:sprite B] 00000000fe0ad5a0 state to 0000000053e03185
[ 1857.100321] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:50:sprite B] state 00000000fe0ad5a0
[ 1857.100329] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000276b869d state to 0000000053e03185
[ 1857.100335] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:56:cursor B] state 00000000276b869d
[ 1857.100342] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:61:primary C] 0000000011c04c0e state to 0000000053e03185
[ 1857.100350] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:65:sprite C] 000000002d06ad1c state to 0000000053e03185
[ 1857.100356] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:65:sprite C] state 000000002d06ad1c
[ 1857.100364] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:71:cursor C] 000000006ef0c78a state to 0000000053e03185
[ 1857.100370] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:71:cursor C] state 000000006ef0c78a
[ 1857.100378] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:31:primary A] state 00000000c1fef087
[ 1857.100385] [drm:drm_mode_object_get] OBJ ID: 112 (9)
[ 1857.100389] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (10)
[ 1857.100395] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:45:pipe A] to 0000000053e03185
[ 1857.100403] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1857.100408] [drm:drm_mode_object_get] OBJ ID: 76 (5)
[ 1857.100412] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:76:LVDS-1] 000000009aee415b state to 0000000053e03185
[ 1857.100421] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1857.100426] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 000000009aee415b to [NOCRTC]
[ 1857.100434] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1857.100439] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 000000009aee415b to [CRTC:45:pipe A]
[ 1857.100448] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:46:primary B] state 0000000099f514e6
[ 1857.100454] [drm:drm_mode_object_get] OBJ ID: 112 (9)
[ 1857.100459] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (10)
[ 1857.100464] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:60:pipe B] to 0000000053e03185
[ 1857.100472] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1857.100475] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1857.100480] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 0000000093eababd state to 0000000053e03185
[ 1857.100487] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1857.100491] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 0000000093eababd to [NOCRTC]
[ 1857.100498] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1857.100502] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 0000000093eababd to [CRTC:60:pipe B]
[ 1857.100513] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:75:pipe C] 00000000fa5b2514 state to 0000000053e03185
[ 1857.100520] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc] Set [NOMODE] for [CRTC:75:pipe C] state 00000000fa5b2514
[ 1857.100527] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:61:primary C] state 0000000011c04c0e
[ 1857.100534] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:75:pipe C] to 0000000053e03185
[ 1857.100541] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 0000000053e03185
[ 1857.100552] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:76:LVDS-1]
[ 1857.100560] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:76:LVDS-1] keeps [ENCODER:77:LVDS], now on [CRTC:45:pipe A]
[ 1857.100568] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1857.100575] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1857.100583] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 0000000053e03185
[ 1857.100590] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 0000000053e03185
[ 1857.100596] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000053e03185
[ 1857.100602] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 0000000053e03185
[ 1857.100611] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1857.100615] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1857.100624] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:45:pipe A] with [PLANE:31:primary A] visible 1 -> 1, off 0, on 0, ms 0
[ 1857.100979] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1857.100985] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1857.100993] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1857.101326] i915 0000:00:02.0: [drm:drm_atomic_commit] committing 0000000053e03185
[ 1857.111471] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 81141, current 81141
[ 1857.116752] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 40674, current 40674
[ 1857.116813] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 0000000053e03185
[ 1857.116822] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1857.116827] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1857.116832] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1857.116835] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1857.116839] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1857.116843] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (6)
[ 1857.116846] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (5)
[ 1857.116849] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (4)
[ 1857.116854] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1857.116858] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1857.116862] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (8)
[ 1857.116869] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (7)
[ 1857.116873] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (6)
[ 1857.116878] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 0000000053e03185
[ 1857.116918] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000005898ede7
[ 1857.116925] [drm:drm_mode_object_get] OBJ ID: 112 (5)
[ 1857.116929] [drm:drm_mode_object_get] OBJ ID: 112 (6)
[ 1857.116933] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:31:primary A] 000000005e3b3887 state to 000000005898ede7
[ 1857.116941] [drm:drm_mode_object_get] OBJ ID: 79 (1)
[ 1857.116945] [drm:drm_mode_object_get] OBJ ID: 117 (3)
[ 1857.116949] [drm:drm_mode_object_get] OBJ ID: 117 (4)
[ 1857.116952] [drm:drm_mode_object_get] OBJ ID: 117 (5)
[ 1857.116955] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:45:pipe A] 0000000086ab33de state to 000000005898ede7
[ 1857.116962] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:35:sprite A] 0000000009c11c16 state to 000000005898ede7
[ 1857.116968] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:35:sprite A] state 0000000009c11c16
[ 1857.116974] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:41:cursor A] 00000000466bf83b state to 000000005898ede7
[ 1857.116981] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:41:cursor A] state 00000000466bf83b
[ 1857.116987] [drm:drm_mode_object_get] OBJ ID: 112 (7)
[ 1857.116990] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1857.116994] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 000000005705d457 state to 000000005898ede7
[ 1857.117001] [drm:drm_mode_object_get] OBJ ID: 114 (1)
[ 1857.117005] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 00000000e0c15dd8 state to 000000005898ede7
[ 1857.117011] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:50:sprite B] 00000000d5a23287 state to 000000005898ede7
[ 1857.117016] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:50:sprite B] state 00000000d5a23287
[ 1857.117023] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000bb14a346 state to 000000005898ede7
[ 1857.117028] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:56:cursor B] state 00000000bb14a346
[ 1857.117034] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:61:primary C] 00000000449fa82e state to 000000005898ede7
[ 1857.117040] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:65:sprite C] 000000002ae77beb state to 000000005898ede7
[ 1857.117045] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:65:sprite C] state 000000002ae77beb
[ 1857.117052] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:71:cursor C] 000000008743efde state to 000000005898ede7
[ 1857.117057] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:71:cursor C] state 000000008743efde
[ 1857.117063] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:31:primary A] state 000000005e3b3887
[ 1857.117069] [drm:drm_mode_object_get] OBJ ID: 112 (9)
[ 1857.117073] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (10)
[ 1857.117078] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:45:pipe A] to 000000005898ede7
[ 1857.117084] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1857.117087] [drm:drm_mode_object_get] OBJ ID: 76 (5)
[ 1857.117091] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:76:LVDS-1] 00000000ec89f8b7 state to 000000005898ede7
[ 1857.117099] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1857.117102] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 00000000ec89f8b7 to [NOCRTC]
[ 1857.117109] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1857.117113] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 00000000ec89f8b7 to [CRTC:45:pipe A]
[ 1857.117120] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:46:primary B] state 000000005705d457
[ 1857.117126] [drm:drm_mode_object_get] OBJ ID: 112 (9)
[ 1857.117129] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (10)
[ 1857.117132] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:60:pipe B] to 000000005898ede7
[ 1857.117139] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1857.117142] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1857.117146] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000001291ffe2 state to 000000005898ede7
[ 1857.117151] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1857.117155] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 000000001291ffe2 to [NOCRTC]
[ 1857.117161] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1857.117164] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 000000001291ffe2 to [CRTC:60:pipe B]
[ 1857.117172] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:75:pipe C] 000000003e43d8ee state to 000000005898ede7
[ 1857.117179] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc] Set [NOMODE] for [CRTC:75:pipe C] state 000000003e43d8ee
[ 1857.117184] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:61:primary C] state 00000000449fa82e
[ 1857.117190] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:75:pipe C] to 000000005898ede7
[ 1857.117197] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000005898ede7
[ 1857.117208] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:76:LVDS-1]
[ 1857.117214] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:76:LVDS-1] keeps [ENCODER:77:LVDS], now on [CRTC:45:pipe A]
[ 1857.117222] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1857.117227] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1857.117234] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 000000005898ede7
[ 1857.117240] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 000000005898ede7
[ 1857.117246] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000005898ede7
[ 1857.117251] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000005898ede7
[ 1857.117259] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1857.117262] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1857.117270] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:45:pipe A] with [PLANE:31:primary A] visible 1 -> 1, off 0, on 0, ms 0
[ 1857.117580] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1857.117584] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1857.117589] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1857.117905] i915 0000:00:02.0: [drm:drm_atomic_commit] committing 000000005898ede7
[ 1857.128151] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 81142, current 81142
[ 1857.133423] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 40675, current 40675
[ 1857.133473] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000005898ede7
[ 1857.133480] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1857.133485] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1857.133488] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1857.133491] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1857.133495] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1857.133498] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (6)
[ 1857.133501] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (5)
[ 1857.133504] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (4)
[ 1857.133507] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1857.133512] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1857.133515] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (8)
[ 1857.133519] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (7)
[ 1857.133522] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (6)
[ 1857.133527] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000005898ede7
[ 1857.144809] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1857.150139] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 0
[ 1866.580796] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1866.580816] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-13
[ 1866.581047] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway" pid=5381, dev=0xe201, auth=1, DRM_IOCTL_MODE_ATOMIC
[ 1866.581058] i915 0000:00:02.0: [drm:drm_ioctl] comm="sway", pid=5381, ret=-13
[ 1866.583519] i915 0000:00:02.0: [drm:drm_file_free] comm="sway", pid=5381, dev=0xe201, open_count=6
[ 1866.583535] i915 0000:00:02.0: [drm:_drm_lease_revoke] revoke leases for 00000000f07c18d4 0
[ 1866.583545] i915 0000:00:02.0: [drm:_drm_lease_revoke] revoke leases for 00000000a1a81c6f 1
[ 1866.595912] i915 0000:00:02.0: [drm:drm_file_free] comm="Xwayland", pid=5445, dev=0xe201, open_count=5
[ 1866.595959] i915 0000:00:02.0: [drm:drm_file_free] comm="Xwayland", pid=5445, dev=0xe280, open_count=4
[ 1866.602495] i915 0000:00:02.0: [drm:drm_file_free] comm="sway:disk$0", pid=5386, dev=0xe201, open_count=3
[ 1866.602513] i915 0000:00:02.0: [drm:_drm_lease_revoke] revoke leases for 00000000a1a81c6f 1
[ 1866.602523] i915 0000:00:02.0: [drm:drm_lease_destroy] drm_lease_destroy 1
[ 1866.602530] i915 0000:00:02.0: [drm:drm_lease_destroy] remove master 1 from device list of lessees
[ 1866.602537] [drm:drm_sysfs_lease_event] generating lease event
[ 1866.602575] i915 0000:00:02.0: [drm:drm_lease_destroy] drm_lease_destroy 0
[ 1866.602582] i915 0000:00:02.0: [drm:drm_master_destroy] drm_lease_destroy done 0
[ 1866.602589] i915 0000:00:02.0: [drm:drm_master_destroy] drm_lease_destroy done 1
[ 1866.602620] i915 0000:00:02.0: [drm:drm_file_free] comm="sway:disk$0", pid=5386, dev=0xe280, open_count=2
[ 1866.602632] i915 0000:00:02.0: [drm:drm_file_free] comm="sway:disk$0", pid=5386, dev=0xe280, open_count=1
[ 1866.604344] i915 0000:00:02.0: [drm:drm_lastclose]
[ 1866.604358] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 00000000e45477a3
[ 1866.604367] [drm:drm_mode_object_get] OBJ ID: 112 (5)
[ 1866.604372] [drm:drm_mode_object_get] OBJ ID: 112 (6)
[ 1866.604376] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:31:primary A] 00000000cc169fa8 state to 00000000e45477a3
[ 1866.604386] [drm:drm_mode_object_get] OBJ ID: 79 (1)
[ 1866.604391] [drm:drm_mode_object_get] OBJ ID: 117 (3)
[ 1866.604394] [drm:drm_mode_object_get] OBJ ID: 117 (4)
[ 1866.604398] [drm:drm_mode_object_get] OBJ ID: 117 (5)
[ 1866.604402] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:45:pipe A] 0000000078ca1fed state to 00000000e45477a3
[ 1866.604409] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:35:sprite A] 000000006f180672 state to 00000000e45477a3
[ 1866.604415] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:35:sprite A] state 000000006f180672
[ 1866.604421] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:41:cursor A] 000000009140a1da state to 00000000e45477a3
[ 1866.604427] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:41:cursor A] state 000000009140a1da
[ 1866.604433] [drm:drm_mode_object_get] OBJ ID: 112 (7)
[ 1866.604437] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1866.604441] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 000000003d68339c state to 00000000e45477a3
[ 1866.604448] [drm:drm_mode_object_get] OBJ ID: 114 (1)
[ 1866.604452] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 00000000d23a21a5 state to 00000000e45477a3
[ 1866.604458] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:50:sprite B] 00000000e934f480 state to 00000000e45477a3
[ 1866.604463] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:50:sprite B] state 00000000e934f480
[ 1866.604469] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000c4b09efa state to 00000000e45477a3
[ 1866.604475] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:56:cursor B] state 00000000c4b09efa
[ 1866.604480] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:61:primary C] 000000006d30b5f8 state to 00000000e45477a3
[ 1866.604486] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:65:sprite C] 00000000b8c830d6 state to 00000000e45477a3
[ 1866.604491] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:65:sprite C] state 00000000b8c830d6
[ 1866.604497] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:71:cursor C] 00000000c86c81f3 state to 00000000e45477a3
[ 1866.604502] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:71:cursor C] state 00000000c86c81f3
[ 1866.604509] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:31:primary A] state 00000000cc169fa8
[ 1866.604514] [drm:drm_mode_object_get] OBJ ID: 112 (9)
[ 1866.604517] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (10)
[ 1866.604522] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:45:pipe A] to 00000000e45477a3
[ 1866.604530] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1866.604533] [drm:drm_mode_object_get] OBJ ID: 76 (5)
[ 1866.604537] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:76:LVDS-1] 000000005518df0b state to 00000000e45477a3
[ 1866.604544] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1866.604548] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 000000005518df0b to [NOCRTC]
[ 1866.604554] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1866.604558] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 000000005518df0b to [CRTC:45:pipe A]
[ 1866.604566] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:46:primary B] state 000000003d68339c
[ 1866.604572] [drm:drm_mode_object_get] OBJ ID: 112 (9)
[ 1866.604575] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (10)
[ 1866.604580] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:60:pipe B] to 00000000e45477a3
[ 1866.604587] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1866.604591] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1866.604603] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 00000000aba106e7 state to 00000000e45477a3
[ 1866.604609] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1866.604612] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 00000000aba106e7 to [NOCRTC]
[ 1866.604616] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1866.604619] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 00000000aba106e7 to [CRTC:60:pipe B]
[ 1866.604628] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:75:pipe C] 00000000d41c2ff8 state to 00000000e45477a3
[ 1866.604633] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc] Set [NOMODE] for [CRTC:75:pipe C] state 00000000d41c2ff8
[ 1866.604639] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:61:primary C] state 000000006d30b5f8
[ 1866.604643] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:75:pipe C] to 00000000e45477a3
[ 1866.604648] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 00000000e45477a3
[ 1866.604660] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:76:LVDS-1]
[ 1866.604666] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:76:LVDS-1] keeps [ENCODER:77:LVDS], now on [CRTC:45:pipe A]
[ 1866.604672] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1866.604676] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1866.604682] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 00000000e45477a3
[ 1866.604687] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 00000000e45477a3
[ 1866.604692] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000e45477a3
[ 1866.604696] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 00000000e45477a3
[ 1866.604704] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1866.604707] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1866.604715] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:45:pipe A] with [PLANE:31:primary A] visible 1 -> 1, off 0, on 0, ms 0
[ 1866.604982] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1866.604987] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1866.604992] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1866.605270] i915 0000:00:02.0: [drm:drm_atomic_commit] committing 00000000e45477a3
[ 1866.605324] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 0, ret: 0
[ 1866.605339] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1866.615376] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 41243, current 41243
[ 1866.619232] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 81711, current 81711
[ 1866.620748] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 00000000e45477a3
[ 1866.620761] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1866.620769] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1866.620774] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1866.620777] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1866.620781] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1866.620785] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (6)
[ 1866.620789] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (5)
[ 1866.620792] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (4)
[ 1866.620796] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1866.620801] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1866.620805] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (8)
[ 1866.620810] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (7)
[ 1866.620814] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (6)
[ 1866.620821] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 00000000e45477a3
[ 1866.620838] i915 0000:00:02.0: [drm:drm_lastclose] driver lastclose completed
[ 1866.632074] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 0
[ 1866.635914] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1870.836165] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000005898ede7
[ 1870.836200] [drm:drm_mode_object_get] OBJ ID: 112 (5)
[ 1870.836214] [drm:drm_mode_object_get] OBJ ID: 112 (6)
[ 1870.836223] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:31:primary A] 000000002ae77beb state to 000000005898ede7
[ 1870.836243] [drm:drm_mode_object_get] OBJ ID: 79 (1)
[ 1870.836252] [drm:drm_mode_object_get] OBJ ID: 117 (3)
[ 1870.836259] [drm:drm_mode_object_get] OBJ ID: 117 (4)
[ 1870.836266] [drm:drm_mode_object_get] OBJ ID: 117 (5)
[ 1870.836275] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:45:pipe A] 000000003e43d8ee state to 000000005898ede7
[ 1870.836292] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:35:sprite A] 00000000449fa82e state to 000000005898ede7
[ 1870.836304] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:35:sprite A] state 00000000449fa82e
[ 1870.836320] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:41:cursor A] 00000000bb14a346 state to 000000005898ede7
[ 1870.836333] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:41:cursor A] state 00000000bb14a346
[ 1870.836347] [drm:drm_mode_object_get] OBJ ID: 112 (7)
[ 1870.836355] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1870.836363] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 000000009182ffdf state to 000000005898ede7
[ 1870.836377] [drm:drm_mode_object_get] OBJ ID: 114 (1)
[ 1870.836384] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 00000000e0c15dd8 state to 000000005898ede7
[ 1870.836397] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:50:sprite B] 000000003b96b4ae state to 000000005898ede7
[ 1870.836407] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:50:sprite B] state 000000003b96b4ae
[ 1870.836423] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 00000000f330415f state to 000000005898ede7
[ 1870.836436] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:56:cursor B] state 00000000f330415f
[ 1870.836451] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:61:primary C] 00000000c1fef087 state to 000000005898ede7
[ 1870.836462] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:65:sprite C] 000000006cd688a4 state to 000000005898ede7
[ 1870.836475] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:65:sprite C] state 000000006cd688a4
[ 1870.836487] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:71:cursor C] 0000000087ac20a9 state to 000000005898ede7
[ 1870.836504] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:71:cursor C] state 0000000087ac20a9
[ 1870.836628] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:31:primary A] state 000000002ae77beb
[ 1870.836648] [drm:drm_mode_object_get] OBJ ID: 112 (9)
[ 1870.836657] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (10)
[ 1870.836669] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:45:pipe A] to 000000005898ede7
[ 1870.836688] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1870.836698] [drm:drm_mode_object_get] OBJ ID: 76 (5)
[ 1870.836705] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:76:LVDS-1] 000000004f49033a state to 000000005898ede7
[ 1870.836722] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1870.836733] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 000000004f49033a to [NOCRTC]
[ 1870.836748] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1870.836756] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 000000004f49033a to [CRTC:45:pipe A]
[ 1870.836776] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:46:primary B] state 000000009182ffdf
[ 1870.836789] [drm:drm_mode_object_get] OBJ ID: 112 (9)
[ 1870.836798] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (10)
[ 1870.836809] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:60:pipe B] to 000000005898ede7
[ 1870.836826] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1870.836836] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1870.836847] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000000fbaa5ca state to 000000005898ede7
[ 1870.836864] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1870.836871] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 000000000fbaa5ca to [NOCRTC]
[ 1870.836885] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1870.836894] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 000000000fbaa5ca to [CRTC:60:pipe B]
[ 1870.836913] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:75:pipe C] 0000000086ab33de state to 000000005898ede7
[ 1870.836930] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc] Set [NOMODE] for [CRTC:75:pipe C] state 0000000086ab33de
[ 1870.836943] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:61:primary C] state 00000000c1fef087
[ 1870.836957] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:75:pipe C] to 000000005898ede7
[ 1870.836975] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000005898ede7
[ 1870.837003] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:76:LVDS-1]
[ 1870.837024] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:76:LVDS-1] keeps [ENCODER:77:LVDS], now on [CRTC:45:pipe A]
[ 1870.837045] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1870.837059] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1870.837079] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 000000005898ede7
[ 1870.837097] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 000000005898ede7
[ 1870.837109] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000005898ede7
[ 1870.837122] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000005898ede7
[ 1870.837145] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1870.837156] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1870.837181] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:45:pipe A] with [PLANE:31:primary A] visible 1 -> 1, off 0, on 0, ms 0
[ 1870.837894] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1870.837905] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1870.837919] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1870.838445] i915 0000:00:02.0: [drm:drm_atomic_commit] committing 000000005898ede7
[ 1870.838516] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 0, ret: 0
[ 1870.838554] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1870.838857] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 41496, current 41496
[ 1870.839357] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 81964, current 81964
[ 1870.839430] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000005898ede7
[ 1870.839441] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1870.839449] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1870.839456] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1870.839462] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1870.839468] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1870.839475] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (6)
[ 1870.839480] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (5)
[ 1870.839487] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (4)
[ 1870.839494] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1870.839501] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1870.839507] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (8)
[ 1870.839515] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (7)
[ 1870.839521] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (6)
[ 1870.839545] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000005898ede7
[ 1870.855555] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 0
[ 1870.856037] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1871.104163] i915 0000:00:02.0: [drm:drm_atomic_state_init] Allocated atomic state 000000005898ede7
[ 1871.104198] [drm:drm_mode_object_get] OBJ ID: 112 (5)
[ 1871.104212] [drm:drm_mode_object_get] OBJ ID: 112 (6)
[ 1871.104221] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:31:primary A] 000000002a58f2cb state to 000000005898ede7
[ 1871.104241] [drm:drm_mode_object_get] OBJ ID: 79 (1)
[ 1871.104250] [drm:drm_mode_object_get] OBJ ID: 117 (3)
[ 1871.104258] [drm:drm_mode_object_get] OBJ ID: 117 (4)
[ 1871.104264] [drm:drm_mode_object_get] OBJ ID: 117 (5)
[ 1871.104271] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:45:pipe A] 0000000013c23e8e state to 000000005898ede7
[ 1871.104286] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:35:sprite A] 00000000761489fb state to 000000005898ede7
[ 1871.104300] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:35:sprite A] state 00000000761489fb
[ 1871.104316] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:41:cursor A] 0000000001966823 state to 000000005898ede7
[ 1871.104330] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:41:cursor A] state 0000000001966823
[ 1871.104345] [drm:drm_mode_object_get] OBJ ID: 112 (7)
[ 1871.104354] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1871.104361] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:46:primary B] 0000000087629b51 state to 000000005898ede7
[ 1871.104375] [drm:drm_mode_object_get] OBJ ID: 114 (1)
[ 1871.104383] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:60:pipe B] 00000000d23a21a5 state to 000000005898ede7
[ 1871.104397] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:50:sprite B] 0000000045f2e60d state to 000000005898ede7
[ 1871.104409] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:50:sprite B] state 0000000045f2e60d
[ 1871.104422] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:56:cursor B] 000000002131d3df state to 000000005898ede7
[ 1871.104432] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:56:cursor B] state 000000002131d3df
[ 1871.104444] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:61:primary C] 000000007175f2bf state to 000000005898ede7
[ 1871.104456] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:65:sprite C] 000000004e2f60da state to 000000005898ede7
[ 1871.104467] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:65:sprite C] state 000000004e2f60da
[ 1871.104481] i915 0000:00:02.0: [drm:drm_atomic_get_plane_state] Added [PLANE:71:cursor C] 00000000ddc6f383 state to 000000005898ede7
[ 1871.104491] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:71:cursor C] state 00000000ddc6f383
[ 1871.104507] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:31:primary A] state 000000002a58f2cb
[ 1871.104596] [drm:drm_mode_object_get] OBJ ID: 112 (9)
[ 1871.104626] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (10)
[ 1871.104648] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:45:pipe A] to 000000005898ede7
[ 1871.104681] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1871.104696] [drm:drm_mode_object_get] OBJ ID: 76 (5)
[ 1871.104710] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:76:LVDS-1] 00000000544a3692 state to 000000005898ede7
[ 1871.104743] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1871.104761] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 00000000544a3692 to [NOCRTC]
[ 1871.104788] [drm:drm_mode_object_get] OBJ ID: 76 (4)
[ 1871.104803] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:76:LVDS-1] state 00000000544a3692 to [CRTC:45:pipe A]
[ 1871.104837] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [FB:112] for [PLANE:46:primary B] state 0000000087629b51
[ 1871.104862] [drm:drm_mode_object_get] OBJ ID: 112 (9)
[ 1871.104878] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (10)
[ 1871.104896] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:60:pipe B] to 000000005898ede7
[ 1871.104927] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1871.104943] [drm:drm_mode_object_get] OBJ ID: 91 (5)
[ 1871.104958] i915 0000:00:02.0: [drm:drm_atomic_get_connector_state] Added [CONNECTOR:91:DP-1] 000000006093cc6e state to 000000005898ede7
[ 1871.104987] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1871.105003] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 000000006093cc6e to [NOCRTC]
[ 1871.105024] [drm:drm_mode_object_get] OBJ ID: 91 (4)
[ 1871.105039] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector] Link [CONNECTOR:91:DP-1] state 000000006093cc6e to [CRTC:60:pipe B]
[ 1871.105082] i915 0000:00:02.0: [drm:drm_atomic_get_crtc_state] Added [CRTC:75:pipe C] 0000000078ca1fed state to 000000005898ede7
[ 1871.105114] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc] Set [NOMODE] for [CRTC:75:pipe C] state 0000000078ca1fed
[ 1871.105135] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane] Set [NOFB] for [PLANE:61:primary C] state 000000007175f2bf
[ 1871.105158] i915 0000:00:02.0: [drm:drm_atomic_add_affected_connectors] Adding all current connectors for [CRTC:75:pipe C] to 000000005898ede7
[ 1871.105189] i915 0000:00:02.0: [drm:drm_atomic_check_only] checking 000000005898ede7
[ 1871.105231] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:76:LVDS-1]
[ 1871.105261] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:76:LVDS-1] keeps [ENCODER:77:LVDS], now on [CRTC:45:pipe A]
[ 1871.105294] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] Updating routing for [CONNECTOR:91:DP-1]
[ 1871.105318] i915 0000:00:02.0: [drm:drm_atomic_helper_check_modeset] [CONNECTOR:91:DP-1] keeps [ENCODER:90:DP B], now on [CRTC:60:pipe B]
[ 1871.105347] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 000000005898ede7
[ 1871.105374] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:77:LVDS] to 000000005898ede7
[ 1871.105394] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000005898ede7
[ 1871.105414] i915 0000:00:02.0: [drm:drm_atomic_add_encoder_bridges] Adding all bridges for [encoder:90:DP B] to 000000005898ede7
[ 1871.105452] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1871.105470] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1871.105510] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:45:pipe A] with [PLANE:31:primary A] visible 1 -> 1, off 0, on 0, ms 0
[ 1871.106687] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1871.106714] [drm:drm_mode_object_get] OBJ ID: 112 (8)
[ 1871.106748] i915 0000:00:02.0: [drm:intel_plane_atomic_check_with_state [i915]] [CRTC:60:pipe B] with [PLANE:46:primary B] visible 1 -> 1, off 0, on 0, ms 0
[ 1871.107681] i915 0000:00:02.0: [drm:drm_atomic_commit] committing 000000005898ede7
[ 1871.107779] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 0, ret: 0
[ 1871.107816] i915 0000:00:02.0: [drm:drm_vblank_enable] enabling vblank on crtc 1, ret: 0
[ 1871.122652] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 41513, current 41513
[ 1871.122923] i915 0000:00:02.0: [drm:drm_handle_vblank] vblank event on 81981, current 81981
[ 1871.126648] i915 0000:00:02.0: [drm:drm_atomic_state_default_clear] Clearing atomic state 000000005898ede7
[ 1871.126675] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (5)
[ 1871.126691] [drm:drm_mode_object_put.part.0] OBJ ID: 76 (4)
[ 1871.126701] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (5)
[ 1871.126711] [drm:drm_mode_object_put.part.0] OBJ ID: 91 (4)
[ 1871.126722] [drm:drm_mode_object_put.part.0] OBJ ID: 79 (2)
[ 1871.126732] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (6)
[ 1871.126742] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (5)
[ 1871.126751] [drm:drm_mode_object_put.part.0] OBJ ID: 117 (4)
[ 1871.126763] [drm:drm_mode_object_put.part.0] OBJ ID: 114 (2)
[ 1871.126776] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (9)
[ 1871.126786] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (8)
[ 1871.126798] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (7)
[ 1871.126808] [drm:drm_mode_object_put.part.0] OBJ ID: 112 (6)
[ 1871.126822] i915 0000:00:02.0: [drm:__drm_atomic_state_free] Freeing atomic state 000000005898ede7
[ 1871.139380] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 0
[ 1871.139599] i915 0000:00:02.0: [drm:vblank_disable_fn] disabling vblank on crtc 1
[ 1871.322108] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port D
00:00:00.000 [INFO] [../sway/main.c:338] Sway version 1.8.1
00:00:00.000 [INFO] [../sway/main.c:339] wlroots version 0.16.2
00:00:00.003 [INFO] [../sway/main.c:120] Linux desk.localdomain 6.4.14-200.fc38.x86_64 #1 SMP PREEMPT_DYNAMIC Sat Sep 2 16:36:06 UTC 2023 x86_64 GNU/Linux
00:00:00.003 [INFO] [../sway/main.c:136] Contents of /etc/os-release:
00:00:00.003 [INFO] [../sway/main.c:120] NAME="Fedora Linux"
00:00:00.003 [INFO] [../sway/main.c:120] VERSION="38 (Workstation Edition)"
00:00:00.003 [INFO] [../sway/main.c:120] ID=fedora
00:00:00.003 [INFO] [../sway/main.c:120] VERSION_ID=38
00:00:00.004 [INFO] [../sway/main.c:120] VERSION_CODENAME=""
00:00:00.004 [INFO] [../sway/main.c:120] PLATFORM_ID="platform:f38"
00:00:00.004 [INFO] [../sway/main.c:120] PRETTY_NAME="Fedora Linux 38 (Workstation Edition)"
00:00:00.004 [INFO] [../sway/main.c:120] ANSI_COLOR="0;38;2;60;110;180"
00:00:00.004 [INFO] [../sway/main.c:120] LOGO=fedora-logo-icon
00:00:00.004 [INFO] [../sway/main.c:120] CPE_NAME="cpe:/o:fedoraproject:fedora:38"
00:00:00.004 [INFO] [../sway/main.c:120] DEFAULT_HOSTNAME="fedora"
00:00:00.004 [INFO] [../sway/main.c:120] HOME_URL="https://fedoraproject.org/"
00:00:00.004 [INFO] [../sway/main.c:120] DOCUMENTATION_URL="https://docs.fedoraproject.org/en-US/fedora/f38/system-administrators-guide/"
00:00:00.004 [INFO] [../sway/main.c:120] SUPPORT_URL="https://ask.fedoraproject.org/"
00:00:00.004 [INFO] [../sway/main.c:120] BUG_REPORT_URL="https://bugzilla.redhat.com/"
00:00:00.004 [INFO] [../sway/main.c:120] REDHAT_BUGZILLA_PRODUCT="Fedora"
00:00:00.004 [INFO] [../sway/main.c:120] REDHAT_BUGZILLA_PRODUCT_VERSION=38
00:00:00.004 [INFO] [../sway/main.c:120] REDHAT_SUPPORT_PRODUCT="Fedora"
00:00:00.004 [INFO] [../sway/main.c:120] REDHAT_SUPPORT_PRODUCT_VERSION=38
00:00:00.004 [INFO] [../sway/main.c:120] SUPPORT_END=2024-05-14
00:00:00.004 [INFO] [../sway/main.c:120] VARIANT="Workstation Edition"
00:00:00.004 [INFO] [../sway/main.c:120] VARIANT_ID=workstation
00:00:00.004 [INFO] [../sway/main.c:136] Contents of /etc/redhat-release:
00:00:00.004 [INFO] [../sway/main.c:120] Fedora release 38 (Thirty Eight)
00:00:00.004 [INFO] [../sway/main.c:108] LD_LIBRARY_PATH=
00:00:00.004 [INFO] [../sway/main.c:108] LD_PRELOAD=
00:00:00.004 [INFO] [../sway/main.c:108] PATH=/home//bin:/usr/share/Modules/bin:/usr/lib64/ccache:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/home//.local/bin:/home//bin
00:00:00.004 [INFO] [../sway/main.c:108] SWAYSOCK=
00:00:00.004 [INFO] [../sway/main.c:376] Starting sway version 1.8.1
00:00:00.004 [DEBUG] [../sway/server.c:67] Initializing Wayland server
00:00:00.005 [INFO] [wlr] [libseat] [libseat/backend/seatd.c:64] Could not connect to socket /run/seatd.sock: No such file or directory
00:00:00.005 [INFO] [wlr] [libseat] [libseat/libseat.c:76] Backend 'seatd' failed to open seat, skipping
00:00:00.027 [INFO] [wlr] [libseat] [libseat/libseat.c:73] Seat opened with backend 'logind'
00:00:00.027 [INFO] [wlr] [backend/session/session.c:109] Successfully loaded libseat session
00:00:00.033 [INFO] [wlr] [backend/backend.c:220] Found 1 GPUs
00:00:00.034 [INFO] [wlr] [backend/drm/backend.c:200] Initializing DRM backend for /dev/dri/card1 (i915)
00:00:00.034 [DEBUG] [wlr] [backend/drm/drm.c:88] Using atomic DRM interface
00:00:00.034 [DEBUG] [wlr] [backend/drm/drm.c:100] ADDFB2 modifiers supported
00:00:00.034 [INFO] [wlr] [backend/drm/drm.c:253] Found 3 DRM CRTCs
00:00:00.034 [INFO] [wlr] [backend/drm/drm.c:180] Found 9 DRM planes
00:00:00.039 [INFO] [wlr] [render/egl.c:201] Supported EGL client extensions: EGL_EXT_device_base EGL_EXT_device_enumeration EGL_EXT_device_query EGL_EXT_platform_base EGL_KHR_client_get_all_proc_addresses EGL_EXT_client_extensions EGL_KHR_debug EGL_EXT_platform_device EGL_EXT_platform_wayland EGL_KHR_platform_wayland EGL_EXT_platform_x11 EGL_KHR_platform_x11 EGL_EXT_platform_xcb EGL_MESA_platform_gbm EGL_KHR_platform_gbm EGL_MESA_platform_surfaceless
00:00:00.041 [DEBUG] [wlr] [render/egl.c:469] Using EGL device /dev/dri/card1
00:00:00.080 [INFO] [wlr] [render/egl.c:347] Using EGL 1.5
00:00:00.080 [INFO] [wlr] [render/egl.c:348] Supported EGL display extensions: EGL_ANDROID_blob_cache EGL_ANDROID_native_fence_sync EGL_EXT_create_context_robustness EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_IMG_context_priority EGL_KHR_cl_event2 EGL_KHR_config_attribs EGL_KHR_context_flush_control EGL_KHR_create_context EGL_KHR_create_context_no_error EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_colorspace EGL_KHR_gl_renderbuffer_image EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_image_base EGL_KHR_no_config_context EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_EXT_pixel_format_float EGL_KHR_wait_sync EGL_MESA_configless_context EGL_MESA_drm_image EGL_MESA_image_dma_buf_export EGL_MESA_query_driver EGL_WL_bind_wayland_display
00:00:00.080 [INFO] [wlr] [render/egl.c:350] Supported EGL device extensions: EGL_EXT_device_drm EGL_EXT_device_drm_render_node
00:00:00.080 [INFO] [wlr] [render/egl.c:352] EGL vendor: Mesa Project
00:00:00.080 [DEBUG] [wlr] [render/egl.c:121] Supported DMA-BUF formats:
00:00:00.080 [DEBUG] [wlr] [render/egl.c:165] AB4H (0x48344241)
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:165] XB4H (0x48344258)
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:165] AB48 (0x38344241)
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:165] XB48 (0x38344258)
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:165] AR30 (0x30335241)
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:165] XR30 (0x30335258)
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:165] AB30 (0x30334241)
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:165] AR24 (0x34325241)
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.080 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:165] AB24 (0x34324241)
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:165] XR24 (0x34325258)
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:165] XB24 (0x34324258)
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:165] AR15 (0x35315241)
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:165] RG16 (0x36314752)
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:165] R8 (0x20203852)
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:165] R16 (0x20363152)
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.081 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:165] GR88 (0x38385247)
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:165] GR32 (0x32335247)
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:165] YUV9 (0x39565559)
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:165] YU11 (0x31315559)
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:165] YU12 (0x32315559)
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:165] YU16 (0x36315559)
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:165] YU24 (0x34325559)
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.082 [DEBUG] [wlr] [render/egl.c:165] YVU9 (0x39555659)
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:165] YV11 (0x31315659)
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:165] YV12 (0x32315659)
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:165] YV16 (0x36315659)
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:165] YV24 (0x34325659)
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:165] NV12 (0x3231564E)
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:165] P010 (0x30313050)
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.083 [DEBUG] [wlr] [render/egl.c:165] P012 (0x32313050)
00:00:00.083 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:165] P016 (0x36313050)
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:165] P030 (0x30333050)
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:165] NV16 (0x3631564E)
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:165] AYUV (0x56555941)
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:165] XYUV (0x56555958)
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:165] Y410 (0x30313459)
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.084 [DEBUG] [wlr] [render/egl.c:165] Y412 (0x32313459)
00:00:00.084 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:165] Y416 (0x36313459)
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:165] YUYV (0x56595559)
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:165] UYVY (0x59565955)
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:165] Y210 (0x30313259)
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:165] Y212 (0x32313259)
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:165] Y216 (0x36313259)
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:104] Y_TILED (0x0100000000000002): ✓ texture ✗ render
00:00:00.085 [DEBUG] [wlr] [render/egl.c:185] EGL DMA-BUF format modifiers supported
00:00:00.088 [DEBUG] [wlr] [render/egl.c:420] Obtained high priority context
00:00:00.088 [DEBUG] [wlr] [render/egl.c:518] Using EGL_PLATFORM_DEVICE_EXT
00:00:00.091 [INFO] [wlr] [render/gles2/renderer.c:718] Creating GLES2 renderer
00:00:00.091 [INFO] [wlr] [render/gles2/renderer.c:719] Using OpenGL ES 3.0 Mesa 23.1.6
00:00:00.091 [INFO] [wlr] [render/gles2/renderer.c:720] GL vendor: Intel
00:00:00.091 [INFO] [wlr] [render/gles2/renderer.c:721] GL renderer: Mesa Intel(R) HD Graphics 4000 (IVB GT2)
00:00:00.091 [INFO] [wlr] [render/gles2/renderer.c:722] Supported GLES2 extensions: GL_EXT_blend_minmax GL_EXT_multi_draw_arrays GL_EXT_texture_filter_anisotropic GL_EXT_texture_compression_s3tc GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_format_BGRA8888 GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24 GL_OES_element_index_uint GL_OES_fbo_render_mipmap GL_OES_mapbuffer GL_OES_rgb8_rgba8 GL_OES_standard_derivatives GL_OES_stencil8 GL_OES_texture_3D GL_OES_texture_float GL_OES_texture_float_linear GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_vertex_half_float GL_EXT_draw_instanced GL_EXT_texture_sRGB_decode GL_OES_EGL_image GL_OES_depth_texture GL_AMD_performance_monitor GL_OES_packed_depth_stencil GL_EXT_texture_type_2_10_10_10_REV GL_NV_conditional_render GL_OES_get_program_binary GL_APPLE_texture_max_level GL_EXT_discard_framebuffer GL_EXT_read_format_bgra GL_NV_pack_subimage GL_EXT_frag_depth GL_NV_fbo_color_attachments GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_vertex_array_object GL_ANGLE_pack_reverse_row_order GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_EXT_occlusion_query_boolean GL_EXT_texture_rg GL_EXT_unpack_subimage GL_NV_draw_buffers GL_NV_read_buffer GL_NV_read_depth GL_NV_read_depth_stencil GL_NV_read_stencil GL_EXT_draw_buffers GL_EXT_instanced_arrays GL_EXT_map_buffer_range GL_KHR_debug GL_KHR_texture_compression_astc_ldr GL_NV_generate_mipmap_sRGB GL_NV_pixel_buffer_object GL_OES_depth_texture_cube_map GL_OES_required_internalformat GL_OES_surfaceless_context GL_EXT_color_buffer_float GL_EXT_debug_label GL_EXT_sRGB_write_control GL_EXT_separate_shader_objects GL_EXT_shader_group_vote GL_EXT_shader_integer_mix GL_INTEL_performance_query GL_EXT_base_instance GL_EXT_compressed_ETC1_RGB8_sub_texture GL_EXT_copy_image GL_EXT_draw_buffers_indexed GL_EXT_draw_elements_base_vertex GL_EXT_polygon_offset_clamp GL_EXT_texture_border_clamp GL_KHR_blend_equation_advanced GL_KHR_context_flush_control GL_NV_shader_noperspective_interpolation GL_OES_copy_image GL_OES_draw_buffers_indexed GL_OES_draw_elements_base_vertex GL_OES_sample_shading GL_OES_sample_variables GL_OES_shader_multisample_interpolation GL_OES_texture_border_clamp GL_EXT_blend_func_extended GL_EXT_float_blend GL_EXT_texture_sRGB_R8 GL_KHR_no_error GL_KHR_texture_compression_astc_sliced_3d GL_OES_EGL_image_external_essl3 GL_EXT_clip_cull_distance GL_EXT_disjoint_timer_query GL_EXT_texture_compression_s3tc_srgb GL_MESA_shader_integer_functions GL_EXT_clip_control GL_EXT_color_buffer_half_float GL_EXT_memory_object GL_EXT_memory_object_fd GL_EXT_semaphore GL_EXT_semaphore_fd GL_EXT_texture_compression_bptc GL_EXT_texture_mirror_clamp_to_edge GL_KHR_parallel_shader_compile GL_NV_alpha_to_coverage_dither_control GL_EXT_EGL_image_storage GL_EXT_shader_framebuffer_fetch_non_coherent GL_EXT_texture_shadow_lod GL_INTEL_blackhole_render GL_MESA_framebuffer_flip_y GL_EXT_demote_to_helper_invocation GL_EXT_depth_clamp GL_EXT_texture_query_lod GL_MESA_bgra
00:00:00.101 [DEBUG] [wlr] [render/allocator/allocator.c:106] Trying to create gbm allocator
00:00:00.109 [DEBUG] [wlr] [render/allocator/gbm.c:210] Created GBM allocator with backend drm
00:00:00.109 [DEBUG] [wlr] [render/allocator/gbm.c:213] Using DRM node /dev/dri/card1
00:00:00.109 [DEBUG] [wlr] [types/wlr_idle.c:246] idle manager created
00:00:00.109 [DEBUG] [wlr] [types/wlr_drm_lease_v1.c:638] Creating wlr_drm_lease_device_v1 for /dev/dri/card1
00:00:00.110 [INFO] [wlr] [backend/headless/backend.c:68] Creating headless backend
00:00:00.114 [INFO] [../sway/config.c:415] Loading config from /home//.config/sway/config
00:00:00.114 [DEBUG] [../sway/config.c:832] Read line 1: # Default config for sway
00:00:00.114 [DEBUG] [../sway/config.c:832] Read line 2: #
00:00:00.114 [DEBUG] [../sway/config.c:832] Read line 3: # Copy this to ~/.config/sway/config and edit it to your liking.
00:00:00.114 [DEBUG] [../sway/config.c:832] Read line 4: #
00:00:00.114 [DEBUG] [../sway/config.c:832] Read line 5: # Read `man 5 sway` for a complete reference.
00:00:00.114 [DEBUG] [../sway/config.c:832] Read line 6:
00:00:00.114 [DEBUG] [../sway/config.c:832] Read line 7: ### Variables
00:00:00.114 [DEBUG] [../sway/config.c:832] Read line 8: #
00:00:00.114 [DEBUG] [../sway/config.c:832] Read line 9: # Logo key. Use Mod1 for Alt.
00:00:00.114 [DEBUG] [../sway/config.c:832] Read line 10: set $mod Mod4
00:00:00.114 [INFO] [../sway/commands.c:380] Config command: set $mod Mod4
00:00:00.114 [INFO] [../sway/commands.c:400] After replacement: set $mod Mod4
00:00:00.114 [DEBUG] [../sway/config.c:832] Read line 11: # Home row direction keys, like vim
00:00:00.114 [DEBUG] [../sway/config.c:832] Read line 12: set $left h
00:00:00.115 [INFO] [../sway/commands.c:380] Config command: set $left h
00:00:00.115 [INFO] [../sway/commands.c:400] After replacement: set $left h
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 13: set $down j
00:00:00.115 [INFO] [../sway/commands.c:380] Config command: set $down j
00:00:00.115 [INFO] [../sway/commands.c:400] After replacement: set $down j
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 14: set $up k
00:00:00.115 [INFO] [../sway/commands.c:380] Config command: set $up k
00:00:00.115 [INFO] [../sway/commands.c:400] After replacement: set $up k
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 15: set $right l
00:00:00.115 [INFO] [../sway/commands.c:380] Config command: set $right l
00:00:00.115 [INFO] [../sway/commands.c:400] After replacement: set $right l
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 16: # Your preferred terminal emulator
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 17: set $term /home//bin/gterm
00:00:00.115 [INFO] [../sway/commands.c:380] Config command: set $term /home//bin/gterm
00:00:00.115 [INFO] [../sway/commands.c:400] After replacement: set $term /home//bin/gterm
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 18: # Your preferred application launcher
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 19: # Note: pass the final command to swaymsg so that the resulting window can be opened
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 20: # on the original workspace that the command was run on.
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 21: set $menu dmenu_path | dmenu | xargs swaymsg exec --
00:00:00.115 [INFO] [../sway/commands.c:380] Config command: set $menu dmenu_path | dmenu | xargs swaymsg exec --
00:00:00.115 [INFO] [../sway/commands.c:400] After replacement: set $menu dmenu_path | dmenu | xargs swaymsg exec --
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 22:
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 23: ### Output configuration
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 24: #
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 25: # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 26: output LVDS-1 disable
00:00:00.115 [INFO] [../sway/commands.c:380] Config command: output LVDS-1 disable
00:00:00.115 [INFO] [../sway/commands.c:400] After replacement: output LVDS-1 disable
00:00:00.115 [DEBUG] [../sway/commands.c:432] Subcommand: disable
00:00:00.115 [DEBUG] [../sway/config/output.c:223] Adding non-wildcard output config
00:00:00.115 [DEBUG] [../sway/config/output.c:240] Config stored for output LVDS-1 (enabled: 0) (-1x-1@-1.000000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg (null) (null)) (power -1) (max render time: -1)
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 27: # output DP-1 bg /usr/share/backgrounds/fedora-workstation/dutch_skies.jpg fill
00:00:00.115 [DEBUG] [../sway/config.c:832] Read line 28: output DP-1 {
00:00:00.115 [DEBUG] [../sway/config.c:886] Entering block 'output DP-1'
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 29: mode 2560x1440@59.951Hz
00:00:00.116 [INFO] [../sway/commands.c:380] Config command: output DP-1 mode 2560x1440@59.951Hz
00:00:00.116 [INFO] [../sway/commands.c:400] After replacement: output DP-1 mode 2560x1440@59.951Hz
00:00:00.116 [DEBUG] [../sway/commands.c:432] Subcommand: mode 2560x1440@59.951Hz
00:00:00.116 [DEBUG] [../sway/config/output.c:223] Adding non-wildcard output config
00:00:00.116 [DEBUG] [../sway/config/output.c:240] Config stored for output DP-1 (enabled: -1) (2560x1440@59.951000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg (null) (null)) (power -1) (max render time: -1)
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 30: }
00:00:00.116 [DEBUG] [../sway/config.c:903] Exiting block 'output DP-1'
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 31: #
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 32: # Example configuration:
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 33: #
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 34: # output HDMI-A-1 resolution 1920x1080 position 1920,0
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 35: #
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 36: # You can get the names of your outputs by running: swaymsg -t get_outputs
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 37:
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 38: ### Idle configuration
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 39: #
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 40: # Example configuration:
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 41: #
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 42: # exec swayidle -w \
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 43: # timeout 300 'swaylock -f -c 000000' \
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 44: # timeout 600 'swaymsg "output * dpms off"' \
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 45: # resume 'swaymsg "output * dpms on"' \
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 46: # before-sleep 'swaylock -f -c 000000'
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 47: #
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 48: # This will lock your screen after 300 seconds of inactivity, then turn off
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 49: # your displays after another 300 seconds, and turn your screens back on when
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 50: # resumed. It will also lock your screen before your computer goes to sleep.
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 51:
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 52: ### Input configuration
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 53: #
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 54: # Example configuration:
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 55: #
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 56: # input "2:14:SynPS/2_Synaptics_TouchPad" {
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 57: # dwt enabled
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 58: # tap enabled
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 59: # natural_scroll enabled
00:00:00.116 [DEBUG] [../sway/config.c:832] Read line 60: # middle_emulation enabled
00:00:00.117 [DEBUG] [../sway/config.c:832] Read line 61: # }
00:00:00.117 [DEBUG] [../sway/config.c:832] Read line 62: #
00:00:00.117 [DEBUG] [../sway/config.c:832] Read line 63: # You can get the names of your inputs by running: swaymsg -t get_inputs
00:00:00.117 [DEBUG] [../sway/config.c:832] Read line 64: # Read `man 5 sway-input` for more information about this section.
00:00:00.117 [DEBUG] [../sway/config.c:832] Read line 65: input type:keyboard xkb_options caps:hyper
00:00:00.117 [INFO] [../sway/commands.c:380] Config command: input type:keyboard xkb_options caps:hyper
00:00:00.117 [INFO] [../sway/commands.c:400] After replacement: input type:keyboard xkb_options caps:hyper
00:00:00.117 [DEBUG] [../sway/commands/input.c:55] entering input block: type:keyboard
00:00:00.117 [DEBUG] [../sway/config/input.c:15] new_input_config(type:keyboard)
00:00:00.117 [DEBUG] [../sway/commands.c:432] Subcommand: xkb_options caps:hyper
00:00:00.117 [DEBUG] [../sway/commands/input/xkb_options.c:18] set-xkb_options for config: type:keyboard options: caps:hyper
00:00:00.117 [DEBUG] [../sway/config/input.c:15] new_input_config(temp)
00:00:00.121 [DEBUG] [../sway/config/input.c:354] Config stored for input type:keyboard
00:00:00.121 [DEBUG] [../sway/config.c:832] Read line 66:
00:00:00.121 [DEBUG] [../sway/config.c:832] Read line 67: ### Key bindings
00:00:00.121 [DEBUG] [../sway/config.c:832] Read line 68: #
00:00:00.121 [DEBUG] [../sway/config.c:832] Read line 69: # Basics:
00:00:00.121 [DEBUG] [../sway/config.c:832] Read line 70: #
00:00:00.121 [DEBUG] [../sway/config.c:832] Read line 71: # Start a terminal
00:00:00.121 [DEBUG] [../sway/config.c:832] Read line 72: bindsym $mod+Return exec $term
00:00:00.121 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Return exec $term
00:00:00.121 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Return exec /home//bin/gterm
00:00:00.122 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Return to command `exec /home//bin/gterm` for device '*'
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 73:
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 74: # Kill focused window
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 75: bindsym $mod+Shift+q kill
00:00:00.122 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+q kill
00:00:00.122 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+q kill
00:00:00.122 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+q to command `kill` for device '*'
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 76:
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 77: # Start your launcher
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 78: bindsym $mod+p exec $menu
00:00:00.122 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+p exec $menu
00:00:00.122 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+p exec dmenu_path | dmenu | xargs swaymsg exec --
00:00:00.122 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+p to command `exec dmenu_path | dmenu | xargs swaymsg exec --` for device '*'
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 79:
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 80: # Drag floating windows by holding down $mod and left mouse button.
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 81: # Resize them with right mouse button + $mod.
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 82: # Despite the name, also works for non-floating windows.
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 83: # Change normal to inverse to use left mouse button for resizing and right
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 84: # mouse button for dragging.
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 85: floating_modifier $mod normal
00:00:00.122 [INFO] [../sway/commands.c:380] Config command: floating_modifier $mod normal
00:00:00.122 [INFO] [../sway/commands.c:400] After replacement: floating_modifier Mod4 normal
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 86:
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 87: # Reload the configuration file
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 88: bindsym $mod+Shift+c reload
00:00:00.122 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+c reload
00:00:00.122 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+c reload
00:00:00.122 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+c to command `reload` for device '*'
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 89:
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 90: # Exit sway (logs you out of your Wayland session)
00:00:00.122 [DEBUG] [../sway/config.c:832] Read line 91: bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'
00:00:00.122 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'
00:00:00.122 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'
00:00:00.123 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+e to command `exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'` for device '*'
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 92: #
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 93: # Moving around:
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 94: #
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 95: # Move your focus around
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 96: bindsym $mod+$left focus left
00:00:00.123 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+$left focus left
00:00:00.123 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+h focus left
00:00:00.123 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+h to command `focus left` for device '*'
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 97: bindsym $mod+$down focus down
00:00:00.123 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+$down focus down
00:00:00.123 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+j focus down
00:00:00.123 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+j to command `focus down` for device '*'
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 98: bindsym $mod+$up focus up
00:00:00.123 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+$up focus up
00:00:00.123 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+k focus up
00:00:00.123 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+k to command `focus up` for device '*'
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 99: bindsym $mod+$right focus right
00:00:00.123 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+$right focus right
00:00:00.123 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+l focus right
00:00:00.123 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+l to command `focus right` for device '*'
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 100: # Or use $mod+[up|down|left|right]
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 101: bindsym $mod+Left focus left
00:00:00.123 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Left focus left
00:00:00.123 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Left focus left
00:00:00.123 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Left to command `focus left` for device '*'
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 102: bindsym $mod+Down focus down
00:00:00.123 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Down focus down
00:00:00.123 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Down focus down
00:00:00.123 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Down to command `focus down` for device '*'
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 103: bindsym $mod+Up focus up
00:00:00.123 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Up focus up
00:00:00.123 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Up focus up
00:00:00.123 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Up to command `focus up` for device '*'
00:00:00.123 [DEBUG] [../sway/config.c:832] Read line 104: bindsym $mod+Right focus right
00:00:00.124 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Right focus right
00:00:00.124 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Right focus right
00:00:00.124 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Right to command `focus right` for device '*'
00:00:00.124 [DEBUG] [../sway/config.c:832] Read line 105:
00:00:00.124 [DEBUG] [../sway/config.c:832] Read line 106: # Move the focused window with the same, but add Shift
00:00:00.124 [DEBUG] [../sway/config.c:832] Read line 107: bindsym $mod+Shift+$left move left
00:00:00.124 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+$left move left
00:00:00.124 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+h move left
00:00:00.124 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+h to command `move left` for device '*'
00:00:00.124 [DEBUG] [../sway/config.c:832] Read line 108: bindsym $mod+Shift+$down move down
00:00:00.124 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+$down move down
00:00:00.124 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+j move down
00:00:00.124 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+j to command `move down` for device '*'
00:00:00.124 [DEBUG] [../sway/config.c:832] Read line 109: bindsym $mod+Shift+$up move up
00:00:00.124 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+$up move up
00:00:00.124 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+k move up
00:00:00.124 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+k to command `move up` for device '*'
00:00:00.124 [DEBUG] [../sway/config.c:832] Read line 110: bindsym $mod+Shift+$right move right
00:00:00.124 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+$right move right
00:00:00.124 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+l move right
00:00:00.124 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+l to command `move right` for device '*'
00:00:00.124 [DEBUG] [../sway/config.c:832] Read line 111: # Ditto, with arrow keys
00:00:00.124 [DEBUG] [../sway/config.c:832] Read line 112: bindsym $mod+Shift+Left move left
00:00:00.124 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+Left move left
00:00:00.124 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+Left move left
00:00:00.124 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Left to command `move left` for device '*'
00:00:00.124 [DEBUG] [../sway/config.c:832] Read line 113: bindsym $mod+Shift+Down move down
00:00:00.124 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+Down move down
00:00:00.124 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+Down move down
00:00:00.124 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Down to command `move down` for device '*'
00:00:00.124 [DEBUG] [../sway/config.c:832] Read line 114: bindsym $mod+Shift+Up move up
00:00:00.124 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+Up move up
00:00:00.124 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+Up move up
00:00:00.124 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Up to command `move up` for device '*'
00:00:00.125 [DEBUG] [../sway/config.c:832] Read line 115: bindsym $mod+Shift+Right move right
00:00:00.125 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+Right move right
00:00:00.125 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+Right move right
00:00:00.125 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Right to command `move right` for device '*'
00:00:00.125 [DEBUG] [../sway/config.c:832] Read line 116: #
00:00:00.125 [DEBUG] [../sway/config.c:832] Read line 117: # Workspaces:
00:00:00.125 [DEBUG] [../sway/config.c:832] Read line 118: #
00:00:00.125 [DEBUG] [../sway/config.c:832] Read line 119: # Switch to workspace
00:00:00.125 [DEBUG] [../sway/config.c:832] Read line 120: bindsym $mod+1 workspace 1
00:00:00.125 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+1 workspace 1
00:00:00.125 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+1 workspace 1
00:00:00.125 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+1 to command `workspace 1` for device '*'
00:00:00.125 [DEBUG] [../sway/config.c:832] Read line 121: bindsym $mod+2 workspace 2
00:00:00.125 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+2 workspace 2
00:00:00.125 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+2 workspace 2
00:00:00.125 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+2 to command `workspace 2` for device '*'
00:00:00.125 [DEBUG] [../sway/config.c:832] Read line 122: bindsym $mod+3 workspace 3
00:00:00.125 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+3 workspace 3
00:00:00.125 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+3 workspace 3
00:00:00.125 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+3 to command `workspace 3` for device '*'
00:00:00.125 [DEBUG] [../sway/config.c:832] Read line 123: bindsym $mod+4 workspace 4
00:00:00.125 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+4 workspace 4
00:00:00.125 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+4 workspace 4
00:00:00.125 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+4 to command `workspace 4` for device '*'
00:00:00.125 [DEBUG] [../sway/config.c:832] Read line 124: bindsym $mod+5 workspace 5
00:00:00.125 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+5 workspace 5
00:00:00.125 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+5 workspace 5
00:00:00.125 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+5 to command `workspace 5` for device '*'
00:00:00.125 [DEBUG] [../sway/config.c:832] Read line 125: bindsym $mod+6 workspace 6
00:00:00.125 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+6 workspace 6
00:00:00.125 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+6 workspace 6
00:00:00.125 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+6 to command `workspace 6` for device '*'
00:00:00.125 [DEBUG] [../sway/config.c:832] Read line 126: bindsym $mod+7 workspace 7
00:00:00.125 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+7 workspace 7
00:00:00.125 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+7 workspace 7
00:00:00.126 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+7 to command `workspace 7` for device '*'
00:00:00.126 [DEBUG] [../sway/config.c:832] Read line 127: bindsym $mod+8 workspace 8
00:00:00.126 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+8 workspace 8
00:00:00.126 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+8 workspace 8
00:00:00.126 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+8 to command `workspace 8` for device '*'
00:00:00.126 [DEBUG] [../sway/config.c:832] Read line 128: bindsym $mod+9 workspace 9
00:00:00.126 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+9 workspace 9
00:00:00.126 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+9 workspace 9
00:00:00.126 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+9 to command `workspace 9` for device '*'
00:00:00.126 [DEBUG] [../sway/config.c:832] Read line 129: bindsym $mod+0 workspace 10
00:00:00.126 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+0 workspace 10
00:00:00.126 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+0 workspace 10
00:00:00.126 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+0 to command `workspace 10` for device '*'
00:00:00.126 [DEBUG] [../sway/config.c:832] Read line 130: bindsym $mod+KP_1 workspace KP_1
00:00:00.126 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+KP_1 workspace KP_1
00:00:00.126 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+KP_1 workspace KP_1
00:00:00.126 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+KP_1 to command `workspace KP_1` for device '*'
00:00:00.126 [DEBUG] [../sway/config.c:832] Read line 131: bindsym $mod+KP_2 workspace KP_2
00:00:00.126 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+KP_2 workspace KP_2
00:00:00.126 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+KP_2 workspace KP_2
00:00:00.126 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+KP_2 to command `workspace KP_2` for device '*'
00:00:00.126 [DEBUG] [../sway/config.c:832] Read line 132: bindsym $mod+KP_3 workspace KP_3
00:00:00.126 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+KP_3 workspace KP_3
00:00:00.126 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+KP_3 workspace KP_3
00:00:00.126 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+KP_3 to command `workspace KP_3` for device '*'
00:00:00.126 [DEBUG] [../sway/config.c:832] Read line 133: bindsym $mod+KP_4 workspace KP_4
00:00:00.126 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+KP_4 workspace KP_4
00:00:00.126 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+KP_4 workspace KP_4
00:00:00.126 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+KP_4 to command `workspace KP_4` for device '*'
00:00:00.126 [DEBUG] [../sway/config.c:832] Read line 134: bindsym $mod+KP_5 workspace KP_5
00:00:00.126 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+KP_5 workspace KP_5
00:00:00.126 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+KP_5 workspace KP_5
00:00:00.126 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+KP_5 to command `workspace KP_5` for device '*'
00:00:00.126 [DEBUG] [../sway/config.c:832] Read line 135: bindsym $mod+KP_6 workspace KP_6
00:00:00.127 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+KP_6 workspace KP_6
00:00:00.127 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+KP_6 workspace KP_6
00:00:00.127 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+KP_6 to command `workspace KP_6` for device '*'
00:00:00.127 [DEBUG] [../sway/config.c:832] Read line 136: bindsym $mod+KP_7 workspace KP_7
00:00:00.127 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+KP_7 workspace KP_7
00:00:00.127 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+KP_7 workspace KP_7
00:00:00.127 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+KP_7 to command `workspace KP_7` for device '*'
00:00:00.127 [DEBUG] [../sway/config.c:832] Read line 137: bindsym $mod+KP_8 workspace KP_8
00:00:00.127 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+KP_8 workspace KP_8
00:00:00.127 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+KP_8 workspace KP_8
00:00:00.127 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+KP_8 to command `workspace KP_8` for device '*'
00:00:00.127 [DEBUG] [../sway/config.c:832] Read line 138: bindsym $mod+KP_9 workspace KP_9
00:00:00.127 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+KP_9 workspace KP_9
00:00:00.127 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+KP_9 workspace KP_9
00:00:00.127 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+KP_9 to command `workspace KP_9` for device '*'
00:00:00.127 [DEBUG] [../sway/config.c:832] Read line 139: bindsym $mod+KP_0 workspace KP_10
00:00:00.127 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+KP_0 workspace KP_10
00:00:00.127 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+KP_0 workspace KP_10
00:00:00.127 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+KP_0 to command `workspace KP_10` for device '*'
00:00:00.127 [DEBUG] [../sway/config.c:832] Read line 140: # Move focused container to workspace
00:00:00.127 [DEBUG] [../sway/config.c:832] Read line 141: bindsym $mod+Shift+1 move container to workspace 1
00:00:00.127 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+1 move container to workspace 1
00:00:00.127 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+1 move container to workspace 1
00:00:00.127 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+1 to command `move container to workspace 1` for device '*'
00:00:00.127 [DEBUG] [../sway/config.c:832] Read line 142: bindsym $mod+Shift+2 move container to workspace 2
00:00:00.127 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+2 move container to workspace 2
00:00:00.127 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+2 move container to workspace 2
00:00:00.127 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+2 to command `move container to workspace 2` for device '*'
00:00:00.127 [DEBUG] [../sway/config.c:832] Read line 143: bindsym $mod+Shift+3 move container to workspace 3
00:00:00.127 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+3 move container to workspace 3
00:00:00.127 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+3 move container to workspace 3
00:00:00.127 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+3 to command `move container to workspace 3` for device '*'
00:00:00.127 [DEBUG] [../sway/config.c:832] Read line 144: bindsym $mod+Shift+4 move container to workspace 4
00:00:00.127 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+4 move container to workspace 4
00:00:00.128 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+4 move container to workspace 4
00:00:00.128 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+4 to command `move container to workspace 4` for device '*'
00:00:00.128 [DEBUG] [../sway/config.c:832] Read line 145: bindsym $mod+Shift+5 move container to workspace 5
00:00:00.128 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+5 move container to workspace 5
00:00:00.128 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+5 move container to workspace 5
00:00:00.128 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+5 to command `move container to workspace 5` for device '*'
00:00:00.128 [DEBUG] [../sway/config.c:832] Read line 146: bindsym $mod+Shift+6 move container to workspace 6
00:00:00.128 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+6 move container to workspace 6
00:00:00.128 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+6 move container to workspace 6
00:00:00.128 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+6 to command `move container to workspace 6` for device '*'
00:00:00.128 [DEBUG] [../sway/config.c:832] Read line 147: bindsym $mod+Shift+7 move container to workspace 7
00:00:00.128 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+7 move container to workspace 7
00:00:00.128 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+7 move container to workspace 7
00:00:00.128 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+7 to command `move container to workspace 7` for device '*'
00:00:00.128 [DEBUG] [../sway/config.c:832] Read line 148: bindsym $mod+Shift+8 move container to workspace 8
00:00:00.128 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+8 move container to workspace 8
00:00:00.128 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+8 move container to workspace 8
00:00:00.128 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+8 to command `move container to workspace 8` for device '*'
00:00:00.128 [DEBUG] [../sway/config.c:832] Read line 149: bindsym $mod+Shift+9 move container to workspace 9
00:00:00.128 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+9 move container to workspace 9
00:00:00.128 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+9 move container to workspace 9
00:00:00.128 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+9 to command `move container to workspace 9` for device '*'
00:00:00.128 [DEBUG] [../sway/config.c:832] Read line 150: bindsym $mod+Shift+0 move container to workspace 10
00:00:00.128 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+0 move container to workspace 10
00:00:00.128 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+0 move container to workspace 10
00:00:00.128 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+0 to command `move container to workspace 10` for device '*'
00:00:00.128 [DEBUG] [../sway/config.c:832] Read line 151: bindsym $mod+Shift+KP_1 move container to workspace KP_1
00:00:00.128 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+KP_1 move container to workspace KP_1
00:00:00.128 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+KP_1 move container to workspace KP_1
00:00:00.128 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+KP_1 to command `move container to workspace KP_1` for device '*'
00:00:00.128 [DEBUG] [../sway/config.c:832] Read line 152: bindsym $mod+Shift+KP_2 move container to workspace KP_2
00:00:00.128 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+KP_2 move container to workspace KP_2
00:00:00.128 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+KP_2 move container to workspace KP_2
00:00:00.129 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+KP_2 to command `move container to workspace KP_2` for device '*'
00:00:00.129 [DEBUG] [../sway/config.c:832] Read line 153: bindsym $mod+Shift+KP_3 move container to workspace KP_3
00:00:00.129 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+KP_3 move container to workspace KP_3
00:00:00.129 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+KP_3 move container to workspace KP_3
00:00:00.129 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+KP_3 to command `move container to workspace KP_3` for device '*'
00:00:00.129 [DEBUG] [../sway/config.c:832] Read line 154: bindsym $mod+Shift+KP_4 move container to workspace KP_4
00:00:00.129 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+KP_4 move container to workspace KP_4
00:00:00.129 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+KP_4 move container to workspace KP_4
00:00:00.129 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+KP_4 to command `move container to workspace KP_4` for device '*'
00:00:00.129 [DEBUG] [../sway/config.c:832] Read line 155: bindsym $mod+Shift+KP_5 move container to workspace KP_5
00:00:00.129 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+KP_5 move container to workspace KP_5
00:00:00.129 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+KP_5 move container to workspace KP_5
00:00:00.129 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+KP_5 to command `move container to workspace KP_5` for device '*'
00:00:00.129 [DEBUG] [../sway/config.c:832] Read line 156: bindsym $mod+Shift+KP_6 move container to workspace KP_6
00:00:00.129 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+KP_6 move container to workspace KP_6
00:00:00.129 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+KP_6 move container to workspace KP_6
00:00:00.129 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+KP_6 to command `move container to workspace KP_6` for device '*'
00:00:00.129 [DEBUG] [../sway/config.c:832] Read line 157: bindsym $mod+Shift+KP_7 move container to workspace KP_7
00:00:00.129 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+KP_7 move container to workspace KP_7
00:00:00.129 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+KP_7 move container to workspace KP_7
00:00:00.129 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+KP_7 to command `move container to workspace KP_7` for device '*'
00:00:00.129 [DEBUG] [../sway/config.c:832] Read line 158: bindsym $mod+Shift+KP_8 move container to workspace KP_8
00:00:00.129 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+KP_8 move container to workspace KP_8
00:00:00.129 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+KP_8 move container to workspace KP_8
00:00:00.129 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+KP_8 to command `move container to workspace KP_8` for device '*'
00:00:00.129 [DEBUG] [../sway/config.c:832] Read line 159: bindsym $mod+Shift+KP_9 move container to workspace KP_9
00:00:00.129 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+KP_9 move container to workspace KP_9
00:00:00.129 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+KP_9 move container to workspace KP_9
00:00:00.129 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+KP_9 to command `move container to workspace KP_9` for device '*'
00:00:00.129 [DEBUG] [../sway/config.c:832] Read line 160: bindsym $mod+Shift+KP_0 move container to workspace KP_10
00:00:00.129 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+KP_0 move container to workspace KP_10
00:00:00.129 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+KP_0 move container to workspace KP_10
00:00:00.129 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+KP_0 to command `move container to workspace KP_10` for device '*'
00:00:00.129 [DEBUG] [../sway/config.c:832] Read line 161: # Note: workspaces can have any name you want, not just numbers.
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 162: # We just use 1-10 as the default.
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 163: #
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 164: # Layout stuff:
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 165: #
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 166: # You can "split" the current object of your focus with
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 167: # $mod+b or $mod+v, for horizontal and vertical splits
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 168: # respectively.
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 169: bindsym $mod+b splith
00:00:00.130 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+b splith
00:00:00.130 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+b splith
00:00:00.130 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+b to command `splith` for device '*'
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 170: bindsym $mod+v splitv
00:00:00.130 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+v splitv
00:00:00.130 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+v splitv
00:00:00.130 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+v to command `splitv` for device '*'
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 171:
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 172: # Switch the current container between different layout styles
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 173: bindsym $mod+s layout stacking
00:00:00.130 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+s layout stacking
00:00:00.130 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+s layout stacking
00:00:00.130 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+s to command `layout stacking` for device '*'
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 174: bindsym $mod+w layout tabbed
00:00:00.130 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+w layout tabbed
00:00:00.130 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+w layout tabbed
00:00:00.130 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+w to command `layout tabbed` for device '*'
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 175: bindsym $mod+e layout toggle split
00:00:00.130 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+e layout toggle split
00:00:00.130 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+e layout toggle split
00:00:00.130 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+e to command `layout toggle split` for device '*'
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 176:
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 177: # Make the current focus fullscreen
00:00:00.130 [DEBUG] [../sway/config.c:832] Read line 178: bindsym $mod+f fullscreen
00:00:00.130 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+f fullscreen
00:00:00.130 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+f fullscreen
00:00:00.130 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+f to command `fullscreen` for device '*'
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 179:
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 180: # Toggle the current focus between tiling and floating mode
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 181: bindsym $mod+Shift+space floating toggle
00:00:00.131 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+space floating toggle
00:00:00.131 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+space floating toggle
00:00:00.131 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+space to command `floating toggle` for device '*'
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 182:
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 183: # Swap focus between the tiling area and the floating area
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 184: bindsym $mod+space focus mode_toggle
00:00:00.131 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+space focus mode_toggle
00:00:00.131 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+space focus mode_toggle
00:00:00.131 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+space to command `focus mode_toggle` for device '*'
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 185:
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 186: # Move focus to the parent container
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 187: bindsym $mod+a focus parent
00:00:00.131 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+a focus parent
00:00:00.131 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+a focus parent
00:00:00.131 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+a to command `focus parent` for device '*'
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 188: #
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 189: # Scratchpad:
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 190: #
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 191: # Sway has a "scratchpad", which is a bag of holding for windows.
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 192: # You can send windows there and get them back later.
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 193:
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 194: # Move the currently focused window to the scratchpad
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 195: bindsym $mod+Shift+minus move scratchpad
00:00:00.131 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+Shift+minus move scratchpad
00:00:00.131 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+Shift+minus move scratchpad
00:00:00.131 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+minus to command `move scratchpad` for device '*'
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 196:
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 197: # Show the next scratchpad window or hide the focused scratchpad window.
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 198: # If there are multiple scratchpad windows, this command cycles through them.
00:00:00.131 [DEBUG] [../sway/config.c:832] Read line 199: bindsym $mod+minus scratchpad show
00:00:00.131 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+minus scratchpad show
00:00:00.131 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+minus scratchpad show
00:00:00.131 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+minus to command `scratchpad show` for device '*'
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 200: #
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 201: # Resizing containers:
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 202: #
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 203: mode "resize" {
00:00:00.132 [DEBUG] [../sway/config.c:886] Entering block 'mode "resize"'
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 204: # left will shrink the containers width
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 205: # right will grow the containers width
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 206: # up will shrink the containers height
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 207: # down will grow the containers height
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 208: bindsym $left resize shrink width 10px
00:00:00.132 [INFO] [../sway/commands.c:380] Config command: mode "resize" bindsym $left resize shrink width 10px
00:00:00.132 [INFO] [../sway/commands.c:400] After replacement: mode "resize" bindsym h resize shrink width 10px
00:00:00.132 [DEBUG] [../sway/commands.c:432] Subcommand: bindsym h resize shrink width 10px
00:00:00.132 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound h to command `resize shrink width 10px` for device '*'
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 209: bindsym $down resize grow height 10px
00:00:00.132 [INFO] [../sway/commands.c:380] Config command: mode "resize" bindsym $down resize grow height 10px
00:00:00.132 [INFO] [../sway/commands.c:400] After replacement: mode "resize" bindsym j resize grow height 10px
00:00:00.132 [DEBUG] [../sway/commands.c:432] Subcommand: bindsym j resize grow height 10px
00:00:00.132 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound j to command `resize grow height 10px` for device '*'
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 210: bindsym $up resize shrink height 10px
00:00:00.132 [INFO] [../sway/commands.c:380] Config command: mode "resize" bindsym $up resize shrink height 10px
00:00:00.132 [INFO] [../sway/commands.c:400] After replacement: mode "resize" bindsym k resize shrink height 10px
00:00:00.132 [DEBUG] [../sway/commands.c:432] Subcommand: bindsym k resize shrink height 10px
00:00:00.132 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound k to command `resize shrink height 10px` for device '*'
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 211: bindsym $right resize grow width 10px
00:00:00.132 [INFO] [../sway/commands.c:380] Config command: mode "resize" bindsym $right resize grow width 10px
00:00:00.132 [INFO] [../sway/commands.c:400] After replacement: mode "resize" bindsym l resize grow width 10px
00:00:00.132 [DEBUG] [../sway/commands.c:432] Subcommand: bindsym l resize grow width 10px
00:00:00.132 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound l to command `resize grow width 10px` for device '*'
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 212:
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 213: # Ditto, with arrow keys
00:00:00.132 [DEBUG] [../sway/config.c:832] Read line 214: bindsym Left resize shrink width 10px
00:00:00.132 [INFO] [../sway/commands.c:380] Config command: mode "resize" bindsym Left resize shrink width 10px
00:00:00.132 [INFO] [../sway/commands.c:400] After replacement: mode "resize" bindsym Left resize shrink width 10px
00:00:00.132 [DEBUG] [../sway/commands.c:432] Subcommand: bindsym Left resize shrink width 10px
00:00:00.133 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Left to command `resize shrink width 10px` for device '*'
00:00:00.133 [DEBUG] [../sway/config.c:832] Read line 215: bindsym Down resize grow height 10px
00:00:00.133 [INFO] [../sway/commands.c:380] Config command: mode "resize" bindsym Down resize grow height 10px
00:00:00.133 [INFO] [../sway/commands.c:400] After replacement: mode "resize" bindsym Down resize grow height 10px
00:00:00.133 [DEBUG] [../sway/commands.c:432] Subcommand: bindsym Down resize grow height 10px
00:00:00.133 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Down to command `resize grow height 10px` for device '*'
00:00:00.133 [DEBUG] [../sway/config.c:832] Read line 216: bindsym Up resize shrink height 10px
00:00:00.133 [INFO] [../sway/commands.c:380] Config command: mode "resize" bindsym Up resize shrink height 10px
00:00:00.133 [INFO] [../sway/commands.c:400] After replacement: mode "resize" bindsym Up resize shrink height 10px
00:00:00.133 [DEBUG] [../sway/commands.c:432] Subcommand: bindsym Up resize shrink height 10px
00:00:00.133 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Up to command `resize shrink height 10px` for device '*'
00:00:00.133 [DEBUG] [../sway/config.c:832] Read line 217: bindsym Right resize grow width 10px
00:00:00.133 [INFO] [../sway/commands.c:380] Config command: mode "resize" bindsym Right resize grow width 10px
00:00:00.133 [INFO] [../sway/commands.c:400] After replacement: mode "resize" bindsym Right resize grow width 10px
00:00:00.133 [DEBUG] [../sway/commands.c:432] Subcommand: bindsym Right resize grow width 10px
00:00:00.133 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Right to command `resize grow width 10px` for device '*'
00:00:00.133 [DEBUG] [../sway/config.c:832] Read line 218:
00:00:00.133 [DEBUG] [../sway/config.c:832] Read line 219: # Return to default mode
00:00:00.133 [DEBUG] [../sway/config.c:832] Read line 220: bindsym Return mode "default"
00:00:00.133 [INFO] [../sway/commands.c:380] Config command: mode "resize" bindsym Return mode "default"
00:00:00.133 [INFO] [../sway/commands.c:400] After replacement: mode "resize" bindsym Return mode "default"
00:00:00.133 [DEBUG] [../sway/commands.c:432] Subcommand: bindsym Return mode "default"
00:00:00.133 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Return to command `mode "default"` for device '*'
00:00:00.133 [DEBUG] [../sway/config.c:832] Read line 221: bindsym Escape mode "default"
00:00:00.133 [INFO] [../sway/commands.c:380] Config command: mode "resize" bindsym Escape mode "default"
00:00:00.133 [INFO] [../sway/commands.c:400] After replacement: mode "resize" bindsym Escape mode "default"
00:00:00.133 [DEBUG] [../sway/commands.c:432] Subcommand: bindsym Escape mode "default"
00:00:00.133 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Escape to command `mode "default"` for device '*'
00:00:00.133 [DEBUG] [../sway/config.c:832] Read line 222: }
00:00:00.133 [DEBUG] [../sway/config.c:903] Exiting block 'mode "resize"'
00:00:00.133 [DEBUG] [../sway/config.c:832] Read line 223: bindsym $mod+r mode "resize"
00:00:00.133 [INFO] [../sway/commands.c:380] Config command: bindsym $mod+r mode "resize"
00:00:00.133 [INFO] [../sway/commands.c:400] After replacement: bindsym Mod4+r mode "resize"
00:00:00.133 [DEBUG] [../sway/commands/bind.c:298] bindsym - Bound Mod4+r to command `mode "resize"` for device '*'
00:00:00.133 [DEBUG] [../sway/config.c:832] Read line 224:
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 225: #
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 226: # Status Bar:
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 227: #
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 228: # Read `man 5 sway-bar` for more information about this section.
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 229: bar {
00:00:00.134 [DEBUG] [../sway/config.c:886] Entering block 'bar'
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 230: position top
00:00:00.134 [INFO] [../sway/commands.c:380] Config command: bar position top
00:00:00.134 [INFO] [../sway/commands.c:400] After replacement: bar position top
00:00:00.134 [DEBUG] [../sway/commands/bar.c:93] Creating bar: bar-0
00:00:00.134 [DEBUG] [../sway/commands.c:432] Subcommand: position top
00:00:00.134 [DEBUG] [../sway/commands/bar/position.c:15] Setting bar position 'top' for bar: bar-0
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 231:
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 232: # When the status_command prints a new line to stdout, swaybar updates.
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 233: # The default just shows the current date and time.
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 234: status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
00:00:00.134 [INFO] [../sway/commands.c:380] Config command: bar status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
00:00:00.134 [INFO] [../sway/commands.c:400] After replacement: bar status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
00:00:00.134 [DEBUG] [../sway/commands.c:432] Subcommand: status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
00:00:00.134 [DEBUG] [../sway/commands/bar/status_command.c:17] Feeding bar with status command: while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 235:
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 236: colors {
00:00:00.134 [DEBUG] [../sway/config.c:886] Entering block 'bar colors'
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 237: statusline #ffffff
00:00:00.134 [INFO] [../sway/commands.c:380] Config command: bar colors statusline #ffffff
00:00:00.134 [INFO] [../sway/commands.c:400] After replacement: bar colors statusline #ffffff
00:00:00.134 [DEBUG] [../sway/commands.c:432] Subcommand: colors statusline #ffffff
00:00:00.134 [DEBUG] [../sway/commands.c:432] Subcommand: statusline #ffffff
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 238: background #323232
00:00:00.134 [INFO] [../sway/commands.c:380] Config command: bar colors background #323232
00:00:00.134 [INFO] [../sway/commands.c:400] After replacement: bar colors background #323232
00:00:00.134 [DEBUG] [../sway/commands.c:432] Subcommand: colors background #323232
00:00:00.134 [DEBUG] [../sway/commands.c:432] Subcommand: background #323232
00:00:00.134 [DEBUG] [../sway/config.c:832] Read line 239: inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.134 [INFO] [../sway/commands.c:380] Config command: bar colors inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.134 [INFO] [../sway/commands.c:400] After replacement: bar colors inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.134 [DEBUG] [../sway/commands.c:432] Subcommand: colors inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.135 [DEBUG] [../sway/commands.c:432] Subcommand: inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 240: }
00:00:00.135 [DEBUG] [../sway/config.c:903] Exiting block 'bar colors'
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 241: }
00:00:00.135 [DEBUG] [../sway/config.c:903] Exiting block 'bar'
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 242:
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 243: include /etc/sway/config.d/*
00:00:00.135 [INFO] [../sway/commands.c:380] Config command: include /etc/sway/config.d/*
00:00:00.135 [INFO] [../sway/commands.c:400] After replacement: include /etc/sway/config.d/*
00:00:00.135 [INFO] [../sway/config.c:415] Loading config from /etc/sway/config.d/10-systemd-cgroups.conf
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 1: # Automatically assign a dedicated systemd scope to the GUI applications
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 2: # launched in the same cgroup as the compositor. This could be helpful for
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 3: # implementing cgroup-based resource management and would be necessary when
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 4: # `systemd-oomd` is in use.
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 5: #
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 6: # Limitations: The script is using i3ipc window:new event to detect application
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 7: # launches and would fail to detect background apps or special surfaces.
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 8: # Therefore it's recommended to supplement the script with use of systemd user
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 9: # services for such background apps.
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 10: #
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 11: exec /usr/libexec/sway-systemd/assign-cgroups.py
00:00:00.135 [INFO] [../sway/commands.c:380] Config command: exec /usr/libexec/sway-systemd/assign-cgroups.py
00:00:00.135 [INFO] [../sway/commands.c:400] After replacement: exec /usr/libexec/sway-systemd/assign-cgroups.py
00:00:00.135 [DEBUG] [../sway/config.c:876] Deferring command `exec /usr/libexec/sway-systemd/assign-cgroups.py'
00:00:00.135 [INFO] [../sway/config.c:415] Loading config from /etc/sway/config.d/10-systemd-session.conf
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 1: # Address several issues with DBus activation and systemd user sessions
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 2: #
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 3: # 1. DBus-activated and systemd services do not share the environment with user
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 4: # login session. In order to make the applications that have GUI or interact
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 5: # with the compositor work as a systemd user service, certain variables must
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 6: # be propagated to the systemd and dbus.
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 7: # Possible (but not exhaustive) list of variables:
00:00:00.135 [DEBUG] [../sway/config.c:832] Read line 8: # - DISPLAY - for X11 applications that are started as user session services
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 9: # - WAYLAND_DISPLAY - similarly, this is needed for wayland-native services
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 10: # - I3SOCK/SWAYSOCK - allow services to talk with sway using i3 IPC protocol
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 11: #
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 12: # 2. `xdg-desktop-portal` requires XDG_CURRENT_DESKTOP to be set in order to
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 13: # select the right implementation for screenshot and screencast portals.
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 14: # With all the numerous ways to start sway, it's not possible to rely on the
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 15: # right value of the XDG_CURRENT_DESKTOP variable within the login session,
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 16: # therefore the script will ensure that it is always set to `sway`.
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 17: #
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 18: # 3. GUI applications started as a systemd service (or via xdg-autostart-generator)
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 19: # may rely on the XDG_SESSION_TYPE variable to select the backend.
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 20: # Ensure that it is always set to `wayland`.
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 21: #
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 22: # 4. The common way to autostart a systemd service along with the desktop
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 23: # environment is to add it to a `graphical-session.target`. However, systemd
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 24: # forbids starting the graphical session target directly and encourages use
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 25: # of an environment-specific target units. Therefore, the integration
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 26: # package here provides and uses `sway-session.target` which would bind to
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 27: # the `graphical-session.target`.
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 28: #
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 29: # 5. Stop the target and unset the variables when the compositor exits.
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 30: #
00:00:00.136 [DEBUG] [../sway/config.c:832] Read line 31: exec /usr/libexec/sway-systemd/session.sh
00:00:00.136 [INFO] [../sway/commands.c:380] Config command: exec /usr/libexec/sway-systemd/session.sh
00:00:00.136 [INFO] [../sway/commands.c:400] After replacement: exec /usr/libexec/sway-systemd/session.sh
00:00:00.136 [DEBUG] [../sway/config.c:876] Deferring command `exec /usr/libexec/sway-systemd/session.sh'
00:00:00.164 [DEBUG] [../sway/server.c:276] Initializing Xwayland (lazy=1)
00:00:00.164 [INFO] [../sway/server.c:299] Starting backend on wayland display 'wayland-1'
00:00:00.164 [DEBUG] [wlr] [backend/libinput/backend.c:87] Starting libinput backend
00:00:01.234 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Power Button [0:1]
00:00:01.234 [DEBUG] [../sway/input/input-manager.c:234] adding device: '0:1:Power_Button'
00:00:01.234 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:1:Power_Button')
00:00:01.234 [DEBUG] [../sway/input/input-manager.c:184] no fallback seat config - creating default
00:00:01.234 [DEBUG] [../sway/config/seat.c:66] Adding non-wildcard seat config
00:00:01.234 [DEBUG] [../sway/config/seat.c:83] Config stored for seat seat0
00:00:01.234 [DEBUG] [../sway/input/input-manager.c:602] applying seat config for seat seat0
00:00:01.234 [DEBUG] [../sway/input/seat.c:963] adding device 0:1:Power_Button to seat seat0
00:00:01.241 [DEBUG] [../sway/input/keyboard.c:924] Created keyboard group 0x564055e2c1e0
00:00:01.241 [DEBUG] [../sway/input/keyboard.c:947] Adding keyboard 0:1:Power_Button to group 0x564055e2c1e0
00:00:01.250 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Video Bus [0:6]
00:00:01.250 [DEBUG] [../sway/input/input-manager.c:234] adding device: '0:6:Video_Bus'
00:00:01.250 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:6:Video_Bus')
00:00:01.250 [DEBUG] [../sway/input/seat.c:963] adding device 0:6:Video_Bus to seat seat0
00:00:01.257 [DEBUG] [../sway/input/keyboard.c:899] Adding keyboard 0:6:Video_Bus to group 0x564055e2c1e0
00:00:01.259 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Lid Switch [0:5]
00:00:01.259 [DEBUG] [../sway/input/input-manager.c:234] adding device: '0:5:Lid_Switch'
00:00:01.259 [DEBUG] [../sway/input/seat.c:963] adding device 0:5:Lid_Switch to seat seat0
00:00:01.259 [DEBUG] [../sway/input/switch.c:18] Allocated switch for device
00:00:01.259 [DEBUG] [../sway/input/seat.c:722] Applying input config to 0:5:Lid_Switch
00:00:01.259 [DEBUG] [../sway/input/switch.c:103] Configured switch for device
00:00:01.259 [DEBUG] [../sway/input/switch.c:89] 0:5:Lid_Switch: type 0 state 1
00:00:01.259 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Sleep Button [0:3]
00:00:01.259 [DEBUG] [../sway/input/input-manager.c:234] adding device: '0:3:Sleep_Button'
00:00:01.259 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:3:Sleep_Button')
00:00:01.259 [DEBUG] [../sway/input/seat.c:963] adding device 0:3:Sleep_Button to seat seat0
00:00:01.266 [DEBUG] [../sway/input/keyboard.c:899] Adding keyboard 0:3:Sleep_Button to group 0x564055e2c1e0
00:00:01.268 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Corsair Corsair STRAFE Gaming Keyboard [6940:6980]
00:00:01.268 [DEBUG] [../sway/input/input-manager.c:234] adding device: '6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard'
00:00:01.268 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard')
00:00:01.268 [DEBUG] [../sway/input/seat.c:963] adding device 6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard to seat seat0
00:00:01.275 [DEBUG] [../sway/input/keyboard.c:899] Adding keyboard 6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard to group 0x564055e2c1e0
00:00:01.277 [DEBUG] [../sway/input/input-manager.c:234] adding device: '6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard'
00:00:01.277 [DEBUG] [../sway/input/seat.c:963] adding device 6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard to seat seat0
00:00:01.302 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:243] Loaded cursor theme 'default' at size 24 (124 available cursors)
00:00:01.302 [DEBUG] [../sway/input/seat.c:722] Applying input config to 6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard
00:00:01.302 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Corsair Corsair Gaming M65 Pro RGB Mouse [6940:6958]
00:00:01.302 [DEBUG] [../sway/input/input-manager.c:234] adding device: '6940:6958:Corsair_Corsair_Gaming_M65_Pro_RGB_Mouse'
00:00:01.302 [DEBUG] [../sway/input/seat.c:963] adding device 6940:6958:Corsair_Corsair_Gaming_M65_Pro_RGB_Mouse to seat seat0
00:00:01.302 [DEBUG] [../sway/input/seat.c:722] Applying input config to 6940:6958:Corsair_Corsair_Gaming_M65_Pro_RGB_Mouse
00:00:01.302 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Logitech Logitech USB Headset [1133:2628]
00:00:01.302 [DEBUG] [../sway/input/input-manager.c:234] adding device: '1133:2628:Logitech_Logitech_USB_Headset'
00:00:01.303 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '1133:2628:Logitech_Logitech_USB_Headset')
00:00:01.303 [DEBUG] [../sway/input/seat.c:963] adding device 1133:2628:Logitech_Logitech_USB_Headset to seat seat0
00:00:01.310 [DEBUG] [../sway/input/keyboard.c:899] Adding keyboard 1133:2628:Logitech_Logitech_USB_Headset to group 0x564055e2c1e0
00:00:01.311 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding AT Translated Set 2 keyboard [1:1]
00:00:01.311 [DEBUG] [../sway/input/input-manager.c:234] adding device: '1:1:AT_Translated_Set_2_keyboard'
00:00:01.312 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '1:1:AT_Translated_Set_2_keyboard')
00:00:01.312 [DEBUG] [../sway/input/seat.c:963] adding device 1:1:AT_Translated_Set_2_keyboard to seat seat0
00:00:01.318 [DEBUG] [../sway/input/keyboard.c:899] Adding keyboard 1:1:AT_Translated_Set_2_keyboard to group 0x564055e2c1e0
00:00:01.320 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding PS/2 Generic Mouse [2:1]
00:00:01.320 [DEBUG] [../sway/input/input-manager.c:234] adding device: '2:1:PS/2_Generic_Mouse'
00:00:01.320 [DEBUG] [../sway/input/seat.c:963] adding device 2:1:PS/2_Generic_Mouse to seat seat0
00:00:01.320 [DEBUG] [../sway/input/seat.c:722] Applying input config to 2:1:PS/2_Generic_Mouse
00:00:01.320 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding SynPS/2 Synaptics TouchPad [2:7]
00:00:01.320 [DEBUG] [../sway/input/input-manager.c:234] adding device: '2:7:SynPS/2_Synaptics_TouchPad'
00:00:01.320 [DEBUG] [../sway/input/seat.c:963] adding device 2:7:SynPS/2_Synaptics_TouchPad to seat seat0
00:00:01.320 [DEBUG] [../sway/input/seat.c:722] Applying input config to 2:7:SynPS/2_Synaptics_TouchPad
00:00:01.320 [DEBUG] [wlr] [backend/libinput/events.c:131] libinput gesture not handled
00:00:01.320 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Wireless hotkeys [0:0]
00:00:01.320 [DEBUG] [../sway/input/input-manager.c:234] adding device: '0:0:Wireless_hotkeys'
00:00:01.321 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:0:Wireless_hotkeys')
00:00:01.321 [DEBUG] [../sway/input/seat.c:963] adding device 0:0:Wireless_hotkeys to seat seat0
00:00:01.328 [DEBUG] [../sway/input/keyboard.c:899] Adding keyboard 0:0:Wireless_hotkeys to group 0x564055e2c1e0
00:00:01.329 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding HP WMI hotkeys [0:0]
00:00:01.330 [DEBUG] [../sway/input/input-manager.c:234] adding device: '0:0:HP_WMI_hotkeys'
00:00:01.330 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:0:HP_WMI_hotkeys')
00:00:01.330 [DEBUG] [../sway/input/seat.c:963] adding device 0:0:HP_WMI_hotkeys to seat seat0
00:00:01.337 [DEBUG] [../sway/input/keyboard.c:899] Adding keyboard 0:0:HP_WMI_hotkeys to group 0x564055e2c1e0
00:00:01.338 [DEBUG] [wlr] [backend/libinput/backend.c:128] libinput successfully initialized
00:00:01.338 [INFO] [wlr] [backend/drm/drm.c:1338] Scanning DRM connectors on /dev/dri/card1
00:00:01.339 [INFO] [wlr] [backend/drm/drm.c:1389] Found connector 'LVDS-1'
00:00:01.339 [INFO] [wlr] [backend/drm/drm.c:1414] 'LVDS-1' connected
00:00:01.339 [DEBUG] [wlr] [backend/drm/drm.c:1220] Current CRTC: 45
00:00:01.339 [INFO] [wlr] [backend/drm/drm.c:1230] Physical size: 310x170
00:00:01.339 [INFO] [wlr] [backend/drm/drm.c:1287] Detected modes:
00:00:01.339 [INFO] [wlr] [backend/drm/drm.c:1315] 1366x768 @ 59.989 Hz (preferred)
00:00:01.339 [INFO] [wlr] [backend/drm/drm.c:1315] 1366x768 @ 39.995 Hz
00:00:01.342 [INFO] [wlr] [backend/drm/drm.c:1389] Found connector 'VGA-1'
00:00:01.344 [INFO] [wlr] [backend/drm/drm.c:1389] Found connector 'HDMI-A-1'
00:00:01.359 [INFO] [wlr] [backend/drm/drm.c:1389] Found connector 'DP-1'
00:00:01.359 [INFO] [wlr] [backend/drm/drm.c:1414] 'DP-1' connected
00:00:01.359 [DEBUG] [wlr] [backend/drm/drm.c:1220] Current CRTC: 60
00:00:01.359 [INFO] [wlr] [backend/drm/drm.c:1230] Physical size: 600x340
00:00:01.359 [INFO] [wlr] [backend/drm/drm.c:1287] Detected modes:
00:00:01.359 [INFO] [wlr] [backend/drm/drm.c:1315] 2560x1440 @ 59.951 Hz
00:00:01.359 [INFO] [wlr] [backend/drm/drm.c:1315] 1920x1080 @ 74.977 Hz
00:00:01.359 [INFO] [wlr] [backend/drm/drm.c:1315] 1920x1080 @ 60.000 Hz
00:00:01.359 [INFO] [wlr] [backend/drm/drm.c:1315] 1920x1080 @ 60.000 Hz
00:00:01.359 [INFO] [wlr] [backend/drm/drm.c:1315] 1920x1080 @ 59.940 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1920x1080 @ 50.000 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1680x1050 @ 59.954 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1600x900 @ 60.000 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x1024 @ 75.025 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x1024 @ 60.020 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x800 @ 59.810 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1152x864 @ 59.972 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x720 @ 60.000 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x720 @ 60.000 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x720 @ 59.940 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x720 @ 50.000 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1024x768 @ 75.029 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 1024x768 @ 60.004 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 800x600 @ 75.000 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 800x600 @ 60.317 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 720x480 @ 60.000 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 720x480 @ 59.940 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 640x480 @ 75.000 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 640x480 @ 60.000 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 640x480 @ 59.940 Hz
00:00:01.360 [INFO] [wlr] [backend/drm/drm.c:1315] 640x480 @ 59.940 Hz
00:00:01.363 [INFO] [wlr] [backend/drm/drm.c:1389] Found connector 'HDMI-A-2'
00:00:01.365 [INFO] [wlr] [backend/drm/drm.c:1389] Found connector 'HDMI-A-3'
00:00:01.365 [INFO] [wlr] [backend/drm/drm.c:1389] Found connector 'DP-2'
00:00:01.366 [INFO] [wlr] [backend/drm/drm.c:1389] Found connector 'DP-3'
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1011] Reallocating CRTCs
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1022] State before reallocation:
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'LVDS-1' crtc=0 status=1 want_crtc=1
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'VGA-1' crtc=-1 status=2 want_crtc=0
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'HDMI-A-1' crtc=-1 status=2 want_crtc=0
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'DP-1' crtc=1 status=1 want_crtc=1
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'HDMI-A-2' crtc=-1 status=2 want_crtc=0
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'HDMI-A-3' crtc=-1 status=2 want_crtc=0
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'DP-2' crtc=-1 status=2 want_crtc=0
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'DP-3' crtc=-1 status=2 want_crtc=0
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1078] State after reallocation:
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'LVDS-1' crtc=0 status=1
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'VGA-1' crtc=-1 status=2
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'HDMI-A-1' crtc=-1 status=2
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'DP-1' crtc=1 status=1
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'HDMI-A-2' crtc=-1 status=2
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'HDMI-A-3' crtc=-1 status=2
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'DP-2' crtc=-1 status=2
00:00:01.366 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'DP-3' crtc=-1 status=2
00:00:01.366 [INFO] [wlr] [backend/drm/drm.c:1447] connector LVDS-1: Requesting modeset
00:00:01.366 [DEBUG] [../sway/desktop/output.c:912] New output 0x56405617fae0: LVDS-1 (non-desktop: 0)
00:00:01.366 [DEBUG] [../sway/config/output.c:390] Turning off output LVDS-1
00:00:01.366 [DEBUG] [../sway/config/output.c:506] Committing output LVDS-1
00:00:01.375 [INFO] [wlr] [backend/drm/drm.c:590] connector LVDS-1: Turning off
00:00:01.630 [DEBUG] [../sway/config/output.c:519] Disabling output LVDS-1
00:00:01.630 [INFO] [wlr] [backend/drm/drm.c:1447] connector DP-1: Requesting modeset
00:00:01.630 [DEBUG] [../sway/desktop/output.c:912] New output 0x5640561804a0: DP-1 (non-desktop: 0)
00:00:01.630 [DEBUG] [../sway/config/output.c:395] Turning on output DP-1
00:00:01.630 [DEBUG] [../sway/config/output.c:403] Set DP-1 mode to 2560x1440 (59.951000 Hz)
00:00:01.630 [DEBUG] [../sway/config/output.c:282] Assigning configured mode to DP-1
00:00:01.630 [DEBUG] [../sway/config/output.c:441] Auto-detected output transform: 0
00:00:01.630 [DEBUG] [../sway/config/output.c:356] Output DPI: 108.373333x107.576471
00:00:01.630 [DEBUG] [../sway/config/output.c:455] Auto-detected output scale: 1.000000
00:00:01.630 [DEBUG] [../sway/config/output.c:506] Committing output DP-1
00:00:01.630 [DEBUG] [wlr] [types/output/render.c:229] Attaching empty buffer to output for modeset
00:00:01.630 [DEBUG] [wlr] [types/output/render.c:75] Choosing primary buffer format XR24 (0x34325258) for output 'DP-1'
00:00:01.630 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:01.634 [DEBUG] [wlr] [render/allocator/gbm.c:143] Allocated 2560x1440 GBM buffer with format XR24 (0x34325258), modifier X_TILED (0x0100000000000001)
00:00:01.634 [DEBUG] [wlr] [render/gles2/renderer.c:148] Created GL FBO for buffer 2560x1440
00:00:01.637 [INFO] [wlr] [backend/drm/drm.c:586] connector DP-1: Modesetting with 2560x1440 @ 59.951 Hz
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:283] Workspace: Generating new workspace name for output DP-1
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: '1'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:274] Workspace: Found free name 1
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: '2'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: '3'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: '4'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: '5'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: '6'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: '7'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: '8'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: '9'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: '10'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: 'KP_1'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: 'KP_2'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: 'KP_3'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: 'KP_4'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: 'KP_5'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: 'KP_6'
00:00:01.650 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: 'KP_7'
00:00:01.651 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: 'KP_8'
00:00:01.651 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: 'KP_9'
00:00:01.651 [DEBUG] [../sway/tree/workspace.c:220] Got valid workspace command for target: 'KP_10'
00:00:01.651 [DEBUG] [../sway/tree/output.c:127] Creating default workspace 1
00:00:01.651 [DEBUG] [../sway/tree/workspace.c:65] Adding workspace 1 for output DP-1
00:00:01.680 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:243] Loaded cursor theme 'default' at size 24 (124 available cursors)
00:00:01.680 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:01.680 [DEBUG] [wlr] [render/allocator/gbm.c:143] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:01.680 [DEBUG] [wlr] [render/gles2/renderer.c:148] Created GL FBO for buffer 256x256
00:00:01.682 [DEBUG] [../sway/desktop/layer_shell.c:195] Usable area changed, rearranging output
00:00:01.682 [DEBUG] [../sway/tree/arrange.c:263] Usable area for ws: 2560x1440@0,0
00:00:01.682 [DEBUG] [../sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:01.682 [DEBUG] [../sway/tree/arrange.c:263] Usable area for ws: 2560x1440@0,0
00:00:01.682 [DEBUG] [../sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:01.682 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:0:HP_WMI_hotkeys')
00:00:01.692 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:0:Wireless_hotkeys')
00:00:01.700 [DEBUG] [../sway/input/seat.c:722] Applying input config to 2:7:SynPS/2_Synaptics_TouchPad
00:00:01.700 [DEBUG] [../sway/input/seat.c:722] Applying input config to 2:1:PS/2_Generic_Mouse
00:00:01.700 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '1:1:AT_Translated_Set_2_keyboard')
00:00:01.708 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '1133:2628:Logitech_Logitech_USB_Headset')
00:00:01.717 [DEBUG] [../sway/input/seat.c:722] Applying input config to 6940:6958:Corsair_Corsair_Gaming_M65_Pro_RGB_Mouse
00:00:01.717 [DEBUG] [../sway/input/seat.c:722] Applying input config to 6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard
00:00:01.717 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard')
00:00:01.726 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:3:Sleep_Button')
00:00:01.734 [DEBUG] [../sway/input/seat.c:722] Applying input config to 0:5:Lid_Switch
00:00:01.734 [DEBUG] [../sway/input/switch.c:103] Configured switch for device
00:00:01.734 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:6:Video_Bus')
00:00:01.742 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:1:Power_Button')
00:00:01.750 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:01.751 [DEBUG] [wlr] [render/allocator/gbm.c:143] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:01.751 [DEBUG] [wlr] [render/gles2/renderer.c:148] Created GL FBO for buffer 256x256
00:00:01.751 [DEBUG] [../sway/desktop/transaction.c:398] Transaction 0x56405610a3d0 committing with 2 instructions
00:00:01.751 [DEBUG] [../sway/desktop/transaction.c:294] Applying transaction 0x56405610a3d0
00:00:01.751 [INFO] [wlr] [backend/headless/backend.c:16] Starting headless backend
00:00:01.751 [DEBUG] [../sway/config/bar.c:266] Invoking swaybar for bar id 'bar-0'
00:00:01.755 [DEBUG] [../sway/config/bar.c:258] Spawned swaybar bar-0
00:00:01.755 [DEBUG] [../sway/config.c:681] Running deferred commands
00:00:01.755 [INFO] [../sway/commands.c:260] Handling command 'exec /usr/libexec/sway-systemd/assign-cgroups.py'
00:00:01.755 [DEBUG] [../sway/commands/exec_always.c:59] Executing /usr/libexec/sway-systemd/assign-cgroups.py
00:00:01.760 [DEBUG] [../sway/commands/exec_always.c:112] Child process created with pid 5397
00:00:01.760 [DEBUG] [../sway/commands/exec_always.c:114] Recording workspace for process 5397
00:00:01.760 [INFO] [../sway/commands.c:260] Handling command 'exec /usr/libexec/sway-systemd/session.sh'
00:00:01.760 [DEBUG] [../sway/commands/exec_always.c:59] Executing /usr/libexec/sway-systemd/session.sh
00:00:01.766 [DEBUG] [../sway/commands/exec_always.c:112] Child process created with pid 5399
00:00:01.766 [DEBUG] [../sway/commands/exec_always.c:114] Recording workspace for process 5399
00:00:01.766 [INFO] [../sway/server.c:311] Running compositor on wayland display 'wayland-1'
00:00:01.766 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:01.772 [DEBUG] [wlr] [render/allocator/gbm.c:143] Allocated 2560x1440 GBM buffer with format XR24 (0x34325258), modifier X_TILED (0x0100000000000001)
00:00:01.773 [DEBUG] [wlr] [render/gles2/renderer.c:148] Created GL FBO for buffer 2560x1440
00:00:01.776 [DEBUG] [../sway/ipc-server.c:198] New client: fd 64
00:00:01.776 [DEBUG] [../sway/ipc-server.c:198] New client: fd 67
Environment variable $DESKTOP_SESSION not set, ignoring.
00:00:01.832 [DEBUG] [wlr] [types/wlr_compositor.c:673] New wlr_surface 0x564055eb09d0 (res 0x56405614ff20)
00:00:01.832 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:440] new layer_surface 0x564055521360 (res 0x564056193cf0)
00:00:01.832 [DEBUG] [../sway/desktop/layer_shell.c:609] new layer surface: namespace panel layer 1 anchor 13 size 0x25 margin 0,0,0,0,
00:00:01.833 [DEBUG] [../sway/desktop/layer_shell.c:195] Usable area changed, rearranging output
00:00:01.833 [DEBUG] [../sway/tree/arrange.c:263] Usable area for ws: 2560x1415@0,25
00:00:01.833 [DEBUG] [../sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 25.000000
00:00:01.833 [DEBUG] [../sway/desktop/transaction.c:398] Transaction 0x5640560e22f0 committing with 1 instructions
00:00:01.833 [DEBUG] [../sway/desktop/transaction.c:294] Applying transaction 0x5640560e22f0
00:00:01.833 [DEBUG] [wlr] [types/wlr_compositor.c:673] New wlr_surface 0x564055e16920 (res 0x56405614f740)
00:00:01.924 [DEBUG] [../sway/ipc-server.c:198] New client: fd 69
00:00:02.024 [DEBUG] [../sway/ipc-server.c:198] New client: fd 71
00:00:02.024 [DEBUG] [../sway/ipc-server.c:198] New client: fd 73
00:00:02.032 [INFO] [wlr] [xwayland/server.c:108] Starting Xwayland on :0
00:00:02.152 [DEBUG] [wlr] [types/wlr_compositor.c:673] New wlr_surface 0x564055ea9530 (res 0x5640561219f0)
00:00:02.153 [DEBUG] [wlr] [xwayland/server.c:273] Xserver is ready
00:00:02.155 [DEBUG] [wlr] [xwayland/xwm.c:1817] xfixes version: 5.0
00:00:02.155 [DEBUG] [wlr] [xwayland/xwm.c:1838] xres version: 1.2
00:00:02.160 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:02.160 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:02.160 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:02.160 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:02.160 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:02.160 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:02.160 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:02.160 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:02.160 [DEBUG] [../sway/input/cursor.c:941] denying request to set cursor from unfocused client
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning: Unsupported maximum keycode 708, clipping.
> X11 cannot support keycodes above 255.
Errors from xkbcomp are not fatal to the X server
00:00:02.171 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:02.171 [DEBUG] [wlr] [xwayland/xwm.c:1551] unhandled X11 event: 34
00:00:02.171 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:02.171 [DEBUG] [wlr] [xwayland/xwm.c:1551] unhandled X11 event: 34
INFO:assign-cgroups:X-Resource version 1.2
00:00:02.205 [DEBUG] [../sway/ipc-server.c:198] New client: fd 76
00:00:02.205 [INFO] [../sway/ipc-server.c:558] IPC Client 76 disconnected
INFO:assign-cgroups:compositor:5381 /user.slice/user-1000.slice/session-1.scope
00:00:08.175 [DEBUG] [wlr] [backend/session/session.c:181] udev event for card1 (change)
00:00:08.175 [DEBUG] [wlr] [backend/session/session.c:210] DRM device card1 changed
00:00:08.175 [DEBUG] [wlr] [backend/drm/backend.c:155] Received hotplug event for /dev/dri/card1
00:00:08.176 [INFO] [wlr] [backend/drm/drm.c:1338] Scanning DRM connectors on /dev/dri/card1
00:00:08.183 [INFO] [wlr] [backend/drm/drm.c:1419] 'DP-1' disconnected
00:00:08.183 [DEBUG] [../sway/tree/output.c:264] Disabling output 'DP-1'
00:00:08.183 [DEBUG] [../sway/desktop/layer_shell.c:347] Layer surface destroyed (panel)
00:00:08.183 [DEBUG] [../sway/desktop/layer_shell.c:195] Usable area changed, rearranging output
00:00:08.183 [DEBUG] [../sway/tree/arrange.c:263] Usable area for ws: 2560x1440@0,0
00:00:08.183 [DEBUG] [../sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:08.183 [DEBUG] [../sway/desktop/transaction.c:398] Transaction 0x564055f491d0 committing with 1 instructions
00:00:08.183 [DEBUG] [../sway/desktop/transaction.c:294] Applying transaction 0x564055f491d0
00:00:08.183 [DEBUG] [../sway/tree/workspace.c:145] Destroying workspace '1'
00:00:08.183 [DEBUG] [../sway/ipc-server.c:302] Sending workspace::empty event
00:00:08.183 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:0:HP_WMI_hotkeys')
00:00:08.195 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:0:Wireless_hotkeys')
00:00:08.203 [DEBUG] [../sway/input/seat.c:722] Applying input config to 2:7:SynPS/2_Synaptics_TouchPad
00:00:08.203 [DEBUG] [../sway/input/seat.c:722] Applying input config to 2:1:PS/2_Generic_Mouse
00:00:08.203 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '1:1:AT_Translated_Set_2_keyboard')
00:00:08.211 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '1133:2628:Logitech_Logitech_USB_Headset')
00:00:08.218 [DEBUG] [../sway/input/seat.c:722] Applying input config to 6940:6958:Corsair_Corsair_Gaming_M65_Pro_RGB_Mouse
00:00:08.218 [DEBUG] [../sway/input/seat.c:722] Applying input config to 6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard
00:00:08.218 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard')
00:00:08.226 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:3:Sleep_Button')
00:00:08.234 [DEBUG] [../sway/input/seat.c:722] Applying input config to 0:5:Lid_Switch
00:00:08.234 [DEBUG] [../sway/input/switch.c:103] Configured switch for device
00:00:08.234 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:6:Video_Bus')
00:00:08.241 [DEBUG] [../sway/input/libinput.c:208] sway_input_configure_libinput_device('type:keyboard' on '0:1:Power_Button')
00:00:08.249 [DEBUG] [../sway/tree/output.c:288] Destroying output 'DP-1'
00:00:08.249 [DEBUG] [../sway/desktop/transaction.c:398] Transaction 0x564055e7a3e0 committing with 2 instructions
00:00:08.249 [DEBUG] [../sway/desktop/transaction.c:294] Applying transaction 0x564055e7a3e0
00:00:08.249 [DEBUG] [wlr] [backend/drm/drm.c:979] connector DP-1: De-allocating CRTC 1
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1011] Reallocating CRTCs
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1022] State before reallocation:
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'LVDS-1' crtc=0 status=1 want_crtc=0
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'VGA-1' crtc=-1 status=2 want_crtc=0
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'HDMI-A-1' crtc=-1 status=2 want_crtc=0
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'DP-1' crtc=-1 status=2 want_crtc=0
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'HDMI-A-2' crtc=-1 status=2 want_crtc=0
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'HDMI-A-3' crtc=-1 status=2 want_crtc=0
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'DP-2' crtc=-1 status=2 want_crtc=0
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'DP-3' crtc=-1 status=2 want_crtc=0
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1078] State after reallocation:
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'LVDS-1' crtc=0 status=1
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'VGA-1' crtc=-1 status=2
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'HDMI-A-1' crtc=-1 status=2
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'DP-1' crtc=-1 status=2
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'HDMI-A-2' crtc=-1 status=2
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'HDMI-A-3' crtc=-1 status=2
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'DP-2' crtc=-1 status=2
00:00:08.331 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'DP-3' crtc=-1 status=2
00:00:11.937 [DEBUG] [wlr] [backend/session/session.c:181] udev event for card1 (change)
00:00:11.937 [DEBUG] [wlr] [backend/session/session.c:210] DRM device card1 changed
00:00:11.938 [DEBUG] [wlr] [backend/drm/backend.c:155] Received hotplug event for /dev/dri/card1
00:00:11.938 [INFO] [wlr] [backend/drm/drm.c:1338] Scanning DRM connectors on /dev/dri/card1
00:00:11.958 [INFO] [wlr] [backend/drm/drm.c:1414] 'DP-1' connected
00:00:11.958 [DEBUG] [wlr] [backend/drm/drm.c:1220] Current CRTC: -1
00:00:11.958 [INFO] [wlr] [backend/drm/drm.c:1230] Physical size: 600x340
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1287] Detected modes:
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 2560x1440 @ 59.951 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1920x1080 @ 74.977 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1920x1080 @ 60.000 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1920x1080 @ 60.000 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1920x1080 @ 59.940 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1920x1080 @ 50.000 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1680x1050 @ 59.954 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1600x900 @ 60.000 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x1024 @ 75.025 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x1024 @ 60.020 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x800 @ 59.810 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1152x864 @ 59.972 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x720 @ 60.000 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x720 @ 60.000 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x720 @ 59.940 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1280x720 @ 50.000 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1024x768 @ 75.029 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 1024x768 @ 60.004 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 800x600 @ 75.000 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 800x600 @ 60.317 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 720x480 @ 60.000 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 720x480 @ 59.940 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 640x480 @ 75.000 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 640x480 @ 60.000 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 640x480 @ 59.940 Hz
00:00:11.959 [INFO] [wlr] [backend/drm/drm.c:1315] 640x480 @ 59.940 Hz
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1011] Reallocating CRTCs
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1022] State before reallocation:
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'LVDS-1' crtc=0 status=1 want_crtc=0
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'VGA-1' crtc=-1 status=2 want_crtc=0
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'HDMI-A-1' crtc=-1 status=2 want_crtc=0
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'DP-1' crtc=-1 status=1 want_crtc=0
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'HDMI-A-2' crtc=-1 status=2 want_crtc=0
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'HDMI-A-3' crtc=-1 status=2 want_crtc=0
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'DP-2' crtc=-1 status=2 want_crtc=0
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'DP-3' crtc=-1 status=2 want_crtc=0
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1078] State after reallocation:
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'LVDS-1' crtc=0 status=1
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'VGA-1' crtc=-1 status=2
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'HDMI-A-1' crtc=-1 status=2
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'DP-1' crtc=-1 status=1
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'HDMI-A-2' crtc=-1 status=2
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'HDMI-A-3' crtc=-1 status=2
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'DP-2' crtc=-1 status=2
00:00:11.966 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'DP-3' crtc=-1 status=2
00:00:11.966 [INFO] [wlr] [backend/drm/drm.c:1447] connector DP-1: Requesting modeset
00:00:11.966 [DEBUG] [../sway/desktop/output.c:912] New output 0x5640561804a0: DP-1 (non-desktop: 0)
00:00:11.966 [DEBUG] [../sway/config/output.c:395] Turning on output DP-1
00:00:11.966 [DEBUG] [../sway/config/output.c:403] Set DP-1 mode to 2560x1440 (59.951000 Hz)
00:00:11.966 [DEBUG] [../sway/config/output.c:282] Assigning configured mode to DP-1
00:00:11.966 [DEBUG] [../sway/config/output.c:441] Auto-detected output transform: 0
00:00:11.966 [DEBUG] [../sway/config/output.c:356] Output DPI: 108.373333x107.576471
00:00:11.966 [DEBUG] [../sway/config/output.c:455] Auto-detected output scale: 1.000000
00:00:11.966 [DEBUG] [../sway/config/output.c:506] Committing output DP-1
00:00:11.966 [DEBUG] [wlr] [types/output/render.c:229] Attaching empty buffer to output for modeset
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1011] Reallocating CRTCs
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1022] State before reallocation:
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'LVDS-1' crtc=0 status=1 want_crtc=0
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'VGA-1' crtc=-1 status=2 want_crtc=0
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'HDMI-A-1' crtc=-1 status=2 want_crtc=0
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'DP-1' crtc=-1 status=1 want_crtc=1
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'HDMI-A-2' crtc=-1 status=2 want_crtc=0
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'HDMI-A-3' crtc=-1 status=2 want_crtc=0
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'DP-2' crtc=-1 status=2 want_crtc=0
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1036] 'DP-3' crtc=-1 status=2 want_crtc=0
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1078] State after reallocation:
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'LVDS-1' crtc=0 status=1
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'VGA-1' crtc=-1 status=2
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'HDMI-A-1' crtc=-1 status=2
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'DP-1' crtc=2 status=1
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'HDMI-A-2' crtc=-1 status=2
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'HDMI-A-3' crtc=-1 status=2
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'DP-2' crtc=-1 status=2
00:00:11.967 [DEBUG] [wlr] [backend/drm/drm.c:1085] 'DP-3' crtc=-1 status=2
00:00:11.967 [DEBUG] [wlr] [types/output/render.c:75] Choosing primary buffer format XR24 (0x34325258) for output 'DP-1'
00:00:11.967 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:11.971 [DEBUG] [wlr] [render/allocator/gbm.c:143] Allocated 2560x1440 GBM buffer with format XR24 (0x34325258), modifier X_TILED (0x0100000000000001)
00:00:11.971 [DEBUG] [wlr] [render/gles2/renderer.c:148] Created GL FBO for buffer 2560x1440
00:00:11.979 [DEBUG] [wlr] [backend/drm/atomic.c:72] connector DP-1: Atomic commit failed: Invalid argument
00:00:11.979 [DEBUG] [wlr] [backend/drm/atomic.c:76] (Atomic commit flags: ATOMIC_TEST_ONLY | ATOMIC_ALLOW_MODESET)
00:00:11.983 [DEBUG] [wlr] [types/output/render.c:248] Output modeset test failed, retrying without modifiers
00:00:11.983 [DEBUG] [wlr] [types/output/render.c:75] Choosing primary buffer format XR24 (0x34325258) for output 'DP-1'
00:00:11.983 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:11.987 [DEBUG] [wlr] [render/allocator/gbm.c:143] Allocated 2560x1440 GBM buffer with format XR24 (0x34325258), modifier INVALID (0x00FFFFFFFFFFFFFF)
00:00:11.987 [DEBUG] [wlr] [render/gles2/renderer.c:148] Created GL FBO for buffer 2560x1440
00:00:11.996 [DEBUG] [wlr] [backend/drm/atomic.c:72] connector DP-1: Atomic commit failed: Invalid argument
00:00:11.996 [DEBUG] [wlr] [backend/drm/atomic.c:76] (Atomic commit flags: ATOMIC_TEST_ONLY | ATOMIC_ALLOW_MODESET)
00:00:11.996 [ERROR] [../sway/config/output.c:511] Failed to commit output DP-1
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning: Unsupported maximum keycode 708, clipping.
> X11 cannot support keycodes above 255.
Errors from xkbcomp are not fatal to the X server
00:00:17.518 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:17.518 [DEBUG] [wlr] [xwayland/xwm.c:1551] unhandled X11 event: 34
00:00:17.518 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:17.518 [DEBUG] [wlr] [xwayland/xwm.c:1551] unhandled X11 event: 34
00:00:18.097 [DEBUG] [wlr] [backend/libinput/events.c:140] Removing Corsair Corsair STRAFE Gaming Keyboard [6940:6980]
00:00:18.097 [DEBUG] [../sway/input/input-manager.c:202] removing device: '6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard'
00:00:18.097 [DEBUG] [../sway/input/seat.c:983] removing device 6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard from seat seat0
00:00:18.097 [DEBUG] [../sway/input/keyboard.c:815] Removing keyboard 6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard from group 0x564055e2c1e0
00:00:18.097 [DEBUG] [../sway/input/input-manager.c:202] removing device: '6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard'
00:00:18.097 [DEBUG] [../sway/input/seat.c:983] removing device 6940:6980:Corsair_Corsair_STRAFE_Gaming_Keyboard from seat seat0
00:00:18.097 [DEBUG] [wlr] [backend/libinput/events.c:140] Removing HP WMI hotkeys [0:0]
00:00:18.097 [DEBUG] [../sway/input/input-manager.c:202] removing device: '0:0:HP_WMI_hotkeys'
00:00:18.097 [DEBUG] [../sway/input/seat.c:983] removing device 0:0:HP_WMI_hotkeys from seat seat0
00:00:18.097 [DEBUG] [../sway/input/keyboard.c:815] Removing keyboard 0:0:HP_WMI_hotkeys from group 0x564055e2c1e0
00:00:18.098 [DEBUG] [wlr] [backend/libinput/events.c:140] Removing Logitech Logitech USB Headset [1133:2628]
00:00:18.098 [DEBUG] [../sway/input/input-manager.c:202] removing device: '1133:2628:Logitech_Logitech_USB_Headset'
00:00:18.098 [DEBUG] [../sway/input/seat.c:983] removing device 1133:2628:Logitech_Logitech_USB_Headset from seat seat0
00:00:18.098 [DEBUG] [../sway/input/keyboard.c:815] Removing keyboard 1133:2628:Logitech_Logitech_USB_Headset from group 0x564055e2c1e0
00:00:18.098 [DEBUG] [wlr] [backend/libinput/events.c:140] Removing Sleep Button [0:3]
00:00:18.098 [DEBUG] [../sway/input/input-manager.c:202] removing device: '0:3:Sleep_Button'
00:00:18.098 [DEBUG] [../sway/input/seat.c:983] removing device 0:3:Sleep_Button from seat seat0
00:00:18.098 [DEBUG] [../sway/input/keyboard.c:815] Removing keyboard 0:3:Sleep_Button from group 0x564055e2c1e0
00:00:18.099 [INFO] [wlr] [libseat] [libseat/backend/logind.c:382] Disabling seat
00:00:18.208 [INFO] [wlr] [backend/drm/backend.c:141] DRM fd paused
00:00:27.503 [DEBUG] [../sway/ipc-server.c:386] Sending shutdown::exit event
00:00:27.503 [INFO] [../sway/main.c:418] Shutting down sway
(EE)00:00:27.504 [DEBUG] [../sway/input/input-manager.c:202] removing device: '0:0:Wireless_hotkeys'Terminated
00:00:27.504 [DEBUG] [../sway/input/seat.c:983] removing device 0:0:Wireless_hotkeys from seat seat0
00:00:27.504 [DEBUG] [../sway/input/keyboard.c:815] Removing keyboard 0:0:Wireless_hotkeys from group 0x564055e2c1e0
failed to read Wayland events: Broken pipe
00:00:27.504 [DEBUG] [../sway/input/input-manager.c:202] removing device: '2:7:SynPS/2_Synaptics_TouchPad'
00:00:27.504 [DEBUG] [../sway/input/seat.c:983] removing device 2:7:SynPS/2_Synaptics_TouchPad from seat seat0
00:00:27.504 [DEBUG] [../sway/input/input-manager.c:202] removing device: '2:1:PS/2_Generic_Mouse'
00:00:27.504 [DEBUG] [../sway/input/seat.c:983] removing device 2:1:PS/2_Generic_Mouse from seat seat0
00:00:27.504 [DEBUG] [../sway/input/input-manager.c:202] removing device: '1:1:AT_Translated_Set_2_keyboard'
00:00:27.504 [DEBUG] [../sway/input/seat.c:983] removing device 1:1:AT_Translated_Set_2_keyboard from seat seat0
00:00:27.504 [DEBUG] [../sway/input/keyboard.c:815] Removing keyboard 1:1:AT_Translated_Set_2_keyboard from group 0x564055e2c1e0
00:00:27.505 [DEBUG] [../sway/input/input-manager.c:202] removing device: '6940:6958:Corsair_Corsair_Gaming_M65_Pro_RGB_Mouse'
00:00:27.505 [DEBUG] [../sway/input/seat.c:983] removing device 6940:6958:Corsair_Corsair_Gaming_M65_Pro_RGB_Mouse from seat seat0
00:00:27.505 [DEBUG] [../sway/input/input-manager.c:202] removing device: '0:5:Lid_Switch'
00:00:27.505 [DEBUG] [../sway/input/seat.c:983] removing device 0:5:Lid_Switch from seat seat0
00:00:27.505 [DEBUG] [../sway/input/input-manager.c:202] removing device: '0:6:Video_Bus'
00:00:27.505 [DEBUG] [../sway/input/seat.c:983] removing device 0:6:Video_Bus from seat seat0
00:00:27.505 [DEBUG] [../sway/input/keyboard.c:815] Removing keyboard 0:6:Video_Bus from group 0x564055e2c1e0
00:00:27.505 [DEBUG] [../sway/input/input-manager.c:202] removing device: '0:1:Power_Button'
00:00:27.505 [DEBUG] [../sway/input/seat.c:983] removing device 0:1:Power_Button from seat seat0
00:00:27.505 [DEBUG] [../sway/input/keyboard.c:815] Removing keyboard 0:1:Power_Button from group 0x564055e2c1e0
00:00:27.505 [DEBUG] [../sway/input/keyboard.c:821] Destroying empty keyboard group 0x564055e2c1e0
00:00:27.506 [DEBUG] [../sway/tree/output.c:288] Destroying output 'LVDS-1'
00:00:27.506 [DEBUG] [../sway/desktop/transaction.c:398] Transaction 0x564055e0d850 committing with 1 instructions
00:00:27.506 [DEBUG] [../sway/desktop/transaction.c:294] Applying transaction 0x564055e0d850
00:00:27.506 [DEBUG] [wlr] [backend/drm/drm.c:979] connector LVDS-1: De-allocating CRTC 0
00:00:27.507 [ERROR] [wlr] [backend/drm/atomic.c:72] connector LVDS-1: Atomic commit failed: Permission denied
00:00:27.507 [DEBUG] [wlr] [backend/drm/atomic.c:76] (Atomic commit flags: ATOMIC_ALLOW_MODESET)
00:00:27.507 [ERROR] [wlr] [backend/drm/drm.c:991] connector LVDS-1: Failed to disable CRTC 45
00:00:27.507 [DEBUG] [../sway/tree/output.c:288] Destroying output 'DP-1'
00:00:27.507 [DEBUG] [../sway/desktop/transaction.c:398] Transaction 0x564055da2870 committing with 1 instructions
00:00:27.507 [DEBUG] [../sway/desktop/transaction.c:294] Applying transaction 0x564055da2870
00:00:27.507 [DEBUG] [wlr] [backend/drm/drm.c:979] connector DP-1: De-allocating CRTC 2
00:00:27.507 [ERROR] [wlr] [backend/drm/atomic.c:72] connector DP-1: Atomic commit failed: Permission denied
00:00:27.507 [DEBUG] [wlr] [backend/drm/atomic.c:76] (Atomic commit flags: ATOMIC_ALLOW_MODESET)
00:00:27.507 [ERROR] [wlr] [backend/drm/drm.c:991] connector DP-1: Failed to disable CRTC 75
00:00:27.507 [DEBUG] [wlr] [types/wlr_drm_lease_v1.c:103] Destroying wlr_drm_lease_device_v1 for /dev/dri/card1
00:00:27.512 [DEBUG] [wlr] [types/wlr_drm_lease_v1.c:685] Destroying wlr_drm_lease_v1_manager
00:00:27.512 [INFO] [../sway/ipc-server.c:558] IPC Client 73 disconnected
00:00:27.512 [INFO] [../sway/ipc-server.c:558] IPC Client 71 disconnected
00:00:27.512 [INFO] [../sway/ipc-server.c:558] IPC Client 69 disconnected
00:00:27.512 [INFO] [../sway/ipc-server.c:558] IPC Client 67 disconnected
00:00:27.512 [INFO] [../sway/ipc-server.c:558] IPC Client 64 disconnected
ERROR:assign-cgroups:Sway IPC connection error:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment