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>
26 #include <env_internal.h>
27 #include <linux/stddef.h>
34 #include <asm/global_data.h>
36 DECLARE_GLOBAL_DATA_PTR;
38 __weak const char *env_ext4_get_intf(void)
40 return (const char *)CONFIG_ENV_EXT4_INTERFACE;
43 __weak const char *env_ext4_get_dev_part(void)
46 static char *part_str;
49 part_str = CONFIG_ENV_EXT4_DEVICE_AND_PART;
50 if (!strcmp(CONFIG_ENV_EXT4_INTERFACE, "mmc") && part_str[0] == ':') {
51 part_str = "0" CONFIG_ENV_EXT4_DEVICE_AND_PART;
52 part_str[0] += mmc_get_env_dev();
58 return (const char *)CONFIG_ENV_EXT4_DEVICE_AND_PART;
62 static int env_ext4_save_buffer(env_t *env_new)
64 struct blk_desc *dev_desc = NULL;
65 struct disk_partition info;
68 const char *ifname = env_ext4_get_intf();
69 const char *dev_and_part = env_ext4_get_dev_part();
71 part = blk_get_device_part_str(ifname, dev_and_part,
76 dev = dev_desc->devnum;
77 ext4fs_set_blk_dev(dev_desc, &info);
79 if (!ext4fs_mount(info.size)) {
80 printf("\n** Unable to use %s %s for saveenv **\n",
81 ifname, dev_and_part);
85 err = ext4fs_write(CONFIG_ENV_EXT4_FILE, (void *)env_new,
86 sizeof(env_t), FILETYPE_REG);
90 printf("\n** Unable to write \"%s\" from %s%d:%d **\n",
91 CONFIG_ENV_EXT4_FILE, ifname, dev, part);
98 static int env_ext4_save(void)
103 err = env_export(&env_new);
107 err = env_ext4_save_buffer(&env_new);
111 gd->env_valid = ENV_VALID;
117 static int env_ext4_erase(void)
122 memset(&env_new, 0, sizeof(env_t));
124 err = env_ext4_save_buffer(&env_new);
128 gd->env_valid = ENV_INVALID;
134 static int env_ext4_load(void)
136 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
137 struct blk_desc *dev_desc = NULL;
138 struct disk_partition info;
142 const char *ifname = env_ext4_get_intf();
143 const char *dev_and_part = env_ext4_get_dev_part();
146 if (!strcmp(ifname, "mmc"))
147 mmc_initialize(NULL);
150 part = blk_get_device_part_str(ifname, dev_and_part,
151 &dev_desc, &info, 1);
153 goto err_env_relocate;
155 dev = dev_desc->devnum;
156 ext4fs_set_blk_dev(dev_desc, &info);
158 if (!ext4fs_mount(info.size)) {
159 printf("\n** Unable to use %s %s for loading the env **\n",
160 ifname, dev_and_part);
161 goto err_env_relocate;
164 err = ext4_read_file(CONFIG_ENV_EXT4_FILE, buf, 0, CONFIG_ENV_SIZE,
169 printf("\n** Unable to read \"%s\" from %s%d:%d **\n",
170 CONFIG_ENV_EXT4_FILE, ifname, dev, part);
171 goto err_env_relocate;
174 err = env_import(buf, 1, H_EXTERNAL);
176 gd->env_valid = ENV_VALID;
181 env_set_default(NULL, 0);
186 U_BOOT_ENV_LOCATION(ext4) = {
187 .location = ENVL_EXT4,
189 .load = env_ext4_load,
190 .save = ENV_SAVE_PTR(env_ext4_save),
191 .erase = ENV_ERASE_PTR(env_ext4_erase),