mirror of
https://github.com/genodelabs/genode.git
synced 2025-05-08 03:28:09 +00:00
When building Genode on a Linux system running in a Xen Dom0, the 'xen' run target can run a Genode scenario in a Xen DomU. Usage: in build/x86_*/etc/build.conf, define: RUN_OPT = --include boot_dir/$(KERNEL) --include image/iso --include power_on/xen --include log/xen --include power_off/xen The Xen DomU runs in HVM mode and loads Genode from an ISO image. Serial log output is printed to the console and graphical output is shown in an SDL window. The Xen DomU ist managed using the 'xl' command line tool and it is possible to add configuration options in the 'xen_args' variable in a run script. Common options are: - disabling the graphical output: append xen_args { sdl="0" } - configuring a network device: append xen_args { vif=\["model=e1000,mac=02:00:00:00:01:01,bridge=xenbr0"\] } - configuring USB input devices: append xen_args { usbdevice=\["mouse","keyboard"\] } Note: the 'xl' tool requires super-user permissions and interactive password input can be troublesome in combination with 'expect' and is not practical for automatic tests. For this reason, the current implementation assumes that no password input is needed when running 'sudo xl', which can be achieved by creating a file '/etc/sudoers.d/xl' with the content 'user ALL=(root) NOPASSWD: /usr/sbin/xl' (where 'user' is the Linux user name). Fixes #2504
188 lines
5.4 KiB
Plaintext
188 lines
5.4 KiB
Plaintext
#
|
|
# USB HID test
|
|
#
|
|
# By default, the run script runs interactively and reports any received USB
|
|
# input events to the console.
|
|
#
|
|
# When run with the '--autopilot' run option, the run script tests the USB
|
|
# input events generated by a 'Pro Micro' microcontroller.
|
|
#
|
|
# Pro Micro setup instructions
|
|
# ----------------------------
|
|
#
|
|
# Install prerequisites (example for Xubuntu 16.04):
|
|
#
|
|
# $ sudo apt-get install gcc-avr avr-libc avrdude
|
|
#
|
|
# Checkout and build the microcontroller software:
|
|
#
|
|
# $ git clone https://github.com/cproc/lufa.git
|
|
# $ cd lufa
|
|
# $ git checkout genode_usb_tests
|
|
# $ cd Demos/Device/ClassDriver/KeyboardMouseGenode
|
|
# $ make
|
|
#
|
|
# Connect the 'RST' pin with the 'GND' pin to hold the Pro Micro in the reset
|
|
# state.
|
|
#
|
|
# Connect the Pro Micro to the host PC
|
|
#
|
|
# Check the device file name with 'dmesg'. If it is not 'ttyACM0', change
|
|
# 'AVRDUDE_PORT' in 'makefile' accordingly.
|
|
#
|
|
# Release the RST/GND pin connection and within the next 8 seconds run:
|
|
#
|
|
# $ make avrdude
|
|
#
|
|
# Disconnect the Pro Micro or put it into reset state again to avoid unexpected
|
|
# input events on the host PC.
|
|
#
|
|
|
|
if { [have_spec linux] || [have_spec muen] } {
|
|
puts "Run script does not support Linux and Muen."
|
|
exit 0
|
|
}
|
|
|
|
if { [get_cmd_switch --autopilot] && [have_include "power_on/qemu"] } {
|
|
puts "Run script does not support autopilot mode on Qemu"
|
|
exit 0
|
|
}
|
|
|
|
if { [get_cmd_switch --autopilot] && ![have_spec x86_x64] } {
|
|
puts "Run script does not support autopilot mode on this platform"
|
|
exit 0
|
|
}
|
|
|
|
#
|
|
# Build
|
|
#
|
|
|
|
set build_components {
|
|
core init
|
|
drivers/timer
|
|
drivers/usb
|
|
test/input
|
|
}
|
|
|
|
lappend_if [have_spec gpio] build_components drivers/gpio
|
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
append_platform_drv_build_components
|
|
|
|
build $build_components
|
|
|
|
proc gpio_drv { } { if {[have_spec rpi] && [have_spec hw]} { return hw_gpio_drv }
|
|
if {[have_spec rpi] && [have_spec foc]} { return foc_gpio_drv }
|
|
return gpio_drv }
|
|
|
|
create_boot_directory
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
append config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_MEM"/>
|
|
<service name="IO_PORT"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<default caps="100"/>}
|
|
|
|
append_if [have_spec gpio] config "
|
|
<start name=\"[gpio_drv]\">
|
|
<resource name=\"RAM\" quantum=\"4M\"/>
|
|
<provides><service name=\"Gpio\"/></provides>
|
|
<config/>
|
|
</start>"
|
|
|
|
append_platform_drv_config
|
|
|
|
append config {
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
</start>
|
|
<start name="usb_drv">
|
|
<resource name="RAM" quantum="16M"/>
|
|
<provides><service name="Input"/></provides>
|
|
<config uhci="yes" ohci="yes" ehci="yes" xhci="yes">
|
|
<hid/>
|
|
</config>
|
|
</start>
|
|
<start name="test-input">
|
|
<resource name="RAM" quantum="1M"/>
|
|
</start>
|
|
</config>}
|
|
|
|
install_config $config
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
# generic modules
|
|
set boot_modules {
|
|
core ld.lib.so init timer usb_drv test-input
|
|
}
|
|
|
|
lappend_if [have_spec gpio] boot_modules [gpio_drv]
|
|
|
|
append_platform_drv_boot_modules
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
append qemu_args " -usb -usbdevice mouse -usbdevice keyboard"
|
|
append qemu_args " -device usb-ehci,id=ehci"
|
|
append xen_args { usbdevice=\["mouse","keyboard"\] }
|
|
|
|
if { [have_include "power_on/qemu"] || ![get_cmd_switch --autopilot] } { run_genode_until forever }
|
|
|
|
# autopilot test
|
|
|
|
run_genode_until {\[init -\> test-input\] Input event #1\t} 60
|
|
|
|
# remove everything before the first interesting line
|
|
regexp {(\[init -\> test-input\] Input event #1\t.*)} $output all output
|
|
|
|
run_genode_until {\[init -\> test-input\] Input event #12.*\n} 40 [output_spawn_id]
|
|
|
|
unify_output { number [0-9]+} ""
|
|
unify_output {(?n)on usb-dummy.*$} ""
|
|
unify_output {(?n)using .*$} ""
|
|
unify_output {(?n)^.*__wait_event.*$} ""
|
|
unify_output {(?n)^.*Failed to submit URB.*$} ""
|
|
unify_output {(?n)^.*dev_warn.*$} ""
|
|
filter_out_color_escape_sequences
|
|
trim_lines
|
|
|
|
compare_output_to {
|
|
[init -> test-input] Input event #1 type=PRESS code=45 rx=0 ry=0 ax=0 ay=0 key_cnt=1 KEY_X
|
|
[init -> test-input] Input event #2 type=RELEASE code=45 rx=0 ry=0 ax=0 ay=0 key_cnt=0 KEY_X
|
|
[init -> test-input] Input event #3 type=PRESS code=272 rx=0 ry=0 ax=0 ay=0 key_cnt=1 BTN_LEFT
|
|
[init -> test-input] Input event #4 type=MOTION code=0 rx=-1 ry=0 ax=0 ay=0 key_cnt=1
|
|
[init -> test-input] Input event #5 type=MOTION code=0 rx=0 ry=1 ax=0 ay=0 key_cnt=1
|
|
[init -> test-input] Input event #6 type=RELEASE code=272 rx=0 ry=0 ax=0 ay=0 key_cnt=0 BTN_LEFT
|
|
[init -> usb_drv] dev_info: USB disconnect, device
|
|
[init -> usb_drv] dev_info: new full-speed USB device
|
|
[init -> usb_drv] dev_info: D L
|
|
[init -> usb_drv] dev_info: input: USB HID v1.11 Keyboard [D L]
|
|
[init -> usb_drv] dev_info: D L
|
|
[init -> usb_drv] dev_info: input: USB HID v1.11 Mouse [D L]
|
|
[init -> test-input] Input event #7 type=PRESS code=45 rx=0 ry=0 ax=0 ay=0 key_cnt=1 KEY_X
|
|
[init -> test-input] Input event #8 type=RELEASE code=45 rx=0 ry=0 ax=0 ay=0 key_cnt=0 KEY_X
|
|
[init -> test-input] Input event #9 type=PRESS code=272 rx=0 ry=0 ax=0 ay=0 key_cnt=1 BTN_LEFT
|
|
[init -> test-input] Input event #10 type=MOTION code=0 rx=-1 ry=0 ax=0 ay=0 key_cnt=1
|
|
[init -> test-input] Input event #11 type=MOTION code=0 rx=0 ry=1 ax=0 ay=0 key_cnt=1
|
|
[init -> test-input] Input event #12 type=RELEASE code=272 rx=0 ry=0 ax=0 ay=0 key_cnt=0 BTN_LEFT
|
|
}
|