<?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>i.MX ProcessorsのトピックRe: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387142#M184470</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/185524"&gt;@D_TTSA&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2.&amp;nbsp; Are my steps 1 and 2 correct for executing functions from SRAM_ITC?&lt;/P&gt;
&lt;P&gt;Answer: I think it is correct. both 1 and 2.&lt;/P&gt;
&lt;P&gt;3.&amp;nbsp;Could you please explain what the new line added to the .map file does (shown above)?&lt;/P&gt;
&lt;P&gt;Answer: You can see, your right side, map contains codeQuickAccess, it means, it insert the memory range to the ITCM, and that memory is named as&amp;nbsp;codeQuickAccess.&lt;/P&gt;
&lt;P&gt;In fact, both method can indicate the code to the ITCM, just define&amp;nbsp;codeQuickAccess range it is more easy to control by the SDK, it is the SDK code style.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Wish it helps you!&lt;/P&gt;
&lt;P&gt;Best Regards.&lt;/P&gt;</description>
    <pubDate>Wed, 15 Dec 2021 08:41:17 GMT</pubDate>
    <dc:creator>kerryzhou</dc:creator>
    <dc:date>2021-12-15T08:41:17Z</dc:date>
    <item>
      <title>Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1383492#M184147</link>
      <description>&lt;P&gt;Good day&lt;/P&gt;&lt;P&gt;I would like to know what purpose this has in the Project properties -&amp;gt; C/C++ Build -&amp;gt; Settings -&amp;gt; Managed Linker Script window:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="D_Tram23_1-1638977791951.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/164524iEB1BB8591942041B/image-size/large?v=v2&amp;amp;px=999" role="button" title="D_Tram23_1-1638977791951.png" alt="D_Tram23_1-1638977791951.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I came across it in an SDK example (can't remember which one), but I'm not sure of its purpose.&lt;/P&gt;&lt;P&gt;I know how to move functions into the SRAM_ITC_cm7 section (for increasing the speed of their execution) using:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;__attribute__((section(".ramfunc.$SRAM_ITC_cm7")))&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Does the&amp;nbsp;KEEP(*(CodeQuickAccess)) section have something to do with this? Or is this unrelated?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 15:40:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1383492#M184147</guid>
      <dc:creator>D_TTSA</dc:creator>
      <dc:date>2021-12-08T15:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1383751#M184164</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/185524"&gt;@D_TTSA&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;You mentioned&amp;nbsp;&lt;SPAN&gt;CodeQuickAccess, can be found in the SDK code:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SDK_2_10_1_EVK-MIMXRT1060\boards\evkmimxrt1060\demo_apps\power_mode_switch&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kerryzhou_0-1639025022473.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/164591i471BB0A2A58A2063/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kerryzhou_0-1639025022473.png" alt="kerryzhou_0-1639025022473.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;AT_QUICKACCESS_SECTION_CODE(void SwitchSystemClocks(lpm_power_mode_t power_mode));&lt;/P&gt;
&lt;P&gt;#define AT_QUICKACCESS_SECTION_CODE(func) __attribute__((section("CodeQuickAccess"), __noinline__)) func&lt;BR /&gt;#define AT_QUICKACCESS_SECTION_DATA(func) __attribute__((section("DataQuickAccess"))) func&lt;/P&gt;
&lt;P&gt;Then, you can find, it will put the&amp;nbsp;SwitchSystemClocks API in the RAM, as this code need to run in the internal RAM, otherwise, it will cause the low power issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Wish it helps you!&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Kerry&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 04:44:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1383751#M184164</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2021-12-09T04:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1384081#M184193</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/60336"&gt;@kerryzhou&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;I'm quite certain that I saw this linker script section in another SDK example, because I hadn't seen the power_mode_switch example until you mentioned it.&lt;/P&gt;&lt;P&gt;But anyway, what I'm understanding from your message is that the KEEP(*(CodeQuickAccess)) section:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Has nothing to do with improving performance&lt;/LI&gt;&lt;LI&gt;Is purely for keeping code in the internal RAM (so, copying the code from FLASH into RAM) so that when you go into low-power mode and you can't access the FLASH, you can still run the code in RAM.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Are you absolutely sure that this isn't linked to how SRAM_ITC improves performance of the code that is placed in that section? If not, the "CodeQuickAccess" name is rather misleading.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 14:25:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1384081#M184193</guid>
      <dc:creator>D_TTSA</dc:creator>
      <dc:date>2021-12-09T14:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1385103#M184285</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/185524"&gt;@D_TTSA&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; No, you misunderstand me!&lt;/P&gt;
