---
title: Plugin: Logitech Bulk Controller — Video Collaboration
---
This plugin can upgrade the firmware on Logitech Video Collaboration products (Rally Bar and RallyBar Mini), using USB bulk transfer.
The daemon will decompress the cabinet archive and extract a firmware blob in a packed binary file format.
This plugin supports the following protocol ID:
com.logitech.vc.proto
These devices use the standard USB DeviceInstanceId values, e.g.
USB\VID_046D&PID_089B
This plugin uses the following plugin-specific quirks:
Query the device at startup to see if we can use a larger buffer size.
Since: 1.9.7
The peripheral firmware is deployed when the device is in normal runtime mode, and the device will reset when the new firmware has been written.
There are two protocols in use, LogitechBulkcontrollerSendSync
and LogitechBulkcontrollerSendUpd
which correspond to the two different bulk endpoints.
The "Sync" interface accepts protobuf-formatted binary data as described in proto/
, encapsulated
further in a LogitechBulkcontrollerSendSyncReq
and returned as a LogitechBulkcontrollerSendSyncRes
.
The sequence IDs seem to be used to allow parallel queries, although in practice some of the IDs are hardcoded to zero even when setting them in the request.
There seems to be two possible flows when writing using the bulk "Sync" interface:
sequenceDiagram
Host->>+Device: Write
Device-->>-Host: Ack (Write)
Host->>+Device: Uninit
Device-->>-Host: Ack (Uninit)
Device->>+Host: Read
Host-->>-Device: Ack (Read)
Device->>+Host: Uninit
Host-->>-Device: Ack (Uninit)
or...
sequenceDiagram
Host->>+Device: Write
Device-->>-Host: Ack (Write)
Host->>+Device: Uninit
Device->>+Host: Read
Device-->>-Host: Ack (Uninit)
Host-->>-Device: Ack (Read)
Device->>+Host: Uninit
Host-->>-Device: Ack (Uninit)
Additionally, the device seems to force re-enumeration at random times, presumably restarting due to a protocol error or interface timeout.
The vendor ID is set from the USB vendor, in this instance set to USB:0x046D
This plugin requires read/write access to /dev/bus/usb
.
This plugin has been available since fwupd version 1.7.0
.
Anyone can submit a pull request to modify this plugin, but the following people should be consulted before making major or functional changes:
- Sanjay Sheth: @vcdmp