blob: 424bb01dcdf97f78e5ad35e9bc7c57fbf15b8ec7 [file] [log] [blame]
Qu Wenruo0e7b8542020-06-24 18:02:48 +02001// SPDX-License-Identifier: GPL-2.0+
2#ifndef __BTRFS_DISK_IO_H__
3#define __BTRFS_DISK_IO_H__
4
Qu Wenruo1a618082020-06-24 18:02:49 +02005#include <linux/sizes.h>
6#include <fs_internal.h>
Qu Wenruo0e7b8542020-06-24 18:02:48 +02007#include "ctree.h"
8#include "disk-io.h"
9
Qu Wenruo1a618082020-06-24 18:02:49 +020010#define BTRFS_SUPER_INFO_OFFSET SZ_64K
11#define BTRFS_SUPER_INFO_SIZE SZ_4K
Qu Wenruo0e7b8542020-06-24 18:02:48 +020012
Qu Wenruod85f9592020-06-24 18:02:55 +020013/* U-boot specific */
14int btrfs_read_superblock(void);
Qu Wenruo0e7b8542020-06-24 18:02:48 +020015
Qu Wenruod85f9592020-06-24 18:02:55 +020016/* From btrfs-progs */
17int read_whole_eb(struct btrfs_fs_info *info, struct extent_buffer *eb, int mirror);
18struct extent_buffer* read_tree_block(struct btrfs_fs_info *fs_info, u64 bytenr,
19 u64 parent_transid);
20
Qu Wenruo83b04df2020-06-24 18:03:09 +020021int read_extent_data(struct btrfs_fs_info *fs_info, char *data, u64 logical,
22 u64 *len, int mirror);
Qu Wenruod85f9592020-06-24 18:02:55 +020023struct extent_buffer* btrfs_find_create_tree_block(
24 struct btrfs_fs_info *fs_info, u64 bytenr);
25struct extent_buffer *btrfs_find_tree_block(struct btrfs_fs_info *fs_info,
26 u64 bytenr, u32 blocksize);
Qu Wenruo1d5a7b72020-06-24 18:03:01 +020027struct btrfs_root *btrfs_read_fs_root_no_cache(struct btrfs_fs_info *fs_info,
28 struct btrfs_key *location);
29struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
30 struct btrfs_key *location);
31
32void btrfs_setup_root(struct btrfs_root *root, struct btrfs_fs_info *fs_info,
33 u64 objectid);
34
35void btrfs_free_fs_info(struct btrfs_fs_info *fs_info);
36struct btrfs_fs_info *btrfs_new_fs_info(void);
37int btrfs_check_fs_compatibility(struct btrfs_super_block *sb);
38int btrfs_setup_all_roots(struct btrfs_fs_info *fs_info);
39void btrfs_release_all_roots(struct btrfs_fs_info *fs_info);
40void btrfs_cleanup_all_caches(struct btrfs_fs_info *fs_info);
41
42struct btrfs_fs_info *open_ctree_fs_info(struct blk_desc *desc,
43 struct disk_partition *part);
44int close_ctree_fs_info(struct btrfs_fs_info *fs_info);
45
Qu Wenruo1a618082020-06-24 18:02:49 +020046int btrfs_read_dev_super(struct blk_desc *desc, struct disk_partition *part,
47 struct btrfs_super_block *sb);
Qu Wenruod85f9592020-06-24 18:02:55 +020048int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid);
49int btrfs_set_buffer_uptodate(struct extent_buffer *buf);
50int btrfs_csum_data(u16 csum_type, const u8 *data, u8 *out, size_t len);
51int csum_tree_block_size(struct extent_buffer *buf, u16 csum_sectorsize,
52 int verify, u16 csum_type);
Qu Wenruo0e7b8542020-06-24 18:02:48 +020053#endif