All of lore.kernel.org
 help / color / mirror / Atom feed
From: Liang Yang <liang.yang@amlogic.com>
To: Jianxin Pan <jianxin.pan@amlogic.com>,
	Boris Brezillon <boris.brezillon@bootlin.com>,
	<linux-mtd@lists.infradead.org>
Cc: David Woodhouse <dwmw2@infradead.org>,
	Miquel Raynal <miquel.raynal@bootlin.com>,
	Brian Norris <computersforpeace@gmail.com>,
	Marek Vasut <marek.vasut@gmail.com>,
	Richard Weinberger <richard@nod.at>,
	Jerome Brunet <jbrunet@baylibre.com>,
	Neil Armstrong <narmstrong@baylibre.com>,
	Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
	Carlo Caione <carlo@caione.org>,
	Kevin Hilman <khilman@baylibre.com>,
	Rob Herring <robh@kernel.org>, Yixun Lan <yixun.lan@amlogic.com>,
	Jian Hu <jian.hu@amlogic.com>,
	Hanjie Lin <hanjie.lin@amlogic.com>,
	Victor Wan <victor.wan@amlogic.com>,
	<linux-amlogic@lists.infradead.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, <devicetree@vger.kernel.org>
Subject: Re: [PATCH v7 0/2] mtd: rawnand: meson: add Amlogic NAND driver support
Date: Mon, 26 Nov 2018 14:39:58 +0800	[thread overview]
Message-ID: <9c340a88-06a1-2b81-f435-f9da338077ba@amlogic.com> (raw)
In-Reply-To: <1542386439-30166-1-git-send-email-jianxin.pan@amlogic.com>

Hi Boris and Miquel,

How about the v7 patch?

On 2018/11/17 0:40, Jianxin Pan wrote:
> These two patches try to add initial NAND driver support for Amlogic Meson
> SoCs, current it has been tested on GXL(p212) and AXG(s400) platform.
> 
> Changes since V6 at [7]
>   - use timings->tBERS_max as the maximum time out, delete NFC_CMD_RB_TIMEOUT
>   - fix nand_rw_cmd and support small block flash and which row address less than 3
>   - fix coding style
>   - replace readl/writel_* with readl/writel_relaxed*
>   - delete ECC_SET_PROTECTED_OOB_BYTE and ECC_GET_PROTECTED_OOB_BYTE
>   - implement dma access for read_buf and write_buf, more efficient.
>   - delete waiting dma finish in write process and let NAND_CMD_PAGEPROG and
> RB command go on queuing
>   - add waiting the completed flag of last ecc page be set, for more strict
> 

WARNING: multiple messages have this Message-ID (diff)
From: Liang Yang <liang.yang@amlogic.com>
To: Jianxin Pan <jianxin.pan@amlogic.com>,
	Boris Brezillon <boris.brezillon@bootlin.com>,
	linux-mtd@lists.infradead.org
Cc: David Woodhouse <dwmw2@infradead.org>,
	Miquel Raynal <miquel.raynal@bootlin.com>,
	Brian Norris <computersforpeace@gmail.com>,
	Marek Vasut <marek.vasut@gmail.com>,
	Richard Weinberger <richard@nod.at>,
	Jerome Brunet <jbrunet@baylibre.com>,
	Neil Armstrong <narmstrong@baylibre.com>,
	Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
	Carlo Caione <carlo@caione.org>,
	Kevin Hilman <khilman@baylibre.com>,
	Rob Herring <robh@kernel.org>, Yixun Lan <yixun.lan@amlogic.com>,
	Jian Hu <jian.hu@amlogic.com>,
	Hanjie Lin <hanjie.lin@amlogic.com>,
	Victor Wan <victor.wan@amlogic.com>,
	linux-amlogic@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, devicetree@vger.kernel.org
Subject: Re: [PATCH v7 0/2] mtd: rawnand: meson: add Amlogic NAND driver support
Date: Mon, 26 Nov 2018 14:39:58 +0800	[thread overview]
Message-ID: <9c340a88-06a1-2b81-f435-f9da338077ba@amlogic.com> (raw)
In-Reply-To: <1542386439-30166-1-git-send-email-jianxin.pan@amlogic.com>

Hi Boris and Miquel,

