You are not logged in.

#26 2020-05-26 13:07:44

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: Switching the primary GPU.

The stuff you had there before does explicitly this. Tell the X11 server to run on the radeon chip and ignore the intel one.
Of course you'll still have to adjust drivers and PCI IDs to your present setup.

Offline

#27 2020-05-26 14:13:17

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

So I should do the same setup that I did on /etc/X11/xorg.conf.d/10-gpu.conf, yeah?

Offline

#28 2020-05-26 14:19:25

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: Switching the primary GPU.

The location doesn't matter, but the Xorg log does not suggest that your former 10-gpu.conf is still in place.

Offline

#29 2020-05-26 14:23:37

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

So, I've made this:

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "TURKS @ pci:0000:01:00.0"
    Inactive "Intel"
EndSection

Section "Device"
    Identifier  "TURKS @ pci:0000:01:00.0"
    Driver      "TURKS @ pci:0000:01:00.0"
    BusID       "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "TURKS @ pci:0000:01:00.0"
    Device "TURKS @ pci:0000:01:00.0"
EndSection

Section "Device"
    Identifier  "Intel"
    Driver      "Intel"
    BusID       "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "Intel"
    Device "Intel"
EndSection

and I'm gonna use that on /etc/X11/xorg.conf. Maybe that'll work.

Offline

#30 2020-05-26 14:37:31

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: Switching the primary GPU.

This line is nonsense

    Driver      "TURKS @ pci:0000:01:00.0"

The driver is "radeon".

As for

    Driver      "Intel"

I'm not sure whether this is handled case-insenstive, but's it's actually lowercase "intel" here.

Also don't use "TURKS @ pci:0000:01:00.0" but just "TURKS" in the other places. The actual label doesn't matter and adding blanks and special chars just adds complexity to your problem.

Offline

#31 2020-05-26 14:40:07

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

Replaced it with this:

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "radeon"
    Inactive "intel"
EndSection

Section "Device"
    Identifier  "TURKS"
    Driver      "radeon"
    BusID       "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "TURKS"
    Device "radeon"
EndSection

Section "Device"
    Identifier  "intel"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection

Offline

#32 2020-05-26 14:42:25

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: Switching the primary GPU.

No.
When you label a section with the identifier "TURKS" you cannot refer to it as Screen or Device "radeon".
The Identifier is free, but must be consistent. Only the "Driver" has to be "radeon".

Offline

#33 2020-05-26 14:46:45

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

So I'll just put identifier as "radeon", then.

Offline

#34 2020-05-27 06:13:25

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

So, instead of xorg.conf i've put it into 10-gpu.conf just like previous setup but with every line right. (radeon and intel)
I still doubt that setting up output source using xrandr will work.

Offline

#35 2020-05-27 06:38:41

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

I've set up 10-gpu.conf and when I run it, it just blocks my Arch from booting. Luckily I can resolve that by removing everything in 10-gpu.

Offline

#36 2020-05-27 06:43:36

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: Switching the primary GPU.

it just blocks my Arch from booting

No. It might prevent you from starting the graphical.target, but the system will most certainly still boot.

Restore the file, post it here, boot the multi-user.target  (link in my signature) try to start Xorg and post the log of the failed attempt. You can use the tip in the first link in my signature.

Offline

#37 2020-05-27 06:47:34

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,425

Re: Switching the primary GPU.

That reads like the result we want, you now have to run the correct provideroutputsource xrandr command while/after starting up xorg, which is best done in your .xinitrc or in the relevant startup files of your DM. If it's SDDM see https://wiki.archlinux.org/index.php/NV … timus#SDDM adjust relevantly.

Offline

#38 2020-05-27 08:43:26

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

But if I can't directly execute it, are you sure launching provideroutputsource using SDDM will work?

Offline

#39 2020-05-27 09:01:31

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,425

Re: Switching the primary GPU.

As suggested by seth, try to do it manually first/with an .xinitrc and post the relevant logs.

It will work in so far that that script will run in the context of an active xorg server and thus have the relevant environment set up to manipulate the xorg screen.

Without seeing the logs on what is happening, just from a logical standpoint this is what you want: You've "disabled" the intel screen and thus the outputs connected to the intel card are disabled (so, your situation right now, and what we expect to happen). Now you need to run that command so that xorg uses radeon to render through the intel card onto your screen

Last edited by V1del (2020-05-27 09:04:06)

Offline

#40 2020-05-27 09:22:30

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

Okay, I've set up multi-user.target. How could I start up Xorg? By rebooting?
I'm sorry that I'm dumb..
Edit: Nevermind, I forgot it's startx.

Last edited by MaxSpec (2020-05-27 09:30:51)

Offline

#41 2020-05-27 13:27:51

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

Xoutput:

X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
Build Operating System: Linux Arch Linux
Current Operating System: Linux DanSpec 5.6.14-arch1-1 #1 SMP PREEMPT Wed, 20 May 2020 20:43:19 +0000 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b155a021-be7a-4ff2-aa70-37184f079812 rw loglevel=3 quiet
Build Date: 05 May 2020  05:08:17AM
 
Current version of pixman: 0.40.0
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/home/dan/.local/share/xorg/Xorg.0.log", Time: Wed May 27 20:37:31 2020
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/etc/X11/xorg.conf.d"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
(II) [KMS] Kernel modesetting enabled.
(EE) 
Fatal server error:
(EE) no screens found(EE) 
(EE) 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
(EE) Please also check the log file at "/home/dan/.local/share/xorg/Xorg.0.log" for additional information.
(EE) 
(EE) Server terminated with error (1). Closing log file.
xinit: giving up
xinit: unable to connect to X server: Connection refused
xinit: server error

Offline

#42 2020-05-27 13:31:43

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: Switching the primary GPU.

/home/dan/.local/share/xorg/Xorg.0.log wold be more interesting…
Also post the 10-gpu.conf and /etc/X11/xorg.conf you currently use.

Offline

#43 2020-05-27 13:32:57

Lone_Wolf
Member
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,868

Re: Switching the primary GPU.

seth was faster

Last edited by Lone_Wolf (2020-05-27 13:33:56)


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#44 2020-05-27 14:36:52

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

Xorg.0.log:

[   391.466] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[   391.467] 
X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
[   391.467] Build Operating System: Linux Arch Linux
[   391.467] Current Operating System: Linux DanSpec 5.6.14-arch1-1 #1 SMP PREEMPT Wed, 20 May 2020 20:43:19 +0000 x86_64
[   391.467] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b155a021-be7a-4ff2-aa70-37184f079812 rw loglevel=3 quiet
[   391.467] Build Date: 05 May 2020  05:08:17AM
[   391.467]  
[   391.467] Current version of pixman: 0.40.0
[   391.467] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   391.467] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   391.467] (==) Log file: "/home/dan/.local/share/xorg/Xorg.0.log", Time: Wed May 27 20:37:31 2020
[   391.467] (==) Using config file: "/etc/X11/xorg.conf"
[   391.467] (==) Using config directory: "/etc/X11/xorg.conf.d"
[   391.467] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   391.467] (==) ServerLayout "layout"
[   391.467] (**) |-->Screen "radeon" (0)
[   391.467] (**) |   |-->Monitor "<default monitor>"
[   391.467] (**) |   |-->Device "radeon"
[   391.467] (**) |   |-->GPUDevice "intel"
[   391.467] (==) No monitor specified for screen "radeon".
	Using a default monitor configuration.
