<?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>topic Re: P1022 TLB entries in P-Series</title>
    <link>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/977002#M4715</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How this address is configured as L1 data cache address?&amp;nbsp;&lt;/P&gt;&lt;P&gt;More than 32kb size can i configure?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Feb 2020 13:46:35 GMT</pubDate>
    <dc:creator>sujanathinaraya</dc:creator>
    <dc:date>2020-02-04T13:46:35Z</dc:date>
    <item>
      <title>P1022 TLB entries</title>
      <link>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/976997#M4710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I am working on P1022 board. In that tlb.c file, I have seen below TLB0 entries ( CONFIG_SYS_INIT_RAM_ADDR - 0xffd00000,&amp;nbsp; size - 16K) .please explain me&amp;nbsp; the pupose of this 16K temp stack in cache.&lt;/P&gt;&lt;PRE style="color: #000000; padding: 1em 0px 4em 1em;"&gt;/* TLB 0 - for temp stack in cache */
 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR, CONFIG_SYS_INIT_RAM_ADDR,
 MAS3_SX|MAS3_SW|MAS3_SR, 0,
 0, 0, BOOKE_PAGESZ_4K, 0),
 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024,
 CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024,
 MAS3_SX|MAS3_SW|MAS3_SR, 0,
 0, 0, BOOKE_PAGESZ_4K, 0),
 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024,
 CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024,
 MAS3_SX|MAS3_SW|MAS3_SR, 0,
 0, 0, BOOKE_PAGESZ_4K, 0),
 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024,
 CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024,
 MAS3_SX|MAS3_SW|MAS3_SR, 0,
 0, 0, BOOKE_PAGESZ_4K, 0),&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2020 05:21:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/976997#M4710</guid>
      <dc:creator>sujanathinaraya</dc:creator>
      <dc:date>2020-02-04T05:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: P1022 TLB entries</title>
      <link>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/976998#M4711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please consider that CONFIG_SYS_INIT_RAM_ADDR is:&lt;/P&gt;&lt;P&gt;Start address of memory area that can be used for&amp;nbsp;initial data and stack; please note that this must be&amp;nbsp;writable memory that is working WITHOUT special&amp;nbsp;initialization, i. e. you CANNOT use normal RAM which&amp;nbsp;will become available only after programming the&amp;nbsp;memory controller and running certain initialization&amp;nbsp;sequences.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to the Start.s:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/qoriq-open-source/u-boot/blob/b3f98d438eefd1b355efdec0b50af5813ff8d0e1/arch/powerpc/cpu/mpc85xx/start.S" title="https://github.com/qoriq-open-source/u-boot/blob/b3f98d438eefd1b355efdec0b50af5813ff8d0e1/arch/powerpc/cpu/mpc85xx/start.S"&gt;u-boot/start.S at b3f98d438eefd1b355efdec0b50af5813ff8d0e1 · qoriq-open-source/u-boot · GitHub&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #6a737d; background-color: #ffffff;"&gt;/* L1 DCache is used for initial RAM */&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2020 11:43:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/976998#M4711</guid>
      <dc:creator>ufedor</dc:creator>
      <dc:date>2020-02-04T11:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: P1022 TLB entries</title>
      <link>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/976999#M4712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you ufedor for your valuable reply. I understand that&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;CONFIG_SYS_INIT_RAM_ADDR is configured as L1 data cache to&amp;nbsp; execute program before initialization of normal ram. Whether&amp;nbsp;&lt;SPAN&gt;CONFIG_SYS_INIT_RAM_ADDR address and size is configurable? i.e any address and size can be used instead of 0xffd00000 and 16k&amp;nbsp; size.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2020 13:11:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/976999#M4712</guid>
      <dc:creator>sujanathinaraya</dc:creator>
      <dc:date>2020-02-04T13:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: P1022 TLB entries</title>
      <link>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/977000#M4713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Thank you ufedor for your valuable reply. I understand that&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;CONFIG_SYS_INIT_RAM_ADDR is configured as L1 data cache to&amp;nbsp; execute program before initialization of normal ram. Whether&amp;nbsp;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;CONFIG_SYS_INIT_RAM_ADDR address and size is configurable? i.e any address and size can be used instead of 0xffd00000 and 16k&amp;nbsp; size.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2020 13:22:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/977000#M4713</guid>
      <dc:creator>sujanathinaraya</dc:creator>
      <dc:date>2020-02-04T13:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: P1022 TLB entries</title>
      <link>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/977001#M4714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;any address and size can be used instead of 0xffd00000 and 16k&amp;nbsp; size.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The&amp;nbsp;address should not interfere with the final memory map.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2020 13:30:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/977001#M4714</guid>
      <dc:creator>ufedor</dc:creator>
      <dc:date>2020-02-04T13:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: P1022 TLB entries</title>
      <link>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/977002#M4715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How this address is configured as L1 data cache address?&amp;nbsp;&lt;/P&gt;&lt;P&gt;More than 32kb size can i configure?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2020 13:46:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/977002#M4715</guid>
      <dc:creator>sujanathinaraya</dc:creator>
      <dc:date>2020-02-04T13:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: P1022 TLB entries</title>
      <link>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/977003#M4716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;How this address is configured as L1 data cache address?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Refer to the "Start.s" code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;More than 32kb size can i configure?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Of course - not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2020 14:30:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/977003#M4716</guid>
      <dc:creator>ufedor</dc:creator>
      <dc:date>2020-02-04T14:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: P1022 TLB entries</title>
      <link>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/977004#M4717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you ufedor...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2020 14:59:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P1022-TLB-entries/m-p/977004#M4717</guid>
      <dc:creator>sujanathinaraya</dc:creator>
      <dc:date>2020-02-04T14:59:01Z</dc:date>
    </item>
  </channel>
</rss>

