RT1050 SDRAM Configuration Issue?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

RT1050 SDRAM Configuration Issue?

1,439 Views
joshuasakwa
Contributor II

I noted a post on another forum that suggests a possible driver defect in SEMC_ConfigureSDRAM(...);

The post suggests that line 387 of fsl_semc.c contains a defect. Specifically the post suggests that the refresh timer should be enabled here by ORing in SEMC_SDRAMCR3_REN_MASK -- I noticed that this is done on line 417 in SDK version 2.3.1. Is this a potential issue that I will want to fix locally, or is the Embedded Wizards forum post stale? 

Thanks in Advance,

Joshua

Labels (2)
Tags (1)
2 Replies

944 Views
noahwang
Contributor III

Hi Joshua,

Everything should be fine as long as you enable refresh before you begin to use the SDRAM. If you import the SEMC example from SDK v2.3.1 you can see:

base->SDRAMCR3 |= SEMC_SDRAMCR3_REN_MASK;

at the end of SEMC_ConfigureSDRAM (line 417 of fsl_semc.c).

Please note that the same example has a bug in SEMC_GetDefaultConfig. In the function the following happens:

void SEMC_GetDefaultConfig(semc_config_t *config)
{

   ...

   semc_queuea_weight_t queueaWeight;
   semc_queueb_weight_t queuebWeight;

   ...

   ...

   config->queueWeight.queueaWeight = &queueaWeight;
   config->queueWeight.queuebWeight = &queuebWeight;

}

As you can see, queueaWeight and queuebWeight are non-static local variables, so their space on the stack is returned as soon as this function exits, which means their values are no longer valid by the time config is actually used.

944 Views
weidong_sun
NXP TechSupport
NXP TechSupport

Hi Joshua,

     Does the answer form Noah Wang help you solve your questions?

the document described how to configure SDRAM clock via registers, it should be helpful for you!

https://community.nxp.com/docs/DOC-340813 

Have a nice day!

Best regards,

Weidong

0 Kudos