summaryrefslogtreecommitdiffstats
path: root/drivers
AgeCommit message (Collapse)AuthorFilesLines
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
2010-09-27huaweimodem: Register for voice call specific notificationsMarcel Holtmann1-0/+85
2010-09-26huaweimodem: Add skeleton for simple voice call driverMarcel Holtmann3-0/+209
2010-09-26ifxmodem: Make SIM Toolkit envelope submission workMarcel Holtmann1-13/+8
2010-09-26calypsomodem: Make SIM Toolkit envelope submission work againMarcel Holtmann1-9/+4
2010-09-26mbmmodem: Add comment about optional response data backMarcel Holtmann1-0/+1
2010-09-26ifx: Fix double free issueDenis Kenzior1-1/+1
2010-09-26mbm: Make stk envelope submission work againDenis Kenzior1-10/+4
2010-09-25atmodem: Add special handling for Infineon SIM ready stateMarcel Holtmann1-16/+61
2010-09-25ifxmodem: Fix name of voice call driverMarcel Holtmann1-1/+1
2010-09-24atmodem: Add support for Infineon CNMA without PDUMarcel Holtmann1-1/+2
Seems like the Infineon modem can't handle a provided PDU to the CNMA command. So just leave it out.
2010-09-24atmodem: Add special handling of Infineon signal strength reportingMarcel Holtmann1-0/+30
The custom signal strength reporting could be done inside the modem plugin actually, but Calypso, Huawei etc. add quirks to the generic network registration driver. So for now do it the same way until this gets cleaned up for all modem plugins.
2010-09-24ifx: Take out the vendor field in voicecall driverDenis Kenzior1-2/+0
2010-09-24ifx: Assume CLIP always arrivesDenis Kenzior1-112/+1
If the CLIP always arrives after a CRING, then we do not ever need to poll CLCC.
2010-09-24ifx: Don't bother polling on an ATDDenis Kenzior1-14/+9
The core can handle stateless drivers that do not keep clip state, in the case of IFX we can skip the poll after ATD for finding out our CLIP and just keep it as invalid / obtained from COLP. The core should do the right thing.
2010-09-24atmodem: Update commentDenis Kenzior1-1/+1
2010-09-24ifxmodem: Reorder voicecall driver before all otherMarcel Holtmann2-4/+4
2010-09-24ifx: Update commentDenis Kenzior1-1/+1
2010-09-24ifx: xcallstat should notify active->heldDenis Kenzior1-12/+0
2010-09-23ifx: Remove a few CLCC pollsDenis Kenzior1-13/+1
Polling here is no longer needed due to XCALLSTAT
2010-09-23ifx: Don't bother using RINGDenis Kenzior1-29/+0
We enable CRC=1, so only CRING should be sent
2010-09-23ifx: IFX provides hangup_all and hangup_activeDenis Kenzior1-4/+12
2010-09-23ifx: IFX provides swap_without_accept using CHLD=6Denis Kenzior1-1/+7
2010-09-23ifx: No need to register to standard notificationsDenis Kenzior1-58/+0
XCALLSTAT tells us when a call has been disconnected
2010-09-23ifx: Use none_prefix on other init commandsDenis Kenzior1-4/+4
2010-09-23ifx: Add IFX proprietory XCALLSTAT indicatorDenis Kenzior1-0/+75
2010-09-23ifx: Copy voicecall driver from atmodemDenis Kenzior3-0/+903
IFX is a fairly bone stock AT based modem so the atmodem driver is a good start.
2010-09-23calypso: Provide hangup_all and hangup_activeDenis Kenzior1-2/+9
On Calypso, ATH hangs up all calls except waiting calls and CHUP hangs up only active calls, but not held or waiting.
2010-09-24atmodem: Add vendor quirk for Infineon modemsMarcel Holtmann1-0/+1