<?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: UART and COM port problem in Embedded Connectivity</title>
    <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189945#M139</link>
    <description>&lt;P&gt;Hello AntejaVM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to this document (# 545879):&lt;B&gt; Intel® Atom™ Processor E3800 Product Family Intel® Celeron® Processor N2807 Intel® Celeron® Processor J1900 Microsoft Windows* 8 (Win8, WES8) &lt;/B&gt;&lt;B&gt;32-bit &amp;amp; 64-bit I/O Drivers Programming Guide&lt;/B&gt; &lt;B&gt;chapter 4 UART Driver &lt;/B&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;The UART driver in Win8 uses the framework of Microsoft called Serial Framework Extension (SerCx). To use UART controller, there must be a sub-device mounted under the specific UART controller. A user mode application can open this sub-device by using its symbolic name or GUID, and send IOCTLs or requests to it. Then only this sub-device can open parent target (UART controller) and forward IOCTLs or requests to SerCx framework, thus to UART controller driver.&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&amp;nbsp;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Refer to the following for Microsoft framework:&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/windows/hardware/dn265348%28v=vs.85%29.aspx"&gt;http://msdn.microsoft.com/en-us/library/windows/hardware/dn265348%28v=vs.85%29.aspx&lt;/A&gt; &lt;A href="http://msdn.microsoft.com/en-us/library/windows/hardware/dn265348%28v=vs.85%29.aspx"&gt;http://msdn.microsoft.com/en-us/library/windows/hardware/dn265348%28v=vs.85%29.aspx&lt;/A&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;And the description of supported IOCTLs is here:&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/windows/hardware/ff547466"&gt;http://msdn.microsoft.com/en-us/library/windows/hardware/ff547466&lt;/A&gt;(v=vs.85).aspx &lt;A href="http://msdn.microsoft.com/en-us/library/windows/hardware/ff547466"&gt;http://msdn.microsoft.com/en-us/library/windows/hardware/ff547466&lt;/A&gt;(v=vs.85).aspx&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;There are no sample codes of the sub-device provided by Microsoft, but it's quite similar to the&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;SPB or GPIO interface.&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&amp;nbsp;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, if you have any other question please let us know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jimmy.&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jun 2015 21:57:30 GMT</pubDate>
    <dc:creator>idata</dc:creator>
    <dc:date>2015-06-24T21:57:30Z</dc:date>
    <item>
      <title>UART and COM port problem</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189943#M137</link>
      <description>&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On MinnowMax I work  on Windows 8.1 with UART. In BIOS Setup I enable UART.   In  LSS &amp;amp; SCC Configuration menu in BIOS Setup I enable : LSS HSUART # 1 Support  , LSS HSUART # 1 FlowCtrl  , LSS HSUART # 2 Support  , and LSS HSUART # 2 FlowCtrl .  But I don't know if I need to in BIOS Setup in Miscellaneous configuration  set  UART interface on  Super IO UART, for now I set  Internal UART for UART interface. I install Intel driver ( &lt;A href="https://downloadcenter.intel.com/download/24228/Intel-embedded-drivers-for-Windows-8-1-32-bit-"&gt;https://downloadcenter.intel.com/download/24228/Intel-embedded-drivers-for-Windows-8-1-32-bit-&lt;/A&gt; &lt;A href="https://downloadcenter.intel.com/download/24228/Intel-embedded-drivers-for-Windows-8-1-32-bit-"&gt;https://downloadcenter.intel.com/download/24228/Intel-embedded-drivers-for-Windows-8-1-32-bit-&lt;/A&gt; ) and I got two UART controllers. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Problem :  &lt;/P&gt;&lt;P&gt;  Problem is that I have only one COM port ( COM1)  and it is for debugging.  I looking in inf (iaiouart.inf ) file of driver for which device is , and I find APCI/INT33BC device.  The COM1 is device APCI/PNP0501 .   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I need to do to get COM 2 device ?  I saw  BaseSerialPortLib 16550 module in  MdeModulePkg/Library for what it is this module.  Need I add some module for UART or Serial port in fdf (PlatformPkg.fdf ) file to get COM2 device, or add  COM2  in ACPI_table? Where I can find ACPI_table in source of firmware?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Anteja</description>
      <pubDate>Wed, 24 Jun 2015 08:22:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189943#M137</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2015-06-24T08:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: UART and COM port problem</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189944#M138</link>
      <description>&lt;P&gt;Hello Anteja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Welcome back to the Intel Embedded community.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We're working on your case and will post an update as soon as possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jimmy.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2015 16:47:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189944#M138</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2015-06-24T16:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: UART and COM port problem</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189945#M139</link>
      <description>&lt;P&gt;Hello AntejaVM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to this document (# 545879):&lt;B&gt; Intel® Atom™ Processor E3800 Product Family Intel® Celeron® Processor N2807 Intel® Celeron® Processor J1900 Microsoft Windows* 8 (Win8, WES8) &lt;/B&gt;&lt;B&gt;32-bit &amp;amp; 64-bit I/O Drivers Programming Guide&lt;/B&gt; &lt;B&gt;chapter 4 UART Driver &lt;/B&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;The UART driver in Win8 uses the framework of Microsoft called Serial Framework Extension (SerCx). To use UART controller, there must be a sub-device mounted under the specific UART controller. A user mode application can open this sub-device by using its symbolic name or GUID, and send IOCTLs or requests to it. Then only this sub-device can open parent target (UART controller) and forward IOCTLs or requests to SerCx framework, thus to UART controller driver.&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&amp;nbsp;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Refer to the following for Microsoft framework:&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/windows/hardware/dn265348%28v=vs.85%29.aspx"&gt;http://msdn.microsoft.com/en-us/library/windows/hardware/dn265348%28v=vs.85%29.aspx&lt;/A&gt; &lt;A href="http://msdn.microsoft.com/en-us/library/windows/hardware/dn265348%28v=vs.85%29.aspx"&gt;http://msdn.microsoft.com/en-us/library/windows/hardware/dn265348%28v=vs.85%29.aspx&lt;/A&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;And the description of supported IOCTLs is here:&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/windows/hardware/ff547466"&gt;http://msdn.microsoft.com/en-us/library/windows/hardware/ff547466&lt;/A&gt;(v=vs.85).aspx &lt;A href="http://msdn.microsoft.com/en-us/library/windows/hardware/ff547466"&gt;http://msdn.microsoft.com/en-us/library/windows/hardware/ff547466&lt;/A&gt;(v=vs.85).aspx&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;There are no sample codes of the sub-device provided by Microsoft, but it's quite similar to the&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;SPB or GPIO interface.&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&amp;nbsp;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, if you have any other question please let us know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jimmy.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2015 21:57:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189945#M139</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2015-06-24T21:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: UART and COM port problem</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189946#M140</link>
      <description>&lt;P&gt; Anteja,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;As far as I understand we have 2 UARTs but only one follows legacy COM-interface and the other one does not so Windows inbox driver serial.sys does not work with it so you only have one COM port.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;(Basically COMx is just a symbolic link serial.sys creates to point to its device object, so if it does not service a device like in the case of the second HSUART, then it is not a COM-port).  If you need to use COM-port and have ability to debug, I'd suggest to use Ethernet for debugging and free up COM1 for your other needs.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Ivan Rouzanov.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2015 16:22:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189946#M140</guid>
      <dc:creator>Ivan_R_Intel</dc:creator>
      <dc:date>2015-06-25T16:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: UART and COM port problem</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189947#M141</link>
      <description>&lt;P&gt;Hi Anteja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The high speed UARTs can be setup to work as the legacy UARTs through SMM emulation. However, the ACPI code tells me that this is not the case in your system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ACPI code only reflects two UARTs and the debug UARTs are expected to be disabled at the OS level. If you turn off the debug UART, your two high speed UARTs may turn up in the ACPI code. That in turn, may load the drivers for the high speed UARTs instead of the legacy UART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B-O&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2015 06:42:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189947#M141</guid>
      <dc:creator>BBerg7</dc:creator>
      <dc:date>2015-06-26T06:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: UART and COM port problem</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189948#M142</link>
      <description>&lt;P&gt;Hi Berth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your input!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2015 18:44:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189948#M142</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2015-06-26T18:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: UART and COM port problem</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189949#M143</link>
      <description>&lt;P&gt;Hello Jimmy, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;I know for that solution, but I want somehow add in APCI_table ( in &lt;A href="http://firmware.intel.com/projects/minnowboard-max"&gt;http://firmware.intel.com/projects/minnowboard-max&lt;/A&gt;  original firmware for MinnowMax  board ) COM2  device or enable it if is possible. &lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Anteja.</description>
      <pubDate>Mon, 29 Jun 2015 06:02:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189949#M143</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2015-06-29T06:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: UART and COM port problem</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189950#M144</link>
      <description>&lt;P&gt;Hello B-O, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for  solution. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Could you tell me more about setup legacy UARTs through SMM emulation and which ACPI code tells you that is not case in my system ?  &lt;P&gt;&amp;nbsp;&lt;/P&gt;Could you elaborate how disable debug UART at the OS level ?  &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Anteja</description>
      <pubDate>Mon, 29 Jun 2015 06:19:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189950#M144</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2015-06-29T06:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: UART and COM port problem</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189951#M145</link>
      <description>&lt;P&gt;Hello Anteja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The COM1 device ACPI _HID is PNP0501 indicating it's a legacy UART. The COM2 device ACPI _HID is INT33BC indicating it's not a legacy UART. If the high speed UARTs are emulated, then they would also have the PNP0501 ACPI _HID value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The debug UART should normally be disabled by the BIOS. The decoding and IRQ can be disabled by LPC registers. The normal GPIO functionality of the pins used by UART RX/TX should also be restored to make a clean disable of the debug UART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The easiest is disable the debug UART in the BIOS. If you want to do it from the OS I advice you to read the BWG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B-O&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2015 10:40:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189951#M145</guid>
      <dc:creator>BBerg7</dc:creator>
      <dc:date>2015-06-29T10:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: UART and COM port problem</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189952#M146</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with IOCTL, but problem was I couldn't  open driver file with CreateFile method because I couldn't find path ( something like this   &lt;A&gt;\\\\.\\PCI#&lt;/A&gt; VEN_8086&amp;amp;DEV_0F0E&amp;amp;SUBSYS_72708086&amp;amp;REV_0C# 3&amp;amp;11583659&amp;amp;0&amp;amp;F5# {badc33d6-be37-4372-b90e-bbf2d986b0eb}  ). For UART I have iaiouart.sys driver and I want to know if this driver return SerCx framework. I find for Windows 8 UART driver ( uart16550pc.sys ), but  I don't know if I need some kind of bridge driver between two drivers.     &lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2015 10:45:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189952#M146</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2015-07-01T10:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: UART and COM port problem</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189953#M147</link>
      <description>&lt;P&gt;Hi Anteja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We'll keep working on this case,and as soon as we have more information we'll write back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jimmy.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2015 17:01:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189953#M147</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2015-07-01T17:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: UART and COM port problem</title>
      <link>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189954#M148</link>
      <description>&lt;P&gt;Hello AntejaVM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding the Microsoft framework, the best would be to post it in the Microsoft software developers forum:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;A href="https://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/home?forum=wdk"&gt;https://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/home?forum=wdk&lt;/A&gt; &lt;A href="https://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/home?forum=wdk"&gt;https://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/home?forum=wdk&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since we don't troubleshoot nor support third party software.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jimmy.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2015 20:22:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Connectivity/UART-and-COM-port-problem/m-p/189954#M148</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2015-07-03T20:22:13Z</dc:date>
    </item>
  </channel>
</rss>

