[PATCH] mmc: mmc_boot: support sandisk and micron emmc boot/rpmb partition resizing
Tom Rini
trini at konsulko.com
Fri Mar 14 15:27:59 CET 2025
On Fri, Mar 14, 2025 at 04:10:24PM +0800, ziniu.wang_1 at nxp.com wrote:
> From: Luke Wang <ziniu.wang_1 at nxp.com>
>
> Current mmc bootpart-resize cmd only support samsung emmc boot/rpmb
> partition resizing. Add sandisk and micron emmc boot/rpmb partition
> resizing support. The commands and parameters for resizing partitions
> are different for each manufacturer. Select the corresponding function
> according to cid.
>
> Signed-off-by: Luke Wang <ziniu.wang_1 at nxp.com>
> ---
[snip]
> + /* Set EXT_CSD[175] ERASE_GROUP_DEF to 0x01 */
> + err = mmc_switch(mmc, 0, 175, 0x01);
> + if (err)
> + goto error;
> +
> + /* Set EXT_CSD[127:125] for boot partition size, [125] is low byte */
> + err = mmc_switch(mmc, 0, 125, bootsize);
We should define EXT_CSD_BOOT_SIZE_MULT to 125.
> + if (err)
> + goto error;
> +
> + err = mmc_switch(mmc, 0, 126, 0x00);
> + if (err)
> + goto error;
> +
> + err = mmc_switch(mmc, 0, 127, 0x00);
> + if (err)
> + goto error;
> +
> + /* Set EXT_CSD[155] PARTITION_SETTING_COMPLETE to 0x01 */
> + err = mmc_switch(mmc, 0, 155, 0x01);
And if we don't have 126/127/155 defined today, we should use
reasonable names for them too. Any other command numbers I missed as
well please.
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20250314/5d65560c/attachment.sig>
More information about the U-Boot
mailing list