aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-03-26api: clarify SendPin documentationDan Williams
2011-03-24zte: fix build dependency race with Icera utils bits (chromium-os:13398)Elly Jones
2011-03-24qcdm: add standalone autogen and configureDan Williams
For building libqcdm separately from ModemManager.
2011-03-11modemmanager: Add support for Samsung Y3300 modemJun Woo Lee
BUG=chrome-os-partner:2394 TEST=gmerge modemmanager, watch logs, see detected as Samsung modem, connect to AT&T network Review URL: http://codereview.chromium.org/6614026 Patch from Jun Woo Lee <jw86.lee@samsung.com>. Change-Id: I913628ff4a1cd16c8180e3c808644b0134e69e31
2011-03-11gsm: fix for parsing malformed Gobi CREG responseDan Williams
From an HP un2400; GMR: D1020-SUUAASFA-4352 1 [Apr 14 2008 18:00:00] GMM: 88
2011-03-11core: allow plugins to handle custom init responsesThomas Bechtold
2011-03-05policy: loosen permissions somewhat for reading device info (kde #266807) ↵Dan Williams
(novell #674022)
2011-02-25logging: use glong for secs and usecsMichael Biebl
2011-02-25cdma: ensure the ActivationStateChanged signal existsDan Williams
It's part of the D-Bus API, so it needs to be implemented somewhere even if it's not used yet.
2011-02-25log: fix spacing so messages line upDan Williams
2011-02-17simtech: add port tags for SCT U300 (Element Mobile)Dan Williams
2011-02-10core: allow platform devices without a VID/PIDTom Bechtold
Since platform devices don't usually have them.
2011-02-01zte: fix handling of Icera simple connect processDan Williams
Yay for GInterface.
2011-02-01icera: fix username and password ordering for authenticationDan Williams
2011-02-01api: don't install all.xmlDan Williams
It's not really part of the API.
2011-01-24api: fix up StateChanged duplicate reason codeDan Williams
And add new reason codes to the C headers.
2011-01-24logging: make gcc 4.4.3 happy about ignored unused resultsDan Williams
2011-01-24logging: shut up compiler warnings about unused result from write(2)Dan Williams
We actually don't care about the result here. But we do in other places, so we want to keep the warning in general.
2011-01-24api: fix up modem state changed reason enum descriptionDan Williams
2011-01-24Merge remote branch 'chromium/to-upstream'Dan Williams
2011-01-24rules: blacklist some unlikely USB serial dongles (rh #544121)Dan Williams
2011-01-24core: minor code cleanupsDan Williams
2011-01-24core: add logging when ports get removedDan Williams
2011-01-24core: add mm_port_subsys_to_name()Dan Williams
2011-01-23gsm: enable unsolicited codes on secondary ports too (bgo #637140)Dan Williams
We want to enable unsolicited responses on secondary ports too, so that if the modem only sends unsolicited responses on the ports on which they were enabled, that we can get resposnes off the secondary port when the primary port is connected. But we can't always trust devices to actually send them on the secondary port, so we enable the unsolicited responses on both the primary and secondary ports just in case.
2011-01-23core: enable timestamps with legacy --debug optionDan Williams
2011-01-23core: rework loggingDan Williams
Make it more flexible, add logging to a file, and absolute and relative timestamps.
2011-01-23build: fix distcheckDan Williams
2011-01-23qcdm: add some missing system modesDan Williams
2011-01-21qcdm: add call manager subsystem mode define for LTEDan Williams
Seen on the Pantech UML290 and another Qualcomm-based LTE device.
2011-01-14test: handle cancel and distinguish between initiate and respond (bgo #638038)Guido Günther
2011-01-14gsm: wire up USSD Respond function (bgo #638038)Guido Günther
2011-01-14api: add reply parameter to USSD Respond method (bgo #638038)Guido Günther
The network will usually send back the new sub menu to pick from.
2011-01-14core: add modem reset/power-cycle commandDan Williams
Based on a patch by Elly Jones from Google.
2011-01-12zte: add more ZTE port tags (LW272, others)Dan Williams
2011-01-11gsm: correctly parse Samsung S8500 Wave CREG responseMichał Sroczyński
(testcases by dcbw)
2011-01-06qcdm: add HDR revision preferenceDan Williams
Not sure if that's exactly what the NV item is, but the UML290 uses it for Rev0, RevA, and eHRPD preference.
2011-01-06qcdm: add NV mode pref values for 1X/HDR Only, LTE Only, and 1X/HDR/LTE OnlyDan Williams
Based on responses from Pantech UML290.
2011-01-05cdma: update reg state to HOME based on SPERI responseDan Williams
If the SPERI response indicates the home network, then set CDMA registration to HOME if it was REGISTERED (which is less specific).
2011-01-04cdma: fix segfault by handling MEID propertyDan Williams
Also, MEID->Meid to follow standard D-Bus property semantics.
2011-01-04cdma: fix CDMA registration state retrieval on single AT port devicesDan Williams
If the device only has one AT port that's being used for data and thus we can't do more specific registration checking in MMGenericCdma using AT commands, but generic registration checking was successful, just use the less specific state. Previously, an error would be returned when no AT port was available even though less specific QCDM registration checking worked. That was just stupid.
2011-01-03huawei: quiet annoying log messageDan Williams
2011-01-01icera: add complete support for generic Icera devicesDan Williams
Implement connect, disconnect, and IP4 config stuff. Also fix handling of Icera private data. After creation we need to use MM_MODEM_ICERA_GET_INTERFACE(m)->priv to get the private data instead of just dereferencing the MMModemIcera, for reasons that I don't know. If this isn't done, data gets silently corrupted because writes to the private data are going into a random location in the object. This a side-effect of the slightly hack-ish way that MMModemIcera is a GInterface with private data.
2011-01-01core: signal property changes for IpMethodDan Williams
If the modem's IP Method changes after construction because the modem's full capabilities were only discovered after it was created, make sure the change notification gets emitted.
2011-01-01icera: convert to GInterfaceDan Williams
We'll need to store some private data later for authentication, and this makes it easier and clearer to access that private data.
2011-01-01zte: Icera devices use static IP configurationDan Williams
2011-01-01icera: consolidate Icera check code into utility libDan Williams
2011-01-01icera: move Icera utils into standalone utility libraryDan Williams
2011-01-01gsm: add access technology support for HSPA+Dan Williams
2010-12-31zte: partially support Icera-based devices like T-Mobile Rocket 2Dan Williams