All of lore.kernel.org
 help / color / mirror / Atom feed
From: 赵仪峰 <yifeng.zhao@rock-chips.com>
To: "Johan Jonker" <jbx6244@gmail.com>,
	"Miquel Raynal" <miquel.raynal@bootlin.com>
Cc: richard <richard@nod.at>, vigneshr <vigneshr@ti.com>,
	robh+dt <robh+dt@kernel.org>,
	devicetree <devicetree@vger.kernel.org>,
	HeikoStübner <heiko@sntech.de>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	linux-rockchip <linux-rockchip@lists.infradead.org>,
	linux-mtd <linux-mtd@lists.infradead.org>,
	linux-arm-kernel <linux-arm-kernel@lists.infradead.org>
Subject: Re: Re: [PATCH v13 2/8] mtd: rawnand: rockchip: NFC drivers for RK3308, RK2928 and others
Date: Wed, 4 Nov 2020 15:30:32 +0800	[thread overview]
Message-ID: <20201104152931632919186@rock-chips.com> (raw)
In-Reply-To: cd349a1f-773d-096a-f0ae-90c5eb847769@gmail.com

On 2020/11/3 1:11, Johan Jonker wrote:
>On 11/2/20 6:00 PM, Miquel Raynal wrote:
>> Hi Johan,
>>
>> Johan Jonker <jbx6244@gmail.com> wrote on Mon, 2 Nov 2020 17:31:18
>> +0100:
>>
>>> On 11/2/20 2:11 PM, Johan Jonker wrote:
>>>> Hi,
>>>>
>>>> On 11/2/20 2:07 PM, Miquel Raynal wrote:
>>>>> Hi Johan, Yifeng
>>>>>
>>>>> Johan Jonker <jbx6244@gmail.com> wrote on Mon, 2 Nov 2020 13:57:56
>>>>> +0100:
>>>>>
>>>>>> Hi Yifeng,
>>>>>>
>>>>>> Don't poke with "ecc->bytes" ones it is set in rk_nfc_ecc_init(). It
>>>>>> will not be noted by the MTD frame work or userspace. I think there's
>>>>>> currently no way to let the user know that a different ECC must be used.
>>>>>> Neither can the user set ECC on the fly.
>>>>>>
>>>>>> Example R/W flow:
>>>>>>
>>>>>>         nand_select_target()
>>>>>> chip->ecc.write_page_raw()
>>>>>> chip->ecc.write_page()
>>>>>>
>>>>>> [..]
>>>>>>
>>>>>> chip->ecc.read_page_raw()
>>>>>> chip->ecc.read_page()
>>>>>>         nand_deselect_target()
>>>>>>
>>>>>> A write/read with:
>>>>>>
>>>>>> rk_nfc_read_page_hwecc()
>>>>>> rk_nfc_write_page_hwecc()
>>>>>>
>>>>>> or
>>>>>>
>>>>>> rk_nfc_read_page_raw()
>>>>>> rk_nfc_write_page_raw()
>>>>>>
>>>>>> must end up with the same result. If we can't archive that, then we
>>>>>> shouldn't offer RAW mode to the user for now. If Miquel agrees you
>>>>>> should just get the driver ready now without these 2 functions and round
>>>>>> things up.
>>>>>
>>>>> What about just not supporting the BootROM area if it was marked
>>>>> "reserved" by the BRom in the DT?
>>>>
>>>> Should we just fill the buffers with '0xff' for boot blocks?
>>>
>>> (part 2) ;)
>>> My fault....
>>> Better use:
>>>
>>>     if ((chip->options & NAND_IS_BOOT_MEDIUM) &&
>>>         (page < (pages_per_blk * rknand->boot_blks))) {
>>>
>>> return -EIO;
>>>
>>>     }
>>
>> Yup, I was about to tell you that I would prefer returning a nice
>> error, this is fine I guess.
>>
>> Anyway, I think reading bad block markers is done in raw mode, so if
>> raw accessors refuse to return valid values for boot blocks, you won't
>> be able to access it neither with raw nor corrected hooks.
>>
>> Perhaps refusing the access to the regular page access is ok, but maybe
>> we should be able to at least read these pages in raw mode
>> (and move the BBM to its right location). What do you think?
>
>I think that the problem with asymmetric read and write access is that a
>user reads data successful, but that it can't write it back after it's
>block is erased. You shouldn't give the illusion that the boot ROM
>blocks can be accessed in RAW mode. Something with perception...does
>user space known that Rockchip's NFC is special...
>
> 

