Skip to content

Commit

Permalink
Merge tag 'u-boot-nand-20240808' of https://source.denx.de/u-boot/cus…
Browse files Browse the repository at this point in the history
…todians/u-boot-nand-flash

This series adds support for the UBI block device, which allows to read/write
data block by block. The series was tested by Alexey Romanov on SPI NAND.

The patches pass the pipeline CI:
https://source.denx.de/u-boot/custodians/u-boot-nand-flash/-/pipelines/21933
  • Loading branch information
trini committed Aug 8, 2024
2 parents b7d5ce0 + 855f9b6 commit eb8e25c
Show file tree
Hide file tree
Showing 16 changed files with 709 additions and 17 deletions.
78 changes: 72 additions & 6 deletions cmd/ubi.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,18 +423,84 @@ int ubi_volume_begin_write(char *volume, void *buf, size_t size,
return ubi_volume_continue_write(volume, buf, size);
}

int ubi_volume_write(char *volume, void *buf, size_t size)
static int ubi_volume_offset_write(char *volume, void *buf, loff_t offset,
size_t size)
{
return ubi_volume_begin_write(volume, buf, size, size);
int len, tbuf_size, ret;
u64 lnum;
struct ubi_volume *vol;
loff_t off = offset;
void *tbuf;

vol = ubi_find_volume(volume);
if (!vol)
return -ENODEV;

if (size > vol->reserved_pebs * (ubi->leb_size - vol->data_pad))
return -EINVAL;

tbuf_size = vol->usable_leb_size;
tbuf = malloc_cache_aligned(tbuf_size);
if (!tbuf)
return -ENOMEM;

lnum = off;
off = do_div(lnum, vol->usable_leb_size);

do {
struct ubi_volume_desc desc = {
.vol = vol,
.mode = UBI_READWRITE,
};

len = size > tbuf_size ? tbuf_size : size;
if (off + len >= vol->usable_leb_size)
len = vol->usable_leb_size - off;

ret = ubi_read(&desc, (int)lnum, tbuf, 0, tbuf_size);
if (ret) {
pr_err("Failed to read leb %lld (%d)\n", lnum, ret);
goto exit;
}

memcpy(tbuf + off, buf, len);

ret = ubi_leb_change(&desc, (int)lnum, tbuf, tbuf_size);
if (ret) {
pr_err("Failed to write leb %lld (%d)\n", lnum, ret);
goto exit;
}

off += len;
if (off >= vol->usable_leb_size) {
lnum++;
off -= vol->usable_leb_size;
}

buf += len;
size -= len;
} while (size);

exit:
free(tbuf);
return ret;
}

int ubi_volume_write(char *volume, void *buf, loff_t offset, size_t size)
{
if (!offset)
return ubi_volume_begin_write(volume, buf, size, size);

return ubi_volume_offset_write(volume, buf, offset, size);
}

