This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM2432: QSPI flash configuration for QSPI boot

Part Number: AM2432
Other Parts Discussed in Thread: UNIFLASH, SYSCONFIG

Hello, we have a custom board with the AM2432 processor, sdk version 8.6.0.45 and sysconfig 1.17.0. I am trying to bring up the qspi flash on the board for the micron flash device MT25QU128ABA. I am trying to upload a null bootloader over uart uniflash, but the flash open is failing. I have run the opsi flash diagnostic example, and gotten the resulting output:

 

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[MAIN_Cortex_R5_0_0] [OSPI Flash Diagnostic Test] Starting ...
[OSPI Flash Diagnostic Test] Flash Manufacturer ID : 0x20
[OSPI Flash Diagnostic Test] Flash Device ID : 0xBB18
[OSPI Flash Diagnostic Test] Executing Flash Erase on first block...
[OSPI Flash Diagnostic Test] Done !!!
[OSPI Flash Diagnostic Test] Performing Write-Read Test...
[OSPI Flash Diagnostic Test] Write-Read Test Passed!
[QSPI Flash Diagnostic Test] SFDP Information :
================================================
SFDP
================================================
SFDP Major Revision : 0x1
SFDP Minor Revision : 0x6
Number of Parameter Headers in this Table : 2
Types of Additional Parameter Tables in this flash
---------------------------------------------------
4 BYTE ADDRESSING MODE INSTRUCTIONS TABLE
JSON Data for the flash :
{
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

I have imported this into sysconfig, trying both in the uart uniflash, and the ospi_flash_io projects, in the ospi_flash_io, there is a memory read mismatch, and in the uniflash, the flash open fails. I have put the protocol into 1-1-4 as required in the datasheet for qspi flash, and put the following configuration in the sysconfig: 

 ( I have tried without and with the TI quirks function)

I have only the first 4 ospi data lines enabled. What do I need to do to use the qpsi_nor_flash files, as it still seems to be using the driver for ospi? What am I doing wrong? Can you give me any direction/help please?

  • Our qspi is on a bus that is also connected to a OSPI Nor flash where they have different chip selects, and that flash is working as expected. I have been trying all kinds of different parameters in the flash config table. We have also changed the clock rate from 133 MHz with divisor 4 to 200 MHz with devisor 4 for the 50 Mz qspi boot requirements. The 1s-1s-1s protocol works for the flash_IO example, but not the 1s-1s-4s. In the uniflash, nether protocol can be  used

  • Hi Jacob,

    I see some mismatches between the JSON data generated by the flash diag and the configuration you're showing in SysConfig. Did you do any manual updates? I am specifically interested in the QE Type. I see that you have it updated in the sysconfig as 3. Did you get that data from the flash datasheet? Because if the QE type is incorrect, 1-1-4 mode won't be enabled correctly. Let me get back to you after checking the flash datasheet.

    Regards,
    Anand Mahadevan SS

  • Yes I did try some manual changes after the first import didn't work. I was looking at the datasheet, but I was not sure about that one and the QPI Sequence. I have tried both with the exact after uploaded, and a handful of other variations. 

    Thank you for your help

  • Hi Jacob,

    After going through the datasheet, what I can see is that the quad enable requirements are zeroed out, which means that it might be enabled by default or detects based on instruction. In this case you should set the QE type as 0 itself. This is for 1-1-4 mode. Let me know if the configuration worked.

    Regards,
    Anand Mahadevan SS

  • Hello, I can confirm that that did not resolve the issue. Is there anything else you can think of?

  • Hello. Is there a way I can get some dedicated support for getting this working? As in is there somewhere else that I should reach out to? My company is needing to verify that the processor is able to support the qspi flash, and that the board we have is functioning as expected.

  • Hi Jacob,

    Can you let me know what is the data mismatch? Is it data missing, or data shifted by some bytes or something else? If you can post the values of the Rx and Tx buffers in the example after the transfers before the comparison, that would be helpful. Because it is possible that there is a timing issue here. That can be adjusted with dummy cycles and read capture delay settings.

    Regards,
    Anand Mahadevan SS

  • For the first write to flash, the tx buffer counts up from 0 to 255 and repeats. This is the rx_buffer after the first read attempt: 


    The read buffer has the same contents after the second read as well. 

    I tried turning off DMA to see if that made a difference, and it did not. 
    Changing the read busy mode from Legacy to the SR bit 7 also did nothing.

    Changing the timing to the following:

    Resulted in contents: 

  • Update: I got the flash IO to pass with setting the write command to 0x32 and dummy cycles to 8, but the bootloader (running uart_uniflash) still doesn't work

  • Update, got qspi flash to work. will post solution tomorrow

    edit: Flash now opens, and in the flash_io example, it passes, but only without any ddr configured. The uart uniflash fails if ddr is not configured (the entire image after uniflash gets sent, but 100 percent, there is a getchar timeout) and if the ddr is configured the ospi flash does not open.

  • So I was able to preform a read/write on the qspi flash device, by using the write program command 0x32, with qspi enable 11000, but it still will not work on uart uniflash. OSPI init fails if DDR is configured, or if MMCSD has the default clock rate. It is not successfully flashing. 

  • Hello. I need help on this. The flash open works in uart uniflash, but after the app image is sent, the bootloader gets a error message after the image is sent

  • This problem is urgent for my company, please assist.

  • Please view this thread and / or get someone else to. I am still waiting on support. 

  • Hi Jacob,

    My apologies for the late response. I understand that you have a working flash driver but uart_uniflash is not successful. Before we look into it, can you tell me why DDR is being enabled? I thought that you wanted 1-1-4 protocol? You don't need to enable DDR for that. Or are you using 4D-4D-4D protocol? Also can you post the exact error logs of flashing here? Also I am not sure why UART uniflash fails to work if DDR is not configured. If you're using the same 1-1-4 protocol in all examples including the sbl_uart_uniflash, that error shouldn't come. Please send over the changed example.syscfg files for the sbl_uart_uniflash project as well. I can review and get back to you.

    Regards,
    Anand Mahadevan SS

  • Uart_uniflash requires the DDR to be configured in my understanding, because it writes the image into DDR through DMA before transferring it into flash. I am using 1-1-4 protocol. There are no error logs printed when the DDR is enabled, because it gets to Flash_Open() and just gets stuck waiting for the flash status 

    This is in the ospi_flash_io project with DDR enabled as an attempt to isolate the issue that is being caused. If DDR is not configured it passes fine, but if it is, it fails.  Here is the sysconfig for the ospi_flash_io project with the DDR enabled.  

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    /**
    * These arguments were used when this file was generated. They will be automatically applied on subsequent loads
    * via the GUI or CLI. Run CLI with '--help' for additional information on how to override these arguments.
    * @cliArgs --device "AM243x_ALV_beta" --package "ALV" --part "ALV" --context "r5fss0-0" --product "MCU_PLUS_SDK_AM243x@08.06.00"
    * @versions {"tool":"1.17.0+3128"}
    */
    /**
    * Import the modules used in this configuration.
    */
    const flash = scripting.addModule("/board/flash/flash", {}, false);
    const flash1 = flash.addInstance();
    const ddr = scripting.addModule("/drivers/ddr/ddr", {}, false);
    const ddr1 = ddr.addInstance();
    const udma = scripting.addModule("/drivers/udma/udma", {}, false);
    const udma1 = udma.addInstance();
    const clock = scripting.addModule("/kernel/dpl/clock");
    const debug_log = scripting.addModule("/kernel/dpl/debug_log");
    const mpu_armv7 = scripting.addModule("/kernel/dpl/mpu_armv7", {}, false);
    const mpu_armv71 = mpu_armv7.addInstance();
    const mpu_armv72 = mpu_armv7.addInstance();
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Turning DMA on the flash still results in the same issue if DDR is enabled, but it works without DDR and DMA enabled.  If Phy mode is enabled, it gets stuck at the dummyCycle set: 

    Here is the sysconfig for the uart_uniflash:

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    /**
    * These arguments were used when this file was generated. They will be automatically applied on subsequent loads
    * via the GUI or CLI. Run CLI with '--help' for additional information on how to override these arguments.
    * @cliArgs --device "AM243x_ALV_beta" --package "ALV" --part "ALV" --context "r5fss0-0" --product "MCU_PLUS_SDK_AM243x@08.06.00"
    * @versions {"tool":"1.17.0+3128"}
    */
    /**
    * Import the modules used in this configuration.
    */
    const flash = scripting.addModule("/board/flash/flash", {}, false);
    const flash1 = flash.addInstance();
    const bootloader = scripting.addModule("/drivers/bootloader/bootloader", {}, false);
    const bootloader1 = bootloader.addInstance();
    const mmcsd = scripting.addModule("/drivers/mmcsd/mmcsd", {}, false);
    const mmcsd1 = mmcsd.addInstance();
    const uart = scripting.addModule("/drivers/uart/uart", {}, false);
    const uart1 = uart.addInstance();
    const udma = scripting.addModule("/drivers/udma/udma", {}, false);
    const udma1 = udma.addInstance();
    const clock = scripting.addModule("/kernel/dpl/clock");
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Which results in the following output if ddr is not enabled:

     If DDR is enabled:

     

  • Hi Jacob,

    My apologies, I got confused between DDR the memory and the DDR mode of operation in OSPI/QSPI protocols. I think there is a debug call setup for today, we can look into it. 

    Regards,
    Anand Mahadevan SS

  • Hello, in reply to what we talked about in the call, I will provide scoped data, clock and cs lines for the dummy cycle write. I will not be able to before tomorrow, as I need to coordinate with the hardware developers.

  • I have captured files that can be used to see what the spi lines and clock and chip select are. This happens when running the ospi_flash_io project, configured for qspi as we had talked about over the phone. When DDR is configured, we couldn't figure out what command it's trying to do. It should be doing a read of the vendor ID, that's 0x9F command without ddr config. But instead it's doing 0x30 which is not a valid command and not driving chip select.

    No DDR Config, first few transactions. First transaction is with 6.25MHz clock and then changes to 50MHz clock
     
     
    With ddr config enabled, we just see clock and D0 line toggling. This keeps repeating non-stop. Starts at 50MHz clock immediately.
     
    I have emailed you the files that have these captures. They can be analyzed using software from here: 
     Logic analyzer software from Saleae

    T
    his seems like a bug on the TI side of things, for whatever reason having the DDR configured makes QSPI open fail.  Please take a look and get back to me. My last day at my company is Friday, and I am hoping to have some resolution to this before then. Thank you for your help
  • Also just a note that UART Uniflash over ospi (with ddr configured) works fine.

  • Jacob, 

    As discussed we have taken this debug and discussion offline. We can continue there, I believe it is okay to close this thread for now. Let me know if there is anything else you would like to clarify in this forum itself.

    Regards,
    Anand Mahadevan SS

  • I think it makes no sense to close this one until that the issue is not resolved. 

  • Christophe,

    While we received the Molex board a few days back, but had trouble finding the right debugger. We have the setup ready now. We will try to reproduce the issue at our end and get back with updates in 2 days.

    Regards,
    Anand Mahadevan SS

  • Anand,

    Thanks a lot for the feedback. 

    Thanks

    Christophe.

  • Christophe,

    We are able to reproduce the issue, and Daviel is following up on further steps to find out what part of the DDR configuration is throwing off the QSPI flash setup. We will get back to you in another 2 days.

    Regards,
    Anand Mahadevan SS

  • Christophe,

    Our conjecture is that during a particular stage in the DDR initialization, it throws off the flash configuration and we are unable to communicate to the flash. Daviel is currently looking to the details of this. Will provide more details by next week. Let me know if there are any other concerns or observations.

    Regards,
    Anand Mahadevan SS

  • Anand,

    Thanks for the feedback.

    It is clear to me that you have understood the root cause. Which is a good first step. But, have you planned to fix it? Do you have some timeline to share with us? 

    Thanks

    Christophe. 

  • I believe I identified the root of the issue for why you cannot read the QSPI flash. During init_DDR, a function enables VTT; the pin used for this is CS1. But we can skip this function since VTT is not needed for LPDDR. Here is my modified DDR.c file, please use this in your build as we implement a fix for the next SDK. The line I modified is 450-454. Can you test this and follow up on your results?

    ddr.c
    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    /******************************************************************************
    * Copyright (c) 2021-2022 Texas Instruments Incorporated - http://www.ti.com
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, are permitted provided that the following conditions
    * are met:
    *
    * Redistributions of source code must retain the above copyright
    * notice, this list of conditions and the following disclaimer.
    *
    * Redistributions in binary form must reproduce the above copyright
    * notice, this list of conditions and the following disclaimer in the
    * documentation and/or other materials provided with the
    * distribution.
    *
    * Neither the name of Texas Instruments Incorporated nor the names of
    * its contributors may be used to endorse or promote products derived
    * from this software without specific prior written permission.
    *
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX