Link Electrosystems Port Devices Driver



  1. Link Electro Systems Port Devices Driver Login
  2. Link Electro Systems Port Devices Drivers

Link ElectroSystems USB ECU (COM4): Drivers List 1 drivers are found for ‘Link ElectroSystems USB ECU (COM4)’. To download the needed driver, select it from the list below and click at ‘Download’ button. Please, ensure that the driver version totally corresponds to your OS requirements in order to provide for its operational accuracy. Click on the 'Device Manager' selection on the left. Select 'Universal Serial Bus controllers' then double click on the Intel USB 3.0 eXtensible Host Controller device or Intel USB 3.0 Root Hub device. Click on 'Driver' tab and note the driver version. UNINSTALLING: - NOTE: This procedure assumes the above installation process was successful. So i installed like 1 thousand times drivers from silabs. But pc still doesnt see it and board still flashing. So i try to change my usb wire to another one, and pc recognized it)) So if yr pc doesnt see com port try ty change the wire' Some of ports work for flashing an some do not. The ones that don't will power a device and copy files from. However, there are many peoples said they can’t find ports in Device Manager and they desperately need a solution to it. COM Ports Not Showing in Device Manager: Ture Cases. One: Com Port is Missing / Ports Option Not Available In Device Manager. My com port is missing. And the ports option is not available in Device Manager. Unextract the file into any folder. Then while your cable is connected to the computer — go Device Manager. Windows Vista/7/8/10: Control Panel » System » Device Manager; Windows XP: Control Panel » System » 'Hardware' tab » Device Manager; You'll see a device similar to 'USB Serial Port' under either 'Other devices' or 'Ports (COM & LPT)'.

Author:Alan Stern <stern@rowland.harvard.edu>
Date:Last-updated: February 2014

What is Power Management?¶

Power Management (PM) is the practice of saving energy by suspendingparts of a computer system when they aren’t being used. While acomponent is suspended it is in a nonfunctional low-power state; itmight even be turned off completely. A suspended component can beresumed (returned to a functional full-power state) when the kernelneeds to use it. (There also are forms of PM in which components areplaced in a less functional but still usable state instead of beingsuspended; an example would be reducing the CPU’s clock rate. Thisdocument will not discuss those other forms.)

