uqmi: print radio interfaces in serving system command
[project/uqmi.git] / commands.h
1 /*
2 * uqmi -- tiny QMI support implementation
3 *
4 * Copyright (C) 2014-2015 Felix Fietkau <nbd@openwrt.org>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301 USA.
20 */
21
22 #ifndef __UQMI_COMMANDS_H
23 #define __UQMI_COMMANDS_H
24
25 #include <stdbool.h>
26 #include "commands-wds.h"
27 #include "commands-dms.h"
28 #include "commands-nas.h"
29 #include "commands-wms.h"
30 #include "commands-wda.h"
31 #include "commands-uim.h"
32
33 enum qmi_cmd_result {
34 QMI_CMD_DONE,
35 QMI_CMD_REQUEST,
36 QMI_CMD_EXIT,
37 };
38
39 enum {
40 CMD_TYPE_OPTION = -1,
41 };
42
43 struct uqmi_cmd_handler {
44 const char *name;
45 int type;
46
47 enum qmi_cmd_result (*prepare)(struct qmi_dev *qmi, struct qmi_request *req, struct qmi_msg *msg, char *arg);
48 void (*cb)(struct qmi_dev *qmi, struct qmi_request *req, struct qmi_msg *msg);
49 };
50
51 struct uqmi_cmd {
52 const struct uqmi_cmd_handler *handler;
53 char *arg;
54 };
55
56 #define __uqmi_commands \
57 __uqmi_command(version, get-versions, no, QMI_SERVICE_CTL), \
58 __uqmi_command(sync, sync, no, QMI_SERVICE_CTL), \
59 __uqmi_command(set_client_id, set-client-id, required, CMD_TYPE_OPTION), \
60 __uqmi_command(get_client_id, get-client-id, required, QMI_SERVICE_CTL), \
61 __uqmi_command(ctl_set_data_format, set-data-format, required, QMI_SERVICE_CTL), \
62 __uqmi_wds_commands, \
63 __uqmi_dms_commands, \
64 __uqmi_nas_commands, \
65 __uqmi_wms_commands, \
66 __uqmi_wda_commands, \
67 __uqmi_uim_commands
68
69 #define __uqmi_command(_name, _optname, _arg, _option) __UQMI_COMMAND_##_name
70 enum uqmi_command {
71 __uqmi_commands,
72 __UQMI_COMMAND_LAST
73 };
74 #undef __uqmi_command
75
76 extern bool single_line;
77 extern const struct uqmi_cmd_handler uqmi_cmd_handler[];
78 void uqmi_add_command(char *arg, int longidx);
79 bool uqmi_run_commands(struct qmi_dev *qmi);
80 int uqmi_add_error(const char *msg);
81
82 #endif