&lt;P&gt;&amp;nbsp; The low power project is just the example to me to talk this case, of course, there still have other projects like that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Answer your questions:&lt;/P&gt;
&lt;P&gt;1 Has nothing to do with improving performance&lt;/P&gt;
&lt;P&gt;--Answer: why you understand the TCM code running performance not higher than the external flash?&lt;/P&gt;
&lt;P&gt;internal TCM code running speed more quick that the external flash, so that is the performance changing.&lt;/P&gt;
&lt;P&gt;Performance is not the only item, the codeQuickAccess also can avoid some conflict for the cache and the flexSPI, etc. As it run in the internal TCM which don't need cache.&lt;/P&gt;
&lt;P&gt;2 Is purely for keeping code in the internal RAM (so, copying the code from FLASH into RAM) so that when you go into low-power mode and you can't access the FLASH, you can still run the code in RAM.&lt;/P&gt;
&lt;P&gt;--Answer: No, some code have conflict with the flexSPI, eg, when do the low power clock switch, if it run in the external flexSPI, it will caused the issues, so the that code need to put in the internal TCM and run it in internal RAM. Just some code is special.&lt;/P&gt;
&lt;P&gt;3. Are you absolutely sure that this isn't linked to how SRAM_ITC improves performance of the code that is placed in that section? If not, the "CodeQuickAccess" name is rather misleading.&lt;/P&gt;
&lt;P&gt;--Answer: Code run in internal TCM is the quick code, the TCM clock speed is higher than the external flash, as you know, external flash also need to do the communication with the flexSPI interface, and the clock speed is slower than the TCM.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Wish it helps you!&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Kerry&lt;/P&gt;</description>
      <pubDate>Sat, 11 Dec 2021 01:47:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1385103#M184285</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2021-12-11T01:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1385417#M184326</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/60336"&gt;@kerryzhou&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I understand that placing code in ITCM means it will run faster than when it is running from external flash. I have said this before. What I am asking is, how does putting "KEEP(*(CodeQuickAccess))" in the extra linker script input section settings affect performance? How is it linked to putting code in the ITCM? Because I know how to put code in the ITCM, using the __attribute__ qualifier&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="D_Tram23_0-1639378546260.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/164918iC36F5A938CA47C78/image-size/medium?v=v2&amp;amp;px=400" role="button" title="D_Tram23_0-1639378546260.png" alt="D_Tram23_0-1639378546260.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;2. Okay&lt;/P&gt;&lt;P&gt;3. Again, I know that ITCM is faster. But you say here that "&lt;SPAN&gt;internal TCM is the quick code". ITCM stands for Instruction Tightly-Coupled Memory. This memory is optimised for holding instruction data, improving the speed of executing code. I understand that there are a few reasons for this speed improvement (clock speed, cutting out communication to flash, etc). What I don't understand is what the CodeQuickAccess linker script section has to do with ITCM. If it is necessary to put this linker script section in order to place code in the ITCM, then this should be stated. But I don't believe this is the case, since it seems to work in my project without doing this...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kind regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 07:01:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1385417#M184326</guid>
      <dc:creator>D_TTSA</dc:creator>
      <dc:date>2021-12-13T07:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1386043#M184388</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/185524"&gt;@D_TTSA&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1.&amp;nbsp;&lt;SPAN&gt;how does putting "KEEP(*(CodeQuickAccess))" in the extra linker script input section settings affect performance? How is it linked to putting code in the ITCM? Because I know how to put code in the ITCM, using the __attribute__ qualifier&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Answer: linker script contains :&lt;SPAN&gt;KEEP(*(CodeQuickAccess))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; It means, it will put the space of&amp;nbsp;&lt;SPAN&gt;CodeQuickAccess in the internal ITCM, you can consider, ITCM will reserve one space for your CodeQuickAccess, it is the memory divide, not the mcuxpresso, other IDE, eg, IAR, MDK also do it the same way.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; Your&amp;nbsp;__attribute__ qualifier just define the detail API to the&amp;nbsp;CodeQuickAccess area.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; So, this can realize your detail API put in the internal ITCM demand.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;2.&amp;nbsp;What I don't understand is what the CodeQuickAccess linker script section has to do with ITCM. If it is necessary to put this linker script section in order to place code in the ITCM, then this should be stated. But I don't believe this is the case, since it seems to work in my project without doing this...&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Answer:&amp;nbsp;CodeQuickAccess linker file will define your&amp;nbsp;CodeQuickAccess space in the internal ITCM, you can check your .map file, it will be more clear. This is the memory arrangement, linker file is used to the memory arrangement. If you don't do it, you can check your map file, whether you already put in the ITCM or not, and please also check your link file, whether you really didin't use it and API is located to the internal ITCM.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Just make sure your code is running in the external QSPI flash.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Kerry&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 04:24:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1386043#M184388</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2021-12-14T04:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1386146#M184398</link>
      <description>&lt;P&gt;Thanks for your reply&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/60336"&gt;@kerryzhou&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm going to explain it back to you to see if I understand you correctly.&lt;/P&gt;&lt;P&gt;To run code from ITCM, with the aim of improving the speed of execution:&lt;/P&gt;&lt;P&gt;1. Use the __attribute__ qualifier when declaring functions to put them in the SRAM_ITC region. This puts the code in the correct region in internal memory.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="D_Tram23_0-1639466419118.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/165063i62DD6D50B6165F97/image-size/medium?v=v2&amp;amp;px=400" role="button" title="D_Tram23_0-1639466419118.png" alt="D_Tram23_0-1639466419118.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;2. Add the KEEP(*(CodeQuickAccess)) extra linker script section to inform the linker that the data in the SRAM_ITC region is code that is placed there for the fast-execution benefits.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: I compared the .map file when I have this linker script section (below, right) to when I don't (below, left). The only difference I found was this line that was added:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="D_Tram23_1-1639466560109.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/165064i8A3F17591AC0A0D1/image-size/large?v=v2&amp;amp;px=999" role="button" title="D_Tram23_1-1639466560109.png" alt="D_Tram23_1-1639466560109.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Perhaps you can explain what this difference means?&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 07:24:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1386146#M184398</guid>
      <dc:creator>D_TTSA</dc:creator>
      <dc:date>2021-12-14T07:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1386814#M184435</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/185524"&gt;@D_TTSA&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; In fact, you need to check the ld KEEP meaning at first:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kerryzhou_0-1639534460331.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/165214iACB94D6C224F9D88/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kerryzhou_0-1639534460331.png" alt="kerryzhou_0-1639534460331.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You can also search it from website:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/9827157/what-does-keep-mean-in-a-linker-script" target="_blank"&gt;https://stackoverflow.com/questions/9827157/what-does-keep-mean-in-a-linker-script&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Wish it helps you!&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Kerry&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 02:16:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1386814#M184435</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2021-12-15T02:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387137#M184468</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/60336"&gt;@kerryzhou&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once again, I do not feel like you are addressing exactly what I've asked.&lt;/P&gt;&lt;P&gt;My questions:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;I see the meaning of KEEP that you posted. Are you trying to correct my explanation in step 2?&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;Are my steps 1 and 2 correct for executing functions from SRAM_ITC?&lt;/LI&gt;&lt;LI&gt;Could you please explain what the new line added to the .map file does (shown above)?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 08:35:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387137#M184468</guid>
      <dc:creator>D_TTSA</dc:creator>
      <dc:date>2021-12-15T08:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387142#M184470</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/185524"&gt;@D_TTSA&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2.&amp;nbsp; Are my steps 1 and 2 correct for executing functions from SRAM_ITC?&lt;/P&gt;
