* [U-Boot] [PATCH v2 1/2] env_fat: use get_device_and_partition() during env save and load
@ 2014-06-23 2:41 Josh Wu
2014-06-23 2:41 ` [U-Boot] [PATCH v2 2/2] README: document the CONFIG_ENV_IS_IN_FAT option Josh Wu
0 siblings, 1 reply; 7+ messages in thread
From: Josh Wu @ 2014-06-23 2:41 UTC (permalink / raw)
To: u-boot
From: "Wu, Josh" <Josh.wu@atmel.com>
Use get_device_and_partition() is better since:
1. It will call the device initialize function internally. So we can
remove the mmc intialization code to save many lines.
2. It is used by fatls/fatload/fatwrite. So saveenv & load env should
use it too.
3. It can parse the "D:P", "D", "D:", "D:auto" string to get correct
device and partition information by run-time.
Also we remove the FAT_ENV_DEVICE and FAT_ENV_PART. We use a string:
FAT_ENV_DEVICE_AND_PART.
For at91sam9m10g45ek, it is "0". That means use device 0 and if:
a)device 0 has no partition table, use the whole device as a FAT file
system.
b)device 0 has partittion table, use the partition #1.
Refer to the commit: 10a37fd7a4 for details of device & partition string.
Signed-off-by: Josh Wu <josh.wu@atmel.com>
Reviewed-by: Stephen Warren <swarren@nvidia.com>
---
v1 -> v2: no change in this patch. Add one more patch in this patch series to
update the README file.
common/env_fat.c | 86 ++++++++++++------------------------
include/configs/at91sam9m10g45ek.h | 8 +++-
2 files changed, 34 insertions(+), 60 deletions(-)
diff --git a/common/env_fat.c b/common/env_fat.c
index aad0487..328c09d 100644
--- a/common/env_fat.c
+++ b/common/env_fat.c
@@ -38,39 +38,24 @@ int saveenv(void)
{
env_t env_new;
block_dev_desc_t *dev_desc = NULL;
- int dev = FAT_ENV_DEVICE;
- int part = FAT_ENV_PART;
+ disk_partition_t info;
+ int dev, part;
int err;
err = env_export(&env_new);
if (err)
return err;
-#ifdef CONFIG_MMC
- if (strcmp(FAT_ENV_INTERFACE, "mmc") == 0) {
- struct mmc *mmc = find_mmc_device(dev);
-
- if (!mmc) {
- printf("no mmc device at slot %x\n", dev);
- return 1;
- }
-
- mmc->has_init = 0;
- mmc_init(mmc);
- }
-#endif /* CONFIG_MMC */
-
- dev_desc = get_dev(FAT_ENV_INTERFACE, dev);
- if (dev_desc == NULL) {
- printf("Failed to find %s%d\n",
- FAT_ENV_INTERFACE, dev);
+ part = get_device_and_partition(FAT_ENV_INTERFACE,
+ FAT_ENV_DEVICE_AND_PART,
+ &dev_desc, &info, 1);
+ if (part < 0)
return 1;
- }
- err = fat_register_device(dev_desc, part);
- if (err) {
- printf("Failed to register %s%d:%d\n",
- FAT_ENV_INTERFACE, dev, part);
+ dev = dev_desc->dev;
+ if (fat_set_blk_dev(dev_desc, &info) != 0) {
+ printf("\n** Unable to use %s %d:%d for saveenv **\n",
+ FAT_ENV_INTERFACE, dev, part);
return 1;
}
@@ -90,48 +75,33 @@ void env_relocate_spec(void)
{
char buf[CONFIG_ENV_SIZE];
block_dev_desc_t *dev_desc = NULL;
- int dev = FAT_ENV_DEVICE;
- int part = FAT_ENV_PART;
+ disk_partition_t info;
+ int dev, part;
int err;
-#ifdef CONFIG_MMC
- if (strcmp(FAT_ENV_INTERFACE, "mmc") == 0) {
- struct mmc *mmc = find_mmc_device(dev);
-
- if (!mmc) {
- printf("no mmc device at slot %x\n", dev);
- set_default_env(NULL);
- return;
- }
-
- mmc->has_init = 0;
- mmc_init(mmc);
- }
-#endif /* CONFIG_MMC */
-
- dev_desc = get_dev(FAT_ENV_INTERFACE, dev);
- if (dev_desc == NULL) {
- printf("Failed to find %s%d\n",
- FAT_ENV_INTERFACE, dev);
- set_default_env(NULL);
- return;
- }
-
- err = fat_register_device(dev_desc, part);
- if (err) {
- printf("Failed to register %s%d:%d\n",
- FAT_ENV_INTERFACE, dev, part);
- set_default_env(NULL);
- return;
+ part = get_device_and_partition(FAT_ENV_INTERFACE,
+ FAT_ENV_DEVICE_AND_PART,
+ &dev_desc, &info, 1);
+ if (part < 0)
+ goto err_env_relocate;
+
+ dev = dev_desc->dev;
+ if (fat_set_blk_dev(dev_desc, &info) != 0) {
+ printf("\n** Unable to use %s %d:%d for loading the env **\n",
+ FAT_ENV_INTERFACE, dev, part);
+ goto err_env_relocate;
}
err = file_fat_read(FAT_ENV_FILE, (uchar *)&buf, CONFIG_ENV_SIZE);
if (err == -1) {
printf("\n** Unable to read \"%s\" from %s%d:%d **\n",
FAT_ENV_FILE, FAT_ENV_INTERFACE, dev, part);
- set_default_env(NULL);
- return;
+ goto err_env_relocate;
}
env_import(buf, 1);
+ return;
+
+err_env_relocate:
+ set_default_env(NULL);
}
diff --git a/include/configs/at91sam9m10g45ek.h b/include/configs/at91sam9m10g45ek.h
index 341b21d..db5d5ea 100644
--- a/include/configs/at91sam9m10g45ek.h
+++ b/include/configs/at91sam9m10g45ek.h
@@ -167,8 +167,12 @@
#elif CONFIG_SYS_USE_MMC
/* bootstrap + u-boot + env + linux in mmc */
#define FAT_ENV_INTERFACE "mmc"
-#define FAT_ENV_DEVICE 0
-#define FAT_ENV_PART 1
+/*
+ * We don't specify the part number, if device 0 has partition table, it means
+ * the first partition; it no partition table, then take whole device as a
+ * FAT file system.
+ */
+#define FAT_ENV_DEVICE_AND_PART "0"
#define FAT_ENV_FILE "uboot.env"
#define CONFIG_ENV_IS_IN_FAT
#define CONFIG_FAT_WRITE
--
1.7.9.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH v2 2/2] README: document the CONFIG_ENV_IS_IN_FAT option
2014-06-23 2:41 [U-Boot] [PATCH v2 1/2] env_fat: use get_device_and_partition() during env save and load Josh Wu
@ 2014-06-23 2:41 ` Josh Wu
2014-06-23 18:41 ` Stephen Warren
0 siblings, 1 reply; 7+ messages in thread
From: Josh Wu @ 2014-06-23 2:41 UTC (permalink / raw)
To: u-boot
Signed-off-by: Josh Wu <josh.wu@atmel.com>
---
README | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/README b/README
index 7129df8..0c9fda3 100644
--- a/README
+++ b/README
@@ -4133,6 +4133,37 @@ but it can not erase, write this NOR flash by SRIO or PCIE interface.
You will probably want to define these to avoid a really noisy system
when storing the env in UBI.
+- CONFIG_ENV_IS_IN_FAT:
+ Define this if you want to use the FAT file system for the environment.
+
+ - FAT_ENV_INTERFACE:
+
+ Define this to a string that is the name of the block device.
+
+ - FAT_ENV_DEV_AND_PART:
+
+ Define this to a string to specify the partition of the device. It can
+ be as following:
+
+ "D:P", "D:0", "D", "D:" or "D:auto" (D, P are integers. And P >= 1)
+ - "D:P": device D partition P. Error occurs if device D has no
+ partition table.
+ - "D:0": device D.
+ - "D" or "D:": device D partition 1 if device D has partition
+ table, or the whole device D if has no partition
+ table.
+ - "D:auto": first partition in device D with bootable flag set.
+ If none, first valid paratition in device D. If no
+ partition table then means device D.
+
+ - FAT_ENV_FILE:
+
+ It's a string of the FAT file name. This file use to store the
+ envrionment.
+
+ - CONFIG_FAT_WRITE:
+ This should be defined. Otherwise it cannot save the envrionment file.
+
- CONFIG_ENV_IS_IN_MMC:
Define this if you have an MMC device which you want to use for the
--
1.7.9.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH v2 2/2] README: document the CONFIG_ENV_IS_IN_FAT option
2014-06-23 2:41 ` [U-Boot] [PATCH v2 2/2] README: document the CONFIG_ENV_IS_IN_FAT option Josh Wu
@ 2014-06-23 18:41 ` Stephen Warren
2014-06-23 19:08 ` Jon Loeliger
2014-06-24 9:49 ` Josh Wu
0 siblings, 2 replies; 7+ messages in thread
From: Stephen Warren @ 2014-06-23 18:41 UTC (permalink / raw)
To: u-boot
On 06/22/2014 08:41 PM, Josh Wu wrote:
> Signed-off-by: Josh Wu <josh.wu@atmel.com>
A quick description might be nice. Otherwise,
Reviewed-by: Stephen Warren <swarren@nvidia.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH v2 2/2] README: document the CONFIG_ENV_IS_IN_FAT option
2014-06-23 18:41 ` Stephen Warren
@ 2014-06-23 19:08 ` Jon Loeliger
2014-06-24 9:47 ` Josh Wu
2014-06-24 9:49 ` Josh Wu
1 sibling, 1 reply; 7+ messages in thread
From: Jon Loeliger @ 2014-06-23 19:08 UTC (permalink / raw)
To: u-boot
On Mon, Jun 23, 2014 at 1:41 PM, Stephen Warren <swarren@wwwdotorg.org> wrote:
> On 06/22/2014 08:41 PM, Josh Wu wrote:
>> Signed-off-by: Josh Wu <josh.wu@atmel.com>
>
> A quick description might be nice. Otherwise,
Josh,
Any chance you want to patch the lack of CONFIG_ENV_IS_IN_SPI_FLASH
documentation while you are in the area? :-)
jdl
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH v2 2/2] README: document the CONFIG_ENV_IS_IN_FAT option
2014-06-23 19:08 ` Jon Loeliger
@ 2014-06-24 9:47 ` Josh Wu
2014-06-24 14:07 ` Jon Loeliger
0 siblings, 1 reply; 7+ messages in thread
From: Josh Wu @ 2014-06-24 9:47 UTC (permalink / raw)
To: u-boot
Hi, Jon
On 6/24/2014 3:08 AM, Jon Loeliger wrote:
> On Mon, Jun 23, 2014 at 1:41 PM, Stephen Warren <swarren@wwwdotorg.org> wrote:
>> On 06/22/2014 08:41 PM, Josh Wu wrote:
>>> Signed-off-by: Josh Wu <josh.wu@atmel.com>
>> A quick description might be nice. Otherwise,
> Josh,
>
> Any chance you want to patch the lack of CONFIG_ENV_IS_IN_SPI_FLASH
> documentation while you are in the area? :-)
I think it's no problem ;-)
I will do a patch for SPI_FLASH.
>
> jdl
Best Regards,
Josh Wu
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH v2 2/2] README: document the CONFIG_ENV_IS_IN_FAT option
2014-06-23 18:41 ` Stephen Warren
2014-06-23 19:08 ` Jon Loeliger
@ 2014-06-24 9:49 ` Josh Wu
1 sibling, 0 replies; 7+ messages in thread
From: Josh Wu @ 2014-06-24 9:49 UTC (permalink / raw)
To: u-boot
Dear Stephen
On 6/24/2014 2:41 AM, Stephen Warren wrote:
> On 06/22/2014 08:41 PM, Josh Wu wrote:
>> Signed-off-by: Josh Wu <josh.wu@atmel.com>
> A quick description might be nice. Otherwise,
>
> Reviewed-by: Stephen Warren <swarren@nvidia.com>
Thanks. I will add a description message for the commit in v3.
Best Regards,
Josh Wu
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH v2 2/2] README: document the CONFIG_ENV_IS_IN_FAT option
2014-06-24 9:47 ` Josh Wu
@ 2014-06-24 14:07 ` Jon Loeliger
0 siblings, 0 replies; 7+ messages in thread
From: Jon Loeliger @ 2014-06-24 14:07 UTC (permalink / raw)
To: u-boot
On Tue, Jun 24, 2014 at 4:47 AM, Josh Wu <josh.wu@atmel.com> wrote:
>> Josh,
>>
>> Any chance you want to patch the lack of CONFIG_ENV_IS_IN_SPI_FLASH
>> documentation while you are in the area? :-)
>
> I think it's no problem ;-)
> I will do a patch for SPI_FLASH.
>
> Best Regards,
> Josh Wu
Awesome!
Thanks,
jdl
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-06-24 14:07 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-23 2:41 [U-Boot] [PATCH v2 1/2] env_fat: use get_device_and_partition() during env save and load Josh Wu
2014-06-23 2:41 ` [U-Boot] [PATCH v2 2/2] README: document the CONFIG_ENV_IS_IN_FAT option Josh Wu
2014-06-23 18:41 ` Stephen Warren
2014-06-23 19:08 ` Jon Loeliger
2014-06-24 9:47 ` Josh Wu
2014-06-24 14:07 ` Jon Loeliger
2014-06-24 9:49 ` Josh Wu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox