3 * esd gmbh <www.esd-electronics.com>
6 * based on code of fs/reiserfs/dev.c by
8 * (C) Copyright 2003 - 2004
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #if (CONFIG_COMMANDS & CFG_CMD_EXT2) || defined(CONFIG_CMD_EXT2)
33 static block_dev_desc_t *ext2fs_block_dev_desc;
34 static disk_partition_t part_info;
36 int ext2fs_set_blk_dev (block_dev_desc_t * rbdd, int part)
38 ext2fs_block_dev_desc = rbdd;
41 /* disk doesn't use partition table */
43 part_info.size = rbdd->lba;
44 part_info.blksz = rbdd->blksz;
46 if (get_partition_info
47 (ext2fs_block_dev_desc, part, &part_info)) {
51 return (part_info.size);
55 int ext2fs_devread (int sector, int byte_offset, int byte_len, char *buf) {
56 char sec_buf[SECTOR_SIZE];
60 * Check partition boundaries
63 || ((sector + ((byte_offset + byte_len - 1) >> SECTOR_BITS)) >=
65 /* errnum = ERR_OUTSIDE_PART; */
66 printf (" ** ext2fs_devread() read outside partition sector %d\n", sector);
71 * Get the read to the beginning of a partition.
73 sector += byte_offset >> SECTOR_BITS;
74 byte_offset &= SECTOR_SIZE - 1;
76 debug (" <%d, %d, %d>\n", sector, byte_offset, byte_len);
78 if (ext2fs_block_dev_desc == NULL) {
79 printf ("** Invalid Block Device Descriptor (NULL)\n");
83 if (byte_offset != 0) {
84 /* read first part which isn't aligned with start of sector */
85 if (ext2fs_block_dev_desc->
86 block_read (ext2fs_block_dev_desc->dev,
87 part_info.start + sector, 1,
88 (unsigned long *) sec_buf) != 1) {
89 printf (" ** ext2fs_devread() read error **\n");
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);
99 /* read sector aligned part */
100 block_len = byte_len & ~(SECTOR_SIZE - 1);
101 if (ext2fs_block_dev_desc->block_read (ext2fs_block_dev_desc->dev,
102 part_info.start + sector,
103 block_len / SECTOR_SIZE,
104 (unsigned long *) buf) !=
105 block_len / SECTOR_SIZE) {
106 printf (" ** ext2fs_devread() read error - block\n");
110 byte_len -= block_len;
111 sector += block_len / SECTOR_SIZE;
114 /* read rest of data which are not in whole sector */
115 if (ext2fs_block_dev_desc->
116 block_read (ext2fs_block_dev_desc->dev,
117 part_info.start + sector, 1,
118 (unsigned long *) sec_buf) != 1) {
119 printf (" ** ext2fs_devread() read error - last part\n");
122 memcpy (buf, sec_buf, byte_len);
126 #endif /* CFG_CMD_EXT2FS */