From b4600bfc995ac466538a8ecd5f1190b7e4004f9b Mon Sep 17 00:00:00 2001 From: Martin Stein Date: Thu, 26 Jan 2017 19:48:38 +0100 Subject: [PATCH] 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 --- repos/os/run/sd_card_bench.run | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/repos/os/run/sd_card_bench.run b/repos/os/run/sd_card_bench.run index 9ac3108ade..b5f149f14f 100644 --- a/repos/os/run/sd_card_bench.run +++ b/repos/os/run/sd_card_bench.run @@ -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 {