genode/repos/os/run/ahci_bench.run

134 lines
3.3 KiB
Plaintext
Raw Normal View History

2015-03-24 15:48:46 +01:00
set mke2fs [check_installed mke2fs]
set dd [check_installed dd]
2014-12-19 10:02:10 +01:00
#
# Build
#
set build_components {
core init
drivers/timer
drivers/ahci
drivers/platform
2015-03-24 15:48:46 +01:00
test/blk/bench
}
2014-12-19 10:02:10 +01:00
lappend_if [have_spec acpi] build_components drivers/acpi
lappend_if [have_spec pci] build_components drivers/pci
build $build_components
2015-03-24 15:48:46 +01:00
#
# Build EXT2-file-system image
#
catch { exec $dd if=/dev/zero of=bin/ext2.raw bs=1M count=16 }
catch { exec $mke2fs -F bin/ext2.raw }
create_boot_directory
#
2015-03-24 15:48:46 +01:00
# Generate config
#
set config {
<config>
<parent-provides>
<service name="ROM"/>
<service name="RAM"/>
<service name="IRQ"/>
<service name="IO_MEM"/>
2014-12-19 10:02:10 +01:00
<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>
2015-03-24 15:48:46 +01:00
<any-service> <parent/> <any-child/> </any-service>
</default-route>
<start name="timer">
<resource name="RAM" quantum="1M"/>
<provides><service name="Timer"/></provides>
2015-03-24 15:48:46 +01:00
</start>
}
2014-12-19 10:02:10 +01:00
append_if [expr ![have_spec acpi] && ![have_spec pci]] config {
<start name="platform_drv">
<resource name="RAM" quantum="1M"/>
<provides><service name="Regulator"/></provides>
</start>}
append_if [have_spec acpi] config {
<start name="acpi">
2015-03-24 15:48:46 +01:00
<resource name="RAM" quantum="6M" constrain_phys="yes"/>
2014-12-19 10:02:10 +01:00
<binary name="acpi_drv"/>
<provides>
<service name="PCI"/>
<service name="IRQ" />
</provides>
<route>
<any-service> <parent/> <any-child /> </any-service>
</route>
2015-03-24 15:48:46 +01:00
<config>
<policy label="acpi_drv"><pci class="ALL" /></policy>
<policy label="ahci"><pci class="AHCI" /></policy>
</config>
</start>
}
2014-12-19 10:02:10 +01:00
append_if [expr ![have_spec acpi] && [have_spec pci]] config {
<start name="pci_drv">
<resource name="RAM" quantum="3M" constrain_phys="yes"/>
2014-12-19 10:02:10 +01:00
<provides> <service name="PCI"/> </provides>
2015-03-24 15:48:46 +01:00
<config>
<policy label="ahci"/><pci class="AHCI" /></policy>
</config>
</start> }
2015-03-24 15:48:46 +01:00
append config {
<start name="ahci">
<binary name="ahci_drv" />
<resource name="RAM" quantum="10M" />
<provides><service name="Block" /></provides>
<config>
2015-03-24 15:48:46 +01:00
<policy label="test-ahci" device="0" />
</config>
</start>
2015-03-24 15:48:46 +01:00
<start name="test-ahci">
<binary name="test-blk-bench" />
<resource name="RAM" quantum="5M" />
<config>
<libc stdout="/dev/log">
<vfs>
<dir name="dev"> <log/> </dir>
</vfs>
</libc>
</config>
<route>
2015-03-24 15:48:46 +01:00
<service name="Block"><child name="ahci"/></service>
<any-service> <parent/> <any-child /> </any-service>
</route>
</start>
</config> }
install_config $config
#
# Boot modules
#
2015-03-24 15:48:46 +01:00
set boot_modules { core init timer ahci_drv test-blk-bench libc.lib.so
ld.lib.so }
2014-12-19 10:02:10 +01:00
lappend_if [expr ![have_spec acpi] && ![have_spec pci]] boot_modules platform_drv
lappend_if [have_spec pci] boot_modules pci_drv
2015-03-24 15:48:46 +01:00
lappend_if [have_spec nova] boot_modules pci_device_pd
2014-12-19 10:02:10 +01:00
lappend_if [have_spec acpi] boot_modules acpi_drv
build_boot_image $boot_modules
2015-03-24 15:48:46 +01:00
append qemu_args " -nographic -m 256 "
append qemu_args " -drive id=disk,file=bin/ext2.raw,if=none -device ahci,id=ahci -device ide-hd,drive=disk,bus=ahci.0 -boot d"
append qemu_args " -drive id=cd,file=[run_dir]/../ahci_bench.iso,if=none,media=cdrom -device ide-cd,drive=cd,bus=ahci.1"
2015-03-24 15:48:46 +01:00
run_genode_until "Done\n" 100