All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michael Nazzareno Trimarchi <michael@amarulasolutions.com>
To: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Cc: u-boot@lists.denx.de,
	 Amarula patchwork <linux-amarula@amarulasolutions.com>,
	 GSS_MTK_Uboot_upstream <GSS_MTK_Uboot_upstream@mediatek.com>,
	 Patrice Chotard <patrice.chotard@foss.st.com>,
	Simon Glass <sjg@chromium.org>,
	 Weijie Gao <weijie.gao@mediatek.com>, Wolfgang Denk <wd@denx.de>
Subject: Re: [PATCH v4 00/14] Port manufacturer specific initialization
Date: Fri, 22 Jul 2022 19:22:08 +0200	[thread overview]
Message-ID: <CAOf5uwk657MEeP3taGziiag10aR=oRzMJ72tOzFdf=E-46KkJg@mail.gmail.com> (raw)
In-Reply-To: <20220722161009.2686504-1-dario.binacchi@amarulasolutions.com>

Hi Dario

On Fri, Jul 22, 2022 at 6:11 PM Dario Binacchi
<dario.binacchi@amarulasolutions.com> wrote:
>
> In preparation of re-sync of mtd stack, we opt to move the current stack
> slowly in order to have a more easy sync and test. We would like to
> prepare uboot to support no-jedec and no-onfi compliant nand so we need
> to clean up a bit the code we have now and upstream some of the support.
> In this series we expect no functional change
>
> Tested on:
>  - imx6ull Micron   MT29F2G08ABAGAH4
>  - imx8mn  Macronix MX30LF4G18AC
>
> Changes in v4:
> - Add the patch "mtd: nand: Fix MediaTek MT7621 SoC build" to the series.
>
> Changes in v3:
> - Use commit sha1 with 13 digits.
> - Use commit sha1 with 13 digits.
> - Fix code style warnings raised by patman.
> - Use commit sha1 with 13 digits.
> - Fix code style warnings raised by patman.
> - Fix code style warnings raised by patman.
> - Use commit sha1 with 13 digits.
> - Fix code style warnings raised by patman.
> - Add the SPDX-License-Identifier tag.
> - Use commit sha1 with 13 digits.
> - Add the SPDX-License-Identifier tag.
> - Fix code style warnings raised by patman.
> - Use commit sha1 with 13 digits.
> - Add the SPDX-License-Identifier tag.
> - Fix code style warnings raised by patman.
> - Use commit sha1 with 13 digits.
> - Add the SPDX-License-Identifier tag.
> - Fix code style warnings raised by patman.
> - Use commit sha1 with 13 digits.
> - Add the SPDX-License-Identifier tag.
> - Fix code style warnings raised by patman.
> - Use commit sha1 with 13 digits.
> - Add the SPDX-License-Identifier tag.
> - Fix code style warnings raised by patman.
> - Use commit sha1 with 13 digits.
> - Use commit sha1 with 13 digits.
> - Wrap commit description to a maximum of 75 chars.
>
> Changes in v2:
> - Use short-commit form.
> - Remove linux info. Uboot seems that backport without add this
>   extra information.
> - Use short-commit form.
> - Remove linux info. Uboot seems that backport without add this
>   extra information.
> - Use short-commit form.
> - Remove linux info. Uboot seems that backport without add this
>   extra information.
> - Use short-commit form.
> - Remove linux info. Uboot seems that backport without add this
>   extra information.
> - Adjust the include file in nand_samsung.
> - Use short-commit form
> - Remove linux info. Uboot seems that backport without add this
>   extra information.
> - Adjust the include file in nand_hynix.
> - Use short-commit form
> - Remove linux info. Uboot seems that backport without add this
>   extra information.
> - Adjust the include file in nand_toshiba.
> - Use short-commit form
> - Remove linux info. Uboot seems that backport without add this
>   extra information.
> - Adjust the include file in nand_micron.
> - Use short-commit form
> - Remove linux info. Uboot seems that backport without add this
>   extra information.
> - Adjust the include file in nand_amd.
> - Use short-commit form
> - Remove linux info. Uboot seems that backport without add this
>   extra information.
> - Adjust the include file in nand_macronix.
> - Use short-commit form
> - Remove linux info. Uboot seems that backport without add this
>   extra information.
> - Use short-commit form.
> - Remove linux info. Uboot seems that backport without add this
>   extra information.
>
> Michael Trimarchi (14):
>   mtd: nand: Get rid of busw parameter
>   mtd: nand: Store nand ID in struct nand_chip
>   mtd: nand: Add manufacturer specific initialization/detection steps
>   mtd: nand: Get rid of mtd variable in function calls
>   mtd: nand: Fix MediaTek MT7621 SoC build
>   mtd: nand: Export symbol nand_decode_ext_id
>   mtd: nand: Move Samsung specific init/detection logic in
>     nand_samsung.c
>   mtd: nand: Move Hynix specific init/detection logic in nand_hynix.c
>   mtd: nand: Move Toshiba specific init/detection logic in
>     nand_toshiba.c
>   mtd: nand: Move Micron specific init logic in nand_micron.c
>   mtd: nand: Move AMD/Spansion specific init/detection logic in
>     nand_amd.c
>   mtd: nand: Move Macronix specific initialization in nand_macronix.c
>   mtd: nand: toshiba: Retrieve ECC requirements from extended ID
>   mtd: decommission the NAND museum
>
>  drivers/mtd/nand/raw/Makefile        |  10 +-
>  drivers/mtd/nand/raw/mt7621_nand.c   |   2 +-
>  drivers/mtd/nand/raw/nand_amd.c      |  52 ++++
>  drivers/mtd/nand/raw/nand_base.c     | 370 ++++++++++-----------------
>  drivers/mtd/nand/raw/nand_hynix.c    |  85 ++++++
>  drivers/mtd/nand/raw/nand_ids.c      |  24 +-
>  drivers/mtd/nand/raw/nand_macronix.c |  31 +++
>  drivers/mtd/nand/raw/nand_micron.c   |  87 +++++++
>  drivers/mtd/nand/raw/nand_samsung.c  |  90 +++++++
>  drivers/mtd/nand/raw/nand_toshiba.c  |  79 ++++++
>  include/linux/mtd/rawnand.h          |  78 ++++--
>  11 files changed, 626 insertions(+), 282 deletions(-)
>  create mode 100644 drivers/mtd/nand/raw/nand_amd.c
>  create mode 100644 drivers/mtd/nand/raw/nand_hynix.c
>  create mode 100644 drivers/mtd/nand/raw/nand_macronix.c
>  create mode 100644 drivers/mtd/nand/raw/nand_micron.c
>  create mode 100644 drivers/mtd/nand/raw/nand_samsung.c
>  create mode 100644 drivers/mtd/nand/raw/nand_toshiba.c
>
> --
> 2.32.0
>

