blob: e686abc5e3b2e73af86716bbebefb2c4337ecd27 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marek Behún21a14fa2017-09-03 17:00:28 +02002/*
3 * BTRFS filesystem implementation for U-Boot
4 *
5 * 2017 Marek Behun, CZ.NIC, marek.behun@nic.cz
Marek Behún21a14fa2017-09-03 17:00:28 +02006 */
7
8#include <common.h>
9#include <compiler.h>
10#include <fs_internal.h>
11
12struct blk_desc *btrfs_blk_desc;
Simon Glass05289792020-05-10 11:39:57 -060013struct disk_partition *btrfs_part_info;
Marek Behún21a14fa2017-09-03 17:00:28 +020014
15int btrfs_devread(u64 address, int byte_len, void *buf)
16{
17 lbaint_t sector;
18 int byte_offset;
19
20 sector = address >> btrfs_blk_desc->log2blksz;
21 byte_offset = address % btrfs_blk_desc->blksz;
22
23 return fs_devread(btrfs_blk_desc, btrfs_part_info, sector, byte_offset,
24 byte_len, buf);
25}