source: mainline/tools/ew.py@ d6dc9a12

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d6dc9a12 was 13eecc4, checked in by Jakub Jermar <jakub@…>, 6 years ago

Add virtio-blk driver

  • Property mode set to 100755
File size: 12.5 KB
RevLine 
[df64dbc]1#!/usr/bin/env python
2#
[3f4c537a]3# Copyright (c) 2013 Jakub Jermar
[df64dbc]4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:
9#
10# - Redistributions of source code must retain the above copyright
11# notice, this list of conditions and the following disclaimer.
12# - Redistributions in binary form must reproduce the above copyright
13# notice, this list of conditions and the following disclaimer in the
14# documentation and/or other materials provided with the distribution.
15# - The name of the author may not be used to endorse or promote products
16# derived from this software without specific prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29
30
31"""
32Emulator wrapper for running HelenOS
33"""
34
[1c24c7c]35import os
[f5ceb18]36import sys
[1c24c7c]37import subprocess
[df64dbc]38import autotool
[8a26f82]39import platform
[df425da]40import thread
41import time
[df64dbc]42
[f5ceb18]43overrides = {}
44
45def is_override(str):
46 if str in overrides.keys():
47 return overrides[str]
48 return False
49
[df425da]50def cfg_get(platform, machine, processor):
51 if machine == "" or emulators[platform].has_key("run"):
[f5ceb18]52 return emulators[platform]
[df425da]53 elif processor == "" or emulators[platform][machine].has_key("run"):
[f5ceb18]54 return emulators[platform][machine]
[df425da]55 else:
56 return emulators[platform][machine][processor]
[f5ceb18]57
[e4c8e3cf]58def termemu_detect():
59 for termemu in ['xfce4-terminal', 'xterm']:
60 try:
61 subprocess.check_output('which ' + termemu, shell = True)
62 return termemu
63 except:
64 pass
65
[df64dbc]66def run_in_console(cmd, title):
[1dab093]67 ecmd = cmd.replace('"', '\\"')
68 cmdline = termemu_detect() + ' -T ' + '"' + title + '"' + ' -e "' + ecmd + '"'
[e4a1497]69 print(cmdline)
[f5ceb18]70 if not is_override('dryrun'):
[e4c8e3cf]71 subprocess.call(cmdline, shell = True)
[df64dbc]72
[8a26f82]73def get_host_native_width():
74 return int(platform.architecture()[0].strip('bit'))
75
76def pc_options(guest_width):
77 opts = ''
[a35b458]78
[8a26f82]79 # Do not enable KVM if running 64 bits HelenOS
80 # on 32 bits host
81 host_width = get_host_native_width()
[f5ceb18]82 if guest_width <= host_width and not is_override('nokvm'):
[8a26f82]83 opts = opts + ' -enable-kvm'
[a35b458]84
[8a26f82]85 # Remove the leading space
86 return opts[1:]
[df64dbc]87
88def malta_options():
89 return '-cpu 4Kc'
90
[9185e42]91def platform_to_qemu_options(platform, machine, processor):
[df64dbc]92 if platform == 'amd64':
[8a26f82]93 return 'system-x86_64', pc_options(64)
[df64dbc]94 elif platform == 'arm32':
[83b01c2]95 return 'system-arm', '-M integratorcp'
[df64dbc]96 elif platform == 'ia32':
[8a26f82]97 return 'system-i386', pc_options(32)
[df64dbc]98 elif platform == 'mips32':
99 if machine == 'lmalta':
100 return 'system-mipsel', malta_options()
101 elif machine == 'bmalta':
102 return 'system-mips', malta_options()
103 elif platform == 'ppc32':
[644352c]104 return 'system-ppc', '-m 256'
[df64dbc]105 elif platform == 'sparc64':
[9185e42]106 if machine != 'generic':
107 raise Exception
108 if processor == 'us':
[7f4937e]109 return 'system-sparc64', '-M sun4u --prom-env boot-args="console=devices/\\hw\\pci0\\01:01.0\\com1\\a"'
[9185e42]110 elif processor == 'sun4v':
111 default_path = '/usr/local/opensparc/image/'
112 try:
113 if os.path.exists(default_path):
114 opensparc_bins = default_path
115 elif os.path.exists(os.environ['OPENSPARC_BINARIES']):
116 opensparc_bins = os.environ['OPENSPARC_BINARIES']
117 else:
118 raise Exception
119 except:
120 print("Cannot find OpenSPARC binary images!")
121 print("Either set OPENSPARC_BINARIES environment variable accordingly or place the images in %s." % (default_path))
122 raise Exception
123
124 return 'system-sparc64', '-M niagara -m 256 -L %s' % (opensparc_bins)
125
[df64dbc]126
[129b92c6]127def hdisk_mk():
[df64dbc]128 if not os.path.exists('hdisk.img'):
129 subprocess.call('tools/mkfat.py 1048576 uspace/dist/data hdisk.img', shell = True)
[f5ceb18]130
[129b92c6]131def qemu_bd_options():
132 if is_override('nohdd'):
133 return ''
[a35b458]134
[129b92c6]135 hdisk_mk()
[a35b458]136
[13eecc4]137 hdd_options = ''
138 if 'hdd' in overrides.keys():
139 if 'ata' in overrides['hdd'].keys():
140 hdd_options += ''
141 elif 'virtio-blk' in overrides['hdd'].keys():
142 hdd_options += ',if=virtio'
143
144 return ' -drive file=hdisk.img,index=0,media=disk,format=raw' + hdd_options
[df64dbc]145
146def qemu_nic_ne2k_options():
[d4b7b29]147 return ' -device ne2k_isa,irq=5,netdev=n1'
[df64dbc]148
149def qemu_nic_e1k_options():
[d4b7b29]150 return ' -device e1000,netdev=n1'
[df64dbc]151
152def qemu_nic_rtl8139_options():
[d4b7b29]153 return ' -device rtl8139,netdev=n1'
[df64dbc]154
[7bf16b7e]155def qemu_nic_virtio_options():
[d4b7b29]156 return ' -device virtio-net,netdev=n1'
[7bf16b7e]157
[df64dbc]158def qemu_net_options():
[f5ceb18]159 if is_override('nonet'):
160 return ''
161
162 nic_options = ''
163 if 'net' in overrides.keys():
164 if 'e1k' in overrides['net'].keys():
165 nic_options += qemu_nic_e1k_options()
166 if 'rtl8139' in overrides['net'].keys():
167 nic_options += qemu_nic_rtl8139_options()
168 if 'ne2k' in overrides['net'].keys():
169 nic_options += qemu_nic_ne2k_options()
[7bf16b7e]170 if 'virtio-net' in overrides['net'].keys():
171 nic_options += qemu_nic_virtio_options()
[f5ceb18]172 else:
173 # Use the default NIC
174 nic_options += qemu_nic_e1k_options()
175
[d4b7b29]176 return nic_options + ' -netdev user,id=n1,hostfwd=udp::8080-:8080,hostfwd=udp::8081-:8081,hostfwd=tcp::8080-:8080,hostfwd=tcp::8081-:8081,hostfwd=tcp::2223-:2223'
[df64dbc]177
178def qemu_usb_options():
[f5ceb18]179 if is_override('nousb'):
180 return ''
181 return ' -usb'
[df64dbc]182
[5119d34]183def qemu_xhci_options():
184 if is_override('noxhci'):
185 return ''
186 return ' -device nec-usb-xhci,id=xhci'
187
[27de618]188def qemu_tablet_options():
189 if is_override('notablet') or (is_override('nousb') and is_override('noxhci')):
190 return ''
191 return ' -device usb-tablet'
192
[f5ceb18]193def qemu_audio_options():
194 if is_override('nosnd'):
195 return ''
[089901e]196 return ' -device intel-hda -device hda-duplex'
[f5ceb18]197
[df425da]198def qemu_run(platform, machine, processor):
199 cfg = cfg_get(platform, machine, processor)
[9185e42]200 suffix, options = platform_to_qemu_options(platform, machine, processor)
[df64dbc]201 cmd = 'qemu-' + suffix
202
203 cmdline = cmd
[3692678]204 if 'qemu_path' in overrides.keys():
205 cmdline = overrides['qemu_path'] + cmd
206
[df64dbc]207 if options != '':
208 cmdline += ' ' + options
209
[f5ceb18]210 cmdline += qemu_bd_options()
211
212 if (not 'net' in cfg.keys()) or cfg['net']:
[df64dbc]213 cmdline += qemu_net_options()
[f5ceb18]214 if (not 'usb' in cfg.keys()) or cfg['usb']:
[df64dbc]215 cmdline += qemu_usb_options()
[5119d34]216 if (not 'xhci' in cfg.keys()) or cfg['xhci']:
217 cmdline += qemu_xhci_options()
[27de618]218 if (not 'tablet' in cfg.keys()) or cfg['tablet']:
219 cmdline += qemu_tablet_options()
[f5ceb18]220 if (not 'audio' in cfg.keys()) or cfg['audio']:
221 cmdline += qemu_audio_options()
[a35b458]222
[868d75c]223 console = ('console' in cfg.keys() and cfg['console'])
224
[0ceeac3]225 if (is_override('nographic')):
226 cmdline += ' -nographic'
227
[868d75c]228 if (not console and (not is_override('nographic')) and not is_override('noserial')):
[2fc9bfd]229 cmdline += ' -serial stdio'
230
[abf8bd8]231 if (is_override('bigmem')):
232 cmdline += ' -m 4G'
233
[f5ceb18]234 if cfg['image'] == 'image.iso':
[df64dbc]235 cmdline += ' -boot d -cdrom image.iso'
[f5ceb18]236 elif cfg['image'] == 'image.boot':
[df64dbc]237 cmdline += ' -kernel image.boot'
[9185e42]238 else:
239 cmdline += ' ' + cfg['image']
[df64dbc]240
[868d75c]241 if console:
[df64dbc]242 cmdline += ' -nographic'
243
244 title = 'HelenOS/' + platform
245 if machine != '':
246 title += ' on ' + machine
[9185e42]247 if 'expect' in cfg.keys():
248 cmdline = 'expect -c \'spawn %s; expect "%s" { send "%s" } timeout exp_continue; interact\'' % (cmdline, cfg['expect']['src'], cfg['expect']['dst'])
[df64dbc]249 run_in_console(cmdline, title)
250 else:
[e4a1497]251 print(cmdline)
[f5ceb18]252 if not is_override('dryrun'):
253 subprocess.call(cmdline, shell = True)
[3f4c537a]254
[df425da]255def ski_run(platform, machine, processor):
[63d46341]256 run_in_console('ski -i tools/conf/ski.conf', 'HelenOS/ia64 on ski')
[df64dbc]257
[df425da]258def msim_run(platform, machine, processor):
[129b92c6]259 hdisk_mk()
[63d46341]260 run_in_console('msim -c tools/conf/msim.conf', 'HelenOS/mips32 on msim')
[df64dbc]261
[3f4c537a]262def spike_run(platform, machine, processor):
[ae8d7b0]263 run_in_console('spike -m1073741824:1073741824 image.boot', 'HelenOS/risvc64 on Spike')
[3f4c537a]264
[f5ceb18]265emulators = {
266 'amd64' : {
267 'run' : qemu_run,
268 'image' : 'image.iso'
269 },
270 'arm32' : {
271 'integratorcp' : {
272 'run' : qemu_run,
273 'image' : 'image.boot',
274 'net' : False,
[a1a81f69]275 'audio' : False,
276 'xhci' : False,
277 'tablet' : False
[f5ceb18]278 }
279 },
280 'ia32' : {
281 'run' : qemu_run,
282 'image' : 'image.iso'
283 },
284 'ia64' : {
285 'ski' : {
286 'run' : ski_run
287 }
288 },
289 'mips32' : {
290 'msim' : {
291 'run' : msim_run
292 },
293 'lmalta' : {
294 'run' : qemu_run,
295 'image' : 'image.boot',
[868d75c]296 'console' : True
[f5ceb18]297 },
298 'bmalta' : {
299 'run' : qemu_run,
300 'image' : 'image.boot',
[868d75c]301 'console' : True
[f5ceb18]302 },
303 },
304 'ppc32' : {
305 'run' : qemu_run,
306 'image' : 'image.iso',
307 'audio' : False
308 },
[3f4c537a]309 'riscv64' : {
310 'run' : spike_run,
311 'image' : 'image.boot'
312 },
[f5ceb18]313 'sparc64' : {
314 'generic' : {
[df425da]315 'us' : {
316 'run' : qemu_run,
317 'image' : 'image.iso',
[0195374]318 'audio' : False,
[868d75c]319 'console' : True,
[fd57cf17]320 'net' : False,
321 'usb' : False,
322 'xhci' : False,
323 'tablet' : False
[df425da]324 },
325 'sun4v' : {
[9185e42]326 'run' : qemu_run,
327 'image' : '-drive if=pflash,readonly=on,file=image.iso',
328 'audio' : False,
[868d75c]329 'console' : True,
[9185e42]330 'net' : False,
331 'usb' : False,
[fd57cf17]332 'xhci' : False,
333 'tablet' : False,
[9185e42]334 'expect' : {
335 'src' : 'ok ',
336 'dst' : 'boot\n'
337 },
[df425da]338 }
[f5ceb18]339 }
340 },
341}
342
343def usage():
344 print("%s - emulator wrapper for running HelenOS\n" % os.path.basename(sys.argv[0]))
[13eecc4]345 print("%s [-d] [-h] [-net e1k|rtl8139|ne2k|virtio-net] [-hdd ata|virtio-blk] [-nohdd] [-nokvm] [-nonet] [-nosnd] [-nousb] [-noxhci] [-notablet]\n" %
[f5ceb18]346 os.path.basename(sys.argv[0]))
347 print("-d\tDry run: do not run the emulation, just print the command line.")
348 print("-h\tPrint the usage information and exit.")
349 print("-nohdd\tDisable hard disk, if applicable.")
350 print("-nokvm\tDisable KVM, if applicable.")
351 print("-nonet\tDisable networking support, if applicable.")
352 print("-nosnd\tDisable sound, if applicable.")
353 print("-nousb\tDisable USB support, if applicable.")
[5119d34]354 print("-noxhci\tDisable XHCI support, if applicable.")
[27de618]355 print("-notablet\tDisable USB tablet (use only relative-position PS/2 mouse instead), if applicable.")
[abf8bd8]356 print("-nographic\tDisable graphical output. Serial port output must be enabled for this to be useful.")
[2fc9bfd]357 print("-noserial\tDisable serial port output in the terminal.")
[abf8bd8]358 print("-bigmem\tSets maximum RAM size to 4GB.")
[df64dbc]359
[df425da]360def fail(platform, machine):
361 print("Cannot start emulation for the chosen configuration. (%s/%s)" % (platform, machine))
[a35b458]362
[df425da]363
[df64dbc]364def run():
[f5ceb18]365 expect_nic = False
[13eecc4]366 expect_hdd = False
[3692678]367 expect_qemu = False
[f5ceb18]368
369 for i in range(1, len(sys.argv)):
370
371 if expect_nic:
372 expect_nic = False
373 if not 'net' in overrides.keys():
374 overrides['net'] = {}
375 if sys.argv[i] == 'e1k':
376 overrides['net']['e1k'] = True
377 elif sys.argv[i] == 'rtl8139':
378 overrides['net']['rtl8139'] = True
379 elif sys.argv[i] == 'ne2k':
380 overrides['net']['ne2k'] = True
[7bf16b7e]381 elif sys.argv[i] == 'virtio-net':
382 overrides['net']['virtio-net'] = True
[f5ceb18]383 else:
384 usage()
385 exit()
[f134413]386 continue
[f5ceb18]387
[13eecc4]388 if expect_hdd:
389 expect_hdd = False
390 if not 'hdd' in overrides.keys():
391 overrides['hdd'] = {}
392 if sys.argv[i] == 'ata':
393 overrides['hdd']['ata'] = True
394 elif sys.argv[i] == 'virtio-blk':
395 overrides['hdd']['virtio-blk'] = True
396 else:
397 usage()
398 exit()
399 continue
400
[3692678]401 if expect_qemu:
402 expect_qemu = False
403 overrides['qemu_path'] = sys.argv[i]
404
[f5ceb18]405 elif sys.argv[i] == '-h':
406 usage()
407 exit()
408 elif sys.argv[i] == '-d':
409 overrides['dryrun'] = True
410 elif sys.argv[i] == '-net' and i < len(sys.argv) - 1:
411 expect_nic = True
[13eecc4]412 elif sys.argv[i] == '-hdd' and i < len(sys.argv) - 1:
413 expect_hdd = True
[f5ceb18]414 elif sys.argv[i] == '-nohdd':
415 overrides['nohdd'] = True
416 elif sys.argv[i] == '-nokvm':
417 overrides['nokvm'] = True
418 elif sys.argv[i] == '-nonet':
419 overrides['nonet'] = True
420 elif sys.argv[i] == '-nosnd':
421 overrides['nosnd'] = True
422 elif sys.argv[i] == '-nousb':
423 overrides['nousb'] = True
[5119d34]424 elif sys.argv[i] == '-noxhci':
425 overrides['noxhci'] = True
[27de618]426 elif sys.argv[i] == '-notablet':
427 overrides['notablet'] = True
[0ceeac3]428 elif sys.argv[i] == '-nographic':
429 overrides['nographic'] = True
[abf8bd8]430 elif sys.argv[i] == '-bigmem':
431 overrides['bigmem'] = True
[2fc9bfd]432 elif sys.argv[i] == '-noserial':
433 overrides['noserial'] = True
[3692678]434 elif sys.argv[i] == '-qemu_path' and i < len(sys.argv) - 1:
435 expect_qemu = True
[f5ceb18]436 else:
437 usage()
438 exit()
439
[df64dbc]440 config = {}
441 autotool.read_config(autotool.CONFIG, config)
442
[f5ceb18]443 if 'PLATFORM' in config.keys():
[df64dbc]444 platform = config['PLATFORM']
[f5ceb18]445 else:
[df64dbc]446 platform = ''
447
[f5ceb18]448 if 'MACHINE' in config.keys():
[df64dbc]449 mach = config['MACHINE']
[f5ceb18]450 else:
[df64dbc]451 mach = ''
452
[df425da]453 if 'PROCESSOR' in config.keys():
454 processor = config['PROCESSOR']
455 else:
456 processor = ''
457
[df64dbc]458 try:
[df425da]459 emu_run = cfg_get(platform, mach, processor)['run']
460 emu_run(platform, mach, processor)
[df64dbc]461 except:
[df425da]462 fail(platform, mach)
[df64dbc]463 return
464
465run()
Note: See TracBrowser for help on using the repository browser.