All of lore.kernel.org
 help / color / mirror / Atom feed
From: Takahiro Kuwano <tkuw584924@gmail.com>
To: u-boot@lists.denx.de
Subject: [PATCH v6 00/14] mtd: spi-nor: Add support for Cypress s25hl-t/s25hs-t
Date: Mon, 26 Apr 2021 15:59:57 +0900	[thread overview]
Message-ID: <c01e5f6e-cb1a-f4ba-7881-a8d9ace413d5@gmail.com> (raw)
In-Reply-To: <CAMty3ZAwh2-fvHQ-JhqqakoFgmkWob6H-rDB6q=96oKw7U_fJA@mail.gmail.com>

Hi Jagan,

On 4/25/2021 9:42 PM, Jagan Teki wrote:
> On Tue, Apr 20, 2021 at 9:56 AM Takahiro Kuwano <tkuw584924@gmail.com> wrote:
>>
>> On 4/19/2021 4:13 PM, Jagan Teki wrote:
>>> On Wed, Apr 7, 2021 at 9:01 AM <tkuw584924@gmail.com> wrote:
>>>>
>>>> From: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
>>>>
>>>> The S25HL-T/S25HS-T family is the Cypress Semper Flash with Quad SPI.
>>>>
>>>> The summary datasheets can be found in the following links.
>>>> https://www.cypress.com/file/424146/download (256Mb/512Mb/1Gb, single die)
>>>> https://www.cypress.com/file/499246/download (2Gb/4Gb, dual/quad die)
>>>>
>>>> The full version can be found in the following links (registration
>>>> required).
>>>> https://community.cypress.com/t5/Semper-Flash-Access-Program/Datasheet-Semper-Flash-with-Quad-SPI/ta-p/260789?attachment-id=19522
>>>> https://community.cypress.com/t5/Semper-Flash-Access-Program/Datasheet-2Gb-MCP-Semper-Flash-with-Quad-SPI/ta-p/260823?attachment-id=29503
>>>>
>>>> Tested on Xilinx Zynq-7000 FPGA board.
>>>
>>> Any details about footprint statistics?
>>>
>> Please see arm-none-eabi-size output below.
>>
>> BEFORE patching:
>>    text    data     bss     dec     hex filename
>>    6353       0       0    6353    18d1 drivers/mtd/spi/spi-nor-core.o
>>     922       0       0     922     39a drivers/mtd/spi/spi-nor-ids.o
>>    1879       0       0    1879     757 spl/drivers/mtd/spi/spi-nor-tiny.o
>>
>> AFTER patching:
>>    text    data     bss     dec     hex filename
>>    7705      12       0    7717    1e25 drivers/mtd/spi/spi-nor-core.o
>>    1150       0       0    1150     47e drivers/mtd/spi/spi-nor-ids.o
>>    1919       0       0    1919     77f spl/drivers/mtd/spi/spi-nor-tiny.o
>>
>> arm-none-eabi-gcc (GCC) 8.2.0, Optimization level -O2.
> 
> Does this series depend on any other patches or Octal DTR?

No. This series is for Quad SPI parts and independent from any other patches.
The #1, #2, and #3 patches in this series come from Pratyush's series [0]
that adds Octal DTR support. However, those three patches introduce generic
hooks and do not contain any specific changes for Octal DTR.

[0] https://patchwork.ozlabs.org/project/uboot/list/?series=237040&state=* 

Best Regards,
Takahiro

  reply	other threads:[~2021-04-26  6:59 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-07  3:30 [PATCH v6 00/14] mtd: spi-nor: Add support for Cypress s25hl-t/s25hs-t tkuw584924 at gmail.com
2021-04-07  3:30 ` [PATCH v6 01/14] mtd: spi-nor-core: Add a ->setup() hook tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 02/14] mtd: spi-nor-core: Move SFDP related declarations to top tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 03/14] mtd: spi-nor-core: Introduce flash-specific fixup hooks tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 04/14] mtd: spi-nor-core: allow truncated erases tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 05/14] mtd: spi-nor-core: Add non-uniform erase for Spansion/Cypress tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 06/14] mtd: spi-nor: Add Cypress manufacturer ID tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 07/14] mtd: spi-nor-ids: Add Cypress s25hl-t/s25hs-t tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 08/14] mtd: spi-nor-core: Add support for Read/Write Any Register tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 09/14] mtd: spi-nor-core: Add support for volatile QE bit tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 10/14] mtd: spi-nor-core: Add the ->ready() hook tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 11/14] mtd: spi-nor-core: Read status by Read Any Register tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 12/14] mtd: spi-nor-core: Add Cypress manufacturer ID in set_4byte tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 13/14] mtd: spi-nor-core: Add fixups for Cypress s25hl-t/s25hs-t tkuw584924 at gmail.com
2021-04-07  3:31 ` [PATCH v6 14/14] mtd: spi-nor-tiny: " tkuw584924 at gmail.com
2021-04-19  7:13 ` [PATCH v6 00/14] mtd: spi-nor: Add support " Jagan Teki
2021-04-20  4:26   ` Takahiro Kuwano
2021-04-25 12:42     ` Jagan Teki
2021-04-26  6:59       ` Takahiro Kuwano [this message]
2021-04-26 12:34         ` Jagan Teki
2021-04-26 12:49           ` Pratyush Yadav
2021-04-26 12:55             ` Jagan Teki
2021-04-26 13:19               ` Pratyush Yadav
2021-04-27  1:16                 ` Takahiro Kuwano

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=c01e5f6e-cb1a-f4ba-7881-a8d9ace413d5@gmail.com \
    --to=tkuw584924@gmail.com \
    --cc=u-boot@lists.denx.de \
    /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.