| /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
| /* |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License as published by |
| * the Free Software Foundation; either version 2 of the License, or |
| * (at your option) any later version. |
| * |
| * 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: |
| * |
| * Copyright (C) 2022 Fibocom Wireless Inc. |
| */ |
| |
| #ifndef MM_SHARED_FIBOCOM_H |
| #define MM_SHARED_FIBOCOM_H |
| |
| #include <config.h> |
| |
| #include <glib-object.h> |
| #include <gio/gio.h> |
| |
| #define _LIBMM_INSIDE_MM |
| #include <libmm-glib.h> |
| |
| #include "mm-broadband-modem.h" |
| #include "mm-iface-modem.h" |
| #include "mm-iface-modem-firmware.h" |
| |
| #define MM_TYPE_SHARED_FIBOCOM mm_shared_fibocom_get_type () |
| G_DECLARE_INTERFACE (MMSharedFibocom, mm_shared_fibocom, MM, SHARED_FIBOCOM, MMIfaceModem) |
| |
| struct _MMSharedFibocomInterface { |
| GTypeInterface g_iface; |
| |
| /* Peek parent class of the object */ |
| MMBaseModemClass * (* peek_parent_class) (MMSharedFibocom *self); |
| |
| /* Peek modem interface of the parent class of the object */ |
| MMIfaceModemInterface * (* peek_parent_modem_interface) (MMSharedFibocom *self); |
| |
| /* Peek firmware interface of the parent class of the object */ |
| MMIfaceModemFirmwareInterface * (* peek_parent_firmware_interface) (MMSharedFibocom *self); |
| }; |
| |
| void mm_shared_fibocom_setup_ports (MMBroadbandModem *self); |
| |
| #if defined WITH_MBIM |
| |
| MMPort *mm_shared_fibocom_create_usbmisc_port (MMBaseModem *self, |
| const gchar *name, |
| MMPortType ptype); |
| MMPort *mm_shared_fibocom_create_wwan_port (MMBaseModem *self, |
| const gchar *name, |
| MMPortType ptype); |
| |
| #endif |
| |
| void mm_shared_fibocom_firmware_load_update_settings (MMIfaceModemFirmware *self, |
| GAsyncReadyCallback callback, |
| gpointer user_data); |
| MMFirmwareUpdateSettings *mm_shared_fibocom_firmware_load_update_settings_finish (MMIfaceModemFirmware *self, |
| GAsyncResult *res, |
| GError **error); |
| |
| void mm_shared_fibocom_setup_sim_hot_swap (MMIfaceModem *self, |
| GAsyncReadyCallback callback, |
| gpointer user_data); |
| gboolean mm_shared_fibocom_setup_sim_hot_swap_finish (MMIfaceModem *self, |
| GAsyncResult *res, |
| GError **error); |
| |
| #endif /* MM_SHARED_FIBOCOM_H */ |