Brightstar USB Devices Driver Download



  • USB™ multi-port adapters with Ethernet connectivity and some Ethernet adapters are not compatible at this time (due to IC design). Click here for more information. The display driver does not support Mac® computers with the M1 processor at this time, contact your computer manufacturer to verify if your computer supports the display driver.
  • A library of over 250,000 device drivers, firmware, BIOS and utilities for Windows.
-->

Download the USBDRVEN driver file from the Sony® Support Web site. NOTE: Save this file to the desktop. When the download completes, on the computer desktop, double-click the USBDRVEN icon. In the USB Driver Software window, click the OK button. NOTE: The driver will extract, and create a folder on the computer desktop named Sonyusb.

Summary

  • Registry keys that must be set by OEMs to define USB descriptors.

Applies to:

  • Windows 10

Last updated:

  • November 2015

OEMs must set several registry values to make sure that their device enumerates with the correct metadata when connected to a computer. These values specify device and configuration descriptors for the USB device-side drivers in Windows. OEMs that create and include their own interfaces must set additional registry values in order for their interfaces to be loaded and used.

Registry keys related to the device-side USB drivers are under:

HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFN

This topic describes settings for the preceding key and subkeys that define the device, configuration, and interface descriptors for the device.

USBFN registry key

Configuration information for the USB device are under:

HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFN

This table describes its subkeys. Some of them can be modified by OEMs. More information about the supported values for each subkey is provided in sections below.

SubkeyDescription
AlternatesThis subkey contains additional subkeys that describe an interface that has one or more alternate settings.
AssociationsThis subkey defines Interface Association Descriptors (IADs). Each IAD allows multiple interfaces to be grouped into a single function. Each subkey represents a different IAD and OEMs can modify the values for those subkeys.
DefaultThis subkey contains default values that are used to describe device-specific settings such as the VID and PID. This is a Microsoft-owned subkey whose values are overridden by those in the parent key.
ConfigurationsThis subkey contains additional subkeys that contain configuration descriptor values that are used during USB enumeration. For example, the standard test configuration might exist under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNConfigurationsTestConfig.
ConfigurationsDefaultThis is a Microsoft-owned subkey. It contains values for the default configuration. The interfaces in the default configuration are added before the current configuration present when the IncludeDefaultCfg value is set to 1 under the HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFN key.
InterfacesThis subkey contains additional subkeys that describe specific interface descriptors. For example, the IP over USB interface may reside under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNInterfacesIpOverUsb. The name of the interface subkey is also used as the hardware ID of the USBFN child device for loading the USBFn class driver. In the IP over USB example, the hardware ID of the USBFN child device will be USBFNIpOverUsb.

This table describes the values that OEMs can define in the HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFN key. Values that are not defined in this key assume the default values defined by Microsoft under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNDefault.

All OEMs must set the idVendor, idProduct, ManufacturerString, and ProductString values. OEMs that create and add their own interfaces must also set CurrentConfiguration to the name of the subkey under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNConfigurations that includes their interfaces in the InterfaceList.

ValueTypeOwnerDescription
IncludeDefaultCfgREG_DWORDOEMSet to 1 when OEMs want to include the interfaces of the Default configuration such as IpOverUsb or MTP.
idVendorREG_DWORDOEMThe vendor identifier for the device descriptor that is sent to the host during enumeration.
idProductREG_DWORDOEMThe product identifier for the device descriptor that is sent to the host during enumeration.
ManufacturerStringREG_SZOEMThe manufacturer string that is sent to the host to identify the manufacturer of the device.
ProductStringREG_SZOEMA string that describes the device as a product. The default value is Windows 10 Mobile Device. This value is used as the display name of the device in the connected computer's user interface. OEMs should make sure that this value matches the value of the PhoneModelName value under the DeviceTargetingInfo subkey.
iSerialNumberREG_DWORDOEMIf this value is set to 0, then the device does not have a serial number. If this value is non-zero or does not exist, then the serial number is generated uniquely per device.
CurrentConfigurationREG_SZOEMThis string must correspond to the name of a configuration subkey. This string determines which configuration to use to build a configuration descriptor for USB device enumeration.

