From: Alexander Dahl <ada@thorsis.com>
To: Mihai.Sain@microchip.com
Cc: eugen.hristev@collabora.com, ada@thorsis.com,
dario.binacchi@amarulasolutions.com,
michael@amarulasolutions.com,
Balamanikandan.Gunasundar@microchip.com, u-boot@lists.denx.de
Subject: Re: [PATCH 4/4] mtd: nand: raw: atmel: Introduce optional debug commands
Date: Mon, 18 Mar 2024 09:46:40 +0100 [thread overview]
Message-ID: <20240318-tug-shrank-ae6315aaa6f4@thorsis.com> (raw)
In-Reply-To: <PH8PR11MB6804301C3B361D21EADCEE71822D2@PH8PR11MB6804.namprd11.prod.outlook.com>
Hello Mihai,
Am Mon, Mar 18, 2024 at 08:09:00AM +0000 schrieb Mihai.Sain@microchip.com:
> On 3/7/24 11:10, Alexander Dahl wrote:
> > For now adds one new command 'hsmc' with a single subcommand 'decode'
> > to read and display the content of the registers of the Static Memory
> > Controllers (SMC/HSMC) found in different at91 SoCs. Needed to get a
> > better picture on what raw nand core and atmel nand controller driver
> > try to set as timings based on ONFI parameters of the connected NAND
> > chip.
> >
> > Tested on SAMA5D2 and SAM9X60 based boards. Example output:
> >
> > U-Boot> hsmc decode
> >
> > mck clock rate: 200000000
> >
> > SMC_SETUP3: 0x00000002
> > SMC_PULSE3: 0x07040703
> > SMC_CYCLE3: 0x00070007
> > SMC_MODE3: 0x001f0003
> > NCS_RD: setup: 0 (0 ns), pulse: 7 (35 ns), hold: 0 (0 ns), cycle: 7 (35 ns)
> > NRD: setup: 0 (0 ns), pulse: 4 (20 ns), hold: 3 (15 ns), cycle: 7 (35 ns)
> > NCS_WR: setup: 0 (0 ns), pulse: 7 (35 ns), hold: 0 (0 ns), cycle: 7 (35 ns)
> > NWE: setup: 2 (10 ns), pulse: 3 (15 ns), hold: 2 (10 ns), cycle: 7 (35 ns)
> > Standard read is applied.
> > TDF optimization enabled
> > TDF cycles: 15 (75 ns)
> > Data Bus Width: 8-bit bus
> > NWAIT Mode: 0
> > Write operation controlled by NWE signal
> > Read operation controlled by NRD signal
>
> Adding Mihai as he is usually very interested in such debug information and methods.
>
> -------------------------------------------------------------------------------------
>
> Hi Alexander,
>
> I tested your work on sama7g54-curiosity board:
nice, thanks for that.
> U-Boot> nand info
>
> Device 0: nand0, sector size 256 KiB
> Manufacturer MACRONIX
> Model MX30LF4G28AD
> Device size 512 MiB
> Page size 4096 b
> OOB size 256 b
> Erase size 262144 b
> ecc strength 8 bits
> ecc step size 512 b
> subpagesize 4096 b
> options 0x00004200
> bbt options 0x00028000
This seems to be the same NAND chip as on the sam9x60 curiosity, but
your output has three additional lines, see mine:
U-Boot> nand info
Device 0: nand0, sector size 256 KiB
Page size 4096 b
OOB size 256 b
Erase size 262144 b
ecc strength 8 bits
ecc step size 512 b
subpagesize 4096 b
options 0x40004200
bbt options 0x00028000
Do you have some additional patches printing manufacturer, model, and
device size? I can't see those lines printed in
nand_print_and_set_info() here.
> U-Boot> hsmc decode
>
> mck clock rate: 200000000
>
> HSMC_SETUP3: 0x00000001
> HSMC_PULSE3: 0x07040804
> HSMC_CYCLE3: 0x00070008
> HSMC_TIMINGS3: 0x880402f2
> HSMC_MODE3: 0x001f0003
> NCS_RD: setup: 0 (0 ns), pulse: 7 (35 ns), hold: 0 (0 ns), cycle: 7 (35 ns)
> NRD: setup: 0 (0 ns), pulse: 4 (20 ns), hold: 3 (15 ns), cycle: 7 (35 ns)
> NCS_WR: setup: 0 (0 ns), pulse: 8 (40 ns), hold: 0 (0 ns), cycle: 8 (40 ns)
> NWE: setup: 1 (5 ns), pulse: 4 (20 ns), hold: 3 (15 ns), cycle: 8 (40 ns)
> TDF optimization enabled
> TDF cycles: 15 (75 ns)
> Data Bus Width: 8-bit bus
> NWAIT Mode: 0
> Write operation controlled by NWE signal
> Read operation controlled by NRD signal
This is also interesting. Given the mck clock rate is the same as on
sam9x60, I would have guessed the timings set by
atmel_smc_nand_prepare_smcconf() should give the same results, both
for ONFI timiming mode 3, which is the fastest mode the (H)SMC
supports according to comments in the driver. This is the output with
the patch in question applied on next for sam9x60:
U-Boot> hsmc decode
mck clock rate: 200000000
SMC_SETUP3: 0x00000002
SMC_PULSE3: 0x06030703
SMC_CYCLE3: 0x00060007
SMC_MODE3: 0x001f0003
NCS_RD: setup: 0 (0 ns), pulse: 6 (30 ns), hold: 0 (0 ns), cycle: 6 (30 ns)
NRD: setup: 0 (0 ns), pulse: 3 (15 ns), hold: 3 (15 ns), cycle: 6 (30 ns)
NCS_WR: setup: 0 (0 ns), pulse: 7 (35 ns), hold: 0 (0 ns), cycle: 7 (35 ns)
NWE: setup: 2 (10 ns), pulse: 3 (15 ns), hold: 2 (10 ns), cycle: 7 (35 ns)
Standard read is applied.
TDF optimization enabled
TDF cycles: 15 (75 ns)
Data Bus Width: 8-bit bus
NWAIT Mode: 0
Write operation controlled by NWE signal
Read operation controlled by NRD signal
Notice the pulse times for read are one clock cycle smaller than in
your output, and the timings for write are also different. Do you
have changes for atmel_smc_nand_prepare_smcconf() applied which are
not upstream yet? Or is the HSMC on sama7g54 somehow different than
on older SoCs?
Note: I'm currently testing a patch changing the computation of the
read pulse cycles based on a patch for at91bootstrap [1], but that is
not applied here for the output quoted above.
Greets
Alex
[1] https://github.com/linux4sam/at91bootstrap/issues/174#issuecomment-1970698527
>
> Best regards,
> Mihai Sain
next prev parent reply other threads:[~2024-03-18 8:46 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-07 9:10 [PATCH 0/4] mtd: nand: raw: Collected improvements Alexander Dahl
2024-03-07 9:10 ` [PATCH 1/4] mtd: nand: raw: Use macro nand_to_mtd() where appropriate Alexander Dahl
2024-03-07 10:01 ` Michael Nazzareno Trimarchi
2024-03-07 9:10 ` [PATCH 2/4] mtd: nand: raw: Port another option flag from Linux Alexander Dahl
2024-03-07 10:02 ` Michael Nazzareno Trimarchi
2024-03-07 9:10 ` [PATCH 3/4] mtd: nand: raw: Fix (most) Kconfig indentation Alexander Dahl
2024-03-07 10:03 ` Michael Nazzareno Trimarchi
2024-03-07 9:10 ` [PATCH 4/4] mtd: nand: raw: atmel: Introduce optional debug commands Alexander Dahl
2024-03-07 9:59 ` Eugen Hristev
2024-03-18 8:09 ` Mihai.Sain
2024-03-18 8:27 ` Eugen Hristev
2024-03-18 9:15 ` Mihai.Sain
2024-03-18 10:27 ` Alexander Dahl
2024-03-18 11:15 ` Mihai.Sain
2024-03-19 11:43 ` Alexander Dahl
2024-03-20 7:35 ` Mihai.Sain
2024-03-18 8:46 ` Alexander Dahl [this message]
2024-03-18 9:07 ` Mihai.Sain
2024-03-18 11:18 ` Alexander Dahl
2024-03-18 11:28 ` Mihai.Sain
2024-03-18 12:06 ` Alexander Dahl
2024-03-18 13:07 ` Mihai.Sain
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=20240318-tug-shrank-ae6315aaa6f4@thorsis.com \
--to=ada@thorsis.com \
--cc=Balamanikandan.Gunasundar@microchip.com \
--cc=Mihai.Sain@microchip.com \
--cc=dario.binacchi@amarulasolutions.com \
--cc=eugen.hristev@collabora.com \
--cc=michael@amarulasolutions.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox