platform/upstream/ofono.git
11 years agoatutil: Remove unused macro
Daniel Wagner [Mon, 10 Dec 2012 10:37:19 +0000 (11:37 +0100)]
atutil: Remove unused macro

With commit 6ee21a3fc18460cc12dbddb3b7ec70e941fa4bbc
the usage DECLARE_FAILURE was removed.

11 years agotest: Tweak list-modems to display battchg
Denis Kenzior [Mon, 17 Dec 2012 15:26:32 +0000 (09:26 -0600)]
test: Tweak list-modems to display battchg

11 years agohfp: use ofono_handsfree_battchg_notify
Denis Kenzior [Mon, 17 Dec 2012 15:26:10 +0000 (09:26 -0600)]
hfp: use ofono_handsfree_battchg_notify

11 years agohandsfree: Implement BatteryChargeLevel
Denis Kenzior [Mon, 17 Dec 2012 15:25:54 +0000 (09:25 -0600)]
handsfree: Implement BatteryChargeLevel

11 years agoinclude: Add battery charge level notify API
Denis Kenzior [Mon, 17 Dec 2012 15:25:35 +0000 (09:25 -0600)]
include: Add battery charge level notify API

11 years agodoc: Add BatteryChargeLevel to Handsfree
Denis Kenzior [Mon, 17 Dec 2012 15:25:17 +0000 (09:25 -0600)]
doc: Add BatteryChargeLevel to Handsfree

11 years agotools: Make two functions of stktest static
Marcel Holtmann [Sat, 15 Dec 2012 20:53:56 +0000 (21:53 +0100)]
tools: Make two functions of stktest static

11 years agobuild: Use AC_PROG_MKDIR_P instead of AM_PROG_MKDIR_P
Marcel Holtmann [Tue, 11 Dec 2012 16:17:46 +0000 (17:17 +0100)]
build: Use AC_PROG_MKDIR_P instead of AM_PROG_MKDIR_P

11 years agobuild: Reorder default developer build options
Marcel Holtmann [Mon, 10 Dec 2012 19:45:24 +0000 (20:45 +0100)]
build: Reorder default developer build options

11 years agobuild: Reorder configure options
Marcel Holtmann [Mon, 10 Dec 2012 19:09:30 +0000 (20:09 +0100)]
build: Reorder configure options

11 years agoAUTHORS: Mention Mingli's contributions
Denis Kenzior [Wed, 5 Dec 2012 05:48:50 +0000 (23:48 -0600)]
AUTHORS: Mention Mingli's contributions

11 years agoatmodem: remove pending idle callbacks at removal
Mingli Wu [Tue, 4 Dec 2012 15:33:47 +0000 (16:33 +0100)]
atmodem: remove pending idle callbacks at removal

If device probe and removal happen in short succession, it's possible
that the idle handler registered in the probe function doesn't run before
the device is removed.  In this case, the idle handler needs to be
unregistered so that it does not run and try to access the data that's
destroyed during the removal.

11 years agoatmodem: Re-work the CBS driver
Denis Kenzior [Wed, 5 Dec 2012 05:45:35 +0000 (23:45 -0600)]
atmodem: Re-work the CBS driver

We might have mis-interpreted how 27.007 intends for CBS to work.  After
studying the implementation notes of the IMC 6260 modem, the spec intent
made a little bit more sense.

11 years agoqmi: Include persistent device configuration service
Marcel Holtmann [Tue, 4 Dec 2012 04:42:14 +0000 (05:42 +0100)]
qmi: Include persistent device configuration service

11 years agoqmi: Print service number if name is not known
Marcel Holtmann [Sat, 1 Dec 2012 20:37:22 +0000 (21:37 +0100)]
qmi: Print service number if name is not known

11 years agogdbus: Add g_dbus_add_properties_watch function
Luiz Augusto von Dentz [Tue, 27 Nov 2012 12:51:20 +0000 (14:51 +0200)]
gdbus: Add g_dbus_add_properties_watch function

