All of lore.kernel.org
 help / color / mirror / Atom feed
* [ANN] U-Boot v2022.07-rc1 released
@ 2022-04-25 23:26 Tom Rini
  2022-04-26  6:40 ` Michael Nazzareno Trimarchi
  0 siblings, 1 reply; 3+ messages in thread
From: Tom Rini @ 2022-04-25 23:26 UTC (permalink / raw)
  To: u-boot; +Cc: u-boot-custodians, u-boot-board-maintainers

[-- Attachment #1: Type: text/plain, Size: 482 bytes --]

Hey all,

It's release day and so here's v2022.07-rc1.  There's a lot in here, and
there's a few more things yet to come, hopefully this week, in terms of
pull requests.

In terms of a changelog, 
git log --merges v2022.04..v2022.07-rc1
contains what I've pulled but as always, better PR messages and tags
will provide better results here.

So we're now looking at regular releases every other Monday, and with
final release on July 4th, 2022.  Thanks all!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [ANN] U-Boot v2022.07-rc1 released
  2022-04-25 23:26 [ANN] U-Boot v2022.07-rc1 released Tom Rini
@ 2022-04-26  6:40 ` Michael Nazzareno Trimarchi
  2022-04-26  7:54   ` Jagan Teki
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Nazzareno Trimarchi @ 2022-04-26  6:40 UTC (permalink / raw)
  To: Tom Rini; +Cc: u-boot

Hi Tom

On Tue, Apr 26, 2022 at 1:27 AM Tom Rini <trini@konsulko.com> wrote:
>
> Hey all,
>
> It's release day and so here's v2022.07-rc1.  There's a lot in here, and
> there's a few more things yet to come, hopefully this week, in terms of
> pull requests.
>
> In terms of a changelog,
> git log --merges v2022.04..v2022.07-rc1
> contains what I've pulled but as always, better PR messages and tags
> will provide better results here.
>
> So we're now looking at regular releases every other Monday, and with
> final release on July 4th, 2022.  Thanks all!
>
> --
> Tom

I have sent some patches that fixes imx6/8 architecture on bad block
skipping. Right now we have this in uboot

 while (is_badblock(mtd, offs, 1)) {
           page = page + nand_page_per_block;
          /* Check i we've reached the end of flash. */
          if (page >= mtd->size >> chip->page_shift) {
                      free(page_buf);
                      return -ENOMEM;
         }
}

in spl code of nand controller. That code does not work if get one bad block

https://lore.kernel.org/all/20220423081155.27687-2-michael@amarulasolutions.com/T/

It's not enough to add offs += mtd->erasesize; because the first erase
block is not considered at all.

And even take a look at the follow up RFC.

Michael

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [ANN] U-Boot v2022.07-rc1 released
  2022-04-26  6:40 ` Michael Nazzareno Trimarchi
@ 2022-04-26  7:54   ` Jagan Teki
  0 siblings, 0 replies; 3+ messages in thread
From: Jagan Teki @ 2022-04-26  7:54 UTC (permalink / raw)
  To: Tom Rini, Michael Nazzareno Trimarchi, Fabio Estevam, Ye Li; +Cc: u-boot

On Tue, Apr 26, 2022 at 12:11 PM Michael Nazzareno Trimarchi
<michael@amarulasolutions.com> wrote:
>
> Hi Tom
>
> On Tue, Apr 26, 2022 at 1:27 AM Tom Rini <trini@konsulko.com> wrote:
> >
> > Hey all,
> >
> > It's release day and so here's v2022.07-rc1.  There's a lot in here, and
> > there's a few more things yet to come, hopefully this week, in terms of
> > pull requests.
> >
> > In terms of a changelog,
> > git log --merges v2022.04..v2022.07-rc1
> > contains what I've pulled but as always, better PR messages and tags
> > will provide better results here.
> >
> > So we're now looking at regular releases every other Monday, and with
> > final release on July 4th, 2022.  Thanks all!
> >
> > --
> > Tom
>
> I have sent some patches that fixes imx6/8 architecture on bad block
> skipping. Right now we have this in uboot
>
>  while (is_badblock(mtd, offs, 1)) {
>            page = page + nand_page_per_block;
>           /* Check i we've reached the end of flash. */
>           if (page >= mtd->size >> chip->page_shift) {
>                       free(page_buf);
>                       return -ENOMEM;
>          }
> }
>
> in spl code of nand controller. That code does not work if get one bad block

I believe no one encounter this case so far.

Ye Li or Fabio

Any information regarding this issue?

Thanks,
Jagan.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-04-26  7:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-25 23:26 [ANN] U-Boot v2022.07-rc1 released Tom Rini
2022-04-26  6:40 ` Michael Nazzareno Trimarchi
2022-04-26  7:54   ` Jagan Teki

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.