The QC (QuickCharge) protocol



You might want to check the two related projects :


QC (Quick Charge) VS USB PD (Power Delivery)

Quick Charge and Power Delivery stand out as two prominent players, each with distinct features and specifications.

Quick Charge is often associated with Qualcomm Snapdragon-powered devices, while Power Delivery is more commonly found in a wide array of devices due to its open standard nature.

While both technologies aim to provide rapid charging, USB Power Delivery offers broader compatibility and versatility, especially with the rise of USB Type-C as a universal standard. However, Quick Charge remains popular for its efficiency and fast-charging capabilities in Qualcomm-powered devices. My choice of investigating QC is essentially linked to the USB connector (see below) and the pretty simple protocol.

Quick Charge

Quick Charge, developed by Qualcomm, utilizes a protocol that typically relies D+ and D- pins of USB Type-A or Type-C connectors. This also means that those communication lines are not available for actual USB communication when Quick Charge is used.

So :

*

(img credit Simon Eugster on wikipedia )

Power Delivery

On the other hand, Power Delivery (PD) is an open standard established by the USB Implementers Forum (USB-IF). It operates using the USB Type-C connector, which supports a versatile array of functions beyond charging, such as data transfer and video output. PD can negotiate power delivery between devices, allowing for a range of voltages and currents, through the additional USB wires/lines (. This flexibility makes it suitable for various devices, from smartphones to laptops and beyond.

So :

*

(img credit Chindi.ap on wikipedia )

The Quick Charge protocol

The CHY103 datasheet provide a good overview about the QC3 protocol : handshake and voltage selection. Voltages are selected based on three voltage levels applied to D+/D- pins :

  • 0V
  • 0.6V
  • 3.3V

CHY100 datasheet specifies voltage thresholds of 0.325V and 2V, so 0.6V is a safe (and generally documented) value for the “intermediary” voltage.

The QC protocol in brief :

QC2.0 voltages (fixed “standard” voltages) :

D+ D- Output
0.6V GND 5V
3.3V 0.6V 9V
0.6V 0.6V 12V
3.3V 3.3V 20V

NB : this table and QC protocol makes me think it would be feasible to “negociate” a fixed 12V voltage and seeing it using just 1 LED + 5 resistors (and no microcontroller at all…)! Will test is “soon”.

This should provide a near zero current through led when line = 5V, then set line to 12V and make the led get a 3.19mA when line is set (making it visible). Can’t wait to test that!


QC3.0 addition (0.2V steps) :

D+ D- Output
0.6V 3.3V enter continous mode
0.6V 0.6V (glitch) Decrease 0.2V
3.3V (glitch) 3.3V Increase 0.2V

After each glitch, the signals must return to “coutinous mode” (D+ = 0.6V, D-=3.3V). Glitches are 5ms in this code.

A more detailed explaination about the protocol and the code is documented in the arduino code commented head section.