Is it possible to return a error when the ECC is different between the boot ROM blocks and other blocks?
If the ECC is the same, and the OOB layout is the same and does not need special treatment.

static int rk_nfc_read_page_raw(struct nand_chip *chip, u8 *buf, int oob_on,int page)
{
...
 if ((chip->options & NAND_IS_BOOT_MEDIUM) &&
        (page < (pages_per_blk * rknand->boot_blks)) &&
	(rknand->boot_ecc != ecc->strength)) {
		return -EIO;
    }
...
}

About the BBM, the u-boot will create BBT at the first power up.
	chip->bbt_options = NAND_BBT_USE_FLASH | NAND_BBT_NO_OOB;
If uboot does not create BBT, then the framework will scan the OOB of all blocks and  create it.
I modified the read OOB function (enable ECC) ,and it can read the correct bad block mask.

static int rk_nfc_write_oob(struct nand_chip *chip, int page)
{
	return rk_nfc_write_page_hwecc(chip, NULL, 1, page);
}

static int rk_nfc_read_oob(struct nand_chip *chip, int page)
{
	return rk_nfc_read_page_hwecc(chip, NULL, 1, page);
}

chip->ecc.read_oob = rk_nfc_read_oob;
chip->ecc.write_oob = rk_nfc_write_oob;



>>
>> Thanks,
>> Miquèl
>>
>>>
>>>
>>>>
>>>>>
>>>>> Raw accessors is really a nice and basic feature that I would like to
>>>>> have in every new driver.
>>>>>
>>>>> Thanks,
>>>>> Miquèl
>>>>>
>>>>
>>>
>
>
>
>

WARNING: multiple messages have this Message-ID (diff)
From: 赵仪峰 <yifeng.zhao@rock-chips.com>
To: "Johan Jonker" <jbx6244@gmail.com>,
	 "Miquel Raynal" <miquel.raynal@bootlin.com>
Cc: devicetree <devicetree@vger.kernel.org>,
	HeikoStübner <heiko@sntech.de>, richard <richard@nod.at>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	linux-rockchip <linux-rockchip@lists.infradead.org>,
	robh+dt <robh+dt@kernel.org>,
	linux-mtd <linux-mtd@lists.infradead.org>,
	linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
	vigneshr <vigneshr@ti.com>
Subject: Re: Re: [PATCH v13 2/8] mtd: rawnand: rockchip: NFC drivers for RK3308, RK2928 and others
Date: Wed, 4 Nov 2020 15:30:32 +0800	[thread overview]
Message-ID: <20201104152931632919186@rock-chips.com> (raw)
In-Reply-To: cd349a1f-773d-096a-f0ae-90c5eb847769@gmail.com

