2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2012-05-25 15:51:44 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2011 - 2012 Samsung Electronics
|
|
|
|
* EXT4 filesystem implementation in Uboot by
|
|
|
|
* Uma Shankar <uma.shankar@samsung.com>
|
|
|
|
* Manjunatha C Achar <a.manjunatha@samsung.com>
|
|
|
|
*
|
|
|
|
* made from existing ext2/dev.c file of Uboot
|
|
|
|
* (C) Copyright 2004
|
|
|
|
* esd gmbh <www.esd-electronics.com>
|
|
|
|
* Reinhard Arlt <reinhard.arlt@esd-electronics.com>
|
|
|
|
*
|
|
|
|
* based on code of fs/reiserfs/dev.c by
|
|
|
|
*
|
|
|
|
* (C) Copyright 2003 - 2004
|
|
|
|
* Sysgo AG, <www.elinos.com>, Pavel Bartusek <pba@sysgo.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Changelog:
|
|
|
|
* 0.1 - Newly created file for ext4fs support. Taken from
|
|
|
|
* fs/ext2/dev.c file in uboot.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2016-02-29 22:25:52 +00:00
|
|
|
#include <blk.h>
|
2012-05-25 15:51:44 +00:00
|
|
|
#include <config.h>
|
2017-09-03 15:00:24 +00:00
|
|
|
#include <fs_internal.h>
|
2012-08-23 11:31:46 +00:00
|
|
|
#include <ext4fs.h>
|
2012-05-25 15:51:44 +00:00
|
|
|
#include <ext_common.h>
|
2013-05-01 01:13:19 +00:00
|
|
|
#include "ext4_common.h"
|
2012-05-25 15:51:44 +00:00
|
|
|
|
2013-06-26 16:11:25 +00:00
|
|
|
lbaint_t part_offset;
|
2012-08-23 11:31:46 +00:00
|
|
|
|
2016-02-29 22:25:34 +00:00
|
|
|
static struct blk_desc *ext4fs_blk_desc;
|
2012-08-23 11:31:46 +00:00
|
|
|
static disk_partition_t *part_info;
|
2012-05-25 15:51:44 +00:00
|
|
|
|
2016-02-29 22:25:34 +00:00
|
|
|
void ext4fs_set_blk_dev(struct blk_desc *rbdd, disk_partition_t *info)
|
2012-05-25 15:51:44 +00:00
|
|
|
{
|
2013-05-01 01:13:19 +00:00
|
|
|
assert(rbdd->blksz == (1 << rbdd->log2blksz));
|
2016-02-29 22:25:34 +00:00
|
|
|
ext4fs_blk_desc = rbdd;
|
2013-05-23 10:22:10 +00:00
|
|
|
get_fs()->dev_desc = rbdd;
|
2012-08-23 11:31:46 +00:00
|
|
|
part_info = info;
|
|
|
|
part_offset = info->start;
|
2014-01-07 22:49:43 +00:00
|
|
|
get_fs()->total_sect = ((uint64_t)info->size * info->blksz) >>
|
2013-05-01 01:13:19 +00:00
|
|
|
get_fs()->dev_desc->log2blksz;
|
2012-05-25 15:51:44 +00:00
|
|
|
}
|
|
|
|
|
2017-09-03 15:00:24 +00:00
|
|
|
int ext4fs_devread(lbaint_t sector, int byte_offset, int byte_len,
|
|
|
|
char *buffer)
|
2012-05-25 15:51:44 +00:00
|
|
|
{
|
2017-09-03 15:00:24 +00:00
|
|
|
return fs_devread(get_fs()->dev_desc, part_info, sector, byte_offset,
|
|
|
|
byte_len, buffer);
|
2012-05-25 15:51:44 +00:00
|
|
|
}
|
2013-05-01 01:13:19 +00:00
|
|
|
|
|
|
|
int ext4_read_superblock(char *buffer)
|
|
|
|
{
|
|
|
|
struct ext_filesystem *fs = get_fs();
|
|
|
|
int sect = SUPERBLOCK_START >> fs->dev_desc->log2blksz;
|
|
|
|
int off = SUPERBLOCK_START % fs->dev_desc->blksz;
|
|
|
|
|
|
|
|
return ext4fs_devread(sect, off, SUPERBLOCK_SIZE,
|
|
|
|
buffer);
|
|
|
|
}
|