[   391.467] (**) |-->Inactive Device "intel"
[   391.467] (==) Automatically adding devices
[   391.467] (==) Automatically enabling devices
[   391.467] (==) Automatically adding GPU devices
[   391.467] (==) Automatically binding GPU devices
[   391.467] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   391.467] (WW) The directory "/usr/share/fonts/misc" does not exist.
[   391.467] 	Entry deleted from font path.
[   391.467] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[   391.467] 	Entry deleted from font path.
[   391.467] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[   391.467] 	Entry deleted from font path.
[   391.467] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[   391.467] 	Entry deleted from font path.
[   391.467] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[   391.467] 	Entry deleted from font path.
[   391.467] (==) FontPath set to:
	/usr/share/fonts/TTF
[   391.467] (==) ModulePath set to "/usr/lib/xorg/modules"
[   391.467] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   391.467] (II) Module ABI versions:
[   391.467] 	X.Org ANSI C Emulation: 0.4
[   391.467] 	X.Org Video Driver: 24.1
[   391.467] 	X.Org XInput driver : 24.1
[   391.467] 	X.Org Server Extension : 10.0
[   391.469] (++) using VT number 1

[   391.474] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[   391.475] (II) xfree86: Adding drm device (/dev/dri/card1)
[   391.477] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 10 paused 0
[   391.477] (II) xfree86: Adding drm device (/dev/dri/card0)
[   391.478] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[   391.482] (--) PCI:*(0@0:2:0) 8086:0116:103c:1657 rev 9, Mem @ 0xc0000000/4194304, 0xb0000000/268435456, I/O @ 0x00006000/64, BIOS @ 0x????????/131072
[   391.482] (--) PCI: (1@0:0:0) 1002:6740:103c:1657 rev 0, Mem @ 0xa0000000/268435456, 0xc6500000/131072, I/O @ 0x00005000/256, BIOS @ 0x????????/131072
[   391.482] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[   391.482] (II) LoadModule: "glx"
[   391.482] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   391.484] (II) Module glx: vendor="X.Org Foundation"
[   391.484] 	compiled for 1.20.8, module version = 1.0.0
[   391.484] 	ABI class: X.Org Server Extension, version 10.0
[   391.484] (II) LoadModule: "radeon"
[   391.484] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
[   391.485] (II) Module radeon: vendor="X.Org Foundation"
[   391.485] 	compiled for 1.20.8, module version = 19.1.0
[   391.485] 	Module class: X.Org Video Driver
[   391.485] 	ABI class: X.Org Video Driver, version 24.1
[   391.485] (II) LoadModule: "intel"
[   391.485] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[   391.485] (II) Module intel: vendor="X.Org Foundation"
[   391.485] 	compiled for 1.20.8, module version = 2.99.917
[   391.486] 	Module class: X.Org Video Driver
[   391.486] 	ABI class: X.Org Video Driver, version 24.1
[   391.486] (II) RADEON: Driver for ATI/AMD Radeon chipsets:
	ATI Radeon Mobility X600 (M24), ATI FireMV 2400,
	ATI Radeon Mobility X300 (M24), ATI FireGL M24 GL,
	ATI Radeon X600 (RV380), ATI FireGL V3200 (RV380),
	ATI Radeon IGP320 (A3), ATI Radeon IGP330/340/350 (A4),
	ATI Radeon 9500, ATI Radeon 9600TX, ATI FireGL Z1, ATI Radeon 9800SE,
	ATI Radeon 9800, ATI FireGL X2, ATI Radeon 9600, ATI Radeon 9600SE,
	ATI Radeon 9600XT, ATI FireGL T2, ATI Radeon 9650, ATI FireGL RV360,
	ATI Radeon 7000 IGP (A4+), ATI Radeon 8500 AIW,
	ATI Radeon IGP320M (U1), ATI Radeon IGP330M/340M/350M (U2),
	ATI Radeon Mobility 7000 IGP, ATI Radeon 9000/PRO, ATI Radeon 9000,
	ATI Radeon X800 (R420), ATI Radeon X800PRO (R420),
	ATI Radeon X800SE (R420), ATI FireGL X3 (R420),
	ATI Radeon Mobility 9800 (M18), ATI Radeon X800 SE (R420),
	ATI Radeon X800XT (R420), ATI Radeon X800 VE (R420),
	ATI Radeon X850 (R480), ATI Radeon X850 XT (R480),
	ATI Radeon X850 SE (R480), ATI Radeon X850 PRO (R480),
	ATI Radeon X850 XT PE (R480), ATI Radeon Mobility M7,
	ATI Mobility FireGL 7800 M7, ATI Radeon Mobility M6,
	ATI FireGL Mobility 9000 (M9), ATI Radeon Mobility 9000 (M9),
	ATI Radeon 9700 Pro, ATI Radeon 9700/9500Pro, ATI FireGL X1,
	ATI Radeon 9800PRO, ATI Radeon 9800XT,
	ATI Radeon Mobility 9600/9700 (M10/M11),
	ATI Radeon Mobility 9600 (M10), ATI Radeon Mobility 9600 (M11),
	ATI FireGL Mobility T2 (M10), ATI FireGL Mobility T2e (M11),
	ATI Radeon, ATI FireGL 8700/8800, ATI Radeon 8500, ATI Radeon 9100,
	ATI Radeon 7500, ATI Radeon VE/7000, ATI ES1000,
	ATI Radeon Mobility X300 (M22), ATI Radeon Mobility X600 SE (M24C),
	ATI FireGL M22 GL, ATI Radeon X800 (R423), ATI Radeon X800PRO (R423),
	ATI Radeon X800LE (R423), ATI Radeon X800SE (R423),
	ATI Radeon X800 XTP (R430), ATI Radeon X800 XL (R430),
	ATI Radeon X800 SE (R430), ATI Radeon X800 (R430),
	ATI FireGL V7100 (R423), ATI FireGL V5100 (R423),
	ATI FireGL unknown (R423), ATI Mobility FireGL V5000 (M26),
	ATI Mobility Radeon X700 XL (M26), ATI Mobility Radeon X700 (M26),
	ATI Radeon X550XTX, ATI Radeon 9100 IGP (A5),
	ATI Radeon Mobility 9100 IGP (U3), ATI Radeon XPRESS 200,
	ATI Radeon XPRESS 200M, ATI Radeon 9250, ATI Radeon 9200,
	ATI Radeon 9200SE, ATI FireMV 2200, ATI Radeon X300 (RV370),
	ATI Radeon X600 (RV370), ATI Radeon X550 (RV370),
	ATI FireGL V3100 (RV370), ATI FireMV 2200 PCIE (RV370),
	ATI Radeon Mobility 9200 (M9+), ATI Mobility Radeon X800 XT (M28),
	ATI Mobility FireGL V5100 (M28), ATI Mobility Radeon X800 (M28),
	ATI Radeon X850, ATI unknown Radeon / FireGL (R480),
	ATI Radeon X800XT (R423), ATI FireGL V5000 (RV410),
	ATI Radeon X700 XT (RV410), ATI Radeon X700 PRO (RV410),
	ATI Radeon X700 SE (RV410), ATI Radeon X700 (RV410),
	ATI Radeon X1800, ATI Mobility Radeon X1800 XT,
	ATI Mobility Radeon X1800, ATI Mobility FireGL V7200,
	ATI FireGL V7200, ATI FireGL V5300, ATI Mobility FireGL V7100,
	ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
	ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
	ATI Mobility Radeon X1400, ATI Radeon X1550 64-bit,
	ATI Mobility Radeon X1300, ATI Radeon X1300, ATI FireGL V3300,
	ATI FireGL V3350, ATI Mobility Radeon X1450,
	ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
	ATI FireMV 2250, ATI Radeon X1650, ATI Mobility FireGL V5200,
	ATI Mobility Radeon X1600, ATI Radeon X1300 XT/X1600 Pro,
	ATI FireGL V3400, ATI Mobility FireGL V5250,
	ATI Mobility Radeon X1700, ATI Mobility Radeon X1700 XT,
	ATI FireGL V5200, ATI Radeon X2300HD, ATI Mobility Radeon HD 2300,
	ATI Radeon X1950, ATI Radeon X1900, ATI AMD Stream Processor,
	ATI RV560, ATI Mobility Radeon X1900, ATI Radeon X1950 GT, ATI RV570,
	ATI FireGL V7400, ATI Radeon 9100 PRO IGP,
	ATI Radeon Mobility 9200 IGP, ATI Radeon X1200, ATI RS740,
	ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro,
	ATI Radeon HD 2900 GT, ATI FireGL V8650, ATI FireGL V8600,
	ATI FireGL V7600, ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
	ATI Radeon HD 4850 x2, ATI FirePro V8750 (FireGL),
	ATI FirePro V7760 (FireGL), ATI Mobility RADEON HD 4850,
	ATI Mobility RADEON HD 4850 X2, ATI FirePro RV770,
	AMD FireStream 9270, AMD FireStream 9250, ATI FirePro V8700 (FireGL),
	ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
	ATI FirePro M7750, ATI M98, ATI Mobility Radeon HD 4650,
	ATI Radeon RV730 (AGP), ATI Mobility Radeon HD 4670,
	ATI FirePro M5750, ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
	ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
	ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
	ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
	ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
	ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI RV610,
	ATI Radeon HD 2400 XT, ATI Radeon HD 2400 Pro,
	ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, ATI Radeon HD 2350,
	ATI Mobility Radeon HD 2400 XT, ATI Mobility Radeon HD 2400,
	ATI RADEON E2400, ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
	ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
	ATI Mobility Radeon HD 3850 X2, ATI Mobility Radeon HD 3870,
	ATI Mobility Radeon HD 3870 X2, ATI Radeon HD3870 X2,
	ATI FireGL V7700, ATI Radeon HD3690, AMD Firestream 9170,
	ATI Radeon HD 4550, ATI Radeon RV710, ATI Radeon HD 4350,
	ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series,
	ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
	ATI FireGL V3600, ATI Radeon HD 2600 LE,
	ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
	ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
	ATI Radeon HD 3450, ATI Radeon HD 3430, ATI FirePro V3700,
	ATI FireMV 2450, ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP,
	ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT,
	ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
	ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3300 Graphics, ATI Radeon 3000 Graphics, SUMO, SUMO2,
	ATI Radeon HD 4200, ATI Radeon 4100, ATI Mobility Radeon HD 4200,
	ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
	AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
	AMD Radeon HD 6300 Series Graphics,
	AMD Radeon HD 6200 Series Graphics, PALM, CYPRESS,
	ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
	AMD Firestream 9350, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
	ATI Radeon HD 5670, ATI Radeon HD 5570, ATI Radeon HD 5500 Series,
	REDWOOD, ATI Mobility Radeon Graphics, CEDAR, ATI FirePro 2270,
	ATI Radeon HD 5450, CAYMAN, AMD Radeon HD 6900 Series,
	AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
	AMD Radeon HD 6800 Series, AMD Radeon HD 6700 Series, TURKS, CAICOS,
	ARUBA, TAHITI, PITCAIRN, VERDE, OLAND, HAINAN, BONAIRE, KABINI,
	MULLINS, KAVERI, HAWAII
