Re: [PATCH 3/3] droid 4: Add probing.

2020-09-15 Thread Denis Kenzior

Hi Pavel,

On 9/15/20 8:23 AM, Pavel Machek wrote:

Probe Droid 4 modem. This should result in basic support working.
---
  Makefile.am  |   3 +
  plugins/droid.c  | 206 +++
  plugins/udevng.c |  31 +
  3 files changed, 240 insertions(+)
  create mode 100644 plugins/droid.c



Applied, thanks.

Regards,
-Denis
___
ofono mailing list -- ofono@ofono.org
To unsubscribe send an email to ofono-le...@ofono.org


[PATCH 3/3] droid 4: Add probing.

2020-09-15 Thread Pavel Machek
Probe Droid 4 modem. This should result in basic support working.
---
 Makefile.am  |   3 +
 plugins/droid.c  | 206 +++
 plugins/udevng.c |  31 +
 3 files changed, 240 insertions(+)
 create mode 100644 plugins/droid.c

diff --git a/Makefile.am b/Makefile.am
index fbb0eff4..9b3fbb8d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -603,6 +603,9 @@ builtin_sources += plugins/ublox.c
 builtin_modules += xmm7xxx
 builtin_sources += plugins/xmm7xxx.c
 
+builtin_modules += droid
+builtin_sources += plugins/droid.c
+
 if BLUETOOTH
 if BLUEZ4
 builtin_modules += sap
diff --git a/plugins/droid.c b/plugins/droid.c
new file mode 100644
index ..220d440b
--- /dev/null
+++ b/plugins/droid.c
@@ -0,0 +1,206 @@
+/*
+ *
+ *  oFono - Open Source Telephony
+ *
+ *  Copyright (C) 2008-2011  Intel Corporation. All rights reserved.
+ *  Copyright (C) 2009  Collabora Ltd. All rights reserved.
+ *  Copyright (C) 2020  Pavel Machek. 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 
+#endif
+
+#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 
+
+static void droid_debug(const char *str, void *user_data)
+{
+   const char *prefix = user_data;
+
+   ofono_info("%s%s", prefix, str);
+}
+
+/* Detect hardware, and initialize if found */
+static int droid_probe(struct ofono_modem *modem)
+{
+   DBG("");
+
+   return 0;
+}
+
+static void droid_remove(struct ofono_modem *modem)
+{
+   GAtChat *chat = ofono_modem_get_data(modem);
+
+   DBG("");
+
+   if (chat) {
+   g_at_chat_unref(chat);
+   ofono_modem_set_data(modem, NULL);
+   }
+}
+
+static void cfun_set_on_cb(gboolean ok, GAtResult *result, gpointer user_data)
+{
+   struct ofono_modem *modem = user_data;
+
+   DBG("");
+
+   if (ok)
+   ofono_modem_set_powered(modem, TRUE);
+}
+
+/* power up hardware */
+static int droid_enable(struct ofono_modem *modem)
+{
+   GAtChat *chat;
+
+   DBG("");
+
+   chat = at_util_open_device(modem, "Device", droid_debug, "", NULL);
+   ofono_modem_set_data(modem, chat);
+
+   /* ensure modem is in a known state; verbose on, echo/quiet off */
+   g_at_chat_send(chat, "ATE0Q0V1", NULL, NULL, NULL, NULL);
+
+   /* power up modem */
+   g_at_chat_send(chat, "AT+CFUN=1", NULL, cfun_set_on_cb, modem, NULL);
+
+   return 0;
+}
+
+static void cfun_set_off_cb(gboolean ok, GAtResult *result, gpointer user_data)
+{
+   struct ofono_modem *modem = user_data;
+   GAtChat *chat = ofono_modem_get_data(modem);
+
+   DBG("");
+
+   g_at_chat_unref(chat);
+   ofono_modem_set_data(modem, NULL);
+
+   if (ok)
+   ofono_modem_set_powered(modem, FALSE);
+}
+
+static int droid_disable(struct ofono_modem *modem)
+{
+   GAtChat *chat = ofono_modem_get_data(modem);
+
+   DBG("");
+
+   /* power down modem */
+   g_at_chat_cancel_all(chat);
+   g_at_chat_unregister_all(chat);
+   g_at_chat_send(chat, "AT+CFUN=0", NULL, cfun_set_off_cb, modem, NULL);
+
+   return -EINPROGRESS;
+}
+
+static void droid_pre_sim(struct ofono_modem *modem)
+{
+   GAtChat *chat = ofono_modem_get_data(modem);
+   struct ofono_sim *sim;
+
+   DBG("");
+
+   ofono_devinfo_create(modem, 0, "atmodem", chat);
+   sim = ofono_sim_create(modem, OFONO_VENDOR_DROID, "atmodem", chat);
+   ofono_voicecall_create(modem, OFONO_VENDOR_DROID, "atmodem", chat);
+
+   if (sim)
+   ofono_sim_inserted_notify(sim, TRUE);
+}
+
+static void droid_post_sim(struct ofono_modem *modem)
+{
+   GAtChat *chat = ofono_modem_get_data(modem);
+   struct ofono_message_waiting *mw;
+
+   DBG("");
+
+   ofono_ussd_create(modem, 0, "atmodem", chat);
+   ofono_call_forwarding_create(modem, 0, "atmodem", chat);
+   ofono_call_settings_create(modem, 0, "atmodem", chat);
+   ofono_netreg_create(modem, 0, "atmodem", chat);
+   /*
+* Droid 4 modem has problems with AT+CPUC?, avoid call meter for now.
+*/
+