Denis Kenzior [Tue, 1 Sep 2009 23:00:58 +0000 (18:00 -0500)]
Add vendor flag capability to ussd
Denis Kenzior [Tue, 1 Sep 2009 22:53:31 +0000 (17:53 -0500)]
Add vendor flag capability to ssn
Denis Kenzior [Tue, 1 Sep 2009 22:39:29 +0000 (17:39 -0500)]
Add vendor flag capability for sms
Denis Kenzior [Tue, 1 Sep 2009 22:36:27 +0000 (17:36 -0500)]
Add vendor flag capability to sim
Denis Kenzior [Tue, 1 Sep 2009 22:32:07 +0000 (17:32 -0500)]
Add vendor flag capability to phonebook
Denis Kenzior [Tue, 1 Sep 2009 22:22:26 +0000 (17:22 -0500)]
Add vendor flag capability to netreg
Denis Kenzior [Tue, 1 Sep 2009 22:18:42 +0000 (17:18 -0500)]
Add vendor flag capability to devinfo
Denis Kenzior [Tue, 1 Sep 2009 22:14:58 +0000 (17:14 -0500)]
Add vendor flag to call-settings
Denis Kenzior [Tue, 1 Sep 2009 22:08:37 +0000 (17:08 -0500)]
Add vendor parameter to call-meter
Denis Kenzior [Tue, 1 Sep 2009 22:03:43 +0000 (17:03 -0500)]
Add vendor flag to call-forwarding
Denis Kenzior [Tue, 1 Sep 2009 21:57:24 +0000 (16:57 -0500)]
Introduce vendor parameter to call-barring
Ismo Puustinen [Tue, 1 Sep 2009 09:07:51 +0000 (12:07 +0300)]
gisi: Getter function for pipe handle
Denis Kenzior [Tue, 1 Sep 2009 03:59:39 +0000 (22:59 -0500)]
Fix being able to set powered after failure
If enable failed, subsequent attempts will also fail.
Denis Kenzior [Tue, 1 Sep 2009 03:59:22 +0000 (22:59 -0500)]
Add PDU listing support
Denis Kenzior [Mon, 31 Aug 2009 20:08:40 +0000 (15:08 -0500)]
Don't return sdn numbers until ready
Denis Kenzior [Mon, 31 Aug 2009 20:06:06 +0000 (15:06 -0500)]
Simplify EFsdn reading code
Denis Kenzior [Mon, 31 Aug 2009 19:14:55 +0000 (14:14 -0500)]
Rename MNCLength to MobileNetworkCodeLength
Denis Kenzior [Mon, 31 Aug 2009 19:13:12 +0000 (14:13 -0500)]
Refactor sim mnc length
Denis Kenzior [Mon, 31 Aug 2009 18:42:54 +0000 (13:42 -0500)]
Style Fix
Denis Kenzior [Mon, 31 Aug 2009 19:33:24 +0000 (14:33 -0500)]
Simplify nested ifs
Denis Kenzior [Mon, 31 Aug 2009 19:24:48 +0000 (14:24 -0500)]
Simplify overly complicated code
Andrzej Zaborowski [Wed, 26 Aug 2009 02:27:04 +0000 (04:27 +0200)]
Expose service dialling numbers stored on SIM through SimManager.
Andrzej Zaborowski [Wed, 26 Aug 2009 01:14:06 +0000 (03:14 +0200)]
Decode and encode alpha-identifier fields
Add identifier argument to sim_adn_parse and sim_adn_build.
Also fix the number length passed to extract_bcd_number in sim_adn_parse.
Andrzej Zaborowski [Wed, 26 Aug 2009 00:36:45 +0000 (02:36 +0200)]
Read EFad and expose the IMSI MNC length (2-3)
Denis Kenzior [Sun, 30 Aug 2009 20:32:08 +0000 (15:32 -0500)]
Reformat comments a little
Andres Salomon [Sun, 30 Aug 2009 20:00:26 +0000 (16:00 -0400)]
driver callback naming
On Sun, 30 Aug 2009 13:45:45 -0500
Denis Kenzior <denkenz@gmail.com> wrote:
> Hi Andres,
>
> > static struct ofono_modem_driver g1_driver = {
> > .name = "HTC G1",
> > .probe = g1_probe,
> > .enable = g1_enable,
> > .disable = g1_disable,
> > .remove = g1_remove,
> > .populate = g1_populate,
> > };
> >
>
> So the current intention:
> .probe - Detect whether device is really supported by the plugin,
> initialize any data structures specific to the device
> .remove - Destroy data structures
> .enable - Perform power up
> .disable - Perform power down
> .populate - Populate the atoms supported by this device (e.g. netreg,
> voicecall, etc) This is called by the core after every power cycle,
> when the device is brought up.
>
Thanks! See patch below.
> >
> > Of course, I'm also wondering why there needs to be two separate
> > layers of calls in the first place. Why not have drivers register
> > everything from within probe, call ofono_set_powered(modem, TRUE)
> > once the device is ready, and be done with it?
>
> The reason for this is e.g. airplane mode, where you physically want
> to turn off the device. Another case is for battery / power reasons,
> e.g. a netbook with a USB modem that is not being used.
>
Fair enough. In the kernel, we have callbacks named suspend/resume
to handle that.
> > The only reason why this doesn't blow up in the generic_at plugin is
> > because the driver_data is leaked. If one were to free it from
> > generic_at_exit in the wrong place (since it's allocated from
> > generic_at_init, it would make sense to free it in generic_at_exit),
> > one would see the same SEGV/SIGBUS/SIGILL errors upon ctrl-c.
>
> So the leak has now been fixed.
>
> I think you're being unnecessarily harsh here. To be fair, the
> generic_at driver does something like this at init:
My criticism is simply w/ the naming. 'enable'/'disable' doesn't imply
anything about power. powerup/powerdown, poweron/poweroff,
suspend/resume would all imply power state changes (at least the latter
would be familiar to those who do kernel stuff). Having comments that
describe what the callbacks do would also work, though.
>From
80a7b54d52201dfd7d8b590457450ae0a4f72888 Mon Sep 17 00:00:00 2001
From: Andres Salomon <dilinger@collabora.co.uk>
Date: Sun, 30 Aug 2009 15:56:16 -0400
Subject: [PATCH] Add comments to ofono_modem_driver struct
Document what all the callbacks do.
Denis Kenzior [Sun, 30 Aug 2009 18:29:11 +0000 (13:29 -0500)]
Fix memory leak in generic_at driver
Denis Kenzior [Sun, 30 Aug 2009 18:28:52 +0000 (13:28 -0500)]
Add debug to modem_create
Denis Kenzior [Wed, 26 Aug 2009 22:08:40 +0000 (17:08 -0500)]
Make history drivers work again
Denis Kenzior [Sat, 29 Aug 2009 15:44:44 +0000 (10:44 -0500)]
Fix a problem with CtrlZ echo
When a PDU is submitted and echoed by the modem, the CtrlZ character
is also echoed back. Fix the parser to handle this case appropriately.
Rémi Denis-Courmont [Fri, 28 Aug 2009 11:53:56 +0000 (14:53 +0300)]
gisi: return GPRS interface index/name
Aki Niemi [Tue, 25 Aug 2009 15:26:24 +0000 (18:26 +0300)]
gisi: Fix indication debugging
Aki Niemi [Tue, 25 Aug 2009 11:04:42 +0000 (14:04 +0300)]
Rename all files under drivers/isimodem/
Aki Niemi [Mon, 24 Aug 2009 16:19:11 +0000 (19:19 +0300)]
Fix typo in technology name
Marcel Holtmann [Tue, 25 Aug 2009 06:49:40 +0000 (23:49 -0700)]
Convert to fully non-recursive build system
Marcel Holtmann [Tue, 25 Aug 2009 02:05:41 +0000 (19:05 -0700)]
Use script to generate list of builtin plugin symbols
Marcel Holtmann [Tue, 25 Aug 2009 01:51:39 +0000 (18:51 -0700)]
Use proper variables for various commands
Aki Niemi [Mon, 24 Aug 2009 12:47:17 +0000 (15:47 +0300)]
Add straw-man for rest of ISI modem driver
Rémi Denis-Courmont [Mon, 24 Aug 2009 10:24:08 +0000 (13:24 +0300)]
Fix broken dependency on include/ofono/*.h files
The fact that the directory exists does not prove that (all of) the
header file symbolic links have been created. This is particularly
annoying when a new header file gets added.
Aki Niemi [Mon, 24 Aug 2009 10:34:53 +0000 (13:34 +0300)]
Fix build warning
Aki Niemi [Mon, 24 Aug 2009 10:13:31 +0000 (13:13 +0300)]
Fix typos
Aki Niemi [Sun, 23 Aug 2009 20:19:03 +0000 (23:19 +0300)]
gisi: Fix warning in g_isi_subscribe()
Save the GIsiModem instance in GIsiClient, so that calling
g_isi_subscribe() doesn't throw a warning.
Aki Niemi [Sun, 23 Aug 2009 20:16:46 +0000 (23:16 +0300)]
Fix memory leak in ISI phonebook driver
Aki Niemi [Sat, 22 Aug 2009 15:01:24 +0000 (18:01 +0300)]
gisi: Add debugging hooks
Aki Niemi [Sat, 22 Aug 2009 15:00:58 +0000 (18:00 +0300)]
Fix memory leak in isimodem.c
Aki Niemi [Sat, 22 Aug 2009 12:37:34 +0000 (15:37 +0300)]
Move dump_msg() to isi.h as static inline
Andrzej Zaborowski [Sat, 22 Aug 2009 02:37:04 +0000 (04:37 +0200)]
Fix getting the offset into sms fragment bitmap.
Otherwise only 64 fragments fit.
Denis Kenzior [Sat, 22 Aug 2009 00:13:19 +0000 (19:13 -0500)]
Add generic_at modem driver
Useful for testing or when the device is extremely 27.007 compliant,
e.g. phonesim
Denis Kenzior [Sat, 22 Aug 2009 00:12:27 +0000 (19:12 -0500)]
Update the isi driver to the new modem driver api
Denis Kenzior [Sat, 22 Aug 2009 00:11:32 +0000 (19:11 -0500)]
Introduce the Modem driver API
Denis Kenzior [Fri, 21 Aug 2009 00:44:23 +0000 (19:44 -0500)]
Remove org.ofono.at.Manager
Denis Kenzior [Fri, 21 Aug 2009 00:43:52 +0000 (19:43 -0500)]
Add CONFIGDIR automake magic
Denis Kenzior [Fri, 21 Aug 2009 00:19:21 +0000 (19:19 -0500)]
Remove unused function
Aki Niemi [Fri, 21 Aug 2009 13:31:17 +0000 (16:31 +0300)]
Enable multi-modem support
This patch enables concurrent use of multiple ISI modems, e.g., all
connected via USB using cdc_phonet.
Aki Niemi [Fri, 21 Aug 2009 13:30:13 +0000 (16:30 +0300)]
Enable multiple instances of phonebook driver
Aki Niemi [Fri, 21 Aug 2009 13:29:34 +0000 (16:29 +0300)]
Enable multiple instances of devinfo driver
Aki Niemi [Fri, 21 Aug 2009 13:28:32 +0000 (16:28 +0300)]
Move struct isi_data to private
Aki Niemi [Fri, 21 Aug 2009 07:16:42 +0000 (10:16 +0300)]
Refactor isidevinfo
Remove storing of pending request objects to linked list;
g_isi_client_destroy() will clear those properly. Fix naming of enums,
and use DECLARE_SUCCESS() macro.
Aki Niemi [Fri, 21 Aug 2009 07:06:40 +0000 (10:06 +0300)]
Pass modem instance to phonebook driver
Denis Kenzior [Thu, 20 Aug 2009 23:20:00 +0000 (18:20 -0500)]
Fix unused variable l
Denis Kenzior [Thu, 20 Aug 2009 23:19:21 +0000 (18:19 -0500)]
Rename ofono_modem_*_userdata
Rename ofono_modem_get_userdata to ofono_modem_get_data
Rename ofono_modem_set_userdata to ofono_modem_set_data
For consistency with other drivers
Denis Kenzior [Thu, 20 Aug 2009 21:58:01 +0000 (16:58 -0500)]
Hide the ofono_modem datastructure
Denis Kenzior [Thu, 20 Aug 2009 21:29:18 +0000 (16:29 -0500)]
Port history to the new atom API
Use __atom_foreach
Denis Kenzior [Thu, 20 Aug 2009 20:59:50 +0000 (15:59 -0500)]
Add __ofono_modem_foreach_atom function
Denis Kenzior [Thu, 20 Aug 2009 20:33:14 +0000 (15:33 -0500)]
Fix unused variable modem
Denis Kenzior [Thu, 20 Aug 2009 20:32:53 +0000 (15:32 -0500)]
Fix unused function remove_all_watches
Denis Kenzior [Thu, 20 Aug 2009 20:29:25 +0000 (15:29 -0500)]
Fix unused variable modem
Denis Kenzior [Thu, 20 Aug 2009 20:29:02 +0000 (15:29 -0500)]
Remove unused function
Denis Kenzior [Thu, 20 Aug 2009 20:28:39 +0000 (15:28 -0500)]
Remove unused function
Denis Kenzior [Thu, 20 Aug 2009 20:28:20 +0000 (15:28 -0500)]
Fix implicit declaration of extract_bcd_number
Denis Kenzior [Thu, 20 Aug 2009 20:27:01 +0000 (15:27 -0500)]
Fix unused variable path
Denis Kenzior [Thu, 20 Aug 2009 20:26:29 +0000 (15:26 -0500)]
Fix unused variable l
Denis Kenzior [Thu, 20 Aug 2009 20:24:40 +0000 (15:24 -0500)]
Fix unused variable pbd
Denis Kenzior [Thu, 20 Aug 2009 20:24:07 +0000 (15:24 -0500)]
Fix return with no value warning
Denis Kenzior [Thu, 20 Aug 2009 20:20:47 +0000 (15:20 -0500)]
Fix a bunch of warnings about mixed signedness
Denis Kenzior [Thu, 20 Aug 2009 20:18:14 +0000 (15:18 -0500)]
Fix implicit declaration of ofono_phonebook_create
Denis Kenzior [Thu, 20 Aug 2009 20:17:05 +0000 (15:17 -0500)]
Fix unused variable pbd
Denis Kenzior [Thu, 20 Aug 2009 20:16:32 +0000 (15:16 -0500)]
Fix unused variable chat
Denis Kenzior [Thu, 20 Aug 2009 20:15:40 +0000 (15:15 -0500)]
Fix implicit declaration of ofono_netreg_create
Denis Kenzior [Thu, 20 Aug 2009 20:12:54 +0000 (15:12 -0500)]
Fix control reaches end of non-void function
Denis Kenzior [Thu, 20 Aug 2009 20:11:58 +0000 (15:11 -0500)]
Fix unused variable err warning
Denis Kenzior [Thu, 20 Aug 2009 20:11:24 +0000 (15:11 -0500)]
Fix implicit declaration of close warning
Denis Kenzior [Thu, 20 Aug 2009 17:46:23 +0000 (12:46 -0500)]
Update ISI driver for new devinfo API
Denis Kenzior [Thu, 20 Aug 2009 17:45:53 +0000 (12:45 -0500)]
Update the AT modem driver to the new devinfo api
Denis Kenzior [Thu, 20 Aug 2009 17:43:25 +0000 (12:43 -0500)]
Break out device info into a separate driver
The modem info ops (Serial, Manufacturer, etc) are broken into a
separate oFono atom. This is mainly to support a proper modem device
driver infrastructure. As a result the data structures have been
tweaked a little.
driver.h is now empty and has been removed.
Denis Kenzior [Thu, 20 Aug 2009 16:23:31 +0000 (11:23 -0500)]
Use types.h instead of driver.h here
Denis Kenzior [Thu, 20 Aug 2009 04:29:12 +0000 (23:29 -0500)]
Remove unused variables
Aki Niemi [Thu, 20 Aug 2009 11:32:03 +0000 (14:32 +0300)]
Fix ISI driver side conditional name
Aki Niemi [Thu, 20 Aug 2009 11:18:30 +0000 (14:18 +0300)]
Fix make distcheck and clear GISI build flags when disabled
Aki Niemi [Thu, 20 Aug 2009 08:07:55 +0000 (11:07 +0300)]
Add configure switch to disable PhoNet/ISI support
Rémi Denis-Courmont [Thu, 20 Aug 2009 07:52:57 +0000 (10:52 +0300)]
gisi: PEP: use more portable non-blocking and close-on-exec
Denis Kenzior [Thu, 20 Aug 2009 01:32:49 +0000 (20:32 -0500)]
Fix make distcheck - gisi/modem.h
gisi/modem.h was not included in Makefile.am
Denis Kenzior [Thu, 20 Aug 2009 01:29:56 +0000 (20:29 -0500)]
Fix make distcheck
isicommon.h is no longer in the repository
Denis Kenzior [Wed, 19 Aug 2009 23:15:46 +0000 (18:15 -0500)]
Remove modem member from cb_data
Denis Kenzior [Wed, 19 Aug 2009 23:07:33 +0000 (18:07 -0500)]
Fix release specific not reporting proper reason
The proper disconnect reason was not being reported in the at modem
voicecall plugin
Denis Kenzior [Wed, 19 Aug 2009 23:06:44 +0000 (18:06 -0500)]
Emit the DisconnectReason signal
Denis Kenzior [Wed, 19 Aug 2009 22:46:33 +0000 (17:46 -0500)]
Make sure call history handles waiting calls
Missed waiting calls were not being handled properly
Denis Kenzior [Wed, 19 Aug 2009 22:29:23 +0000 (17:29 -0500)]
Remove poll_clcc variable
The reference implementation will always poll. If a modem vendor has
extensions for call status reporting, then those should be used in a
separate driver
Denis Kenzior [Wed, 19 Aug 2009 22:22:57 +0000 (17:22 -0500)]
Update the AT modem voicecall driver for new API
Denis Kenzior [Wed, 19 Aug 2009 22:22:02 +0000 (17:22 -0500)]
Evolve the voicecall driver