[   391.487] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
	i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
	915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
	Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
	GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[   391.488] (II) intel: Driver for Intel(R) HD Graphics
[   391.488] (II) intel: Driver for Intel(R) Iris(TM) Graphics
[   391.488] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics
[   391.488] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
[   391.488] (II) [KMS] Kernel modesetting enabled.
[   391.488] (II) intel(G0): Using Kernel Mode Setting driver: i915, version 1.6.0 20200114
[   391.488] (II) intel(G0): SNA compiled from 2.99.917-908-g7181c5a4
[   391.503] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[   391.503] (II) RADEON(0): Creating default Display subsection in Screen section
	"radeon" for depth/fbbpp 24/32
[   391.503] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
[   391.503] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[   391.503] (==) RADEON(0): Default visual is TrueColor
[   391.503] (==) RADEON(0): RGB weight 888
[   391.503] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
[   391.503] (--) RADEON(0): Chipset: "TURKS" (ChipID = 0x6740)
[   391.503] (II) Loading sub module "fb"
[   391.503] (II) LoadModule: "fb"
[   391.503] (II) Loading /usr/lib/xorg/modules/libfb.so
[   391.504] (II) Module fb: vendor="X.Org Foundation"
[   391.504] 	compiled for 1.20.8, module version = 1.0.0
[   391.504] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   391.504] (II) Loading sub module "dri2"
[   391.504] (II) LoadModule: "dri2"
[   391.504] (II) Module "dri2" already built-in
[   391.549] (II) Loading sub module "glamoregl"
[   391.549] (II) LoadModule: "glamoregl"
[   391.549] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[   391.554] (II) Module glamoregl: vendor="X.Org Foundation"
[   391.554] 	compiled for 1.20.8, module version = 1.0.1
[   391.554] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   391.563] (II) RADEON(0): glamor X acceleration enabled on AMD TURKS (DRM 2.50.0 / 5.6.14-arch1-1, LLVM 10.0.0)
[   391.563] (II) RADEON(0): glamor detected, initialising EGL layer.
[   391.563] (II) RADEON(0): KMS Color Tiling: enabled
[   391.563] (II) RADEON(0): KMS Color Tiling 2D: enabled
[   391.563] (==) RADEON(0): TearFree property default: auto
[   391.563] (II) RADEON(0): KMS Pageflipping: enabled
[   391.563] (WW) RADEON(0): No outputs definitely connected, trying again...
[   391.563] (WW) RADEON(0): Unable to find connected outputs - setting 1024x768 initial framebuffer
[   391.563] (II) RADEON(0): mem size init: gart size :3fdde000 vram size: s:40000000 visible:fc9d000
[   391.563] (==) RADEON(0): DPI set to (96, 96)
[   391.563] (==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0)
[   391.563] (II) Loading sub module "ramdac"
[   391.563] (II) LoadModule: "ramdac"
[   391.563] (II) Module "ramdac" already built-in
[   391.563] (EE) RADEON(0): No modes.
[   391.565] (II) UnloadModule: "radeon"
[   391.565] (II) UnloadSubModule: "glamoregl"
[   391.565] (II) Unloading glamoregl
[   391.565] (II) UnloadSubModule: "fb"
[   391.565] (II) Unloading fb
[   391.565] (--) intel(G0): Integrated Graphics Chipset: Intel(R) HD Graphics 3000
[   391.565] (--) intel(G0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx; using a maximum of 4 threads
[   391.565] (==) intel(G0): Depth 24, (--) framebuffer bpp 32
[   391.565] (==) intel(G0): RGB weight 888
[   391.565] (==) intel(G0): Default visual is TrueColor
[   391.565] (II) intel(G0): Output LVDS1 has no monitor section
[   391.566] (**) intel(G0): Found backlight control interface intel_backlight (type 'raw') for output LVDS1
[   391.566] (II) intel(G0): Enabled output LVDS1
[   391.566] (II) intel(G0): Output VGA1 has no monitor section
[   391.566] (II) intel(G0): Enabled output VGA1
[   391.566] (II) intel(G0): Output HDMI1 has no monitor section
[   391.566] (II) intel(G0): Enabled output HDMI1
[   391.566] (II) intel(G0): Output DP1 has no monitor section
[   391.567] (II) intel(G0): Enabled output DP1
[   391.567] (--) intel(G0): Using a maximum size of 256x256 for hardware cursors
[   391.567] (II) intel(G0): Output VIRTUAL1 has no monitor section
[   391.567] (II) intel(G0): Enabled output VIRTUAL1
[   391.567] (II) intel(G0): EDID for output LVDS1
[   391.567] (II) intel(G0): Manufacturer: AUO  Model: 22ec  Serial#: 0
[   391.567] (II) intel(G0): Year: 2009  Week: 1
[   391.567] (II) intel(G0): EDID Version: 1.3
[   391.567] (II) intel(G0): Digital Display Input
[   391.567] (II) intel(G0): Max Image Size [cm]: horiz.: 34  vert.: 19
[   391.567] (II) intel(G0): Gamma: 2.20
[   391.567] (II) intel(G0): No DPMS capabilities specified
[   391.567] (II) intel(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   391.567] (II) intel(G0): First detailed timing is preferred mode
[   391.567] (II) intel(G0): redX: 0.620 redY: 0.340   greenX: 0.330 greenY: 0.570
[   391.567] (II) intel(G0): blueX: 0.150 blueY: 0.060   whiteX: 0.313 whiteY: 0.329
[   391.567] (II) intel(G0): Manufacturer's mask: 0
[   391.567] (II) intel(G0): Supported detailed timing:
[   391.567] (II) intel(G0): clock: 69.3 MHz   Image Size:  344 x 193 mm
[   391.567] (II) intel(G0): h_active: 1366  h_sync: 1398  h_sync_end 1422 h_blank_end 1432 h_border: 0
[   391.567] (II) intel(G0): v_active: 768  v_sync: 771  v_sync_end 775 v_blanking: 806 v_border: 0
[   391.567] (II) intel(G0): Unknown vendor-specific block f
[   391.567] (II) intel(G0):  AUO
[   391.567] (II) intel(G0):  B156XW02 V2
[   391.567] (II) intel(G0): EDID (in hex):
[   391.567] (II) intel(G0): 	00ffffffffffff0006afec2200000000
[   391.567] (II) intel(G0): 	01130103802213780ac8959e57549226
[   391.567] (II) intel(G0): 	0f505400000001010101010101010101
[   391.567] (II) intel(G0): 	010101010101121b5642500026302018
[   391.567] (II) intel(G0): 	340058c1100000180000000f00000000
[   391.567] (II) intel(G0): 	00000000000000000020000000fe0041
[   391.567] (II) intel(G0): 	554f0a202020202020202020000000fe
[   391.567] (II) intel(G0): 	004231353658573032205632200a00c0
[   391.567] (II) intel(G0): Not using default mode "320x240" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "400x300" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "400x300" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "512x384" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "640x480" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "640x512" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "700x525" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "320x180" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "320x180" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "360x202" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "360x202" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "432x243" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "432x243" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "480x270" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "480x270" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "512x288" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "512x288" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "640x360" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "640x360" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "684x384" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "684x384" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "800x450" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "800x450" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "960x540" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "640x400" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "640x400" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "700x450" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "700x450" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "840x525" (doublescan mode not supported)
[   391.567] (II) intel(G0): Printing probed modes for output LVDS1
[   391.567] (II) intel(G0): Modeline "1366x768"x60.0   69.30  1366 1398 1422 1432  768 771 775 806 -hsync -vsync (48.4 kHz eP)
[   391.567] (II) intel(G0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[   391.567] (II) intel(G0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[   391.567] (II) intel(G0): Modeline "1024x576"x60.0   46.99  1024 1064 1168 1312  576 577 580 597 -hsync +vsync (35.8 kHz)
[   391.567] (II) intel(G0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[   391.567] (II) intel(G0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[   391.567] (II) intel(G0): Modeline "960x540"x60.0   40.78  960 992 1088 1216  540 541 544 559 -hsync +vsync (33.5 kHz)
[   391.567] (II) intel(G0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[   391.567] (II) intel(G0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[   391.567] (II) intel(G0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[   391.567] (II) intel(G0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[   391.567] (II) intel(G0): Modeline "864x486"x60.0   32.90  864 888 976 1088  486 487 490 504 -hsync +vsync (30.2 kHz)
[   391.567] (II) intel(G0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[   391.568] (II) intel(G0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[   391.568] (II) intel(G0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[   391.568] (II) intel(G0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[   391.568] (II) intel(G0): Modeline "720x405"x60.0   22.18  720 728 800 880  405 406 409 420 -hsync +vsync (25.2 kHz)
[   391.568] (II) intel(G0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[   391.568] (II) intel(G0): Modeline "680x384"x60.0   19.68  680 688 752 824  384 385 388 398 -hsync +vsync (23.9 kHz)
[   391.568] (II) intel(G0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[   391.568] (II) intel(G0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[   391.568] (II) intel(G0): Modeline "640x360"x60.0   17.19  640 640 704 768  360 361 364 373 -hsync +vsync (22.4 kHz)
[   391.568] (II) intel(G0): EDID for output DP1
[   391.569] (II) intel(G0): EDID for output HDMI1
[   391.570] (II) intel(G0): EDID for output VGA1
[   391.570] (II) intel(G0): EDID for output VIRTUAL1
[   391.570] (==) intel(G0): TearFree disabled
[   391.570] (==) intel(G0): Using gamma correction (1.0, 1.0, 1.0)
[   391.570] (==) intel(G0): DPI set to (96, 96)
[   391.570] (II) Loading sub module "dri3"
[   391.570] (II) LoadModule: "dri3"
[   391.570] (II) Module "dri3" already built-in
[   391.570] (II) Loading sub module "dri2"
[   391.570] (II) LoadModule: "dri2"
[   391.570] (II) Module "dri2" already built-in
[   391.570] (II) Loading sub module "present"
[   391.570] (II) LoadModule: "present"
[   391.570] (II) Module "present" already built-in
[   391.570] (EE) Screen(s) found, but none have a usable configuration.
[   391.570] (EE) 
Fatal server error:
[   391.570] (EE) no screens found(EE) 
[   391.570] (EE) 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
[   391.570] (EE) Please also check the log file at "/home/dan/.local/share/xorg/Xorg.0.log" for additional information.
[   391.570] (EE) 
[   391.583] (EE) Server terminated with error (1). Closing log file.

10-gpu.conf:

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "radeon"
    Inactive "intel"
EndSection

Section "Device"
    Identifier  "radeon"
    Driver      "radeon"
    BusID       "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "radeon"
    Device "radeon"
EndSection

Section "Device"
    Identifier  "intel"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection

xorg.conf:

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "radeon"
    Screen 1 "intel" LeftOf "radeon"
EndSection
 
Section "Device"
    Identifier "radeon"
    Driver "radeon"
    BusID "PCI:1:0:0"
    Screen 1
 
    Option "AccelMethod" "glamor"
    Option "EnablePageFlip" "on"
EndSection
 
Section "Device"
    Identifier "intel"
    Driver "intel"
    BusID "PCI:0:2:0"
    Screen 0
    Option "DRI" "3"
EndSection
 
Section "Screen"
    Identifier "intel"
    Device "intel"
    Monitor "monitor"
    DefaultDepth 24
EndSection
 
Section "Screen"
    Identifier "radeon"
    Device "radeon"
    Monitor "monitor"
    DefaultDepth 24
EndSection
 
Section "Monitor"
    Identifier "monitor"
    Option "Enable" "true"
EndSection

Offline

#45 2020-05-27 14:43:56

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: Switching the primary GPU.

Start by removing the xorg.conf. Post an updated xorg.log.

Offline

#46 2020-05-27 14:49:14

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

Wanted to say that this was before I've put xorg.conf.

Offline

#47 2020-05-27 14:51:08

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: Switching the primary GPU.

Ther error in post #41 shows there was an xorg.conf and so does the Xorg.0.log in post #44…

Offline

#48 2020-05-27 14:52:17

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

Except xorg.conf was empty and I had only 10-gpu.conf.

Last edited by MaxSpec (2020-05-27 14:52:55)

Offline

#49 2020-05-27 21:15:41

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: Switching the primary GPU.

Please do not create moving targets by altering data against what you post and also don't put empty files anywhere. This makes it close to impossible to pin down the problem.

So the raderon driver doesn't like that there's no output attached to it, try to add

    SubSection "Display"
        Modes "1366x768"
    EndSubSection

to the screen section w/ the radeon identfier.

Unfortunately the radeon driver does not seem to support something like nvidias Option "AllowEmptyInitialConfiguration" :-(

Offline

#50 2020-05-28 07:50:43

MaxSpec
Member
Registered: 2020-05-19
Posts: 37

Re: Switching the primary GPU.

To 10-gpu.conf or xorg.conf?
I added to 10-gpu.conf first (While having the xorg.conf I showed above), it didn't work. The logs:

[   391.466] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[   391.467] 
X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
[   391.467] Build Operating System: Linux Arch Linux
[   391.467] Current Operating System: Linux DanSpec 5.6.14-arch1-1 #1 SMP PREEMPT Wed, 20 May 2020 20:43:19 +0000 x86_64
[   391.467] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b155a021-be7a-4ff2-aa70-37184f079812 rw loglevel=3 quiet
[   391.467] Build Date: 05 May 2020  05:08:17AM
[   391.467]  
[   391.467] Current version of pixman: 0.40.0
[   391.467] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   391.467] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   391.467] (==) Log file: "/home/dan/.local/share/xorg/Xorg.0.log", Time: Wed May 27 20:37:31 2020
[   391.467] (==) Using config file: "/etc/X11/xorg.conf"
[   391.467] (==) Using config directory: "/etc/X11/xorg.conf.d"
[   391.467] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   391.467] (==) ServerLayout "layout"
[   391.467] (**) |-->Screen "radeon" (0)
[   391.467] (**) |   |-->Monitor "<default monitor>"
[   391.467] (**) |   |-->Device "radeon"
[   391.467] (**) |   |-->GPUDevice "intel"
[   391.467] (==) No monitor specified for screen "radeon".
	Using a default monitor configuration.
[   391.467] (**) |-->Inactive Device "intel"
[   391.467] (==) Automatically adding devices
[   391.467] (==) Automatically enabling devices
[   391.467] (==) Automatically adding GPU devices
[   391.467] (==) Automatically binding GPU devices
[   391.467] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   391.467] (WW) The directory "/usr/share/fonts/misc" does not exist.
[   391.467] 	Entry deleted from font path.
[   391.467] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[   391.467] 	Entry deleted from font path.
[   391.467] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[   391.467] 	Entry deleted from font path.
[   391.467] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[   391.467] 	Entry deleted from font path.
[   391.467] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[   391.467] 	Entry deleted from font path.
[   391.467] (==) FontPath set to:
	/usr/share/fonts/TTF
[   391.467] (==) ModulePath set to "/usr/lib/xorg/modules"
[   391.467] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   391.467] (II) Module ABI versions:
[   391.467] 	X.Org ANSI C Emulation: 0.4
[   391.467] 	X.Org Video Driver: 24.1
[   391.467] 	X.Org XInput driver : 24.1
[   391.467] 	X.Org Server Extension : 10.0
[   391.469] (++) using VT number 1

[   391.474] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[   391.475] (II) xfree86: Adding drm device (/dev/dri/card1)
[   391.477] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 10 paused 0
[   391.477] (II) xfree86: Adding drm device (/dev/dri/card0)
[   391.478] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[   391.482] (--) PCI:*(0@0:2:0) 8086:0116:103c:1657 rev 9, Mem @ 0xc0000000/4194304, 0xb0000000/268435456, I/O @ 0x00006000/64, BIOS @ 0x????????/131072
[   391.482] (--) PCI: (1@0:0:0) 1002:6740:103c:1657 rev 0, Mem @ 0xa0000000/268435456, 0xc6500000/131072, I/O @ 0x00005000/256, BIOS @ 0x????????/131072
[   391.482] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[   391.482] (II) LoadModule: "glx"
[   391.482] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   391.484] (II) Module glx: vendor="X.Org Foundation"
[   391.484] 	compiled for 1.20.8, module version = 1.0.0
[   391.484] 	ABI class: X.Org Server Extension, version 10.0
[   391.484] (II) LoadModule: "radeon"
[   391.484] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
[   391.485] (II) Module radeon: vendor="X.Org Foundation"
[   391.485] 	compiled for 1.20.8, module version = 19.1.0
[   391.485] 	Module class: X.Org Video Driver
[   391.485] 	ABI class: X.Org Video Driver, version 24.1
[   391.485] (II) LoadModule: "intel"
[   391.485] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[   391.485] (II) Module intel: vendor="X.Org Foundation"
[   391.485] 	compiled for 1.20.8, module version = 2.99.917
[   391.486] 	Module class: X.Org Video Driver
[   391.486] 	ABI class: X.Org Video Driver, version 24.1
[   391.486] (II) RADEON: Driver for ATI/AMD Radeon chipsets:
	ATI Radeon Mobility X600 (M24), ATI FireMV 2400,
	ATI Radeon Mobility X300 (M24), ATI FireGL M24 GL,
	ATI Radeon X600 (RV380), ATI FireGL V3200 (RV380),
	ATI Radeon IGP320 (A3), ATI Radeon IGP330/340/350 (A4),
	ATI Radeon 9500, ATI Radeon 9600TX, ATI FireGL Z1, ATI Radeon 9800SE,
	ATI Radeon 9800, ATI FireGL X2, ATI Radeon 9600, ATI Radeon 9600SE,
	ATI Radeon 9600XT, ATI FireGL T2, ATI Radeon 9650, ATI FireGL RV360,
	ATI Radeon 7000 IGP (A4+), ATI Radeon 8500 AIW,
	ATI Radeon IGP320M (U1), ATI Radeon IGP330M/340M/350M (U2),
	ATI Radeon Mobility 7000 IGP, ATI Radeon 9000/PRO, ATI Radeon 9000,
	ATI Radeon X800 (R420), ATI Radeon X800PRO (R420),
	ATI Radeon X800SE (R420), ATI FireGL X3 (R420),
	ATI Radeon Mobility 9800 (M18), ATI Radeon X800 SE (R420),
	ATI Radeon X800XT (R420), ATI Radeon X800 VE (R420),
	ATI Radeon X850 (R480), ATI Radeon X850 XT (R480),
	ATI Radeon X850 SE (R480), ATI Radeon X850 PRO (R480),
	ATI Radeon X850 XT PE (R480), ATI Radeon Mobility M7,
	ATI Mobility FireGL 7800 M7, ATI Radeon Mobility M6,
	ATI FireGL Mobility 9000 (M9), ATI Radeon Mobility 9000 (M9),
	ATI Radeon 9700 Pro, ATI Radeon 9700/9500Pro, ATI FireGL X1,
	ATI Radeon 9800PRO, ATI Radeon 9800XT,
	ATI Radeon Mobility 9600/9700 (M10/M11),
	ATI Radeon Mobility 9600 (M10), ATI Radeon Mobility 9600 (M11),
	ATI FireGL Mobility T2 (M10), ATI FireGL Mobility T2e (M11),
	ATI Radeon, ATI FireGL 8700/8800, ATI Radeon 8500, ATI Radeon 9100,
	ATI Radeon 7500, ATI Radeon VE/7000, ATI ES1000,
	ATI Radeon Mobility X300 (M22), ATI Radeon Mobility X600 SE (M24C),
	ATI FireGL M22 GL, ATI Radeon X800 (R423), ATI Radeon X800PRO (R423),
	ATI Radeon X800LE (R423), ATI Radeon X800SE (R423),
	ATI Radeon X800 XTP (R430), ATI Radeon X800 XL (R430),
	ATI Radeon X800 SE (R430), ATI Radeon X800 (R430),
	ATI FireGL V7100 (R423), ATI FireGL V5100 (R423),
	ATI FireGL unknown (R423), ATI Mobility FireGL V5000 (M26),
	ATI Mobility Radeon X700 XL (M26), ATI Mobility Radeon X700 (M26),
	ATI Radeon X550XTX, ATI Radeon 9100 IGP (A5),
	ATI Radeon Mobility 9100 IGP (U3), ATI Radeon XPRESS 200,
	ATI Radeon XPRESS 200M, ATI Radeon 9250, ATI Radeon 9200,
	ATI Radeon 9200SE, ATI FireMV 2200, ATI Radeon X300 (RV370),
	ATI Radeon X600 (RV370), ATI Radeon X550 (RV370),
	ATI FireGL V3100 (RV370), ATI FireMV 2200 PCIE (RV370),
	ATI Radeon Mobility 9200 (M9+), ATI Mobility Radeon X800 XT (M28),
	ATI Mobility FireGL V5100 (M28), ATI Mobility Radeon X800 (M28),
	ATI Radeon X850, ATI unknown Radeon / FireGL (R480),
	ATI Radeon X800XT (R423), ATI FireGL V5000 (RV410),
	ATI Radeon X700 XT (RV410), ATI Radeon X700 PRO (RV410),
	ATI Radeon X700 SE (RV410), ATI Radeon X700 (RV410),
	ATI Radeon X1800, ATI Mobility Radeon X1800 XT,
	ATI Mobility Radeon X1800, ATI Mobility FireGL V7200,
	ATI FireGL V7200, ATI FireGL V5300, ATI Mobility FireGL V7100,
	ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
	ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
	ATI Mobility Radeon X1400, ATI Radeon X1550 64-bit,
	ATI Mobility Radeon X1300, ATI Radeon X1300, ATI FireGL V3300,
	ATI FireGL V3350, ATI Mobility Radeon X1450,
	ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
	ATI FireMV 2250, ATI Radeon X1650, ATI Mobility FireGL V5200,
	ATI Mobility Radeon X1600, ATI Radeon X1300 XT/X1600 Pro,
	ATI FireGL V3400, ATI Mobility FireGL V5250,
	ATI Mobility Radeon X1700, ATI Mobility Radeon X1700 XT,
	ATI FireGL V5200, ATI Radeon X2300HD, ATI Mobility Radeon HD 2300,
	ATI Radeon X1950, ATI Radeon X1900, ATI AMD Stream Processor,
	ATI RV560, ATI Mobility Radeon X1900, ATI Radeon X1950 GT, ATI RV570,
	ATI FireGL V7400, ATI Radeon 9100 PRO IGP,
	ATI Radeon Mobility 9200 IGP, ATI Radeon X1200, ATI RS740,
	ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro,
	ATI Radeon HD 2900 GT, ATI FireGL V8650, ATI FireGL V8600,
	ATI FireGL V7600, ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
	ATI Radeon HD 4850 x2, ATI FirePro V8750 (FireGL),
	ATI FirePro V7760 (FireGL), ATI Mobility RADEON HD 4850,
	ATI Mobility RADEON HD 4850 X2, ATI FirePro RV770,
	AMD FireStream 9270, AMD FireStream 9250, ATI FirePro V8700 (FireGL),
	ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
	ATI FirePro M7750, ATI M98, ATI Mobility Radeon HD 4650,
	ATI Radeon RV730 (AGP), ATI Mobility Radeon HD 4670,
	ATI FirePro M5750, ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
	ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
	ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
	ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
	ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
	ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI RV610,
	ATI Radeon HD 2400 XT, ATI Radeon HD 2400 Pro,
	ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, ATI Radeon HD 2350,
	ATI Mobility Radeon HD 2400 XT, ATI Mobility Radeon HD 2400,
	ATI RADEON E2400, ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
	ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
	ATI Mobility Radeon HD 3850 X2, ATI Mobility Radeon HD 3870,
	ATI Mobility Radeon HD 3870 X2, ATI Radeon HD3870 X2,
	ATI FireGL V7700, ATI Radeon HD3690, AMD Firestream 9170,
	ATI Radeon HD 4550, ATI Radeon RV710, ATI Radeon HD 4350,
	ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series,
	ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
	ATI FireGL V3600, ATI Radeon HD 2600 LE,
	ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
	ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
	ATI Radeon HD 3450, ATI Radeon HD 3430, ATI FirePro V3700,
	ATI FireMV 2450, ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP,
	ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT,
	ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
	ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3300 Graphics, ATI Radeon 3000 Graphics, SUMO, SUMO2,
	ATI Radeon HD 4200, ATI Radeon 4100, ATI Mobility Radeon HD 4200,
	ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
	AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
	AMD Radeon HD 6300 Series Graphics,
	AMD Radeon HD 6200 Series Graphics, PALM, CYPRESS,
	ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
	AMD Firestream 9350, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
	ATI Radeon HD 5670, ATI Radeon HD 5570, ATI Radeon HD 5500 Series,
	REDWOOD, ATI Mobility Radeon Graphics, CEDAR, ATI FirePro 2270,
	ATI Radeon HD 5450, CAYMAN, AMD Radeon HD 6900 Series,
	AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
	AMD Radeon HD 6800 Series, AMD Radeon HD 6700 Series, TURKS, CAICOS,
	ARUBA, TAHITI, PITCAIRN, VERDE, OLAND, HAINAN, BONAIRE, KABINI,
	MULLINS, KAVERI, HAWAII
[   391.487] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
	i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
	915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
	Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
	GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[   391.488] (II) intel: Driver for Intel(R) HD Graphics
[   391.488] (II) intel: Driver for Intel(R) Iris(TM) Graphics
[   391.488] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics
[   391.488] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
[   391.488] (II) [KMS] Kernel modesetting enabled.
[   391.488] (II) intel(G0): Using Kernel Mode Setting driver: i915, version 1.6.0 20200114
[   391.488] (II) intel(G0): SNA compiled from 2.99.917-908-g7181c5a4
[   391.503] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[   391.503] (II) RADEON(0): Creating default Display subsection in Screen section
	"radeon" for depth/fbbpp 24/32
[   391.503] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
[   391.503] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[   391.503] (==) RADEON(0): Default visual is TrueColor
[   391.503] (==) RADEON(0): RGB weight 888
[   391.503] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
[   391.503] (--) RADEON(0): Chipset: "TURKS" (ChipID = 0x6740)
[   391.503] (II) Loading sub module "fb"
[   391.503] (II) LoadModule: "fb"
[   391.503] (II) Loading /usr/lib/xorg/modules/libfb.so
[   391.504] (II) Module fb: vendor="X.Org Foundation"
[   391.504] 	compiled for 1.20.8, module version = 1.0.0
[   391.504] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   391.504] (II) Loading sub module "dri2"
[   391.504] (II) LoadModule: "dri2"
[   391.504] (II) Module "dri2" already built-in
[   391.549] (II) Loading sub module "glamoregl"
[   391.549] (II) LoadModule: "glamoregl"
[   391.549] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[   391.554] (II) Module glamoregl: vendor="X.Org Foundation"
[   391.554] 	compiled for 1.20.8, module version = 1.0.1
[   391.554] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   391.563] (II) RADEON(0): glamor X acceleration enabled on AMD TURKS (DRM 2.50.0 / 5.6.14-arch1-1, LLVM 10.0.0)
[   391.563] (II) RADEON(0): glamor detected, initialising EGL layer.
[   391.563] (II) RADEON(0): KMS Color Tiling: enabled
[   391.563] (II) RADEON(0): KMS Color Tiling 2D: enabled
[   391.563] (==) RADEON(0): TearFree property default: auto
[   391.563] (II) RADEON(0): KMS Pageflipping: enabled
[   391.563] (WW) RADEON(0): No outputs definitely connected, trying again...
[   391.563] (WW) RADEON(0): Unable to find connected outputs - setting 1024x768 initial framebuffer
[   391.563] (II) RADEON(0): mem size init: gart size :3fdde000 vram size: s:40000000 visible:fc9d000
[   391.563] (==) RADEON(0): DPI set to (96, 96)
[   391.563] (==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0)
[   391.563] (II) Loading sub module "ramdac"
[   391.563] (II) LoadModule: "ramdac"
[   391.563] (II) Module "ramdac" already built-in
[   391.563] (EE) RADEON(0): No modes.
[   391.565] (II) UnloadModule: "radeon"
[   391.565] (II) UnloadSubModule: "glamoregl"
[   391.565] (II) Unloading glamoregl
[   391.565] (II) UnloadSubModule: "fb"
[   391.565] (II) Unloading fb
[   391.565] (--) intel(G0): Integrated Graphics Chipset: Intel(R) HD Graphics 3000
[   391.565] (--) intel(G0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx; using a maximum of 4 threads
[   391.565] (==) intel(G0): Depth 24, (--) framebuffer bpp 32
[   391.565] (==) intel(G0): RGB weight 888
[   391.565] (==) intel(G0): Default visual is TrueColor
[   391.565] (II) intel(G0): Output LVDS1 has no monitor section
[   391.566] (**) intel(G0): Found backlight control interface intel_backlight (type 'raw') for output LVDS1
[   391.566] (II) intel(G0): Enabled output LVDS1
[   391.566] (II) intel(G0): Output VGA1 has no monitor section
[   391.566] (II) intel(G0): Enabled output VGA1
[   391.566] (II) intel(G0): Output HDMI1 has no monitor section
[   391.566] (II) intel(G0): Enabled output HDMI1
[   391.566] (II) intel(G0): Output DP1 has no monitor section
[   391.567] (II) intel(G0): Enabled output DP1
[   391.567] (--) intel(G0): Using a maximum size of 256x256 for hardware cursors
[   391.567] (II) intel(G0): Output VIRTUAL1 has no monitor section
[   391.567] (II) intel(G0): Enabled output VIRTUAL1
[   391.567] (II) intel(G0): EDID for output LVDS1
[   391.567] (II) intel(G0): Manufacturer: AUO  Model: 22ec  Serial#: 0
[   391.567] (II) intel(G0): Year: 2009  Week: 1
[   391.567] (II) intel(G0): EDID Version: 1.3
[   391.567] (II) intel(G0): Digital Display Input
[   391.567] (II) intel(G0): Max Image Size [cm]: horiz.: 34  vert.: 19
[   391.567] (II) intel(G0): Gamma: 2.20
[   391.567] (II) intel(G0): No DPMS capabilities specified
[   391.567] (II) intel(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   391.567] (II) intel(G0): First detailed timing is preferred mode
[   391.567] (II) intel(G0): redX: 0.620 redY: 0.340   greenX: 0.330 greenY: 0.570
[   391.567] (II) intel(G0): blueX: 0.150 blueY: 0.060   whiteX: 0.313 whiteY: 0.329
[   391.567] (II) intel(G0): Manufacturer's mask: 0
[   391.567] (II) intel(G0): Supported detailed timing:
[   391.567] (II) intel(G0): clock: 69.3 MHz   Image Size:  344 x 193 mm
[   391.567] (II) intel(G0): h_active: 1366  h_sync: 1398  h_sync_end 1422 h_blank_end 1432 h_border: 0
[   391.567] (II) intel(G0): v_active: 768  v_sync: 771  v_sync_end 775 v_blanking: 806 v_border: 0
[   391.567] (II) intel(G0): Unknown vendor-specific block f
[   391.567] (II) intel(G0):  AUO
[   391.567] (II) intel(G0):  B156XW02 V2
[   391.567] (II) intel(G0): EDID (in hex):
[   391.567] (II) intel(G0): 	00ffffffffffff0006afec2200000000
[   391.567] (II) intel(G0): 	01130103802213780ac8959e57549226
[   391.567] (II) intel(G0): 	0f505400000001010101010101010101
[   391.567] (II) intel(G0): 	010101010101121b5642500026302018
[   391.567] (II) intel(G0): 	340058c1100000180000000f00000000
[   391.567] (II) intel(G0): 	00000000000000000020000000fe0041
[   391.567] (II) intel(G0): 	554f0a202020202020202020000000fe
[   391.567] (II) intel(G0): 	004231353658573032205632200a00c0
[   391.567] (II) intel(G0): Not using default mode "320x240" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "400x300" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "400x300" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "512x384" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "640x480" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "640x512" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "700x525" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "320x180" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "320x180" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "360x202" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "360x202" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "432x243" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "432x243" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "480x270" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "480x270" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "512x288" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "512x288" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "640x360" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "640x360" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "684x384" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "684x384" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "800x450" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "800x450" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "960x540" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "640x400" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "640x400" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "700x450" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "700x450" (doublescan mode not supported)
[   391.567] (II) intel(G0): Not using default mode "840x525" (doublescan mode not supported)
[   391.567] (II) intel(G0): Printing probed modes for output LVDS1
[   391.567] (II) intel(G0): Modeline "1366x768"x60.0   69.30  1366 1398 1422 1432  768 771 775 806 -hsync -vsync (48.4 kHz eP)
[   391.567] (II) intel(G0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[   391.567] (II) intel(G0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[   391.567] (II) intel(G0): Modeline "1024x576"x60.0   46.99  1024 1064 1168 1312  576 577 580 597 -hsync +vsync (35.8 kHz)
[   391.567] (II) intel(G0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[   391.567] (II) intel(G0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[   391.567] (II) intel(G0): Modeline "960x540"x60.0   40.78  960 992 1088 1216  540 541 544 559 -hsync +vsync (33.5 kHz)
[   391.567] (II) intel(G0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[   391.567] (II) intel(G0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[   391.567] (II) intel(G0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[   391.567] (II) intel(G0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[   391.567] (II) intel(G0): Modeline "864x486"x60.0   32.90  864 888 976 1088  486 487 490 504 -hsync +vsync (30.2 kHz)
[   391.567] (II) intel(G0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[   391.568] (II) intel(G0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[   391.568] (II) intel(G0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[   391.568] (II) intel(G0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[   391.568] (II) intel(G0): Modeline "720x405"x60.0   22.18  720 728 800 880  405 406 409 420 -hsync +vsync (25.2 kHz)
[   391.568] (II) intel(G0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[   391.568] (II) intel(G0): Modeline "680x384"x60.0   19.68  680 688 752 824  384 385 388 398 -hsync +vsync (23.9 kHz)
[   391.568] (II) intel(G0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[   391.568] (II) intel(G0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[   391.568] (II) intel(G0): Modeline "640x360"x60.0   17.19  640 640 704 768  360 361 364 373 -hsync +vsync (22.4 kHz)
[   391.568] (II) intel(G0): EDID for output DP1
[   391.569] (II) intel(G0): EDID for output HDMI1
[   391.570] (II) intel(G0): EDID for output VGA1
[   391.570] (II) intel(G0): EDID for output VIRTUAL1
[   391.570] (==) intel(G0): TearFree disabled
[   391.570] (==) intel(G0): Using gamma correction (1.0, 1.0, 1.0)
[   391.570] (==) intel(G0): DPI set to (96, 96)
[   391.570] (II) Loading sub module "dri3"
[   391.570] (II) LoadModule: "dri3"
[   391.570] (II) Module "dri3" already built-in
[   391.570] (II) Loading sub module "dri2"
[   391.570] (II) LoadModule: "dri2"
[   391.570] (II) Module "dri2" already built-in
[   391.570] (II) Loading sub module "present"
[   391.570] (II) LoadModule: "present"
[   391.570] (II) Module "present" already built-in
[   391.570] (EE) Screen(s) found, but none have a usable configuration.
[   391.570] (EE) 
Fatal server error:
[   391.570] (EE) no screens found(EE) 
[   391.570] (EE) 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
[   391.570] (EE) Please also check the log file at "/home/dan/.local/share/xorg/Xorg.0.log" for additional information.
[   391.570] (EE) 
[   391.583] (EE) Server terminated with error (1). Closing log file.

But after removal of 10-gpu.conf it boots in just fine, but when I do

glxinfo | grep "Device"

it shows me that it uses Intel and not AMD.

Last edited by MaxSpec (2020-05-28 08:54:12)

Offline

Board footer

Powered by FluxBB