From: Marcel Holtmann <marcel@holtmann.org>
To: ofono@ofono.org
Subject: Re: [PATCH v4 1/3] SIMCOM SIM900 module support
Date: Wed, 11 Jan 2012 15:52:39 +0100 [thread overview]
Message-ID: <1326293559.6454.234.camel@aeonflux> (raw)
In-Reply-To: <1326290343-21973-1-git-send-email-r.r.zaripov@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 8686 bytes --]
Hi Renat,
> This patch add support for SIM900 GSM module
> http://wm.sim.com/Sim/FrontShow_en/wireless/detail.aspx?cid=6&nid=770
> ---
> Makefile.am | 3 +
> plugins/sim900.c | 261 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 264 insertions(+), 0 deletions(-)
> create mode 100644 plugins/sim900.c
>
> v4: Removed CNMI and CMGF commands in sim900_enable.
> Calling ofono_netreg_create moved in post_online.
> ofono_modem_set_powered(modem, FALSE) handled in sim900_disable by calling cfun_disable.
>
> diff --git a/Makefile.am b/Makefile.am
> index 6ef8549..64a7070 100644
> --- a/Makefile.am
> +++ b/Makefile.am
> @@ -346,6 +346,9 @@ builtin_sources += plugins/speedupcdma.c
> builtin_modules += samsung
> builtin_sources += plugins/samsung.c
>
> +builtin_modules += sim900
> +builtin_sources += plugins/sim900.c
> +
> if BLUETOOTH
> builtin_modules += bluetooth
> builtin_sources += plugins/bluetooth.c plugins/bluetooth.h
> diff --git a/plugins/sim900.c b/plugins/sim900.c
> new file mode 100644
> index 0000000..68bb0da
> --- /dev/null
> +++ b/plugins/sim900.c
> @@ -0,0 +1,261 @@
> +/*
> + *
> + * oFono - Open Source Telephony
> + *
> + * Copyright (C) 2008-2011 Intel Corporation. All rights reserved.
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + * GNU General Public License for more details.
> + *
> + * You should have received a copy of the GNU General Public License
> + * along with this program; if not, write to the Free Software
> + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
> + *
> + */
> +
> +#ifdef HAVE_CONFIG_H
> +#include <config.h>
> +#endif
> +
> +#include <errno.h>
> +#include <stdlib.h>
> +
> +#include <glib.h>
> +#include <gatchat.h>
> +#include <gattty.h>
> +
> +#define OFONO_API_SUBJECT_TO_CHANGE
> +#include <ofono/plugin.h>
> +#include <ofono/modem.h>
> +#include <ofono/devinfo.h>
> +#include <ofono/netreg.h>
> +#include <ofono/sim.h>
> +#include <ofono/sms.h>
> +#include <ofono/ussd.h>
> +#include <ofono/gprs.h>
> +#include <ofono/gprs-context.h>
> +#include <ofono/phonebook.h>
> +#include <ofono/history.h>
> +#include <ofono/log.h>
> +
> +#include <drivers/atmodem/vendor.h>
> +
> +static const char *none_prefix[] = { NULL };
> +
> +struct sim900_data {
> + GAtChat *modem;
> +};
> +
> +static int sim900_probe(struct ofono_modem *modem)
> +{
> + struct sim900_data *data;
> +
> + DBG("%p", modem);
> +
> + data = g_try_new0(struct sim900_data, 1);
> + if (data == NULL)
> + return -ENOMEM;
> +
> + ofono_modem_set_data(modem, data);
> +
> + return 0;
> +}
> +
> +static void sim900_remove(struct ofono_modem *modem)
> +{
> + struct sim900_data *data = ofono_modem_get_data(modem);
> +
> + DBG("%p", modem);
> +
> + ofono_modem_set_data(modem, NULL);
> +
> + g_at_chat_unref(data->modem);
> +
> + g_free(data);
> +}
> +
> +static void sim900_debug(const char *str, void *user_data)
> +{
> + const char *prefix = user_data;
> +
> + ofono_info("%s%s", prefix, str);
> +}
> +
> +static GAtChat *open_device(struct ofono_modem *modem,
> + const char *key, char *debug)
> +{
> + const char *device;
> + GAtSyntax *syntax;
> + GIOChannel *channel;
> + GAtChat *chat;
> + GHashTable *options;
> +
> + device = ofono_modem_get_string(modem, key);
> + if (device == NULL)
> + return NULL;
> +
> + DBG("%s %s", key, device);
> +
> + options = g_hash_table_new(g_str_hash, g_str_equal);
> + if (options == NULL)
> + return NULL;
> +
> + g_hash_table_insert(options, "Baud", "115200");
> + g_hash_table_insert(options, "Parity", "none");
> + g_hash_table_insert(options, "StopBits", "1");
> + g_hash_table_insert(options, "DataBits", "8");
> + g_hash_table_insert(options, "XonXoff", "off");
> + g_hash_table_insert(options, "Local", "off");
> + g_hash_table_insert(options, "RtsCts", "off");
> +
> + channel = g_at_tty_open(device, options);
> + if (channel == NULL)
> + return NULL;
> +
> + syntax = g_at_syntax_new_gsm_permissive();
> + chat = g_at_chat_new(channel, syntax);
> + g_at_syntax_unref(syntax);
> +
> + g_io_channel_unref(channel);
> +
> + if (chat == NULL)
> + return NULL;
> +
> + if (getenv("OFONO_AT_DEBUG"))
> + g_at_chat_set_debug(chat, sim900_debug, debug);
> +
> + return chat;
> +}
> +
> +static void cfun_enable(gboolean ok, GAtResult * result, gpointer user_data)
> +{
> + struct ofono_modem *modem = user_data;
> + struct sim900_data *data = ofono_modem_get_data(modem);
> +
> + DBG("");
> +
> + if (!ok) {
> + g_at_chat_unref(data->modem);
> + data->modem = NULL;
> + }
> +
> + ofono_modem_set_powered(modem, ok);
> +}
> +
> +static int sim900_enable(struct ofono_modem *modem)
> +{
> + struct sim900_data *data = ofono_modem_get_data(modem);
> +
> + DBG("%p", modem);
> +
> + data->modem = open_device(modem, "Device", "Device: ");
> + if (data->modem == NULL) {
> + DBG("return -EINVAL");
> + return -EINVAL;
> + }
> +
> + g_at_chat_send(data->modem, "ATE0", NULL, NULL, NULL, NULL);
> +
> + /* For obtain correct sms service number */
> + g_at_chat_send(data->modem, "AT+CSCS=\"GSM\"", NULL,
> + NULL, NULL, NULL);
you might better introduce a OFONO_VENDOR_SIM900 quirk and use that in
the SMS atom driver. The phonebook support will also end up overwriting
this one later on. So I am not even sure this works reliable this way.
Might be just pure luck with the order of the atom.
> +
> + g_at_chat_send(data->modem, "AT+CFUN=1", none_prefix,
> + cfun_enable, modem, NULL);
> +
> + return -EINPROGRESS;
> +}
> +
> +
> +static void cfun_disable(gboolean ok, GAtResult *result, gpointer user_data)
> +{
> + struct ofono_modem *modem = user_data;
> + struct sim900_data *data = ofono_modem_get_data(modem);
> +
> + DBG("");
> +
> + g_at_chat_unref(data->modem);
> + data->modem = NULL;
> +
> + if (ok)
> + ofono_modem_set_powered(modem, FALSE);
> +}
> +
> +static int sim900_disable(struct ofono_modem *modem)
> +{
> + struct sim900_data *data = ofono_modem_get_data(modem);
> +
> + DBG("%p", modem);
> +
> + g_at_chat_cancel_all(data->modem);
> + g_at_chat_unregister_all(data->modem);
> +
> + g_at_chat_send(data->modem, "AT+CFUN=4", none_prefix,
> + cfun_disable, modem, NULL);
> +
> + return -EINPROGRESS;
> +}
> +
> +static void sim900_pre_sim(struct ofono_modem *modem)
> +{
> + struct sim900_data *data = ofono_modem_get_data(modem);
> + struct ofono_sim *sim;
> +
> + DBG("%p", modem);
> +
> + ofono_devinfo_create(modem, 0, "atmodem", data->modem);
> + sim = ofono_sim_create(modem, 0, "atmodem", data->modem);
> +
> + if (sim)
> + ofono_sim_inserted_notify(sim, TRUE);
> +}
> +
> +static void sim900_post_sim(struct ofono_modem *modem)
> +{
> + struct sim900_data *data = ofono_modem_get_data(modem);
> +
> + DBG("%p", modem);
> +
> + ofono_phonebook_create(modem, 0, "atmodem", data->modem);
> +
> + ofono_sms_create(modem, 0, "atmodem", data->modem);
> +}
> +
> +static void sim900_post_online(struct ofono_modem *modem)
> +{
> + struct sim900_data *data = ofono_modem_get_data(modem);
> +
> + DBG("%p", modem);
> +
> + ofono_netreg_create(modem, OFONO_VENDOR_NOKIA, "atmodem", data->modem);
why do you need the Nokia vendor quirk here. I think you better create
your own one.
> +}
> +
> +static struct ofono_modem_driver sim900_driver = {
> + .name = "sim900",
> + .probe = sim900_probe,
> + .remove = sim900_remove,
> + .enable = sim900_enable,
> + .disable = sim900_disable,
> + .pre_sim = sim900_pre_sim,
> + .post_sim = sim900_post_sim,
> + .post_online = sim900_post_online,
> +};
Please indent these like the other plugins do. Look at ifx.c for
example.
> +
> +static int sim900_init(void)
> +{
> + return ofono_modem_driver_register(&sim900_driver);
> +}
> +
> +static void sim900_exit(void)
> +{
> + ofono_modem_driver_unregister(&sim900_driver);
> +}
> +
> +OFONO_PLUGIN_DEFINE(sim900, "SIM900 modem driver", VERSION,
> + OFONO_PLUGIN_PRIORITY_DEFAULT, sim900_init, sim900_exit)
Rest looks good to me.
Regards
Marcel
next prev parent reply other threads:[~2012-01-11 14:52 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-26 13:38 [PATCH] SIMCOM SIM900 module support r.r.zaripov
2011-12-27 23:03 ` Denis Kenzior
2011-12-29 12:06 ` [PATCH v3 1/3] " r.r.zaripov
2011-12-28 15:54 ` Denis Kenzior
2012-01-11 13:59 ` [PATCH v4 " r.r.zaripov
2012-01-11 13:59 ` [PATCH v4 2/3] Add SIM900 detection support r.r.zaripov
2012-01-11 14:54 ` Marcel Holtmann
2012-01-12 10:11 ` Renat Zaripov
2012-01-11 13:59 ` [PATCH v4 3/3] Adding a short description for usage of SIM900 plugin r.r.zaripov
2012-01-11 14:52 ` Marcel Holtmann [this message]
2012-01-11 11:21 ` [PATCH v4 1/3] SIMCOM SIM900 module support Denis Kenzior
2012-01-11 15:24 ` Marcel Holtmann
2012-01-11 11:41 ` Denis Kenzior
2012-01-12 10:55 ` Renat Zaripov
2012-01-12 11:52 ` Marcel Holtmann
2012-01-12 12:32 ` [PATCH v5 1/4] This patch add support for SIM900 GSM module r.r.zaripov
2012-01-12 5:52 ` Denis Kenzior
2012-01-12 12:32 ` [PATCH v5 2/4] Add SIM900 detection support r.r.zaripov
2012-01-12 12:32 ` [PATCH v5 3/4] SIM900 driver usage documentation r.r.zaripov
2012-01-12 12:32 ` [PATCH v5 4/4] SIM900 vendor quirk r.r.zaripov
2011-12-29 12:06 ` [PATCH v3 2/3] Add SIM900 detection support r.r.zaripov
2011-12-29 12:06 ` [PATCH v3 3/3] SIM900 driver usage documentation r.r.zaripov
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=1326293559.6454.234.camel@aeonflux \
--to=marcel@holtmann.org \
--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