mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-29 18:18:54 +00:00
5a1cef6381
This patch unconditionally applies the labeling of sessions and thereby removes the most common use case of 'Child_policy::filter_session_args'. Furthermore, the patch removes an ambiguity of the session labels of sessions created by the parent of behalf of its child, e.g., the PD session created as part of 'Child' now has the label "<child-name>" whereas an unlabeled PD-session request originating from the child has the label "<child-name> -> ". This way, the routing-policy of 'Child_policy::resolve_session_request' can differentiate both cases. As a consequence, the stricter labeling must now be considered wherever a precise label was specified as a key for a session route or a server- side policy selection. The simplest way to adapt those cases is to use a 'label_prefix' instead of the 'label' attribute. Alternatively, the 'label' attribute may used by appending " -> " (note the whitespace). Fixes #2171
227 lines
6.4 KiB
Plaintext
227 lines
6.4 KiB
Plaintext
assert_spec acpi
|
|
|
|
if {
|
|
![have_spec hw] &&
|
|
![have_spec nova]
|
|
} {
|
|
puts "Platform is unsupported."
|
|
exit 0
|
|
}
|
|
|
|
set build_components {
|
|
core init
|
|
drivers/input
|
|
drivers/timer
|
|
server/acpi_input
|
|
server/dynamic_rom
|
|
server/input_merger
|
|
server/report_rom
|
|
app/acpica
|
|
test/input
|
|
}
|
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
|
|
# 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 to dynamically generate change of 'system' ROM
|
|
proc platform_drv_add_routing {} {
|
|
return {
|
|
<service name="ROM" label="system"> <child name="dynamic_rom"/> </service>
|
|
<service name="ROM" label="acpi_ready"> <child name="acpi_state"/> </service>}
|
|
}
|
|
|
|
# override default config to react on 'system' ROM changes for reset
|
|
proc platform_drv_config_config {} {
|
|
return {
|
|
<config acpi="yes" system="yes">}
|
|
}
|
|
|
|
append_platform_drv_build_components
|
|
|
|
build $build_components
|
|
|
|
create_boot_directory
|
|
|
|
set config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="IRQ"/>
|
|
<service name="RAM"/>
|
|
<service name="ROM"/>
|
|
<service name="LOG"/>
|
|
<service name="RM"/>
|
|
<service name="IO_MEM" />
|
|
<service name="IO_PORT" />
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="2M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
</start>
|
|
<start name="acpica">
|
|
<!-- <binary name="debug-acpica"/> -->
|
|
<resource name="RAM" quantum="4M"/>
|
|
<config ld_verbose="yes" reset="no" poweroff="no" report="yes" acpi_ready="yes">
|
|
<!-- required for "debug-acpica":
|
|
<libc stdout="/dev/log">
|
|
<vfs> <dir name="dev"> <log/> </dir> </vfs>
|
|
</libc>
|
|
-->
|
|
</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>
|
|
<service name="LOG"> <parent/> </service>
|
|
<service name="SIGNAL"> <parent/> </service>
|
|
<service name="CAP"> <parent/> </service>
|
|
<service name="RM"> <parent/> </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="LOG"> <parent/> </service>
|
|
<service name="Input" label="ps2"> <child name="ps2_drv" /> </service>
|
|
<service name="Input" label="acpi"> <child name="acpi_input" /> </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="LOG"> <parent/> </service>
|
|
<service name="RM"> <parent/> </service>
|
|
<service name="Platform"> <child name="platform_drv"/> </service>
|
|
</route>
|
|
</start>
|
|
|
|
<start name="test-input">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<route>
|
|
<service name="LOG"> <parent/> </service>
|
|
<service name="RM"> <parent/> </service>
|
|
|
|
<service name="Input"> <child name="input_merger"/> </service>
|
|
<service name="Timer"> <child name="timer"/> </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>
|
|
<service name="LOG"> <parent/> </service>
|
|
</route>
|
|
</start>}
|
|
|
|
append_platform_drv_config
|
|
|
|
append config {
|
|
</config>
|
|
}
|
|
|
|
install_config $config
|
|
|
|
set boot_modules {
|
|
core init
|
|
ld.lib.so libc.lib.so
|
|
timer
|
|
ps2_drv
|
|
input_merger
|
|
report_rom
|
|
dynamic_rom
|
|
acpica
|
|
acpi_input
|
|
debug-acpica
|
|
test-input
|
|
}
|
|
|
|
append_platform_drv_boot_modules
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
append qemu_args "-nographic -m 128"
|
|
|
|
run_genode_until {\[init -\> acpica\].*SCI IRQ:.*\n} 30
|