2015-05-28 11:43:13 +00:00
|
|
|
proc have_platform_drv {} {
|
2015-06-08 07:05:32 +00:00
|
|
|
if {[have_spec linux]} {
|
|
|
|
return 0
|
|
|
|
}
|
2015-07-08 20:35:22 +00:00
|
|
|
|
2015-09-03 12:55:05 +00:00
|
|
|
return [expr [have_spec arndale] \
|
|
|
|
|| [have_spec imx53] \
|
|
|
|
|| [have_spec rpi] \
|
|
|
|
|| [have_spec odroid_x2] \
|
2015-04-28 12:04:37 +00:00
|
|
|
|| [have_spec x86]]
|
2015-05-28 11:43:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
proc append_platform_drv_build_components {} {
|
|
|
|
global build_components
|
|
|
|
|
|
|
|
lappend_if [have_platform_drv] build_components drivers/platform
|
|
|
|
lappend_if [have_spec acpi] build_components drivers/acpi
|
2015-05-26 18:12:17 +00:00
|
|
|
lappend_if [have_spec acpi] build_components server/report_rom
|
2015-09-03 12:55:05 +00:00
|
|
|
lappend_if [have_spec nova] build_components drivers/platform/spec/x86/device_pd
|
2015-05-28 11:43:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
proc append_platform_drv_boot_modules {} {
|
|
|
|
global boot_modules
|
|
|
|
|
2016-01-29 16:15:35 +00:00
|
|
|
lappend_if [have_platform_drv] boot_modules platform_drv
|
|
|
|
lappend_if [have_spec acpi] boot_modules acpi_drv
|
|
|
|
lappend_if [have_spec acpi] boot_modules report_rom
|
|
|
|
lappend_if [have_spec nova] boot_modules device_pd
|
|
|
|
lappend_if [have_spec hw_x86_64_muen] boot_modules acpi
|
2015-05-28 11:43:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
proc platform_drv_policy {} {
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
if ([have_spec x86]) {
|
|
|
|
return {
|
2015-05-28 11:43:13 +00:00
|
|
|
<policy label="ps2_drv"> <device name="PS2"/> </policy>
|
|
|
|
<policy label="nic_drv"> <pci class="ETHERNET"/> </policy>
|
|
|
|
<policy label="fb_drv"> <pci class="VGA"/> </policy>
|
|
|
|
<policy label="wifi_drv"> <pci class="WIFI"/> </policy>
|
|
|
|
<policy label="usb_drv"> <pci class="USB"/> </policy>
|
2015-06-13 14:57:04 +00:00
|
|
|
<policy label="ahci_drv"> <pci class="AHCI"/> </policy>
|
2015-09-18 14:34:19 +00:00
|
|
|
<policy label="audio_drv"> <pci class="AUDIO"/> <pci class="HDAUDIO"/> </policy>
|
|
|
|
<policy label="intel_fb_drv" irq_mode="nomsi">
|
|
|
|
<pci class="VGA"/>
|
|
|
|
<pci bus="0" device="0" function="0"/>
|
|
|
|
<pci class="ISABRIDGE"/>
|
|
|
|
</policy>}
|
2015-06-08 07:05:32 +00:00
|
|
|
} else {
|
|
|
|
return {}
|
|
|
|
}
|
2015-05-28 11:43:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
proc platform_drv_priority {} { return "" }
|
|
|
|
|
|
|
|
proc append_platform_drv_config {} {
|
|
|
|
global config
|
|
|
|
|
|
|
|
if {[have_spec acpi]} {
|
|
|
|
|
2015-05-26 18:12:17 +00:00
|
|
|
append config "
|
2015-05-28 11:43:13 +00:00
|
|
|
<start name=\"acpi_drv\" [platform_drv_priority]>"
|
|
|
|
|
2015-05-26 18:12:17 +00:00
|
|
|
append config {
|
|
|
|
<resource name="RAM" quantum="2M"/>
|
|
|
|
<route>
|
|
|
|
<service name="LOG"> <parent/> </service>
|
|
|
|
<service name="IO_MEM"> <parent/> </service>
|
|
|
|
<service name="RM"> <parent/> </service>
|
|
|
|
<service name="Report"> <child name="acpi_report_rom"/> </service>
|
|
|
|
</route>
|
|
|
|
</start>}
|
|
|
|
|
|
|
|
append config "
|
|
|
|
<start name=\"acpi_report_rom\" [platform_drv_priority]>"
|
|
|
|
|
|
|
|
append config {
|
|
|
|
<binary name="report_rom"/>
|
|
|
|
<resource name="RAM" quantum="2M"/>
|
2015-05-28 11:43:13 +00:00
|
|
|
<provides>
|
2015-05-26 18:12:17 +00:00
|
|
|
<service name="ROM" />
|
|
|
|
<service name="Report" />
|
2015-05-28 11:43:13 +00:00
|
|
|
</provides>
|
|
|
|
<config>
|
2015-06-08 07:05:32 +00:00
|
|
|
<rom> <policy label="platform_drv -> acpi" report="acpi_drv -> acpi"/> </rom>
|
2015-05-28 11:43:13 +00:00
|
|
|
</config>
|
2015-05-26 18:12:17 +00:00
|
|
|
<route>
|
|
|
|
<service name="LOG"> <parent/> </service>
|
|
|
|
<service name="RM"> <parent/> </service>
|
|
|
|
</route>
|
2015-05-28 11:43:13 +00:00
|
|
|
</start>}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
if {[have_platform_drv]} {
|
2015-05-28 11:43:13 +00:00
|
|
|
|
2015-05-26 18:12:17 +00:00
|
|
|
append config "
|
2015-06-08 07:05:32 +00:00
|
|
|
<start name=\"platform_drv\" [platform_drv_priority]>"
|
2015-05-28 11:43:13 +00:00
|
|
|
|
2015-05-26 18:12:17 +00:00
|
|
|
append config {
|
2015-11-12 10:00:58 +00:00
|
|
|
<resource name="RAM" quantum="4M" constrain_phys="yes"/>
|
2015-06-08 07:05:32 +00:00
|
|
|
<provides>
|
|
|
|
<service name="Platform"/>}
|
|
|
|
|
|
|
|
append_if [have_spec arm] config {
|
|
|
|
<service name="Regulator"/>}
|
|
|
|
|
|
|
|
append config {
|
|
|
|
</provides>
|
2015-05-26 18:12:17 +00:00
|
|
|
<route>}
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
append_if [have_spec acpi] config {
|
2015-05-26 18:12:17 +00:00
|
|
|
<service name="ROM">
|
|
|
|
<if-arg key="label" value="acpi"/> <child name="acpi_report_rom"/>
|
|
|
|
</service>}
|
2015-06-08 07:05:32 +00:00
|
|
|
|
2015-09-03 12:55:05 +00:00
|
|
|
append_if [have_spec rpi] config {
|
2015-06-08 07:05:32 +00:00
|
|
|
<service name="Timer"> <any-child/> </service>}
|
2015-05-26 18:12:17 +00:00
|
|
|
|
|
|
|
append config {
|
|
|
|
<any-service> <parent/> </any-service>
|
|
|
|
</route>}
|
|
|
|
|
2016-01-29 16:15:35 +00:00
|
|
|
if {[have_spec acpi] || [have_spec arm] || [have_spec hw_x86_64_muen]} {
|
2015-05-26 18:12:17 +00:00
|
|
|
|
|
|
|
append config {
|
2015-05-28 11:43:13 +00:00
|
|
|
<config>}
|
|
|
|
|
2015-05-26 18:12:17 +00:00
|
|
|
} else {
|
2015-05-28 11:43:13 +00:00
|
|
|
|
2015-05-26 18:12:17 +00:00
|
|
|
append config {
|
|
|
|
<config acpi="no">}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
append config [platform_drv_policy]
|
|
|
|
|
|
|
|
append config {
|
2015-05-28 11:43:13 +00:00
|
|
|
</config>
|
|
|
|
</start>}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return $config
|
|
|
|
}
|