Open Source Telephony
 help / color / mirror / Atom feed
From: Andreas Westin <andreas.westin@stericsson.com>
To: ofono@ofono.org
Subject: [PATCH v2 00/18] wgmodem2.5 support
Date: Wed, 23 Feb 2011 12:43:11 +0100	[thread overview]
Message-ID: <cover.1298460572.git.andreas.westin@stericsson.com> (raw)

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

Hi,

Second go on the patches for wgmodem2.5, please review.

Note that we are still working on the changes for pipe/pep and CBS, having some
problems with testing them so those patches are not updated in this set just
included to ensure no conflicts.

Cheers
Andreas

Jessica Nilsson (18):
  gisi: pipe and pep for wgmodem2.5
  isimodem: added codepoints for u8500
  plugins: add plugin for u8500
  plugins: add u8500 to udev
  gisi: add getter and setter for sim
  src: add missing SIM enum to simutil.h
  isimodem: code points uicc sim wgmodem2.5
  isimodem: UICC sim support for wgmodem2.5
  isimodem: clip colp clir colr wgmodem2.5
  isimodem: wgmodem2.5 added to voicecall
  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: code points for sms wgmodem2.5
  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 |   28 +-
 drivers/isimodem/call-settings.c   |  711 ++++++++++-
 drivers/isimodem/call.h            |   89 ++
 drivers/isimodem/cbs.c             |  414 +++++-
 drivers/isimodem/debug.c           |  149 ++
 drivers/isimodem/debug.h           |    2 +
 drivers/isimodem/info.h            |    3 +
 drivers/isimodem/phonebook.c       | 1273 +++++++++++++++++-
 drivers/isimodem/sim.c             | 2678 +++++++++++++++++++++++++++++++++---
 drivers/isimodem/sms.c             |  958 +++++++++++--
 drivers/isimodem/sms.h             |   41 +-
 drivers/isimodem/ss.h              |   22 +
 drivers/isimodem/ssn.c             |  406 ++++++-
 drivers/isimodem/uicc.h            |  265 ++++
 drivers/isimodem/ussd.c            |   36 +-
 drivers/isimodem/voicecall.c       |  218 +++-
 gisi/message.c                     |    8 +
 gisi/message.h                     |    1 +
 gisi/modem.c                       |   42 +
 gisi/modem.h                       |    4 +
 gisi/pep.c                         |  330 +++++
 gisi/pep.h                         |    6 +
 gisi/pipe.c                        |  180 +++-
 gisi/pipe.h                        |   17 +
 plugins/ofono.rules                |    3 +
 plugins/u8500.c                    |  708 ++++++++++
 plugins/udev.c                     |    2 +
 src/simutil.h                      |    1 +
 30 files changed, 8192 insertions(+), 509 deletions(-)
 create mode 100644 drivers/isimodem/uicc.h
 create mode 100644 plugins/u8500.c

--
1.7.3.5


             reply	other threads:[~2011-02-23 11:43 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-23 11:43 Andreas Westin [this message]
2011-02-23 11:43 ` [PATCH v2 01/18] gisi: pipe and pep for wgmodem2.5 Andreas Westin
2011-02-23 11:43 ` [PATCH v2 02/18] isimodem: added codepoints for u8500 Andreas Westin
2011-02-23 13:17   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 03/18] plugins: add plugin " Andreas Westin
2011-02-23 13:26   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 04/18] plugins: add u8500 to udev Andreas Westin
2011-02-25 15:40   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 05/18] gisi: add getter and setter for sim Andreas Westin
2011-02-23 11:43 ` [PATCH v2 06/18] src: add missing SIM enum to simutil.h Andreas Westin
2011-02-25 15:41   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 07/18] isimodem: code points uicc sim wgmodem2.5 Andreas Westin
2011-02-25 15:41   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 08/18] isimodem: UICC sim support for wgmodem2.5 Andreas Westin
2011-02-25 15:20   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 09/18] isimodem: clip colp clir colr wgmodem2.5 Andreas Westin
2011-03-03 15:45   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 10/18] isimodem: wgmodem2.5 added to voicecall Andreas Westin
2011-03-03 15:45   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 11/18] isimodem: wgmodem2.5 support in USSD Andreas Westin
2011-03-03 15:45   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 12/18] isimodem: SS_GSM_BARRING_INFO added Andreas Westin
2011-03-03 15:46   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 13/18] isimodem: wgmodem2.5 added to call-forwarding Andreas Westin
2011-03-03 16:36   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 14/18] isimodem: wgmodem2.5 added to ssn Andreas Westin
2011-03-03 15:46   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 15/18] isimodem: code points for sms wgmodem2.5 Andreas Westin
2011-02-25 15:41   ` Aki Niemi
2011-02-23 11:43 ` [PATCH v2 16/18] isimodem: sms updated with wgmodem2.5 Andreas Westin
2011-02-23 11:43 ` [PATCH v2 17/18] isimodem: CBS for wgmodem2.5 Andreas Westin
2011-02-23 11:43 ` [PATCH v2 18/18] isimodem: initial support for UICC phonebook Andreas Westin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1298460572.git.andreas.westin@stericsson.com \
    --to=andreas.westin@stericsson.com \
    --cc=ofono@ofono.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox