-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathprime-select
executable file
·407 lines (327 loc) · 14.9 KB
/
prime-select
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
#!/usr/bin/python
#
# prime-select
#
# Copyright 2013 Canonical Ltd.
# Author: Alberto Milone <alberto.milone@canonical.com>
#
# Script to switch between NVIDIA and Intel graphics driver libraries.
#
# Usage:
# prime-select nvidia|intel|query
# nvidia: switches to NVIDIA's version of libGL.so
# intel: switches to the open-source version of libGL.so
# query: checks which version is currently active and writes
# "nvidia", "intel" or "unknown" to the standard output
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
import os
import sys
import re
import subprocess
from subprocess import Popen, PIPE, CalledProcessError
class Alternatives:
def __init__(self, master_link):
self._open_drivers_alternative = 'mesa/ld.so.conf'
self._open_egl_drivers_alternative = 'mesa-egl/ld.so.conf'
self._command = '/usr/bin/update-alternatives'
self._master_link = master_link
# Make sure that the PATH environment variable is set
if not os.environ.get('PATH'):
os.environ['PATH'] = '/sbin:/usr/sbin:/bin:/usr/bin'
def list_alternatives(self):
'''Get the list of alternatives for the master link'''
dev_null = open('/dev/null', 'w')
alternatives = []
p1 = Popen([self._command, '--list', self._master_link],
stdout=PIPE, stderr=dev_null)
p = p1.communicate()[0]
dev_null.close()
c = p.split('\n')
for line in c:
line.strip() and alternatives.append(line.strip())
return alternatives
def get_current_alternative(self, check_status=False):
'''Get the alternative in use
If check_status is True, then only the status will
be reported (i.e. either "manual" or "auto")
'''
dev_null = open('/dev/null', 'w')
current_alternative = None
p1 = Popen([self._command, '--query', self._master_link],
stdout=PIPE, stderr=dev_null)
p = p1.communicate()[0]
dev_null.close()
c = p.split('\n')
if check_status:
pattern = 'Status:'
else:
pattern = 'Value:'
for line in c:
if line.strip().startswith(pattern):
return line.replace(pattern, '').strip()
return None
def get_alternative_by_name(self, name, ignore_pattern=None):
'''Get the alternative link by providing the driver name
ignore_pattern allows ignoring a substring in the name'''
if ignore_pattern:
name = name.replace(ignore_pattern, '')
alternatives = self.list_alternatives()
for alternative in alternatives:
if alternative.split('/')[-2] == name:
return alternative
return None
def get_open_drivers_alternative(self):
'''Get the alternative link for open drivers'''
return self.get_alternative_by_name(self._open_drivers_alternative)
def get_open_egl_drivers_alternative(self):
'''Get the alternative link for open EGL/GLES drivers'''
return self.get_alternative_by_name(self._open_egl_drivers_alternative)
def set_alternative(self, path):
'''Tries to set an alternative and returns the boolean exit status'''
try:
subprocess.check_call([self._command, '--set',
self._master_link, path])
self.ldconfig()
except CalledProcessError:
return False
return True
def ldconfig(self):
'''Call ldconfig'''
try:
subprocess.check_call(['/sbin/ldconfig'])
except CalledProcessError:
return False
return True
class Switcher(object):
def __init__(self):
self._power_profile_path = '/etc/prime-discrete'
self._supported_architectures = {'i386': 'i386', 'amd64': 'x86_64'}
main_arch = self._get_architecture()
self._needs_multiarch = (main_arch == 'x86_64')
if self._needs_multiarch:
other_arch = self._supported_architectures.values()[
int(not self._supported_architectures
.values().index(main_arch))]
other_gl_alternative_name = self._get_gl_alternative_name_from_arch(other_arch)
other_egl_alternative_name = self._get_egl_alternative_name_from_arch(other_arch)
# GL alternative for the other architecture
self._gl_switcher_other = Alternatives(other_gl_alternative_name)
# EGL alternative for the other architecture
self._egl_switcher_other = Alternatives(other_egl_alternative_name)
else:
self._gl_switcher_other = None
self._egl_switcher_other = None
main_alternative_name = self._get_gl_alternative_name_from_arch(main_arch)
main_egl_alternative_name = self._get_egl_alternative_name_from_arch(main_arch)
# GL alternative for the main architecture
self._gl_switcher = Alternatives(main_alternative_name)
# EGL alternative for the main architecture
self._egl_switcher = Alternatives(main_egl_alternative_name)
def _get_architecture(self):
dev_null = open('/dev/null', 'w')
p1 = Popen(['dpkg', '--print-architecture'], stdout=PIPE, stderr=dev_null)
p = p1.communicate()[0]
dev_null.close()
architecture = p.strip()
return self._supported_architectures.get(architecture)
def _get_gl_alternative_name_from_arch(self, architecture):
alternative = '%s-linux-gnu_gl_conf' % architecture
return alternative
def _get_egl_alternative_name_from_arch(self, architecture):
alternative = '%s-linux-gnu_egl_conf' % architecture
return alternative
def _simplify_x_alternative_name(self, alternative):
return alternative.split('/')[-1]
def _simplify_gl_alternative_name(self, alternative):
return alternative.split('/')[-2]
def _get_gl_alternatives_list(self):
raw_alternatives = self._gl_switcher.list_alternatives()
return [ self._simplify_gl_alternative_name(x) for x in raw_alternatives ]
def _get_egl_alternatives_list(self):
raw_alternatives = self._egl_switcher.list_alternatives()
return [ self._simplify_gl_alternative_name(x) for x in raw_alternatives ]
def _update_initramfs(self):
subprocess.call(['update-initramfs', '-u'])
# This may not be necessary
subprocess.call(['update-initramfs', '-u', '-k', os.uname()[2]])
def _get_current_alternative(self, switcher, switcher_other):
# This is a list as the 2nd item belongs to another architecture
alternatives = [None, None]
raw_alternative = switcher.get_current_alternative()
if (raw_alternative != None):
alternatives[0] = self._simplify_gl_alternative_name(raw_alternative)
if self._needs_multiarch:
raw_alternative_other = switcher_other.get_current_alternative()
if (raw_alternative_other != None):
alternatives[1] = self._simplify_gl_alternative_name(raw_alternative_other)
return alternatives
def _get_current_gl_alternative(self):
return self._get_current_alternative(self._gl_switcher, self._gl_switcher_other)
def _get_current_egl_alternative(self):
return self._get_current_alternative(self._egl_switcher, self._egl_switcher_other)
def enable_alternative(self, alternative):
success = False
gl_success = False
egl_success = False
# Make sure that the alternatives exist
gl_alternative = self._gl_switcher.get_alternative_by_name(alternative)
egl_alternative = self._egl_switcher.get_alternative_by_name(alternative)
# See if the alternatives for the main arch are null
# Abort if they are both null
if gl_alternative:
gl_success = self._gl_switcher.set_alternative(gl_alternative)
if egl_alternative:
egl_success = self._egl_switcher.set_alternative(egl_alternative)
success = (gl_success or egl_success)
if not success:
sys.stderr.write("Error: no GL or EGL alternatives can be found for %s\n" % alternative)
return success
# Do not abort if they do not exist
if self._needs_multiarch:
gl_alternative_other = self._gl_switcher_other.get_alternative_by_name(alternative)
egl_alternative_other = self._egl_switcher_other.get_alternative_by_name(alternative)
if gl_alternative_other:
self._gl_switcher_other.set_alternative(gl_alternative_other)
if egl_alternative_other:
self._egl_switcher_other.set_alternative(egl_alternative_other)
return success
def print_current_alternative(self):
gl_alternatives = self._get_current_gl_alternative()
gl_alternative = str(gl_alternatives[0])
if not gl_alternative:
return False
if 'nvidia' in gl_alternative:
if 'prime' in gl_alternative:
sys.stdout.write('intel\n')
else:
sys.stdout.write('nvidia\n')
else:
sys.stdout.write('unknown\n')
return True
def _write_profile(self, profile):
if profile == 'intel':
nvidia_power = 'off'
elif profile == 'nvidia':
nvidia_power = 'on'
else:
return False
# Write the settings to the file
settings = open(self._power_profile_path, 'w')
settings.write('%s\n' % nvidia_power)
settings.close()
def _supports_prime(self):
'''See if there are alternatives that support PRIME'''
alternatives = self._get_gl_alternatives_list()
for alternative in alternatives:
if 'prime' in alternative:
return True
return False
def _find_alternative_by_name(self, name, func, ignore_pattern=''):
alternatives = func()
for alternative in alternatives:
if name in alternative:
if ignore_pattern and ignore_pattern in alternative:
continue
return alternative
return None
def _find_gl_alternative_by_name(self, name, ignore_pattern=''):
'''Find the alternative name that matches a generic name pattern'''
return self._find_alternative_by_name(name,
self._get_gl_alternatives_list,
ignore_pattern=ignore_pattern)
def _find_egl_alternative_by_name(self, name, ignore_pattern=''):
'''Find the alternative name that matches a generic name pattern'''
return self._find_alternative_by_name(name,
self._get_egl_alternatives_list,
ignore_pattern=ignore_pattern)
def enable_profile(self, profile):
current_driver = ''
current_profile = ''
gl_alternatives = self._get_current_gl_alternative()
egl_alternatives = self._get_current_egl_alternative()
sys.stdout.write('Info: the current GL alternatives in use are: %s\n' % str(gl_alternatives))
sys.stdout.write('Info: the current EGL alternatives in use are: %s\n' % str(egl_alternatives))
# Make sure that the installed packages support PRIME
if not self._supports_prime():
sys.stderr.write('Error: the installed packages do not support PRIME\n')
return False
gl_alternative = str(gl_alternatives[0])
egl_alternative = str(egl_alternatives[0])
if not (gl_alternative or egl_alternative):
# No alternative exists
sys.stderr.write('Error: the required alternatives do not exist\n')
return False
if ((profile == 'intel' and 'prime' in gl_alternative) or
(profile == 'nvidia' and 'prime' not in gl_alternative and
'nvidia' in gl_alternative)):
# No need to do anything if we're already using the desired
# profile
sys.stdout.write('Info: the %s profile is already in use\n' % (profile))
return True
# Enable the desired alternative
if profile == 'intel':
target_gl_driver = self._find_gl_alternative_by_name('prime')
else:
# Make sure to get nvidia-$flavour instead of nvidia-$flavour-prime
target_gl_driver = self._find_gl_alternative_by_name('nvidia', ignore_pattern='prime')
sys.stdout.write('Info: selecting %s for the %s profile\n' % (target_gl_driver, profile))
# We only care about the gl_driver because the egl will have
# the same name
if self.enable_alternative(target_gl_driver):
# Write the settings to the config file
self._write_profile(profile)
return True
else:
return False
def check_root():
if not os.geteuid() == 0:
sys.stderr.write("This operation requires root privileges\n")
exit(1)
def handle_alternatives_error(mode):
sys.stderr.write('Error: %s mode can\'t be enabled\n' % mode)
exit(1)
def handle_query_error():
sys.stderr.write("Error: no alternative can be found\n")
exit(1)
def usage():
sys.stderr.write("Usage: %s nvidia|intel|query\n" % (sys.argv[0]))
if __name__ == '__main__':
try:
arg = sys.argv[1]
except IndexError:
arg = None
if len(sys.argv[1:]) != 1:
usage()
exit(1)
switcher = Switcher()
if arg == 'intel' or arg == 'nvidia':
check_root()
if not switcher.enable_profile(arg):
handle_alternatives_error(arg)
elif arg == 'query':
if not switcher.print_current_alternative():
handle_query_error()
else:
usage()
sys.exit(1)
exit(0)