On Friday 22 February 2013, Grant Grundler wrote:
On Fri, Feb 22, 2013 at 6:38 AM, Arnd Bergmann arnd@arndb.de wrote:
Label:
MB-SSBGB MBSSBGVEQAFA-XF
...
$ sudo ./flashbench -a /dev/mmcblk0 --blocksize=1024 --count=32
...
===> Suggests 12 MB erase blocks, 16 KB page size
$ sudo ./flashbench --open-au /dev/mmcblk0 --erasesize=$[12*1024*1024] --blocksize=$[3*4096]
Arnd, I'm curious: why did you chose "3*4096" instead of "4*4096" given the previous comment? Mixing up 12MB with 12KB?
I never got around to teach flashbench about eraseblocks that have a non-power-of-two number of pages. If I do the above, there are 1024 logical "blocks" in an eraseblock, which works around this limitation, although not too well.
Arnd