tizen 2.4 release
[kernel/u-boot-tm1.git] / fs / ext4 / dev.c
1 /*
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>
41 #include <ext4fs.h>
42 #include <ext_common.h>
43 #include "ext4_common.h"
44
45 unsigned long part_offset;
46
47 static block_dev_desc_t *ext4fs_block_dev_desc;
48 static disk_partition_t *part_info;
49
50 void ext4fs_set_blk_dev(block_dev_desc_t *rbdd, disk_partition_t *info)
51 {
52         ext4fs_block_dev_desc = rbdd;
53         part_info = info;
54         part_offset = info->start;
55         get_fs()->total_sect = (info->size * info->blksz) / SECTOR_SIZE;
56         get_fs()->dev_desc = rbdd;
57 }
58
59 int ext4fs_devread(int sector, int byte_offset, int byte_len, char *buf)
60 {
61         ALLOC_CACHE_ALIGN_BUFFER(char, sec_buf, SECTOR_SIZE);
62         unsigned block_len;
63
64         /* Check partition boundaries */
65         if ((sector < 0)
66             || ((sector + ((byte_offset + byte_len - 1) >> SECTOR_BITS)) >=
67                 part_info->size)) {
68                 printf("%s read outside partition %d\n", __func__, sector);
69                 return 0;
70         }
71
72         /* Get the read to the beginning of a partition */
73         sector += byte_offset >> SECTOR_BITS;
74         byte_offset &= SECTOR_SIZE - 1;
75
76         debug(" <%d, %d, %d>\n", sector, byte_offset, byte_len);
77
78         if (ext4fs_block_dev_desc == NULL) {
79                 printf("** Invalid Block Device Descriptor (NULL)\n");
80                 return 0;
81         }
82
83         if (byte_offset != 0) {
84                 /* read first part which isn't aligned with start of sector */
85                 if (ext4fs_block_dev_desc->
86                     block_read(ext4fs_block_dev_desc->dev,
87                                 part_info->start + sector, 1,
88                                 (unsigned long *) sec_buf) != 1) {
89                         printf(" ** ext2fs_devread() read error **\n");
90                         return 0;
91                 }
92                 memcpy(buf, sec_buf + byte_offset,
93                         min(SECTOR_SIZE - byte_offset, byte_len));
94                 buf += min(SECTOR_SIZE - byte_offset, byte_len);
95                 byte_len -= min(SECTOR_SIZE - byte_offset, byte_len);
96                 sector++;
97         }
98
99         if (byte_len == 0)
100                 return 1;
101
102         /* read sector aligned part */
103         block_len = byte_len & ~(SECTOR_SIZE - 1);
104
105         if (block_len == 0) {
106                 ALLOC_CACHE_ALIGN_BUFFER(u8, p, SECTOR_SIZE);
107
108                 block_len = SECTOR_SIZE;
109                 ext4fs_block_dev_desc->block_read(ext4fs_block_dev_desc->dev,
110                                                   part_info->start + sector,
111                                                   1, (unsigned long *)p);
112                 memcpy(buf, p, byte_len);
113                 return 1;
114         }
115
116         if (ext4fs_block_dev_desc->block_read(ext4fs_block_dev_desc->dev,
117                                                part_info->start + sector,
118                                                block_len / SECTOR_SIZE,
119                                                (unsigned long *) buf) !=
120                                                block_len / SECTOR_SIZE) {
121                 printf(" ** %s read error - block\n", __func__);
122                 return 0;
123         }
124         block_len = byte_len & ~(SECTOR_SIZE - 1);
125         buf += block_len;
126         byte_len -= block_len;
127         sector += block_len / SECTOR_SIZE;
128
129         if (byte_len != 0) {
130                 /* read rest of data which are not in whole sector */
131                 if (ext4fs_block_dev_desc->
132                     block_read(ext4fs_block_dev_desc->dev,
133                                 part_info->start + sector, 1,
134                                 (unsigned long *) sec_buf) != 1) {
135                         printf("* %s read error - last part\n", __func__);
136                         return 0;
137                 }
138                 memcpy(buf, sec_buf, byte_len);
139         }
140         return 1;
141 }