<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Vybrid ProcessorsのトピックRe: DDR3 Reinitialization</title>
    <link>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233246#M435</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hello &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;John&lt;/SPAN&gt;,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Your configuration is a bit unusual... and might need a tricky solution...&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;How about powering the DDR memory off &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;but not the controller? - &lt;/SPAN&gt;If after powering the memory back on everything works, try to also disable the clock(s) used by &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;the controller -&lt;/SPAN&gt; in this case, its power consumption is very low, only caused by the CMOS leakage currents. With the clock(s) enabled again, the controller quite likely will continue from the point it was halted on (i.e. without re-initialization).&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Please, let me know if this approach works.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards, Naoum Gitnik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Dec 2013 00:04:37 GMT</pubDate>
    <dc:creator>naoumgitnik</dc:creator>
    <dc:date>2013-12-03T00:04:37Z</dc:date>
    <item>
      <title>DDR3 Reinitialization</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233243#M432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a question regarding the initialization of the DDR SDRAM memory controller in the VF6.&amp;nbsp;&amp;nbsp; Our product does not use Linux, but uses a small RTOS instead.&amp;nbsp; There is 128Mbytes of DDR3 memory tied to the VF6 in our design, but that is dedicated to processing data packets.&amp;nbsp;&amp;nbsp; During the periods between data packets (on the order of minutes) we need to lower the power consumption as much as is possible to meet battery life requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our intention is to turn off the DDR3 memory voltage rail when the DDR3 is not needed.&amp;nbsp; That means that the RTOS will run entirely out of the VF6’s internal RAM.&amp;nbsp;&amp;nbsp; This also means that when the DDR3 is turned back on that the VF6 will have to reinitialize the DDR controller.&amp;nbsp;&amp;nbsp; We were told by a Freescale FAE that we could turn the DDR voltage rail on and off without issue (though that may just have meant without damaging the part).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The VF6 controls the DDR voltage rail with a GPIO signal in our design.&amp;nbsp; This is different than the Tower or Phytec boards which always power the DDR memory.&amp;nbsp; We’ve changed the Tower initialization code sequence to include turning on the DDR3 memory.&amp;nbsp; We have found that the DDR voltage needs to be turned on prior to initializing the DDR clock domain.&amp;nbsp; Also, we’ve found that some amount of time is required from when the DDR clock is enabled and the DDR controller is enabled ( DDR_CR00[START] is asserted).&amp;nbsp;&amp;nbsp; My first questions are what kinds of delays we should be using between turning on the DDR voltage rail, enabling the clock, and enabling the DDR controller, or if there are any other dependencies that we should be aware of?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Beyond power on initialization, we’ve been trying to get the memory controller to work when powering the DDR down and back up without a system reset.&amp;nbsp; The following code describes the current memory test that we are trying to do to prove that we can power cycle the DDR independently of the VF6:&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;setup_gpio_pins(); // Setup the GPIO pins&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp; while(!status) {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // run memory tests until we fail.....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; reg32_write(0x400ae400, 0x00000600); //DDR_CR0 = Stop the DDR Controller...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; clear_ccgr_register(DDRMC_CCGR_INDEX); // disable DDR Controller clock gate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ddr_power(0);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // DDR off&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; time_delay_ms(10); // Sleep 10 &lt;SPAN style="text-decoration: underline;"&gt;ms&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ddr_power(1);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // DDR on&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; time_delay_ms(10); // Sleep 10 &lt;SPAN style="text-decoration: underline;"&gt;ms&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ddr_init2(CLK_ON_ALL_MODES);&amp;nbsp;&amp;nbsp; // re-initialize the &lt;SPAN style="text-decoration: underline;"&gt;ddr&lt;/SPAN&gt; controller...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; time_delay_ms(10); // Sleep 10 &lt;SPAN style="text-decoration: underline;"&gt;ms&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; status = memtest_vybrid_ddr();// Here’s where we fail….&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; count++;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;This code fails miserably every time.&amp;nbsp; We commented out the ddr_power(1) and ddr_power(0) statements to eliminate the actual power cycling and found that the controller was flakey at best, sometimes passing our memory test, sometimes not.&amp;nbsp; Failures varied from data bit tests, to address bit testing.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Looking at the DDR controller documentation, we see the following passage:&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;STRONG&gt;“34.7 Initialization and Application Information&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;The memory controller requires a sequence for correct operation after power to the&lt;/P&gt;&lt;P style="text-align: justify;"&gt;microcontroller and memory devices is stable. When power is stable, the memory&lt;/P&gt;&lt;P style="text-align: justify;"&gt;controller automatically initializes the memory devices.&lt;/P&gt;&lt;P style="text-align: justify;"&gt;The procedure to initialize the memory controller is as follows:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1&lt;SPAN style="color: red;"&gt;. Assert system reset (managed by device logic) and wait for the reset to get&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: red;"&gt;deasserted.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;2. Issue write register commands to configure the DRAM protocols and the settings for&lt;/P&gt;&lt;P style="text-align: justify;"&gt;the memory. Keep the DDR_CR00[START] de-asserted during this initialization step.&lt;/P&gt;&lt;P&gt;3. Assert the DDR_CR00[START]. This triggers the memory controller to execute the&lt;/P&gt;&lt;P style="text-align: justify;"&gt;initialization sequence using the bits written into the registers.&lt;/P&gt;&lt;P style="text-align: justify;"&gt;The MC will set the initialization complete interrupt (bit 9) in the&lt;/P&gt;&lt;P style="text-align: justify;"&gt;DDR_CR80[INT_STAT] when it is ready for commands. In addition, the user should&lt;/P&gt;&lt;P style="text-align: justify;"&gt;check that the CCM_CCSR[DDRC_CLK_SEL] is enabled before accessing the DDR memory.”&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which indicates that what we are trying to do is not possible without a full system reset, a full system reset would cause other problems in our system.&amp;nbsp; Is there another way to get the DDR controller reset properly?&amp;nbsp; Is there something else we should be doing to allow us to power cycle the DDR controller and memory without power cycling the entire VF6?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John Fielden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 21:34:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233243#M432</guid>
      <dc:creator>johnfielden</dc:creator>
      <dc:date>2013-11-27T21:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: DDR3 Reinitialization</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233244#M433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/timesyssupport"&gt;timesyssupport&lt;/A&gt; can you help on this case?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Nov 2013 18:45:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233244#M433</guid>
      <dc:creator>karina_valencia</dc:creator>
      <dc:date>2013-11-28T18:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: DDR3 Reinitialization</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233245#M434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, we are not aware of a way to reinitialize the DDR controller without performing a system reset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, and let me know if you have any questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Timesys Support&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Dec 2013 22:34:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233245#M434</guid>
      <dc:creator>timesyssupport</dc:creator>
      <dc:date>2013-12-02T22:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: DDR3 Reinitialization</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233246#M435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hello &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;John&lt;/SPAN&gt;,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Your configuration is a bit unusual... and might need a tricky solution...&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;How about powering the DDR memory off &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;but not the controller? - &lt;/SPAN&gt;If after powering the memory back on everything works, try to also disable the clock(s) used by &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;the controller -&lt;/SPAN&gt; in this case, its power consumption is very low, only caused by the CMOS leakage currents. With the clock(s) enabled again, the controller quite likely will continue from the point it was halted on (i.e. without re-initialization).&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Please, let me know if this approach works.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards, Naoum Gitnik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 00:04:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233246#M435</guid>
      <dc:creator>naoumgitnik</dc:creator>
      <dc:date>2013-12-03T00:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: DDR3 Reinitialization</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233247#M436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The 1.5V plane feeding the DDR controller and the DDR3 memory is not seperable in our design.&amp;nbsp; It's an inner plane and ties many vias together.&amp;nbsp; We've attempted your second suggestion, disable the clocks to the controller.&amp;nbsp; This seems to work and appears to give a power savings of 70% (of just the DDR power).&amp;nbsp;&amp;nbsp; I'm checking with Micron (the DDR3 vendor) , but I'm wondering how this "sleep" state compares to self refresh mode.&amp;nbsp; If they are similar then we arn't really saving anything by shutting off the clocks.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which begs the question, what do we need to do to get into self refresh mode?&amp;nbsp; Our software engineer is looking into this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally, one of the questions from my first post seems to have been missed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How much time delay is required between when the DDR voltage rail is turned on, enabling the clock, and enabling the DDR controller.&amp;nbsp; Are there are any other dependencies that we should be aware of?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John Fielden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 21:07:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233247#M436</guid>
      <dc:creator>johnfielden</dc:creator>
      <dc:date>2013-12-11T21:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: DDR3 Reinitialization</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233248#M437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hello &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;John&lt;/SPAN&gt;,&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;It looks like my approach works, right? And yes, in this case you save power on the Vybrid's DDR controller.&lt;/LI&gt;&lt;LI&gt;I will forward your question to the Design team; expect reply within several business days.&lt;/LI&gt;&lt;/UL&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards, Naoum Gitnik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Dec 2013 23:55:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233248#M437</guid>
      <dc:creator>naoumgitnik</dc:creator>
      <dc:date>2013-12-12T23:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Re: DDR3 Reinitialization</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233249#M438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #575757; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;Hello &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;John&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt; color: #575757;"&gt;As of now, the &lt;SPAN style="text-decoration: underline;"&gt;IC design team&lt;/SPAN&gt; confirmed the &lt;SPAN style="color: #575757;"&gt;"When power is stable, the memory controller automatically initializes the memory devices." statement from the Datasheet:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;"DDR initialization is software-controlled, and&lt;/SPAN&gt;&lt;SPAN style="color: #339966; font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #339966; font-size: 10pt; line-height: 1.5em;"&gt;it is mentioned&lt;/SPAN&gt;&lt;SPAN style="color: #339966; font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;SPAN style="line-height: 1.5em; color: #339966; font-size: 10pt;"&gt; in the Reference &lt;/SPAN&gt;&lt;SPAN style="color: #339966;"&gt;Manual that&lt;/SPAN&gt;&lt;SPAN style="line-height: 1.5em; color: #339966; font-size: 10pt;"&gt; DDR initialization should happen once the power supplies for both controller and memory are stable. So board designer/customer would know the worst case time of DDR supply to stabilize, and he can insert as much delay as he wants in software."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-size: 10pt; font-family: arial, helvetica, sans-serif; text-decoration: underline;"&gt;My Q.:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-family: arial, helvetica, sans-serif; font-size: 10pt;"&gt;Please, provide answer for the 2 below sub-cases (not finalized yet in the design…):&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt; color: #575757;"&gt;the DDR memory chip powered from the same 1.5V rail as the Vybrid’s DDR controller,&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt; color: #575757;"&gt;the DDR memory chip already turned on way prior to 1.5V for the Vybrid’s DDR controller.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-family: arial, helvetica, sans-serif; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-size: 10pt; font-family: arial, helvetica, sans-serif; text-decoration: underline;"&gt;IC design team's A:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-family: arial, helvetica, sans-serif; font-size: 10pt;"&gt; &lt;SPAN style="color: #339966;"&gt;The only issue I see with DDR memory chip already turned on before Vybrid’s DDR controller is some extra leakage due to undriven pads to DDR memory until Vybrid controller gets power but I do not think this will result in any functional failures. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, regarding enabling clocks I mentioned earlier - based on 'Figure 4. Power supply' in the Datasheet and the IC design team's information, &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;1.5V is only used for the level-shifted pads (pins), but the &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;DDR controller, including its timing units, etc., is powered from the other Vybrid's power rails.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #575757; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;Regards, Naoum Gitnik.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Dec 2013 22:24:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/DDR3-Reinitialization/m-p/233249#M438</guid>
      <dc:creator>naoumgitnik</dc:creator>
      <dc:date>2013-12-13T22:24:21Z</dc:date>
    </item>
  </channel>
</rss>

