All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/18] wgmodem2.5 support
@ 2011-02-15 12:30 Andreas Westin
  2011-02-15 12:30 ` [PATCH 01/18] gisi: pipe and pep for wgmodem2.5 Andreas Westin
                   ` (17 more replies)
  0 siblings, 18 replies; 38+ messages in thread
From: Andreas Westin @ 2011-02-15 12:30 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 3102 bytes --]

Hi,

This series of patches adds wgmodem2.5 support to isimodem and provides a plugin
for the ST-Ericsson u8500 platform. I'm sending these on Jessica's behalf.

After discussions with Aki about how to handle the 2 versions of ISI we have
implemented 2 methods to handle this, first in case the resource IDs differ
between the 2 version we use this as a way to tell them apart, otherwise we
check the version information from the modem server.

Caveat: We haven't found any good way of integrating the u8500 IMEI specific
handling into the u8500 plugin, it currently resides in devinfo.

Jessica Nilsson (18):
  gisi: pipe and pep for wgmodem2.5
  gisi: modem version detection
  isimodem: general build updates for wgmodem2.5
  gisi: fix subscription for wgmodem2.5
  plugins: add plugin for u8500
  plugins: add u8500 to udev
  isimodem: add wgmodem2.5 to devinfo
  isimodem: UICC sim support for wgmodem2.5
  isimodem: clip colp clir colr wgmodem2.5
  isimodem: wgmodem2.5 added to voicecall
  isimodem: gprs-context updates wgmodem2.5
  isimodem: wgmodem2.5 support in USSD
  isimodem: SS_GSM_BARRING_INFO added
  isimodem: wgmodem2.5 added to call-forwarding
  isimodem: wgmodem2.5 added to ssn
  isimodem: sms updated with wgmodem2.5
  isimodem: CBS for wgmodem2.5
  isimodem: initial support for UICC phonebook

 Makefile.am                        |    7 +-
 drivers/isimodem/call-barring.c    |   99 ++-
 drivers/isimodem/call-forwarding.c |   30 +-
 drivers/isimodem/call-settings.c   |  697 ++++++++++-
 drivers/isimodem/call.h            |   89 ++
 drivers/isimodem/cbs.c             |  425 ++++++-
 drivers/isimodem/debug.c           |  197 +++
 drivers/isimodem/debug.h           |   10 +
 drivers/isimodem/devinfo.c         |  161 ++-
 drivers/isimodem/gprs-context.c    |   95 +-
 drivers/isimodem/info.h            |    3 +
 drivers/isimodem/mtc.h             |   38 +
 drivers/isimodem/phonebook.c       | 1241 ++++++++++++++++++-
 drivers/isimodem/sim.c             | 2381 ++++++++++++++++++++++++++++++++++--
 drivers/isimodem/sms.c             |  972 +++++++++++++--
 drivers/isimodem/sms.h             |   41 +-
 drivers/isimodem/ss.h              |   22 +
 drivers/isimodem/ssn.c             |  382 ++++++-
 drivers/isimodem/uicc.h            |  268 ++++
 drivers/isimodem/ussd.c            |   36 +-
 drivers/isimodem/voicecall.c       |  218 +++-
 gisi/message.c                     |    8 +
 gisi/message.h                     |    1 +
 gisi/modem.c                       |   51 +-
 gisi/modem.h                       |    7 +
 gisi/pep.c                         |  330 +++++
 gisi/pep.h                         |    6 +
 gisi/pipe.c                        |  180 +++-
 gisi/pipe.h                        |   17 +
 plugins/ofono.rules                |    3 +
 plugins/u8500.c                    |  506 ++++++++
 plugins/udev.c                     |    2 +
 32 files changed, 8073 insertions(+), 450 deletions(-)
 create mode 100644 drivers/isimodem/uicc.h
 create mode 100644 plugins/u8500.c

--
1.7.3.5


^ permalink raw reply	[flat|nested] 38+ messages in thread

end of thread, other threads:[~2011-02-18 14:17 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-15 12:30 [PATCH 00/18] wgmodem2.5 support Andreas Westin
2011-02-15 12:30 ` [PATCH 01/18] gisi: pipe and pep for wgmodem2.5 Andreas Westin
2011-02-15 13:23   ` =?unknown-8bit?q?R=C3=A9mi?= Denis-Courmont
2011-02-15 13:30     ` Mika.Liljeberg
2011-02-16  9:27     ` Andreas WESTIN
2011-02-15 12:30 ` [PATCH 02/18] gisi: modem version detection Andreas Westin
2011-02-15 12:30 ` [PATCH 03/18] isimodem: general build updates for wgmodem2.5 Andreas Westin
2011-02-16 11:19   ` Aki Niemi
2011-02-15 12:30 ` [PATCH 04/18] gisi: fix subscription " Andreas Westin
2011-02-16 11:16   ` Aki Niemi
2011-02-16 11:33     ` Andreas WESTIN
2011-02-16 11:37       ` Aki Niemi
2011-02-15 12:30 ` [PATCH 05/18] plugins: add plugin for u8500 Andreas Westin
2011-02-16 14:26   ` Aki Niemi
2011-02-16 15:27     ` Andreas WESTIN
2011-02-17  9:02       ` Aki Niemi
2011-02-15 12:31 ` [PATCH 06/18] plugins: add u8500 to udev Andreas Westin
2011-02-15 12:31 ` [PATCH 07/18] isimodem: add wgmodem2.5 to devinfo Andreas Westin
2011-02-16 14:15   ` Aki Niemi
2011-02-15 12:31 ` [PATCH 08/18] isimodem: UICC sim support for wgmodem2.5 Andreas Westin
2011-02-17 13:55   ` Aki Niemi
2011-02-15 12:31 ` [PATCH 09/18] isimodem: clip colp clir colr wgmodem2.5 Andreas Westin
2011-02-18  8:15   ` Aki Niemi
2011-02-15 12:31 ` [PATCH 10/18] isimodem: wgmodem2.5 added to voicecall Andreas Westin
2011-02-15 12:31 ` [PATCH 11/18] isimodem: gprs-context updates wgmodem2.5 Andreas Westin
2011-02-18 14:17   ` Aki Niemi
2011-02-15 12:31 ` [PATCH 12/18] isimodem: wgmodem2.5 support in USSD Andreas Westin
2011-02-15 12:31 ` [PATCH 13/18] isimodem: SS_GSM_BARRING_INFO added Andreas Westin
2011-02-15 12:31 ` [PATCH 14/18] isimodem: wgmodem2.5 added to call-forwarding Andreas Westin
2011-02-15 12:31 ` [PATCH 15/18] isimodem: wgmodem2.5 added to ssn Andreas Westin
2011-02-15 12:31 ` [PATCH 16/18] isimodem: sms updated with wgmodem2.5 Andreas Westin
2011-02-16 14:22   ` Aki Niemi
2011-02-16 14:47     ` Andreas WESTIN
2011-02-17 10:30       ` Aki Niemi
2011-02-15 12:31 ` [PATCH 17/18] isimodem: CBS for wgmodem2.5 Andreas Westin
2011-02-16 16:10   ` Denis Kenzior
2011-02-17 12:47     ` Andreas WESTIN
2011-02-15 12:31 ` [PATCH 18/18] isimodem: initial support for UICC phonebook Andreas Westin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.