2012-05-24 19:31:02 +00:00
|
|
|
#
|
|
|
|
# Build
|
|
|
|
#
|
|
|
|
|
|
|
|
set build_components {
|
|
|
|
core init
|
|
|
|
drivers/timer
|
|
|
|
drivers/usb
|
|
|
|
test/input
|
|
|
|
}
|
|
|
|
|
2015-05-26 18:12:17 +00:00
|
|
|
lappend_if [have_spec gpio] build_components drivers/gpio
|
|
|
|
|
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
|
|
append_platform_drv_build_components
|
2013-02-18 13:53:01 +00:00
|
|
|
|
2012-05-24 19:31:02 +00:00
|
|
|
build $build_components
|
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generate config
|
|
|
|
#
|
|
|
|
|
|
|
|
append config {
|
|
|
|
<config>
|
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
|
|
|
<service name="RAM"/>
|
|
|
|
<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>
|
2013-02-18 13:53:01 +00:00
|
|
|
</default-route>}
|
|
|
|
|
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>}
|
|
|
|
|
2015-05-26 18:12:17 +00:00
|
|
|
append_platform_drv_config
|
2013-02-18 13:53:01 +00:00
|
|
|
|
|
|
|
append config {
|
2012-05-24 19:31:02 +00:00
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Timer"/></provides>
|
|
|
|
</start>
|
|
|
|
<start name="usb_drv">
|
2016-05-18 16:51:11 +00:00
|
|
|
<resource name="RAM" quantum="16M"/>
|
2012-05-24 19:31:02 +00:00
|
|
|
<provides><service name="Input"/></provides>
|
2013-05-17 12:40:48 +00:00
|
|
|
<config uhci="yes" ehci="yes" xhci="yes">
|
2012-05-24 19:31:02 +00:00
|
|
|
<hid/>
|
|
|
|
</config>
|
|
|
|
</start>
|
|
|
|
<start name="test-input">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
</start>
|
|
|
|
</config>}
|
|
|
|
|
|
|
|
install_config $config
|
|
|
|
|
|
|
|
#
|
|
|
|
# Boot modules
|
|
|
|
#
|
|
|
|
|
|
|
|
# generic modules
|
|
|
|
set boot_modules {
|
2013-02-18 13:53:01 +00:00
|
|
|
core init timer usb_drv test-input
|
2012-05-24 19:31:02 +00:00
|
|
|
}
|
|
|
|
|
2013-11-13 13:10:49 +00:00
|
|
|
lappend_if [have_spec gpio] boot_modules gpio_drv
|
2013-02-18 13:53:01 +00:00
|
|
|
|
2015-05-26 18:12:17 +00:00
|
|
|
append_platform_drv_boot_modules
|
|
|
|
|
2012-05-24 19:31:02 +00:00
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
|
|
|
append qemu_args " -m 256 -usb -usbdevice mouse -usbdevice keyboard"
|
2015-04-13 12:29:00 +00:00
|
|
|
append qemu_args " -device usb-ehci,id=ehci"
|
2012-05-24 19:31:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
run_genode_until forever
|