eMMC 4.4 vs 4.5

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 
2,982件の閲覧回数
JHY
Contributor IV

I.MX6 can support eMMC 4.4 / 4.41.

So my question is that whether it is possible eMMC 4.5.

What will happen in that case?

ラベル(1)
タグ(2)
0 件の賞賛
返信
1 解決策
1,044件の閲覧回数
igorpadykov
NXP Employee
NXP Employee

Hi

booting from a eMMC 4.5 device is not supported,  boot ROM will fall back to the

eMMC4.4  standard when a eMMC4.5 capable device is detected.

In BSP it is possible to bypass eMMC version checking, so that eMMC v4.5 can

work as eMMC v4.4 cards, no specific v4.5 feature supported.

Only basic read/write operations are supported.

static int mmc_read_ext_csd(struct mmc_card *card, u8 *ext_csd)

     }

     card->ext_csd.rev = ext_csd[EXT_CSD_REV];

-    if (card->ext_csd.rev > 5) {

+    /* workaround: support emmc 4.5 cards to work at emmc 4.4 mode */

+    if (card->ext_csd.rev > 6)

Best regards

igor

-----------------------------------------------------------------------------------------------------------------------

Note: If this post answers your question, please click the Correct Answer button. Thank you!

-----------------------------------------------------------------------------------------------------------------------

元の投稿で解決策を見る

0 件の賞賛
返信
1 返信
1,045件の閲覧回数
igorpadykov
NXP Employee
NXP Employee

Hi

booting from a eMMC 4.5 device is not supported,  boot ROM will fall back to the

eMMC4.4  standard when a eMMC4.5 capable device is detected.

In BSP it is possible to bypass eMMC version checking, so that eMMC v4.5 can

work as eMMC v4.4 cards, no specific v4.5 feature supported.

Only basic read/write operations are supported.

static int mmc_read_ext_csd(struct mmc_card *card, u8 *ext_csd)

     }

     card->ext_csd.rev = ext_csd[EXT_CSD_REV];

-    if (card->ext_csd.rev > 5) {

+    /* workaround: support emmc 4.5 cards to work at emmc 4.4 mode */

+    if (card->ext_csd.rev > 6)

Best regards

igor

-----------------------------------------------------------------------------------------------------------------------

Note: If this post answers your question, please click the Correct Answer button. Thank you!

-----------------------------------------------------------------------------------------------------------------------

0 件の賞賛
返信