Applied thanks.

-- 
Michael Nazzareno Trimarchi
Co-Founder & Chief Executive Officer
M. +39 347 913 2170
michael@amarulasolutions.com
__________________________________

Amarula Solutions BV
Joop Geesinkweg 125, 1114 AB, Amsterdam, NL
T. +31 (0)85 111 9172
info@amarulasolutions.com
www.amarulasolutions.com

      parent reply	other threads:[~2022-07-22 17:23 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-22 16:09 [PATCH v4 00/14] Port manufacturer specific initialization Dario Binacchi
2022-07-22 16:09 ` [PATCH v4 01/14] mtd: nand: Get rid of busw parameter Dario Binacchi
2022-07-22 16:09 ` [PATCH v4 02/14] mtd: nand: Store nand ID in struct nand_chip Dario Binacchi
2022-07-22 16:09 ` [PATCH v4 03/14] mtd: nand: Add manufacturer specific initialization/detection steps Dario Binacchi
2022-07-22 16:09 ` [PATCH v4 04/14] mtd: nand: Get rid of mtd variable in function calls Dario Binacchi
2022-07-22 16:09 ` [PATCH v4 05/14] mtd: nand: Fix MediaTek MT7621 SoC build Dario Binacchi
2022-07-26  0:53   ` Weijie Gao
2022-07-22 16:10 ` [PATCH v4 06/14] mtd: nand: Export symbol nand_decode_ext_id Dario Binacchi
2022-07-22 16:10 ` [PATCH v4 07/14] mtd: nand: Move Samsung specific init/detection logic in nand_samsung.c Dario Binacchi
2022-07-22 16:10 ` [PATCH v4 08/14] mtd: nand: Move Hynix specific init/detection logic in nand_hynix.c Dario Binacchi
2022-07-22 16:10 ` [PATCH v4 09/14] mtd: nand: Move Toshiba specific init/detection logic in nand_toshiba.c Dario Binacchi
2022-07-22 16:10 ` [PATCH v4 10/14] mtd: nand: Move Micron specific init logic in nand_micron.c Dario Binacchi
2022-07-22 16:10 ` [PATCH v4 11/14] mtd: nand: Move AMD/Spansion specific init/detection logic in nand_amd.c Dario Binacchi
2022-07-22 16:10 ` [PATCH v4 12/14] mtd: nand: Move Macronix specific initialization in nand_macronix.c Dario Binacchi
2022-07-22 16:10 ` [PATCH v4 13/14] mtd: nand: toshiba: Retrieve ECC requirements from extended ID Dario Binacchi
2022-07-22 16:10 ` [PATCH v4 14/14] mtd: decommission the NAND museum Dario Binacchi
2022-07-22 17:22 ` Michael Nazzareno Trimarchi [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='CAOf5uwk657MEeP3taGziiag10aR=oRzMJ72tOzFdf=E-46KkJg@mail.gmail.com' \
    --to=michael@amarulasolutions.com \
    --cc=GSS_MTK_Uboot_upstream@mediatek.com \
    --cc=dario.binacchi@amarulasolutions.com \
    --cc=linux-amarula@amarulasolutions.com \
    --cc=patrice.chotard@foss.st.com \
    --cc=sjg@chromium.org \
    --cc=u-boot@lists.denx.de \
    --cc=wd@denx.de \
    --cc=weijie.gao@mediatek.com \
    /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 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.