Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 4 | */ |
| 5 | #ifndef _FS_H |
| 6 | #define _FS_H |
| 7 | |
Heinrich Schuchardt | 236a2d1 | 2021-05-15 22:06:16 +0200 | [diff] [blame] | 8 | #include <rtc.h> |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 9 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 10 | struct cmd_tbl; |
| 11 | |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 12 | #define FS_TYPE_ANY 0 |
| 13 | #define FS_TYPE_FAT 1 |
| 14 | #define FS_TYPE_EXT 2 |
Simon Glass | 1184287 | 2012-12-26 09:53:35 +0000 | [diff] [blame] | 15 | #define FS_TYPE_SANDBOX 3 |
Hans de Goede | 690c796 | 2015-09-17 18:46:58 -0400 | [diff] [blame] | 16 | #define FS_TYPE_UBIFS 4 |
Marek BehĂșn | 98ec1d1 | 2017-09-03 17:00:29 +0200 | [diff] [blame] | 17 | #define FS_TYPE_BTRFS 5 |
Joao Marcos Costa | 29da374 | 2020-07-30 15:33:47 +0200 | [diff] [blame] | 18 | #define FS_TYPE_SQUASHFS 6 |
Huang Jianan | 024fb2f | 2022-02-26 15:05:47 +0800 | [diff] [blame] | 19 | #define FS_TYPE_EROFS 7 |
Sean Anderson | c678b32 | 2022-03-22 16:59:20 -0400 | [diff] [blame] | 20 | #define FS_TYPE_SEMIHOSTING 8 |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 21 | |
Simon Glass | 655306c | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 22 | struct blk_desc; |
| 23 | |
Simon Glass | 1b3f75f | 2019-12-28 10:44:44 -0700 | [diff] [blame] | 24 | /** |
| 25 | * do_fat_fsload - Run the fatload command |
| 26 | * |
| 27 | * @cmdtp: Command information for fatload |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 28 | * @flag: Command flags (CMD_FLAG\_...) |
Simon Glass | 1b3f75f | 2019-12-28 10:44:44 -0700 | [diff] [blame] | 29 | * @argc: Number of arguments |
| 30 | * @argv: List of arguments |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 31 | * Return: result (see enum command_ret_t) |
Simon Glass | 1b3f75f | 2019-12-28 10:44:44 -0700 | [diff] [blame] | 32 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 33 | int do_fat_fsload(struct cmd_tbl *cmdtp, int flag, int argc, |
| 34 | char *const argv[]); |
Simon Glass | 1b3f75f | 2019-12-28 10:44:44 -0700 | [diff] [blame] | 35 | |
| 36 | /** |
| 37 | * do_ext2load - Run the ext2load command |
| 38 | * |
| 39 | * @cmdtp: Command information for ext2load |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 40 | * @flag: Command flags (CMD_FLAG\_...) |
Simon Glass | 1b3f75f | 2019-12-28 10:44:44 -0700 | [diff] [blame] | 41 | * @argc: Number of arguments |
| 42 | * @argv: List of arguments |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 43 | * Return: result (see enum command_ret_t) |
Simon Glass | 1b3f75f | 2019-12-28 10:44:44 -0700 | [diff] [blame] | 44 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 45 | int do_ext2load(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); |
Simon Glass | 1b3f75f | 2019-12-28 10:44:44 -0700 | [diff] [blame] | 46 | |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 47 | /* |
Roger Knecht | 224d3c3 | 2022-08-25 12:12:01 +0000 | [diff] [blame] | 48 | * Tell the fs layer which block device and partition to use for future |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 49 | * commands. This also internally identifies the filesystem that is present |
| 50 | * within the partition. The identification process may be limited to a |
| 51 | * specific filesystem type by passing FS_* in the fstype parameter. |
| 52 | * |
| 53 | * Returns 0 on success. |
| 54 | * Returns non-zero if there is an error accessing the disk or partition, or |
| 55 | * no known filesystem type could be recognized on it. |
| 56 | */ |
| 57 | int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype); |
| 58 | |
Simon Glass | 896ed4b | 2022-04-24 23:31:04 -0600 | [diff] [blame] | 59 | /** |
| 60 | * fs_set_type() - Tell fs layer which filesystem type is used |
| 61 | * |
| 62 | * This is needed when reading from a non-block device such as sandbox. It does |
| 63 | * a similar job to fs_set_blk_dev() but just sets the filesystem type instead |
| 64 | * of detecting it and loading it on the block device |
| 65 | * |
| 66 | * @type: Filesystem type to use (FS_TYPE...) |
| 67 | */ |
| 68 | void fs_set_type(int type); |
| 69 | |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 70 | /* |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 71 | * fs_set_blk_dev_with_part - Set current block device + partition |
| 72 | * |
| 73 | * Similar to fs_set_blk_dev(), but useful for cases where you already |
| 74 | * know the blk_desc and part number. |
| 75 | * |
| 76 | * Returns 0 on success. |
| 77 | * Returns non-zero if invalid partition or error accessing the disk. |
| 78 | */ |
| 79 | int fs_set_blk_dev_with_part(struct blk_desc *desc, int part); |
| 80 | |
Alex Kiernan | 3a6163a | 2018-05-29 15:30:50 +0000 | [diff] [blame] | 81 | /** |
AKASHI Takahiro | ca8e377 | 2019-10-07 14:59:35 +0900 | [diff] [blame] | 82 | * fs_close() - Unset current block device and partition |
| 83 | * |
Heinrich Schuchardt | 63a5752 | 2019-10-13 10:26:26 +0200 | [diff] [blame] | 84 | * fs_close() closes the connection to a file system opened with either |
| 85 | * fs_set_blk_dev() or fs_set_dev_with_part(). |
| 86 | * |
| 87 | * Many file functions implicitly call fs_close(), e.g. fs_closedir(), |
| 88 | * fs_exist(), fs_ln(), fs_ls(), fs_mkdir(), fs_read(), fs_size(), fs_write(), |
| 89 | * fs_unlink(). |
AKASHI Takahiro | ca8e377 | 2019-10-07 14:59:35 +0900 | [diff] [blame] | 90 | */ |
| 91 | void fs_close(void); |
| 92 | |
| 93 | /** |
AKASHI Takahiro | 80ac734 | 2019-10-07 14:59:37 +0900 | [diff] [blame] | 94 | * fs_get_type() - Get type of current filesystem |
| 95 | * |
| 96 | * Return: filesystem type |
| 97 | * |
| 98 | * Returns filesystem type representing the current filesystem, or |
| 99 | * FS_TYPE_ANY for any unrecognised filesystem. |
| 100 | */ |
| 101 | int fs_get_type(void); |
| 102 | |
| 103 | /** |
Alex Kiernan | 3a6163a | 2018-05-29 15:30:50 +0000 | [diff] [blame] | 104 | * fs_get_type_name() - Get type of current filesystem |
| 105 | * |
| 106 | * Return: Pointer to filesystem name |
| 107 | * |
| 108 | * Returns a string describing the current filesystem, or the sentinel |
| 109 | * "unsupported" for any unrecognised filesystem. |
| 110 | */ |
| 111 | const char *fs_get_type_name(void); |
| 112 | |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 113 | /* |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 114 | * Print the list of files on the partition previously set by fs_set_blk_dev(), |
| 115 | * in directory "dirname". |
| 116 | * |
| 117 | * Returns 0 on success. Returns non-zero on error. |
| 118 | */ |
| 119 | int fs_ls(const char *dirname); |
| 120 | |
| 121 | /* |
Stephen Warren | d008fbb | 2014-02-03 13:21:00 -0700 | [diff] [blame] | 122 | * Determine whether a file exists |
| 123 | * |
| 124 | * Returns 1 if the file exists, 0 if it doesn't exist. |
| 125 | */ |
| 126 | int fs_exists(const char *filename); |
| 127 | |
| 128 | /* |
Suriyan Ramasami | 96171fb | 2014-11-17 14:39:38 -0800 | [diff] [blame] | 129 | * fs_size - Determine a file's size |
Stephen Warren | 3eb58f5 | 2014-06-11 12:47:26 -0600 | [diff] [blame] | 130 | * |
Suriyan Ramasami | 96171fb | 2014-11-17 14:39:38 -0800 | [diff] [blame] | 131 | * @filename: Name of the file |
| 132 | * @size: Size of file |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 133 | * Return: 0 if ok with valid *size, negative on error |
Stephen Warren | 3eb58f5 | 2014-06-11 12:47:26 -0600 | [diff] [blame] | 134 | */ |
Suriyan Ramasami | 96171fb | 2014-11-17 14:39:38 -0800 | [diff] [blame] | 135 | int fs_size(const char *filename, loff_t *size); |
Stephen Warren | 3eb58f5 | 2014-06-11 12:47:26 -0600 | [diff] [blame] | 136 | |
Heinrich Schuchardt | 5f1d695 | 2019-04-25 20:36:39 +0200 | [diff] [blame] | 137 | /** |
| 138 | * fs_read() - read file from the partition previously set by fs_set_blk_dev() |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 139 | * |
Heinrich Schuchardt | 5f1d695 | 2019-04-25 20:36:39 +0200 | [diff] [blame] | 140 | * Note that not all filesystem drivers support either or both of offset != 0 |
| 141 | * and len != 0. |
| 142 | * |
| 143 | * @filename: full path of the file to read from |
| 144 | * @addr: address of the buffer to write to |
| 145 | * @offset: offset in the file from where to start reading |
| 146 | * @len: the number of bytes to read. Use 0 to read entire file. |
| 147 | * @actread: returns the actual number of bytes read |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 148 | * Return: 0 if OK with valid @actread, -1 on error conditions |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 149 | */ |
Suriyan Ramasami | 96171fb | 2014-11-17 14:39:38 -0800 | [diff] [blame] | 150 | int fs_read(const char *filename, ulong addr, loff_t offset, loff_t len, |
| 151 | loff_t *actread); |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 152 | |
Heinrich Schuchardt | 5f1d695 | 2019-04-25 20:36:39 +0200 | [diff] [blame] | 153 | /** |
| 154 | * fs_write() - write file to the partition previously set by fs_set_blk_dev() |
| 155 | * |
| 156 | * Note that not all filesystem drivers support offset != 0. |
Stephen Warren | 9df2580 | 2014-02-03 13:20:59 -0700 | [diff] [blame] | 157 | * |
Heinrich Schuchardt | 5f1d695 | 2019-04-25 20:36:39 +0200 | [diff] [blame] | 158 | * @filename: full path of the file to write to |
| 159 | * @addr: address of the buffer to read from |
| 160 | * @offset: offset in the file from where to start writing |
| 161 | * @len: the number of bytes to write |
| 162 | * @actwrite: returns the actual number of bytes written |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 163 | * Return: 0 if OK with valid @actwrite, -1 on error conditions |
Stephen Warren | 9df2580 | 2014-02-03 13:20:59 -0700 | [diff] [blame] | 164 | */ |
Suriyan Ramasami | 96171fb | 2014-11-17 14:39:38 -0800 | [diff] [blame] | 165 | int fs_write(const char *filename, ulong addr, loff_t offset, loff_t len, |
| 166 | loff_t *actwrite); |
Stephen Warren | 9df2580 | 2014-02-03 13:20:59 -0700 | [diff] [blame] | 167 | |
| 168 | /* |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 169 | * Directory entry types, matches the subset of DT_x in posix readdir() |
| 170 | * which apply to u-boot. |
| 171 | */ |
| 172 | #define FS_DT_DIR 4 /* directory */ |
| 173 | #define FS_DT_REG 8 /* regular file */ |
| 174 | #define FS_DT_LNK 10 /* symbolic link */ |
| 175 | |
Miquel Raynal | a8e95fd | 2022-06-09 16:02:06 +0200 | [diff] [blame] | 176 | #define FS_DIRENT_NAME_LEN 256 |
| 177 | |
Heinrich Schuchardt | 236a2d1 | 2021-05-15 22:06:16 +0200 | [diff] [blame] | 178 | /** |
| 179 | * struct fs_dirent - directory entry |
| 180 | * |
| 181 | * A directory entry, returned by fs_readdir(). Returns information |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 182 | * about the file/directory at the current directory entry position. |
| 183 | */ |
| 184 | struct fs_dirent { |
Heinrich Schuchardt | 236a2d1 | 2021-05-15 22:06:16 +0200 | [diff] [blame] | 185 | /** @type: one of FS_DT_x (not a mask) */ |
| 186 | unsigned int type; |
| 187 | /** @size: file size */ |
| 188 | loff_t size; |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 189 | /** @attr: attribute flags (FS_ATTR_*) */ |
Heinrich Schuchardt | 236a2d1 | 2021-05-15 22:06:16 +0200 | [diff] [blame] | 190 | u32 attr; |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 191 | /** @create_time: time of creation */ |
Heinrich Schuchardt | 236a2d1 | 2021-05-15 22:06:16 +0200 | [diff] [blame] | 192 | struct rtc_time create_time; |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 193 | /** @access_time: time of last access */ |
Heinrich Schuchardt | 236a2d1 | 2021-05-15 22:06:16 +0200 | [diff] [blame] | 194 | struct rtc_time access_time; |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 195 | /** @change_time: time of last modification */ |
Heinrich Schuchardt | 236a2d1 | 2021-05-15 22:06:16 +0200 | [diff] [blame] | 196 | struct rtc_time change_time; |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 197 | /** @name: file name */ |
Miquel Raynal | a8e95fd | 2022-06-09 16:02:06 +0200 | [diff] [blame] | 198 | char name[FS_DIRENT_NAME_LEN]; |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 199 | }; |
| 200 | |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 201 | /** |
| 202 | * struct fs_dir_stream - Structure representing an opened directory |
| 203 | * |
| 204 | * Struct fs_dir_stream should be treated opaque to the user of fs layer. |
| 205 | * The fields @desc and @part are used by the fs layer. |
| 206 | * File system drivers pass additional private fields with the pointers |
| 207 | * to this structure. |
| 208 | * |
| 209 | * @desc: block device descriptor |
| 210 | * @part: partition number |
| 211 | */ |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 212 | struct fs_dir_stream { |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 213 | struct blk_desc *desc; |
| 214 | int part; |
| 215 | }; |
| 216 | |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 217 | /** |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 218 | * fs_opendir - Open a directory |
| 219 | * |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 220 | * .. note:: |
| 221 | * The returned struct fs_dir_stream should be treated opaque to the |
| 222 | * user of the fs layer. |
| 223 | * |
| 224 | * @filename: path to the directory to open |
| 225 | * Return: |
| 226 | * A pointer to the directory stream or NULL on error and errno set |
| 227 | * appropriately |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 228 | */ |
| 229 | struct fs_dir_stream *fs_opendir(const char *filename); |
| 230 | |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 231 | /** |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 232 | * fs_readdir - Read the next directory entry in the directory stream. |
| 233 | * |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 234 | * fs_readir works in an analogous way to posix readdir(). |
| 235 | * The previously returned directory entry is no longer valid after calling |
| 236 | * fs_readdir() again. |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 237 | * After fs_closedir() is called, the returned directory entry is no |
| 238 | * longer valid. |
| 239 | * |
| 240 | * @dirs: the directory stream |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 241 | * Return: |
| 242 | * the next directory entry (only valid until next fs_readdir() or |
| 243 | * fs_closedir() call, do not attempt to free()) or NULL if the end of |
| 244 | * the directory is reached. |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 245 | */ |
| 246 | struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs); |
| 247 | |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 248 | /** |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 249 | * fs_closedir - close a directory stream |
| 250 | * |
| 251 | * @dirs: the directory stream |
| 252 | */ |
| 253 | void fs_closedir(struct fs_dir_stream *dirs); |
| 254 | |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 255 | /** |
AKASHI Takahiro | 1ba4253 | 2018-09-11 15:59:13 +0900 | [diff] [blame] | 256 | * fs_unlink - delete a file or directory |
| 257 | * |
| 258 | * If a given name is a directory, it will be deleted only if it's empty |
| 259 | * |
| 260 | * @filename: Name of file or directory to delete |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 261 | * Return: 0 on success, -1 on error conditions |
AKASHI Takahiro | 1ba4253 | 2018-09-11 15:59:13 +0900 | [diff] [blame] | 262 | */ |
| 263 | int fs_unlink(const char *filename); |
| 264 | |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 265 | /** |
AKASHI Takahiro | adc8c9f | 2018-09-11 15:59:08 +0900 | [diff] [blame] | 266 | * fs_mkdir - Create a directory |
| 267 | * |
| 268 | * @filename: Name of directory to create |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 269 | * Return: 0 on success, -1 on error conditions |
AKASHI Takahiro | adc8c9f | 2018-09-11 15:59:08 +0900 | [diff] [blame] | 270 | */ |
| 271 | int fs_mkdir(const char *filename); |
| 272 | |
| 273 | /* |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 274 | * Common implementation for various filesystem commands, optionally limited |
| 275 | * to a specific filesystem type via the fstype parameter. |
| 276 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 277 | int do_size(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 278 | int fstype); |
| 279 | int do_load(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 280 | int fstype); |
| 281 | int do_ls(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 282 | int fstype); |
Stephen Warren | d008fbb | 2014-02-03 13:21:00 -0700 | [diff] [blame] | 283 | int file_exists(const char *dev_type, const char *dev_part, const char *file, |
| 284 | int fstype); |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 285 | int do_save(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 286 | int fstype); |
| 287 | int do_rm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 288 | int fstype); |
| 289 | int do_mkdir(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 290 | int fstype); |
| 291 | int do_ln(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
Jean-Jacques Hiblot | bc23748 | 2019-02-13 12:15:26 +0100 | [diff] [blame] | 292 | int fstype); |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 293 | |
Christian Gmeiner | 9f9eec3 | 2014-11-12 14:35:04 +0100 | [diff] [blame] | 294 | /* |
| 295 | * Determine the UUID of the specified filesystem and print it. Optionally it is |
| 296 | * possible to store the UUID directly in env. |
| 297 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 298 | int do_fs_uuid(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 299 | int fstype); |
Christian Gmeiner | 9f9eec3 | 2014-11-12 14:35:04 +0100 | [diff] [blame] | 300 | |
Sjoerd Simons | 7d9faf6 | 2015-01-05 18:13:36 +0100 | [diff] [blame] | 301 | /* |
| 302 | * Determine the type of the specified filesystem and print it. Optionally it is |
| 303 | * possible to store the type directly in env. |
| 304 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 305 | int do_fs_type(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); |
Sjoerd Simons | 7d9faf6 | 2015-01-05 18:13:36 +0100 | [diff] [blame] | 306 | |
Niel Fourie | 9252d70 | 2020-03-24 16:17:04 +0100 | [diff] [blame] | 307 | /** |
| 308 | * do_fs_types - List supported filesystems. |
| 309 | * |
| 310 | * @cmdtp: Command information for fstypes |
Heinrich Schuchardt | 9fe8558 | 2024-10-24 11:15:28 +0200 | [diff] [blame] | 311 | * @flag: Command flags (CMD_FLAG\_...) |
Niel Fourie | 9252d70 | 2020-03-24 16:17:04 +0100 | [diff] [blame] | 312 | * @argc: Number of arguments |
| 313 | * @argv: List of arguments |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 314 | * Return: result (see enum command_ret_t) |
Niel Fourie | 9252d70 | 2020-03-24 16:17:04 +0100 | [diff] [blame] | 315 | */ |
| 316 | int do_fs_types(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[]); |
| 317 | |
Simon Glass | e6c49fc | 2023-06-01 10:22:38 -0600 | [diff] [blame] | 318 | /** |
| 319 | * fs_read_alloc() - Allocate space for a file and read it |
| 320 | * |
| 321 | * You must call fs_set_blk_dev() or a similar function before calling this, |
| 322 | * since that sets up the block device to use. |
| 323 | * |
| 324 | * The file is terminated with a nul character |
| 325 | * |
| 326 | * @fname: Filename to read |
| 327 | * @size: Size of file to read (must be correct!) |
| 328 | * @align: Alignment to use for memory allocation (0 for default) |
| 329 | * @bufp: On success, returns the allocated buffer with the nul-terminated file |
| 330 | * in it |
| 331 | * Return: 0 if OK, -ENOMEM if out of memory, -EIO if read failed |
| 332 | */ |
| 333 | int fs_read_alloc(const char *fname, ulong size, uint align, void **bufp); |
| 334 | |
| 335 | /** |
| 336 | * fs_load_alloc() - Load a file into allocated space |
| 337 | * |
| 338 | * The file is terminated with a nul character |
| 339 | * |
| 340 | * @ifname: Interface name to read from (e.g. "mmc") |
| 341 | * @dev_part_str: Device and partition string (e.g. "1:2") |
| 342 | * @fname: Filename to read |
| 343 | * @max_size: Maximum allowed size for the file (use 0 for 1GB) |
| 344 | * @align: Alignment to use for memory allocation (0 for default) |
| 345 | * @bufp: On success, returns the allocated buffer with the nul-terminated file |
| 346 | * in it |
| 347 | * @sizep: On success, returns the size of the file |
| 348 | * Return: 0 if OK, -ENOMEM if out of memory, -ENOENT if the file does not |
| 349 | * exist, -ENOMEDIUM if the device does not exist, -E2BIG if the file is too |
| 350 | * large (greater than @max_size), -EIO if read failed |
| 351 | */ |
| 352 | int fs_load_alloc(const char *ifname, const char *dev_part_str, |
| 353 | const char *fname, ulong max_size, ulong align, void **bufp, |
| 354 | ulong *sizep); |
| 355 | |
Stephen Warren | eefbc3f | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 356 | #endif /* _FS_H */ |