Windows 10 s USB-C and Power Delivery Architecture

Size: px
Start display at page:

Download "Windows 10 s USB-C and Power Delivery Architecture"

Transcription

1 Windows 10 s USB-C and Power Delivery Architecture Jr-Chiang, Jaw Microsoft Corporation, Senior Software Engineer Developer Days 2016 Hong Kong October 19-20, 2016 October 19 ShenZhen Legendary USB Implementers Forum

2 Agenda: Windows 10 s USB-C and PD Architecture Introduction Windows 10 roles and responsibilities Hardware/firmware roles and responsibilities Windows 10 USB-C architecture UCSI (USB Type-C Connector System Software Interface) Ucm (USB Connector Manager) UcmTcpci (USB Connector Manager TCPCI extension) USB-C and USB PD Testing Testing guidance Requirements and tests for Win10 certification October 19 ShenZhen Legendary USB Implementers Forum

3 Introduction Windows 10 roles and responsibilities Hardware/firmware roles and responsibilities October 19 ShenZhen Legendary USB Implementers Forum

4 The goal USB-C just works When the user connects two USB Type-C devices together, it will always work as intended In order to achieve this goal, software, firmware, and hardware must all work together October 19 ShenZhen Legendary USB Implementers Forum

5 Why plug into Windows 10 s USB-C architecture? Windows will do the following: Provide a standard notification framework for users Support new features deeply integrated in the OS Provide interoperability with USB-C/PD devices Roll out regular updates to service the user experience Maintain backwards compatibility across Win10 updates Bottom line: Customers will have a more consistent and overall better experience if the system plugs into Windows 10 s USB Type-C architecture October 19 ShenZhen Legendary USB Implementers Forum

6 Windows 10 s roles and responsibilities Provides user experience/interface Troubleshooting messages Enable advanced users to configure USB-C/PD settings Enables new scenarios Examples: Discrete external GPUs Continuum for Windows Mobile Provides servicing mechanism through Windows Update Regular driver updates to improve quality/interoperability Maintain backwards compatibility while rolling out new features/fixes October 19 ShenZhen Legendary USB Implementers Forum

7 Hardware/firmware s roles and responsibilities Provide accurate state of hardware Provide ability for Windows to control the hardware Provide a set of default policies for common expected scenarios. Examples: Mobile devices that can either source or sink power should avoid sourcing more power than reasonable for a mobile device DRP devices that are meant to be used in a certain role should always attempt to get into that role October 19 ShenZhen Legendary USB Implementers Forum

8 Windows 10 USB-C Architecture Overview of the USB Connector Manager UCSI Ucm Class Extension UcmTcpci Class Extension October 19 ShenZhen Legendary USB Implementers Forum

9 USB Connector Manager What is USB Connector Manager (UCM)? Windows 10 driver stack that manages USB-C/PD for the system Gets hardware status and makes policy decisions How to plug into UCM? Option 1: Support UCSI (USB Type-C Connector System Software Interface) No driver development required (but EC-development is required) Option 2: Write a Ucm client driver Option 3: Write a UcmTcpci client driver Use the UcmTcpci driver sample (coming on Github) October 19 ShenZhen Legendary USB Implementers Forum

10 Microsoft component Windows 10 USB Architecture User Interface OEM/IHV component Interface layer Hardware USB Connector Manager (Ucm) USB Function Driver Stack USB Host Driver Stack Ucm Class Extension + Policy Manager UcmTcpci Class Extension UcmCx Client Interface UcmTcpciCx Client Interface UCSI Driver UcmCx Client Driver UcmTcpciCx Client Driver UCSI Custom SW-HW/FW Interface TCPCI-Compatible Interface USB Device Controller USB Host Controller USB-C Hardware/Firmware October 19 ShenZhen Legendary USB Implementers Forum

11 Choosing the Right Software Model For Your HW Use UCSI if the system has an Embedded Controller Use UcmTcpci if your design relies on a software Type-C Port Manager (TCPM) Use Ucm if the system cannot use UCSI nor UcmTcpci Least preferred option as it requires the most driver work Embedded Controller? Yes No Software Type-C Port Manager? Yes No UCSI UcmTcpci Ucm October 19 ShenZhen Legendary USB Implementers Forum

12 UCSI UCSI provides OS with hardware state UCSI provides OS the ability to control the hardware System firmware needs to implement default policies for common expected scenarios. Examples: Mobile devices that can either source or sink power should avoid sourcing more power than reasonable for a mobile device DRP devices that are meant to be used in a certain role should always attempt to get into that role USB Connector Manager (Ucm) User Interface Ucm Class Extension + Policy Manager UcmCx Client Interface UCSI Driver UcmCx Client Driver UCSI Custom SW-HW/FW Interface USB-C Hardware/Firmware Microsoft component OEM/IHV component Interface layer Hardware UcmTcpci Class Extension UcmTcpciCx Client Interface UcmTcpciCx Client Driver TCPCI-Compatible Interface October 19 ShenZhen Legendary USB Implementers Forum

13 SoC/CPU UCSI Bring-up Example PD controller tasks: Implement PD policy engine, protocol layer, physical layer Provide control/query I2C (or other bus) interface hooks for EC Embedded controller tasks: Implement default platform policy for the USB-C ports on the system Implement I2C (or other bus) interface to PD controller Implement UCSI interface to ACPI Implement SCI, update EC s mailbox Communicate status change, provide role swap hooks, etc BIOS ACPI tasks: Report USB-C connector to the OS Implement UCSI mailbox paradigm Initialization of EC s mailbox _DSM method to enable OS to access the mailbox Display Source USB Dual Role Controller DP Out SS HS DisplayPort SS/DP Mux SSTx+/-, SSRx+/- PD Controller CC1, CC2 I2C Alt Mode Control SSTx+/-, SSRx+/- D+/D- Embedded Controller Charge control Vbus, Vconn Control Vbus, Vconn Notify SCI, EC Events UCSI ACPI Charge control BC 1.2 Detection D+/D- I/O USB Type-C Connector October 19 ShenZhen Legendary USB Implementers Forum

14 Ucm Class Extension Ucm is the OS USB-C/PD policy manager Requires a Ucm client driver to provide hardware status and control hooks Flexible model allows Ucm client driver to be written to work with any hardware design USB Connector Manager (Ucm) User Interface Ucm Class Extension + Policy Manager UcmCx Client Interface UCSI Driver UcmCx Client Driver Microsoft component OEM/IHV component Interface layer Hardware UcmTcpci Class Extension UcmTcpciCx Client Interface UcmTcpciCx Client Driver UCSI Custom SW-HW/FW Interface TCPCI-Compatible Interface USB-C Hardware/Firmware October 19 ShenZhen Legendary USB Implementers Forum

