Measure MMC performances #61943
-
Hello, I want to get an estimation of MMC performances on a custom i.MX RT1052 board. On Linux, I use:
Is there anything which I take care about (like dropping caches) with Zephyr using |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @blemouzy , This is some feedback I received for your question: |
Beta Was this translation helpful? Give feedback.
-
Hi @DerekSnell ,
Thanks for these information.
I tried to use it on my board but all
Thanks! |
Beta Was this translation helpful? Give feedback.
Hi @blemouzy ,
This is some feedback I received for your question:
Since Zephyr has no software caching in the disk subsystem, there shouldn’t be anything special needed beyond
mmc_write_blocks
/mmc_read_blocks
. It’s worth noting we have a test for disk performance in Zephyr. We do enable the on-device eMMC cache during disk init, but based on what was found online regarding/proc/sys/vm/drop_caches
, this command will only drop page caches as well as cached dentries and inodes. So I think that only software-based caching is affected, not on-device eMMC cache.