aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-10-12core: convert MMCallbackInfo modem refs to weak refsDan Williams
Full references prevented destruction of the modem object if it was unplugged or somehow removed. To fix that using full references on the modems would require that all usage of MMCallbackInfo to be aware of the validity of the modem and to ensure the callback was called whenever the modem became invalid. That, needless to say, would suck. Since any in-progress calls can't complete when the modem is invalid anyway, just have the MMCallbackInfo object return a generic error when the modem goes away and the call is still in-progress.
2009-10-12sierra: handle non-EVDO roaming indication for older cardsDan Williams
Like the AC580
2009-10-12sierra: add CDMA device subclass and implement registration state handlingDan Williams
2009-10-12huawei: don't need AT prefixDan Williams
2009-10-12cdma: split 1x and EVDO registration statesDan Williams
Like UMTS vs. GSM, EVDO and 1x are separate networks and technologies and have separate registration state. You can even be roaming on EVDO while in your home 1x network. Handle that.
2009-10-12huawei: adjust printf-style format to fix 32-bit gcc-4.4 buildsAlexander Sack
2009-10-11huawei: remove debugging stuffDan Williams
2009-10-11sierra: rename MMModemSierra -> MMModemSierraGsmDan Williams
2009-10-11cdma: fix memory leak parsing serving system resultsDan Williams
2009-10-11huawei: add CDMA device subclass and implement registration state handlingDan Williams
2009-10-11cdma: add signal quality update helper for subclassesDan Williams
2009-10-11cdma: use consistent terminology for registrationDan Williams
2009-10-11cdma: add port accessors for subclassesDan Williams
2009-10-11mm-test: fix cdma registration state parsingDan Williams
2009-10-11huawei: rename MMModemHuawei -> MMModemHuaweiGsmDan Williams
2009-10-11cdma: use secondary port more aggressively where one existsDan Williams
Like on the Huawei EC121 and EC168C (Reliance India).
2009-10-09cdma: implement generic registration state handlingDan Williams
2009-10-08cdma: better CSS response parsingDan Williams
2009-10-06gsm: strip command response bits from mfg/model/revision responsesDan Williams
2009-10-06hso: fix disableDan Williams
2009-10-06gsm: add cell access technology reporting to Scan()Dan Williams
2009-10-05Merge commit 'origin/master' into enable-splitDan Williams
2009-10-02bluetooth: handle rfcomm device movesDan Williams
rfcomm devices seem to be created as 'virtual' devices first, without any parents, then moved to the right place in the device tree. So handle moves too; if the modem was already found in the 'add' phase it'll be ignored in the move phase.
2009-10-02bluetooth: physical device is a bit higher up the treeDan Williams
2009-10-02bluetooth: recognize rfcomm devicesDan Williams
Two hacks here: 1) rfcomm ports don't have an easily accessible driver name, so we just match the parent's subsystem to 'bluetooth' and use that 2) libgudev doesn't seem be be able to get the rfcomm device's device file, which would normally be /dev/rfcommX. Oh well, we don't use the device file yet anyway
2009-09-23core: split generic modem enable/disable operationsDan Williams
2009-09-23generic: match CONNECT even if we get PPP spewDan Williams
Found by Eugene Crosser <crosser@average.org>
2009-09-22nokia: don't use CFUN at all (lp430576)Eugene Crosser
CFUN=0 actually powers off the phone; CFUN=1 isn't really supported on some phones either. So just don't use CFUN at all.
2009-09-21mbm: more permissive ESTKSMENU regexpAlexander Sack
2009-09-19mbm: handle *EMWI unsolicited responsesTorgny Johansson
2009-09-19mbm: fix up +PACSP0 unsolicited response matchingTorgny Johansson
2009-09-09serial: use connected notifier only when neededDan Williams
It's only relevant when the port is open anyway, and marking the port disconnected in nm_serial_port_close(), which used to be called from the finalize() function, would trigger the notifier when stuff was already cleaned up. So move the nm_serial_port_close() call to dispose() and remove the connected notifier before we clean the port up.
2009-09-08serial: mark port disconnected on closeDan Williams
Otherwise it could still be connected when the port was opened again, and subsequent calls for stuff could fail.
2009-09-08core: don't allow concurrent flashes on the same deviceDan Williams
Previously, a few operations (like disable) could trigger a modem flash in parallel with another flash. That's wrong, don't allow that. At the same time, add in finer-grained error checking on serial port speed operations, and fix a GSM generic bug that would send the POWER_UP string on disable.
2009-09-08test: allow up to 60 seconds for Scan to completeDan Williams
2009-09-09udev: handle removal of parent usb devicesNoel J. Bergman
fix device removal event handling to remove modems if the associated parent usb device is removed
2009-09-04patches: rename directory to avoid conflicts with .deb build mechanismDan Williams
2009-08-31cdma: handle older AT+CSS response formatDan Williams
2009-08-31test: don't bail out on errors parsing CDMA serving system resultsDan Williams
2009-08-31test: make mm-test executable againDan Williams
2009-08-26core: fix uninitialized variableBryan Duff
2009-08-21mbm: parse and ignore unsolicited *ESTKSMENU message - lp:416418Alexander Sack
2009-08-20gsm: handle "net" device removal properly in release_portAlexander Sack
2009-08-20mbm: add more USB IDsTorgny Johansson
2009-08-19moto-c: claim Motorola C380 too (bgo #591978)Dan Williams
2009-08-17gsm: update for D-Bus interface specification changesDan Williams
Specifically, SupportedModes, SupportedBands, and SMS completeness changes.
2009-08-17test: obscure IMSI/IMEI/ESN by defaultDan Williams
Pass --private to see these values if required.
2009-08-06license: use GPLv2 as top level COPYING for now to reflect the license ↵Alexander Sack
actually used by source files
2009-08-06license: add license header to all files and set copyright based on git logAlexander Sack
2009-08-05gsm: harmonize band/mode enumsDan Williams
Use the same enum for set/get of band and mode, as for exposing the device's capabilities.