blob: 3e993cc220f09d97f85538adeee51eded9bf7076 [file] [log] [blame]
Uma Shankara1596432012-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 Herring81180812012-08-23 11:31:46 +000041#include <ext4fs.h>
Uma Shankara1596432012-05-25 21:21:44 +053042#include <ext_common.h>
Egbert Eich50ce4c02013-05-01 01:13:19 +000043#include "ext4_common.h"
Uma Shankara1596432012-05-25 21:21:44 +053044
Rob Herring81180812012-08-23 11:31:46 +000045unsigned long part_offset;
Uma Shankara1596432012-05-25 21:21:44 +053046
Rob Herring81180812012-08-23 11:31:46 +000047static block_dev_desc_t *ext4fs_block_dev_desc;
48static disk_partition_t *part_info;
49
50void ext4fs_set_blk_dev(block_dev_desc_t *rbdd, disk_partition_t *info)
Uma Shankara1596432012-05-25 21:21:44 +053051{
Egbert Eich50ce4c02013-05-01 01:13:19 +000052 assert(rbdd->blksz == (1 << rbdd->log2blksz));
Uma Shankara1596432012-05-25 21:21:44 +053053 ext4fs_block_dev_desc = rbdd;
Rob Herring81180812012-08-23 11:31:46 +000054 part_info = info;
55 part_offset = info->start;
Egbert Eich50ce4c02013-05-01 01:13:19 +000056 get_fs()->total_sect = (info->size * info->blksz) >>
57 get_fs()->dev_desc->log2blksz;
Ɓukasz Majewskia1f41f12012-12-05 08:06:38 +000058 get_fs()->dev_desc = rbdd;
Uma Shankara1596432012-05-25 21:21:44 +053059}
60
61int ext4fs_devread(int sector, int byte_offset, int byte_len, char *buf)
62{
Uma Shankara1596432012-05-25 21:21:44 +053063 unsigned block_len;
Egbert Eich50ce4c02013-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 Shankara1596432012-05-25 21:21:44 +053072
73 /* Check partition boundaries */
Egbert Eich50ce4c02013-05-01 01:13:19 +000074 if ((sector < 0) ||
75 ((sector + ((byte_offset + byte_len - 1) >> log2blksz))
76 >= part_info->size)) {
Uma Shankara1596432012-05-25 21:21:44 +053077 printf("%s read outside partition %d\n", __func__, sector);
78 return 0;
79 }
80
81 /* Get the read to the beginning of a partition */
Egbert Eich50ce4c02013-05-01 01:13:19 +000082 sector += byte_offset >> log2blksz;
83 byte_offset &= ext4fs_block_dev_desc->blksz - 1;
Uma Shankara1596432012-05-25 21:21:44 +053084
85 debug(" <%d, %d, %d>\n", sector, byte_offset, byte_len);
86
Uma Shankara1596432012-05-25 21:21:44 +053087 if (byte_offset != 0) {
88 /* read first part which isn't aligned with start of sector */
89 if (ext4fs_block_dev_desc->
90 block_read(ext4fs_block_dev_desc->dev,
Rob Herring81180812012-08-23 11:31:46 +000091 part_info->start + sector, 1,
Uma Shankara1596432012-05-25 21:21:44 +053092 (unsigned long *) sec_buf) != 1) {
93 printf(" ** ext2fs_devread() read error **\n");
94 return 0;
95 }
96 memcpy(buf, sec_buf + byte_offset,
Egbert Eich50ce4c02013-05-01 01:13:19 +000097 min(ext4fs_block_dev_desc->blksz
98 - byte_offset, byte_len));
99 buf += min(ext4fs_block_dev_desc->blksz
100 - byte_offset, byte_len);
101 byte_len -= min(ext4fs_block_dev_desc->blksz
102 - byte_offset, byte_len);
Uma Shankara1596432012-05-25 21:21:44 +0530103 sector++;
104 }
105
106 if (byte_len == 0)
107 return 1;
108
109 /* read sector aligned part */
Egbert Eich50ce4c02013-05-01 01:13:19 +0000110 block_len = byte_len & ~(ext4fs_block_dev_desc->blksz - 1);
Uma Shankara1596432012-05-25 21:21:44 +0530111
112 if (block_len == 0) {
Egbert Eich50ce4c02013-05-01 01:13:19 +0000113 ALLOC_CACHE_ALIGN_BUFFER(u8, p, ext4fs_block_dev_desc->blksz);
Uma Shankara1596432012-05-25 21:21:44 +0530114
Egbert Eich50ce4c02013-05-01 01:13:19 +0000115 block_len = ext4fs_block_dev_desc->blksz;
Uma Shankara1596432012-05-25 21:21:44 +0530116 ext4fs_block_dev_desc->block_read(ext4fs_block_dev_desc->dev,
Rob Herring81180812012-08-23 11:31:46 +0000117 part_info->start + sector,
Uma Shankara1596432012-05-25 21:21:44 +0530118 1, (unsigned long *)p);
119 memcpy(buf, p, byte_len);
120 return 1;
121 }
122
123 if (ext4fs_block_dev_desc->block_read(ext4fs_block_dev_desc->dev,
Rob Herring81180812012-08-23 11:31:46 +0000124 part_info->start + sector,
Egbert Eich50ce4c02013-05-01 01:13:19 +0000125 block_len >> log2blksz,
Uma Shankara1596432012-05-25 21:21:44 +0530126 (unsigned long *) buf) !=
Egbert Eich50ce4c02013-05-01 01:13:19 +0000127 block_len >> log2blksz) {
Uma Shankara1596432012-05-25 21:21:44 +0530128 printf(" ** %s read error - block\n", __func__);
129 return 0;
130 }
Egbert Eich50ce4c02013-05-01 01:13:19 +0000131 block_len = byte_len & ~(ext4fs_block_dev_desc->blksz - 1);
Uma Shankara1596432012-05-25 21:21:44 +0530132 buf += block_len;
133 byte_len -= block_len;
Egbert Eich50ce4c02013-05-01 01:13:19 +0000134 sector += block_len / ext4fs_block_dev_desc->blksz;
Uma Shankara1596432012-05-25 21:21:44 +0530135
136 if (byte_len != 0) {
137 /* read rest of data which are not in whole sector */
138 if (ext4fs_block_dev_desc->
139 block_read(ext4fs_block_dev_desc->dev,
Rob Herring81180812012-08-23 11:31:46 +0000140 part_info->start + sector, 1,
Uma Shankara1596432012-05-25 21:21:44 +0530141 (unsigned long *) sec_buf) != 1) {
142 printf("* %s read error - last part\n", __func__);
143 return 0;
144 }
145 memcpy(buf, sec_buf, byte_len);
146 }
147 return 1;
148}
Egbert Eich50ce4c02013-05-01 01:13:19 +0000149
150int ext4_read_superblock(char *buffer)
151{
152 struct ext_filesystem *fs = get_fs();
153 int sect = SUPERBLOCK_START >> fs->dev_desc->log2blksz;
154 int off = SUPERBLOCK_START % fs->dev_desc->blksz;
155
156 return ext4fs_devread(sect, off, SUPERBLOCK_SIZE,
157 buffer);
158}