[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 21/22] docs: devel: emmc: Add a doc for emmc card emulation
From: |
Sai Pavan Boddu |
Subject: |
[PATCH v2 21/22] docs: devel: emmc: Add a doc for emmc card emulation |
Date: |
Mon, 22 Feb 2021 13:50:38 +0530 |
Add few simple steps to create emmc card with boot and user data
partitions.
Signed-off-by: Sai Pavan Boddu <sai.pavan.boddu@xilinx.com>
---
docs/devel/emmc.txt | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
create mode 100644 docs/devel/emmc.txt
diff --git a/docs/devel/emmc.txt b/docs/devel/emmc.txt
new file mode 100644
index 0000000..2d098fe
--- /dev/null
+++ b/docs/devel/emmc.txt
@@ -0,0 +1,16 @@
+====================
+eMMC block emulation
+====================
+
+Any eMMC devices has 3 kinds of partitions Boot, RPMB and User data. We
+are supporting Boot and User data partitions. Boot area partitions are
+expected to be 1MB size as hard coded in EXT_CSD register.
+
+Below is the example of combining two 1MB bootarea partition and
+user data partitions.
+
+ cat mmc-bootarea0.bin mmc-bootarea1.bin image.wic > mmc.img
+ qemu-img resize mmc.img 4G
+
+Note: mmc-bootarea0/1 are just raw paritions. User data can have
+partition tables.
--
2.7.4
- [PATCH v2 10/22] sd: emmc: support idle state in CMD2, (continued)
- [PATCH v2 10/22] sd: emmc: support idle state in CMD2, Sai Pavan Boddu, 2021/02/22
- [PATCH v2 08/22] sd: emmc: Dont not update CARD_CAPACITY for eMMC cards, Sai Pavan Boddu, 2021/02/22
- [PATCH v2 05/22] sd: emmc: Add support for EXT_CSD & CSD for eMMC, Sai Pavan Boddu, 2021/02/22
- [PATCH v2 12/22] sd: emmc: add CMD21 tuning sequence, Sai Pavan Boddu, 2021/02/22
- [PATCH v2 22/22] docs: arm: xlnx-versal-virt: Add eMMC support documentation, Sai Pavan Boddu, 2021/02/22
- [PATCH v2 14/22] sd: emmc: Add support for emmc erase, Sai Pavan Boddu, 2021/02/22
- [PATCH v2 19/22] sd: sdhci: Support eMMC devices, Sai Pavan Boddu, 2021/02/22
- [PATCH v2 11/22] sd: emmc: Add mmc switch function support, Sai Pavan Boddu, 2021/02/22
- [PATCH v2 06/22] sd: emmc: Update CMD8 to send EXT_CSD register, Sai Pavan Boddu, 2021/02/22
- [PATCH v2 17/22] sd: emmc: Support boot area in emmc image, Sai Pavan Boddu, 2021/02/22
- [PATCH v2 21/22] docs: devel: emmc: Add a doc for emmc card emulation,
Sai Pavan Boddu <=
- [PATCH v2 20/22] arm: xlnx-versal: Add emmc to versal, Sai Pavan Boddu, 2021/02/22