On 2020/11/3 1:11, Johan Jonker wrote:
>On 11/2/20 6:00 PM, Miquel Raynal wrote:
>> Hi Johan,
>>
>> Johan Jonker <jbx6244@gmail.com> wrote on Mon, 2 Nov 2020 17:31:18
>> +0100:
>>
>>> On 11/2/20 2:11 PM, Johan Jonker wrote:
>>>> Hi,
>>>>
>>>> On 11/2/20 2:07 PM, Miquel Raynal wrote:
>>>>> Hi Johan, Yifeng
>>>>>
>>>>> Johan Jonker <jbx6244@gmail.com> wrote on Mon, 2 Nov 2020 13:57:56
>>>>> +0100:
>>>>>
>>>>>> Hi Yifeng,
>>>>>>
>>>>>> Don't poke with "ecc->bytes" ones it is set in rk_nfc_ecc_init(). It
>>>>>> will not be noted by the MTD frame work or userspace. I think there's
>>>>>> currently no way to let the user know that a different ECC must be used.
>>>>>> Neither can the user set ECC on the fly.
>>>>>>
>>>>>> Example R/W flow:
>>>>>>
>>>>>>         nand_select_target()
>>>>>> chip->ecc.write_page_raw()
>>>>>> chip->ecc.write_page()
>>>>>>
>>>>>> [..]
>>>>>>
>>>>>> chip->ecc.read_page_raw()
>>>>>> chip->ecc.read_page()
>>>>>>         nand_deselect_target()
>>>>>>
>>>>>> A write/read with:
>>>>>>
>>>>>> rk_nfc_read_page_hwecc()
>>>>>> rk_nfc_write_page_hwecc()
>>>>>>
>>>>>> or
>>>>>>
>>>>>> rk_nfc_read_page_raw()
>>>>>> rk_nfc_write_page_raw()
>>>>>>
>>>>>> must end up with the same result. If we can't archive that, then we
>>>>>> shouldn't offer RAW mode to the user for now. If Miquel agrees you
>>>>>> should just get the driver ready now without these 2 functions and round
>>>>>> things up.
>>>>>
>>>>> What about just not supporting the BootROM area if it was marked
>>>>> "reserved" by the BRom in the DT?
>>>>
>>>> Should we just fill the buffers with '0xff' for boot blocks?
>>>
>>> (part 2) ;)
>>> My fault....
>>> Better use:
>>>
>>>     if ((chip->options & NAND_IS_BOOT_MEDIUM) &&
>>>         (page < (pages_per_blk * rknand->boot_blks))) {
>>>
>>> return -EIO;
>>>
>>>     }
>>
>> Yup, I was about to tell you that I would prefer returning a nice
>> error, this is fine I guess.
>>
>> Anyway, I think reading bad block markers is done in raw mode, so if
>> raw accessors refuse to return valid values for boot blocks, you won't
>> be able to access it neither with raw nor corrected hooks.
>>
>> Perhaps refusing the access to the regular page access is ok, but maybe
>> we should be able to at least read these pages in raw mode
>> (and move the BBM to its right location). What do you think?
>
>I think that the problem with asymmetric read and write access is that a
>user reads data successful, but that it can't write it back after it's
>block is erased. You shouldn't give the illusion that the boot ROM
>blocks can be accessed in RAW mode. Something with perception...does
>user space known that Rockchip's NFC is special...
>
> 

Is it possible to return a error when the ECC is different between the boot ROM blocks and other blocks?
If the ECC is the same, and the OOB layout is the same and does not need special treatment.

static int rk_nfc_read_page_raw(struct nand_chip *chip, u8 *buf, int oob_on,int page)
{
...
 if ((chip->options & NAND_IS_BOOT_MEDIUM) &&
        (page < (pages_per_blk * rknand->boot_blks)) &&
	(rknand->boot_ecc != ecc->strength)) {
		return -EIO;
    }
...
}

About the BBM, the u-boot will create BBT at the first power up.
	chip->bbt_options = NAND_BBT_USE_FLASH | NAND_BBT_NO_OOB;
If uboot does not create BBT, then the framework will scan the OOB of all blocks and  create it.
I modified the read OOB function (enable ECC) ,and it can read the correct bad block mask.

static int rk_nfc_write_oob(struct nand_chip *chip, int page)
{
	return rk_nfc_write_page_hwecc(chip, NULL, 1, page);
}

