<?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: Verifying IVT data in memory on i.MX6 using memory dump in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264843#M27367</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The ROM tries to authenticate your u-boot, so prior the bootm command, the event you are seeing must come from this authentication. It means your u-boot isn't signed correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually you can implement an authentication in other command than bootm, I have successfully authenticate an other OS which uses the "go" command instead of "bootm".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover, if you look in the code of authenticate_image, you can see it tests if the imx6 is in closed state&amp;nbsp; :&lt;/P&gt;&lt;P&gt;if (check_hab_enable() == 1)&lt;/P&gt;&lt;P&gt;You have to modify it and recompile your u-boot to bypass this test if you want to authenticate your uImage and your imx6 is still in open configuration.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Jun 2013 08:11:44 GMT</pubDate>
    <dc:creator>AlbertT</dc:creator>
    <dc:date>2013-06-10T08:11:44Z</dc:date>
    <item>
      <title>Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264834#M27358</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'm trying to get a signed u-boot image authenticated on i.MX6. I want to verify that the IVT struct in memory holds the correct pointers.&lt;/P&gt;&lt;P&gt;On the u-boot-signed.bin I can see the following on offset 0x400:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0x00000400: D1002040 20088027 00000000 2C048027&lt;/P&gt;&lt;P&gt;0x00000410: 20048027 00048027 00308327 00000000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to freescale's HABv4 docs, the IVT looks like this:&lt;/P&gt;&lt;P&gt;typedef struct&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint32_t header;&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint32_t *entry;&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint32_t reserved1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint32_t *dcd;&lt;/P&gt;&lt;P&gt;&amp;nbsp; boot_data_t *boot_data;&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint32_t *self;&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint32_t *csf;&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint32_t reserved2;&lt;/P&gt;&lt;P&gt;} image_vector_table_t;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value corresponding the (uint32_t *) self field in the table is&amp;nbsp; 0x27800400.&lt;/P&gt;&lt;P&gt;I expect to find the IVT table at that address, however memory dump command from u-boot shows zeros:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U-Boot &amp;gt; md 0x278003f0 0xc&lt;/P&gt;&lt;P&gt;278003f0: 00000000 00000000 00000000 00000000&amp;nbsp; &lt;/P&gt;&lt;P&gt;27800400: 00000000 00000000 00000000 00000000&amp;nbsp; &lt;/P&gt;&lt;P&gt;27800410: 00000000 00000000 00000000 00000000&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 May 2013 06:30:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264834#M27358</guid>
      <dc:creator>MickeyI</dc:creator>
      <dc:date>2013-05-30T06:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264835#M27359</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;The value 0x27800400 is the self pointer of the IVT in DDR, that means when your whole signed u-boot will be transfered in DDR by the ROM, the IVT will be placed at 0x27800400.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can see the IVT at 0x400 of your binary, then it's ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Little tip, you can enable #DEBUG_AUTHENTICATE_IMAGE that will display more information when your uImage will be authenticated by the ROM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 May 2013 12:26:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264835#M27359</guid>
      <dc:creator>AlbertT</dc:creator>
      <dc:date>2013-05-30T12:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264836#M27360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't find the &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;DEBUG_AUTHENTICATE_IMAGE&lt;/SPAN&gt; ifdef's in the u-boot src (2009.08).&lt;/P&gt;&lt;P&gt;Are you using a special patch?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Jun 2013 07:50:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264836#M27360</guid>
      <dc:creator>MickeyI</dc:creator>
      <dc:date>2013-06-03T07:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264837#M27361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to define it, just like CONFIG_SECURE_BOOT, for instance in include/configs/&amp;lt;your_board&amp;gt;.h &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Jun 2013 08:38:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264837#M27361</guid>
      <dc:creator>AlbertT</dc:creator>
      <dc:date>2013-06-03T08:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264838#M27362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see CONFIG_SECURE_BOOT ifdefs in the code, but I don't see any ifdefs of &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;DEBUG_AUTHENTICATE_IMAGE&lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Jun 2013 10:27:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264838#M27362</guid>
      <dc:creator>MickeyI</dc:creator>
      <dc:date>2013-06-03T10:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264839#M27363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;Yes, it's because it's the ROM which uses it.&lt;/SPAN&gt; Actually I never tried to look for it in the u-boot code, but I know it works !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT : after 10 sec of reflexion it seemed obvious to me that it wasn't used by the ROM, I looked in the code and you can see your flag used in cpu/arm_cortexa8/mx6/generic.c&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Jun 2013 11:10:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264839#M27363</guid>
      <dc:creator>AlbertT</dc:creator>
      <dc:date>2013-06-03T11:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264840#M27364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't see it, please post a piece of code between that ifdef, I want to make sense out of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, still on the IVT subject - this is what the HAB user guide says (Rev L3.0.35_4.0.0, 05/2013):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ROM code copies U-Boot to DDR location 0x27800000, which is added with 0x400 (the initiated blank area size in U-&lt;/P&gt;&lt;P&gt;Boot image) to form the authenticated start address 0x27800400. 0x400 and 0x2EC00 is the start address and the length&lt;/P&gt;&lt;P&gt;of data to be authenticated in the binary file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone who successfully implemented secure boot on the i.MX6 check and see if they can see the IVT at address 0x27800400? &lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Jun 2013 15:03:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264840#M27364</guid>
      <dc:creator>MickeyI</dc:creator>
      <dc:date>2013-06-09T15:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264841#M27365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here you can find enclosed the function authenticate_image of the file generic.c which I told you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And for you second question, I do, I can my IVT dumped by authenticate_image at 0x27800000.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 06:48:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264841#M27365</guid>
      <dc:creator>AlbertT</dc:creator>
      <dc:date>2013-06-10T06:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264842#M27366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the code! I don't know why it doesn't appear in the u-boot I'm using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I'm missing something about how the u-boot/HAB flow works. The code you sent me appears in the authenticate_image() function. Running grep on every u-boot source code for 'authenticate_image' shows that it is called only from inside cmd_bootm.c, which means that 'bootm' command must be invoked to enable 'authenticate_image'&amp;nbsp; code to run.&lt;/P&gt;&lt;P&gt;However, when I stop the u-boot flow and run 'hab_status' command in the u-boot prompt prior to running 'bootm' I already see a dirty HAB event log. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where did those events come from? What made the HAB go to non-secure state?&lt;/P&gt;&lt;P&gt;If you stop at the u-boot prompt do you see a clean HAB event log?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 07:59:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264842#M27366</guid>
      <dc:creator>MickeyI</dc:creator>
      <dc:date>2013-06-10T07:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264843#M27367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The ROM tries to authenticate your u-boot, so prior the bootm command, the event you are seeing must come from this authentication. It means your u-boot isn't signed correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually you can implement an authentication in other command than bootm, I have successfully authenticate an other OS which uses the "go" command instead of "bootm".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover, if you look in the code of authenticate_image, you can see it tests if the imx6 is in closed state&amp;nbsp; :&lt;/P&gt;&lt;P&gt;if (check_hab_enable() == 1)&lt;/P&gt;&lt;P&gt;You have to modify it and recompile your u-boot to bypass this test if you want to authenticate your uImage and your imx6 is still in open configuration.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 08:11:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264843#M27367</guid>
      <dc:creator>AlbertT</dc:creator>
      <dc:date>2013-06-10T08:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264844#M27368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any ideas how can this be debugged? a question I posted didn't get any replies yet (&lt;A _jive_internal="true" href="https://community.nxp.com/thread/308173"&gt;https://community.freescale.com/thread/308173&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just want to be clear on one fact, sorry if this is the same question rephrased:&lt;/P&gt;&lt;P&gt;Do you see the IVT at address of 0x27800400 if you do memory dump from u-boot? Can you see non zero values at that address if you stop the u-boot flow, and at the command prompt invoke 'md 0x27800400'?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 08:56:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264844#M27368</guid>
      <dc:creator>MickeyI</dc:creator>
      <dc:date>2013-06-10T08:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264845#M27369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to understand that 0x27800000 is the address of the IVT &lt;SPAN style="text-decoration: underline;"&gt;in DDR, &lt;/SPAN&gt;if you want to check the IVT in your u-boot.bin you have to look at the 0x400 of your binary.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 12:33:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264845#M27369</guid>
      <dc:creator>AlbertT</dc:creator>
      <dc:date>2013-06-10T12:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264846#M27370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understand the differences between those two, I suspect that the IVT isn't being copied and this may be causing the signature failures. In the CSF file I ask the HAB to verify the data between the address of (DDR): 0x27800400 --&amp;gt; 0x27833000:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Authenticate Data]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Verification index = 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Engine = ANY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Blocks = 0x27800400 0x400 0x32C00 "/path/to/u-boot/u-boot-pad.bin"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The range includes the IVT for the signed hash to protect it from being modified. If the data in 0x27800400 doesn't match the data that the encrypted hash was calculated on, there will be a diff in the results. &lt;/P&gt;&lt;P&gt;Address 0x400 on the device contains valid IVT, but what I see on address 0x27800400 using memory dump command contains all zeros where the IVT should be. &lt;/P&gt;&lt;P&gt;To understand if that's the reason I see dirty HAB events log I need to know if a clean HAB events log is possible while a memory dump on 0x27800400 shows only zeros.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="IVT_centered.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/119430iC3013D3ADFEB183A/image-size/large?v=v2&amp;amp;px=999" role="button" title="IVT_centered.png" alt="IVT_centered.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 08:55:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264846#M27370</guid>
      <dc:creator>MickeyI</dc:creator>
      <dc:date>2013-06-11T08:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264847#M27371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure your ivt is at the right place in your u-boot-signed-pad.bin :&lt;/P&gt;&lt;P&gt;xxd -l 20 -s 0x400 u-boot-signed-pad.bin&lt;/P&gt;&lt;P&gt;If you see "d100 2040 ..." that's ok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 14:45:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264847#M27371</guid>
      <dc:creator>AlbertT</dc:creator>
      <dc:date>2013-06-11T14:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264848#M27372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's what I started with, I see valid IVT in the boot device.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AlbertT, what's your answer to the memory dump? If you stop u-boot and do: 'md 0x27800400', what do you see?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 12:09:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264848#M27372</guid>
      <dc:creator>MickeyI</dc:creator>
      <dc:date>2013-06-12T12:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264849#M27373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Mickey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i verified the uboot image generation process according to High_Assurance_Boot_L3.0.35_1.1.0.pdf packed in i.MX6Q 3.0.5_1.1.0_121218 release. The generated u-boot-signed-pad.bin is matched the anticipation as following:&lt;/P&gt;&lt;P&gt;000400: d1 00 20 40 e0 06 80 27 00 00 00 00 2c 04 80 27&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;I attached my u-boot.cst and habimagegen.sh file that you can reference. Pls note : The doc is based on old u-boot code. For example, the size of u-boot.bin is &amp;lt;=0x28000. But the actual generated u-boot size is 0x69817. You can see the size in u-boot.map as attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Alan Zhang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2013 09:03:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264849#M27373</guid>
      <dc:creator>AlanZhang</dc:creator>
      <dc:date>2013-06-14T09:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Verifying IVT data in memory on i.MX6 using memory dump</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264850#M27374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I downloaded the IMX6HABUG document (Rev L3.0.35_4.0.0, 05/2013), and retried the whole process on a new i.MX6 chip, so that the fuses are burned again. I have a clean HAB event log. My guess is something probably went wrong with burning the fuses the on the previous chip.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 08:11:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Verifying-IVT-data-in-memory-on-i-MX6-using-memory-dump/m-p/264850#M27374</guid>
      <dc:creator>MickeyI</dc:creator>
      <dc:date>2013-06-17T08:11:03Z</dc:date>
    </item>
  </channel>
</rss>

