<?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: u-boot standalone program issue in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/u-boot-standalone-program-issue/m-p/807293#M124573</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hi &lt;A _jive_internal="true" class="" data-avatarid="1034" data-externalid="" data-online="false" data-presence="null" data-userid="206296" data-username="igorpadykov" href="https://community.nxp.com/people/igorpadykov"&gt;igorpadykov.,&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank you for your valuable response.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By referring some threads I have modified&amp;nbsp; "&lt;STRONG&gt;CONFIG_STANDALONE_LOAD_ADDR&lt;/STRONG&gt;" to 0x10000000 in u-boot root folder/Arch/arc/config.mk file &amp;amp; u-boot root folder/include/configs/mx6_common.h files. As per my understanding the standalone example make file will consider the above define only. I also cross checked the address by looking at Hex file(hello_world.srec) generated along with hello_world binary file(hello_world.bin).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;since one week I stuck with this issue , Can you please help me to come out from this issue, Where should I modify standalone load address, or Is there any step i am missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.,.,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Oct 2018 11:47:01 GMT</pubDate>
    <dc:creator>edwinkaus</dc:creator>
    <dc:date>2018-10-01T11:47:01Z</dc:date>
    <item>
      <title>u-boot standalone program issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/u-boot-standalone-program-issue/m-p/807291#M124571</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;/P&gt;&lt;P&gt;I am working on iMX6 sabre SD board, I am trying to run an standalone hello_world.bin(which is already compiled with u-boot source code) over u-boot code.The binary file is getting loaded to RAM successfully , but when I give 'GO' command its giving a "data abort error",&lt;/P&gt;&lt;P&gt;Only thing I modified "&lt;STRONG&gt;CONFIG_STANDALONE_LOAD_ADDR&lt;/STRONG&gt;" to 0x10000000 in arch/arm/config.mk file.&lt;/P&gt;&lt;P&gt;Can anyone help me to come out from this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I am attaching the LOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&amp;gt; &lt;STRONG&gt;fatload mmc 1:2 0x10000000 hello_world.bin&lt;/STRONG&gt;&lt;BR /&gt;578 bytes read in 15 ms (37.1 KiB/s)&lt;BR /&gt;=&amp;gt; &lt;BR /&gt;=&amp;gt; &lt;BR /&gt;=&amp;gt; &lt;STRONG&gt;go 0x10000000&lt;/STRONG&gt; &lt;BR /&gt;## Starting application at 0x10000000 ...&lt;BR /&gt;data abort&lt;BR /&gt;pc : [&amp;lt;10000008&amp;gt;] lr : [&amp;lt;4ff6970f&amp;gt;]&lt;BR /&gt;reloc pc : [&amp;lt;d789a008&amp;gt;] lr : [&amp;lt;1780370f&amp;gt;]&lt;BR /&gt;sp : 4f565d48 ip : 0000001c fp : 00000002&lt;BR /&gt;r10: 4ffc43fc r9 : 4f565ea0 r8 : 4f86d1a8&lt;BR /&gt;r7 : 4ff696e5 r6 : 00000002 r5 : 10000000 r4 : 4f86d1ac&lt;BR /&gt;r3 : 10000000 r2 : 4f86d1ac r1 : 4f86d1ac r0 : 00000001&lt;BR /&gt;Flags: nzCv IRQs off FIQs off Mode SVC_32&lt;BR /&gt;Code: &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2018 11:50:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/u-boot-standalone-program-issue/m-p/807291#M124571</guid>
      <dc:creator>edwinkaus</dc:creator>
      <dc:date>2018-09-28T11:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: u-boot standalone program issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/u-boot-standalone-program-issue/m-p/807292#M124572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Edwin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reason for abort may be that program first instruction (usually located at start: label)&lt;/P&gt;&lt;P&gt;is not compiled at 0x10000000 address. So at this address is located wrong instruction.&lt;/P&gt;&lt;P&gt;In uboot one can read data at that address and compare it with linker listing file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt;igor&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2018 11:10:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/u-boot-standalone-program-issue/m-p/807292#M124572</guid>
      <dc:creator>igorpadykov</dc:creator>
      <dc:date>2018-10-01T11:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: u-boot standalone program issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/u-boot-standalone-program-issue/m-p/807293#M124573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hi &lt;A _jive_internal="true" class="" data-avatarid="1034" data-externalid="" data-online="false" data-presence="null" data-userid="206296" data-username="igorpadykov" href="https://community.nxp.com/people/igorpadykov"&gt;igorpadykov.,&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank you for your valuable response.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By referring some threads I have modified&amp;nbsp; "&lt;STRONG&gt;CONFIG_STANDALONE_LOAD_ADDR&lt;/STRONG&gt;" to 0x10000000 in u-boot root folder/Arch/arc/config.mk file &amp;amp; u-boot root folder/include/configs/mx6_common.h files. As per my understanding the standalone example make file will consider the above define only. I also cross checked the address by looking at Hex file(hello_world.srec) generated along with hello_world binary file(hello_world.bin).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;since one week I stuck with this issue , Can you please help me to come out from this issue, Where should I modify standalone load address, or Is there any step i am missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.,.,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2018 11:47:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/u-boot-standalone-program-issue/m-p/807293#M124573</guid>
      <dc:creator>edwinkaus</dc:creator>
      <dc:date>2018-10-01T11:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: u-boot standalone program issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/u-boot-standalone-program-issue/m-p/807294#M124574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Edwin&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;one can look on &lt;A href="https://community.nxp.com/thread/359068"&gt;https://community.nxp.com/thread/359068&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;A class="link-titled" href="http://forums.wandboard.org/viewtopic.php?f=12&amp;amp;t=226" title="http://forums.wandboard.org/viewtopic.php?f=12&amp;amp;t=226"&gt;Wandboard Discussion Forums • View topic - Basic Application from scratch&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;example in uboot..examples/standalone/ hello_world.c&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt;igor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2018 23:31:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/u-boot-standalone-program-issue/m-p/807294#M124574</guid>
      <dc:creator>igorpadykov</dc:creator>
      <dc:date>2018-10-01T23:31:01Z</dc:date>
    </item>
  </channel>
</rss>