15 SoC/CPU Ucm Bring-up Example PD controller tasks: Implement PD policy engine, protocol layer, physical layer Provide interface hooks for the Ucm client driver Ucm client driver tasks: Write an Ucm client driver that implements the Ucm APIs Set default platform policy Implement interface to PD controller Implement UcmCx framework APIs Details on MSDN ACPI tasks: Report USB-C connector s capabilities in ACPI Display Source SS/DP Mux SSTx+/-, SSRx+/- USB Dual Role Controller DP Out SS HS DisplayPort Alt Mode Control CC1, CC2 SSTx+/-, SSRx+/- D+/D- PD Controller (not TCPC) Charge control Vbus, Vconn Control Vbus, Vconn Ucm SPI, I2C, or other interface Charge control BC 1.2 Detection D+/D- USB Type-C Connector October 19 ShenZhen Legendary USB Implementers Forum

16 UcmTcpci Class Extension UcmTcpci is an inbox extension to Ucm UcmTcpci is a software-based TCPM implementation Implements PD policy engine and protocol layer Designed to be used with platforms with a TCPC, but no HW TCPM UcmTcpci client driver can be implemented as a simple I2C class driver Sample driver coming soon on GitHub USB Connector Manager (Ucm) UCSI Driver UCSI User Interface Ucm Class Extension + Policy Manager UcmCx Client Interface UcmCx Client Driver Custom SW-HW/FW Interface USB-C Hardware/Firmware Microsoft component OEM/IHV component Interface layer Hardware UcmTcpci Class Extension UcmTcpciCx Client Interface UcmTcpciCx Client Driver TCPCI-Compatible Interface October 19 ShenZhen Legendary USB Implementers Forum

17 SoC/CPU UcmTcpci Bring-up Example Type-C Port Controller tasks: Implement I2C TCPC interface Implement physical layer, CC-logic UcmTcpci Client Driver tasks: Write an I2C class driver that implements the UcmTcpci APIs Translate I2C commands to UcmTcpci APIs Sample driver and walkthrough will be available ACPI tasks: Report USB-C connector s capabilities in ACPI Other tasks: If PD charging before the OS is required, separate charging silicon will be required Display Source SS/DP Mux SSTx+/-, SSRx+/- USB Dual Role Controller DP Out SS HS DisplayPort Alt Mode Control CC1, CC2 SSTx+/-, SSRx+/- D+/D- Type-C Port Controller Charge control Vbus, Vconn Control Vbus, Vconn UcmTcpci I2C Charge control BC 1.2 Detection D+/D- USB Type-C Connector October 19 ShenZhen Legendary USB Implementers Forum

18 USB-C and USB PD Testing Testing guidance Requirements and Tests for Win10 Certification October 19 ShenZhen Legendary USB Implementers Forum

19 Testing guidance Reliable and interoperable hardware results in happy customers Microsoft s portal for USB testing resources: Test tools Testing procedures Test documentation Troubleshooting bring-up and development issues: Give us feedback on how we can better enable you to build highquality, interoperable hardware! October 19 ShenZhen Legendary USB Implementers Forum

20 Test tools SuperMUTT Simulates USB traffic for USB Host testing USB 2.0 and USB 3.0 USB-C connection exerciser 1:4 switch for automating interop and scenario validation Enables automated switching between hosts, chargers, peripherals Monitors charging current and direction USB-C MUTT (in development) Extends capabilities of SuperMUTT with USB-C Tests Power Delivery state machine, Alternate Modes, role swapping October 19 ShenZhen Legendary USB Implementers Forum

21 Workshops and Certification Programs Interop guidance Recommend following the manual interop procedure on MSDN: Attend interop events hosted by the standards bodies (e.g. USB-IF, VESA, etc) Industry Compliance Attend Power Delivery and USB-C compliance workshops hosted by the standards bodies (e.g. USB-IF, VESA, etc) Windows Hardware Compatibility Certification New USB-C/PD HLK tests are required for Windows hardware compatibility certification Microsoft will publish a list of recommended silicon that is compatible with Windows October 19 ShenZhen Legendary USB Implementers Forum

22 Requirements and Tests for Win10 Certification USB-C/PD Requirements: All USB-C ports are correctly declared in ACPI in _UPC method All required UCSI features must be implemented correctly. See UCSI specification for the list of UCSI features Win10 also requires several UCSI features that are marked as Optional in the UCSI specification Ucm APIs must be implemented correctly. See MSDN for the list of APIs and guidance for how to implement those APIs USB-C/PD Tests: USB-C ACPI Validation Test UCSI Command Tests Power, Data Role Swap Tests Leverage the USB-C Connection Exerciser October 19 ShenZhen Legendary USB Implementers Forum

23 Q&A October 19 ShenZhen Legendary USB Implementers Forum

24 Additional information General USB Type-C Information: Windows support for USB Type-C connectors UCSI: UCSI rev1.0 specification MSDN UCSI guidance UCSI BIOS enabling guide USB Connector Manager (Ucm): USB Connector Manager Driver bring-up guidance USB Connector Manager Class Extension API reference October 19 ShenZhen Legendary USB Implementers Forum

25 Additional information Win10 Hardware Compatibility Requirements: Win10 Hardware Compatibility Tests: How to set up and run the Win10 USB-C compatibility tests: USB testing resources: Test tools: Microsoft USB Test Tools Test tool questions? October 19 ShenZhen Legendary USB Implementers Forum

USB-C and Power Delivery Architecture in Windows 10 Jr-Chiang (JC) Jaw Microsoft Corporation, Senior Software Engineer

USB-C and Power Delivery Architecture in Windows 10 Jr-Chiang (JC) Jaw Microsoft Corporation, Senior Software Engineer 1 USB-C and Power Delivery Architecture in Windows 10 Jr-Chiang (JC) Jaw Microsoft Corporation, Senior Software Engineer USB Developer Days 2017 Taipei, Taiwan October 24-25, 2017 2 Agenda: USB-C and PD

More information

Nifty Type-C Features and Optimizations

Nifty Type-C Features and Optimizations Nifty Type-C Features and Optimizations Mark Hayter & David Schneider Hardware Engineering, Chrome OS, Google Inc Taipei, Taiwan October 24 25, 2017 1 Chromebook/USB-C: State of the union is good All new

