]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
fd1000b9 SL |
2 | /* |
3 | * (c) Copyright 2016 by VRT Technology | |
4 | * | |
5 | * Author: | |
6 | * Stuart Longland <[email protected]> | |
7 | * | |
8 | * Based on FAT environment driver | |
9 | * (c) Copyright 2011 by Tigris Elektronik GmbH | |
10 | * | |
11 | * Author: | |
12 | * Maximilian Schwerin <[email protected]> | |
13 | * | |
14 | * and EXT4 filesystem implementation | |
15 | * (C) Copyright 2011 - 2012 Samsung Electronics | |
16 | * EXT4 filesystem implementation in Uboot by | |
17 | * Uma Shankar <[email protected]> | |
18 | * Manjunatha C Achar <[email protected]> | |
fd1000b9 SL |
19 | */ |
20 | ||
21 | #include <common.h> | |
e6f6f9e6 | 22 | #include <part.h> |
fd1000b9 SL |
23 | |
24 | #include <command.h> | |
0ac7d722 | 25 | #include <env.h> |
f3998fdc | 26 | #include <env_internal.h> |
fd1000b9 SL |
27 | #include <linux/stddef.h> |
28 | #include <malloc.h> | |
bd62e241 | 29 | #include <memalign.h> |
fd1000b9 SL |
30 | #include <search.h> |
31 | #include <errno.h> | |
32 | #include <ext4fs.h> | |
33 | #include <mmc.h> | |
34 | ||
d319edca PC |
35 | __weak const char *env_ext4_get_intf(void) |
36 | { | |
37 | return (const char *)CONFIG_ENV_EXT4_INTERFACE; | |
38 | } | |
39 | ||
40 | __weak const char *env_ext4_get_dev_part(void) | |
41 | { | |
42 | return (const char *)CONFIG_ENV_EXT4_DEVICE_AND_PART; | |
43 | } | |
44 | ||
e5bce247 | 45 | static int env_ext4_save(void) |
fd1000b9 SL |
46 | { |
47 | env_t env_new; | |
bd62e241 | 48 | struct blk_desc *dev_desc = NULL; |
0528979f | 49 | struct disk_partition info; |
fd1000b9 SL |
50 | int dev, part; |
51 | int err; | |
d319edca PC |
52 | const char *ifname = env_ext4_get_intf(); |
53 | const char *dev_and_part = env_ext4_get_dev_part(); | |
fd1000b9 SL |
54 | |
55 | err = env_export(&env_new); | |
56 | if (err) | |
57 | return err; | |
58 | ||
d319edca | 59 | part = blk_get_device_part_str(ifname, dev_and_part, |
1087a794 | 60 | &dev_desc, &info, 1); |
fd1000b9 SL |
61 | if (part < 0) |
62 | return 1; | |
63 | ||
bd62e241 | 64 | dev = dev_desc->devnum; |
fd1000b9 SL |
65 | ext4fs_set_blk_dev(dev_desc, &info); |
66 | ||
67 | if (!ext4fs_mount(info.size)) { | |
68 | printf("\n** Unable to use %s %s for saveenv **\n", | |
d319edca | 69 | ifname, dev_and_part); |
fd1000b9 SL |
70 | return 1; |
71 | } | |
72 | ||
1087a794 | 73 | err = ext4fs_write(CONFIG_ENV_EXT4_FILE, (void *)&env_new, |
5efc0686 | 74 | sizeof(env_t), FILETYPE_REG); |
fd1000b9 SL |
75 | ext4fs_close(); |
76 | ||
77 | if (err == -1) { | |
78 | printf("\n** Unable to write \"%s\" from %s%d:%d **\n", | |
d319edca | 79 | CONFIG_ENV_EXT4_FILE, ifname, dev, part); |
fd1000b9 SL |
80 | return 1; |
81 | } | |
82 | ||
83 | puts("done\n"); | |
84 | return 0; | |
85 | } | |
fd1000b9 | 86 | |
c5951991 | 87 | static int env_ext4_load(void) |
fd1000b9 SL |
88 | { |
89 | ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE); | |
bd62e241 | 90 | struct blk_desc *dev_desc = NULL; |
0528979f | 91 | struct disk_partition info; |
fd1000b9 SL |
92 | int dev, part; |
93 | int err; | |
bd62e241 | 94 | loff_t off; |
d319edca PC |
95 | const char *ifname = env_ext4_get_intf(); |
96 | const char *dev_and_part = env_ext4_get_dev_part(); | |
fd1000b9 | 97 | |
95058fbb | 98 | #ifdef CONFIG_MMC |
d319edca | 99 | if (!strcmp(ifname, "mmc")) |
26862b4a | 100 | mmc_initialize(NULL); |
95058fbb | 101 | #endif |
26862b4a | 102 | |
d319edca | 103 | part = blk_get_device_part_str(ifname, dev_and_part, |
1087a794 | 104 | &dev_desc, &info, 1); |
fd1000b9 SL |
105 | if (part < 0) |
106 | goto err_env_relocate; | |
107 | ||
bd62e241 | 108 | dev = dev_desc->devnum; |
fd1000b9 SL |
109 | ext4fs_set_blk_dev(dev_desc, &info); |
110 | ||
111 | if (!ext4fs_mount(info.size)) { | |
112 | printf("\n** Unable to use %s %s for loading the env **\n", | |
d319edca | 113 | ifname, dev_and_part); |
fd1000b9 SL |
114 | goto err_env_relocate; |
115 | } | |
116 | ||
1087a794 JRO |
117 | err = ext4_read_file(CONFIG_ENV_EXT4_FILE, buf, 0, CONFIG_ENV_SIZE, |
118 | &off); | |
fd1000b9 SL |
119 | ext4fs_close(); |
120 | ||
121 | if (err == -1) { | |
122 | printf("\n** Unable to read \"%s\" from %s%d:%d **\n", | |
d319edca | 123 | CONFIG_ENV_EXT4_FILE, ifname, dev, part); |
fd1000b9 SL |
124 | goto err_env_relocate; |
125 | } | |
126 | ||
2166ebf7 | 127 | return env_import(buf, 1); |
fd1000b9 SL |
128 | |
129 | err_env_relocate: | |
0ac7d722 | 130 | env_set_default(NULL, 0); |
c5951991 SG |
131 | |
132 | return -EIO; | |
fd1000b9 | 133 | } |
4415f1d1 SG |
134 | |
135 | U_BOOT_ENV_LOCATION(ext4) = { | |
136 | .location = ENVL_EXT4, | |
ac358beb | 137 | ENV_NAME("EXT4") |
e5bce247 | 138 | .load = env_ext4_load, |
1df96a7e | 139 | .save = ENV_SAVE_PTR(env_ext4_save), |
4415f1d1 | 140 | }; |