]> git.ipfire.org Git - people/ms/u-boot.git/blame - fs/ext4/dev.c
Move ALLOC_CACHE_ALIGN_BUFFER() to the new memalign.h header
[people/ms/u-boot.git] / fs / ext4 / dev.c
CommitLineData
a1596438
US
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 *
1a459660 17 * SPDX-License-Identifier: GPL-2.0+
a1596438
US
18 */
19
20/*
21 * Changelog:
22 * 0.1 - Newly created file for ext4fs support. Taken from
23 * fs/ext2/dev.c file in uboot.
24 */
25
26#include <common.h>
27#include <config.h>
cf92e05c 28#include <memalign.h>
81180819 29#include <ext4fs.h>
a1596438 30#include <ext_common.h>
50ce4c07 31#include "ext4_common.h"
a1596438 32
04735e9c 33lbaint_t part_offset;
81180819 34
a1596438 35static block_dev_desc_t *ext4fs_block_dev_desc;
81180819 36static disk_partition_t *part_info;
a1596438 37
81180819 38void ext4fs_set_blk_dev(block_dev_desc_t *rbdd, disk_partition_t *info)
a1596438 39{
50ce4c07 40 assert(rbdd->blksz == (1 << rbdd->log2blksz));
a1596438 41 ext4fs_block_dev_desc = rbdd;
c28cbfa1 42 get_fs()->dev_desc = rbdd;
81180819
RH
43 part_info = info;
44 part_offset = info->start;
f1782883 45 get_fs()->total_sect = ((uint64_t)info->size * info->blksz) >>
50ce4c07 46 get_fs()->dev_desc->log2blksz;
a1596438
US
47}
48
04735e9c 49int ext4fs_devread(lbaint_t sector, int byte_offset, int byte_len, char *buf)
a1596438 50{
a1596438 51 unsigned block_len;
50ce4c07
EE
52 int log2blksz = ext4fs_block_dev_desc->log2blksz;
53 ALLOC_CACHE_ALIGN_BUFFER(char, sec_buf, (ext4fs_block_dev_desc ?
54 ext4fs_block_dev_desc->blksz :
55 0));
56 if (ext4fs_block_dev_desc == NULL) {
57 printf("** Invalid Block Device Descriptor (NULL)\n");
58 return 0;
59 }
a1596438
US
60
61 /* Check partition boundaries */
50ce4c07
EE
62 if ((sector < 0) ||
63 ((sector + ((byte_offset + byte_len - 1) >> log2blksz))
64 >= part_info->size)) {
04735e9c
FL
65 printf("%s read outside partition " LBAFU "\n", __func__,
66 sector);
a1596438
US
67 return 0;
68 }
69
70 /* Get the read to the beginning of a partition */
50ce4c07
EE
71 sector += byte_offset >> log2blksz;
72 byte_offset &= ext4fs_block_dev_desc->blksz - 1;
a1596438 73
04735e9c 74 debug(" <" LBAFU ", %d, %d>\n", sector, byte_offset, byte_len);
a1596438 75
a1596438 76 if (byte_offset != 0) {
b4141195 77 int readlen;
a1596438
US
78 /* read first part which isn't aligned with start of sector */
79 if (ext4fs_block_dev_desc->
80 block_read(ext4fs_block_dev_desc->dev,
81180819 81 part_info->start + sector, 1,
a1596438
US
82 (unsigned long *) sec_buf) != 1) {
83 printf(" ** ext2fs_devread() read error **\n");
84 return 0;
85 }
b4141195
MY
86 readlen = min((int)ext4fs_block_dev_desc->blksz - byte_offset,
87 byte_len);
88 memcpy(buf, sec_buf + byte_offset, readlen);
89 buf += readlen;
90 byte_len -= readlen;
a1596438
US
91 sector++;
92 }
93
94 if (byte_len == 0)
95 return 1;
96
97 /* read sector aligned part */
50ce4c07 98 block_len = byte_len & ~(ext4fs_block_dev_desc->blksz - 1);
a1596438
US
99
100 if (block_len == 0) {
50ce4c07 101 ALLOC_CACHE_ALIGN_BUFFER(u8, p, ext4fs_block_dev_desc->blksz);
a1596438 102
50ce4c07 103 block_len = ext4fs_block_dev_desc->blksz;
a1596438 104 ext4fs_block_dev_desc->block_read(ext4fs_block_dev_desc->dev,
81180819 105 part_info->start + sector,
a1596438
US
106 1, (unsigned long *)p);
107 memcpy(buf, p, byte_len);
108 return 1;
109 }
110
111 if (ext4fs_block_dev_desc->block_read(ext4fs_block_dev_desc->dev,
81180819 112 part_info->start + sector,
50ce4c07 113 block_len >> log2blksz,
a1596438 114 (unsigned long *) buf) !=
50ce4c07 115 block_len >> log2blksz) {
a1596438
US
116 printf(" ** %s read error - block\n", __func__);
117 return 0;
118 }
50ce4c07 119 block_len = byte_len & ~(ext4fs_block_dev_desc->blksz - 1);
a1596438
US
120 buf += block_len;
121 byte_len -= block_len;
50ce4c07 122 sector += block_len / ext4fs_block_dev_desc->blksz;
a1596438
US
123
124 if (byte_len != 0) {
125 /* read rest of data which are not in whole sector */
126 if (ext4fs_block_dev_desc->
127 block_read(ext4fs_block_dev_desc->dev,
81180819 128 part_info->start + sector, 1,
a1596438
US
129 (unsigned long *) sec_buf) != 1) {
130 printf("* %s read error - last part\n", __func__);
131 return 0;
132 }
133 memcpy(buf, sec_buf, byte_len);
134 }
135 return 1;
136}
50ce4c07
EE
137
138int ext4_read_superblock(char *buffer)
139{
140 struct ext_filesystem *fs = get_fs();
141 int sect = SUPERBLOCK_START >> fs->dev_desc->log2blksz;
142 int off = SUPERBLOCK_START % fs->dev_desc->blksz;
143
144 return ext4fs_devread(sect, off, SUPERBLOCK_SIZE,
145 buffer);
146}