More information

The USB Type-C Connector: A Brave New World for the PC Industry. Howard Heck April 17, 2015

The USB Type-C Connector: A Brave New World for the PC Industry. Howard Heck April 17, 2015 The USB Type-C Connector: A Brave New World for the PC Industry Howard Heck April 17, 2015 Introduction User Experience Vision Key Design Aspects Port Behaviors User Experience Driven Challenges Challenges

More information

USB-C and DP Alt Mode Testing with Unigraf UCD

USB-C and DP Alt Mode Testing with Unigraf UCD USB-C and DP Alt Mode Testing with Unigraf UCD-340 2017-07-13 Data, Power and Display in One Interface USB Type-C USB Type-C High Speed Data Power Management Display Connection Superior Features in USB-C

More information

Designing Type-C + PD Systems

Designing Type-C + PD Systems Designing Type-C + PD Systems Gregory Watkins Texas Instruments USB Developer Days 2017 Taipei, Taiwan October 24-25, 2017 1 Agenda System Components Data Switching Power Switching System Examples 2 Agenda

More information

STM32G0. World s 1st USB-C TM & Power Delivery 3.0 MCU

STM32G0. World s 1st USB-C TM & Power Delivery 3.0 MCU STM32G0 World s 1st TM & Power Delivery 3.0 MCU Why to use and Power Delivery Technology? 2 USB Type-C connector enhances user experience It s a 24-pin miniature and reversible connector. cable has same

More information

USB Type-C TM, IEEE CSNV

USB Type-C TM, IEEE CSNV USB Type-C TM, IEEE CSNV Ken Shoemaker 10 May, 2016 Credits, Trademarks, Disclaimers USB Type-C TM and USB-C TM are trademarks of the Universal Serial Bus Implementers Forum (USB-IF). DisplayPort TM is

More information

TA0357. Overview of USB Type-C and Power Delivery technologies. Technical article. Introduction

TA0357. Overview of USB Type-C and Power Delivery technologies. Technical article. Introduction Technical article Overview of USB Type-C and Power Delivery technologies Introduction The USB Type-C and Power Delivery technologies have revolutionized cable connectivity with the ability to carry all

More information

BIOS Implementation of UCSI

BIOS Implementation of UCSI BIOS Implementation of UCSI Technical White Paper February 2016 Revision 001 Document: 333897-001 You may not use or facilitate the use of this document in connection with any infringement or other legal

More information

Type-C Technologies and Solutions

Type-C Technologies and Solutions Type-C Technologies and Solutions 2016.12.20 Gary Hsiao Project Manager Gary_Hsiao@keysight.com Agenda Type-C Overview Type-C PD Solutions USB 3.1 Simulation Solutions USB 3.1 TX/RX Solutions USB 3.1 Cable/Connector

More information

Lattice USB Type-C Solution Design Document

Lattice USB Type-C Solution Design Document October 2016 Introduction Reference Design RD1210 This design document describes the implementation details of the following Lattice FPGA based USB Type-C solutions: CD/PD for Hosts/Devices Dual Role Port

More information

USB Technical Overview

USB Technical Overview USB Technical Overview Brad Saunders USB-IF/USB PG Chair (Sponsored by Intel Corporation) USB Developer Days 2017 Taipei, Taiwan October 24 25, 2017 1 Topic Agenda System Level Overview USB 3.2 USB Type-C

More information

USB Power Delivery Specification 1.0

USB Power Delivery Specification 1.0 USB Power Delivery Specification 1.0 1 Notice Please submit written feedback to: techsup@usb.org 2 Taking a Great Idea Broad international adoption of USB Battery Charging standard for mobile devices China,

More information

UM NXP USB PD shield board user manual COMPANY PUBLIC. Document information

UM NXP USB PD shield board user manual COMPANY PUBLIC. Document information Rev. 0.3 19 June 2017 User manual COMPANY PUBLIC Document information Information Content Keywords Abstract OM13588, USB Type-C, PD (power delivery), Alt-mode-DP, Host, Dock This user manual presents demonstration

More information

ShenZhen Legendary. USB Developer Days USB Power Delivery. Developer Days 2016 Hong Kong October 19-20, 2016

ShenZhen Legendary. USB Developer Days USB Power Delivery. Developer Days 2016 Hong Kong October 19-20, 2016 USB Power Delivery Developer Days 2016 Hong Kong October 19-20, 2016 October 19 USB Implementers Forum 2016 1 Day 2 Power Delivery Agenda 8:30 Introduction and Architectural Overview 8:55 Physical Layer

More information

EZ-PD CCG4: Two-Port Type-C Controller With Power Delivery

EZ-PD CCG4: Two-Port Type-C Controller With Power Delivery Quick Presentation: EZ-PD CCG4: Two-Port Type-C With Power Delivery CCG4 = Type-C Gen 4 Type-C = Reversible Slim USB Connector Design Your Desktop and Notebook PCs With Two Type-C Ports Using CCG4 00-0987

More information

USB Type-C TM and Power Delivery Technology Overview. Karl Fleischmann Product Marketing Engineer

USB Type-C TM and Power Delivery Technology Overview. Karl Fleischmann Product Marketing Engineer USB Type-C TM and Power Delivery Technology Overview Karl Fleischmann Product Marketing Engineer Universal Serial Bus (USB) The interface of choice by billions 2000 2000 2001 2008 2013 USB USB2.0 LS/FS

More information

TA0356. USB Type-C and Power Delivery DisplayPort Alternate Mode. Technical article. Introduction

TA0356. USB Type-C and Power Delivery DisplayPort Alternate Mode. Technical article. Introduction TA0356 Technical article USB Type-C and Power Delivery DisplayPort Alternate Mode Introduction The USB Type-C and Power Delivery specifications allow platforms equipped with USB Type-C ports to negotiate

More information

CH7213A Brief Datasheet

CH7213A Brief Datasheet Chrontel Brief Datasheet USB Type-C Logic Controller FEATURES Compliant with Type-C Specification Revision 1.2 Compliant with the Power Delivery Specification Revision 2.0, Version 1.1 Supports VESA DisplayPort

More information

EZ-PD CCG2: USB Type-C Cable Controller With PD

EZ-PD CCG2: USB Type-C Cable Controller With PD Quick Presentation: EZ-PD CCG: USB Type-C Cable Controller With PD CCG = Type-C Controller Gen Type-C = Reversible Slim USB Connector PD = Power Delivery Build Your USB Type-C Cable With EZ-PD CCG, An

More information

Make the User Happy: Interoperability Do's and Don'ts

Make the User Happy: Interoperability Do's and Don'ts Make the User Happy: Interoperability Do's and Don'ts Benson Leung Software Engineer, Chrome OS, Google Inc Taipei, Taiwan October 24 25, 2017 1 Session Agenda Don't Start With Legacy Turn Off Unused Features

More information

USB Type C MST Charging Dock

USB Type C MST Charging Dock C S V- 1 5 6 0 USB Type C MST Charging Dock Compatible with USB 3.0/2.0 specification Single Screen Setup: - HDMI resolution up to 3840 x 2160 @ 30Hz - DisplayPort resolution up to 3840 x 2160 @ 30Hz Dual

More information

1 Introduction Overview Quick Start Circuit Description Port Setting...5

1 Introduction Overview Quick Start Circuit Description Port Setting...5 PI5USB30216C Demo Board Rev.A User Manual by Justin Lee Table of Contents 1 Introduction...2 2 Overview...2 3 Quick Start...4 4 Circuit Description...5 4.1 Port Setting...5 4.2 Mode Selection, I2C Address

More information

PI5USB30213A Application Information

PI5USB30213A Application Information PI5USB30213A Application Information Diodes Incorporated (Milpitas office) Table of Contents 1 Introduction... 2 2 Why PI5USB30213A in USB3.1 Gen1 Type-C Application... 2 2.1 Type-C Port Channel Budget...

More information

Technical Guide. USB 3.1 xhci-based Certification Platform. USB-IF USB 3.1 Peripheral Development Kit: USB3.1 certification Platform.

Technical Guide. USB 3.1 xhci-based Certification Platform. USB-IF USB 3.1 Peripheral Development Kit: USB3.1 certification Platform. Technical Guide USB-IF USB 3.1 Peripheral Development Kit: USB3.1 certification Platform USB 3.1 xhci-based Certification Platform January 26, 2018 Revision 2.0 About this Document Content Owner Author

More information

CH7214C Brief Datasheet

CH7214C Brief Datasheet Chrontel Brief Datasheet USB Type C Logic Controller FEATURES GENERAL DESCRIPTION Compliant with USB Type-C Cable and Connector Specification Revision 1.2 Compliant with the latest Power Delivery Specification

More information

Technical Guide. USB 3.1 xhci-based Certification Platform. USB-IF USB 3.1 Peripheral Development Kit: USB3.1 certification Platform.

Technical Guide. USB 3.1 xhci-based Certification Platform. USB-IF USB 3.1 Peripheral Development Kit: USB3.1 certification Platform. Technical Guide USB-IF USB 3.1 Peripheral Development Kit: USB3.1 certification Platform USB 3.1 xhci-based Certification Platform March 13, 2018 Revision 2.1 About this Document Content Owner Author Approval

More information

DisplayPort Compliance Test Update

DisplayPort Compliance Test Update DisplayPort Compliance Test Update Katsuhiro Watanabe Granite River Labs kwatanabe@graniteriverlabs.com Agenda DP/DPC 1.4 Compliance Test DP 1.4 up-to-date requirements DP/DPC 1.4 Electrical Test Method

More information

PI5USB30213AXEA Demo Board Rev.B User Manual

PI5USB30213AXEA Demo Board Rev.B User Manual PI5USB30213AXEA Demo Board Rev.B User Manual Table of Contents 1 Introduction... 2 2 Overview... 2 3 Quick Start... 4 3.1 Source(DFP) Mode... 4 3.2 Battery-powered Sink(UFP) Mode... 5 3.3 Bus-powered Sink(UFP)

More information

DISPLAYPORT TECHNOLOGY UPDATE. Jim Choate VESA Compliance Program Manager June 15, 2017

DISPLAYPORT TECHNOLOGY UPDATE. Jim Choate VESA Compliance Program Manager June 15, 2017 DISPLAYPORT TECHNOLOGY UPDATE Jim Choate VESA Compliance Program Manager June 15, 2017 Agenda VESA Overview DisplayPort 1.4 Early Certification DisplayPort over USB-CTM Certification Summary 2 VESA OVERVIEW

More information

PI5USB30216DXUA Demo Board Rev.B User Manual

PI5USB30216DXUA Demo Board Rev.B User Manual PI5USB30216DXUA Demo Board Rev.B User Manual Table of Contents Measurement by: NA Report by: Lee, Justin 1 Introduction... 2 2 Overview... 2 3 Quick Start... 4 3.1 Source(DFP) Mode... 4 3.2 Battery-powered

More information

USB-C Multiport Travel Dock with Video, USB, Ethernet and 60W Power Delivery. Model

USB-C Multiport Travel Dock with Video, USB, Ethernet and 60W Power Delivery. Model with Video, USB, Ethernet and 60W Power Delivery Model 201031 Check for Windows Thunderbolt 3 driver information at http://kb.cablematters.com User Manual email: support@cablematters.com Table of Contents

More information

Dual-Monitor USB-C Dock for Windows Laptops - MST - Power Delivery - 4K

Dual-Monitor USB-C Dock for Windows Laptops - MST - Power Delivery - 4K Dual-Monitor USB-C Dock for Windows Laptops - MST - Power Delivery - 4K Product ID: MST30C2DPPD Here s a must-have accessory for your USB-C equipped Windows based laptop. This dual-monitor docking station

More information

USB Type-C and Power Delivery Nucleo pack with NUCLEO-F072RB expansion board based on the STUSB1602

USB Type-C and Power Delivery Nucleo pack with NUCLEO-F072RB expansion board based on the STUSB1602 P-NUCLEO-USB002 Data brief USB Type-C and Power Delivery Nucleo pack with NUCLEO-F072RB expansion board based on the STUSB1602 Features 32-bit ARM Cortex -M0-based microcontroller STM32F072RB with 128

More information

AN CBTL08GP053 Programmer's Guide. Document information. Keywords Abstract

AN CBTL08GP053 Programmer's Guide. Document information. Keywords Abstract Rev. 1 18 June 2015 Application note Document information Info Content Keywords Abstract USB Type-C, multiplexer, switch, USB 3.1, DP 1.3, DP++, PCIe 3.0, I 2 C This document describes the application

More information

I/O System for the PSYONIC Advanced Bionic Hand. Team 28 Byron Hopps and Steven Sun ECE 445 Senior Design Fall 2017

I/O System for the PSYONIC Advanced Bionic Hand. Team 28 Byron Hopps and Steven Sun ECE 445 Senior Design Fall 2017 I/O System for the PSYONIC Advanced Bionic Hand Team 28 Byron Hopps and Steven Sun ECE 445 Senior Design Fall 2017 Background PSYONIC is a startup at the University of Illinois working on bringing low-cost

More information

4-Port USB Hub - USB USB-A to 3x USB-A and 1x USB-C - Includes Power Adapter

4-Port USB Hub - USB USB-A to 3x USB-A and 1x USB-C - Includes Power Adapter 4-Port USB Hub - USB 3.0 - USB-A to 3x USB-A and 1x USB-C - Includes Power Adapter Product ID: HB30A3A1CSFS Here s an easy way to connect a wider range of peripherals to your laptop. This TAA compliant

More information

Getting started with the STM32 Nucleo pack for USB Type-C and Power Delivery with the Nucleo-F072RB board and the STUSB1602

Getting started with the STM32 Nucleo pack for USB Type-C and Power Delivery with the Nucleo-F072RB board and the STUSB1602 User manual Getting started with the STM32 Nucleo pack for USB Type-C and Power Delivery with the Nucleo-F072RB board and the STUSB1602 Introduction The USB Type-C and Power Delivery Nucleo pack P-NUCLEO-USB002

More information

Introduction to USB Type-C & Power Delivery

Introduction to USB Type-C & Power Delivery Introduction to USB Type-C & Power Delivery Focus on Charging Applications Deric Waters, System Engineer Agenda Introduction to USB Type-C and Power Delivery Detailed discussion of a USB Type-C universal

More information

Universal Serial Bus Type-C (USB Type-C) Functional Test Specification Chapters 4 and 5

Universal Serial Bus Type-C (USB Type-C) Functional Test Specification Chapters 4 and 5 Universal Serial Bus Type-C (USB Type-C) Functional Test Specification Chapters 4 and 5 Date: October 26May 28, 2018 Revision: 0.7980 Compliance Rev 0.7980 Copyright 2016-2018, USB Implementers Forum,

More information

USB Type-C and Power Delivery Nucleo pack with NUCLEO-F072RB expansion board based on STUSB1602. Description

USB Type-C and Power Delivery Nucleo pack with NUCLEO-F072RB expansion board based on STUSB1602. Description USB Type-C and Power Delivery Nucleo pack with NUCLEO-F072RB expansion board based on STUSB1602 Data brief Specifications USB type-c cable and connector spec. (rev 1.2) USB Power Delivery spec. (rev 2.0)

More information

Dual-Monitor USB-C Dock for Windows - 4x USB 3.0 Ports

Dual-Monitor USB-C Dock for Windows - 4x USB 3.0 Ports Dual-Monitor USB-C Dock for Windows - 4x USB 3.0 Ports Product ID: MST30C2DPPD Enhance your productivity by turning your Windows based USB-C laptop into a full-scale workstation. This dual-monitor USB-C

More information

USB-C MST Docking Station with PD 60W. User Manual DSH-410C3

USB-C MST Docking Station with PD 60W. User Manual DSH-410C3 USB-C MST Docking Station with PD 60W User Manual DSH-410C3 Table of Contents SAFETY INSTRUCTIONS COPYRIGHT, TRADEMARKS REGULATORY COMPLIANCE FCC CONDITIONS CE, WEEE INFORMATION INTRODUCTION FEATURES PACKAGE

More information

QuadraMAX USB Type-C and PD Tests

QuadraMAX USB Type-C and PD Tests 2/13/2019 QuadraMAX USB Type-C and PD Tests Testing Manual Introduction The USB-IF Compliance Program uses the QuadraMAX hardware unit for USB Type-C and PD Source Power Tests (Source Tests), USB Type-C

More information

How to upgrade the firmware on the STEVAL-USBC2DP USB Type-C to DisplayPort adapter

How to upgrade the firmware on the STEVAL-USBC2DP USB Type-C to DisplayPort adapter UM378 User manual How to upgrade the firmware on the STEVAL-USBCDP USB Type-C to DisplayPort adapter Introduction The STSW-USBCDP software package contains application firmware in binary and in.dfu file

More information

USB C DOCKING STATION

USB C DOCKING STATION USER MANUAL USBC2000 USB C DOCKING STATION 24/7 AT OR VISIT BLACKBOX.COM 4K@30Hz TABLE OF CONTENTS 1. SPECIFICATIONS... 3 2. OVERVIEW... 4 2.1 Introduction...4 2.2 Features...4 2.3 What s Included...5

More information

Automotive USB Type-C Charging Trends and Challenges

Automotive USB Type-C Charging Trends and Challenges Automotive USB Type-C Charging Trends and Challenges Power Interface Jim Bird (james_bird@ti.com) Tina Liang (tina-liang@ti.com) TI Training TI Training - Summary Automotive USB Type-C Charging Trends

More information

USB-C Bridge for PDUSB Hubs and Charge-Through

USB-C Bridge for PDUSB Hubs and Charge-Through USB- Bridge for PDUSB Hubs and harge-through Terrance Shih terranceshih@via-labs.com.tw Developer Days 2017 Taipei 1 Agenda: USB- Bridge for PDUSB Hubs and harge-through USB Type- Bridge Specification

More information

IP2716. Feature. Applications. Description. USB TYPE-C PD3.0 QC3.0/2.0/MTK High Voltage Charger Protocol Controller

IP2716. Feature. Applications. Description. USB TYPE-C PD3.0 QC3.0/2.0/MTK High Voltage Charger Protocol Controller USB TYPE-C PD3.0 QC3.0/2.0/MTK High Voltage Charger Protocol Controller Feature USB TYPE-C Integrate TYPE-C DRP protocol Auto detect TYPE-C device plug in or plug out Auto detect the capability of the

More information

UM NXP USB Type-C Shield 2 Demo Kit User Manual COMPANY PUBLIC. Document information

UM NXP USB Type-C Shield 2 Demo Kit User Manual COMPANY PUBLIC. Document information Document information Information Content Keywords USB Type-C, PD (power delivery), Alt-mode-DP, Host, Dock, Shield, PTN5110, PTN5110N Abstract This user manual presents demonstration / application kit

More information

Dual-Monitor USB-C Docking Station - Dual DisplayPort - 2.5" SATA SSD/HDD Drive Bay - MST and 60W Power Delivery - 4K

