U-boot Archive mirror
 help / color / mirror / Atom feed
From: Heiko Schocher <hs@denx.de>
To: Alexey Romanov <avromanov@salutedevices.com>,
	"dario.binacchi@amarulasolutions.com"
	<dario.binacchi@amarulasolutions.com>,
	"michael@amarulasolutions.com" <michael@amarulasolutions.com>,
	"frieder.schrempf@kontron.de" <frieder.schrempf@kontron.de>,
	"kmpark@infradead.org" <kmpark@infradead.org>,
	"joe.hershberger@ni.com" <joe.hershberger@ni.com>,
	"dunaev@tecon.ru" <dunaev@tecon.ru>,
	"sjg@chromium.org" <sjg@chromium.org>,
	"bmeng@tinylab.org" <bmeng@tinylab.org>,
	"xypron.glpk@gmx.de" <xypron.glpk@gmx.de>,
	"tobias@waldekranz.com" <tobias@waldekranz.com>,
	"jpewhacker@gmail.com" <jpewhacker@gmail.com>,
	"marek.vasut+renesas@mailbox.org"
	<marek.vasut+renesas@mailbox.org>,
	"kever.yang@rock-chips.com" <kever.yang@rock-chips.com>,
	"jbx6244@gmail.com" <jbx6244@gmail.com>,
	"abdellatif.elkhlifi@arm.com" <abdellatif.elkhlifi@arm.com>,
	"mikhail.kshevetskiy@iopsys.eu" <mikhail.kshevetskiy@iopsys.eu>,
	"jagan@amarulasolutions.com" <jagan@amarulasolutions.com>
Cc: kernel <kernel@sberdevices.ru>,
	"u-boot@lists.denx.de" <u-boot@lists.denx.de>
Subject: Re: [PATCH v2 0/6] Introduce UBI block device
Date: Mon, 6 May 2024 16:04:09 +0200	[thread overview]
Message-ID: <6ac44ced-60b5-73fc-f696-9f769dbf59cf@denx.de> (raw)
In-Reply-To: <20240506135755.pgpttzekxd6g3css@cab-wsm-0029881>

Hello Alexey,

On 06.05.24 15:58, Alexey Romanov wrote:
> Hello! Ping.

okay from my side... I think I acked them already

@Dario: IIRC the patchset is delegated to you...

If it is okay, I can apply it in u-boot-ubi and send a pull request to
Tom, but please, send a Acked-by or Reviewed-by and delegate it back to me!

Thanks!

bye,
Heiko
> 
> On Mon, Mar 25, 2024 at 05:41:42PM +0300, Alexey Romanov wrote:
>> Hello!
>>
>> This series adds support for the UBI block device, which
>> allows to read/write data block by block. For example,
>> it can now be used for BCB or Android AB command:
>>
>>    $ bcb load ubi 0 part_name
>>
>> Tested only on SPI NAND, so bind is made only for
>> SPI NAND drivers. Can be used with mtdblock device [1].
>>
>> ---
>>
>> Changes V1 -> V2 [2]:
>>
>>   - Rebased over mtdblock v2 patchset [3].
>>   - Compile UBI partitions support only if CONFIG_BLK option
>>     is enabled.
>>
>> - Links:
>>
>>    [1] https://lore.kernel.org/all/20240227100441.1811047-1-avromanov@salutedevices.com/
>>    [2] https://lore.kernel.org/all/20240306134906.1179285-1-avromanov@salutedevices.com/
>>    [3] https://lore.kernel.org/all/20240307130726.1582487-1-avromanov@salutedevices.com/
>>
>> Alexey Romanov (6):
>>    ubi: allow to read from volume with offset
>>    ubi: allow to write to volume with offset
>>    drivers: introduce UBI block abstraction
>>    disk: don't try search for partition type if already set
>>    disk: support UBI partitions
>>    spinand: bind UBI block
>>
>>   cmd/ubi.c                   |  77 +++++++++++++++++++--
>>   disk/part.c                 |   7 ++
>>   drivers/block/blk-uclass.c  |   1 +
>>   drivers/mtd/nand/spi/core.c |   8 ++-
>>   drivers/mtd/ubi/Makefile    |   1 +
>>   drivers/mtd/ubi/block.c     | 130 ++++++++++++++++++++++++++++++++++++
>>   drivers/mtd/ubi/part.c      |  99 +++++++++++++++++++++++++++
>>   env/ubi.c                   |  16 ++---
>>   include/part.h              |   2 +
>>   include/ubi_uboot.h         |   8 ++-
>>   10 files changed, 332 insertions(+), 17 deletions(-)
>>   create mode 100644 drivers/mtd/ubi/block.c
>>   create mode 100644 drivers/mtd/ubi/part.c
>>
>> -- 
>> 2.34.1
>>
> 

