mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-24 07:46:42 +00:00
bf62d6b896
Since the timer and timeout handling is part of the base library (the dynamic linker), it belongs to the base repository. Besides moving the timer and its related infrastructure (alarm, timeout libs, tests) to the base repository, this patch also moves the timer from the 'drivers' subdirectory directly to 'src' and disamibuates the timer's build locations for the various kernels. Otherwise the different timer implementations could interfere with each other when using one build directory with multiple kernels. Note that this patch changes the include paths for the former os/timer, os/alarm.h, os/duration.h, and os/timed_semaphore.h to base/. Issue #3101
127 lines
2.9 KiB
Plaintext
127 lines
2.9 KiB
Plaintext
#
|
|
# Smartcard test
|
|
#
|
|
# NOTE: The vendor id and product id of the USB card reader to be used must be
|
|
# configured for the application and for the USB driver.
|
|
#
|
|
|
|
if { [have_include "power_on/qemu"] || [have_spec linux] || [have_spec muen] } {
|
|
puts "Run script does not support Qemu, Linux, and Muen"
|
|
exit 0
|
|
}
|
|
|
|
if { [get_cmd_switch --autopilot] && ![have_spec x86_64] } {
|
|
puts "Run script does not support autopilot mode on this platform"
|
|
exit 0
|
|
}
|
|
|
|
#
|
|
# Build
|
|
#
|
|
|
|
set build_components {
|
|
core init timer
|
|
drivers/usb
|
|
test/smartcard
|
|
}
|
|
|
|
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 }
|
|
|
|
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
|
|
|
|
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" caps="120">
|
|
<resource name="RAM" quantum="16M"/>
|
|
<provides><service name="Usb"/></provides>
|
|
<config uhci="yes" ehci="yes" xhci="yes" bios_handoff="no">
|
|
<raw>
|
|
<policy label="test-smartcard -> usb_device" vendor_id="0x04e6" product_id="0x5116"/>
|
|
</raw>
|
|
</config>
|
|
</start>
|
|
<start name="test-smartcard" caps="130">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<config>
|
|
<vfs>
|
|
<dir name="dev"> <log/> <inline name="rtc">2018-01-01 00:01</inline> </dir>
|
|
<dir name="ifd-ccid.bundle">
|
|
<dir name="Contents">
|
|
<rom name="Info.plist"/>
|
|
</dir>
|
|
</dir>
|
|
<inline name="config.pcsc-lite">
|
|
<config vendor_id="0x04e6" product_id="0x5116"/>
|
|
</inline>
|
|
</vfs>
|
|
<libc stdout="/dev/log" stderr="/dev/log" rtc="/dev/rtc"/>
|
|
</config>
|
|
</start>
|
|
</config>}
|
|
|
|
install_config $config
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
# generic modules
|
|
set boot_modules {
|
|
core init timer usb_drv test-smartcard
|
|
ld.lib.so pcsc-lite.lib.so ccid.lib.so libusb.lib.so
|
|
libc.lib.so vfs.lib.so libm.lib.so libc_pipe.lib.so posix.lib.so
|
|
Info.plist
|
|
}
|
|
|
|
lappend_if [have_spec gpio] boot_modules [gpio_drv]
|
|
|
|
append_platform_drv_boot_modules
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
run_genode_until { Response: 62 0A 82 01 38 83 02 3F 00 8A 01 05 90 00} 30
|
|
|
|
exec rm bin/Info.plist
|