static int rk_nfc_read_oob(struct nand_chip *chip, int page)
{
	return rk_nfc_read_page_hwecc(chip, NULL, 1, page);
}

chip->ecc.read_oob = rk_nfc_read_oob;
chip->ecc.write_oob = rk_nfc_write_oob;



>>
>> Thanks,
>> Miquèl
>>
>>>
>>>
>>>>
>>>>>
>>>>> Raw accessors is really a nice and basic feature that I would like to
>>>>> have in every new driver.
>>>>>
>>>>> Thanks,
>>>>> Miquèl
>>>>>
>>>>
>>>
>
>
>
>
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

WARNING: multiple messages have this Message-ID (diff)
From: 赵仪峰 <yifeng.zhao@rock-chips.com>
To: "Johan Jonker" <jbx6244@gmail.com>,
	 "Miquel Raynal" <miquel.raynal@bootlin.com>
Cc: devicetree <devicetree@vger.kernel.org>,
	HeikoStübner <heiko@sntech.de>, richard <richard@nod.at>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	linux-rockchip <linux-rockchip@lists.infradead.org>,
	robh+dt <robh+dt@kernel.org>,
	linux-mtd <linux-mtd@lists.infradead.org>,
	linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
	vigneshr <vigneshr@ti.com>
Subject: Re: Re: [PATCH v13 2/8] mtd: rawnand: rockchip: NFC drivers for RK3308, RK2928 and others
Date: Wed, 4 Nov 2020 15:30:32 +0800	[thread overview]
Message-ID: <20201104152931632919186@rock-chips.com> (raw)
In-Reply-To: cd349a1f-773d-096a-f0ae-90c5eb847769@gmail.com

On 2020/11/3 1:11, Johan Jonker wrote:
>On 11/2/20 6:00 PM, Miquel Raynal wrote:
>> Hi Johan,
>>
>> Johan Jonker <jbx6244@gmail.com> wrote on Mon, 2 Nov 2020 17:31:18
>> +0100:
>>
>>> On 11/2/20 2:11 PM, Johan Jonker wrote:
>>>> Hi,
>>>>
>>>> On 11/2/20 2:07 PM, Miquel Raynal wrote:
>>>>> Hi Johan, Yifeng
>>>>>
>>>>> Johan Jonker <jbx6244@gmail.com> wrote on Mon, 2 Nov 2020 13:57:56
>>>>> +0100:
>>>>>
>>>>>> Hi Yifeng,
>>>>>>
>>>>>> Don't poke with "ecc->bytes" ones it is set in rk_nfc_ecc_init(). It
>>>>>> will not be noted by the MTD frame work or userspace. I think there's
>>>>>> currently no way to let the user know that a different ECC must be used.
>>>>>> Neither can the user set ECC on the fly.
>>>>>>
>>>>>> Example R/W flow:
>>>>>>
>>>>>>         nand_select_target()
>>>>>> chip->ecc.write_page_raw()
>>>>>> chip->ecc.write_page()
>>>>>>
>>>>>> [..]
>>>>>>
>>>>>> chip->ecc.read_page_raw()
>>>>>> chip->ecc.read_page()
>>>>>>         nand_deselect_target()
>>>>>>
>>>>>> A write/read with:
>>>>>>
>>>>>> rk_nfc_read_page_hwecc()
>>>>>> rk_nfc_write_page_hwecc()
>>>>>>
>>>>>> or
>>>>>>
>>>>>> rk_nfc_read_page_raw()
>>>>>> rk_nfc_write_page_raw()
>>>>>>
>>>>>> must end up with the same result. If we can't archive that, then we
>>>>>> shouldn't offer RAW mode to the user for now. If Miquel agrees you
>>>>>> should just get the driver ready now without these 2 functions and round
>>>>>> things up.
>>>>>
>>>>> What about just not supporting the BootROM area if it was marked
>>>>> "reserved" by the BRom in the DT?
>>>>
>>>> Should we just fill the buffers with '0xff' for boot blocks?
>>>
>>> (part 2) ;)
>>> My fault....
>>> Better use:
>>>
>>>     if ((chip->options & NAND_IS_BOOT_MEDIUM) &&
>>>         (page < (pages_per_blk * rknand->boot_blks))) {
>>>
>>> return -EIO;
>>>
>>>     }
>>
>> Yup, I was about to tell you that I would prefer returning a nice
>> error, this is fine I guess.
>>
>> Anyway, I think reading bad block markers is done in raw mode, so if
>> raw accessors refuse to return valid values for boot blocks, you won't
>> be able to access it neither with raw nor corrected hooks.
>>
>> Perhaps refusing the access to the regular page access is ok, but maybe
>> we should be able to at least read these pages in raw mode
>> (and move the BBM to its right location). What do you think?
>
>I think that the problem with asymmetric read and write access is that a
>user reads data successful, but that it can't write it back after it's
>block is erased. You shouldn't give the illusion that the boot ROM
>blocks can be accessed in RAW mode. Something with perception...does
>user space known that Rockchip's NFC is special...
>
> 