USBFNConfigurations registry key

This table describes the values that OEMs can define for subkeys under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNConfigurations. Each subkey represents a different USB configuration. If the OEM wants to create their own interface, the OEM must define a new configuration which contains the interfaces to be used. To do this, create a subkey under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNConfigurations that uses the name of the configuration and populate the subkey with the values in this table. Additionally, for the USB driver to use the new configuration, the CurrentConfiguration value (described in the preceding table) must be set to the name of the configuration subkey.

ValueTypeOwnerDescription
InterfaceListREG_MULTI_SZOEM or Microsoft

Contains a list of interface names that correspond to interface subkeys under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNInterfaces, the IAD associations defined under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNAssociations, and the alternate interfaces defined under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNAlternates. Those keys determine the interfaces that are used to describe the composite configuration descriptor.

If the IncludeDefaultCfg value under the HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFN key is set to 1, this list is appended to the Microsoft-owned default interface list to create the complete interface list that the device will use to enumerate.

MSOSCompatIdDescriptorREG_BINARYOEM or Microsoft

Optional. Defines an Extended Compat ID OS Feature Descriptor for the configuration. If the IncludeDefaultCfg value under the HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFN key is set to 1, the functions in this descriptor are appended to the functions and interfaces in the default configuration.

USBFNInterfaces registry key

This table describes the values that OEMs can modify for subkeys under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNInterfaces.

Devices

Brightstar Usb Devices Driver Download Windows 10

Each subkey represents a different USB interface. To define an interface, create a subkey under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNInterfaces using the name of the interface, and populate it with the values in the table below. Additionally, an interface will only be included if the interface is part of the InterfaceList of the CurrentConfiguration.

ValueTypeOwnerDescription
InterfaceDescriptorREG_BINARYOEM or MicrosoftA binary representation of an interface descriptor to send to the host during USB enumeration. The bInterfaceNumber and iInterface values are automatically populated by the USB function stack after compiling a full configuration descriptor to avoid conflicts with other interface descriptors.
InterfaceGUIDREG_SZOEM or MicrosoftA GUID that uniquely identifies an interface on the bus.
InterfaceNumberREG_DWORDOEM or MicrosoftOptional. This value is used to assign a fixed interface number to a function. Interface numbers 0-1F are reserved for legacy functions, 20-3F are reserved for Microsoft, and 40-5F are reserved for use by OEMs.
MSOSExtendedPropertyDescriptorREG_BINARYOEM or MicrosoftOptional. Defines an Extended Property OS Feature Descriptor for the interface.

USBFNAlternates registry key

The alternates subkey is used to define a single interface that has one or more alternate interfaces. This table describes the values that OEMs can modify for subkeys under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNAlternates.

Each subkey represents a different interface. To define an interface with alternate settings, create a subkey under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNAlternates by using the name of the interface, and populate it with the values in the table below.

ValueTypeOwnerDescription
InterfaceListREG_MULTI_SZOEM or MicrosoftA list of two of more interface names that correspond to interfaces defined under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNInterfaces. That key collectively defines an interface with alternate settings. The first interface corresponds to alternate setting 0, the second interface corresponds to alternate setting 1, and so on.
InterfaceNumberREG_DWORDOEM or MicrosoftOptional. This value is used to assign a fixed interface number to a function. Interface numbers 0-1F are reserved for legacy functions, 20-3F are reserved for Microsoft, and 40-5F are reserved for use by OEMs.
MSOSExtendedPropertyDescriptorREG_BINARYOEM or MicrosoftOptional. Defines an Extended Property OS Feature Descriptor for the interface.

USBFNAssociations registry key

