2012-05-24 19:31:02 +00:00
|
|
|
#
|
|
|
|
# \brief Test for using the Block (Storage) service of usb_drv
|
|
|
|
# \author Christian Prochaska
|
|
|
|
# \date 2011-06-24
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Build
|
|
|
|
#
|
|
|
|
|
2013-09-12 19:05:39 +00:00
|
|
|
set build_components {
|
2012-05-24 19:31:02 +00:00
|
|
|
core init
|
|
|
|
drivers/timer
|
|
|
|
drivers/usb
|
2013-12-13 10:54:50 +00:00
|
|
|
test/blk/cli
|
2012-05-24 19:31:02 +00:00
|
|
|
}
|
|
|
|
|
2013-09-12 19:05:39 +00:00
|
|
|
lappend_if [have_spec acpi] build_components drivers/acpi
|
|
|
|
lappend_if [have_spec pci] build_components drivers/pci
|
|
|
|
lappend_if [have_spec pci] build_components drivers/pci/device_pd
|
|
|
|
lappend_if [have_spec platform_arndale] build_components drivers/platform
|
2013-11-13 13:10:49 +00:00
|
|
|
lappend_if [have_spec gpio] build_components drivers/gpio
|
2013-08-07 10:48:03 +00:00
|
|
|
|
2013-09-12 19:05:39 +00:00
|
|
|
build $build_components
|
2013-04-17 15:58:46 +00:00
|
|
|
|
2012-05-24 19:31:02 +00:00
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generate config
|
|
|
|
#
|
|
|
|
|
|
|
|
set config {
|
|
|
|
<config verbose="yes">
|
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
|
|
|
<service name="RAM"/>
|
|
|
|
<service name="IRQ"/>
|
|
|
|
<service name="IO_MEM"/>
|
|
|
|
<service name="IO_PORT"/>
|
|
|
|
<service name="CAP"/>
|
|
|
|
<service name="PD"/>
|
|
|
|
<service name="RM"/>
|
|
|
|
<service name="CPU"/>
|
|
|
|
<service name="LOG"/>
|
|
|
|
<service name="SIGNAL"/>
|
|
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
2013-04-17 15:58:46 +00:00
|
|
|
</default-route>}
|
|
|
|
|
|
|
|
append_if [have_spec acpi] config {
|
|
|
|
<start name="acpi">
|
|
|
|
<resource name="RAM" quantum="8M"/>
|
|
|
|
<binary name="acpi_drv"/>
|
|
|
|
<provides>
|
|
|
|
<service name="PCI"/>
|
|
|
|
<service name="IRQ" />
|
|
|
|
</provides>
|
|
|
|
<route>
|
|
|
|
<service name="PCI"> <any-child /> </service>
|
|
|
|
<any-service> <parent/> <any-child /> </any-service>
|
|
|
|
</route>
|
|
|
|
</start>}
|
|
|
|
|
|
|
|
append_if [expr ![have_spec acpi] && [have_spec pci]] config {
|
|
|
|
<start name="pci_drv">
|
|
|
|
<resource name="RAM" quantum="5M"/>
|
|
|
|
<provides><service name="PCI"/></provides>
|
|
|
|
</start>}
|
|
|
|
|
2013-06-25 12:19:55 +00:00
|
|
|
append_if [have_spec platform_arndale] config {
|
|
|
|
<start name="platform_drv">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Regulator"/></provides>
|
|
|
|
</start>}
|
|
|
|
|
2013-11-13 13:10:49 +00:00
|
|
|
append_if [have_spec gpio] config {
|
|
|
|
<start name="gpio_drv">
|
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides><service name="Gpio"/></provides>
|
|
|
|
<config/>
|
|
|
|
</start>}
|
|
|
|
|
2013-04-17 15:58:46 +00:00
|
|
|
append config {
|
2012-05-24 19:31:02 +00:00
|
|
|
<start name="timer">
|
2013-04-17 15:58:46 +00:00
|
|
|
<resource name="RAM" quantum="1M"/>
|
2012-05-24 19:31:02 +00:00
|
|
|
<provides> <service name="Timer"/> </provides>
|
|
|
|
</start>
|
|
|
|
<start name="usb_drv">
|
2013-10-24 13:11:15 +00:00
|
|
|
<resource name="RAM" quantum="12M"/>
|
2012-05-24 19:31:02 +00:00
|
|
|
<provides> <service name="Block"/> </provides>
|
2013-05-17 12:40:48 +00:00
|
|
|
<config uhci="yes" ehci="yes" xhci="yes"><storage /></config>
|
2012-05-24 19:31:02 +00:00
|
|
|
</start>
|
|
|
|
<start name="test-usb">
|
2013-04-17 15:58:46 +00:00
|
|
|
<resource name="RAM" quantum="2M" />
|
2013-12-13 10:54:50 +00:00
|
|
|
<binary name="test-blk-cli" />
|
2012-05-24 19:31:02 +00:00
|
|
|
</start>
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
install_config $config
|
|
|
|
|
|
|
|
#
|
|
|
|
# Boot modules
|
|
|
|
#
|
|
|
|
|
|
|
|
# generic modules
|
|
|
|
set boot_modules {
|
2013-12-13 10:54:50 +00:00
|
|
|
core init timer usb_drv test-blk-cli
|
2012-05-24 19:31:02 +00:00
|
|
|
}
|
|
|
|
|
2013-06-25 12:19:55 +00:00
|
|
|
lappend_if [have_spec acpi] boot_modules acpi_drv
|
|
|
|
lappend_if [have_spec pci] boot_modules pci_drv
|
|
|
|
lappend_if [have_spec nova] boot_modules pci_device_pd
|
|
|
|
lappend_if [have_spec platform_arndale] boot_modules platform_drv
|
2012-05-24 19:31:02 +00:00
|
|
|
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
|
|
|
#
|
|
|
|
# Execute test case
|
|
|
|
#
|
|
|
|
set disk_image "bin/test.img"
|
|
|
|
set cmd "dd if=/dev/zero of=$disk_image bs=1024 count=65536"
|
|
|
|
puts "creating disk image:\n$cmd"
|
|
|
|
catch { exec sh -c $cmd }
|
|
|
|
|
|
|
|
set cmd "mkfs.vfat -F32 $disk_image"
|
|
|
|
puts "formating disk image with vfat file system:\$cmd"
|
|
|
|
catch { exec sh -c $cmd }
|
|
|
|
|
|
|
|
#
|
|
|
|
# Qemu opts for UHCI
|
|
|
|
#
|
|
|
|
#append qemu_args " -m 64 -nographic -usbdevice disk::$disk_image -boot order=d"
|
|
|
|
|
|
|
|
#
|
|
|
|
# Qemu opts for EHCI
|
|
|
|
#
|
|
|
|
append qemu_args "-drive if=none,id=disk,file=$disk_image"
|
|
|
|
append qemu_args { \
|
|
|
|
-m 64 -nographic -M pc \
|
|
|
|
-device usb-ehci,id=ehci \
|
|
|
|
-device usb-storage,bus=ehci.0,drive=disk \
|
|
|
|
-boot order=d }
|
|
|
|
|
2013-12-13 10:54:50 +00:00
|
|
|
run_genode_until {.*child exited with exit value 0.*} 100
|
2012-05-24 19:31:02 +00:00
|
|
|
|
|
|
|
puts "\ntest succeeded\n"
|
|
|
|
|
|
|
|
# vi: set ft=tcl :
|