2015-05-07 11:09:25 +00:00
|
|
|
|
|
|
|
set mke2fs [check_installed mke2fs]
|
|
|
|
set dd [check_installed dd]
|
|
|
|
|
|
|
|
#
|
|
|
|
# Build
|
|
|
|
#
|
|
|
|
set build_components {
|
|
|
|
core init
|
|
|
|
drivers/timer
|
|
|
|
drivers/ahci
|
2017-05-14 15:02:59 +00:00
|
|
|
server/report_rom
|
2015-05-07 11:09:25 +00:00
|
|
|
test/blk/cli
|
|
|
|
}
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
|
|
append_platform_drv_build_components
|
2015-05-07 11:09:25 +00:00
|
|
|
|
|
|
|
build $build_components
|
2015-06-08 07:05:32 +00:00
|
|
|
|
2015-05-07 11:09:25 +00: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
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generate config
|
|
|
|
#
|
|
|
|
set 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>
|
2017-05-14 15:02:59 +00:00
|
|
|
<default caps="100"/>
|
2015-05-07 11:09:25 +00:00
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Timer"/></provides>
|
|
|
|
</start>}
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
append_platform_drv_config
|
2015-05-07 11:09:25 +00:00
|
|
|
|
|
|
|
append config {
|
2017-05-14 15:02:59 +00:00
|
|
|
<start name="ahci_report_rom">
|
|
|
|
<binary name="report_rom"/>
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides> <service name="Report"/> <service name="ROM"/> </provides>
|
|
|
|
<config verbose="yes"/>
|
|
|
|
</start>
|
2015-06-08 07:05:32 +00:00
|
|
|
<start name="ahci_drv">
|
2015-05-07 11:09:25 +00:00
|
|
|
<resource name="RAM" quantum="10M" />
|
|
|
|
<provides><service name="Block" /></provides>
|
2017-05-14 15:02:59 +00:00
|
|
|
<config atapi="yes">
|
|
|
|
<report ports="yes"/>
|
2017-07-31 17:53:34 +00:00
|
|
|
<policy label_prefix="test-ahci" device="0" writeable="yes" />
|
2015-05-07 11:09:25 +00:00
|
|
|
</config>
|
2017-05-14 15:02:59 +00:00
|
|
|
<route>
|
|
|
|
<service name="Report"> <child name="ahci_report_rom"/> </service>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</route>
|
2015-05-07 11:09:25 +00:00
|
|
|
</start>
|
|
|
|
<start name="test-ahci">
|
|
|
|
<binary name="test-blk-cli" />
|
|
|
|
<resource name="RAM" quantum="50M" />
|
|
|
|
<config test_size="100M"></config>
|
|
|
|
<route>
|
2015-06-08 07:05:32 +00:00
|
|
|
<service name="Block"><child name="ahci_drv"/></service>
|
2015-05-07 11:09:25 +00:00
|
|
|
<any-service> <parent/> <any-child /> </any-service>
|
|
|
|
</route>
|
|
|
|
</start>
|
|
|
|
</config> }
|
|
|
|
|
|
|
|
install_config $config
|
|
|
|
|
|
|
|
#
|
|
|
|
# Boot modules
|
|
|
|
#
|
2017-05-14 15:02:59 +00:00
|
|
|
set boot_modules { core ld.lib.so init timer ahci_drv report_rom test-blk-cli }
|
2015-05-07 11:09:25 +00:00
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
append_platform_drv_boot_modules
|
2015-05-07 11:09:25 +00:00
|
|
|
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
2017-05-14 15:02:59 +00:00
|
|
|
append qemu_args " -nographic -device ahci,id=ahci -boot d "
|
|
|
|
append qemu_args " -drive id=disk,file=bin/ext2.raw,format=raw,if=none -device ide-hd,drive=disk,bus=ahci.0 "
|
|
|
|
append qemu_args " -drive id=cd,file=[run_dir]/../ahci_blk.iso,if=none,media=cdrom -device ide-cd,drive=cd,bus=ahci.1 "
|
|
|
|
append qemu_args " -drive id=disk2,file=bin/ext2.raw,format=raw,if=none -device ide-hd,drive=disk2,bus=ahci.2 "
|
2015-05-07 11:09:25 +00:00
|
|
|
|
|
|
|
run_genode_until "Tests finished successfully!" 100
|
2017-03-21 11:33:27 +00:00
|
|
|
|
|
|
|
exec rm -f bin/ext2.raw
|