Convenient function to create watches for D-Bus properties.

11 years agogdbus: Don't automatically attach ObjectManager
Lucas De Marchi [Thu, 29 Nov 2012 13:19:32 +0000 (11:19 -0200)]
gdbus: Don't automatically attach ObjectManager

Let each project attach the object manager interface instead of
registering it automatically.

11 years agogdbus: Don't register DBus.Properties with no properties
Lucas De Marchi [Thu, 29 Nov 2012 13:19:31 +0000 (11:19 -0200)]
gdbus: Don't register DBus.Properties with no properties

Delay registering DBus.Properties interface until the moment there are
properties on that path. This is needed for objects that currently don't
expose any property to not export the interface.

11 years agosms: Don't try to start the queue if already active
Denis Kenzior [Thu, 29 Nov 2012 09:05:11 +0000 (03:05 -0600)]
sms: Don't try to start the queue if already active

If the queue is currently inside a submit operation and the network
registration state changes, do not try to schedule the next operation.

11 years agoifx: Bump the setup timeout
Denis Kenzior [Wed, 28 Nov 2012 16:08:16 +0000 (10:08 -0600)]
ifx: Bump the setup timeout

The newer IFX firmware was changed, it no longer accepts AT commands
until the UA frame has been sent back to the AP.  The commands are
simply dropped on the floor.  This requires a proper fix in GAtMux, but
until then simply bump up the timeout to get around this issue.

11 years agoifx: Fix the case of modem-originated call
Denis Kenzior [Sun, 25 Nov 2012 04:46:49 +0000 (22:46 -0600)]
ifx: Fix the case of modem-originated call

During STK Set Up Call, we have modem-originated calls that do not go
through the core 'Dial' method.  Make sure the calls are still detected
in this case.

11 years agostk: Fix Set Up Call with pause characters
Denis Kenzior [Sun, 25 Nov 2012 03:56:16 +0000 (21:56 -0600)]
stk: Fix Set Up Call with pause characters

Set Up Call with extra DTMF characters after the phone number should be
set up with only the dialed number.  Otherwise we get a sequence like
this:
{VoiceCallManager} [CallAdded] /ifx_0/voicecall01 { LineIdentification =
+012340123456c1c2, Name = , Emergency = False, Multiparty = False,
RemoteHeld = False, State = alerting, RemoteMultiparty = False }

11 years agostk: Print what kind of info the SIM wants
Denis Kenzior [Sun, 25 Nov 2012 03:55:47 +0000 (21:55 -0600)]
stk: Print what kind of info the SIM wants

In Provide Local Information implementation

11 years agovoicecall: Add extra debug info
Denis Kenzior [Sun, 25 Nov 2012 03:55:23 +0000 (21:55 -0600)]
voicecall: Add extra debug info

11 years agovoicecall: Fix crash
Denis Kenzior [Sun, 25 Nov 2012 03:55:04 +0000 (21:55 -0600)]
voicecall: Fix crash

11 years agosim: Fix crash
Denis Kenzior [Sat, 24 Nov 2012 13:51:36 +0000 (07:51 -0600)]
sim: Fix crash

ofonod[32055]: ++++++++ backtrace ++++++++
ofonod[32055]: #0  0x7f6af0ee3b30 in /lib64/libc.so.6
ofonod[32055]: #1  0x4c2466 in __ofono_watchlist_remove_item() at
src/watch.c:57
ofonod[32055]: #2  0x4b5b73 in ofono_sim_remove_spn_watch() at
src/sim.c:2715
ofonod[32055]: #3  0x497c30 in netreg_unregister() at src/network.c:1817
ofonod[32055]: #4  0x4912e1 in __ofono_atom_unregister() at
src/modem.c:277
ofonod[32055]: #5  0x491387 in flush_atoms() at src/modem.c:425
ofonod[32055]: #6  0x4b6cb8 in __ofono_sim_refresh() at src/sim.c:3154
ofonod[32055]: #7  0x4b8c41 in handle_command_refresh() at
src/stk.c:2302
ofonod[32055]: #8  0x4baf0d in
ofono_stk_proactive_command_handled_notify() at src/stk.c:3048
ofonod[32055]: #9  0x46c60f in satn_notify() at
drivers/ifxmodem/stk.c:229
ofonod[32055]: #10 0x7f6af1711455 in /usr/lib64/libglib-2.0.so.0
ofonod[32055]: #11 0x43e729 in at_chat_match_notify() at
gatchat/gatchat.c:421
ofonod[32055]: #12 0x440da8 in received_data() at gatchat/gatio.c:125
ofonod[32055]: #13 0x441834 in dispatch_sources() at
gatchat/gatmux.c:157
ofonod[32055]: #14 0x441bbd in received_data() at gatchat/gatmux.c:215
ofonod[32055]: #15 0x7f6af173dfc3 in /usr/lib64/libglib-2.0.so.0
ofonod[32055]: #16 0x7f6af16ef065 in /usr/lib64/libglib-2.0.so.0
ofonod[32055]: #17 0x7f6af16efd0f in /usr/lib64/libglib-2.0.so.0
ofonod[32055]: #18 0x7f6af16efef9 in /usr/lib64/libglib-2.0.so.0
ofonod[32055]: #19 0x7f6af16f032f in /usr/lib64/libglib-2.0.so.0
ofonod[32055]: #20 0x48f5f8 in main() at src/main.c:249
ofonod[32055]: #21 0x7f6af0ed04bd in /lib64/libc.so.6
ofonod[32055]: +++++++++++++++++++++++++++

11 years agoifx: Rework SIM state handling
Denis Kenzior [Sat, 24 Nov 2012 13:50:44 +0000 (07:50 -0600)]
ifx: Rework SIM state handling

When performing a SIM REFRESH, particularly NAA Initialization, we need
to wait until the modem sends XSIMSTATE: 7, not XSIMSTATE:2.  Even on
normal initialization it seems safer to wait until XSIMSTATE:2.

11 years agoatmodem: For IFX XSIMSTATE 7 should never occur
Denis Kenzior [Sat, 24 Nov 2012 13:49:54 +0000 (07:49 -0600)]
atmodem: For IFX XSIMSTATE 7 should never occur

in the case of a PIN entry, XSIMSTATE of 7 (Ready to Attach) should
never occur

11 years agostk: Handle self explanatory icons in idle mode text
Denis Kenzior [Sat, 24 Nov 2012 13:49:30 +0000 (07:49 -0600)]
stk: Handle self explanatory icons in idle mode text

11 years agotest: Use pretty-printing from monitor-ofono
Denis Kenzior [Sat, 24 Nov 2012 13:49:02 +0000 (07:49 -0600)]
test: Use pretty-printing from monitor-ofono

11 years agostk: Handle icon self explanatory in play tone
Denis Kenzior [Sat, 24 Nov 2012 07:13:36 +0000 (01:13 -0600)]
stk: Handle icon self explanatory in play tone

11 years agostk: Handle icon self explanatory in get input
Denis Kenzior [Sat, 24 Nov 2012 07:13:22 +0000 (01:13 -0600)]
stk: Handle icon self explanatory in get input

11 years agostk: Handle icon self explanatory in get inkey
Denis Kenzior [Sat, 24 Nov 2012 07:13:09 +0000 (01:13 -0600)]
stk: Handle icon self explanatory in get inkey

11 years agostk: Handle icon self explanatory in display text
Denis Kenzior [Sat, 24 Nov 2012 07:12:55 +0000 (01:12 -0600)]
stk: Handle icon self explanatory in display text

11 years agostk: Handle icon self explanatory in menus
Denis Kenzior [Sat, 24 Nov 2012 07:12:31 +0000 (01:12 -0600)]
stk: Handle icon self explanatory in menus

11 years agosim: Fix crash
Denis Kenzior [Sat, 24 Nov 2012 07:11:44 +0000 (01:11 -0600)]
sim: Fix crash

When modem is brought online, then sim removed and re-inserted.  We
crash when going online again due to the spn related data-structures not
being initialized properly

11 years agotools: Wait an extra second before opening the TTY
Marcel Holtmann [Wed, 28 Nov 2012 09:34:43 +0000 (10:34 +0100)]
tools: Wait an extra second before opening the TTY

11 years agotools: Add simple TTY redirector utility
Marcel Holtmann [Wed, 28 Nov 2012 09:21:51 +0000 (10:21 +0100)]
tools: Add simple TTY redirector utility

11 years agoqmimodem: Fix reporting of PIN or PUK states
Marcel Holtmann [Tue, 27 Nov 2012 22:31:52 +0000 (23:31 +0100)]
qmimodem: Fix reporting of PIN or PUK states

11 years agotest: Allow LoopTone to be interrupted by incoming calls
Marcel Holtmann [Tue, 27 Nov 2012 10:09:52 +0000 (11:09 +0100)]
test: Allow LoopTone to be interrupted by incoming calls

11 years agotest: Remove unneeded semicolons in STK test script
Marcel Holtmann [Tue, 27 Nov 2012 10:09:21 +0000 (11:09 +0100)]
test: Remove unneeded semicolons in STK test script

11 years agogdbus: Remove not needed NULL pointer checks
Szymon Janc [Wed, 21 Nov 2012 10:21:03 +0000 (11:21 +0100)]
gdbus: Remove not needed NULL pointer checks

g_strdup returns NULL if argument passed is NULL and there is no need
to double check that.

11 years agogdbus: Replace leading spaces with tabs
Syam Sidhardhan [Tue, 23 Oct 2012 13:57:06 +0000 (19:27 +0530)]
gdbus: Replace leading spaces with tabs

Trivial formatting fix.

11 years agogdbus: Fix compilation error due to missing #defines
Syam Sidhardhan [Wed, 14 Nov 2012 13:07:10 +0000 (18:37 +0530)]
gdbus: Fix compilation error due to missing #defines

Since these are simple #define strings, we are defining it here
instead of upgrading to D-Bus 1.5 or later.

Log:
  CC     gdbus/object.o
gdbus/object.c: In function ‘properties_set’:
gdbus/object.c:876:7: error: ‘DBUS_ERROR_UNKNOWN_PROPERTY’ undeclared
 (first use in this function)
gdbus/object.c:876:7: note: each undeclared identifier is reported
 only once for each function it appears in
gdbus/object.c:881:6: error: ‘DBUS_ERROR_PROPERTY_READ_ONLY’
 undeclared (first use in this function)
make[1]: *** [gdbus/object.o] Error 1
make: *** [all] Error 2

11 years agogdbus: Remove connection from pending_property functions
Lucas De Marchi [Wed, 17 Oct 2012 15:14:28 +0000 (12:14 -0300)]
gdbus: Remove connection from pending_property functions

The reply to a DBus.Properties.Set() method call should go through the
same D-Bus connection. Thus remove the DBusConnection parameter from the
following functions:

    - g_dbus_pending_property_success()
    - g_dbus_pending_property_error_valist()
    - g_dbus_pending_property_error()

11 years agogdbus: Fix invalid memory access during interface removal
Johan Hedberg [Mon, 15 Oct 2012 10:21:11 +0000 (13:21 +0300)]
gdbus: Fix invalid memory access during interface removal

If an interface is removed from the root path during the same mainloop
iteration that it was added we need to check for data->added before
doing the check for data->parent == NULL in the remove_interface()
function. Otherwise the added interface doesn't get removed from the
data->added list and will result in accessing freed memory:

==337== Invalid read of size 8
==337==    at 0x4F65AFA: dbus_message_iter_append_basic (in /usr/lib64/libdbus-1.so.3.7.1)
==337==    by 0x1247B5: append_interface (object.c:556)
==337==    by 0x4C8DC5C: g_slist_foreach (gslist.c:840)
==337==    by 0x1261F7: process_changes (object.c:594)
==337==    by 0x126372: generic_unregister (object.c:997)
==337==    by 0x4F69669: ??? (in /usr/lib64/libdbus-1.so.3.7.1)
==337==    by 0x4F5CE51: dbus_connection_unregister_object_path (in /usr/lib64/libdbus-1.so.3.7.1)
==337==    by 0x125E81: object_path_unref (object.c:1236)
==337==    by 0x126136: g_dbus_unregister_interface (object.c:1361)
==337==    by 0x14CDF0: service_exit (service.c:581)
==337==    by 0x177556: plugin_cleanup (plugin.c:242)
==337==    by 0x12221F: main (main.c:559)
==337==  Address 0x5bc1550 is 0 bytes inside a block of size 56 free'd
==337==    at 0x4A079AE: free (vg_replace_malloc.c:427)
==337==    by 0x4C7850E: g_free (gmem.c:252)
==337==    by 0x125DB0: remove_interface (object.c:671)
==337==    by 0x125E3B: object_path_unref (object.c:1230)
==337==    by 0x126136: g_dbus_unregister_interface (object.c:1361)
==337==    by 0x14CDF0: service_exit (service.c:581)
==337==    by 0x177556: plugin_cleanup (plugin.c:242)
==337==    by 0x12221F: main (main.c:559)

11 years agogdbus: Add g_dbus_get_properties function
Johan Hedberg [Fri, 12 Oct 2012 08:55:37 +0000 (10:55 +0200)]
gdbus: Add g_dbus_get_properties function

This function can be used to construct custom D-Bus messages containing
the properties for a specific interface on a given path.

11 years agogdbus: Add support for invalidated properties
Johan Hedberg [Thu, 11 Oct 2012 09:53:27 +0000 (11:53 +0200)]
gdbus: Add support for invalidated properties

If there's a pending property but its exists() callback returns false
the property should be considered invalidated and included in the
relevant list of the PropertiesChanged signal.

11 years agogdbus: Fix processing pending properties in remove_interface()
Johan Hedberg [Mon, 8 Oct 2012 12:36:12 +0000 (14:36 +0200)]
gdbus: Fix processing pending properties in remove_interface()

11 years agogdbus: Fix up Properties.Set() code path
Lucas De Marchi [Sat, 6 Oct 2012 07:02:35 +0000 (04:02 -0300)]
gdbus: Fix up Properties.Set() code path

Minor fixes to make setter actually work:

- Add propdata in pending_property_set
- Break loop when we are removing propdata from list and we
  found it
- in_args and out_args were swapped
- interface and method name arguments were swapped

11 years agogdbus: Fix invalid memory access while unregistering
Lucas De Marchi [Thu, 4 Oct 2012 20:42:33 +0000 (17:42 -0300)]
gdbus: Fix invalid memory access while unregistering

If an interface is added and removed on the same mailoop iteration,
ObjectManager would try to send InterfacesAdded signal while running the
idler because the interface was added to data->added list.

This is easily reproduced by forcing an error path in a plugin
registration, like on sap_server_register(), resulting in the following
error:

==11795== Invalid read of size 4
==11795==    at 0x496F592: dbus_message_iter_append_basic (dbus-message.c:2598)
==11795==    by 0x117B39: append_interface (object.c:554)
==11795==    by 0x48955E7: g_slist_foreach (gslist.c:840)
==11795==    by 0x11923B: process_changes (object.c:592)
==11795==    by 0x11956D: generic_unregister (object.c:980)
==11795==    by 0x4973BAC: _dbus_object_tree_unregister_and_unlock (dbus-object-tree.c:516)
==11795==    by 0x4965240: dbus_connection_unregister_object_path (dbus-connection.c:5776)
==11795==    by 0x1178A5: object_path_unref (object.c:1219)
==11795==    by 0x118517: g_dbus_unregister_interface (object.c:1344)
==11795==    by 0x19AF5B: sap_exit (sap.c:385)
==11795==    by 0x13E9E2: sap_server_register (server.c:1428)
==11795==    by 0x13C092: sap_server_probe (manager.c:44)

