From 12c846637d5aad619b7458e0aa0c35d916eaba92 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 24 Sep 2010 18:32:06 +0900 Subject: [PATCH] ifx: Add initial modem plugin implementation This is a first attempt at the Infineon modem support. The support is limited since it doesn't handle the setup of the multiplexer or the different SIM states yet. --- plugins/ifx.c | 255 +++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 250 insertions(+), 5 deletions(-) diff --git a/plugins/ifx.c b/plugins/ifx.c index e5700980..63f2a9c7 100644 --- a/plugins/ifx.c +++ b/plugins/ifx.c @@ -25,42 +25,283 @@ #include #include +#include + +#include +#include +#include #define OFONO_API_SUBJECT_TO_CHANGE #include #include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include +#include +#include + +#define NUM_DLC 4 + +#define VOICE_DLC 0 +#define NETREG_DLC 1 +#define GPRS_DLC 2 +#define AUX_DLC 3 + +struct ifx_data { + GAtChat *master; + GAtChat *dlcs[NUM_DLC]; +}; + +static void ifx_debug(const char *str, void *user_data) +{ + const char *prefix = user_data; + + ofono_info("%s%s", prefix, str); +} + static int ifx_probe(struct ofono_modem *modem) { - DBG(""); + struct ifx_data *data; + + DBG("%p", modem); + + data = g_try_new0(struct ifx_data, 1); + if (!data) + return -ENOMEM; + + ofono_modem_set_data(modem, data); return 0; } static void ifx_remove(struct ofono_modem *modem) { + struct ifx_data *data = ofono_modem_get_data(modem); + + DBG("%p", modem); + + ofono_modem_set_data(modem, NULL); + + g_free(data); +} + +static GAtChat *create_port(const char *device) +{ + GAtSyntax *syntax; + GIOChannel *channel; + GAtChat *chat; + + channel = g_at_tty_open(device, NULL); + if (!channel) + return NULL; + + syntax = g_at_syntax_new_gsmv1(); + chat = g_at_chat_new(channel, syntax); + g_at_syntax_unref(syntax); + g_io_channel_unref(channel); + + if (!chat) + return NULL; + + return chat; +} + +static GAtChat *open_device(const char *device, char *debug) +{ + GAtChat *chat; + + chat = create_port(device); + if (!chat) + return NULL; + + if (getenv("OFONO_AT_DEBUG")) + g_at_chat_set_debug(chat, ifx_debug, debug); + + return chat; +} + +static void cfun_enable(gboolean ok, GAtResult *result, gpointer user_data) +{ + struct ofono_modem *modem = user_data; + DBG(""); + + if (!ok) { + ofono_modem_set_powered(modem, FALSE); + return; + } + + ofono_modem_set_powered(modem, TRUE); } static int ifx_enable(struct ofono_modem *modem) { + struct ifx_data *data = ofono_modem_get_data(modem); const char *device; + int i; - DBG(""); + DBG("%p", modem); device = ofono_modem_get_string(modem, "Device"); if (device == NULL) return -EINVAL; - return 0; + DBG("%s", device); + + data->master = open_device(device, ""); + if (!data->master) + return -EIO; + + for (i = 0; i < NUM_DLC; i++) + data->dlcs[i] = data->master; + + g_at_chat_send(data->master, "ATE0 +CMEE=1", NULL, + NULL, NULL, NULL); + + g_at_chat_send(data->master, "AT+CFUN=4", NULL, + cfun_enable, modem, NULL); + + return -EINPROGRESS; +} + +static void cfun_disable(gboolean ok, GAtResult *result, gpointer user_data) +{ + struct ofono_modem *modem = user_data; + struct ifx_data *data = ofono_modem_get_data(modem); + int i; + + DBG(""); + + for (i = 0; i < NUM_DLC; i++) + data->dlcs[i] = NULL; + + g_at_chat_unref(data->master); + data->master = NULL; + + if (ok) + ofono_modem_set_powered(modem, FALSE); } static int ifx_disable(struct ofono_modem *modem) { - DBG(""); + struct ifx_data *data = ofono_modem_get_data(modem); - return 0; + DBG("%p", modem); + + if (!data->master) + return 0; + + g_at_chat_cancel_all(data->master); + g_at_chat_unregister_all(data->master); + + g_at_chat_send(data->master, "AT+CFUN=4", NULL, + cfun_disable, modem, NULL); + + return -EINPROGRESS; +} + +static void set_online_cb(gboolean ok, GAtResult *result, gpointer user_data) +{ + struct cb_data *cbd = user_data; + ofono_modem_online_cb_t cb = cbd->cb; + + if (ok) + CALLBACK_WITH_SUCCESS(cb, cbd->data); + else + CALLBACK_WITH_FAILURE(cb, cbd->data); +} + +static void ifx_set_online(struct ofono_modem *modem, ofono_bool_t online, + ofono_modem_online_cb_t cb, void *user_data) +{ + struct ifx_data *data = ofono_modem_get_data(modem); + struct cb_data *cbd = cb_data_new(cb, user_data); + char const *command = online ? "AT+CFUN=1" : "AT+CFUN=4"; + + DBG("%p %s", modem, online ? "online" : "offline"); + + if (!cbd) + goto error; + + if (g_at_chat_send(data->dlcs[AUX_DLC], command, NULL, + set_online_cb, cbd, g_free) > 0) + return; + +error: + g_free(cbd); + + CALLBACK_WITH_FAILURE(cb, cbd->data); +} + +static void ifx_pre_sim(struct ofono_modem *modem) +{ + struct ifx_data *data = ofono_modem_get_data(modem); + struct ofono_sim *sim; + + DBG("%p", modem); + + ofono_devinfo_create(modem, 0, "atmodem", data->dlcs[AUX_DLC]); + sim = ofono_sim_create(modem, 0, "atmodem", data->dlcs[AUX_DLC]); + ofono_voicecall_create(modem, 0, "ifxmodem", data->dlcs[VOICE_DLC]); + + if (sim) + ofono_sim_inserted_notify(sim, TRUE); +} + +static void ifx_post_sim(struct ofono_modem *modem) +{ + struct ifx_data *data = ofono_modem_get_data(modem); + + DBG("%p", modem); + + ofono_stk_create(modem, 0, "ifxmodem", data->dlcs[AUX_DLC]); + ofono_phonebook_create(modem, 0, "atmodem", data->dlcs[AUX_DLC]); +} + +static void ifx_post_online(struct ofono_modem *modem) +{ + struct ifx_data *data = ofono_modem_get_data(modem); + struct ofono_message_waiting *mw; + + DBG("%p", modem); + + ofono_radio_settings_create(modem, 0, "ifxmodem", data->dlcs[AUX_DLC]); + ofono_netreg_create(modem, OFONO_VENDOR_IFX, + "atmodem", data->dlcs[NETREG_DLC]); + + ofono_sms_create(modem, OFONO_VENDOR_IFX, + "atmodem", data->dlcs[AUX_DLC]); + ofono_cbs_create(modem, 0, "atmodem", data->dlcs[AUX_DLC]); + ofono_ussd_create(modem, 0, "atmodem", data->dlcs[AUX_DLC]); + + ofono_ssn_create(modem, 0, "atmodem", data->dlcs[AUX_DLC]); + ofono_call_forwarding_create(modem, 0, "atmodem", data->dlcs[AUX_DLC]); + ofono_call_settings_create(modem, 0, "atmodem", data->dlcs[AUX_DLC]); + ofono_call_meter_create(modem, 0, "atmodem", data->dlcs[AUX_DLC]); + ofono_call_barring_create(modem, 0, "atmodem", data->dlcs[AUX_DLC]); + ofono_call_volume_create(modem, 0, "atmodem", data->dlcs[AUX_DLC]); + + mw = ofono_message_waiting_create(modem); + if (mw) + ofono_message_waiting_register(mw); } static struct ofono_modem_driver ifx_driver = { @@ -69,6 +310,10 @@ static struct ofono_modem_driver ifx_driver = { .remove = ifx_remove, .enable = ifx_enable, .disable = ifx_disable, + .set_online = ifx_set_online, + .pre_sim = ifx_pre_sim, + .post_sim = ifx_post_sim, + .post_online = ifx_post_online, }; static int ifx_init(void)