Is it possible to return a error when the ECC is different between the boot ROM blocks and other blocks?
If the ECC is the same, and the OOB layout is the same and does not need special treatment.

static int rk_nfc_read_page_raw(struct nand_chip *chip, u8 *buf, int oob_on,int page)
{
...
 if ((chip->options & NAND_IS_BOOT_MEDIUM) &&
        (page < (pages_per_blk * rknand->boot_blks)) &&
	(rknand->boot_ecc != ecc->strength)) {
		return -EIO;
    }
...
}

About the BBM, the u-boot will create BBT at the first power up.
	chip->bbt_options = NAND_BBT_USE_FLASH | NAND_BBT_NO_OOB;
If uboot does not create BBT, then the framework will scan the OOB of all blocks and  create it.
I modified the read OOB function (enable ECC) ,and it can read the correct bad block mask.

static int rk_nfc_write_oob(struct nand_chip *chip, int page)
{
	return rk_nfc_write_page_hwecc(chip, NULL, 1, page);
}

static int rk_nfc_read_oob(struct nand_chip *chip, int page)
{
	return rk_nfc_read_page_hwecc(chip, NULL, 1, page);
}

chip->ecc.read_oob = rk_nfc_read_oob;
chip->ecc.write_oob = rk_nfc_write_oob;



>>
>> Thanks,
>> Miquèl
>>
>>>
>>>
>>>>
>>>>>
>>>>> Raw accessors is really a nice and basic feature that I would like to
>>>>> have in every new driver.
>>>>>
>>>>> Thanks,
>>>>> Miquèl
>>>>>
>>>>
>>>
>
>
>
>
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip

WARNING: multiple messages have this Message-ID (diff)
From: 赵仪峰 <yifeng.zhao@rock-chips.com>
To: "Johan Jonker" <jbx6244@gmail.com>,
	 "Miquel Raynal" <miquel.raynal@bootlin.com>
Cc: devicetree <devicetree@vger.kernel.org>,
	HeikoStübner <heiko@sntech.de>, richard <richard@nod.at>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	linux-rockchip <linux-rockchip@lists.infradead.org>,
	robh+dt <robh+dt@kernel.org>,
	linux-mtd <linux-mtd@lists.infradead.org>,
	linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
	vigneshr <vigneshr@ti.com>
Subject: Re: Re: [PATCH v13 2/8] mtd: rawnand: rockchip: NFC drivers for RK3308, RK2928 and others
Date: Wed, 4 Nov 2020 15:30:32 +0800	[thread overview]
Message-ID: <20201104152931632919186@rock-chips.com> (raw)
In-Reply-To: cd349a1f-773d-096a-f0ae-90c5eb847769@gmail.com

