<?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: How to define reserved memory in device tree? in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/How-to-define-reserved-memory-in-device-tree/m-p/820717#M126352</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You do not need to change original files.&lt;BR /&gt;You need to go to your build directory in &amp;lt;kernel_source&amp;gt;/arch/arm/boot/dts and find all the dtb sources (.dts and .dtsi).&lt;BR /&gt;Here you can place your new .dts file like myfile.dts and make your new .dtb with following commands:&lt;BR /&gt; &lt;BR /&gt;# cd &amp;lt;Kernel_source&amp;gt;&lt;BR /&gt;# make myfile.dtb&lt;BR /&gt; &lt;BR /&gt;So you get your dtb file in &amp;lt;kernel_source&amp;gt;/arch/arm/boot/dts/myfile.dtb file&lt;BR /&gt; &lt;BR /&gt;Or you can use the dtc directly:&lt;BR /&gt; &lt;BR /&gt;# cd &amp;lt;Kernel_source&amp;gt;/scripts/dtc&lt;BR /&gt;# dtc -I dts -O dtb -o &amp;lt;output_folder&amp;gt;/myfile.dtb ../../arch/arm/boot/dts/myfile.dts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Victor&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;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Aug 2018 06:26:48 GMT</pubDate>
    <dc:creator>b36401</dc:creator>
    <dc:date>2018-08-24T06:26:48Z</dc:date>
    <item>
      <title>How to define reserved memory in device tree?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-define-reserved-memory-in-device-tree/m-p/820716#M126351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using iMX8MQ evk. I found that in file fsl-imx8mq-evk-m4.dts has some declaration for reserved memory that is used for Cortex M4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;reserved-memory {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;#address-cells = &amp;lt;2&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;#size-cells = &amp;lt;2&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;ranges;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;m4_reserved: m4@0x80000000 {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;no-map;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;reg = &amp;lt;0 0x80000000 0 0x1000000&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;};&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;What does &lt;SPAN style="background-color: #f6f6f6;"&gt;reg = &amp;lt;0 0x80000000 0 0x1000000&amp;gt;&lt;/SPAN&gt;&amp;nbsp;mean?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2018 01:23:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-define-reserved-memory-in-device-tree/m-p/820716#M126351</guid>
      <dc:creator>trongthinh</dc:creator>
      <dc:date>2018-08-24T01:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to define reserved memory in device tree?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-define-reserved-memory-in-device-tree/m-p/820717#M126352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You do not need to change original files.&lt;BR /&gt;You need to go to your build directory in &amp;lt;kernel_source&amp;gt;/arch/arm/boot/dts and find all the dtb sources (.dts and .dtsi).&lt;BR /&gt;Here you can place your new .dts file like myfile.dts and make your new .dtb with following commands:&lt;BR /&gt; &lt;BR /&gt;# cd &amp;lt;Kernel_source&amp;gt;&lt;BR /&gt;# make myfile.dtb&lt;BR /&gt; &lt;BR /&gt;So you get your dtb file in &amp;lt;kernel_source&amp;gt;/arch/arm/boot/dts/myfile.dtb file&lt;BR /&gt; &lt;BR /&gt;Or you can use the dtc directly:&lt;BR /&gt; &lt;BR /&gt;# cd &amp;lt;Kernel_source&amp;gt;/scripts/dtc&lt;BR /&gt;# dtc -I dts -O dtb -o &amp;lt;output_folder&amp;gt;/myfile.dtb ../../arch/arm/boot/dts/myfile.dts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Victor&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;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2018 06:26:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-define-reserved-memory-in-device-tree/m-p/820717#M126352</guid>
      <dc:creator>b36401</dc:creator>
      <dc:date>2018-08-24T06:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to define reserved memory in device tree?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-define-reserved-memory-in-device-tree/m-p/820718#M126353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank for your hint. My question is "&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;What does&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; background-color: #f6f6f6; border: 0px; font-size: 14px;"&gt;reg = &amp;lt;0 0x80000000 0 0x1000000&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp;mean?"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Does it mean reserved-mem is 16MB and begins from address 0x80000000?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2018 06:46:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-define-reserved-memory-in-device-tree/m-p/820718#M126353</guid>
      <dc:creator>trongthinh</dc:creator>
      <dc:date>2018-08-24T06:46:08Z</dc:date>
    </item>
  </channel>
</rss>

