2015-06-05 11:54:33 +00:00
|
|
|
#
|
|
|
|
# Build
|
|
|
|
#
|
|
|
|
|
2017-02-08 14:55:21 +00:00
|
|
|
if {[have_spec odroid_xu] || [have_spec wand_quad] || [have_spec zynq] || [have_spec imx53] && [have_spec foc]} {
|
2017-01-31 11:12:18 +00:00
|
|
|
puts "\n Run script is not supported on this platform. \n";
|
|
|
|
exit 0
|
|
|
|
}
|
2015-06-05 11:54:33 +00:00
|
|
|
|
2017-03-10 14:39:47 +00:00
|
|
|
if {[get_cmd_switch --autopilot] && [have_spec linux]} {
|
|
|
|
puts "\nAutopilot run is not supported on this platform\n"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2015-06-05 11:54:33 +00:00
|
|
|
set build_components { core init test/fb_bench drivers/framebuffer drivers/timer }
|
|
|
|
|
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
|
|
append_platform_drv_build_components
|
|
|
|
|
2017-01-31 11:03:57 +00:00
|
|
|
lappend_if [have_spec gpio] build_components drivers/gpio
|
|
|
|
|
2015-06-05 11:54:33 +00:00
|
|
|
build $build_components
|
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generate config
|
|
|
|
#
|
|
|
|
|
2017-02-08 12:28:11 +00:00
|
|
|
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 }
|
|
|
|
|
2015-06-05 11:54:33 +00:00
|
|
|
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>
|
2017-05-07 20:36:11 +00:00
|
|
|
<default caps="100"/>
|
2015-06-05 11:54:33 +00:00
|
|
|
|
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Timer"/></provides>
|
|
|
|
</start>}
|
|
|
|
|
2017-02-08 12:28:11 +00:00
|
|
|
append_if [have_spec gpio] config "
|
2017-05-07 20:36:11 +00:00
|
|
|
<start name=\"[gpio_drv]\" caps=\"140\">
|
2017-02-08 12:28:11 +00:00
|
|
|
<resource name=\"RAM\" quantum=\"4M\"/>
|
|
|
|
<provides><service name=\"Gpio\"/></provides>
|
2017-01-31 11:03:57 +00:00
|
|
|
<config/>
|
2017-02-08 12:28:11 +00:00
|
|
|
</start>"
|
2017-01-31 11:03:57 +00:00
|
|
|
|
2015-06-05 11:54:33 +00:00
|
|
|
append_if [have_spec sdl] config {
|
2018-07-04 16:48:04 +00:00
|
|
|
<start name="fb_sdl" ld="no">
|
2015-06-05 11:54:33 +00:00
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides>
|
|
|
|
<service name="Input"/>
|
|
|
|
<service name="Framebuffer"/>
|
|
|
|
</provides>
|
|
|
|
</start>}
|
|
|
|
|
|
|
|
append_platform_drv_config
|
|
|
|
|
|
|
|
append_if [have_spec framebuffer] config {
|
2017-07-04 12:17:38 +00:00
|
|
|
<start name="fb_drv" caps="150">
|
2017-02-08 14:55:21 +00:00
|
|
|
<resource name="RAM" quantum="20M"/>
|
2015-06-05 11:54:33 +00:00
|
|
|
<provides><service name="Framebuffer"/></provides>
|
|
|
|
</start>}
|
|
|
|
|
|
|
|
append config {
|
|
|
|
<start name="test-fb_bench">
|
2017-03-16 15:56:16 +00:00
|
|
|
<!--
|
|
|
|
- We need this big amount of RAM because the VESA driver reports a
|
|
|
|
- large buffer on some hardware and the test mirrors this buffer in
|
|
|
|
- RAM.
|
|
|
|
-->
|
|
|
|
<resource name="RAM" quantum="72M"/>
|
2015-06-05 11:54:33 +00:00
|
|
|
</start>
|
|
|
|
</config>}
|
|
|
|
|
|
|
|
install_config $config
|
|
|
|
|
|
|
|
#
|
|
|
|
# Boot modules
|
|
|
|
#
|
|
|
|
|
2017-01-17 11:58:00 +00:00
|
|
|
set boot_modules { core ld.lib.so init timer test-fb_bench }
|
2015-06-05 11:54:33 +00:00
|
|
|
|
|
|
|
append_platform_drv_boot_modules
|
|
|
|
|
2017-01-17 11:58:00 +00:00
|
|
|
lappend_if [have_spec sdl] boot_modules fb_sdl
|
|
|
|
lappend_if [have_spec framebuffer] boot_modules fb_drv
|
2017-02-08 12:28:11 +00:00
|
|
|
lappend_if [have_spec gpio] boot_modules [gpio_drv]
|
2015-06-05 11:54:33 +00:00
|
|
|
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
2017-01-31 12:30:44 +00:00
|
|
|
# disable QEMU graphic to enable testing on our machines without SDL and X
|
2017-05-23 13:05:55 +00:00
|
|
|
append qemu_args "-nographic "
|
2017-01-31 12:30:44 +00:00
|
|
|
|
2017-08-14 06:19:24 +00:00
|
|
|
run_genode_until {.*--- Framebuffer benchmark finished ---.*\n} 40
|