int ubi_volume_read(char *volume, char *buf, size_t size)
int ubi_volume_read(char *volume, char *buf, loff_t offset, size_t size)
{
int err, lnum, off, len, tbuf_size;
void *tbuf;
unsigned long long tmp;
struct ubi_volume *vol;
loff_t offp = 0;
loff_t offp = offset;
size_t len_read;

vol = ubi_find_volume(volume);
Expand Down Expand Up @@ -769,7 +835,7 @@ static int do_ubi(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
(void *)addr, size, full_size);
}
} else {
ret = ubi_volume_write(argv[3], (void *)addr, size);
ret = ubi_volume_write(argv[3], (void *)addr, 0, size);
}
if (!ret) {
printf("%lld bytes written to volume %s\n", size,
Expand All @@ -795,7 +861,7 @@ static int do_ubi(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
}

if (argc == 3) {
return ubi_volume_read(argv[3], (char *)addr, size);
return ubi_volume_read(argv[3], (char *)addr, 0, size);
}
}

Expand Down
10 changes: 9 additions & 1 deletion disk/part.c
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,13 @@ void part_init(struct blk_desc *desc)

blkcache_invalidate(desc->uclass_id, desc->devnum);

if (desc->part_type != PART_TYPE_UNKNOWN) {
for (entry = drv; entry != drv + n_ents; entry++) {
if (entry->part_type == desc->part_type && !entry->test(desc))
return;
}
}

desc->part_type = PART_TYPE_UNKNOWN;
for (entry = drv; entry != drv + n_ents; entry++) {
int ret;
Expand All @@ -304,7 +311,8 @@ static void print_part_header(const char *type, struct blk_desc *desc)
CONFIG_IS_ENABLED(DOS_PARTITION) || \
CONFIG_IS_ENABLED(ISO_PARTITION) || \
CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
CONFIG_IS_ENABLED(EFI_PARTITION)
CONFIG_IS_ENABLED(EFI_PARTITION) || \
CONFIG_IS_ENABLED(MTD_PARTITIONS)
printf("\nPartition Map for %s device %d -- Partition Type: %s\n\n",
uclass_get_name(desc->uclass_id), desc->devnum, type);
#endif /* any CONFIG_..._PARTITION */
Expand Down
2 changes: 2 additions & 0 deletions drivers/block/blk-uclass.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ static struct {
{ UCLASS_PVBLOCK, "pvblock" },
{ UCLASS_BLKMAP, "blkmap" },
{ UCLASS_RKMTD, "rkmtd" },
{ UCLASS_MTD, "mtd" },
{ UCLASS_MTD, "ubi" },
};

static enum uclass_id uclass_name_to_iftype(const char *uclass_idname)
Expand Down
8 changes: 8 additions & 0 deletions drivers/mtd/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ menu "MTD Support"

config MTD_PARTITIONS
bool
select PARTITIONS

config MTD
bool "Enable MTD layer"
Expand Down Expand Up @@ -31,6 +32,13 @@ config MTD_CONCAT
into a single logical device. The larger logical device can then
be partitioned.

config MTD_BLOCK
bool "Enable block device access to MTD devices"
depends on BLK
help
Enable support for block device access to MTD devices
using blk_ops abstraction.

config SYS_MTDPARTS_RUNTIME
bool "Allow MTDPARTS to be configured at runtime"
help
Expand Down
1 change: 1 addition & 0 deletions drivers/mtd/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ obj-y += onenand/
obj-y += spi/
obj-$(CONFIG_MTD_UBI) += ubi/
obj-$(CONFIG_NVMXIP) += nvmxip/
obj-$(CONFIG_MTD_BLOCK) += mtdblock.o

#SPL/TPL build
else
Expand Down
227 changes: 227 additions & 0 deletions drivers/mtd/mtdblock.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,227 @@
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* MTD block - abstraction over MTD subsystem, allowing
* to read and write in blocks using BLK UCLASS.
*
* - Read algorithm:
*
* 1. Convert start block number to start address.
* 2. Read block_dev->blksz bytes using mtd_read() and
* add to start address pointer block_dev->blksz bytes,
* until the requested number of blocks have been read.
*
* - Write algorithm:
*
* 1. Convert start block number to start address.
* 2. Round this address down by mtd->erasesize.
*
* Erase addr Start addr
* | |
* v v
* +----------------+----------------+----------------+
* | blksz | blksz | blksz |
* +----------------+----------------+----------------+
*
* 3. Calculate offset between this two addresses.
* 4. Read mtd->erasesize bytes using mtd_read() into
* temporary buffer from erase address.
*
* Erase addr Start addr
* | |
* v v
* +----------------+----------------+----------------+
* | blksz | blksz | blksz |
* +----------------+----------------+----------------+
* ^
* |
* |
* mtd_read()
* from here
*
* 5. Copy data from user buffer to temporary buffer with offset,
* calculated at step 3.
* 6. Erase and write mtd->erasesize bytes at erase address
* pointer using mtd_erase/mtd_write().
* 7. Add to erase address pointer mtd->erasesize bytes.
* 8. goto 1 until the requested number of blocks have
* been written.
*
* (C) Copyright 2024 SaluteDevices, Inc.
*
* Author: Alexey Romanov <[email protected]>
*/

#include <blk.h>
#include <part.h>
#include <dm/device.h>
#include <dm/device-internal.h>
#include <linux/mtd/mtd.h>

int mtd_bind(struct udevice *dev, struct mtd_info **mtd)
{
struct blk_desc *bdesc;
struct udevice *bdev;
int ret;

ret = blk_create_devicef(dev, "mtd_blk", "blk", UCLASS_MTD,
-1, 512, 0, &bdev);
if (ret) {
pr_err("Cannot create block device\n");
return ret;
}

bdesc = dev_get_uclass_plat(bdev);
dev_set_priv(bdev, mtd);
bdesc->bdev = bdev;
bdesc->part_type = PART_TYPE_MTD;

return 0;
}

static ulong mtd_blk_read(struct udevice *dev, lbaint_t start, lbaint_t blkcnt,
void *dst)
{
struct blk_desc *block_dev = dev_get_uclass_plat(dev);
struct mtd_info *mtd = blk_desc_to_mtd(block_dev);
unsigned int sect_size = block_dev->blksz;
lbaint_t cur = start;
ulong read_cnt = 0;

while (read_cnt < blkcnt) {
int ret;
loff_t sect_start = cur * sect_size;
size_t retlen;

ret = mtd_read(mtd, sect_start, sect_size, &retlen, dst);
if (ret)
return ret;

if (retlen != sect_size) {
pr_err("mtdblock: failed to read block 0x" LBAF "\n", cur);
return -EIO;
}

cur++;
dst += sect_size;
read_cnt++;
}

return read_cnt;
}

static int mtd_erase_write(struct mtd_info *mtd, uint64_t start, const void *src)
{
int ret;
size_t retlen;
struct erase_info erase = { 0 };

erase.mtd = mtd;
erase.addr = start;
erase.len = mtd->erasesize;

ret = mtd_erase(mtd, &erase);
if (ret)
return ret;

ret = mtd_write(mtd, start, mtd->erasesize, &retlen, src);
if (ret)
return ret;

if (retlen != mtd->erasesize) {
pr_err("mtdblock: failed to read block at 0x%llx\n", start);
return -EIO;
}

return 0;
}

static ulong mtd_blk_write(struct udevice *dev, lbaint_t start, lbaint_t blkcnt,
const void *src)
{
struct blk_desc *block_dev = dev_get_uclass_plat(dev);
struct mtd_info *mtd = blk_desc_to_mtd(block_dev);
unsigned int sect_size = block_dev->blksz;
lbaint_t cur = start, blocks_todo = blkcnt;
ulong write_cnt = 0;
u8 *buf;
int ret = 0;

buf = malloc(mtd->erasesize);
if (!buf)
return -ENOMEM;

while (blocks_todo > 0) {
loff_t sect_start = cur * sect_size;
loff_t erase_start = ALIGN_DOWN(sect_start, mtd->erasesize);
u32 offset = sect_start - erase_start;
size_t cur_size = min_t(size_t, mtd->erasesize - offset,
blocks_todo * sect_size);
size_t retlen;
lbaint_t written;

ret = mtd_read(mtd, erase_start, mtd->erasesize, &retlen, buf);
if (ret)
goto out;

if (retlen != mtd->erasesize) {
pr_err("mtdblock: failed to read block 0x" LBAF "\n", cur);
ret = -EIO;
goto out;
}

memcpy(buf + offset, src, cur_size);

ret = mtd_erase_write(mtd, erase_start, buf);
if (ret)
goto out;

written = cur_size / sect_size;

blocks_todo -= written;
cur += written;
src += cur_size;
write_cnt += written;
}

out:
free(buf);

if (ret)
return ret;

return write_cnt;
}

static int mtd_blk_probe(struct udevice *dev)
{
struct blk_desc *bdesc;
struct mtd_info *mtd;
int ret;

ret = device_probe(dev);
if (ret) {
pr_err("Probing %s failed (err=%d)\n", dev->name, ret);
return ret;
}

bdesc = dev_get_uclass_plat(dev);
mtd = blk_desc_to_mtd(bdesc);

if (mtd_type_is_nand(mtd))
pr_warn("MTD device '%s' is NAND, please use UBI devices instead\n",
mtd->name);

return 0;
}

static const struct blk_ops mtd_blk_ops = {
.read = mtd_blk_read,
.write = mtd_blk_write,
};

U_BOOT_DRIVER(mtd_blk) = {
.name = "mtd_blk",
.id = UCLASS_BLK,
.ops = &mtd_blk_ops,
.probe = mtd_blk_probe,
};
Loading

0 comments on commit eb8e25c

Please sign in to comment.