]> git.ipfire.org Git - thirdparty/u-boot.git/blob - env/ext4.c
911e19c6d3d7e9f54fdbe3b634b2c6d4f4954769
[thirdparty/u-boot.git] / env / ext4.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * (c) Copyright 2016 by VRT Technology
4 *
5 * Author:
6 * Stuart Longland <stuartl@vrt.com.au>
7 *
8 * Based on FAT environment driver
9 * (c) Copyright 2011 by Tigris Elektronik GmbH
10 *
11 * Author:
12 * Maximilian Schwerin <mvs@tigris.de>
13 *
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>
19 */
20
21 #include <common.h>
22
23 #include <command.h>
24 #include <env.h>
25 #include <env_internal.h>
26 #include <linux/stddef.h>
27 #include <malloc.h>
28 #include <memalign.h>
29 #include <search.h>
30 #include <errno.h>
31 #include <ext4fs.h>
32 #include <mmc.h>
33
34 __weak const char *env_ext4_get_intf(void)
35 {
36 return (const char *)CONFIG_ENV_EXT4_INTERFACE;
37 }
38
39 __weak const char *env_ext4_get_dev_part(void)
40 {
41 return (const char *)CONFIG_ENV_EXT4_DEVICE_AND_PART;
42 }
43
44 static int env_ext4_save(void)
45 {
46 env_t env_new;
47 struct blk_desc *dev_desc = NULL;
48 disk_partition_t info;
49 int dev, part;
50 int err;
51 const char *ifname = env_ext4_get_intf();
52 const char *dev_and_part = env_ext4_get_dev_part();
53
54 err = env_export(&env_new);
55 if (err)
56 return err;
57
58 part = blk_get_device_part_str(ifname, dev_and_part,
59 &dev_desc, &info, 1);
60 if (part < 0)
61 return 1;
62
63 dev = dev_desc->devnum;
64 ext4fs_set_blk_dev(dev_desc, &info);
65
66 if (!ext4fs_mount(info.size)) {
67 printf("\n** Unable to use %s %s for saveenv **\n",
68 ifname, dev_and_part);
69 return 1;
70 }
71
72 err = ext4fs_write(CONFIG_ENV_EXT4_FILE, (void *)&env_new,
73 sizeof(env_t), FILETYPE_REG);
74 ext4fs_close();
75
76 if (err == -1) {
77 printf("\n** Unable to write \"%s\" from %s%d:%d **\n",
78 CONFIG_ENV_EXT4_FILE, ifname, dev, part);
79 return 1;
80 }
81
82 puts("done\n");
83 return 0;
84 }
85
86 static int env_ext4_load(void)
87 {
88 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
89 struct blk_desc *dev_desc = NULL;
90 disk_partition_t info;
91 int dev, part;
92 int err;
93 loff_t off;
94 const char *ifname = env_ext4_get_intf();
95 const char *dev_and_part = env_ext4_get_dev_part();
96
97 #ifdef CONFIG_MMC
98 if (!strcmp(ifname, "mmc"))
99 mmc_initialize(NULL);
100 #endif
101
102 part = blk_get_device_part_str(ifname, dev_and_part,
103 &dev_desc, &info, 1);
104 if (part < 0)
105 goto err_env_relocate;
106
107 dev = dev_desc->devnum;
108 ext4fs_set_blk_dev(dev_desc, &info);
109
110 if (!ext4fs_mount(info.size)) {
111 printf("\n** Unable to use %s %s for loading the env **\n",
112 ifname, dev_and_part);
113 goto err_env_relocate;
114 }
115
116 err = ext4_read_file(CONFIG_ENV_EXT4_FILE, buf, 0, CONFIG_ENV_SIZE,
117 &off);
118 ext4fs_close();
119
120 if (err == -1) {
121 printf("\n** Unable to read \"%s\" from %s%d:%d **\n",
122 CONFIG_ENV_EXT4_FILE, ifname, dev, part);
123 goto err_env_relocate;
124 }
125
126 return env_import(buf, 1);
127
128 err_env_relocate:
129 env_set_default(NULL, 0);
130
131 return -EIO;
132 }
133
134 U_BOOT_ENV_LOCATION(ext4) = {
135 .location = ENVL_EXT4,
136 ENV_NAME("EXT4")
137 .load = env_ext4_load,
138 .save = ENV_SAVE_PTR(env_ext4_save),
139 };