<?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: IMX6UL stopped booting. in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/IMX6UL-stopped-booting/m-p/655592#M100457</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sorry, but, we cannot discuss this with you in public anyway, this requires to be handled&lt;/P&gt;&lt;P&gt;as a Service Request (SR).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/docs/DOC-329745"&gt;https://community.nxp.com/docs/DOC-329745&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Yuri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 Jan 2017 09:41:33 GMT</pubDate>
    <dc:creator>Yuri</dc:creator>
    <dc:date>2017-01-31T09:41:33Z</dc:date>
    <item>
      <title>IMX6UL stopped booting.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX6UL-stopped-booting/m-p/655591#M100456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using IMX6UL EVK board, I was working with secure ram(CAAM) read/write. I used following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; //You can access to physical address from user space using mmap.&lt;/P&gt;&lt;P&gt;#include &amp;lt;sys/types.h&amp;gt;&lt;BR /&gt; #include &amp;lt;unistd.h&amp;gt;&lt;BR /&gt; #include &amp;lt;sys/stat.h&amp;gt;&lt;BR /&gt; #include &amp;lt;sys/mman.h&amp;gt;&lt;BR /&gt; #include &amp;lt;fcntl.h&amp;gt;&lt;BR /&gt; #include &amp;lt;stdio.h&amp;gt;&lt;BR /&gt; #include &amp;lt;stdlib.h&amp;gt;&lt;/P&gt;&lt;P&gt;#define PHY_ADDR 0x00100000&lt;/P&gt;&lt;P&gt;int main()&lt;BR /&gt; {&lt;BR /&gt; int i;&lt;BR /&gt; int j = 0;&lt;BR /&gt; unsigned int *addr;&lt;/P&gt;&lt;P&gt;int fd = open( "/dev/mem", O_RDWR | O_SYNC );&lt;BR /&gt; if( fd &amp;lt; 0 )&lt;BR /&gt; {&lt;BR /&gt; perror( "Error opening file /dev/mem" );&lt;BR /&gt; return 1;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;addr = (unsigned int *) mmap( 0, getpagesize(), PROT_READ | PROT_WRITE, MAP_SHARED, fd, PHY_ADDR );&lt;BR /&gt; if( addr == NULL )&lt;BR /&gt; {&lt;BR /&gt; perror( "Error mapping" );&lt;BR /&gt; return 1;&lt;BR /&gt; }&lt;BR /&gt; for( i = 0; i &amp;lt; 1024; i++,j++ )&lt;BR /&gt; {&lt;BR /&gt; //*(addr + i) = j;&lt;BR /&gt; printf( "addr: %X\tval: %X\n", addr + i, *( addr + i ) );&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;if( munmap( addr, getpagesize() ) == -1 )&lt;BR /&gt; {&lt;BR /&gt; perror( "Error unmaping" );&lt;BR /&gt; return 1;&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to write in secure ram of caam, it happened. but when i restarted the board it didnt boot. there comes nothing on the terminal. I checked the secure ram address from imx6ul evk reference manual. Can someone please tell me what should i do about it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jan 2017 13:17:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX6UL-stopped-booting/m-p/655591#M100456</guid>
      <dc:creator>naveenmenaria</dc:creator>
      <dc:date>2017-01-30T13:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: IMX6UL stopped booting.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX6UL-stopped-booting/m-p/655592#M100457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sorry, but, we cannot discuss this with you in public anyway, this requires to be handled&lt;/P&gt;&lt;P&gt;as a Service Request (SR).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/docs/DOC-329745"&gt;https://community.nxp.com/docs/DOC-329745&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Yuri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jan 2017 09:41:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX6UL-stopped-booting/m-p/655592#M100457</guid>
      <dc:creator>Yuri</dc:creator>
      <dc:date>2017-01-31T09:41:33Z</dc:date>
    </item>
  </channel>
</rss>