When the parts being suspended include the CPU and most of the rest ofthe system, we speak of it as a “system suspend”. When a particulardevice is turned off while the system as a whole remains running, wecall it a “dynamic suspend” (also known as a “runtime suspend” or“selective suspend”). This document concentrates mostly on howdynamic PM is implemented in the USB subsystem, although system PM iscovered to some extent (see Documentation/power/*.txt for moreinformation about system PM).

System PM support is present only if the kernel was built withCONFIG_SUSPEND or CONFIG_HIBERNATION enabled. Dynamic PM support

for USB is present wheneverthe kernel was built with CONFIG_PM enabled.

[Historically, dynamic PM support for USB was present only if thekernel had been built with CONFIG_USB_SUSPEND enabled (which depended onCONFIG_PM_RUNTIME). Starting with the 3.10 kernel release, dynamic PMsupport for USB was present whenever the kernel was built withCONFIG_PM_RUNTIME enabled. The CONFIG_USB_SUSPEND option had beeneliminated.]

What is Remote Wakeup?¶

When a device has been suspended, it generally doesn’t resume untilthe computer tells it to. Likewise, if the entire computer has beensuspended, it generally doesn’t resume until the user tells it to, sayby pressing a power button or opening the cover.

However some devices have the capability of resuming by themselves, orasking the kernel to resume them, or even telling the entire computerto resume. This capability goes by several names such as “Wake OnLAN”; we will refer to it generically as “remote wakeup”. When adevice is enabled for remote wakeup and it is suspended, it may resumeitself (or send a request to be resumed) in response to some externalevent. Examples include a suspended keyboard resuming when a key ispressed, or a suspended USB hub resuming when a device is plugged in.

When is a USB device idle?¶

A device is idle whenever the kernel thinks it’s not busy doinganything important and thus is a candidate for being suspended. Theexact definition depends on the device’s driver; drivers are allowedto declare that a device isn’t idle even when there’s no actualcommunication taking place. (For example, a hub isn’t considered idleunless all the devices plugged into that hub are already suspended.)In addition, a device isn’t considered idle so long as a program keepsits usbfs file open, whether or not any I/O is going on.

Devices

If a USB device has no driver, its usbfs file isn’t open, and it isn’tbeing accessed through sysfs, then it definitely is idle.

Forms of dynamic PM¶

Dynamic suspends occur when the kernel decides to suspend an idledevice. This is called autosuspend for short. In general, a devicewon’t be autosuspended unless it has been idle for some minimum periodof time, the so-called idle-delay time.

Of course, nothing the kernel does on its own initiative shouldprevent the computer or its devices from working properly. If adevice has been autosuspended and a program tries to use it, thekernel will automatically resume the device (autoresume). For thesame reason, an autosuspended device will usually have remote wakeupenabled, if the device supports remote wakeup.

Devices

It is worth mentioning that many USB drivers don’t supportautosuspend. In fact, at the time of this writing (Linux 2.6.23) theonly drivers which do support it are the hub driver, kaweth, asix,usblp, usblcd, and usb-skeleton (which doesn’t count). If anon-supporting driver is bound to a device, the device won’t beautosuspended. In effect, the kernel pretends the device is neveridle.

We can categorize power management events in two broad classes:external and internal. External events are those triggered by someagent outside the USB stack: system suspend/resume (triggered byuserspace), manual dynamic resume (also triggered by userspace), andremote wakeup (triggered by the device). Internal events are thosetriggered within the USB stack: autosuspend and autoresume. Note thatall dynamic suspend events are internal; external agents are notallowed to issue dynamic suspends.

The user interface for dynamic PM¶

The user interface for controlling dynamic PM is located in the power/subdirectory of each USB device’s sysfs directory, that is, in/sys/bus/usb/devices/.../power/ where ”...” is the device’s ID. Therelevant attribute files are: wakeup, control, andautosuspend_delay_ms. (There may also be a file named level; thisfile was deprecated as of the 2.6.35 kernel and replaced by thecontrol file. In 2.6.38 the autosuspend file will be deprecatedand replaced by the autosuspend_delay_ms file. The only differenceis that the newer file expresses the delay in milliseconds whereas theolder file uses seconds. Confusingly, both files are present in 2.6.37but only autosuspend works.)

power/wakeup

This file is empty if the device does not supportremote wakeup. Otherwise the file contains either theword enabled or the word disabled, and you canwrite those words to the file. The setting determineswhether or not remote wakeup will be enabled when thedevice is next suspended. (If the setting is changedwhile the device is suspended, the change won’t takeeffect until the following suspend.)

power/control

This file contains one of two words: on or auto.You can write those words to the file to change thedevice’s setting.

  • on means that the device should be resumed andautosuspend is not allowed. (Of course, systemsuspends are still allowed.)
  • auto is the normal state in which the kernel isallowed to autosuspend and autoresume the device.

(In kernels up to 2.6.32, you could also specifysuspend, meaning that the device should remainsuspended and autoresume was not allowed. Thissetting is no longer supported.)

power/autosuspend_delay_ms

This file contains an integer value, which is thenumber of milliseconds the device should remain idlebefore the kernel will autosuspend it (the idle-delaytime). The default is 2000. 0 means to autosuspendas soon as the device becomes idle, and negativevalues mean never to autosuspend. You can write anumber to the file to change the autosuspendidle-delay time.

Writing -1 to power/autosuspend_delay_ms and writing on topower/control do essentially the same thing – they both prevent thedevice from being autosuspended. Yes, this is a redundancy in theAPI.

(In 2.6.21 writing 0 to power/autosuspend would prevent the devicefrom being autosuspended; the behavior was changed in 2.6.22. Thepower/autosuspend attribute did not exist prior to 2.6.21, and thepower/level attribute did not exist prior to 2.6.22. power/controlwas added in 2.6.34, and power/autosuspend_delay_ms was added in2.6.37 but did not become functional until 2.6.38.)

Changing the default idle-delay time¶

The default autosuspend idle-delay time (in seconds) is controlled bya module parameter in usbcore. You can specify the value when usbcoreis loaded. For example, to set it to 5 seconds instead of 2 you woulddo:

Equivalently, you could add to a configuration file in /etc/modprobe.da line saying:

Some distributions load the usbcore module very early during the bootprocess, by means of a program or script running from an initramfsimage. To alter the parameter value you would have to rebuild thatimage.

If usbcore is compiled into the kernel rather than built as a loadablemodule, you can add:

to the kernel’s boot command line.

Finally, the parameter value can be changed while the system isrunning. If you do:

then each new USB device will have its autosuspend idle-delayinitialized to 5. (The idle-delay values for already existing deviceswill not be affected.)

Setting the initial default idle-delay to -1 will prevent anyautosuspend of any USB device. This has the benefit of allowing youthen to enable autosuspend for selected devices.

Warnings¶

The USB specification states that all USB devices must support powermanagement. Nevertheless, the sad fact is that many devices do notsupport it very well. You can suspend them all right, but when youtry to resume them they disconnect themselves from the USB bus orthey stop working entirely. This seems to be especially prevalentamong printers and scanners, but plenty of other types of device havethe same deficiency.

For this reason, by default the kernel disables autosuspend (thepower/control attribute is initialized to on) for all devices otherthan hubs. Hubs, at least, appear to be reasonably well-behaved inthis regard.

(In 2.6.21 and 2.6.22 this wasn’t the case. Autosuspend was enabledby default for almost all USB devices. A number of people experiencedproblems as a result.)

This means that non-hub devices won’t be autosuspended unless the useror a program explicitly enables it. As of this writing there aren’tany widespread programs which will do this; we hope that in the nearfuture device managers such as HAL will take on this addedresponsibility. In the meantime you can always carry out thenecessary operations by hand or add them to a udev script. You canalso change the idle-delay time; 2 seconds is not the best choice forevery device.

If a driver knows that its device has proper suspend/resume support,it can enable autosuspend all by itself. For example, the videodriver for a laptop’s webcam might do this (in recent kernels theydo), since these devices are rarely used and so should normally beautosuspended.

Sometimes it turns out that even when a device does work okay withautosuspend there are still problems. For example, the usbhid driver,which manages keyboards and mice, has autosuspend support. Tests witha number of keyboards show that typing on a suspended keyboard, whilecausing the keyboard to do a remote wakeup all right, will nonethelessfrequently result in lost keystrokes. Tests with mice show that someof them will issue a remote-wakeup request in response to buttonpresses but not to motion, and some in response to neither.

The kernel will not prevent you from enabling autosuspend on devicesthat can’t handle it. It is even possible in theory to damage adevice by suspending it at the wrong time. (Highly unlikely, butpossible.) Take care.

The driver interface for Power Management¶

The requirements for a USB driver to support external power managementare pretty modest; the driver need only define:

methods in its usb_driver structure, and the reset_resume methodis optional. The methods’ jobs are quite simple:

  • The suspend method is called to warn the driver that thedevice is going to be suspended. If the driver returns anegative error code, the suspend will be aborted. Normallythe driver will return 0, in which case it must cancel alloutstanding URBs (usb_kill_urb()) and not submit any more.
  • The resume method is called to tell the driver that thedevice has been resumed and the driver can return to normaloperation. URBs may once more be submitted.
  • The reset_resume method is called to tell the driver thatthe device has been resumed and it also has been reset.The driver should redo any necessary device initialization,since the device has probably lost most or all of its state(although the interfaces will be in the same altsettings asbefore the suspend).

If the device is disconnected or powered down while it is suspended,the disconnect method will be called instead of the resume orreset_resume method. This is also quite likely to happen whenwaking up from hibernation, as many systems do not maintain suspendcurrent to the USB host controllers during hibernation. (It’spossible to work around the hibernation-forces-disconnect problem byusing the USB Persist facility.)

The reset_resume method is used by the USB Persist facility (seeUSB device persistence during system suspend) and it can also be used under certaincircumstances when CONFIG_USB_PERSIST is not enabled. Currently, if adevice is reset during a resume and the driver does not have areset_resume method, the driver won’t receive any notification aboutthe resume. Later kernels will call the driver’s disconnect method;2.6.23 doesn’t do this.

USB drivers are bound to interfaces, so their suspend and resumemethods get called when the interfaces are suspended or resumed. Inprinciple one might want to suspend some interfaces on a device (i.e.,force the drivers for those interface to stop all activity) withoutsuspending the other interfaces. The USB core doesn’t allow this; allinterfaces are suspended when the device itself is suspended and allinterfaces are resumed when the device is resumed. It isn’t possibleto suspend or resume some but not all of a device’s interfaces. Theclosest you can come is to unbind the interfaces’ drivers.

The driver interface for autosuspend and autoresume¶

To support autosuspend and autoresume, a driver should implement allthree of the methods listed above. In addition, a driver indicatesthat it supports autosuspend by setting the .supports_autosuspend flagin its usb_driver structure. It is then responsible for informing theUSB core whenever one of its interfaces becomes busy or idle. Thedriver does so by calling these six functions:

The functions work by maintaining a usage counter in theusb_interface’s embedded device structure. When the counter is > 0then the interface is deemed to be busy, and the kernel will notautosuspend the interface’s device. When the usage counter is = 0then the interface is considered to be idle, and the kernel mayautosuspend the device.

Drivers need not be concerned about balancing changes to the usagecounter; the USB core will undo any remaining “get”s when a driveris unbound from its interface. As a corollary, drivers must not callany of the usb_autopm_* functions after their disconnectroutine has returned.

Drivers using the async routines are responsible for their ownsynchronization and mutual exclusion.

usb_autopm_get_interface() increments the usage counter anddoes an autoresume if the device is suspended. If theautoresume fails, the counter is decremented back.

usb_autopm_put_interface() decrements the usage counter andattempts an autosuspend if the new value is = 0.

usb_autopm_get_interface_async() andusb_autopm_put_interface_async() do almost the same things astheir non-async counterparts. The big difference is that theyuse a workqueue to do the resume or suspend part of theirjobs. As a result they can be called in an atomic context,such as an URB’s completion handler, but when they return thedevice will generally not yet be in the desired state.

usb_autopm_get_interface_no_resume() andusb_autopm_put_interface_no_suspend() merely increment ordecrement the usage counter; they do not attempt to carry outan autoresume or an autosuspend. Hence they can be called inan atomic context.

The simplest usage pattern is that a driver callsusb_autopm_get_interface() in its open routine andusb_autopm_put_interface() in its close or release routine. But otherpatterns are possible.

The autosuspend attempts mentioned above will often fail for onereason or another. For example, the power/control attribute might beset to on, or another interface in the same device might not beidle. This is perfectly normal. If the reason for failure was thatthe device hasn’t been idle for long enough, a timer is scheduled tocarry out the operation automatically when the autosuspend idle-delayhas expired.

Autoresume attempts also can fail, although failure would mean thatthe device is no longer present or operating properly. Unlikeautosuspend, there’s no idle-delay for an autoresume.

Other parts of the driver interface¶

Drivers can enable autosuspend for their devices by calling:

in their probe() routine, if they know that the device is capable ofsuspending and resuming correctly. This is exactly equivalent towriting auto to the device’s power/control attribute. Likewise,drivers can disable autosuspend by calling:

This is exactly the same as writing on to the power/control attribute.

Sometimes a driver needs to make sure that remote wakeup is enabledduring autosuspend. For example, there’s not much pointautosuspending a keyboard if the user can’t cause the keyboard to do aremote wakeup by typing on it. If the driver setsintf->needs_remote_wakeup to 1, the kernel won’t autosuspend thedevice if remote wakeup isn’t available. (If the device is alreadyautosuspended, though, setting this flag won’t cause the kernel toautoresume it. Normally a driver would set this flag in its probemethod, at which time the device is guaranteed not to beautosuspended.)

If a driver does its I/O asynchronously in interrupt context, itshould call usb_autopm_get_interface_async() before starting output andusb_autopm_put_interface_async() when the output queue drains. Whenit receives an input event, it should call:

in the event handler. This tells the PM core that the device was justbusy and therefore the next autosuspend idle-delay expiration shouldbe pushed back. Many of the usb_autopm_* routines also make this call,so drivers need to worry only when interrupt-driven input arrives.

Asynchronous operation is always subject to races. For example, adriver may call the usb_autopm_get_interface_async() routine at a timewhen the core has just finished deciding the device has been idle forlong enough but not yet gotten around to calling the driver’s suspendmethod. The suspend method must be responsible for synchronizing withthe I/O request routine and the URB completion handler; it shouldcause autosuspends to fail with -EBUSY if the driver needs to use thedevice.

External suspend calls should never be allowed to fail in this way,only autosuspend calls. The driver can tell them apart by applyingthe PMSG_IS_AUTO() macro to the message argument to the suspendmethod; it will return True for internal PM events (autosuspend) andFalse for external PM events.

Mutual exclusion¶

For external events – but not necessarily for autosuspend orautoresume – the device semaphore (udev->dev.sem) will be held when asuspend or resume method is called. This implies that externalsuspend/resume events are mutually exclusive with calls to probe,disconnect, pre_reset, and post_reset; the USB core guarantees thatthis is true of autosuspend/autoresume events as well.

If a driver wants to block all suspend/resume calls during somecritical section, the best way is to lock the device and callusb_autopm_get_interface() (and do the reverse at the end of thecritical section). Holding the device semaphore will block allexternal PM calls, and the usb_autopm_get_interface() will prevent anyinternal PM calls, even if it fails. (Exercise: Why?)

Interaction between dynamic PM and system PM¶

Dynamic power management and system power management can interact ina couple of ways.

Firstly, a device may already be autosuspended when a system suspendoccurs. Since system suspends are supposed to be as transparent aspossible, the device should remain suspended following the systemresume. But this theory may not work out well in practice; over timethe kernel’s behavior in this regard has changed. As of 2.6.37 thepolicy is to resume all devices during a system resume and let themhandle their own runtime suspends afterward.

Secondly, a dynamic power-management event may occur as a systemsuspend is underway. The window for this is short, since systemsuspends don’t take long (a few seconds usually), but it can happen.For example, a suspended device may send a remote-wakeup signal whilethe system is suspending. The remote wakeup may succeed, which wouldcause the system suspend to abort. If the remote wakeup doesn’tsucceed, it may still remain active and thus cause the system toresume as soon as the system suspend is complete. Or the remotewakeup may fail and get lost. Which outcome occurs depends on timingand on the hardware and firmware design.

Systems

xHCI hardware link PM¶

xHCI host controller provides hardware link power management to usb2.0(xHCI 1.0 feature) and usb3.0 devices which support link PM. Byenabling hardware LPM, the host can automatically put the device intolower power state(L1 for usb2.0 devices, or U1/U2 for usb3.0 devices),which state device can enter and resume very quickly.

The user interface for controlling hardware LPM is located in thepower/ subdirectory of each USB device’s sysfs directory, that is, in/sys/bus/usb/devices/.../power/ where ”...” is the device’s ID. Therelevant attribute files are usb2_hardware_lpm and usb3_hardware_lpm.

power/usb2_hardware_lpm

When a USB2 device which support LPM is plugged to axHCI host root hub which support software LPM, thehost will run a software LPM test for it; if the deviceenters L1 state and resume successfully and the hostsupports USB2 hardware LPM, this file will show up anddriver will enable hardware LPM for the device. Youcan write y/Y/1 or n/N/0 to the file to enable/disableUSB2 hardware LPM manually. This is for test purpose mainly.

power/usb3_hardware_lpm_u1power/usb3_hardware_lpm_u2

When a USB 3.0 lpm-capable device is plugged in to axHCI host which supports link PM, it will check if U1and U2 exit latencies have been set in the BOSdescriptor; if the check is passed and the hostsupports USB3 hardware LPM, USB3 hardware LPM will beenabled for the device and these files will be created.The files hold a string value (enable or disable)indicating whether or not USB3 hardware LPM U1 or U2is enabled for the device.

USB Port Power Control¶

In addition to suspending endpoint devices and enabling hardwarecontrolled link power management, the USB subsystem also has thecapability to disable power to ports under some conditions. Power iscontrolled through Set/ClearPortFeature(PORT_POWER) requests to a hub.In the case of a root or platform-internal hub the host controllerdriver translates PORT_POWER requests into platform firmware (ACPI)method calls to set the port power state. For more background see theLinux Plumbers Conference 2012 slides [1] and video [2]:

Upon receiving a ClearPortFeature(PORT_POWER) request a USB port islogically off, and may trigger the actual loss of VBUS to the port [3].VBUS may be maintained in the case where a hub gangs multiple ports intoa shared power well causing power to remain until all ports in the gangare turned off. VBUS may also be maintained by hub ports configured fora charging application. In any event a logically off port will loseconnection with its device, not respond to hotplug events, and notrespond to remote wakeup events.

Warning

turning off a port may result in the inability to hot add a device.Please see “User Interface for Port Power Control” for details.

As far as the effect on the device itself it is similar to what a devicegoes through during system suspend, i.e. the power session is lost. AnyUSB device or driver that misbehaves with system suspend will besimilarly affected by a port power cycle event. For this reason theimplementation shares the same device recovery path (and honors the samequirks) as the system resume path for the hub.

[1]http://dl.dropbox.com/u/96820575/sarah-sharp-lpt-port-power-off2-mini.pdf
[2]http://linuxplumbers.ubicast.tv/videos/usb-port-power-off-kerneluserspace-api/
[3]

USB 3.1 Section 10.12

wakeup note: if a device is configured to send wakeup events the portpower control implementation will block poweroff attempts on thatport.

Port

User Interface for Port Power Control¶

The port power control mechanism uses the PM runtime system. Poweroff isrequested by clearing the power/pm_qos_no_power_off flag of the port device(defaults to 1). If the port is disconnected it will immediately receive aClearPortFeature(PORT_POWER) request. Otherwise, it will honor the pmruntime rules and require the attached child device and all descendants to besuspended. This mechanism is dependent on the hub advertising port powerswitching in its hub descriptor (wHubCharacteristics logical power switchingmode field).

Note, some interface devices/drivers do not support autosuspend. Userspace mayneed to unbind the interface drivers before the usb_device willsuspend. An unbound interface device is suspended by default. When unbinding,be careful to unbind interface drivers, not the driver of the parent usbdevice. Also, leave hub interface drivers bound. If the driver for the usbdevice (not interface) is unbound the kernel is no longer able to resume thedevice. If a hub interface driver is unbound, control of its child ports islost and all attached child-devices will disconnect. A good rule of thumb isthat if the ‘driver/module’ link for a device points to/sys/module/usbcore then unbinding it will interfere with port powercontrol.

Example of the relevant files for port power control. Note, in this examplethese files are relative to a usb hub device (prefix):

In addition to these files some ports may have a ‘peer’ link to a port onanother hub. The expectation is that all superspeed ports have ahi-speed peer:

Distinct from ‘companion ports’, or ‘ehci/xhci shared switchover ports’peer ports are simply the hi-speed and superspeed interface pins thatare combined into a single usb3 connector. Peer ports share the sameancestor XHCI device.

While a superspeed port is powered off a device may downgrade itsconnection and attempt to connect to the hi-speed pins. Theimplementation takes steps to prevent this:

Port
  1. Port suspend is sequenced to guarantee that hi-speed ports are powered-offbefore their superspeed peer is permitted to power-off. The implication isthat the setting pm_qos_no_power_off to zero on a superspeed port maynot cause the port to power-off until its highspeed peer has gone to itsruntime suspend state. Userspace must take care to order the suspensionsif it wants to guarantee that a superspeed port will power-off.
  2. Port resume is sequenced to force a superspeed port to power-on prior to itshighspeed peer.
  3. Port resume always triggers an attached child device to resume. After apower session is lost the device may have been removed, or need reset.Resuming the child device when the parent port regains power resolves thosestates and clamps the maximum port power cycle frequency at the rate thechild device can suspend (autosuspend-delay) and resume (reset-resumelatency).

Sysfs files relevant for port power control:

<hubdev-portX>/power/pm_qos_no_power_off:
This writable flag controls the state of an idle port.Once all children and descendants have suspended theport may suspend/poweroff provided thatpm_qos_no_power_off is ‘0’. If pm_qos_no_power_off is‘1’ the port will remain active/powered regardless ofthe stats of descendants. Defaults to 1.
<hubdev-portX>/power/runtime_status:
This file reflects whether the port is ‘active’ (power is on)or ‘suspended’ (logically off). There is no indication touserspace whether VBUS is still supplied.
<hubdev-portX>/connect_type:

An advisory read-only flag to userspace indicating thelocation and connection type of the port. It returnsone of four values ‘hotplug’, ‘hardwired’, ‘not used’,and ‘unknown’. All values, besides unknown, are set byplatform firmware.

hotplug indicates an externally connectable/visibleport on the platform. Typically userspace would chooseto keep such a port powered to handle new deviceconnection events.

hardwired refers to a port that is not visible butconnectable. Examples are internal ports for USBbluetooth that can be disconnected via an externalswitch or a port with a hardwired USB camera. It isexpected to be safe to allow these ports to suspendprovided pm_qos_no_power_off is coordinated with anyswitch that gates connections. Userspace must arrangefor the device to be connected prior to the portpowering off, or to activate the port prior to enablingconnection via a switch.

notused refers to an internal port that is expectedto never have a device connected to it. These may beempty internal ports, or ports that are not physicallyexposed on a platform. Considered safe to bepowered-off at all times.

unknown means platform firmware does not provideinformation for this port. Most commonly refers toexternal hub ports which should be considered ‘hotplug’for policy decisions.

Note

  • since we are relying on the BIOS to get this ACPIinformation correct, the USB port descriptions maybe missing or wrong.
  • Take care in clearing pm_qos_no_power_off. Oncepower is off this port willnot respond to new connect events.

Once a child device is attached additional constraints areapplied before the port is allowed to poweroff.

<child>/power/control:
Must be auto, and the port will notpower down until <child>/power/runtime_statusreflects the ‘suspended’ state. Defaultvalue is controlled by child device driver.
<child>/power/persist:
This defaults to 1 for most devices and indicates ifkernel can persist the device’s configuration across apower session loss (suspend / port-power event). Whenthis value is 0 (quirky devices), port poweroff isdisabled.
<child>/driver/unbind:
Wakeup capable devices will block port poweroff. Atthis time the only mechanism to clear the usb-internalwakeup-capability for an interface device is to unbindits driver.

Summary of poweroff pre-requisite settings relative to a port device:

Suggested Userspace Port Power Policy¶

As noted above userspace needs to be careful and deliberate about whatports are enabled for poweroff.

The default configuration is that all ports start withpower/pm_qos_no_power_off set to 1 causing ports to always remainactive.

Given confidence in the platform firmware’s description of the ports(ACPI _PLD record for a port populates ‘connect_type’) userspace canclear pm_qos_no_power_off for all ‘not used’ ports. The same can bedone for ‘hardwired’ ports provided poweroff is coordinated with anyconnection switch for the port.

A more aggressive userspace policy is to enable USB port power off forall ports (set <hubdev-portX>/power/pm_qos_no_power_off to 0) whensome external factor indicates the user has stopped interacting with thesystem. For example, a distro may want to enable power off all USBports when the screen blanks, and re-power them when the screen becomesactive. Smart phones and tablets may want to power off USB ports whenthe user pushes the power button.

Summary :

COM ports are common components of Device Manager. Windows users can see them easily by opening the Device Manager. However, problems may occur, causing the COM ports lost from Device Manager. If you are encountering this, please read the methods mentioned below to try to fix the problem yourself.

COM stands for Communication port and it is actually the original name of the serial port interface. The COM can be used to refer both physical ports and emulated ports, which are created via the Bluetooth or USB-to-serial adapters. Well, the COM ports missing in Device Manager problem happens now and then.

How to access Windows 10 Device Manager ports?

  1. Right click on This PC icon on the desktop.
  2. Choose Manage from the context menu.
  3. Select Device Manager under System Tools. (You can also press Start + X directly to select Device Manager.)
  4. Choose View from the menu bar.
  5. Choose Show hidden devices from the submenu.
  6. Locate Ports (COM & LPT) from the list in the right pane.
  7. Expand it to find Communications Port (COM).

MiniTool Software could help you recover data from hard disk, USB flash drive, and other external storage. If you find the USB ports not showing in Device Manager Windows 10, please read this to know how to fix USB not recognized issue.

Various solutions are provided for you to fix USB flash drive not recognized error and recover data from the inaccessible flash drive.

COM Ports Missing in Device Manager

However, there are many peoples said they can’t find ports in Device Manager and they desperately need a solution to it.

COM Ports Not Showing in Device Manager: Ture Cases

One: Com Port is Missing / Ports Option Not Available In Device Manager.

My com port is missing. And the ports option is not available in Device Manager. I'm able to perfectly connect and use my phone/modem with the computer. I had gone through several discussions about same topic here in answers.microsoft.com to no avail. How do I enable it, or can you provide a link where I can download this com driver for windows 10? Thanks.- posted by etwdensegen sprechen in Microsoft Forum

Two: No Ports shown in Device Manager (even hidden) Win 7 Pro 64 bit.

I can't get an external modem to work (even though it shows in devices and printers window. I can't get a USB-serial port converter to work either. It would be helpful if I had info from the device manager window but nothing show up, even though I have turned on the show hidden devices. Any ideas? Thanks.- asked Paul Saacke in Microsoft Forum

Three: COM PORT is disappeared in Device Manager.

When I opened device manager at that time I found that, portable devices COM port option disappeared from device manager. What should I have to do to resolve this issue?- said SAY014 in HP Forum

So how to fix the problem and find back your Windows 10 COM ports? Please keep reading!

How Do I Add a COM Port to Device Manager

Some users complained that their Widows 10 COM ports disappeared from Device Manager after they have upgraded their Windows platforms. Whatever the cause, the users’ primary concern is how to restore missing COM ports. That’s what I’m going to talk in this section.

Method 1: Show hidden devices.

As I have mentioned at the beginning of this article, users can’t see the COM ports directly. Instead, they need to open Device Manager -> select View tab -> choose Show hidden devices. After that, they’ll see the Ports (COM & LPT) option and they only need to expand it to fins COM ports.

Method 2: add COM ports manually.

  1. Open Device Manager on your Windows 10 computer.
  2. Click on the Action option from menu bar.
  3. Choose Add legacy hardware from the submenu to open the Add Hardware window.
  4. Click on the Next button to move on.
  5. Check Install the hardware that I manually select from a list (Advanced) and press Next.
  6. Select Ports (COM & LPT) from the given list and press the Next button.
  7. Choose Standard port types option or the manufacturer for the ports; then, click Next.
  8. Click on the Finish button to complete.

Method 3: update the motherboard drivers.

If the motherboard drivers are too outdated, they will also lead to COM ports missing in Device Manager. Therefore, you are advised to update your motherboard drivers manually and see whether it works.