Dual-Monitor USB-C Docking Station - Dual DisplayPort - 2.5 SATA SSD/HDD Drive Bay - MST and 60W Power Delivery - 4K Dual-Monitor USB-C Docking Station - Dual DisplayPort - 2.5" SATA SSD/HDD Drive Bay - MST and 60W Power Delivery - 4K Product ID: MST30C2HDPPD This dual-monitor USB-C docking station adds valuable data

More information

UM2051 User manual. Getting started with the STM32 Nucleo pack for USB Type-C and Power Delivery. Introduction

UM2051 User manual. Getting started with the STM32 Nucleo pack for USB Type-C and Power Delivery. Introduction User manual Getting started with the STM32 Nucleo pack for USB Type-C and Power Delivery Introduction The STM32 Nucleo pack for USB Type-C and Power Delivery (P-NUCLEO-USB001) is a kit based on a NUCLEO-F072RB

More information

MCUXpresso SDK USB Power Delivery

MCUXpresso SDK USB Power Delivery NXP Semiconductors Document Number: Quick Start Guide Rev. 1.0, 04/2017 MCUXpresso SDK USB Power Delivery 1. Introduction Today many devices charge or get their power from USB port connected in laptops,

More information

CTO Hour. Rahman Ismail Intel Corporation. USB Developer Days 2017 Taipei, Taiwan October 24 25, 2017

CTO Hour. Rahman Ismail Intel Corporation. USB Developer Days 2017 Taipei, Taiwan October 24 25, 2017 CTO Hour Rahman Ismail Intel Corporation USB Developer Days 2017 Taipei, Taiwan October 24 25, 2017 1 Agenda USB Type-C TM Vision Next Gen USB Display Demo Auth 2.0 & Secure FW Update What about Embedded

More information

End Product Cable Test Plan

End Product Cable Test Plan USB Type-C End Product Cable Test Plan December 30, 2015 Rev: 0.7 Introduction USB Type-C cables may be Electronically Marked and support an array of USB and Vendor Defined functionalities. A cable may

More information

USB-C to DVI Multiport Adapter with Power Delivery. Model

USB-C to DVI Multiport Adapter with Power Delivery. Model USB-C to DVI Multiport Adapter with Power Delivery Model 201049 Check for Thunderbolt 3 driver information at http://kb.cablematters.com User Manual email: support@cablematters.com Table of Contents 1.

More information

FUSB302GEVB. FUSB302 Type-C Interface Detection Solution Evaluation Board User's Manual

FUSB302GEVB. FUSB302 Type-C Interface Detection Solution Evaluation Board User's Manual FUSB302 Type-C Interface Detection Solution Evaluation Board User's Manual This user guide supports the evaluation kit for the FUSB302 It should be used in conjunction with the FUSB302 data sheets as well

More information

SD4800P USB-C Triple Video Dock

SD4800P USB-C Triple Video Dock SD4800P USB-C Triple Video Dock Part Number: K38249NA UPC Code: 8589638249 Let the leader in professional desktop performance make the most of your laptop s USB-C connectivity. With the Kensington SD4800P

More information

3-Port USB-C Hub with Power Delivery - USB-C to 3x USB-A - USB 3.0 Hub - White

3-Port USB-C Hub with Power Delivery - USB-C to 3x USB-A - USB 3.0 Hub - White 3-Port USB-C Hub with Power Delivery - USB-C to 3x USB-A - USB 3.0 Hub - White Product ID: HB30C3APDW This 3-port USB 3.0 hub lets you expand the functionality of your MacBook Pro, MacBook and other USB-

More information

USB Complete. The Developer's Guide Fifth Edition. Jan Axelson. Lakeview Research LLC Madison, WI 53704

USB Complete. The Developer's Guide Fifth Edition. Jan Axelson. Lakeview Research LLC Madison, WI 53704 USB Complete The Developer's Guide Fifth Edition Jan Axelson Lakeview Research LLC Madison, WI 53704 Contents Introduction 1 USB Basics 1 Uses and limits 1 Benefits for users 2 Benefits for developers

More information

Triple-4K Monitor USB-C Docking Station for Laptops - 60W USB Power Delivery

Triple-4K Monitor USB-C Docking Station for Laptops - 60W USB Power Delivery Triple-4K Monitor USB-C Docking Station for Laptops - 60W USB Power Delivery Product ID: DK30CH2DPPD This USB-C docking station for MacBook and Windows laptops takes productivity to a whole new level,

More information

USB and USB On The Go. May 28, 2003 Paul E. Berg MCCI

USB and USB On The Go. May 28, 2003 Paul E. Berg MCCI USB and USB On The Go Paul E. Berg MCCI Why Use USB? Multiple USB devices can operate in very close proximity no interference in a limited spectrum USB offers a relatively high data throughput sustained

More information

Keysight Technologies How to Test USB Power Delivery (PD) Over Type-C

Keysight Technologies How to Test USB Power Delivery (PD) Over Type-C Keysight Technologies How to Test USB Power Delivery (PD) Over Type-C Keysight and Type-C: Create a faster path to done Application Note HARDWARE + SOFTWARE + PEOPLE = USB INSIGHTS 02 Keysight How to Test

More information

3-Port USB-C Hub with Power Delivery - USB-C to 3x USB-A - USB 3.0 Hub - White

3-Port USB-C Hub with Power Delivery - USB-C to 3x USB-A - USB 3.0 Hub - White 3-Port USB-C Hub with Power Delivery - USB-C to 3x USB-A - USB 3.0 Hub - White Product ID: HB30C3APDW This TAA compliant 3-port USB 3.0 hub lets you expand the functionality of your MacBook Pro, MacBook

More information

USB Implementers Forum Compliance Document USB 2.0 Interoperability and EHCI Test Procedures

USB Implementers Forum Compliance Document USB 2.0 Interoperability and EHCI Test Procedures USB Implementers Forum Compliance Document USB 2.0 and EHCI Test Procedures Revision 1.2 January 2017 Table of Figures: Figure 1: USB 2.0 EHCI Configuration When Product Under Test is a Peripheral Figure

More information

DisplayPort Technology Update. Jim Choate VESA Compliance Program Manager June 11, 2015

DisplayPort Technology Update. Jim Choate VESA Compliance Program Manager June 11, 2015 DisplayPort Technology Update Jim Choate VESA Compliance Program Manager June 11, 2015 Agenda VESA Overview DisplayPort 1.3 DisplayPort TM over USB- C TM Overview Product implementacon solucons (Parade)

More information

