mirror of
https://github.com/genodelabs/genode.git
synced 2025-03-23 12:35:41 +00:00
sd_card_bench: exclude foc+imx_53 and odroid_xu
On Odroid XU the SD card driver comes up and finds a card but for card access it seems that we would need a platform driver like on Arndale. On imx_53, the first SDHCI MMIO access faults. This is likely due to the AIPSTZ memory bridge. On HW, we initialize the AIPSTZ in the kernel, but when I tried doing that in the platform driver instead, the first AIPSTZ MMIO access faults ^^ So I gave up for now and removed support. Fixes #2259
This commit is contained in:
parent
e36368735b
commit
b4600bfc99
@ -4,10 +4,11 @@
|
||||
|
||||
if {[have_spec pl180]} { set buffer_size_kib [expr 12 * 1024]
|
||||
} elseif {[have_spec imx6]} { set buffer_size_kib [expr 1024]
|
||||
} elseif {[have_spec imx53]} { set buffer_size_kib [expr 1024]
|
||||
} elseif {[have_spec imx53] &&
|
||||
![have_spec foc]} { set buffer_size_kib [expr 1024]
|
||||
} elseif {[have_spec rpi]} { set buffer_size_kib [expr 4 * 1024]
|
||||
} elseif {[have_spec omap4]} { set buffer_size_kib [expr 4 * 1024]
|
||||
} elseif {[have_spec exynos5]} { set buffer_size_kib [expr 1024]
|
||||
} elseif {[have_spec arndale]} { set buffer_size_kib [expr 1024]
|
||||
} else {
|
||||
puts "\n Run script is not supported on this platform. \n";
|
||||
exit 0;
|
||||
@ -52,7 +53,6 @@ append config {
|
||||
|
||||
append_platform_drv_config
|
||||
|
||||
|
||||
append config {
|
||||
<start name="timer">
|
||||
<resource name="RAM" quantum="1M"/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user