How about the v7 patch?

On 2018/11/17 0:40, Jianxin Pan wrote:
> These two patches try to add initial NAND driver support for Amlogic Meson
> SoCs, current it has been tested on GXL(p212) and AXG(s400) platform.
> 
> Changes since V6 at [7]
>   - use timings->tBERS_max as the maximum time out, delete NFC_CMD_RB_TIMEOUT
>   - fix nand_rw_cmd and support small block flash and which row address less than 3
>   - fix coding style
>   - replace readl/writel_* with readl/writel_relaxed*
>   - delete ECC_SET_PROTECTED_OOB_BYTE and ECC_GET_PROTECTED_OOB_BYTE
>   - implement dma access for read_buf and write_buf, more efficient.
>   - delete waiting dma finish in write process and let NAND_CMD_PAGEPROG and
> RB command go on queuing
>   - add waiting the completed flag of last ecc page be set, for more strict
> 

WARNING: multiple messages have this Message-ID (diff)
From: liang.yang@amlogic.com (Liang Yang)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 0/2] mtd: rawnand: meson: add Amlogic NAND driver support
Date: Mon, 26 Nov 2018 14:39:58 +0800	[thread overview]
Message-ID: <9c340a88-06a1-2b81-f435-f9da338077ba@amlogic.com> (raw)
In-Reply-To: <1542386439-30166-1-git-send-email-jianxin.pan@amlogic.com>

Hi Boris and Miquel,

How about the v7 patch?

On 2018/11/17 0:40, Jianxin Pan wrote:
> These two patches try to add initial NAND driver support for Amlogic Meson
> SoCs, current it has been tested on GXL(p212) and AXG(s400) platform.
> 
> Changes since V6 at [7]
>   - use timings->tBERS_max as the maximum time out, delete NFC_CMD_RB_TIMEOUT
>   - fix nand_rw_cmd and support small block flash and which row address less than 3
>   - fix coding style
>   - replace readl/writel_* with readl/writel_relaxed*
>   - delete ECC_SET_PROTECTED_OOB_BYTE and ECC_GET_PROTECTED_OOB_BYTE
>   - implement dma access for read_buf and write_buf, more efficient.
>   - delete waiting dma finish in write process and let NAND_CMD_PAGEPROG and
> RB command go on queuing
>   - add waiting the completed flag of last ecc page be set, for more strict
> 

WARNING: multiple messages have this Message-ID (diff)
From: liang.yang@amlogic.com (Liang Yang)
To: linus-amlogic@lists.infradead.org
Subject: [PATCH v7 0/2] mtd: rawnand: meson: add Amlogic NAND driver support
Date: Mon, 26 Nov 2018 14:39:58 +0800	[thread overview]
Message-ID: <9c340a88-06a1-2b81-f435-f9da338077ba@amlogic.com> (raw)
In-Reply-To: <1542386439-30166-1-git-send-email-jianxin.pan@amlogic.com>

Hi Boris and Miquel,

How about the v7 patch?

