<?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: EepromAccessTool for i226 in Embedded Connectivity</title>
    <link>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1593916#M5339</link>
    <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/215243"&gt;@dannyL&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See the attached patch that we used.&lt;/P&gt;&lt;P&gt;In addition, our controller was on PCI domain 1, so we needed this change:&lt;/P&gt;&lt;LI-CODE lang="none"&gt;--- a/PciEeprom.c
+++ b/PciEeprom.c
@@ -422,7 +422,7 @@ void CheckCommand(u16 LocationUnparsed)
 
 	// open the file that lists the devices connected to the PCI bus
 	// some systems may have it in a different place, so check both
-	if(snprintf(temp, (size_t) sizeof(temp), "%s/0000:%.2x/%.2x.%x", DEVICE_LOCATION,bus,device, function) == sizeof(temp))
+	if(snprintf(temp, (size_t) sizeof(temp), "%s/0001:%.2x/%.2x.%x", DEVICE_LOCATION,bus,device, function) == sizeof(temp))
 	{
 		printf("Check Command error %s\n",temp);
 	}
-- &lt;/LI-CODE&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;</description>
    <pubDate>Tue, 30 Apr 2024 16:06:19 GMT</pubDate>
    <dc:creator>VideonAndy</dc:creator>
    <dc:date>2024-04-30T16:06:19Z</dc:date>
    <item>
      <title>EepromAccessTool for i226</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1573632#M5185</link>
      <description>&lt;P&gt;We are using the i226-LM for an embedded application with an ARM processor. We need to program the external flash. The latest EepromAccessTool (572162-eepromaccesstool-0.8.0.zip) does not include support for the i226. Is there a newer version or different tool that does?&lt;/P&gt;&lt;P&gt;I tried adding the i226 device IDs at the same places as the i225 device IDs, but got an error: "Enable Serial Flash Bit Interface timed out." when trying to dump from a NIC that was already programmed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Andy&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 19:17:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1573632#M5185</guid>
      <dc:creator>VideonAndy</dc:creator>
      <dc:date>2024-02-19T19:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: EepromAccessTool for i226</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1574989#M5194</link>
      <description>&lt;P class="sub_section_element_selectors"&gt;Hello&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/313092"&gt;@VideonAndy&lt;/a&gt;,&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Thank you for contacting Intel Embedded Community.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;I looked internally and it seems that recompiling&amp;nbsp;the tool by adding the device IDs from the datasheet may help to program the MAC address. You can check section&amp;nbsp;5.1.1.8 Device ID - 0x000D.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;A href="https://cdrdv2.intel.com/v1/dl/getContent/596659" target="_blank"&gt;https://cdrdv2.intel.com/v1/dl/getContent/596659&lt;/A&gt;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;SPAN class="sub_section_element_selectors"&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;A class="sub_section_element_selectors" href="https://community.intel.com/t5/user/viewprofilepage/user-id/266977?emcs_t=S2h8ZW1haWx8dG9waWNfc3Vic2NyaXB0aW9ufExTMk1CQTVSRlpOQUtOfDE1NjgxNTR8U1VCU0NSSVBUSU9OU3xoSw" target="_blank" rel="noopener"&gt;@Diego_INTEL&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Feb 2024 04:57:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1574989#M5194</guid>
      <dc:creator>Diego_INTEL</dc:creator>
      <dc:date>2024-02-24T04:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: EepromAccessTool for i226</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1575423#M5196</link>
      <description>&lt;P&gt;We were able to get the tool working by adding the i226 device IDs. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 14:12:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1575423#M5196</guid>
      <dc:creator>VideonAndy</dc:creator>
      <dc:date>2024-02-26T14:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: EepromAccessTool for i226</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1593889#M5338</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/313092"&gt;@VideonAndy&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the same issue, would you be willing to share the modifications you made to add support for I226 in detail?&lt;/P&gt;&lt;P&gt;E.g. a patch showing which additions have to be made to which files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Danny&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 14:36:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1593889#M5338</guid>
      <dc:creator>dannyL</dc:creator>
      <dc:date>2024-04-30T14:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: EepromAccessTool for i226</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1593916#M5339</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/215243"&gt;@dannyL&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See the attached patch that we used.&lt;/P&gt;&lt;P&gt;In addition, our controller was on PCI domain 1, so we needed this change:&lt;/P&gt;&lt;LI-CODE lang="none"&gt;--- a/PciEeprom.c
