-->
Intelligent Visibility for Embedded Systems. Total Phase has one repository available. Follow their code on GitHub. Get detailed information, downloads, screenshots, latest updates, news, and special offers for Total Phase USB Driver software at UpdateStar - The social software search engine. 1,746,000 recognized programs - 5,228,000 known versions - Software News.
The information on this page applies to graphics drivers that are implemented using a version earlier than WDDM version 2.2.
A video output on a display adapter is considered a child device of the display adapter. A monitor or other external display device that connects to the output is not considered a child device. During initialization, the display miniport driver's DxgkDdiQueryChildRelations function assigns each child device a type and an HPD awareness value. The type is one of the DXGK_CHILD_DEVICE_TYPE enumerators:
TypeVideoOutput
TypeOther
The HPD awareness value is one of the DXGK_CHILD_DEVICE_HPD_AWARENESS enumerators:
HpdAwarenessAlwaysConnected
HpdAwarenessInterruptible
HpdAwarenessPolled
A child device that has a type of TypeVideoOutput and any HPD awareness value other than HpdAwarenessAlwaysConnected is called a video output connector.
If the display miniport driver cannot determine whether a monitor is connected to the video output, the driver should emulate the behavior of an interruptible device, with the HPD awareness value set to HpdAwarenessInterruptible. If the display miniport driver needs to indicate that an interruptible monitor should be connected to the video output, such as when a user enters a keyboard shortcut to switch to a television view, the driver should call the DxgkCbIndicateChildStatus function with ChildStatus.HotPlug.Connected set to TRUE.
At certain times, the operating system requests that the display miniport driver report the status of all video output connectors that have an HPD awareness value of HpdAwarenessPolled. There is no regular polling interval; rather, the request is made when there is a specific need to update the list of available display devices and modes. For example, when a laptop computer is docked, the operating system needs to know whether a monitor is connected to the video output on the docking station. The operating system makes the request by calling the display miniport driver's DxgkDdiQueryChildStatus function for each child device that has an HPD awareness value of HpdAwarenessPolled.
For video output connectors that have an HPD awareness value of HpdAwarenessInterruptible, the display miniport driver is responsible for notifying the operating system whenever an external display device is hot plugged or unplugged. The display miniport driver's interrupt handling code calls the display port driver's DxgkCbIndicateChildStatus function to report that an external display device has been connected to or disconnected from a particular video output. When a laptop computer is docked, the display miniport driver's DxgkDdiNotifyAcpiEvent function must call DxgkCbIndicateChildStatus for each video output on the docking station that has an HPD awareness value of HpdAwarenessInterruptible.
If a connector with an HPD awareness value of HpdAwarenessPolled is made unavailable (that is, covered up) when a laptop computer is docked, the display miniport driver's DxgkDdiNotifyAcpiEvent function must call DxgkCbIndicateChildStatus to report that the connector is disconnected.
The video output associated with an integrated display panel on a portable computer is an unusual case. The operating system needs to know whether the portable computer's lid is open or closed, so the idea of connected is used to mean open and the idea of not connected is used to mean closed. The video output associated with an integrated display on a portable computer has an HPD awareness value of HpdAwarenessInterruptible. That does not mean, however, that the display adapter generates an interrupt when the lid is opened or closed. Rather, the ACPI BIOS generates an interrupt when the lid is opened or closed. That interrupt results in a call to the display miniport driver's DxgkDdiNotifyAcpiEvent function, which calls DxgkCbIndicateChildStatus to report the status (open or closed) of the lid. The display miniport driver reports the status of the lid by setting the HotPlug.Connected member of a DXGK_CHILD_STATUS structure to TRUE (open) or FALSE (closed) and passing the DXGK_CHILD_STATUS structure to DxgkCbIndicateChildStatus.
The following list describes the steps followed when a monitor is connected to an HD15 connector, assuming that the connector has an HPD awareness value of HpdAwarenessPolled.
A monitor is connected to the HD15 connector on the display adapter. The display adapter does not detect this as a hot-plug event.
At some future time, a user-mode application requests a list of display devices.
For each video output connector on the display adapter that has an HPD awareness value of HpdAwarenessPolled, the VidPN manager calls the display miniport driver's DxgkDdiQueryChildStatus function to determine whether an external display device is connected. When DxgkDdiQueryChildStatus is called for the HD15 connector, it reports that an external monitor is indeed connected.
The following list describes the steps followed when a monitor is connected to a DVI connector, assuming that the connector has an HPD awareness value of HpdAwarenessInterruptible.
A flat panel is connected to the DVI connector on the display adapter.
The display adapter detects a hot-plug event and generates an interrupt.
The interrupt is handled by the display miniport driver's DxgkDdiInterruptRoutine function, which schedules a deferred procedure call (DPC). Subsequently the display miniport driver's DPC callback function is called.
The DPC callback function passes a DXGK_CHILD_STATUS structure to the display port driver's DxgkCbIndicateChildStatus function to report the status of the DVI connector. The ChildUid member of the DXGK_CHILD_STATUS structure identifies the DVI connector, and the HotPlug.Connected member (set to TRUE in this case) indicates that an external display device is connected.
A child device that has a type of TypeVideoOutput and any HPD awareness value other than HpdAwarenessAlwaysConnected is called a video output connector.
If the display miniport driver cannot determine whether a monitor is connected to the video output, the driver should emulate the behavior of an interruptible device, with the HPD awareness value set to HpdAwarenessInterruptible. If the display miniport driver needs to indicate that an interruptible monitor should be connected to the video output, such as when a user enters a keyboard shortcut to switch to a television view, the driver should call the DxgkCbIndicateChildStatus function with ChildStatus.HotPlug.Connected set to TRUE.
At certain times, the operating system requests that the display miniport driver report the status of all video output connectors that have an HPD awareness value of HpdAwarenessPolled. There is no regular polling interval; rather, the request is made when there is a specific need to update the list of available display devices and modes. For example, when a laptop computer is docked, the operating system needs to know whether a monitor is connected to the video output on the docking station. The operating system makes the request by calling the display miniport driver's DxgkDdiQueryChildStatus function for each child device that has an HPD awareness value of HpdAwarenessPolled.
For video output connectors that have an HPD awareness value of HpdAwarenessInterruptible, the display miniport driver is responsible for notifying the operating system whenever an external display device is hot plugged or unplugged. The display miniport driver's interrupt handling code calls the display port driver's DxgkCbIndicateChildStatus function to report that an external display device has been connected to or disconnected from a particular video output. When a laptop computer is docked, the display miniport driver's DxgkDdiNotifyAcpiEvent function must call DxgkCbIndicateChildStatus for each video output on the docking station that has an HPD awareness value of HpdAwarenessInterruptible.
If a connector with an HPD awareness value of HpdAwarenessPolled is made unavailable (that is, covered up) when a laptop computer is docked, the display miniport driver's DxgkDdiNotifyAcpiEvent function must call DxgkCbIndicateChildStatus to report that the connector is disconnected.
The video output associated with an integrated display panel on a portable computer is an unusual case. The operating system needs to know whether the portable computer's lid is open or closed, so the idea of connected is used to mean open and the idea of not connected is used to mean closed. The video output associated with an integrated display on a portable computer has an HPD awareness value of HpdAwarenessInterruptible. That does not mean, however, that the display adapter generates an interrupt when the lid is opened or closed. Rather, the ACPI BIOS generates an interrupt when the lid is opened or closed. That interrupt results in a call to the display miniport driver's DxgkDdiNotifyAcpiEvent function, which calls DxgkCbIndicateChildStatus to report the status (open or closed) of the lid. The display miniport driver reports the status of the lid by setting the HotPlug.Connected member of a DXGK_CHILD_STATUS structure to TRUE (open) or FALSE (closed) and passing the DXGK_CHILD_STATUS structure to DxgkCbIndicateChildStatus.
The following list describes the steps followed when a monitor is connected to an HD15 connector, assuming that the connector has an HPD awareness value of HpdAwarenessPolled.
A monitor is connected to the HD15 connector on the display adapter. The display adapter does not detect this as a hot-plug event.
At some future time, a user-mode application requests a list of display devices.
For each video output connector on the display adapter that has an HPD awareness value of HpdAwarenessPolled, the VidPN manager calls the display miniport driver's DxgkDdiQueryChildStatus function to determine whether an external display device is connected. When DxgkDdiQueryChildStatus is called for the HD15 connector, it reports that an external monitor is indeed connected.
The following list describes the steps followed when a monitor is connected to a DVI connector, assuming that the connector has an HPD awareness value of HpdAwarenessInterruptible.
A flat panel is connected to the DVI connector on the display adapter.
The display adapter detects a hot-plug event and generates an interrupt.
The interrupt is handled by the display miniport driver's DxgkDdiInterruptRoutine function, which schedules a deferred procedure call (DPC). Subsequently the display miniport driver's DPC callback function is called.
The DPC callback function passes a DXGK_CHILD_STATUS structure to the display port driver's DxgkCbIndicateChildStatus function to report the status of the DVI connector. The ChildUid member of the DXGK_CHILD_STATUS structure identifies the DVI connector, and the HotPlug.Connected member (set to TRUE in this case) indicates that an external display device is connected.
Suppose a DVI connector supports a dongle that has three branches: DVI, HD15, and S-video. In that case, the display miniport driver would have previously enumerated three child devices associated with the one physical DVI connector: DVI-on-DVI, HD15-on-DVI, and S-video-on-DVI. Each of those child devices would have a type of TypeVideoOutput and an HPD awareness value of HpdAwarenessInterruptible. The following list describes the steps followed when a monitor is connected to the HD15 branch of the dongle.
The display adapter detects a hot-plug event and generates an interrupt.
The interrupt is handled by the display miniport driver's DxgkDdiInterruptRoutine function, which schedules a deferred procedure call (DPC). Subsequently the display miniport driver's DPC callback function is called.
The DPC callback function determines that the hot-plug event was on the HD15 branch of the dongle (HD15-on-DVI).
The DPC callback functions passes a DXGK_CHILD_STATUS structure to DxgkCbIndicateChildStatus to report the status of the HD15-on-DVI video output. The ChildUid member of the DXGK_CHILD_STATUS structure identifies the video output, and the HotPlug.Connected member (set to TRUE in this case) indicates that an external display device is connected.
The following list describes the steps followed when the lid is closed on a laptop computer.
The lid is closed on a portable computer, which generates an ACPI event. Subsequently, the display miniport driver's DxgkDdiNotifyAcpiEvent function is called.
DxgkDdiNotifyAcpiEvent passes a DXGK_CHILD_STATUS structure to the display port driver's DxgkCbIndicateChildStatus function to report the status of the child device associated with the built-in display panel. Specifically, DxgkDdiNotifyAcpiEvent sets the HotPlug.Connected member of the DXGK_CHILD_STATUS structure to FALSE.
Related searches
- » total phase usb 드라이버 windows 10
- » total phase usb driver
- » total phase usb
- » usb to usb bridge driver windows 10
- » total phase driver
- » windows 10 total media3 win 10
- » total media driver windows 10
- » driver total media 3.5 per windows 10
- » phase panzers phase 1 full download
- » phase one usb driver
total phase usb driver windows 10
at UpdateStar- More
Total Phase USB Driver
- More
Realtek High Definition Audio Driver 6.0.9030.1
REALTEK Semiconductor Corp. - 168.6MB - Freeware -Audio chipsets from Realtek are used in motherboards from many different manufacturers. If you have such a motherboard, you can use the drivers provided by Realtek. more info... - More
Total Commander 9.51
Total Commander is an Explorer replacement for Windows. It supports ZIP/ARJ/LHA/RAR/UC2/TAR/GZ/CAB/ACE archives, and has an internal ZIP-compatible packer. The search function allows to search for files inside archives, even for text. more info... - More
SAMSUNG USB Driver for Mobile Phones 1.7.31
Samsung Electronics Co., Ltd. - 38.9MB - Freeware -Samsung USB Driver for Android Cell Phones & Tablets more info... - More
Realtek Ethernet Controller Driver 10.46.1231.2020
This package installs the software (Ethernet Controller driver). more info... - More
Windows Live Essentials 16.4.3528.0331
Windows Live Essentials (previously Windows Live Installer) is a suite of freeware applications by Microsoft which aims to offer integrated and bundled e-mail, instant messaging, photo-sharing, blog publishing, security services and other … more info... - More
Driver Booster 8.3.0.361
Driver Booster 4, as a powerful and easy-to-use driver updater, provides 1-click solution to rapidly & securely update outdated and faulty drivers and install the best matched missing drivers not only for your device drivers but also for … more info... - More
NVIDIA HD Audio Driver 1.3.38.40
High Definition Audio Driver for NVIDIA devices. more info... - More
Realtek USB Card Reader 6.2.9200.39041
USB card reader driver for Win XP/Vista/Win7 more info... - More
Nokia Connectivity Cable Driver 7.1.182.0
Install the driver to establish a cable connection between your compatible Nokia phone and a compatible PC.Important for Windows 2000 or XP or Vista users: Drivers for the Nokia DKE-2, DKU-2, CA-42, CA-53, CA-70, and CA-101 cables are now … more info...
Total Phase Komodo Drivers
total phase usb driver windows 10
- More
Realtek High Definition Audio Driver 6.0.9030.1
REALTEK Semiconductor Corp. - 168.6MB - Freeware -Audio chipsets from Realtek are used in motherboards from many different manufacturers. If you have such a motherboard, you can use the drivers provided by Realtek. more info... - More
Microsoft Silverlight 5.1.50918.0
Silverlight is essentially nothing more than Microsoft's vision of a cross-browser, cross-platform plug-in designed to be the source of rich online user experiences and to dislodge Flash from its current dominant position on the market. more info... - More
SAMSUNG USB Driver for Mobile Phones 1.7.31
Samsung Electronics Co., Ltd. - 38.9MB - Freeware -Samsung USB Driver for Android Cell Phones & Tablets more info... - More
Mozilla Firefox 85.0.2
Coupon Search Plugin for Firefox, find some of the best discounts and deals around from the best retailers on the net. Coupons, discount codes and more. CouponMeUp have thousands of the best coupons from hundreds of online retailers. more info... - More
Realtek USB Card Reader 6.2.9200.39041
USB card reader driver for Win XP/Vista/Win7 more info... - More
Realtek Ethernet Controller Driver 10.46.1231.2020
This package installs the software (Ethernet Controller driver). more info... - More
Google Chrome 88.0.4324.150
Chrome is a web browser developed by Google. It is characterized by its speed and many innovative features. more info... - More
Microsoft Visual C++ 2008 Redistributable 11.0.61030.0
The Microsoft Visual C++ 2008 Redistributable Package installs runtime components of Visual C++ Libraries required to run applications developed with Visual C++ on a computer that does not have Visual C++ 2008 installed. more info... - More
Mozilla Maintenance Service 85.0.2
Firefox now installs an optional service called the Mozilla Maintenance Service. This service allows Firefox to install updates without requiring you to click yes in the Windows User Account Control (UAC) dialog. more info... - More
NVIDIA HD Audio Driver 1.3.38.40
High Definition Audio Driver for NVIDIA devices. more info...
total phase usb driver windows 10
- More
Realtek High Definition Audio Driver 6.0.9030.1
REALTEK Semiconductor Corp. - 168.6MB - Freeware -Audio chipsets from Realtek are used in motherboards from many different manufacturers. If you have such a motherboard, you can use the drivers provided by Realtek. more info... - More
SAMSUNG USB Driver for Mobile Phones 1.7.31
Samsung Electronics Co., Ltd. - 38.9MB - Freeware -Samsung USB Driver for Android Cell Phones & Tablets more info... - More
Realtek Ethernet Controller Driver 10.46.1231.2020
This package installs the software (Ethernet Controller driver). more info... - More
NVIDIA Graphics Driver 461.51
Supported Products:GeForce 500 series:GTX 590, GTX 580, GTX 570, GTX 560 Ti, GTX 560, GTX 550 Ti, GT 545, GT 530, GT 520, 510GeForce 400 series:GTX 480, GTX 470, GTX 465, GTX 460 v2, GTX 460 SE v2, GTX 460 SE, GTX 460, GTS 450, GT 440, GT … more info... - More
Intel(R) USB eXtensible Host Controller Driver 5.0.4.43
Most recent searches
Total Phase Pd Analyzer Driver
- » cms клиент
- » profile diginet install
- » yaskawa cp-717 on windows xp
- » 1-click pc care descargar
- » ssdfresh 2021.10
- » idt instalar
- » download virtual dj 7 pro software
- » regcure descargar
- » enercad free
- » sonic 2 master download
- » simfarm deutsch dos
- » nortek nx vega driver
- » gamloop apdet
- » rtspvideoplugin2.0 zip
- » telecharger virtual box addition
- » gerenciador de certicados
- » télécharger atomic wallet gratuit
- » online editor cisco packet tracer 5.2
- » beautiful box邀请码
- » cadpack creator固まる