summaryrefslogtreecommitdiffstats
path: root/drivers
AgeCommit message (Collapse)AuthorFilesLines
2010-10-20atmodem: Decode and report time information from networkMarcel Holtmann1-4/+29
2010-10-20atmodem: Add skeleton for time update reportingMarcel Holtmann1-3/+51
2010-10-20ifxmodem: Signal STK session end only after normal ending of commandMarcel Holtmann1-1/+2
The Infineon modem returns more detailed information of the SIM Toolkit proactive sessions to the modem driver. A proactive session starts with the status response '91 xx' (proactive command pending) and ends with a status response response of '90 00' (normal ending of command) after Terminal Response. So only when receiving '90 00' result, the indication that the session has ended should be given to the core.
2010-10-19isimodem: Fix request cleanup codeAki Niemi15-59/+84
Adds a check for when the driver is being removed, in which case no new ISI requests should be generated.
2010-10-19ifxmodem: Fix missing result iter init call for SIM ToolkitMarcel Holtmann1-0/+2
2010-10-19ifxmodem: Enable SIM Toolkit with AT+CFUN=6Marcel Holtmann1-9/+6
The current Infineon firmware overloads the AT+CFUN command with enabling SIM Toolkit and fetching of proactive commands. It seems to be safe to send this command in offline mode (AT+CFUN=4) and also in online mode (AT+CFUN=1). These are the two cases where SIM Toolkit atom would be initialized.
2010-10-18atmodem: Add SIM ready quirk for IFX when entering PUKMarcel Holtmann1-13/+47
For the Infineon modem, also the PUK entering needs to be extended with a quirk to wait for the SIM ready notification.
2010-10-15atmodem: Remove workaround for SIM ready notifier removalMarcel Holtmann1-24/+4
2010-10-15sim: Use enums for EF valid / invalidated statusDenis Kenzior1-6/+12
2010-10-15isimodem: returns file-status of SIM EF-filePetteri Tikander1-4/+5
2010-10-15atmodem: returns file-status of SIM EF-filePetteri Tikander1-8/+13
2010-10-14isimodem: Fix copyright and license boilerplateAki Niemi32-418/+411
2010-10-14isimodem: Fix SMSC address update requestAki Niemi1-2/+2
2010-10-13atmodem: Send DTMF commands without quotesMarcel Holtmann1-4/+3
The AT+VTS command takes a single character and should not use quotes.
2010-10-13ifxmodem: Send DTMF commands without quotesMarcel Holtmann1-5/+4
The AT+VTS command takes a single character and should not use quotes.
2010-10-06isimodem/voicecall: fix hangup_activePekka Pessi1-4/+3
2010-10-05huaweimodem: Print the NDIS device node to be usedMarcel Holtmann1-0/+7
2010-10-05huaweimodem: Add error handling for too many ^DHCP failuresMarcel Holtmann1-1/+9
2010-10-01isimodem: Properly clean up audio settings driverAki Niemi1-1/+4
2010-10-01isimodem: Add support for audio settingsKai Vehmanen3-0/+155
The audio state is mapped directly to isimodem's call server status indications. When active, the modem speech path should be opened, and when closed, the modem speech path may be closed.
2010-10-01ifxmodem: Notify about audio settings modeMarcel Holtmann1-0/+7
2010-10-01audio: Update audio settings API for active notificationMarcel Holtmann2-5/+5
2010-09-30isimodem: Report GPRS detachAki Niemi1-3/+2
2010-09-30isimodem: Fix signal strength reportingAki Niemi1-0/+10
ISI modems send the signal strength indication before registration status changes, which causes the core to ignore initial signal strength values.
2010-09-30isimodem: remove generic modem driver partsPekka Pessi1-401/+0
The isimodem driver is now part of isigen (just like atmodem and atgen).
2010-09-30ifxmodem: Remove setting of XPROGRESS notificationsMarcel Holtmann1-2/+2
The XPROGRESS notifcations are now handled inside an Infineon specific audio settings driver. So no need to do that in the the voice call driver as well.
2010-09-30ifxmodem: Add support for audio settingsMarcel Holtmann3-0/+154
2010-09-29huaweimodem: Add support for audio settings interfaceMarcel Holtmann3-0/+135
2010-09-29huaweimodem: Add missing empty lineMarcel Holtmann1-0/+1
2010-09-29atmodem: Update IFX specific SIM ready checkingMarcel Holtmann1-2/+6
It seems that the XSIM notification doesn't really send SIM ready status. It sends ready to attach instead: > AT+CPIN="0000"\r < \r\nOK\r\n < \r\n+XLOCK: "PN",5,0,"PU",5,0,"PP",5,0,"PC",5,0,"PS",5,0\r\n < \r\n+XSIM: 7\r\n So either SIM ready or ready to attach is received more to the post_sim state.
2010-09-29huawei: Add release_specific to voicecallDenis Kenzior1-0/+9
2010-09-29atmodem: Remove quirk for Huawei voice call supportMarcel Holtmann1-4/+0
The Huawei voice call support has its own driver now. So this quirk is no longer needed.
2010-09-29huaweimodem: Implement hangup_active callback and not hangup_allMarcel Holtmann1-1/+1
2010-09-28ifx: ifx_chup should send a +CHUPDenis Kenzior1-1/+1
2010-09-27hso: Fix the username and password orderDenis Kenzior1-1/+1
QCPDPP apparently takes the password first, then username
2010-09-27ifxmodem: Enable audio related progress informationMarcel Holtmann1-0/+1
This is using AT+XPROGRESS=1 to enable the audio related notifications of the modem. None of these information is currently used. This command is only present to have these details show up in the debug logs.
2010-09-27isimodem: Return success on topic set/clearAki Niemi1-3/+3
The isimodem driver accepts all topics by default.
2010-09-27isimodem: Fix CBS decodingAki Niemi1-1/+9
2010-09-27huaweimodem: Handle option parameter on call end notificationMarcel Holtmann1-4/+4
2010-09-26huawei: Only notify for voice callsDenis Kenzior1-3/+5
2010-09-26huawei: Track alerting stateDenis Kenzior1-0/+17
2010-09-26huawei: Track outgoing callsDenis Kenzior1-3/+18
2010-09-26huawei: Notify the core on connect and end callDenis Kenzior1-0/+37
2010-09-27huaweimodem: Add voice call creation supportMarcel Holtmann1-1/+150
2010-09-27calypsomodem: Some cleanups in voice call driverMarcel Holtmann1-3/+7
2010-09-27stemodem: Some cleanups in voice call driverMarcel Holtmann1-3/+6
2010-09-27atmodem: Some cleanups in voice call driverMarcel Holtmann1-6/+6
2010-09-27ifxmodem: Two more cleanupsMarcel Holtmann1-2/+0
2010-09-27ifxmodem: Some cleanups in voice call driverMarcel Holtmann1-4/+6
2010-09-27huaweimodem: Allow GPRS context allocation to failMarcel Holtmann1-1/+5