mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
bf62d6b896
Since the timer and timeout handling is part of the base library (the dynamic linker), it belongs to the base repository. Besides moving the timer and its related infrastructure (alarm, timeout libs, tests) to the base repository, this patch also moves the timer from the 'drivers' subdirectory directly to 'src' and disamibuates the timer's build locations for the various kernels. Otherwise the different timer implementations could interfere with each other when using one build directory with multiple kernels. Note that this patch changes the include paths for the former os/timer, os/alarm.h, os/duration.h, and os/timed_semaphore.h to base/. Issue #3101
223 lines
6.1 KiB
Plaintext
223 lines
6.1 KiB
Plaintext
assert_spec acpi
|
|
|
|
if {
|
|
![have_spec hw] &&
|
|
![have_spec nova] &&
|
|
![have_spec sel4]
|
|
} {
|
|
puts "Platform is unsupported."
|
|
exit 0
|
|
}
|
|
|
|
set build_components {
|
|
core init timer
|
|
drivers/input
|
|
server/acpi_input
|
|
server/dynamic_rom
|
|
server/input_merger
|
|
server/report_rom
|
|
app/acpica
|
|
test/input
|
|
}
|
|
|
|
set use_acpica_as_acpi_drv 0
|
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
|
|
if {!$use_acpica_as_acpi_drv} {
|
|
|
|
# override default platform driver policy
|
|
proc platform_drv_policy {} {
|
|
return {
|
|
<policy label_prefix="ps2_drv"> <device name="PS2"/> </policy>
|
|
<policy label_prefix="acpica"> <pci class="ALL"/> </policy>}
|
|
}
|
|
|
|
# add routing information
|
|
proc platform_drv_add_routing {} {
|
|
return {
|
|
<service name="ROM" label="acpi_ready"> <child name="acpi_state"/> </service>}
|
|
}
|
|
|
|
# override default config to react on 'acpi_ready' ROM change
|
|
proc platform_drv_config_config {} {
|
|
return {
|
|
<config acpi_ready="yes">}
|
|
}
|
|
}
|
|
|
|
append_platform_drv_build_components
|
|
|
|
build $build_components
|
|
|
|
create_boot_directory
|
|
|
|
set config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="IRQ"/>
|
|
<service name="ROM"/>
|
|
<service name="LOG"/>
|
|
<service name="RM"/>
|
|
<service name="PD"/>
|
|
<service name="CPU"/>
|
|
<service name="IO_MEM" />
|
|
<service name="IO_PORT" />
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<default caps="100"/>
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="2M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
</start>}
|
|
|
|
append_if [expr !$use_acpica_as_acpi_drv] config {
|
|
<start name="acpica" caps="150">
|
|
<resource name="RAM" quantum="5M"/>
|
|
<config ld_verbose="yes" reset="no" poweroff="no" report="yes" acpi_ready="yes">
|
|
</config>
|
|
<route>
|
|
<service name="ROM" label="system"> <child name="dynamic_rom"/> </service>
|
|
<service name="Report"> <child name="acpi_state"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</route>
|
|
</start>}
|
|
|
|
append config {
|
|
<start name="acpi_state">
|
|
<binary name="report_rom"/>
|
|
<resource name="RAM" quantum="2M"/>
|
|
<provides>
|
|
<service name="ROM" />
|
|
<service name="Report" />
|
|
</provides>
|
|
<config verbose="yes">
|
|
<policy label="platform_drv -> acpi_ready" report="acpica -> acpi_ready"/>
|
|
<policy label="acpi_input -> acpi_ac" report="acpica -> acpi_ac"/>
|
|
<policy label="acpi_input -> acpi_battery" report="acpica -> acpi_battery"/>
|
|
<policy label="acpi_input -> acpi_ec" report="acpica -> acpi_ec"/>
|
|
<policy label="acpi_input -> acpi_fixed" report="acpica -> acpi_fixed"/>
|
|
<policy label="acpi_input -> acpi_lid" report="acpica -> acpi_lid"/>
|
|
</config>
|
|
<route>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
</start>}
|
|
|
|
append config {
|
|
<start name="dynamic_rom">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<provides><service name="ROM"/></provides>
|
|
<config verbose="yes">
|
|
<rom name="system">
|
|
<inline description="set system state to 'normal'">
|
|
<system state="normal"/>
|
|
</inline>
|
|
<sleep milliseconds="5000" />
|
|
<inline description="set system state to 'reset'">
|
|
<system state="reset"/>
|
|
</inline>
|
|
<!--
|
|
<inline description="set system state to 'poweroff'">
|
|
<system state="poweroff"/>
|
|
</inline>
|
|
-->
|
|
<sleep milliseconds="500" />
|
|
</rom>
|
|
</config>
|
|
</start>}
|
|
|
|
append config {
|
|
<start name="input_merger">
|
|
<resource name="RAM" quantum="1M" />
|
|
<provides> <service name="Input" /> </provides>
|
|
<config>
|
|
<input label="ps2" />
|
|
<input label="acpi" />
|
|
</config>
|
|
<route>
|
|
<service name="Input" label="ps2"> <child name="ps2_drv" /> </service>
|
|
<service name="Input" label="acpi"> <child name="acpi_input" /> </service>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
</start>}
|
|
|
|
append config {
|
|
<start name="ps2_drv">
|
|
<resource name="RAM" quantum="2M"/>
|
|
<provides><service name="Input"/></provides>
|
|
<config verbose_keyboard="no" verbose_mouse="no" verbose_scancodes="no"/>
|
|
<route>
|
|
<service name="Platform"> <child name="platform_drv"/> </service>
|
|
<service name="Timer"> <child name="timer"/> </service>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
</start>
|
|
|
|
<start name="test-input">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<route>
|
|
<service name="Input"> <child name="input_merger"/> </service>
|
|
<service name="Timer"> <child name="timer"/> </service>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
</start>}
|
|
|
|
append config {
|
|
<start name="acpi_input">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Input"/></provides>
|
|
<config>
|
|
<!-- example mapping - adapt to your target notebook !!! -->
|
|
<!-- as="PRESS_RELEASE" is default if nothing specified -->
|
|
<map acpi="ec" value="25" to_key="KEY_VENDOR"/>
|
|
<map acpi="ec" value="20" to_key="KEY_BRIGHTNESSUP"/>
|
|
<map acpi="ec" value="21" to_key="KEY_BRIGHTNESSDOWN"/>
|
|
<map acpi="fixed" value="0" to_key="KEY_POWER" as="PRESS_RELEASE"/>
|
|
<map acpi="lid" value="CLOSED" to_key="KEY_SLEEP" as="PRESS"/>
|
|
<map acpi="lid" value="OPEN" to_key="KEY_SLEEP" as="RELEASE"/>
|
|
<map acpi="ac" value="ONLINE" to_key="KEY_WAKEUP"/>
|
|
<map acpi="ac" value="OFFLINE" to_key="KEY_SLEEP"/>
|
|
<map acpi="battery" value="0" to_key="KEY_BATTERY"/>
|
|
</config>
|
|
<route>
|
|
<service name="ROM" label="acpi_ac"> <child name="acpi_state"/> </service>
|
|
<service name="ROM" label="acpi_battery"> <child name="acpi_state"/> </service>
|
|
<service name="ROM" label="acpi_ec"> <child name="acpi_state"/> </service>
|
|
<service name="ROM" label="acpi_fixed"> <child name="acpi_state"/> </service>
|
|
<service name="ROM" label="acpi_lid"> <child name="acpi_state"/> </service>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
</start>}
|
|
|
|
append_platform_drv_config
|
|
|
|
append config {
|
|
</config>
|
|
}
|
|
|
|
install_config $config
|
|
|
|
set boot_modules {
|
|
core init
|
|
ld.lib.so
|
|
timer
|
|
ps2_drv
|
|
input_merger
|
|
report_rom
|
|
dynamic_rom
|
|
acpica
|
|
acpi_input
|
|
test-input
|
|
}
|
|
|
|
append_platform_drv_boot_modules
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
append qemu_args "-nographic "
|
|
|
|
run_genode_until {\[init -\> acpi.*SCI IRQ:.*\n} 30
|