All of lore.kernel.org
 help / color / mirror / Atom feed
From: Viet Nga Dao <vndao@altera.com>
To: Brian Norris <computersforpeace@gmail.com>,
	David Woodhouse <dwmw2@infradead.org>
Cc: "Rafał Miłecki" <zajec5@gmail.com>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"Linux Kernel Mailing List" <linux-kernel@vger.kernel.org>,
	"linux-mtd@lists.infradead.org" <linux-mtd@lists.infradead.org>,
	nga_chi86 <ngachi86@gmail.com>
Subject: Re: [PATCH] [PATCH v3] mtd:spi-nor: Add Altera Quad SPI Driver
Date: Wed, 15 Apr 2015 09:56:23 +0800	[thread overview]
Message-ID: <CAN1oZWzH2t4rY7Lh7oiqM=gbVJ6v31vzFk96gumA+JBgRwN6kQ@mail.gmail.com> (raw)
In-Reply-To: <CAN1oZWxG8pnr-COMZRnOZvbaQ=vw+BRMgZpkQyk_v0NuGZPckA@mail.gmail.com>

Hi,
Could you please help me to review this patch?
Thanks

On Mon, Mar 16, 2015 at 4:40 PM, Viet Nga Dao <vndao@altera.com> wrote:
> On Mon, Mar 16, 2015 at 4:35 PM, Rafał Miłecki <zajec5@gmail.com> wrote:
>> On 16 March 2015 at 09:16,  <vndao@altera.com> wrote:
>>> +static struct flash_device flash_devices[] = {
>>> +       FLASH_ID("epcq16-nonjedec",  2, 0x15),
>>> +       FLASH_ID("epcq32-nonjedec",  2, 0x16),
>>> +       FLASH_ID("epcq64-nonjedec",  2, 0x17),
>>> +       FLASH_ID("epcq128-nonjedec", 2, 0x18),
>>> +       FLASH_ID("epcq256-nonjedec", 2, 0x19),
>>> +       FLASH_ID("epcq512-nonjedec", 2, 0x20),
>>
>> You could probably use EPCQ_OPCODE_ID
>>
>>
>>> +
>>> +       FLASH_ID("epcs16-nonjedec",  1, 0x14),
>>> +       FLASH_ID("epcs64-nonjedec",  1, 0x16),
>>> +       FLASH_ID("epcs128-nonjedec", 1, 0x18),
>>
>> And EPCS_OPCODE_ID here.
>>
> Noted
>>
>>> diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
>>> index 43bb552..ad0c274 100644
>>> --- a/drivers/mtd/spi-nor/spi-nor.c
>>> +++ b/drivers/mtd/spi-nor/spi-nor.c
>>> @@ -683,6 +683,17 @@ static const struct spi_device_id spi_nor_ids[] = {
>>>         { "cat25c09", CAT25_INFO( 128, 8, 32, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) },
>>>         { "cat25c17", CAT25_INFO( 256, 8, 32, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) },
>>>         { "cat25128", CAT25_INFO(2048, 8, 64, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) },
>>> +
>>> +       /* Altera EPCQ/EPCS Flashes */
>>> +       { "epcq16-nonjedec",  INFO(0, 0, 0x10000, 32,   0) },
>>> +       { "epcq32-nonjedec",  INFO(0, 0, 0x10000, 64,   0) },
>>> +       { "epcq64-nonjedec",  INFO(0, 0, 0x10000, 128,  0) },
>>> +       { "epcq128-nonjedec", INFO(0, 0, 0x10000, 256,  0) },
>>> +       { "epcq256-nonjedec", INFO(0, 0, 0x10000, 512,  0) },
>>> +       { "epcq512-nonjedec", INFO(0, 0, 0x10000, 1024, 0) },
>>> +       { "epcs16-nonjedec",  INFO(0, 0, 0x10000, 32,   0) },
>>> +       { "epcs64-nonjedec",  INFO(0, 0, 0x10000, 128,  0) },
>>> +       { "epcs128-nonjedec", INFO(0, 0, 0x40000, 256,  0) },
>>>         { },
>>>  };
>>
>> But mostly, I just wanted to say I like your integration with spi-nor.
>> Nice work :)
>>
>> --
>> Rafał
>
> Thank you. This is all thanks to you and Brian for helpful comments. I
> learned a lot :)

WARNING: multiple messages have this Message-ID (diff)
From: Viet Nga Dao <vndao@altera.com>
To: Brian Norris <computersforpeace@gmail.com>,
	David Woodhouse <dwmw2@infradead.org>
Cc: "devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"Rafał Miłecki" <zajec5@gmail.com>,
	"linux-mtd@lists.infradead.org" <linux-mtd@lists.infradead.org>,
	"Linux Kernel Mailing List" <linux-kernel@vger.kernel.org>,
	nga_chi86 <ngachi86@gmail.com>
Subject: Re: [PATCH] [PATCH v3] mtd:spi-nor: Add Altera Quad SPI Driver
Date: Wed, 15 Apr 2015 09:56:23 +0800	[thread overview]
Message-ID: <CAN1oZWzH2t4rY7Lh7oiqM=gbVJ6v31vzFk96gumA+JBgRwN6kQ@mail.gmail.com> (raw)
In-Reply-To: <CAN1oZWxG8pnr-COMZRnOZvbaQ=vw+BRMgZpkQyk_v0NuGZPckA@mail.gmail.com>