With this patch we don't send the InterfacesAdded signal, removing it
from data->added while unregistering.

11 years agogdbus: Implement PropertiesChanged signal
Lucas De Marchi [Thu, 4 Oct 2012 07:26:37 +0000 (04:26 -0300)]
gdbus: Implement PropertiesChanged signal

11 years agogdbus: Simplify code for appending properties
Luiz Augusto von Dentz [Thu, 4 Oct 2012 07:26:36 +0000 (04:26 -0300)]
gdbus: Simplify code for appending properties

This reuse append_properties for GetAll and GetManagedObjects

11 years agogdbus: Integrates ObjectManager with Properties interface
Luiz Augusto von Dentz [Thu, 4 Oct 2012 07:26:35 +0000 (04:26 -0300)]
gdbus: Integrates ObjectManager with Properties interface

This appends the properties and its values when using ObjectManager.

11 years agogdbus: Only export ObjectManager interface on root path
Luiz Augusto von Dentz [Thu, 4 Oct 2012 07:26:34 +0000 (04:26 -0300)]
gdbus: Only export ObjectManager interface on root path

ObjectManager should be exported only in the root path and list all
the children paths.

11 years agogdbus: Group interface changes to reduce the amount of signals emitted
Luiz Augusto von Dentz [Thu, 4 Oct 2012 07:26:33 +0000 (04:26 -0300)]
gdbus: Group interface changes to reduce the amount of signals emitted

InterfacesAdded and InterfacesRemoved can group all the interfaces
changes together in one message.

11 years agogdbus: Add support for org.freedesktop.DBus.ObjectManager interface
Luiz Augusto von Dentz [Thu, 4 Oct 2012 07:26:32 +0000 (04:26 -0300)]
gdbus: Add support for org.freedesktop.DBus.ObjectManager interface

This implements initial support for ObjectManager, it automatically adds
objects to its parents so no action is needed by daemons to get their
objects managed by this interface.

ObjectManager is part of D-Bus spec since revision 0.17:
http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-objectmanager

11 years agogdbus: Add properties into Introspectable interface
Lucas De Marchi [Thu, 4 Oct 2012 07:26:31 +0000 (04:26 -0300)]
gdbus: Add properties into Introspectable interface

11 years agogdbus: Implement DBus.Properties.Set method
Lucas De Marchi [Thu, 4 Oct 2012 07:26:30 +0000 (04:26 -0300)]
gdbus: Implement DBus.Properties.Set method

Contrary to Get() and GetAll(), Set() is asynchronous so we pass an id
to the setter so later it can declare the Set() as successful or
otherwise.

11 years agogdbus: Implement DBus.Properties.GetAll method
Lucas De Marchi [Thu, 4 Oct 2012 07:26:29 +0000 (04:26 -0300)]
gdbus: Implement DBus.Properties.GetAll method

11 years agogdbus: Implement DBus.Properties.Get method
Lucas De Marchi [Thu, 4 Oct 2012 07:26:28 +0000 (04:26 -0300)]
gdbus: Implement DBus.Properties.Get method

11 years agogdbus: Add skeleton of DBus.Properties interface
Lucas De Marchi [Thu, 4 Oct 2012 07:26:27 +0000 (04:26 -0300)]
gdbus: Add skeleton of DBus.Properties interface

This interface is responsible for handling properties of all objects in
a given path. Right now it only registers itself, doing nothing useful.
A conversion to this new layout will be done by subsequent patches.

org.freedesktop.org.DBus.Properties spec can be found at
http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-properties

11 years agogdbus: Use macros to add annotations
Lucas De Marchi [Thu, 4 Oct 2012 07:26:26 +0000 (04:26 -0300)]
gdbus: Use macros to add annotations

Besides being more readable this way it avoids going over 80 chars.

11 years agogdbus: Move typedefs up
Lucas De Marchi [Thu, 4 Oct 2012 07:26:25 +0000 (04:26 -0300)]
gdbus: Move typedefs up