-- 
DENX Software Engineering GmbH,      Managing Director: Erika Unter
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-52   Fax: +49-8142-66989-80   Email: hs@denx.de

      parent reply	other threads:[~2024-05-06 14:04 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-25 14:41 [PATCH v2 0/6] Introduce UBI block device Alexey Romanov
2024-03-25 14:41 ` [PATCH v2 1/6] ubi: allow to read from volume with offset Alexey Romanov
2024-03-25 14:41 ` [PATCH v2 2/6] ubi: allow to write to " Alexey Romanov
2024-03-25 14:41 ` [PATCH v2 3/6] drivers: introduce UBI block abstraction Alexey Romanov
2024-03-25 14:41 ` [PATCH v2 4/6] disk: don't try search for partition type if already set Alexey Romanov
2024-03-25 14:41 ` [PATCH v2 5/6] disk: support UBI partitions Alexey Romanov
2024-03-25 14:41 ` [PATCH v2 6/6] spinand: bind UBI block Alexey Romanov
2024-04-03 15:49   ` Frieder Schrempf
2024-04-04  3:23   ` Chuanhong Guo
2024-04-04  8:02     ` Alexey Romanov
2024-04-05  4:40       ` Chuanhong Guo
2024-03-26  4:21 ` [PATCH v2 0/6] Introduce UBI block device Heiko Schocher
2024-04-03  8:44   ` Alexey Romanov
2024-05-06 13:58 ` Alexey Romanov
2024-05-06 13:59   ` Michael Nazzareno Trimarchi
2024-05-23 10:49     ` Alexey Romanov
2024-05-23 10:51       ` Michael Nazzareno Trimarchi
2024-05-23 10:59         ` Alexey Romanov
2024-05-24  9:01           ` Dario Binacchi
2024-05-06 14:04   ` Heiko Schocher [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6ac44ced-60b5-73fc-f696-9f769dbf59cf@denx.de \
    --to=hs@denx.de \
    --cc=abdellatif.elkhlifi@arm.com \
    --cc=avromanov@salutedevices.com \
    --cc=bmeng@tinylab.org \
    --cc=dario.binacchi@amarulasolutions.com \
    --cc=dunaev@tecon.ru \
    --cc=frieder.schrempf@kontron.de \
    --cc=jagan@amarulasolutions.com \
    --cc=jbx6244@gmail.com \
    --cc=joe.hershberger@ni.com \
    --cc=jpewhacker@gmail.com \
    --cc=kernel@sberdevices.ru \
    --cc=kever.yang@rock-chips.com \
    --cc=kmpark@infradead.org \
    --cc=marek.vasut+renesas@mailbox.org \
    --cc=michael@amarulasolutions.com \
    --cc=mikhail.kshevetskiy@iopsys.eu \
    --cc=sjg@chromium.org \
    --cc=tobias@waldekranz.com \
    --cc=u-boot@lists.denx.de \
    --cc=xypron.glpk@gmx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).