On 2018/11/17 0:40, Jianxin Pan wrote:
> These two patches try to add initial NAND driver support for Amlogic Meson
> SoCs, current it has been tested on GXL(p212) and AXG(s400) platform.
> 
> Changes since V6 at [7]
>   - use timings->tBERS_max as the maximum time out, delete NFC_CMD_RB_TIMEOUT
>   - fix nand_rw_cmd and support small block flash and which row address less than 3
>   - fix coding style
>   - replace readl/writel_* with readl/writel_relaxed*
>   - delete ECC_SET_PROTECTED_OOB_BYTE and ECC_GET_PROTECTED_OOB_BYTE
>   - implement dma access for read_buf and write_buf, more efficient.
>   - delete waiting dma finish in write process and let NAND_CMD_PAGEPROG and
> RB command go on queuing
>   - add waiting the completed flag of last ecc page be set, for more strict
> 

  parent reply	other threads:[~2018-11-26  6:39 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-16 16:40 [PATCH v7 0/2] mtd: rawnand: meson: add Amlogic NAND driver support Jianxin Pan
2018-11-16 16:40 ` Jianxin Pan
2018-11-16 16:40 ` Jianxin Pan
2018-11-16 16:40 ` Jianxin Pan
2018-11-16 16:40 ` [PATCH v7 1/2] dt-bindings: nand: meson: add Amlogic NAND controller driver Jianxin Pan
2018-11-16 16:40   ` Jianxin Pan
2018-11-16 16:40   ` Jianxin Pan
2018-11-16 16:40   ` Jianxin Pan
2018-11-16 16:40 ` [PATCH v7 2/2] mtd: rawnand: meson: add support for Amlogic NAND flash controller Jianxin Pan
2018-11-16 16:40   ` Jianxin Pan
2018-11-16 16:40   ` Jianxin Pan
2018-12-07  9:24   ` Miquel Raynal
2018-12-07  9:24     ` Miquel Raynal
2018-12-07  9:24     ` Miquel Raynal
2018-12-07  9:42     ` Miquel Raynal
2018-12-07  9:42       ` Miquel Raynal
2018-12-07  9:42       ` Miquel Raynal
2018-12-07 10:41       ` Liang Yang
2018-12-07 10:41         ` Liang Yang
2018-12-07 10:41         ` Liang Yang
2018-12-07 10:48         ` Miquel Raynal
2018-12-07 10:48           ` Miquel Raynal
2018-12-07 10:48           ` Miquel Raynal
2018-12-10 11:23     ` Liang Yang
2018-12-10 11:23       ` Liang Yang
2018-12-10 11:23       ` Liang Yang
2018-12-10 11:38       ` Boris Brezillon
2018-12-10 11:38         ` Boris Brezillon
2018-12-10 11:38         ` Boris Brezillon
2018-12-10 12:12         ` Liang Yang
2018-12-10 12:12           ` Liang Yang
2018-12-10 12:12           ` Liang Yang
2018-12-10 14:50           ` Miquel Raynal
2018-12-10 14:50             ` Miquel Raynal
2018-12-10 14:50             ` Miquel Raynal
2018-12-11  1:56             ` Liang Yang
2018-12-11  1:56               ` Liang Yang
2018-12-11  1:56               ` Liang Yang
2018-12-11  7:54               ` Miquel Raynal
2018-12-11  7:54                 ` Miquel Raynal
2018-12-11  7:54                 ` Miquel Raynal
2018-12-11  8:36                 ` Liang Yang
2018-12-11  8:36                   ` Liang Yang
2018-12-11  8:36                   ` Liang Yang
2018-12-11  9:07                   ` Miquel Raynal
2018-12-11  9:07                     ` Miquel Raynal
2018-12-11  9:07                     ` Miquel Raynal
2018-12-11  9:43                     ` Liang Yang
2018-12-11  9:43                       ` Liang Yang
2018-12-11  9:43                       ` Liang Yang
2018-12-11  8:39               ` Boris Brezillon
2018-12-11  8:39                 ` Boris Brezillon
2018-12-11  8:39                 ` Boris Brezillon
2018-12-11  9:39                 ` Liang Yang
2018-12-11  9:39                   ` Liang Yang
2018-12-11  9:39                   ` Liang Yang
2018-11-26  6:39 ` Liang Yang [this message]
2018-11-26  6:39   ` [PATCH v7 0/2] mtd: rawnand: meson: add Amlogic NAND driver support Liang Yang
2018-11-26  6:39   ` Liang Yang
2018-11-26  6:39   ` Liang Yang

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=9c340a88-06a1-2b81-f435-f9da338077ba@amlogic.com \
    --to=liang.yang@amlogic.com \
    --cc=boris.brezillon@bootlin.com \
    --cc=carlo@caione.org \
    --cc=computersforpeace@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dwmw2@infradead.org \
    --cc=hanjie.lin@amlogic.com \
    --cc=jbrunet@baylibre.com \
    --cc=jian.hu@amlogic.com \
    --cc=jianxin.pan@amlogic.com \
    --cc=khilman@baylibre.com \
    --cc=linux-amlogic@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=marek.vasut@gmail.com \
    --cc=martin.blumenstingl@googlemail.com \
    --cc=miquel.raynal@bootlin.com \
    --cc=narmstrong@baylibre.com \
    --cc=richard@nod.at \
    --cc=robh@kernel.org \
    --cc=victor.wan@amlogic.com \
    --cc=yixun.lan@amlogic.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.