On 2020/11/3 1:11, Johan Jonker wrote:
>On 11/2/20 6:00 PM, Miquel Raynal wrote:
>> Hi Johan,
>>
>> Johan Jonker <jbx6244@gmail.com> wrote on Mon, 2 Nov 2020 17:31:18
>> +0100:
>>
>>> On 11/2/20 2:11 PM, Johan Jonker wrote:
>>>> Hi,
>>>>
>>>> On 11/2/20 2:07 PM, Miquel Raynal wrote:
>>>>> Hi Johan, Yifeng
>>>>>
>>>>> Johan Jonker <jbx6244@gmail.com> wrote on Mon, 2 Nov 2020 13:57:56
>>>>> +0100:
>>>>>
>>>>>> Hi Yifeng,
>>>>>>
>>>>>> Don't poke with "ecc->bytes" ones it is set in rk_nfc_ecc_init(). It
>>>>>> will not be noted by the MTD frame work or userspace. I think there's
>>>>>> currently no way to let the user know that a different ECC must be used.
>>>>>> Neither can the user set ECC on the fly.
>>>>>>
>>>>>> Example R/W flow:
>>>>>>
>>>>>>         nand_select_target()
>>>>>> chip->ecc.write_page_raw()
>>>>>> chip->ecc.write_page()
>>>>>>
>>>>>> [..]
>>>>>>
>>>>>> chip->ecc.read_page_raw()
>>>>>> chip->ecc.read_page()
>>>>>>         nand_deselect_target()
>>>>>>
>>>>>> A write/read with:
>>>>>>
>>>>>> rk_nfc_read_page_hwecc()
>>>>>> rk_nfc_write_page_hwecc()
>>>>>>
>>>>>> or
>>>>>>
>>>>>> rk_nfc_read_page_raw()
>>>>>> rk_nfc_write_page_raw()
>>>>>>
>>>>>> must end up with the same result. If we can't archive that, then we
>>>>>> shouldn't offer RAW mode to the user for now. If Miquel agrees you
>>>>>> should just get the driver ready now without these 2 functions and round
>>>>>> things up.
>>>>>
>>>>> What about just not supporting the BootROM area if it was marked
>>>>> "reserved" by the BRom in the DT?
>>>>
>>>> Should we just fill the buffers with '0xff' for boot blocks?
>>>
>>> (part 2) ;)
>>> My fault....
>>> Better use:
>>>
>>>     if ((chip->options & NAND_IS_BOOT_MEDIUM) &&
>>>         (page < (pages_per_blk * rknand->boot_blks))) {
>>>
>>> return -EIO;
>>>
>>>     }
>>
>> Yup, I was about to tell you that I would prefer returning a nice
>> error, this is fine I guess.
>>
>> Anyway, I think reading bad block markers is done in raw mode, so if
>> raw accessors refuse to return valid values for boot blocks, you won't
>> be able to access it neither with raw nor corrected hooks.
>>
>> Perhaps refusing the access to the regular page access is ok, but maybe
>> we should be able to at least read these pages in raw mode
>> (and move the BBM to its right location). What do you think?
>
>I think that the problem with asymmetric read and write access is that a
>user reads data successful, but that it can't write it back after it's
>block is erased. You shouldn't give the illusion that the boot ROM
>blocks can be accessed in RAW mode. Something with perception...does
>user space known that Rockchip's NFC is special...
>
> 

Is it possible to return a error when the ECC is different between the boot ROM blocks and other blocks?
If the ECC is the same, and the OOB layout is the same and does not need special treatment.

static int rk_nfc_read_page_raw(struct nand_chip *chip, u8 *buf, int oob_on,int page)
{
...
 if ((chip->options & NAND_IS_BOOT_MEDIUM) &&
        (page < (pages_per_blk * rknand->boot_blks)) &&
	(rknand->boot_ecc != ecc->strength)) {
		return -EIO;
    }
...
}