+++ b/PciEeprom.c
@@ -422,7 +422,7 @@ void CheckCommand(u16 LocationUnparsed)
 
 	// open the file that lists the devices connected to the PCI bus
 	// some systems may have it in a different place, so check both
-	if(snprintf(temp, (size_t) sizeof(temp), "%s/0000:%.2x/%.2x.%x", DEVICE_LOCATION,bus,device, function) == sizeof(temp))
+	if(snprintf(temp, (size_t) sizeof(temp), "%s/0001:%.2x/%.2x.%x", DEVICE_LOCATION,bus,device, function) == sizeof(temp))
 	{
 		printf("Check Command error %s\n",temp);
 	}
-- &lt;/LI-CODE&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 16:06:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1593916#M5339</guid>
      <dc:creator>VideonAndy</dc:creator>
      <dc:date>2024-04-30T16:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: EepromAccessTool for i226</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1594668#M5349</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/313092"&gt;@VideonAndy&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for sharing the patch, the EAT is now able to recognize the I226 NIC.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Danny&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 06:34:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1594668#M5349</guid>
      <dc:creator>dannyL</dc:creator>
      <dc:date>2024-05-03T06:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: EepromAccessTool for i226</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1677612#M5709</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/266977"&gt;@Diego_INTEL&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry to comment on this old thread, however,&amp;nbsp;I am trying to download the patch provided by &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/313092"&gt;@VideonAndy&lt;/a&gt;. For some reason, it seems the download link is disabled due to an ongoing virus scan (see screenshot). I have already tried with two different browsers, but the issue seems persistent.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you help me to download that patch?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Christoph&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cbae_0-1742893504699.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/64115iDE54FEF1C6416618/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="cbae_0-1742893504699.png" alt="cbae_0-1742893504699.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 09:06:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1677612#M5709</guid>
      <dc:creator>cbae</dc:creator>
      <dc:date>2025-03-25T09:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: EepromAccessTool for i226</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1677730#M5710</link>
      <description>&lt;P class="sub_section_element_selectors"&gt;Hello&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/418586"&gt;@cbae&lt;/a&gt;,&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Thank you for contacting Intel Embedded Community.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Yes, I have the same result but I have it in my downloads folder from before, I will share it, I think this post from Andy is very useful.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;SPAN class="sub_section_element_selectors"&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;A class="sub_section_element_selectors" href="https://community.intel.com/t5/user/viewprofilepage/user-id/266977?emcs_t=S2h8ZW1haWx8dG9waWNfc3Vic2NyaXB0aW9ufExTMk1CQTVSRlpOQUtOfDE1NjgxNTR8U1VCU0NSSVBUSU9OU3xoSw" target="_blank" rel="noopener"&gt;@Diego_INTEL&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 19:02:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1677730#M5710</guid>
      <dc:creator>Diego_INTEL</dc:creator>
      <dc:date>2025-03-25T19:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: EepromAccessTool for i226</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1677743#M5711</link>
      <description>&lt;P class="sub_section_element_selectors"&gt;Hello&amp;nbsp;&lt;A class="sub_section_element_selectors" href="https://community.intel.com/t5/user/viewprofilepage/user-id/418586" target="_blank" rel="noopener"&gt;@cbae&lt;/A&gt;,&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;It seems the "Virus scan in progress ..." may be due to some recent change in the virus scanner, I have shared the file to your registered email address.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;SPAN class="sub_section_element_selectors"&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;A class="sub_section_element_selectors" href="https://community.intel.com/t5/user/viewprofilepage/user-id/266977?emcs_t=S2h8ZW1haWx8dG9waWNfc3Vic2NyaXB0aW9ufExTMk1CQTVSRlpOQUtOfDE1NjgxNTR8U1VCU0NSSVBUSU9OU3xoSw" target="_blank" rel="noopener"&gt;@Diego_INTEL&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 19:29:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1677743#M5711</guid>
      <dc:creator>Diego_INTEL</dc:creator>
      <dc:date>2025-03-25T19:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: EepromAccessTool for i226</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1677958#M5712</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/266977"&gt;@Diego_INTEL&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;perfect, many thanks for your quick support! And thanks&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/313092"&gt;@VideonAndy&lt;/a&gt;&amp;nbsp;for sharing this useful patch.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Christoph&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 07:58:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/EepromAccessTool-for-i226/m-p/1677958#M5712</guid>
      <dc:creator>cbae</dc:creator>
      <dc:date>2025-03-26T07:58:12Z</dc:date>
    </item>
  </channel>
</rss>

