blob: 2cd182cb15c8a863eb8817693e7385d113438fa9 [file] [log] [blame]
Uma Shankar71014b62012-05-25 21:21:44 +05301/*
2 * (C) Copyright 2011 - 2012 Samsung Electronics
3 * EXT4 filesystem implementation in Uboot by
4 * Uma Shankar <uma.shankar@samsung.com>
5 * Manjunatha C Achar <a.manjunatha@samsung.com>
6 *
7 * made from existing ext2/dev.c file of Uboot
8 * (C) Copyright 2004
9 * esd gmbh <www.esd-electronics.com>
10 * Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11 *
12 * based on code of fs/reiserfs/dev.c by
13 *
14 * (C) Copyright 2003 - 2004
15 * Sysgo AG, <www.elinos.com>, Pavel Bartusek <pba@sysgo.com>
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 *
31 */
32
33/*
34 * Changelog:
35 * 0.1 - Newly created file for ext4fs support. Taken from
36 * fs/ext2/dev.c file in uboot.
37 */
38
39#include <common.h>
40#include <config.h>
Rob Herring752e1bd2012-08-23 11:31:46 +000041#include <ext4fs.h>
Uma Shankar71014b62012-05-25 21:21:44 +053042#include <ext_common.h>
Egbert Eich7b1b2552013-05-01 01:13:19 +000043#include "ext4_common.h"
Uma Shankar71014b62012-05-25 21:21:44 +053044
Frederic Leroye7ee0282013-06-26 18:11:25 +020045lbaint_t part_offset;
Rob Herring752e1bd2012-08-23 11:31:46 +000046
Uma Shankar71014b62012-05-25 21:21:44 +053047static block_dev_desc_t *ext4fs_block_dev_desc;
Rob Herring752e1bd2012-08-23 11:31:46 +000048static disk_partition_t *part_info;
Uma Shankar71014b62012-05-25 21:21:44 +053049
Rob Herring752e1bd2012-08-23 11:31:46 +000050void ext4fs_set_blk_dev(block_dev_desc_t *rbdd, disk_partition_t *info)
Uma Shankar71014b62012-05-25 21:21:44 +053051{
Egbert Eich7b1b2552013-05-01 01:13:19 +000052 assert(rbdd->blksz == (1 << rbdd->log2blksz));
Uma Shankar71014b62012-05-25 21:21:44 +053053 ext4fs_block_dev_desc = rbdd;
Stephen Warrenceb785a2013-05-23 10:22:10 +000054 get_fs()->dev_desc = rbdd;
Rob Herring752e1bd2012-08-23 11:31:46 +000055 part_info = info;
56 part_offset = info->start;
Egbert Eich7b1b2552013-05-01 01:13:19 +000057 get_fs()->total_sect = (info->size * info->blksz) >>
58 get_fs()->dev_desc->log2blksz;
Uma Shankar71014b62012-05-25 21:21:44 +053059}
60
Frederic Leroye7ee0282013-06-26 18:11:25 +020061int ext4fs_devread(lbaint_t sector, int byte_offset, int byte_len, char *buf)
Uma Shankar71014b62012-05-25 21:21:44 +053062{
Uma Shankar71014b62012-05-25 21:21:44 +053063 unsigned block_len;
Egbert Eich7b1b2552013-05-01 01:13:19 +000064 int log2blksz = ext4fs_block_dev_desc->log2blksz;
65 ALLOC_CACHE_ALIGN_BUFFER(char, sec_buf, (ext4fs_block_dev_desc ?
66 ext4fs_block_dev_desc->blksz :
67 0));
68 if (ext4fs_block_dev_desc == NULL) {
69 printf("** Invalid Block Device Descriptor (NULL)\n");
70 return 0;
71 }
Uma Shankar71014b62012-05-25 21:21:44 +053072
73 /* Check partition boundaries */
Egbert Eich7b1b2552013-05-01 01:13:19 +000074 if ((sector < 0) ||
75 ((sector + ((byte_offset + byte_len - 1) >> log2blksz))
76 >= part_info->size)) {
Frederic Leroye7ee0282013-06-26 18:11:25 +020077 printf("%s read outside partition " LBAFU "\n", __func__,
78 sector);
Uma Shankar71014b62012-05-25 21:21:44 +053079 return 0;
80 }
81
82 /* Get the read to the beginning of a partition */
Egbert Eich7b1b2552013-05-01 01:13:19 +000083 sector += byte_offset >> log2blksz;
84 byte_offset &= ext4fs_block_dev_desc->blksz - 1;
Uma Shankar71014b62012-05-25 21:21:44 +053085
Frederic Leroye7ee0282013-06-26 18:11:25 +020086 debug(" <" LBAFU ", %d, %d>\n", sector, byte_offset, byte_len);
Uma Shankar71014b62012-05-25 21:21:44 +053087
Uma Shankar71014b62012-05-25 21:21:44 +053088 if (byte_offset != 0) {
89 /* read first part which isn't aligned with start of sector */
90 if (ext4fs_block_dev_desc->
91 block_read(ext4fs_block_dev_desc->dev,
Rob Herring752e1bd2012-08-23 11:31:46 +000092 part_info->start + sector, 1,
Uma Shankar71014b62012-05-25 21:21:44 +053093 (unsigned long *) sec_buf) != 1) {
94 printf(" ** ext2fs_devread() read error **\n");
95 return 0;
96 }
97 memcpy(buf, sec_buf + byte_offset,
Egbert Eich7b1b2552013-05-01 01:13:19 +000098 min(ext4fs_block_dev_desc->blksz
99 - byte_offset, byte_len));
100 buf += min(ext4fs_block_dev_desc->blksz
101 - byte_offset, byte_len);
102 byte_len -= min(ext4fs_block_dev_desc->blksz
103 - byte_offset, byte_len);
Uma Shankar71014b62012-05-25 21:21:44 +0530104 sector++;
105 }
106
107 if (byte_len == 0)
108 return 1;
109
110 /* read sector aligned part */
Egbert Eich7b1b2552013-05-01 01:13:19 +0000111 block_len = byte_len & ~(ext4fs_block_dev_desc->blksz - 1);
Uma Shankar71014b62012-05-25 21:21:44 +0530112
113 if (block_len == 0) {
Egbert Eich7b1b2552013-05-01 01:13:19 +0000114 ALLOC_CACHE_ALIGN_BUFFER(u8, p, ext4fs_block_dev_desc->blksz);
Uma Shankar71014b62012-05-25 21:21:44 +0530115
Egbert Eich7b1b2552013-05-01 01:13:19 +0000116 block_len = ext4fs_block_dev_desc->blksz;
Uma Shankar71014b62012-05-25 21:21:44 +0530117 ext4fs_block_dev_desc->block_read(ext4fs_block_dev_desc->dev,
Rob Herring752e1bd2012-08-23 11:31:46 +0000118 part_info->start + sector,
Uma Shankar71014b62012-05-25 21:21:44 +0530119 1, (unsigned long *)p);
120 memcpy(buf, p, byte_len);
121 return 1;
122 }
123
124 if (ext4fs_block_dev_desc->block_read(ext4fs_block_dev_desc->dev,
Rob Herring752e1bd2012-08-23 11:31:46 +0000125 part_info->start + sector,
Egbert Eich7b1b2552013-05-01 01:13:19 +0000126 block_len >> log2blksz,
Uma Shankar71014b62012-05-25 21:21:44 +0530127 (unsigned long *) buf) !=
Egbert Eich7b1b2552013-05-01 01:13:19 +0000128 block_len >> log2blksz) {
Uma Shankar71014b62012-05-25 21:21:44 +0530129 printf(" ** %s read error - block\n", __func__);
130 return 0;
131 }
Egbert Eich7b1b2552013-05-01 01:13:19 +0000132 block_len = byte_len & ~(ext4fs_block_dev_desc->blksz - 1);
Uma Shankar71014b62012-05-25 21:21:44 +0530133 buf += block_len;
134 byte_len -= block_len;
Egbert Eich7b1b2552013-05-01 01:13:19 +0000135 sector += block_len / ext4fs_block_dev_desc->blksz;
Uma Shankar71014b62012-05-25 21:21:44 +0530136
137 if (byte_len != 0) {
138 /* read rest of data which are not in whole sector */
139 if (ext4fs_block_dev_desc->
140 block_read(ext4fs_block_dev_desc->dev,
Rob Herring752e1bd2012-08-23 11:31:46 +0000141 part_info->start + sector, 1,
Uma Shankar71014b62012-05-25 21:21:44 +0530142 (unsigned long *) sec_buf) != 1) {
143 printf("* %s read error - last part\n", __func__);
144 return 0;
145 }
146 memcpy(buf, sec_buf, byte_len);
147 }
148 return 1;
149}
Egbert Eich7b1b2552013-05-01 01:13:19 +0000150
151int ext4_read_superblock(char *buffer)
152{
153 struct ext_filesystem *fs = get_fs();
154 int sect = SUPERBLOCK_START >> fs->dev_desc->log2blksz;
155 int off = SUPERBLOCK_START % fs->dev_desc->blksz;
156
157 return ext4fs_devread(sect, off, SUPERBLOCK_SIZE,
158 buffer);
159}