Hi,
Could you please help me to review this patch?
Thanks

On Mon, Mar 16, 2015 at 4:40 PM, Viet Nga Dao <vndao@altera.com> wrote:
> On Mon, Mar 16, 2015 at 4:35 PM, Rafał Miłecki <zajec5@gmail.com> wrote:
>> On 16 March 2015 at 09:16,  <vndao@altera.com> wrote:
>>> +static struct flash_device flash_devices[] = {
>>> +       FLASH_ID("epcq16-nonjedec",  2, 0x15),
>>> +       FLASH_ID("epcq32-nonjedec",  2, 0x16),
>>> +       FLASH_ID("epcq64-nonjedec",  2, 0x17),
>>> +       FLASH_ID("epcq128-nonjedec", 2, 0x18),
>>> +       FLASH_ID("epcq256-nonjedec", 2, 0x19),
>>> +       FLASH_ID("epcq512-nonjedec", 2, 0x20),
>>
>> You could probably use EPCQ_OPCODE_ID
>>
>>
>>> +
>>> +       FLASH_ID("epcs16-nonjedec",  1, 0x14),
>>> +       FLASH_ID("epcs64-nonjedec",  1, 0x16),
>>> +       FLASH_ID("epcs128-nonjedec", 1, 0x18),
>>
>> And EPCS_OPCODE_ID here.
>>
> Noted
>>
>>> diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
>>> index 43bb552..ad0c274 100644
>>> --- a/drivers/mtd/spi-nor/spi-nor.c
>>> +++ b/drivers/mtd/spi-nor/spi-nor.c
>>> @@ -683,6 +683,17 @@ static const struct spi_device_id spi_nor_ids[] = {
>>>         { "cat25c09", CAT25_INFO( 128, 8, 32, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) },
>>>         { "cat25c17", CAT25_INFO( 256, 8, 32, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) },
>>>         { "cat25128", CAT25_INFO(2048, 8, 64, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) },
>>> +
>>> +       /* Altera EPCQ/EPCS Flashes */
>>> +       { "epcq16-nonjedec",  INFO(0, 0, 0x10000, 32,   0) },
>>> +       { "epcq32-nonjedec",  INFO(0, 0, 0x10000, 64,   0) },
>>> +       { "epcq64-nonjedec",  INFO(0, 0, 0x10000, 128,  0) },
>>> +       { "epcq128-nonjedec", INFO(0, 0, 0x10000, 256,  0) },
>>> +       { "epcq256-nonjedec", INFO(0, 0, 0x10000, 512,  0) },
>>> +       { "epcq512-nonjedec", INFO(0, 0, 0x10000, 1024, 0) },
>>> +       { "epcs16-nonjedec",  INFO(0, 0, 0x10000, 32,   0) },
>>> +       { "epcs64-nonjedec",  INFO(0, 0, 0x10000, 128,  0) },
>>> +       { "epcs128-nonjedec", INFO(0, 0, 0x40000, 256,  0) },
>>>         { },
>>>  };
>>
>> But mostly, I just wanted to say I like your integration with spi-nor.
>> Nice work :)
>>
>> --
>> Rafał
>
> Thank you. This is all thanks to you and Brian for helpful comments. I
> learned a lot :)

  reply	other threads:[~2015-04-15  1:56 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-16  8:16 [PATCH] [PATCH v3] mtd:spi-nor: Add Altera Quad SPI Driver vndao
2015-03-16  8:16 ` vndao
2015-03-16  8:16 ` vndao
2015-03-16  8:35 ` Rafał Miłecki
2015-03-16  8:35   ` Rafał Miłecki
2015-03-16  8:35   ` Rafał Miłecki
2015-03-16  8:40   ` Viet Nga Dao
2015-03-16  8:40     ` Viet Nga Dao
2015-03-16  8:40     ` Viet Nga Dao
2015-04-15  1:56     ` Viet Nga Dao [this message]
2015-04-15  1:56       ` Viet Nga Dao
2015-04-08  1:29 ` Viet Nga Dao
2015-04-08  1:29   ` Viet Nga Dao
2015-04-08  1:29   ` Viet Nga Dao
2015-04-23  6:39 ` Nga Chi
2015-04-23  6:39   ` Nga Chi
2015-05-05  1:02   ` Viet Nga Dao
2015-05-05  1:02     ` Viet Nga Dao
2015-05-05  1:02     ` Viet Nga Dao
2015-05-28  1:32 ` Brian Norris
2015-05-28  1:32   ` Brian Norris
2015-05-28  1:44   ` Nga Chi
2015-05-28  1:44     ` Nga Chi
2015-05-28  1:44     ` Nga Chi

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='CAN1oZWzH2t4rY7Lh7oiqM=gbVJ6v31vzFk96gumA+JBgRwN6kQ@mail.gmail.com' \
    --to=vndao@altera.com \
    --cc=computersforpeace@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dwmw2@infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=ngachi86@gmail.com \
    --cc=zajec5@gmail.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.