Move the typedefs up so they can be used by functions and callbacks.

11 years agounit: Fix SMS unit tests
Marcel Holtmann [Sun, 25 Nov 2012 20:18:03 +0000 (21:18 +0100)]
unit: Fix SMS unit tests

11 years agoatmodem: Always quote data in CRSM write operations
Denis Kenzior [Fri, 23 Nov 2012 13:21:46 +0000 (07:21 -0600)]
atmodem: Always quote data in CRSM write operations

11 years agoatmodem: Support CRSM with paths
Denis Kenzior [Fri, 23 Nov 2012 13:09:29 +0000 (07:09 -0600)]
atmodem: Support CRSM with paths

For GET STATUS and READ BINARY variations, support appending of the
optional path in the CRSM command

11 years agosim: Read icons with a full SIM/USIM path
Denis Kenzior [Fri, 23 Nov 2012 12:41:27 +0000 (06:41 -0600)]
sim: Read icons with a full SIM/USIM path

11 years agosimfs: Handle optional EF paths
Denis Kenzior [Fri, 23 Nov 2012 12:40:55 +0000 (06:40 -0600)]
simfs: Handle optional EF paths

11 years agoinclude: Tweak ofono_sim_read_bytes API
Denis Kenzior [Fri, 23 Nov 2012 12:39:59 +0000 (06:39 -0600)]
include: Tweak ofono_sim_read_bytes API

Reading of icons requires us to specify the path

11 years agoqmimodem: Add support for UIM service handling
Marcel Holtmann [Sun, 25 Nov 2012 19:02:59 +0000 (20:02 +0100)]
qmimodem: Add support for UIM service handling

11 years agoudev: Let Huawei detection also check for cdc_wdm drivers
Marcel Holtmann [Sun, 25 Nov 2012 19:00:38 +0000 (20:00 +0100)]
udev: Let Huawei detection also check for cdc_wdm drivers

11 years agoudev: Use Qualcomm Gobi driver if QMI based modem
Marcel Holtmann [Sun, 25 Nov 2012 19:00:07 +0000 (20:00 +0100)]
udev: Use Qualcomm Gobi driver if QMI based modem

11 years agoudev: Handle USB descriptors from Vodafone K5005 modem
Marcel Holtmann [Sun, 25 Nov 2012 18:57:43 +0000 (19:57 +0100)]
udev: Handle USB descriptors from Vodafone K5005 modem

11 years agogobi: Use UIM service is available
Marcel Holtmann [Sun, 25 Nov 2012 18:56:42 +0000 (19:56 +0100)]
gobi: Use UIM service is available

11 years agosim: Assume CPHS files are in ADFusim
Marcel Holtmann [Sun, 25 Nov 2012 14:34:41 +0000 (15:34 +0100)]
sim: Assume CPHS files are in ADFusim

11 years agotest: Fix modem path handling for icon testing
Marcel Holtmann [Sun, 25 Nov 2012 14:02:23 +0000 (15:02 +0100)]
test: Fix modem path handling for icon testing

11 years agotest: Allow STK testing without voice call manager
Marcel Holtmann [Sun, 25 Nov 2012 09:20:15 +0000 (10:20 +0100)]
test: Allow STK testing without voice call manager

11 years agoqmimodem: Print error string instead of code if available
Marcel Holtmann [Sun, 25 Nov 2012 09:19:40 +0000 (10:19 +0100)]
qmimodem: Print error string instead of code if available

11 years agoqmimodem: Pretty print service name in debug logs
Marcel Holtmann [Sat, 24 Nov 2012 23:05:54 +0000 (00:05 +0100)]
qmimodem: Pretty print service name in debug logs

11 years agoqmimodem: Fix debug printing of messages
Marcel Holtmann [Sat, 24 Nov 2012 23:05:15 +0000 (00:05 +0100)]
qmimodem: Fix debug printing of messages