&lt;P&gt;Answer: I think it is correct. both 1 and 2.&lt;/P&gt;
&lt;P&gt;3.&amp;nbsp;Could you please explain what the new line added to the .map file does (shown above)?&lt;/P&gt;
&lt;P&gt;Answer: You can see, your right side, map contains codeQuickAccess, it means, it insert the memory range to the ITCM, and that memory is named as&amp;nbsp;codeQuickAccess.&lt;/P&gt;
&lt;P&gt;In fact, both method can indicate the code to the ITCM, just define&amp;nbsp;codeQuickAccess range it is more easy to control by the SDK, it is the SDK code style.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Wish it helps you!&lt;/P&gt;
&lt;P&gt;Best Regards.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 08:41:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387142#M184470</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2021-12-15T08:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387162#M184480</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/60336"&gt;@kerryzhou&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First of all, you didn't answer question 1.&lt;/P&gt;&lt;P&gt;Second of all, in your answer to question 3, you say "both methods" can "indicate" the code to the ITCM. Do you mean that both step 1 AND step 2 place the code in the ITC - so there is no reason to do both?&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is the case, why does adding the linker script section change the .map file? Adding the linker script section clearly makes a difference here.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 08:58:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387162#M184480</guid>
      <dc:creator>D_TTSA</dc:creator>
      <dc:date>2021-12-15T08:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387169#M184482</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/185524"&gt;@D_TTSA&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I think this question you need to post question in the IDE side:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.nxp.com/t5/MCUXpresso-IDE/bd-p/mcuxpresso-ide" target="_blank"&gt;https://community.nxp.com/t5/MCUXpresso-IDE/bd-p/mcuxpresso-ide&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; As it is determined by the IDE ld file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You also can refer to this post:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.nxp.com/docs/DOC-335283" target="_blank"&gt;https://community.nxp.com/docs/DOC-335283&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Which is about how to define the API to the specific area in mcuxpresso.&lt;/P&gt;
