aboutsummaryrefslogtreecommitdiff
path: root/plugins
AgeCommit message (Collapse)Author
2012-05-06wavecom: implement setting allowed/preferred modesAleksander Morgado
2012-05-06wavecom: implement loading of initial allowed/preferred modesAleksander Morgado
2012-05-06wavecom: implement custom supported mode loadingAleksander Morgado
2012-05-06wavecom: implement custom power up sequenceAleksander Morgado
2012-05-06wavecom: implement custom flow control handlingAleksander Morgado
2012-05-06wavecom: implement custom power down sequenceAleksander Morgado
2012-05-06wavecom: start porting the Wavecom pluginAleksander Morgado
2012-05-06cinterion: simplify loop when loading 2G bandsAleksander Morgado
2012-05-04modem-helpers: recognize 3GPP2 access tech strings tooDan Williams
Various Gobi-based devices (USB551L, probably Gobis too) can report EVDO and 1X as the current RAT from CNTI so parse that here too.
2012-05-02novatel: Poll for whether the connection still exists.Nathan Williams
Novatel E362 firmware doesn't notify us by unsolicited message if the connection goes away, so set up a polling loop to check. While here, inline a method that's only used in one place so that the containing function is single-exit and single-cleanup. Change-Id: If72f7c6ef06de3fb22530d42f62a8dddc6fecfda
2012-05-02novatel: Add support for connecting to specific APNs and specifying ↵Nathan Williams
username/password. While here, pass through the other relevant bearer properties. Change-Id: If925ac78d2edcc744e834e108029f5abdbb375a1
2012-05-02novatel: Use the ALLOWED_SINGLE_AT property. Saves 5 seconds on probing.Nathan Williams
Change-Id: I0b0c2cb07781eb32ba6eb4294868ed123f57fd9f
2012-05-02novatel: Remove band-setting implementation to improve connectionsNathan Williams
The $NWBAND command seems to disturb the internal state of the modem such that it is unlikely to connect to the network, and produces widely varying error codes. We don't actively use this functionality, it's just that setting "use all bands" is part of the normal ModemManager simple-connect sequence. Remove it so it doesn't get triggered. Change-Id: I9b5914291a88a59015fb51906af6fd1c78f3952b
2012-05-02novatel: Implement load_access_technologies.Nathan Williams
Change-Id: Ib503d900850d3754d79525dbc9a40b7b9c221dd7
2012-04-14simtech: implement custom allowed/preferred mode settingAleksander Morgado
2012-04-14simtech: plugin fully portedAleksander Morgado
2012-04-14simtech: implement custom allowed/preferred mode loadingAleksander Morgado
2012-04-14simtech: implement custom access technology loadingAleksander Morgado
2012-04-14simtech: implement custom unsolicited events enabling/disablingAleksander Morgado
2012-04-14simtech: implement custom unsolicited events setup/cleanupAleksander Morgado
2012-04-14simtech: new `MMBroadbandModemSimtech' objectAleksander Morgado
2012-04-14simtech: include udev rulesAleksander Morgado
2012-04-14build: split includes for plugin specific udev rulesAleksander Morgado
Let each plugin block include its own udev rules, instead of having them all together at the end of the Makefile.
2012-04-14simtech: start porting the SimTech pluginAleksander Morgado
2012-04-10bearer: allow subclasses to report disconnectionAleksander Morgado
The new `mm_bearer_report_disconnection()' allows subclasses to notify about being disconnected, so that every layer of inheritance can chain its own code to reset the connection status. This commit partially disables the logic included in commit 981222. Now subclasses (actually, no one) are not allowed to g_object_set() the MM_BEARER_STATUS property.
2012-04-10cinterion: no need for custom supported modes loadingAleksander Morgado
2012-04-10novatel: no need for custom supported modes loadingAleksander Morgado
2012-03-31iridium: remove previous modem implementationAleksander Morgado
2012-03-31linktop: plugin fully portedAleksander Morgado
2012-03-29broadband: ensure 3GPP location info gets updated when enabling the sourceAleksander Morgado
Whenever 3GPP location source gets enabled, we'll launch new registration status checks (to get updated LAC/CI) and new operator code/name checks (to get updated MCC/MNC). Additional changes were needed in the HSO plugin, so that the specific location gathering enabling implemented by the HSO modem chains up parent's one first.
2012-03-29hso: include support for the raw GPS location sourceAleksander Morgado
2012-03-29hso: report received NMEA tracesAleksander Morgado
2012-03-29hso: open/close the raw GPS port when we enable/disable GPS gatheringAleksander Morgado
2012-03-29hso: ensure GPS is disabled when we initialize the modemAleksander Morgado
2012-03-29hso: enable/disable GPS location gatheringAleksander Morgado
2012-03-29hso: include custom location capabilities loadingAleksander Morgado
Will check for GPS location sources.
2012-03-28hso: grab GPS-specific portsAleksander Morgado
2012-03-28hso: plug small memleak when building devfileAleksander Morgado
Why do we need the devfile anyway?
2012-03-26option: fix loading current allowed modesAleksander Morgado
The proper command to check the current allowed modes is `AT_OPSYS?'.
2012-03-26Revert "option: fix allowed modes response parsing"Aleksander Morgado
This reverts commit 0bc824b452de45815a8b8675d2b041a5eb98cb4c. The fix is NOT to change the expected result, but to change the command itself.
2012-03-26option: fix disabling sequence handlingAleksander Morgado
This provides the proper fix for the disabling sequence, also amending the erroneous checks introduced in commit 5b10af0f.
2012-03-26hso: skip the 10s timeout in High-Speed Option devicesAleksander Morgado
Will only be applied to non-HSO Option modems.
2012-03-26hso: update connection status only in the bearer matching the specific CIDAleksander Morgado
2012-03-26hso: fix segfault in bearer status update handlingAleksander Morgado
2012-03-26option: fix reading port-specific setup fileAleksander Morgado
The `physdev' stored in the probe is the sysfs path of the parent device, that owning all ports. We need to build the setup file path using the port's sysfs path instead.
2012-03-24hso: probe for QCDM portsAleksander Morgado
2012-03-24hso: fix bearer private data handlingAleksander Morgado
2012-03-24option: handle special 'auto' mode when setting allowed/preferred modesAleksander Morgado
2012-03-24option: handle response specifying automatic modeAleksander Morgado
Option modems may reply '_OPSYS: 5,2' to report automatic mode being used.
2012-03-24option: fix setting allowed modesAleksander Morgado