11 years agoqmimodem: Add helper for error message strings
Marcel Holtmann [Sat, 24 Nov 2012 23:04:14 +0000 (00:04 +0100)]
qmimodem: Add helper for error message strings

11 years agounit: Add 2G and 3G path lookup tests
Denis Kenzior [Thu, 22 Nov 2012 15:42:28 +0000 (09:42 -0600)]
unit: Add 2G and 3G path lookup tests

11 years agounit: Fix Style
Denis Kenzior [Thu, 22 Nov 2012 15:42:16 +0000 (09:42 -0600)]
unit: Fix Style

11 years agounit: Remove failing test
Denis Kenzior [Thu, 22 Nov 2012 15:41:29 +0000 (09:41 -0600)]
unit: Remove failing test

We removed the needed file id from the sim database.  It was not being
used.

11 years agosimutil: Add 2G and 3G path lookup utilities
Denis Kenzior [Thu, 22 Nov 2012 15:41:08 +0000 (09:41 -0600)]
simutil: Add 2G and 3G path lookup utilities

11 years agosimfs: Update to the new SIM api
Denis Kenzior [Thu, 22 Nov 2012 15:40:52 +0000 (09:40 -0600)]
simfs: Update to the new SIM api

11 years agosim: Update to the new sim reading API
Denis Kenzior [Thu, 22 Nov 2012 15:40:39 +0000 (09:40 -0600)]
sim: Update to the new sim reading API

11 years agoatmodem: Update sim driver to the new api
Denis Kenzior [Thu, 22 Nov 2012 15:40:18 +0000 (09:40 -0600)]
atmodem: Update sim driver to the new api

11 years agoqmi: Update sim-legacy driver to the new API
Denis Kenzior [Thu, 22 Nov 2012 15:40:05 +0000 (09:40 -0600)]
qmi: Update sim-legacy driver to the new API

11 years agoisi: Update UICC driver to the new API
Denis Kenzior [Thu, 22 Nov 2012 15:39:52 +0000 (09:39 -0600)]
isi: Update UICC driver to the new API

11 years agoisimodem: Update sim driver to the new API
Denis Kenzior [Thu, 22 Nov 2012 15:39:37 +0000 (09:39 -0600)]
isimodem: Update sim driver to the new API

11 years agoinclude: Add path and path_len arguments
Denis Kenzior [Thu, 22 Nov 2012 15:38:34 +0000 (09:38 -0600)]
include: Add path and path_len arguments

The CRSM command has an additional parameter called pathlen which can be
used to specify the path of the elementary file outside the well-known
path range.

11 years agosimutil: Introduce 2G and 3G parent paths
Denis Kenzior [Thu, 22 Nov 2012 14:24:03 +0000 (08:24 -0600)]
simutil: Introduce 2G and 3G parent paths

11 years agotest: Allow DisplayText to be interrupted by incoming calls
Marcel Holtmann [Sat, 24 Nov 2012 18:14:27 +0000 (19:14 +0100)]
test: Allow DisplayText to be interrupted by incoming calls

11 years agovoicecall: Handle RESETTING sim state
Denis Kenzior [Thu, 22 Nov 2012 12:56:33 +0000 (06:56 -0600)]
voicecall: Handle RESETTING sim state

11 years agomodem: Handle RESETTING sim state
Denis Kenzior [Thu, 22 Nov 2012 12:56:23 +0000 (06:56 -0600)]
modem: Handle RESETTING sim state

11 years agotest: Fix ascii conversion exception
Denis Kenzior [Thu, 22 Nov 2012 12:50:32 +0000 (06:50 -0600)]
test: Fix ascii conversion exception

11 years agosimutil: Add file type information to sim_db
Denis Kenzior [Thu, 22 Nov 2012 12:47:50 +0000 (06:47 -0600)]
simutil: Add file type information to sim_db

11 years agosimutil: Rename structure variable
Denis Kenzior [Thu, 22 Nov 2012 12:33:22 +0000 (06:33 -0600)]
simutil: Rename structure variable