&lt;P&gt;About question1, it indicate about the step2, so I answer you directly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I mean, it is the different way to put your API to the internal ITCM, your step1 and step2 is two way to put the code to the ITCM.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;more details about the linker file, and the generate map file, please check with our IDE engineer, as I am the RT chip technical engineer.&lt;/P&gt;
&lt;P&gt;Wish it helps you!&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Kerry&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 09:06:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387169#M184482</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2021-12-15T09:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387297#M184507</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/60336"&gt;@kerryzhou&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please tag the IDE engineer in this post, as there is a lot of information that would need to be repeated if I were to create another post.&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 12:26:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387297#M184507</guid>
      <dc:creator>D_TTSA</dc:creator>
      <dc:date>2021-12-15T12:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Purpose of KEEP(*(CodeQuickAccess)) Extra Linker Script Input Section</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387879#M184553</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/185524"&gt;@D_TTSA&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If you want to know more details about the IDE linker file and the map file, you can create the post in the IDE area.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; But, from my opinion, if you need some code run in the ITCM, I think you can do it like the SDK, divide the CodeQuickAccess area, and define API to it, this is the normal usage.&lt;/P&gt;
&lt;P&gt;Wish it helps you!&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Kerry&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 06:40:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Purpose-of-KEEP-CodeQuickAccess-Extra-Linker-Script-Input/m-p/1387879#M184553</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2021-12-16T06:40:22Z</dc:date>
    </item>
  </channel>
</rss>

