summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-10-21netreg: Allow strength notifys at all timesAki Niemi1-8/+0
2010-10-21isimodem: Remove hack for notifying strengthAki Niemi1-10/+0
2010-10-21radio settings: Fix string to enum mappingAki Niemi1-4/+4
2010-10-21gisi: Add method for verifying any resourceMika Liljeberg2-6/+46
Add g_isi_verify_resource() function to GIsiClient for verifying the reachability of an arbitrary resource.
2010-10-21gisi: store object handle for associated serverMika Liljeberg3-0/+30
2010-10-21gisi: Allow subscribes towards any resourcesMika Liljeberg2-79/+153
Add methods to subscribe indications from an arbitrary resource. Configured resource id is treated as the default. Also added separate commit function for resource subscriptions in order to reduce the number of subscription messages sent to the modem.
2010-10-21gisi: make timeout optionalMika Liljeberg1-20/+31
2010-10-21gisi: Add sendto methods to GIsiClientMika Liljeberg2-11/+99
Add g_isi_vsendto() and g_isi_sendto() methods for sending messages to an arbitrary Phonet address.
2010-10-21gatchat: Fix missing return value for g_at_chat_set_slaveMarcel Holtmann1-1/+1
2010-10-21ifx: Use Infineon specific phonebook vendor quirkMarcel Holtmann1-1/+2
2010-10-21atmodem: Add support for IFX specific phonebook ready notificationMarcel Holtmann1-15/+50
2010-10-21atmodem: Use g_try_new0 when checking for the resultMarcel Holtmann1-1/+1
2010-10-21ifxmodem: Add skeleton for Infineon specific GPRS context driverMarcel Holtmann4-0/+50
2010-10-21gatchat: Add skeleton for GAtRawIP moduleMarcel Holtmann3-0/+181
This adds the basic skeleton for a GAtRawIP support. It is only the skeleton with its intended API. It has no raw IP support yet.
2010-10-21ifx: Assign GPRS DLCs as slaves of the network DLCMarcel Holtmann1-6/+11
2010-10-21gatchat: Add support for slave chat instancesMarcel Holtmann2-0/+34
This adds support to assign a slave chat instance to an existing chat instance. The slave chat is now additionally bound by the lifetime of its master chat instance. In case the master is cloned, the slave chat instance will also be cloned as well. With this it is possible to suspend the master while still have an active slave for notifications or extra commands.
2010-10-21ppp: Fix some coding style and memory leaksMarcel Holtmann1-16/+16
2010-10-21atmodem: Check for TUN/TAP support before enabling PPPMarcel Holtmann1-0/+13
2010-10-20stk: Support send ss responseYang Gu1-0/+2
2010-10-20stkutil: Add enum for additional error cause infoYang Gu1-0/+22
For terminal and supplementary services
2010-10-20radio settings: document FastDormancy propertyMika Liljeberg1-0/+22
2010-10-20radio-settings: Get rid of unneeded castsDenis Kenzior1-18/+22
2010-10-20radio-settings: Fixup various style issuesDenis Kenzior1-13/+14
2010-10-20isi: fix SMSPekka Pessi1-31/+60
Align read-params with update-params properly. Align and fill tpdu sub block in submit.
2010-10-20isi: fix SMSPekka Pessi1-37/+56
Read absence/presence flags from correct field. Try to avoid overwriting other SMS parameters but SCA address. Use g_isi_(v)send().
2010-10-20isi: fix hangup_active and set_udub methodsPekka Pessi1-24/+36
The concept of "active" call seems to be overloaded.
2010-10-20voicecall: Document driver methodsDenis Kenzior1-0/+43
2010-10-20isimodem: Fix setting SCA typeAki Niemi1-1/+1
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-19ifx: Wait for DLC creation to settle (internal multiplexer)Marcel Holtmann1-8/+31
When driving the Infineon modem with the builtin multiplexer there is a small race condition with setting up the channels and sending the first AT commands. The window here is pretty small, but it seems to be a modem firmware issue. In case the AT command is send right away it can happen that the modem does not process any further AT commands. In that case the setup is stuck and enabling the modem fails. Just adding a 10 milliseconds delay after DLC creation and before sending the first AT commands is enough to make this work smoothly.
2010-10-19sim: Read EFust and EFest after phase is knownDenis Kenzior1-11/+10
2010-10-19simfs: Don't cache if phase is unknownDenis Kenzior1-1/+4
2010-10-19sim: Fix setting the correct phase from EFphaseDenis Kenzior1-3/+18
2010-10-19phonesim: Add missing ATE0 when in multiplexer modeMarcel Holtmann1-0/+2
2010-10-19common: Fix mmi code to bearer class mappingsDenis Kenzior1-5/+17
MMI services 22, 21, 20 and 26 were mapped incorrectly. See the comment in the code for more information and the thread 'Call Barring and MMI Supplementary Service codes' on the oFono mailing list.
2010-10-19phonesim: Fix multiplexer setup handling and modem powerMarcel Holtmann1-0/+5
2010-10-19gatchat: Add support for skipping AT+CMUX speed parameterMarcel Holtmann1-8/+17
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-19TODO: Add CDMA support to SMS stackRajesh Kadhiravan Nagaiah1-0/+26
2010-10-18Release 0.32Marcel Holtmann2-1/+11
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-17ifx: Separate AT command from multiplexer debug settingMarcel Holtmann1-1/+1
2010-10-17test: Fix script for enabling delivery reportsMarcel Holtmann1-2/+2
2010-10-15TODO: Reset PPP Server task ownerDenis Kenzior1-1/+0
2010-10-15doc: update the supplementary services docsAlexander Kanavin1-3/+100
Document the various SS control string related APIs
2010-10-15atmodem: Remove workaround for SIM ready notifier removalMarcel Holtmann1-24/+4