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:
Martin Stein 2017-01-26 19:48:38 +01:00 committed by Norman Feske
parent e36368735b
commit b4600bfc99

View File

@ -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"/>