OEMs can specify associations by defining Interface Association Descriptors (IADs). Each IAD allows multiple interfaces to be grouped into a single function. This table describes the values that OEMs can modify for subkeys under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNAssociations.

Each subkey represents a different IAD. To define an association, create a subkey under HKEY_LOCAL_MACHINESystemCurrentControlSetControlUSBFNAssociations by using the name of the IAD, and populate it with the values in the table below.

ValueTypeOwnerDescription
InterfaceListREG_MULTI_SZOEM or MicrosoftA list of interfaces or alternate interfaces that are associated with a USB function. If the size of the list is less than 2, then the function driver stack fails to load. Other functions or interfaces continue to load.
bFunctionClassREG_DWORDOEM or MicrosoftThe class code of the function, set to 02.
bFunctionSubClassREG_DWORDOEM or MicrosoftThe subclass code of the function, set to 0d.
bFunctionProtocolREG_DWORDThe protocol code of the function, set to 01.
MSOSExtendedPropertyDescriptorREG_BINARYOEM or MicrosoftOptional. Defines an Extended Property OS Feature Descriptor for the interface.

Use case: Enabling MirrorLink

MirrorLink is an interoperability standard that allows integration between mobile devices and car infotainment systems. The device must expose a USB CDC NCM interface to the MirrorLink client. As a Communications Device Class (CDC) device, it is required to describe the data interfaces by using either an Interface Association Descriptor (IAD) and/or a CDC Function Union Descriptor.

To enable MirrorLink connectivity on Windows 10 Mobile Device, OEM must make these changes to expose an IAD.

  • Create an association for the communication and data interfaces by using an Interface Association Descriptor (IAD) by setting registry values shown in the preceding table.

  • In addition to the registry settings, set this registry value to a non-zero value.

    ValueTypeOwnerDescription
    MirrorLinkREG_DWORDOEM or MicrosoftA non-zero value indicates the interface supports MirrorLink. The USB function stack does not stall the MirrorLink USB command.
  • Class-specific descriptors can be included in the interface descriptor set that is defined in the registry. The size field must be set in those descriptors so that USB function driver stack can parse them accurately.

Alternatively, a CDC Function Union Descriptor can also be defined as a Class-Specific Interface Descriptor; however, the interface numbers specified by the Union descriptor are static and are not be assigned by the USB function driver stack, and the presence of a Union descriptor does not cause the interfaces described by it to be associated with a single child PDO. An IAD is required for that association.

Related topics

USB device-side drivers in Windows
Developing Windows drivers for USB function controllers

Here you can find available USB Drivers for your BRIGHTSTAR Android phone and tablet. In this updated section, we try to help you find all types of downloads, links and help to connect your Android device to your PC.

What buttons can you find here?

In the section below you can find some buttons to download resources, go to official urls from manufacturers or read tutorials about how to install drivers of your Android phone or tablet in your PC.
We’ve marked every button with a different colour to let you understand easily the functionality of these buttons.
Read down the buttons what means every colour and you will get all the information required to get downloaded the drivers for your Android phone or tablet.

All Android USB Drivers for your Smartphone or Tablet

AVAILABLE DOWNLOAD OPTIONS

Brightstar Usb Devices Driver Download Windows 7






Automatic downloads from our server. If you click over them, automatically will be downloaded a driver installer for your Android brand. To know more information about these drivers you can visit our section “Tutorials”.
Green Buttons: Official download sites

Note that in these download centers you should look for your specific device and not a generic package. To do this you might need the model number or product reference which you can find in SETTINGS / ABOUT PHONE / MODEL NUMBER.
Orange Buttons: Generic Drivers developed by Third Parties

The yellow color buttons contain different tutorials that will help you install drivers in case you have doubts or if you have never installed one, we recommend that you read them before starting the installation.

Interesting links about Drivers

LEGAL NOTICE

Brightstar usb devices driver download windows 8Brightstar

Before using the downloadables on this pay read the Legal Notice and Privacy Policy