diff mbox

[U-Boot,v2,8/8] cmd_mmc.c: Drop open/close mmc sub-commands

Message ID 1391117520-21868-8-git-send-email-trini@ti.com
State Superseded
Delegated to: Pantelis Antoniou
Headers show

Commit Message

Tom Rini Jan. 30, 2014, 9:32 p.m. UTC
The open and close mmc sub-commands implement a hard-coded set of values
specific to the SMDK5250 platform.  Remove these commands as what they
did can be done instead with a series of mmc dev / bootpart / bootbus
commands instead now.

Cc: Amar <amarendra.xt@samsung.com>
Cc: Minkyu Kang <mk7.kang@samsung.com>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Tom Rini <trini@ti.com>
---
 common/cmd_mmc.c  |   72 -----------------------------------------------------
 drivers/mmc/mmc.c |   65 -----------------------------------------------
 include/mmc.h     |    2 --
 3 files changed, 139 deletions(-)

Comments

Jaehoon Chung Feb. 4, 2014, 12:51 a.m. UTC | #1
Looks good to me.

Acked-by: Jaehoon Chung <jh80.chung@samsung.com>

Best Regards,
Jaehoon Chung

On 01/31/2014 06:32 AM, Tom Rini wrote:
> The open and close mmc sub-commands implement a hard-coded set of values
> specific to the SMDK5250 platform.  Remove these commands as what they
> did can be done instead with a series of mmc dev / bootpart / bootbus
> commands instead now.
> 
> Cc: Amar <amarendra.xt@samsung.com>
> Cc: Minkyu Kang <mk7.kang@samsung.com>
> Cc: Jaehoon Chung <jh80.chung@samsung.com>
> Signed-off-by: Tom Rini <trini@ti.com>
> ---
>  common/cmd_mmc.c  |   72 -----------------------------------------------------
>  drivers/mmc/mmc.c |   65 -----------------------------------------------
>  include/mmc.h     |    2 --
>  3 files changed, 139 deletions(-)
> 
> diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c
> index a028149..2d51927 100644
> --- a/common/cmd_mmc.c
> +++ b/common/cmd_mmc.c
> @@ -131,36 +131,6 @@ U_BOOT_CMD(
>  	"- display info of the current MMC device"
>  );
>  
> -#ifdef CONFIG_SUPPORT_EMMC_BOOT
> -static int boot_part_access(struct mmc *mmc, u8 ack, u8 part_num, u8 access)
> -{
> -	int err;
> -	err = mmc_boot_part_access(mmc, ack, part_num, access);
> -
> -	if ((err == 0) && (access != 0)) {
> -		printf("\t\t\t!!!Notice!!!\n");
> -
> -		printf("!You must close EMMC boot Partition");
> -		printf("after all images are written\n");
> -
> -		printf("!EMMC boot partition has continuity");
> -		printf("at image writing time.\n");
> -
> -		printf("!So, do not close the boot partition");
> -		printf("before all images are written.\n");
> -		return 0;
> -	} else if ((err == 0) && (access == 0))
> -		return 0;
> -	else if ((err != 0) && (access != 0)) {
> -		printf("EMMC boot partition-%d OPEN Failed.\n", part_num);
> -		return 1;
> -	} else {
> -		printf("EMMC boot partition-%d CLOSE Failed.\n", part_num);
> -		return 1;
> -	}
> -}
> -#endif
> -
>  static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
>  {
>  	enum mmc_state state;
> @@ -273,44 +243,6 @@ static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
>  
>  		return 0;
>  #ifdef CONFIG_SUPPORT_EMMC_BOOT
> -	} else if ((strcmp(argv[1], "open") == 0) ||
> -			(strcmp(argv[1], "close") == 0)) {
> -		int dev;
> -		struct mmc *mmc;
> -		u8 part_num, access = 0;
> -
> -		if (argc == 4) {
> -			dev = simple_strtoul(argv[2], NULL, 10);
> -			part_num = simple_strtoul(argv[3], NULL, 10);
> -		} else {
> -			return CMD_RET_USAGE;
> -		}
> -
> -		mmc = find_mmc_device(dev);
> -		if (!mmc) {
> -			printf("no mmc device at slot %x\n", dev);
> -			return 1;
> -		}
> -
> -		if (IS_SD(mmc)) {
> -			printf("SD device cannot be opened/closed\n");
> -			return 1;
> -		}
> -
> -		if ((part_num <= 0) || (part_num > MMC_NUM_BOOT_PARTITION)) {
> -			printf("Invalid boot partition number:\n");
> -			printf("Boot partition number cannot be <= 0\n");
> -			printf("EMMC44 supports only 2 boot partitions\n");
> -			return 1;
> -		}
> -
> -		if (strcmp(argv[1], "open") == 0)
> -			access = part_num; /* enable R/W access to boot part*/
> -		else
> -			access = 0; /* No access to boot partition */
> -
> -		/* acknowledge to be sent during boot operation */
> -		return boot_part_access(mmc, 1, part_num, access);
>  	} else if (strcmp(argv[1], "partconf") == 0) {
>  		int dev;
>  		struct mmc *mmc;
> @@ -498,10 +430,6 @@ U_BOOT_CMD(
>  	"mmc dev [dev] [part] - show or set current mmc device [partition]\n"
>  	"mmc list - lists available devices\n"
>  #ifdef CONFIG_SUPPORT_EMMC_BOOT
> -	"mmc open <dev> <boot_partition>\n"
> -	" - Enable boot_part for booting and enable R/W access of boot_part\n"
> -	"mmc close <dev> <boot_partition>\n"
> -	" - Enable boot_part for booting and disable access to boot_part\n"
>  	"mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n"
>  	" - Set the BOOT_BUS_WIDTH field of the specified device\n"
>  	"mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n"
> diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
> index fc1c1dc..3a57ab8 100644
> --- a/drivers/mmc/mmc.c
> +++ b/drivers/mmc/mmc.c
> @@ -1442,71 +1442,6 @@ int mmc_boot_partition_size_change(struct mmc *mmc, unsigned long bootsize,
>  }
>  
>  /*
> - * This function shall form and send the commands to open / close the
> - * boot partition specified by user.
> - *
> - * Input Parameters:
> - * ack: 0x0 - No boot acknowledge sent (default)
> - *	0x1 - Boot acknowledge sent during boot operation
> - * part_num: User selects boot data that will be sent to master
> - *	0x0 - Device not boot enabled (default)
> - *	0x1 - Boot partition 1 enabled for boot
> - *	0x2 - Boot partition 2 enabled for boot
> - * access: User selects partitions to access
> - *	0x0 : No access to boot partition (default)
> - *	0x1 : R/W boot partition 1
> - *	0x2 : R/W boot partition 2
> - *	0x3 : R/W Replay Protected Memory Block (RPMB)
> - *
> - * Returns 0 on success.
> - */
> -int mmc_boot_part_access(struct mmc *mmc, u8 ack, u8 part_num, u8 access)
> -{
> -	int err;
> -	struct mmc_cmd cmd;
> -
> -	/* Boot ack enable, boot partition enable , boot partition access */
> -	cmd.cmdidx = MMC_CMD_SWITCH;
> -	cmd.resp_type = MMC_RSP_R1b;
> -
> -	cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
> -			(EXT_CSD_PART_CONF << 16) |
> -			((EXT_CSD_BOOT_ACK(ack) |
> -			EXT_CSD_BOOT_PART_NUM(part_num) |
> -			EXT_CSD_PARTITION_ACCESS(access)) << 8);
> -
> -	err = mmc_send_cmd(mmc, &cmd, NULL);
> -	if (err) {
> -		if (access) {
> -			debug("mmc boot partition#%d open fail:Error1 = %d\n",
> -			      part_num, err);
> -		} else {
> -			debug("mmc boot partition#%d close fail:Error = %d\n",
> -			      part_num, err);
> -		}
> -		return err;
> -	}
> -
> -	if (access) {
> -		/* 4bit transfer mode at booting time. */
> -		cmd.cmdidx = MMC_CMD_SWITCH;
> -		cmd.resp_type = MMC_RSP_R1b;
> -
> -		cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
> -				(EXT_CSD_BOOT_BUS_WIDTH << 16) |
> -				((1 << 0) << 8);
> -
> -		err = mmc_send_cmd(mmc, &cmd, NULL);
> -		if (err) {
> -			debug("mmc boot partition#%d open fail:Error2 = %d\n",
> -			      part_num, err);
> -			return err;
> -		}
> -	}
> -	return 0;
> -}
> -
> -/*
>   * Modify EXT_CSD[177] which is BOOT_BUS_WIDTH
>   * based on the passed in values for BOOT_BUS_WIDTH, RESET_BOOT_BUS_WIDTH
>   * and BOOT_MODE.
> diff --git a/include/mmc.h b/include/mmc.h
> index 3594286..e95a237 100644
> --- a/include/mmc.h
> +++ b/include/mmc.h
> @@ -313,8 +313,6 @@ int mmc_set_dsr(struct mmc *mmc, u16 val);
>  /* Function to change the size of boot partition and rpmb partitions */
>  int mmc_boot_partition_size_change(struct mmc *mmc, unsigned long bootsize,
>  					unsigned long rpmbsize);
> -/* Function to send commands to open/close the specified boot partition */
> -int mmc_boot_part_access(struct mmc *mmc, u8 ack, u8 part_num, u8 access);
>  /* Function to modify the PARTITION_CONFIG field of EXT_CSD */
>  int mmc_set_part_conf(struct mmc *mmc, u8 ack, u8 part_num, u8 access);
>  /* Function to modify the BOOT_BUS_WIDTH field of EXT_CSD */
>
Otavio Salvador Feb. 4, 2014, 2:08 p.m. UTC | #2
On Thu, Jan 30, 2014 at 7:32 PM, Tom Rini <trini@ti.com> wrote:
> The open and close mmc sub-commands implement a hard-coded set of values
> specific to the SMDK5250 platform.  Remove these commands as what they
> did can be done instead with a series of mmc dev / bootpart / bootbus
> commands instead now.

Maybe it'd be good to document, in the commitlog the mmc commands equivalent.
Tom Rini Feb. 4, 2014, 2:11 p.m. UTC | #3
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 02/04/2014 09:08 AM, Otavio Salvador wrote:
> On Thu, Jan 30, 2014 at 7:32 PM, Tom Rini <trini@ti.com> wrote:
>> The open and close mmc sub-commands implement a hard-coded set of
>> values specific to the SMDK5250 platform.  Remove these commands
>> as what they did can be done instead with a series of mmc dev /
>> bootpart / bootbus commands instead now.
> 
> Maybe it'd be good to document, in the commitlog the mmc commands
> equivalent.

Can we get a board/samsung/smdk5250/README, ala the dra7xx / omap5
ones I added after?  I think I know what the equivalent is for that
platform but cannot test.

- -- 
Tom
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBAgAGBQJS8PUKAAoJENk4IS6UOR1Wg1YP/2TAi01uHV6TkX3JRCcWX6hz
5dzhOi1iVStb6f8fhGfTTSBCVcLT5alVXM4J2z5Io1Lqtk6Sh18f/ISFllJ1/CwO
9qxszaRo5Sm2psdzauwirWIG5xhY20PiRnG+yaDCnSytnBFAqvN4aNbbrOPKke7S
GjWtbJcE9uyaWNQK8YRjbSaw+jH3lBJ94TL02l2mjGF7/hiQXGaxZVL/H/wI7Gx4
kLOBYOwi+vX2PxCI9Kd3DlST+DrBHS1Jd5cROFrSHr99TxgREdR14SEQ7993u1AZ
1QiVet+iIky6t0WO0CdjEg+gAYw2mtMO/3ZFRy8htEQsLzRoI6SAwgs0+pWLiqSj
5MBQ7+hE91kO8mittEg1f4kJMoP4A0Wb+yoNbfqg0cZuh446i3kwl7uqYfrKpW8y
Ei3jX88Y76kO+F7RmvBIUh6qs1bXaWFTOeynDol8oIY8XAWe5dHNlEOGqW8acvrv
YulHhIcQkkbkpSSHt/Dm6EkZbbIItX6C5wzM4PTtB+jjVO0swOOGjgbTk3X71XLY
EW77wgtH3SnUXzTj40m5tCWl4L4+40pY12RbA2aS2PdFzChDwYG20e1Yo92/dng2
wi+RWCbT1GjAFqjjivQ+3SZeZHD98ZG30iShvANXw8XzsBauyMHI0zdWBga/wHZg
F+QRbUsCCK/xF+opqVOi
=yn/K
-----END PGP SIGNATURE-----
Otavio Salvador Feb. 4, 2014, 2:15 p.m. UTC | #4
On Tue, Feb 4, 2014 at 12:08 PM, Otavio Salvador
<otavio@ossystems.com.br> wrote:
> On Thu, Jan 30, 2014 at 7:32 PM, Tom Rini <trini@ti.com> wrote:
>> The open and close mmc sub-commands implement a hard-coded set of values
>> specific to the SMDK5250 platform.  Remove these commands as what they
>> did can be done instead with a series of mmc dev / bootpart / bootbus
>> commands instead now.
>
> Maybe it'd be good to document, in the commitlog the mmc commands equivalent.

By the way, mx6sabresd uses this.
Tom Rini Feb. 4, 2014, 2:55 p.m. UTC | #5
On Tue, Feb 04, 2014 at 12:15:44PM -0200, Otavio Salvador wrote:
> On Tue, Feb 4, 2014 at 12:08 PM, Otavio Salvador
> <otavio@ossystems.com.br> wrote:
> > On Thu, Jan 30, 2014 at 7:32 PM, Tom Rini <trini@ti.com> wrote:
> >> The open and close mmc sub-commands implement a hard-coded set of values
> >> specific to the SMDK5250 platform.  Remove these commands as what they
> >> did can be done instead with a series of mmc dev / bootpart / bootbus
> >> commands instead now.
> >
> > Maybe it'd be good to document, in the commitlog the mmc commands equivalent.
> 
> By the way, mx6sabresd uses this.

OK, so it should be:
mmc partconf DEV 1 BOOTn 0
mmc bootbus DEV 1 0 0

If that works, yes, I can update the commit message to say what previous
command did.
Łukasz Majewski Feb. 17, 2014, 8:40 a.m. UTC | #6
Hi Tom,

> The open and close mmc sub-commands implement a hard-coded set of
> values specific to the SMDK5250 platform.  Remove these commands as
> what they did can be done instead with a series of mmc dev /
> bootpart / bootbus commands instead now.

I'm going to add support for DFU to be able to flash the eMMC boot
partition.

As far as I noticed, those patches are ACKed by relevant party. Will
those be applied to u-boot-mmc branch soon or do you need to prepare v3?
Łukasz Majewski Feb. 17, 2014, 9:30 a.m. UTC | #7
Hi,

> Hi Tom,
> 
> > The open and close mmc sub-commands implement a hard-coded set of
> > values specific to the SMDK5250 platform.  Remove these commands as
> > what they did can be done instead with a series of mmc dev /
> > bootpart / bootbus commands instead now.
> 
> I'm going to add support for DFU to be able to flash the eMMC boot
> partition.
> 
> As far as I noticed, those patches are ACKed by relevant party. Will
> those be applied to u-boot-mmc branch soon or do you need to prepare
> v3?
> 
> 

Sorry for fuzz. I've just noticed that those patches are already pulled
to u-boot-mmc branch and are waiting for upstream inclusion.
diff mbox

Patch

diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c
index a028149..2d51927 100644
--- a/common/cmd_mmc.c
+++ b/common/cmd_mmc.c
@@ -131,36 +131,6 @@  U_BOOT_CMD(
 	"- display info of the current MMC device"
 );
 
-#ifdef CONFIG_SUPPORT_EMMC_BOOT
-static int boot_part_access(struct mmc *mmc, u8 ack, u8 part_num, u8 access)
-{
-	int err;
-	err = mmc_boot_part_access(mmc, ack, part_num, access);
-
-	if ((err == 0) && (access != 0)) {
-		printf("\t\t\t!!!Notice!!!\n");
-
-		printf("!You must close EMMC boot Partition");
-		printf("after all images are written\n");
-
-		printf("!EMMC boot partition has continuity");
-		printf("at image writing time.\n");
-
-		printf("!So, do not close the boot partition");
-		printf("before all images are written.\n");
-		return 0;
-	} else if ((err == 0) && (access == 0))
-		return 0;
-	else if ((err != 0) && (access != 0)) {
-		printf("EMMC boot partition-%d OPEN Failed.\n", part_num);
-		return 1;
-	} else {
-		printf("EMMC boot partition-%d CLOSE Failed.\n", part_num);
-		return 1;
-	}
-}
-#endif
-
 static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 {
 	enum mmc_state state;
@@ -273,44 +243,6 @@  static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 
 		return 0;
 #ifdef CONFIG_SUPPORT_EMMC_BOOT
-	} else if ((strcmp(argv[1], "open") == 0) ||
-			(strcmp(argv[1], "close") == 0)) {
-		int dev;
-		struct mmc *mmc;
-		u8 part_num, access = 0;
-
-		if (argc == 4) {
-			dev = simple_strtoul(argv[2], NULL, 10);
-			part_num = simple_strtoul(argv[3], NULL, 10);
-		} else {
-			return CMD_RET_USAGE;
-		}
-
-		mmc = find_mmc_device(dev);
-		if (!mmc) {
-			printf("no mmc device at slot %x\n", dev);
-			return 1;
-		}
-
-		if (IS_SD(mmc)) {
-			printf("SD device cannot be opened/closed\n");
-			return 1;
-		}
-
-		if ((part_num <= 0) || (part_num > MMC_NUM_BOOT_PARTITION)) {
-			printf("Invalid boot partition number:\n");
-			printf("Boot partition number cannot be <= 0\n");
-			printf("EMMC44 supports only 2 boot partitions\n");
-			return 1;
-		}
-
-		if (strcmp(argv[1], "open") == 0)
-			access = part_num; /* enable R/W access to boot part*/
-		else
-			access = 0; /* No access to boot partition */
-
-		/* acknowledge to be sent during boot operation */
-		return boot_part_access(mmc, 1, part_num, access);
 	} else if (strcmp(argv[1], "partconf") == 0) {
 		int dev;
 		struct mmc *mmc;
@@ -498,10 +430,6 @@  U_BOOT_CMD(
 	"mmc dev [dev] [part] - show or set current mmc device [partition]\n"
 	"mmc list - lists available devices\n"
 #ifdef CONFIG_SUPPORT_EMMC_BOOT
-	"mmc open <dev> <boot_partition>\n"
-	" - Enable boot_part for booting and enable R/W access of boot_part\n"
-	"mmc close <dev> <boot_partition>\n"
-	" - Enable boot_part for booting and disable access to boot_part\n"
 	"mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n"
 	" - Set the BOOT_BUS_WIDTH field of the specified device\n"
 	"mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n"
diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
index fc1c1dc..3a57ab8 100644
--- a/drivers/mmc/mmc.c
+++ b/drivers/mmc/mmc.c
@@ -1442,71 +1442,6 @@  int mmc_boot_partition_size_change(struct mmc *mmc, unsigned long bootsize,
 }
 
 /*
- * This function shall form and send the commands to open / close the
- * boot partition specified by user.
- *
- * Input Parameters:
- * ack: 0x0 - No boot acknowledge sent (default)
- *	0x1 - Boot acknowledge sent during boot operation
- * part_num: User selects boot data that will be sent to master
- *	0x0 - Device not boot enabled (default)
- *	0x1 - Boot partition 1 enabled for boot
- *	0x2 - Boot partition 2 enabled for boot
- * access: User selects partitions to access
- *	0x0 : No access to boot partition (default)
- *	0x1 : R/W boot partition 1
- *	0x2 : R/W boot partition 2
- *	0x3 : R/W Replay Protected Memory Block (RPMB)
- *
- * Returns 0 on success.
- */
-int mmc_boot_part_access(struct mmc *mmc, u8 ack, u8 part_num, u8 access)
-{
-	int err;
-	struct mmc_cmd cmd;
-
-	/* Boot ack enable, boot partition enable , boot partition access */
-	cmd.cmdidx = MMC_CMD_SWITCH;
-	cmd.resp_type = MMC_RSP_R1b;
-
-	cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
-			(EXT_CSD_PART_CONF << 16) |
-			((EXT_CSD_BOOT_ACK(ack) |
-			EXT_CSD_BOOT_PART_NUM(part_num) |
-			EXT_CSD_PARTITION_ACCESS(access)) << 8);
-
-	err = mmc_send_cmd(mmc, &cmd, NULL);
-	if (err) {
-		if (access) {
-			debug("mmc boot partition#%d open fail:Error1 = %d\n",
-			      part_num, err);
-		} else {
-			debug("mmc boot partition#%d close fail:Error = %d\n",
-			      part_num, err);
-		}
-		return err;
-	}
-
-	if (access) {
-		/* 4bit transfer mode at booting time. */
-		cmd.cmdidx = MMC_CMD_SWITCH;
-		cmd.resp_type = MMC_RSP_R1b;
-
-		cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
-				(EXT_CSD_BOOT_BUS_WIDTH << 16) |
-				((1 << 0) << 8);
-
-		err = mmc_send_cmd(mmc, &cmd, NULL);
-		if (err) {
-			debug("mmc boot partition#%d open fail:Error2 = %d\n",
-			      part_num, err);
-			return err;
-		}
-	}
-	return 0;
-}
-
-/*
  * Modify EXT_CSD[177] which is BOOT_BUS_WIDTH
  * based on the passed in values for BOOT_BUS_WIDTH, RESET_BOOT_BUS_WIDTH
  * and BOOT_MODE.
diff --git a/include/mmc.h b/include/mmc.h
index 3594286..e95a237 100644
--- a/include/mmc.h
+++ b/include/mmc.h
@@ -313,8 +313,6 @@  int mmc_set_dsr(struct mmc *mmc, u16 val);
 /* Function to change the size of boot partition and rpmb partitions */
 int mmc_boot_partition_size_change(struct mmc *mmc, unsigned long bootsize,
 					unsigned long rpmbsize);
-/* Function to send commands to open/close the specified boot partition */
-int mmc_boot_part_access(struct mmc *mmc, u8 ack, u8 part_num, u8 access);
 /* Function to modify the PARTITION_CONFIG field of EXT_CSD */
 int mmc_set_part_conf(struct mmc *mmc, u8 ack, u8 part_num, u8 access);
 /* Function to modify the BOOT_BUS_WIDTH field of EXT_CSD */