forked from bayasdev/envycontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
envycontrol.py
executable file
·533 lines (426 loc) · 18.4 KB
/
envycontrol.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
#!/usr/bin/env python3
import argparse
import sys
import os
import re
import subprocess
import logging
# begin constants definition
VERSION = '3.3.0'
BLACKLIST_PATH = '/etc/modprobe.d/blacklist-nvidia.conf'
BLACKLIST_CONTENT = '''# Automatically generated by EnvyControl
blacklist nouveau
blacklist nvidia
blacklist nvidia_drm
blacklist nvidia_uvm
blacklist nvidia_modeset
alias nouveau off
alias nvidia off
alias nvidia_drm off
alias nvidia_uvm off
alias nvidia_modeset off
'''
UDEV_INTEGRATED_PATH = '/etc/udev/rules.d/50-remove-nvidia.rules'
UDEV_INTEGRATED = '''# Automatically generated by EnvyControl
# Remove NVIDIA USB xHCI Host Controller devices, if present
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x0c0330", ATTR{power/control}="auto", ATTR{remove}="1"
# Remove NVIDIA USB Type-C UCSI devices, if present
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x0c8000", ATTR{power/control}="auto", ATTR{remove}="1"
# Remove NVIDIA Audio devices, if present
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x040300", ATTR{power/control}="auto", ATTR{remove}="1"
# Remove NVIDIA VGA/3D controller devices
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x03[0-9]*", ATTR{power/control}="auto", ATTR{remove}="1"
'''
UDEV_PM_PATH = '/etc/udev/rules.d/80-nvidia-pm.rules'
UDEV_PM_CONTENT = '''# Automatically generated by EnvyControl
# Remove NVIDIA USB xHCI Host Controller devices, if present
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x0c0330", ATTR{remove}="1"
# Remove NVIDIA USB Type-C UCSI devices, if present
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x0c8000", ATTR{remove}="1"
# Remove NVIDIA Audio devices, if present
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x040300", ATTR{remove}="1"
# Enable runtime PM for NVIDIA VGA/3D controller devices on driver bind
ACTION=="bind", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x030000", TEST=="power/control", ATTR{power/control}="auto"
ACTION=="bind", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x030200", TEST=="power/control", ATTR{power/control}="auto"
# Disable runtime PM for NVIDIA VGA/3D controller devices on driver unbind
ACTION=="unbind", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x030000", TEST=="power/control", ATTR{power/control}="on"
ACTION=="unbind", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x030200", TEST=="power/control", ATTR{power/control}="on"
'''
XORG_PATH = '/etc/X11/xorg.conf'
XORG_INTEL = '''# Automatically generated by EnvyControl
Section "ServerLayout"
Identifier "layout"
Screen 0 "nvidia"
Inactive "intel"
EndSection
Section "Device"
Identifier "nvidia"
Driver "nvidia"
BusID "{}"
EndSection
Section "Screen"
Identifier "nvidia"
Device "nvidia"
Option "AllowEmptyInitialConfiguration"
EndSection
Section "Device"
Identifier "intel"
Driver "modesetting"
EndSection
Section "Screen"
Identifier "intel"
Device "intel"
EndSection
'''
XORG_AMD = '''# Automatically generated by EnvyControl
Section "ServerLayout"
Identifier "layout"
Screen 0 "nvidia"
Inactive "amdgpu"
EndSection
Section "Device"
Identifier "nvidia"
Driver "nvidia"
BusID "{}"
EndSection
Section "Screen"
Identifier "nvidia"
Device "nvidia"
Option "AllowEmptyInitialConfiguration"
EndSection
Section "Device"
Identifier "amdgpu"
Driver "amdgpu"
EndSection
Section "Screen"
Identifier "amd"
Device "amdgpu"
EndSection
'''
EXTRA_XORG_PATH = '/etc/X11/xorg.conf.d/10-nvidia.conf'
EXTRA_XORG_CONTENT = '''# Automatically generated by EnvyControl
Section "OutputClass"
Identifier "nvidia"
MatchDriver "nvidia-drm"
Driver "nvidia"
'''
FORCE_COMP = ' Option "ForceCompositionPipeline" "true"\n'
COOLBITS = ' Option "Coolbits" "{}"\n'
MODESET_PATH = '/etc/modprobe.d/nvidia.conf'
MODESET_CONTENT = '''# Automatically generated by EnvyControl
options nvidia-drm modeset=1
options nvidia NVreg_UsePageAttributeTable=1 NVreg_InitializeSystemMemoryAllocations=0
'''
MODESET_RTD3 = '''# Automatically generated by EnvyControl
options nvidia-drm modeset=1
options nvidia "NVreg_DynamicPowerManagement=0x0{}"
options nvidia NVreg_UsePageAttributeTable=1 NVreg_InitializeSystemMemoryAllocations=0
'''
SDDM_XSETUP_PATH = '/usr/share/sddm/scripts/Xsetup'
SDDM_XSETUP_CONTENT = '''#!/bin/sh
# Xsetup - run as root before the login dialog appears
'''
LIGHTDM_SCRIPT_PATH = '/etc/lightdm/nvidia.sh'
LIGHTDM_CONFIG_PATH = '/etc/lightdm/lightdm.conf.d/20-nvidia.conf'
LIGHTDM_CONFIG_CONTENT = '''# Automatically generated by EnvyControl
[Seat:*]
display-setup-script=/etc/lightdm/nvidia.sh
'''
NVIDIA_XRANDR_SCRIPT = '''#!/bin/sh
# Automatically generated by EnvyControl
xrandr --setprovideroutputsource "{}" NVIDIA-0
xrandr --auto
'''
SUPPORTED_MODES = ['integrated', 'hybrid', 'nvidia']
SUPPORTED_DISPLAY_MANAGERS = ['gdm', 'gdm3', 'sddm', 'lightdm']
RTD3_MODES = [0, 1, 2, 3]
# end constants definition
def graphics_mode_switcher(graphics_mode, user_display_manager, enable_force_comp, coolbits_value, rtd3_value):
print(f"Switching to {graphics_mode} mode")
if graphics_mode == 'integrated':
if logging.getLogger().level == logging.DEBUG:
service = subprocess.run(["systemctl", "disable", "nvidia-persistenced.service"])
else:
service = subprocess.run(["systemctl", "disable", "nvidia-persistenced.service"],stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
if service.returncode == 0:
print('Successfully disabled nvidia-persistenced.service')
else:
logging.error("An error ocurred while disabling service")
cleanup()
# blacklist all nouveau and Nvidia modules
create_file(BLACKLIST_PATH, BLACKLIST_CONTENT)
# power off the Nvidia GPU with udev rules
create_file(UDEV_INTEGRATED_PATH, UDEV_INTEGRATED)
rebuild_initramfs()
elif graphics_mode == 'hybrid':
print(
f"Enable PCI-Express Runtime D3 (RTD3) Power Management: {rtd3_value or False}")
cleanup()
if logging.getLogger().level == logging.DEBUG:
service = subprocess.run(["systemctl", "enable", "nvidia-persistenced.service"])
else:
service = subprocess.run(["systemctl", "enable", "nvidia-persistenced.service"],stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
if service.returncode == 0:
print('Successfully enabled nvidia-persistenced.service')
else:
logging.error("An error ocurred while enabling service")
if rtd3_value == None:
create_file(MODESET_PATH, MODESET_CONTENT)
else:
# setup rtd3
create_file(MODESET_PATH, MODESET_RTD3.format(rtd3_value))
create_file(UDEV_PM_PATH, UDEV_PM_CONTENT)
rebuild_initramfs()
elif graphics_mode == 'nvidia':
print(f"Enable ForceCompositionPipeline: {enable_force_comp}")
print(f"Enable Coolbits: {coolbits_value or False}")
if logging.getLogger().level == logging.DEBUG:
service = subprocess.run(["systemctl", "enable", "nvidia-persistenced.service"])
else:
service = subprocess.run(["systemctl", "enable", "nvidia-persistenced.service"],stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
if service.returncode == 0:
print('Successfully enabled nvidia-persistenced.service')
else:
logging.error("An error ocurred while enabling service")
cleanup()
# get the Nvidia dGPU PCI bus
nvidia_gpu_pci_bus = get_nvidia_gpu_pci_bus()
# get iGPU vendor
igpu_vendor = get_igpu_vendor()
# create the X.org config
if igpu_vendor == 'intel':
create_file(XORG_PATH, XORG_INTEL.format(nvidia_gpu_pci_bus))
elif igpu_vendor == 'amd':
create_file(XORG_PATH, XORG_AMD.format(nvidia_gpu_pci_bus))
# enable modeset for Nvidia driver
create_file(MODESET_PATH, MODESET_CONTENT)
# extra Xorg config
if enable_force_comp and coolbits_value != None:
create_file(EXTRA_XORG_PATH, EXTRA_XORG_CONTENT + FORCE_COMP +
COOLBITS.format(coolbits_value) + 'EndSection\n')
elif enable_force_comp:
create_file(EXTRA_XORG_PATH, EXTRA_XORG_CONTENT +
FORCE_COMP + 'EndSection\n')
elif coolbits_value != None:
create_file(EXTRA_XORG_PATH, EXTRA_XORG_CONTENT +
COOLBITS.format(coolbits_value) + 'EndSection\n')
# try to detect the display manager if not provided
if user_display_manager == None:
display_manager = get_display_manager()
else:
display_manager = user_display_manager
# only sddm and lightdm require further config
if display_manager == 'sddm':
# backup Xsetup
if os.path.exists(SDDM_XSETUP_PATH):
logging.info("Creating Xsetup backup")
with open(SDDM_XSETUP_PATH, mode='r', encoding='utf-8') as f:
create_file(SDDM_XSETUP_PATH+'.bak', f.read())
create_file(SDDM_XSETUP_PATH,
generate_xrandr_script(igpu_vendor), True)
elif display_manager == 'lightdm':
create_file(LIGHTDM_SCRIPT_PATH,
generate_xrandr_script(igpu_vendor), True)
create_file(LIGHTDM_CONFIG_PATH, LIGHTDM_CONFIG_CONTENT)
rebuild_initramfs()
print('Operation completed successfully')
print('Please reboot your computer for changes to take effect!')
def cleanup():
# define list of files to remove
to_remove = [
BLACKLIST_PATH,
UDEV_INTEGRATED_PATH,
UDEV_PM_PATH,
XORG_PATH,
EXTRA_XORG_PATH,
'/etc/X11/xorg.conf.d/90-nvidia.conf',
MODESET_PATH,
LIGHTDM_SCRIPT_PATH,
LIGHTDM_CONFIG_PATH,
]
# remove each file in the list
for file_path in to_remove:
try:
os.remove(file_path)
logging.info(f"Removed file {file_path}")
except OSError as e:
# only warn if file exists (code 2)
if e.errno != 2:
logging.error(f"Failed to remove file '{file_path}': {e}")
# restore Xsetup backup if found
backup_path = SDDM_XSETUP_PATH + ".bak"
if os.path.exists(backup_path):
logging.info("Restoring Xsetup backup")
with open(backup_path, mode="r", encoding="utf-8") as f:
create_file(SDDM_XSETUP_PATH, f.read())
# remove backup
os.remove(backup_path)
logging.info(f"Removed file {backup_path}")
def get_nvidia_gpu_pci_bus():
lspci_output = subprocess.check_output(['lspci']).decode('utf-8')
for line in lspci_output.splitlines():
if 'NVIDIA' in line and ('VGA compatible controller' in line or '3D controller' in line):
# remove leading zeros
pci_bus_id = line.split()[0].replace("0000:", "")
logging.info(f"Found Nvidia GPU at {pci_bus_id}")
break
else:
logging.error("Could not find Nvidia GPU")
print("Try switching to hybrid mode first!")
sys.exit(1)
# need to return the BusID in 'PCI:bus:device:function' format
# also perform hexadecimal to decimal conversion
bus, device_function = pci_bus_id.split(":")
device, function = device_function.split(".")
return f"PCI:{int(bus, 16)}:{int(device, 16)}:{int(function, 16)}"
def get_igpu_vendor():
lspci_output = subprocess.check_output(["lspci"]).decode('utf-8')
for line in lspci_output.splitlines():
if 'VGA compatible controller' in line or 'Display controller' in line:
if 'Intel' in line:
logging.info("Found Intel iGPU")
return 'intel'
elif 'ATI' in line or 'AMD' in line or 'AMD/ATI' in line:
logging.info("Found AMD iGPU")
return 'amd'
logging.warning("Could not find Intel or AMD iGPU")
return None
def get_display_manager():
try:
with open('/etc/systemd/system/display-manager.service', 'r', encoding='utf-8') as f:
content = f.read()
match = re.search(r'ExecStart=(.+)\n', content)
if match:
# only return the final component of the path
display_manager = os.path.basename(match.group(1))
logging.info(f"Found {display_manager} Display Manager")
return display_manager
except FileNotFoundError:
logging.warning("Display Manager detection is not available")
def generate_xrandr_script(igpu_vendor):
if igpu_vendor == 'intel':
return NVIDIA_XRANDR_SCRIPT.format('modesetting')
elif igpu_vendor == 'amd':
amd_igpu_name = get_amd_igpu_name()
if amd_igpu_name != None:
return NVIDIA_XRANDR_SCRIPT.format(amd_igpu_name)
else:
return NVIDIA_XRANDR_SCRIPT.format('modesetting')
else:
return NVIDIA_XRANDR_SCRIPT.format('modesetting')
def get_amd_igpu_name():
if not os.path.exists('/usr/bin/xrandr'):
logging.warning(
"The 'xrandr' command is not available. Make sure the package is installed!")
return None
try:
xrandr_output = subprocess.check_output(
['xrandr', '--listproviders']).decode('utf-8')
except subprocess.CalledProcessError:
logging.warning(
"Failed to run the 'xrandr' command.")
pattern = re.compile(r'(name:).*(ATI*|AMD*|AMD\/ATI)*')
if pattern.findall(xrandr_output):
return re.search(pattern, xrandr_output).group(0)[5:]
else:
logging.warning(
"Could not find AMD iGPU in 'xrandr' output.")
return None
def rebuild_initramfs():
# Debian and Ubuntu derivatives
if os.path.exists('/etc/debian_version'):
command = ['update-initramfs', '-u', '-k', 'all']
# RHEL and SUSE derivatives
elif os.path.exists('/etc/redhat-release') or os.path.exists('/usr/bin/zypper'):
command = ['dracut', '--force', '--regenerate-all']
# EndeavourOS with dracut
elif os.path.exists('/usr/lib/endeavouros-release') and os.path.exists('/usr/bin/dracut'):
command = ['dracut-rebuild']
else:
command = []
if len(command) != 0:
print('Rebuilding the initramfs...')
if logging.getLogger().level == logging.DEBUG:
p = subprocess.run(command)
else:
p = subprocess.run(
command, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
if p.returncode == 0:
print('Successfully rebuilt the initramfs!')
else:
logging.error("An error ocurred while rebuilding the initramfs")
def create_file(path, content, executable=False):
try:
# create the parent folders if needed
if not os.path.exists(os.path.dirname(path)):
os.makedirs(os.path.dirname(path))
with open(path, mode='w', encoding='utf-8') as f:
f.write(content)
logging.info(f"Created file {path}")
if logging.getLogger().level == logging.DEBUG:
print(content)
# add execution privilege
if executable:
subprocess.run(['chmod', '+x', path], stdout=subprocess.DEVNULL)
logging.info(f"Added execution privilege to file {path}")
except OSError as e:
logging.error(f"Failed to create file '{path}': {e}")
def assert_root():
if os.geteuid() != 0:
logging.error("This operation requires root privileges")
sys.exit(1)
def main():
# define CLI arguments
parser = argparse.ArgumentParser()
parser.add_argument('-v', '--version', action='version', version=VERSION,
help='Output the current version')
parser.add_argument('-q', '--query', action='store_true',
help='Query the current graphics mode')
parser.add_argument('-s', '--switch', type=str, metavar='MODE', action='store', choices=SUPPORTED_MODES,
help='Switch the graphics mode. Available choices: %(choices)s')
parser.add_argument('--dm', type=str, metavar='DISPLAY_MANAGER', action='store', choices=SUPPORTED_DISPLAY_MANAGERS,
help='Manually specify your Display Manager for Nvidia mode. Available choices: %(choices)s')
parser.add_argument('--force-comp', action='store_true',
help='Enable ForceCompositionPipeline on Nvidia mode')
parser.add_argument('--coolbits', type=int, nargs='?', metavar='VALUE', action='store', const=28,
help='Enable Coolbits on Nvidia mode. Default if specified: %(const)s')
parser.add_argument('--rtd3', type=int, nargs='?', metavar='VALUE', action='store', choices=RTD3_MODES, const=2,
help='Setup PCI-Express Runtime D3 (RTD3) Power Management on Hybrid mode. Available choices: %(choices)s. Default if specified: %(const)s')
parser.add_argument('--reset-sddm', action='store_true',
help='Restore default Xsetup file')
parser.add_argument('--reset', action='store_true',
help='Revert changes made by EnvyControl')
parser.add_argument('--verbose', default=False, action='store_true',
help='Enable verbose mode')
# print help if no arg is provided
if len(sys.argv) == 1:
parser.print_help()
sys.exit(1)
args = parser.parse_args()
# log formatting
logging.basicConfig(format='%(levelname)s: %(message)s')
# set debug level for verbose mode
if args.verbose:
logging.getLogger().setLevel(logging.DEBUG)
if args.query:
if os.path.exists(BLACKLIST_PATH) and os.path.exists(UDEV_INTEGRATED_PATH):
mode = 'integrated'
elif os.path.exists(XORG_PATH) and os.path.exists(MODESET_PATH):
mode = 'nvidia'
else:
mode = 'hybrid'
print(mode)
elif args.switch:
assert_root()
graphics_mode_switcher(args.switch, args.dm,
args.force_comp, args.coolbits, args.rtd3)
elif args.reset_sddm:
assert_root()
create_file(SDDM_XSETUP_PATH, SDDM_XSETUP_CONTENT, True)
print('Operation completed successfully')
elif args.reset:
assert_root()
cleanup()
print('Operation completed successfully')
if __name__ == '__main__':
main()