About the BBM, the u-boot will create BBT at the first power up.
	chip->bbt_options = NAND_BBT_USE_FLASH | NAND_BBT_NO_OOB;
If uboot does not create BBT, then the framework will scan the OOB of all blocks and  create it.
I modified the read OOB function (enable ECC) ,and it can read the correct bad block mask.

static int rk_nfc_write_oob(struct nand_chip *chip, int page)
{
	return rk_nfc_write_page_hwecc(chip, NULL, 1, page);
}

static int rk_nfc_read_oob(struct nand_chip *chip, int page)
{
	return rk_nfc_read_page_hwecc(chip, NULL, 1, page);
}

chip->ecc.read_oob = rk_nfc_read_oob;
chip->ecc.write_oob = rk_nfc_write_oob;



>>
>> Thanks,
>> Miquèl
>>
>>>
>>>
>>>>
>>>>>
>>>>> Raw accessors is really a nice and basic feature that I would like to
>>>>> have in every new driver.
>>>>>
>>>>> Thanks,
>>>>> Miquèl
>>>>>
>>>>
>>>
>
>
>
>
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2020-11-04  7:30 UTC|newest]

Thread overview: 95+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-28  9:53 [PATCH v13 0/8] Add Rockchip NFC drivers for RK3308 and others Yifeng Zhao
2020-10-28  9:53 ` Yifeng Zhao
2020-10-28  9:53 ` Yifeng Zhao
2020-10-28  9:53 ` [PATCH v13 1/8] dt-bindings: mtd: Describe Rockchip RK3xxx NAND flash controller Yifeng Zhao
2020-10-28  9:53   ` Yifeng Zhao
2020-10-28  9:53   ` Yifeng Zhao
2020-10-28  9:53 ` [PATCH v13 2/8] mtd: rawnand: rockchip: NFC drivers for RK3308, RK2928 and others Yifeng Zhao
2020-10-28  9:53   ` Yifeng Zhao
2020-10-28  9:53   ` Yifeng Zhao
2020-10-28 10:48   ` Miquel Raynal
2020-10-28 10:48     ` Miquel Raynal
2020-10-28 10:48     ` Miquel Raynal
2020-10-28 10:48     ` Miquel Raynal
2020-10-30 10:12     ` 赵仪峰
2020-10-30 10:12       ` 赵仪峰
2020-10-30 10:12       ` 赵仪峰
2020-10-30 10:12       ` 赵仪峰
2020-10-30 10:26       ` Miquel Raynal
2020-10-30 10:26         ` Miquel Raynal
2020-10-30 10:26         ` Miquel Raynal
2020-10-30 10:26         ` Miquel Raynal
2020-10-31 11:58   ` Johan Jonker
2020-10-31 11:58     ` Johan Jonker
2020-10-31 11:58     ` Johan Jonker
2020-10-31 11:58     ` Johan Jonker
2020-10-31 13:45     ` Johan Jonker
2020-10-31 13:45       ` Johan Jonker
2020-10-31 13:45       ` Johan Jonker
2020-10-31 13:45       ` Johan Jonker
2020-11-02  3:46       ` 赵仪峰
2020-11-02  3:46         ` 赵仪峰
2020-11-02  3:46         ` 赵仪峰
2020-11-02  3:46         ` 赵仪峰
2020-11-02  7:32         ` Miquel Raynal
2020-11-02  7:32           ` Miquel Raynal
2020-11-02  7:32           ` Miquel Raynal
2020-11-02  7:32           ` Miquel Raynal
2020-11-02  8:14           ` 赵仪峰
2020-11-02  8:14             ` 赵仪峰
2020-11-02  8:14             ` 赵仪峰
2020-11-02  8:14             ` 赵仪峰
2020-11-02  8:20             ` Miquel Raynal
2020-11-02  8:20               ` Miquel Raynal
2020-11-02  8:20               ` Miquel Raynal
2020-11-02  8:20               ` Miquel Raynal
     [not found]     ` <e02e13a0-769d-6b73-c87e-5b7d75fd4254@rock-chips.com>
2020-11-02 12:57       ` Johan Jonker
2020-11-02 12:57         ` Johan Jonker
2020-11-02 12:57         ` Johan Jonker
2020-11-02 12:57         ` Johan Jonker
2020-11-02 13:07         ` Miquel Raynal
2020-11-02 13:07           ` Miquel Raynal
2020-11-02 13:07           ` Miquel Raynal
2020-11-02 13:07           ` Miquel Raynal
2020-11-02 13:11           ` Johan Jonker
2020-11-02 13:11             ` Johan Jonker
2020-11-02 13:11             ` Johan Jonker
2020-11-02 13:11             ` Johan Jonker
2020-11-02 16:31             ` Johan Jonker
2020-11-02 16:31               ` Johan Jonker
2020-11-02 16:31               ` Johan Jonker
2020-11-02 16:31               ` Johan Jonker
2020-11-02 17:00               ` Miquel Raynal
2020-11-02 17:00                 ` Miquel Raynal
2020-11-02 17:00                 ` Miquel Raynal
2020-11-02 17:00                 ` Miquel Raynal
2020-11-02 17:11                 ` Johan Jonker
2020-11-02 17:11                   ` Johan Jonker
2020-11-02 17:11                   ` Johan Jonker
2020-11-02 17:11                   ` Johan Jonker
2020-11-04  7:30                   ` 赵仪峰 [this message]
2020-11-04  7:30                     ` 赵仪峰
2020-11-04  7:30                     ` 赵仪峰
2020-11-04  7:30                     ` 赵仪峰
2020-11-04  7:34     ` 赵仪峰
2020-11-04  7:34       ` 赵仪峰
2020-11-04  7:34       ` 赵仪峰
2020-11-04  7:34       ` 赵仪峰
2020-10-28  9:53 ` [PATCH v13 3/8] MAINTAINERS: add maintainers to ROCKCHIP NFC Yifeng Zhao
2020-10-28  9:53   ` Yifeng Zhao
2020-10-28  9:53   ` Yifeng Zhao
2020-10-28  9:53 ` [PATCH v13 4/8] arm64: dts: rockchip: Add NFC node for RK3308 SoC Yifeng Zhao
2020-10-28  9:53   ` Yifeng Zhao
2020-10-28  9:53   ` Yifeng Zhao
2020-10-28  9:54 ` [PATCH v13 5/8] arm64: dts: rockchip: Add NFC node for PX30 SoC Yifeng Zhao
2020-10-28  9:54   ` Yifeng Zhao
2020-10-28  9:54   ` Yifeng Zhao
2020-10-28  9:54   ` [PATCH v13 6/8] arm: dts: rockchip: Add NFC node for RV1108 SoC Yifeng Zhao
2020-10-28  9:54     ` Yifeng Zhao
2020-10-28  9:54     ` Yifeng Zhao
2020-10-28  9:54   ` [PATCH v13 7/8] arm: dts: rockchip: Add NFC node for RK2928 and other SoCs Yifeng Zhao
2020-10-28  9:54     ` Yifeng Zhao
2020-10-28  9:54     ` Yifeng Zhao
2020-10-28  9:54   ` [PATCH v13 8/8] arm: dts: rockchip: Add NFC node for RK3036 SoC Yifeng Zhao
2020-10-28  9:54     ` Yifeng Zhao
2020-10-28  9:54     ` Yifeng Zhao

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=20201104152931632919186@rock-chips.com \
    --to=yifeng.zhao@rock-chips.com \
    --cc=devicetree@vger.kernel.org \
    --cc=heiko@sntech.de \
    --cc=jbx6244@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=miquel.raynal@bootlin.com \
    --cc=richard@nod.at \
    --cc=robh+dt@kernel.org \
    --cc=vigneshr@ti.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.