USB-C Multiport Video Adapter with UHS-II Card Reader and Power Delivery. Model

USB-C Multiport Video Adapter with UHS-II Card Reader and Power Delivery. Model USB-C Multiport Video Adapter with UHS-II Card Reader and Power Delivery Model 201044 Check for Thunderbolt 3 Windows driver information at http://kb.cablematters.com User Manual email: support@cablematters.com

More information

Dual Monitor USB-C Dock - 60W Power Delivery - 4K

Dual Monitor USB-C Dock - 60W Power Delivery - 4K Dual Monitor USB-C Dock - 60W Power Delivery - 4K Product ID: DKWG30DPHPD This USB-C dock lets you transform your Windows 10 laptop into a full-sized workstation, connecting two external monitors (DisplayPort

More information

Table of contents. Technical white paper HP Elite Dock with Thunderbolt 3 & HP ZBook Dock with Thunderbolt 3 Features and troubleshooting

Table of contents. Technical white paper HP Elite Dock with Thunderbolt 3 & HP ZBook Dock with Thunderbolt 3 Features and troubleshooting Technical white paper HP Elite Dock with Thunderbolt 3 & HP ZBook Dock with Thunderbolt 3 Features and troubleshooting Table of contents First-time connection... 2 Best practice: docking/undocking... 3

More information

Dell Precision Dual USB Type-C Thunderbolt 3 Dock - TB18DC. User Guide

Dell Precision Dual USB Type-C Thunderbolt 3 Dock - TB18DC. User Guide Dell Precision Dual USB Type-C Thunderbolt 3 Dock - TB18DC User Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION:

More information

iw656 USB Power Delivery Controller for AC/DC Power Adapters 1 Description 2 Features 3 Applications

iw656 USB Power Delivery Controller for AC/DC Power Adapters 1 Description 2 Features 3 Applications 1 Description The iw656 is a USB Power Delivery (USB PD) interface controller which handles the communication between a Power Adapter and Mobile Device (MD). The controller enables the mobile device to

More information

UH3234. USB-C Multiport Dock with Power Pass-Through

UH3234. USB-C Multiport Dock with Power Pass-Through UH3234 USB-C Multiport Dock with Power Pass-Through The ultra-sleek ATEN USB-C Multiport Dock with Power Pass-Through is a one-step total upgrade for your laptop that provides all the extra expansion you

More information

Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows - Thunderbolt 3 Dock for MacBook Pro

Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows - Thunderbolt 3 Dock for MacBook Pro Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows - Thunderbolt 3 Dock for MacBook Pro Product ID: TB3DKDPMAWUE This cost-effective Thunderbolt 3 dock (without full Power Delivery) is

More information

5-Port USB 3.1 (10Gbps) Combo Card - 1x USB-C, 2x USB-A + 2x IDC (5Gbps) - PCIe

5-Port USB 3.1 (10Gbps) Combo Card - 1x USB-C, 2x USB-A + 2x IDC (5Gbps) - PCIe 5-Port USB 3.1 (10Gbps) Combo Card - 1x USB-C, 2x USB-A + 2x IDC (5Gbps) - PCIe Product ID: PEXUSB312EIC This 5-port USB 3.1 combo card makes it easy to add to the performance and connectivity of your

More information

USB Type-C & PD Dual 100W User Guide

USB Type-C & PD Dual 100W User Guide USB Type-C & PD Dual 100W User Guide Startup Procedure Note: Must have ON_Semiconductor_Setup.exe installed, as well as an active internet connection to download USB Serial Port drivers if necessary. Step

More information

Technical Leadership & Membership

Technical Leadership & Membership COM Express 2013 Technical Leadership & Membership Intel Intelligent Systems Alliance Associate Member PICMG Executive Member PC/104 Embedded Consortium Affiliate Member SFF-SIG Voting Member PXISA Sponsor

More information

USB3-FRM01. User s Manual

USB3-FRM01. User s Manual USB3-FRM01 User s Manual Windows, Windows2000, Windows NT and Windows XP are trademarks of Microsoft. We acknowledge that the trademarks or service names of all other organizations mentioned in this document

More information

By offering a range of USB port types, you can easily connect a variety of modern and legacy USB devices, both inside and outside your computer.

By offering a range of USB port types, you can easily connect a variety of modern and legacy USB devices, both inside and outside your computer. 5-Port USB 3.1 (10Gbps) Combo Card - 1x USB-C, 2x USB-A + 2x IDC (5Gbps) - PCIe StarTech ID: PEXUSB312EIC This 5-port USB 3.1 combo card makes it easy to add to the performance and connectivity of your

More information

USB Type-C Authentication

USB Type-C Authentication USB Type-C Authentication Stephanie Wallick Intel USB Developer Days 2017 Taipei, Taiwan October 24 25, 2017 1 USB Type-C Authentication Introduction Architecture Protocol Certificates 2 Specification

More information

Design Considerations for USB type C Power Delivery Brian King

Design Considerations for USB type C Power Delivery Brian King Design Considerations for USB type C Power Delivery Brian King 1 What will I get out of this session? Purpose: 1. Learn more about USB C Power Delivery (PD) requirements. 2. Understand architecture of

More information

Wireless (WiGig) or USB-C Dual-Monitor Docking Station for Laptops - Power Delivery

Wireless (WiGig) or USB-C Dual-Monitor Docking Station for Laptops - Power Delivery Wireless (WiGig) or USB-C Dual-Monitor Docking Station for Laptops - Power Delivery Product ID: DKWG30DPHPDU This versatile laptop docking station gives you the option to dock your laptop through either

More information

Design Kit Guide LC709511F Power Bank Controller ON Semiconductor Digital Solution BU Rev.O May.2018

Design Kit Guide LC709511F Power Bank Controller ON Semiconductor Digital Solution BU Rev.O May.2018 www.onsemi.com Design Kit Guide LC709511F Power Bank Controller ON Semiconductor Digital Solution BU Rev.O May.2018 Agenda - Summary - Searching Flow - Reference Hardware - Reference Software - Evaluation

More information

USB to USB-C Adapter with Power Delivery - USB-C to USB-A and USB-C - USB 3.0

USB to USB-C Adapter with Power Delivery - USB-C to USB-A and USB-C - USB 3.0 USB to USB-C Adapter with Power Delivery - USB-C to USB-A and USB-C - USB 3.0 Product ID: HB30C1A1CPD Dock your USB-C laptop using a USB 3.0 Type-A laptop docking station, with additional support for Power

More information

USB Type-C Power Delivery using STM32xx Series MCUs and STM32xxx Series MPUs

USB Type-C Power Delivery using STM32xx Series MCUs and STM32xxx Series MPUs Application note USB Type-C Power Delivery using STM32xx Series MCUs and STM32xxx Series MPUs Introduction USB Type-C Power Delivery technology simplifies the consumers' daily life. This new reversible

More information

The Role UEFI Technologies Play in ARM Platform Architecture

The Role UEFI Technologies Play in ARM Platform Architecture presented by The Role UEFI Technologies Play in ARM Platform Architecture Spring 2017 UEFI Seminar and Plugfest March 27-31, 2017 Presented by Dong Wei (ARM) Updated 2011-06- 01 UEFI Plugfest March 2017

More information

Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows

Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows Product ID: TB3DKDPMAW This Thunderbolt 3 dock is designed for users with Thunderbolt 3 port equipped MacBook Pro or Windows based laptops.

More information

HOW TO INTEGRATE NFC CONTROLLERS IN LINUX

HOW TO INTEGRATE NFC CONTROLLERS IN LINUX HOW TO INTEGRATE NFC CONTROLLERS IN LINUX JORDI JOFRE NFC READERS NFC EVERYWHERE 28/09/2017 WEBINAR SERIES: NFC SOFTWARE INTEGRATION PUBLIC Agenda NFC software integration webinar series Session I, 14th

More information

USB-C Multiport Travel Dock with Dual 4K HDMI and 60W Power Delivery. Model

USB-C Multiport Travel Dock with Dual 4K HDMI and 60W Power Delivery. Model USB-C Multiport Travel Dock with Dual 4K HDMI and 60W Power Delivery for Windows computers Model 201056 Check for Thunderbolt 3 driver information at kb.cablematters.com User Manual email: support@cablematters.com

More information

USB 3.1 Gen 1 USB-C to HDMI 4K Adapter with USB-A and USB-C PD Charging Ports, Thunderbolt 3 Compatible,

USB 3.1 Gen 1 USB-C to HDMI 4K Adapter with USB-A and USB-C PD Charging Ports, Thunderbolt 3 Compatible, USB 3.1 Gen 1 USB-C to HDMI 4K Adapter with USB-A and USB-C PD Charging Ports, Thunderbolt 3 Compatible, 4K @30Hz MODEL NUMBER: U444-06N-H4U-C Description The U444-06N-H4U-C USB 3.1 Gen 1 USB-C to HDMI

More information

Universal Docking Station, USB Type-C

Universal Docking Station, USB Type-C Universal Docking Station, USB Type-C Manual DA-70863 1. INTRODUCTION The fully functional universal docking station, USB type C from Digitus offers you everything to create a fully equipped workspace.

More information

2-Port USB 3.1 (10Gbps) Card - 1x USB-C, 1x USB- A - PCIe

2-Port USB 3.1 (10Gbps) Card - 1x USB-C, 1x USB- A - PCIe 2-Port USB 3.1 (10Gbps) Card - 1x USB-C, 1x USB- A - PCIe Product ID: PEXUSB311A1C This USB 3.1 card helps prepare you for the next generation of USB connectivity and performance. Now you can access USB

More information

USB-C Docking Station for Laptops - 4K HDMI - 85W Power Delivery - USB 3.0

USB-C Docking Station for Laptops - 4K HDMI - 85W Power Delivery - USB 3.0 USB-C Docking Station for Laptops - 4K HDMI - 85W Power Delivery - USB 3.0 Product ID: DK30CHDPD This USB-C dock gives you all the connections you need to turn your USB-C enabled laptop or tablet into

More information

Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows - 85W Power Delivery

Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows - 85W Power Delivery Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows - 85W Power Delivery Product ID: TB3DK2DPPDUE This Thunderbolt 3 dual-monitor docking station is the first Thunderbolt docking station

More information

Maximize your workspace Docking Transition Guide

Maximize your workspace Docking Transition Guide Maximize your workspace Switch to USB-C docks today and reap the many benefits of USB-C With USB-C setting a new standard for transmitting data, video, audio and power, Dell has designed a comprehensive

More information

USB Technology Update. Brad Saunders, USB Promoter Group Chairman Jeff Ravencraft, USB-IF President & COO Rahman Ismail, USB-IF CTO

USB Technology Update. Brad Saunders, USB Promoter Group Chairman Jeff Ravencraft, USB-IF President & COO Rahman Ismail, USB-IF CTO USB Technology Update Brad Saunders, USB Promoter Group Chairman Jeff Ravencraft, USB-IF President & COO Rahman Ismail, USB-IF CTO The New USB Technologies New USB technologies provide a single source

More information

Windows 10 IoT Core Azure Connectivity and Security

Windows 10 IoT Core Azure Connectivity and Security Windows 10 IoT Core Azure Connectivity and Security Published July 27, 2016 Version 1.0 Table of Contents Introduction... 2 Device identities... 2 Building security into the platform... 3 Security as a

More information

USB Power Delivery Tester Users Guide

USB Power Delivery Tester Users Guide USB Power Delivery Tester Users Guide Model PM110 Rev 1 Document Edition: 1.0 Date: 18 April 2018 Web site: www.passmark.com USB Power Delivery Tester User s Guide Page 1 Table of Contents Introduction...

More information

Dual 4K 60Hz Monitor Thunderbolt 3 Dock with 6x USB 3.0 Ports

Dual 4K 60Hz Monitor Thunderbolt 3 Dock with 6x USB 3.0 Ports Dual 4K 60Hz Monitor Thunderbolt 3 Dock with 6x USB 3.0 Ports Product ID: TB3DOCK2DPPD Easily transform your Thunderbolt 3 equipped MacBook Pro or Windows laptop into a dual-4k workstation with up to 40Gbps

More information

Up to 2x 100% The power to get ahead DELL USB-C DOCKING SOLUTIONS

Up to 2x 100% The power to get ahead DELL USB-C DOCKING SOLUTIONS The power to get ahead DELL USB-C DOCKING SOLUTIONS Get up and running fast with Dell s most powerful, most compatible and most manageable docks. Up to 2x more powerful than the industry standard at 130W*

More information

USB Technology Update

USB Technology Update USB Technology Update IDF Shenzhen 2014 Jeff Ravencraft, USB-IF President and COO Rahman Ismael, USB-IF USB-IF Compliance Committee chair Agenda Delivering a Single Cable Solution SuperSpeed USB USB Power

More information