Our database contains 2 drivers for Qualcomm HS-USB Modem 9002. For uploading the necessary driver, select it from the list and click on ‘Download’ button. Please, assure yourself in the compatibility of the selected driver with your current OS just to guarantee its correct and efficient work.
- PHD HS-USB Modem 9002 Driver
- Qualcomm Hs-usb Modem 9002 Driver
- Phd Hs-usb Modem 9002 Driver Win 7
- Phd Hs-usb Modem 9002 Drivers
- Phd Hs-usb Modem 9002 Driver Windows 7
- Qualcomm Hs-usb Modem 9002 Driver Windows 7
View Amy Newton’s profile on LinkedIn, the world's largest professional community. Amy has 4 jobs listed on their profile. See the complete profile on LinkedIn and discover Amy’s connections. Choose Hardware tab. Click on Device Manager button. 4 Find your Qualcomm HS-USB Diagnostics 9002 device in the list and press double click on the modem device. Click Reinstall driver button. 5 Choose Install from the specific location and click on the Browse button. QUALCOMM HS-USB MODEM 9002 64BITS DRIVER DOWNLOAD. Update alcatel qualcomm, usb drivers windows. Gobi wireless modem, cdma wireless modem, qualcomm diagnostics interface, cdma wireless modem phone, qualcomm hs usb diagnostics, qualcomm device drivers quickly easily. Qualcomm hs-usb drivers for a cf-19 on windows 7. Introducing qualcomm snapdragon x24. To find the latest driver for your computer we recommend running our Free Driver Scan. Qualcomm HS-USB Modem 9092 - Driver Download. Vendor: Qualcomm Incorporated.
Drivers List for Qualcomm HS-USB Modem 9002Pages: 1 |
Pages: 1
All drivers on Windows 7 need to be signed. For some reason unknown to man, Qualcomm doesn't have a signed driver for their products, they leave it up to the OEM's.Fortunately, the INF file of existing drivers for Gobi can be tweaked to make it work with other QC devices. Here's the results of last weekend's anomolous (and anonymous) hacking...
First, the QC device enumerates as 3 devices, shown below. With no driver installed, it just says Qualcomm MSM.
So, we'll need to add a driver for each interface of the composite QC device. Next question is: what drivers? We can do a little more searching and find some unpublished documents, or better, use a good source like the Linux kernel.
http://lxr.linux.no/#linux+v2.6.37/drivers/usb/serial/qcserial.c
Looking here, we can see it's actually enumerated as 2 serial ports and 1 modem port. Alright, now we have all the information we need. Now it's time to plan our hack... Here's what we're gonna do.
- Find some signed Gobi drivers from any laptop OEM, such as Lenovo, that ships serial and modem drivers
- Modify the inf's for the modem device and the usb serial device .inf files to add the vid/pids we are interested in for our devices
- Point device manager to these drivers
Ok, on to the work... I spent some time searching for gobi drivers, and the ones I found first were from Lenovo. First come, first served, so let's use those. Download the drivers from Lenovo:
http://www-307.ibm.com/pc/support/site.wss/MIGR-69999.html
Run the extractor, and it will extract them to c:drivers. Navigate to this folder
C:DRIVERSWINWWANQLDriverSourceModule Retargetable FolderQCUSB-LenovoDriverPackageQualcommWin64AMD64

PHD HS-USB Modem 9002 Driver
Being smart, let's look at what was done with the Gobi driver. Looking in the modem and ser .inf files, we can see that interface _00 and _01 are the serial interfaces for diag and NMEA, and interface _02 is the modem interface. So, we need to add the modem interface to the qcmdmlno.inf file, and the serial interfaces for diag and NMEA to qcusbserlno.inf. IMPORTANT NOTE: these interfaces numbers can be different, this just happens to work for the chipset used in my device!

Qualcomm Hs-usb Modem 9002 Driver
Now we modify the .INF's. Let's do the MDM interface first. Edit qcmdmlno.inf (with VIM, of course!). Everywhere we find the PID used, we need to add another entry for our PID. For example, in my .INF file, because my PID is 9002, I added the following entries (see my diff below... for those not familiar with diffs, + is an added line)***************
*** 24,39 ****
--- 24,42 ----
[ControlFlags]
ExcludeFromSelect = *
[Models]
%QUALCOMM92022% = Modem2, USBVID_05C6&PID_9202&MI_02
+ %QUALCOMM90022% = Modem2, USBVID_05C6&PID_9002&MI_02
[Models.NTamd64]
%QUALCOMM92022% = Modem2, USBVID_05C6&PID_9202&MI_02
+ %QUALCOMM90022% = Modem2, USBVID_05C6&PID_9002&MI_02
[Models.NTia64]
%QUALCOMM92022% = Modem2, USBVID_05C6&PID_9202&MI_02
+ %QUALCOMM90022% = Modem2, USBVID_05C6&PID_9002&MI_02
[Modem2.NT]
CopyFiles=QCUsbDriverFiles
AddReg = All, MfgAddReg, Modem1.AddReg, USB
***************
*** 62,71 ****
--- 65,75 ----
[Strings]
QCUSBSER = 'Lenovo USB Device for Legacy Serial Communication'
QcomSrcDisk = 'Lenovo USB Driver Disk'
QUALCOMM = 'Qualcomm Incorporated'
QUALCOMM92022 = 'Qualcomm HS-USB Modem 9202'
+ QUALCOMM90022 = 'Qualcomm HS-USB Modem 9002'
[All]
HKR,FriendlyDriver,0,Unimodem.vxd
HKR,DevLoader,0,*vcomm
HKR,ConfigDialog,0,modemui.dll
So, add the above entries to the qcmdmLno.inf. Done. The driver should now load correctly for the modem interface.
Now let's move on to the USB serial ports for Diag and NMEA. Using the same approach, we will add the _00 and _01 ports the qcserlno.inf file. Below is what I did:
***************
*** 25,44 ****
--- 25,50 ----
[QcomSerialPortlno]
%QcomDevice92010% = QportInstall00, USBVID_05C6&PID_9201
%QcomDevice92020% = QportInstall00, USBVID_05C6&PID_9202&MI_00
%QcomDevice92021% = QportInstall00, USBVID_05C6&PID_9202&MI_01
+ %QcomDevice90020% = QportInstall00, USBVID_05C6&PID_9002&MI_00
+ %QcomDevice90021% = QportInstall00, USBVID_05C6&PID_9002&MI_01
[QcomSerialPortlno.NTia64]
%QcomDevice92010% = QportInstall00, USBVID_05C6&PID_9201
%QcomDevice92020% = QportInstall00, USBVID_05C6&PID_9202&MI_00
%QcomDevice92021% = QportInstall00, USBVID_05C6&PID_9202&MI_01
+ %QcomDevice90020% = QportInstall00, USBVID_05C6&PID_9002&MI_00
+ %QcomDevice90021% = QportInstall00, USBVID_05C6&PID_9002&MI_01
[QcomSerialPortlno.NTamd64]
%QcomDevice92010% = QportInstall00, USBVID_05C6&PID_9201
%QcomDevice92020% = QportInstall00, USBVID_05C6&PID_9202&MI_00
%QcomDevice92021% = QportInstall00, USBVID_05C6&PID_9202&MI_01
+ %QcomDevice90020% = QportInstall00, USBVID_05C6&PID_9002&MI_00
+ %QcomDevice90021% = QportInstall00, USBVID_05C6&PID_9002&MI_01
[QportInstall00.NT]
CopyFiles=QCUsbDriverFiles
AddReg = All00, AddReg
***************
*** 70,75 ****
--- 76,83 ----
QcomSrcDisk = 'Lenovo USB Driver Disk'
QUALCOMM = 'Qualcomm Incorporated'
QcomDevice92010 = 'Qualcomm HS-USB QDLoader 9201'
QcomDevice92020 = 'Qualcomm HS-USB Diagnostics 9202'
QcomDevice92021 = 'Qualcomm HS-USB NMEA 9202'
+ QcomDevice90020 = 'Qualcomm HS-USB Diagnostics 9002'
+ QcomDevice90021 = 'Qualcomm HS-USB NMEA 9002'
Again, this is for the PID's for my device. Your device may have a different PID. Add these to qcserlno.inf (or whichever driver set you hijacked).
Ok, now let's test this. Go through each interface in the Device Manager and update the driver. To do that:
Phd Hs-usb Modem 9002 Driver Win 7
- start device manager
- find the Qualcomm devices listed in the 'other devices' box as shown in the screenshot earlier
- right-click on each device, and select 'Update Driver Software'
- the next dialog box will be 'Update driver Software', select 'Browse my computer for driver software'
- Navigate to where you saved the drivers in 'update drivers' dialog
- Select 'Install this driver anway' when you are prompted about verifying the publisher of the driver
- Repeat for each device in the list (3 times, in my case)
Now let's test it! Right-click on the modem, and select properties, and select the 'Diagnostics' tab. Press the Query Modem button, wait a few seconds, and you should see a response come back that says 'success'. It works!
Phd Hs-usb Modem 9002 Drivers
Here's a link to the drivers + modified INF, zipped up, that some friends were kind enough to host.Phd Hs-usb Modem 9002 Driver Windows 7
http://www.bluelibris.com/files/signed_usb_drivers.zipQualcomm Hs-usb Modem 9002 Driver Windows 7
