2 * (c) Copyright 2016 by VRT Technology
5 * Stuart Longland <stuartl@vrt.com.au>
7 * Based on FAT environment driver
8 * (c) Copyright 2011 by Tigris Elektronik GmbH
11 * Maximilian Schwerin <mvs@tigris.de>
13 * and EXT4 filesystem implementation
14 * (C) Copyright 2011 - 2012 Samsung Electronics
15 * EXT4 filesystem implementation in Uboot by
16 * Uma Shankar <uma.shankar@samsung.com>
17 * Manjunatha C Achar <a.manjunatha@samsung.com>
19 * SPDX-License-Identifier: GPL-2.0+
25 #include <environment.h>
26 #include <linux/stddef.h>
34 DECLARE_GLOBAL_DATA_PTR;
36 #ifdef CONFIG_CMD_SAVEENV
37 static int env_ext4_save(void)
40 struct blk_desc *dev_desc = NULL;
41 disk_partition_t info;
45 err = env_export(&env_new);
49 part = blk_get_device_part_str(EXT4_ENV_INTERFACE,
50 EXT4_ENV_DEVICE_AND_PART,
55 dev = dev_desc->devnum;
56 ext4fs_set_blk_dev(dev_desc, &info);
58 if (!ext4fs_mount(info.size)) {
59 printf("\n** Unable to use %s %s for saveenv **\n",
60 EXT4_ENV_INTERFACE, EXT4_ENV_DEVICE_AND_PART);
64 err = ext4fs_write(EXT4_ENV_FILE, (void *)&env_new, sizeof(env_t));
68 printf("\n** Unable to write \"%s\" from %s%d:%d **\n",
69 EXT4_ENV_FILE, EXT4_ENV_INTERFACE, dev, part);
76 #endif /* CONFIG_CMD_SAVEENV */
78 static int env_ext4_load(void)
80 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
81 struct blk_desc *dev_desc = NULL;
82 disk_partition_t info;
87 part = blk_get_device_part_str(EXT4_ENV_INTERFACE,
88 EXT4_ENV_DEVICE_AND_PART,
91 goto err_env_relocate;
93 dev = dev_desc->devnum;
94 ext4fs_set_blk_dev(dev_desc, &info);
96 if (!ext4fs_mount(info.size)) {
97 printf("\n** Unable to use %s %s for loading the env **\n",
98 EXT4_ENV_INTERFACE, EXT4_ENV_DEVICE_AND_PART);
99 goto err_env_relocate;
102 err = ext4_read_file(EXT4_ENV_FILE, buf, 0, CONFIG_ENV_SIZE, &off);
106 printf("\n** Unable to read \"%s\" from %s%d:%d **\n",
107 EXT4_ENV_FILE, EXT4_ENV_INTERFACE, dev, part);
108 goto err_env_relocate;
115 set_default_env(NULL);
120 U_BOOT_ENV_LOCATION(ext4) = {
121 .location = ENVL_EXT4,
123 .load = env_ext4_load,
124 .save = env_save_ptr(env_ext4_save),