summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-07-24udev: Add support for Huawei E398 modemsMarcel Holtmann1-0/+3
2011-07-24udev: Add detection support for Samsung LTE donglesMarcel Holtmann2-0/+40
2011-07-23udev: add support for Huawei CDMA dongles.Bertrand Aygon1-0/+2
2011-07-22mbm: Use at_util's cpin polling implementationDenis Kenzior1-43/+20
2011-07-22atmodem: Implement generic CPIN pollingDenis Kenzior2-0/+110
2011-07-22network: handle hfp operator change correctlyDenis Kenzior1-1/+2
2011-07-22cdmamodem: send AT+GCAP to check devinfo.Bertrand Aygon1-4/+6
2011-07-22udev: Fix whitespace damageMarcel Holtmann1-2/+2
2011-07-22udev: add support for SpeedUp CDMA dongles.Bertrand Aygon1-0/+2
2011-07-21voicecall: remove usage of em_atd_numberFrédéric Danis1-10/+9
as emulator atom can only run with a 'ready' SIM, use saved number instead of em_atd_number
2011-07-21hfp_ag: Minor style tweaksDenis Kenzior1-7/+6
2011-07-21hfp_ag: start server on sim 'ready' stateFrédéric Danis1-14/+55
update HFP AG server to start only when a modem has its SIM atom in 'ready' state and has voice call capability
2011-07-21cdma-connman: Update to the new driver APIGuillaume Zajac1-0/+9
2011-07-21cdma-connman: emit PropertyChanged signalDenis Kenzior1-2/+20
When Username / Password are changed, we should emit the PropertyChanged signal
2011-07-21cdma-connman: Add Username and Password propertiesGuillaume Zajac1-1/+47
2011-07-21cdma-connman: Add user/pass to driver activateGuillaume Zajac1-0/+5
Add username and password fields to cdma-connman's activate method.
2011-07-21TODO: add HFP 1.6 AG tasksFrédéric Danis1-0/+14
2011-07-21phonesim: Implement 'local' hfp driverDenis Kenzior1-22/+166
2011-07-21hfp_hf: Reorganize common code into hfpmodemDenis Kenzior9-282/+411
2011-07-21speedupcdma: Create skeleton for Speed Up CDMA modem supportGuillaume Zajac2-0/+213
2011-07-20ofono.rules: Add rules for Tata ZTE MF 631Bertrand Aygon1-0/+3
2011-07-20hfpmodem: Minor whitespace fixDenis Kenzior1-1/+1
2011-07-20doc: add username and password for CDMA PPP authentication.Bertrand Aygon1-0/+10
2011-07-19voicecall: Free settings when sim gets locked outDenis Kenzior1-1/+2
2011-07-19sim: Support SIM_STATE_LOCKED_OUTDenis Kenzior2-4/+7
2011-07-19include: Introduce a new SIM_LOCKED_OUT stateDenis Kenzior1-0/+1
This is the same as SIM_INSERTED state, except we have already queried the always-readable EFs
2011-07-19sim: Break out state notification into own methodDenis Kenzior1-19/+15
2011-07-19voicecall: close settings when SIM is removedFrédéric Danis1-0/+3
This also fixes the case where +BLDN uses an invalid number when the SIM is removed.
2011-07-19voicecall: fix callheld indicator for PTSFrédéric Danis1-0/+20
Fix PTS test TP/TWC/BV-03-I [Call Waiting- Hold Active/Retrieve Waiting Call or Held]. PTS test fails after receiving intermediate update of callheld indicator with value 0 (no held call) before it receives update to value 1 (active and held calls). This is due to the non-atomic update of calls status after call swap (moving first call to active state before moving second one to hold state). HFP 1.5 spec specifies that an update of callheld indicator to 1 should be sent after AT+CHLD=2 command. As oFono emulator sends +CIEV only if the indicator value changes, we need to use an intermediate state for callheld indicator (2, all calls on hold). So, in case of multiple active calls, or an active call with an active mutiparty call, force update of callheld indicator to 2.
2011-07-18ofono.rules: Add rules for Reliance ZTE MF 688Bertrand Aygon1-0/+3
2011-07-17Release 0.52Marcel Holtmann2-1/+7
2011-07-17connman: Handle D-Bus without fd passing supportMarcel Holtmann1-1/+7
2011-07-15build: Always compile unit testsMarcel Holtmann1-4/+5
2011-07-15stk: Fix crash seen in stk_alpha_id_unsetJeevaka Badrappan1-1/+6
If there is no default agent, then current agent also will be NULL. So, call stk_agent_request_cancel only when there is a valid current agent.
2011-07-15ifxmodem: add support for user_confirmation in stkJeevaka Badrappan1-0/+11
2011-07-15include: Add driver api for user confirmationJeevaka Badrappan1-0/+1
2011-07-14voicecall: Minor style fixDenis Kenzior1-5/+5
2011-07-14voicecall: dial_request_user_cancel is not safeDenis Kenzior1-14/+8
It is not safe to call dial_request_user_cancel directly. This is because there might be a situation where the SIM requested the calls to be dropped first. If we're still executing the release_all_active request and someone calls hangup -> crash. Instead it is safer to throttle the hangup requests until the call is actually dialing. In similar fashion, we should not allow hanging up a specific call if a dial request is active, unless that call is part of the SIM dial request. Note that by default this is not known until the driver's dial implementation returns and the call is in the dialing (or alerting / connected) state.
2011-07-14voicecall: Send busy to DBus if emulator is pendingDenis Kenzior1-12/+12
2011-07-14voicecall: Don't send response to defunct emulatorDenis Kenzior1-12/+28
2011-07-14voicecall: Throttle emulatorsDenis Kenzior1-35/+45
Make sure that only a single request from (possibly multiple) emulators is ever sent to the voicecall driver. In the beginning it wasn't clear whether this will be necessary, however several command implementations already implemented basic throttling (+CHUP, ATD, CHLD=3, CHLD=2x) and it made sense to make this more formal. The other constraint is the abrupt removal of the emulator atom while an operation is pending. This case must be handled gracefully. See next commit.
2011-07-14voicecall: Minor style fixesDenis Kenzior1-4/+4
2011-07-14voicecall: manage multiparty list in AT+CHLD=2XFrédéric Dalleau1-2/+56
2011-07-14voicecall: manage multiparty list in AT+CHLD=3Frédéric Dalleau1-4/+51
2011-07-14voicecall: Minor style fixDenis Kenzior1-1/+1
2011-07-12ofono.rules: Add rules for ZTE MF 637 modemBertrand Aygon1-3/+7
2011-07-12ofono.rules: Add rules for SpeedUp 8000 modemBertrand Aygon1-0/+8
2011-07-12connman: Refactor request_replyDenis Kenzior1-41/+53
2011-07-12connman: Perform more renamingDenis Kenzior1-11/+11
2011-07-12connman: Refactor pns_releaseDenis Kenzior1-17/+20