1 // SPDX-License-Identifier: GPL-2.0+
3 * (c) Copyright 2016 by VRT Technology
6 * Stuart Longland <stuartl@vrt.com.au>
8 * Based on FAT environment driver
9 * (c) Copyright 2011 by Tigris Elektronik GmbH
12 * Maximilian Schwerin <mvs@tigris.de>
14 * and EXT4 filesystem implementation
15 * (C) Copyright 2011 - 2012 Samsung Electronics
16 * EXT4 filesystem implementation in Uboot by
17 * Uma Shankar <uma.shankar@samsung.com>
18 * Manjunatha C Achar <a.manjunatha@samsung.com>
25 #include <env_internal.h>
26 #include <linux/stddef.h>
34 __weak const char *env_ext4_get_intf(void)
36 return (const char *)CONFIG_ENV_EXT4_INTERFACE;
39 __weak const char *env_ext4_get_dev_part(void)
41 return (const char *)CONFIG_ENV_EXT4_DEVICE_AND_PART;
44 #ifdef CONFIG_CMD_SAVEENV
45 static int env_ext4_save(void)
48 struct blk_desc *dev_desc = NULL;
49 disk_partition_t info;
52 const char *ifname = env_ext4_get_intf();
53 const char *dev_and_part = env_ext4_get_dev_part();
55 err = env_export(&env_new);
59 part = blk_get_device_part_str(ifname, dev_and_part,
64 dev = dev_desc->devnum;
65 ext4fs_set_blk_dev(dev_desc, &info);
67 if (!ext4fs_mount(info.size)) {
68 printf("\n** Unable to use %s %s for saveenv **\n",
69 ifname, dev_and_part);
73 err = ext4fs_write(CONFIG_ENV_EXT4_FILE, (void *)&env_new,
74 sizeof(env_t), FILETYPE_REG);
78 printf("\n** Unable to write \"%s\" from %s%d:%d **\n",
79 CONFIG_ENV_EXT4_FILE, ifname, dev, part);
86 #endif /* CONFIG_CMD_SAVEENV */
88 static int env_ext4_load(void)
90 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
91 struct blk_desc *dev_desc = NULL;
92 disk_partition_t info;
96 const char *ifname = env_ext4_get_intf();
97 const char *dev_and_part = env_ext4_get_dev_part();
100 if (!strcmp(ifname, "mmc"))
101 mmc_initialize(NULL);
104 part = blk_get_device_part_str(ifname, dev_and_part,
105 &dev_desc, &info, 1);
107 goto err_env_relocate;
109 dev = dev_desc->devnum;
110 ext4fs_set_blk_dev(dev_desc, &info);
112 if (!ext4fs_mount(info.size)) {
113 printf("\n** Unable to use %s %s for loading the env **\n",
114 ifname, dev_and_part);
115 goto err_env_relocate;
118 err = ext4_read_file(CONFIG_ENV_EXT4_FILE, buf, 0, CONFIG_ENV_SIZE,
123 printf("\n** Unable to read \"%s\" from %s%d:%d **\n",
124 CONFIG_ENV_EXT4_FILE, ifname, dev, part);
125 goto err_env_relocate;
128 return env_import(buf, 1);
131 env_set_default(NULL, 0);
136 U_BOOT_ENV_LOCATION(ext4) = {
137 .location = ENVL_EXT4,
139 .load = env_ext4_load,
140 .save = env_save_ptr(env_ext4_save),