uqmi: print radio interfaces in serving system command
[project/uqmi.git] / commands-dms.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 #define __uqmi_dms_commands \
23 __uqmi_command(dms_get_capabilities, get-capabilities, no, QMI_SERVICE_DMS), \
24 __uqmi_command(dms_get_pin_status, get-pin-status, no, QMI_SERVICE_DMS), \
25 __uqmi_command(dms_verify_pin1, verify-pin1, required, QMI_SERVICE_DMS), \
26 __uqmi_command(dms_verify_pin2, verify-pin2, required, QMI_SERVICE_DMS), \
27 __uqmi_command(dms_set_pin1_protection, set-pin1-protection, required, QMI_SERVICE_DMS), \
28 __uqmi_command(dms_set_pin2_protection, set-pin2-protection, required, QMI_SERVICE_DMS), \
29 __uqmi_command(dms_set_pin, pin, required, CMD_TYPE_OPTION), \
30 __uqmi_command(dms_change_pin1, change-pin1, no, QMI_SERVICE_DMS), \
31 __uqmi_command(dms_change_pin2, change-pin2, no, QMI_SERVICE_DMS), \
32 __uqmi_command(dms_unblock_pin1, unblock-pin1, no, QMI_SERVICE_DMS), \
33 __uqmi_command(dms_unblock_pin2, unblock-pin2, no, QMI_SERVICE_DMS), \
34 __uqmi_command(dms_set_puk, puk, required, CMD_TYPE_OPTION), \
35 __uqmi_command(dms_set_new_pin, new-pin, required, CMD_TYPE_OPTION), \
36 __uqmi_command(dms_get_iccid, get-iccid, no, QMI_SERVICE_DMS), \
37 __uqmi_command(dms_get_imsi, get-imsi, no, QMI_SERVICE_DMS), \
38 __uqmi_command(dms_get_imei, get-imei, no, QMI_SERVICE_DMS), \
39 __uqmi_command(dms_get_msisdn, get-msisdn, no, QMI_SERVICE_DMS), \
40 __uqmi_command(dms_set_operating_mode, set-device-operating-mode, required, QMI_SERVICE_DMS), \
41 __uqmi_command(dms_reset, reset-dms, no, QMI_SERVICE_DMS), \
42 __uqmi_command(dms_set_fcc_authentication, fcc-auth, no, QMI_SERVICE_DMS) \
43
44 #define dms_helptext \
45 " --get-capabilities: List device capabilities\n" \
46 " --get-pin-status: Get PIN verification status\n" \
47 " --verify-pin1 <pin>: Verify PIN1\n" \
48 " --verify-pin2 <pin>: Verify PIN2\n" \
49 " --set-pin1-protection <state>: Set PIN1 protection state (disabled, enabled)\n" \
50 " --pin <pin>: PIN1 needed to change state\n" \
51 " --set-pin2-protection <state>: Set PIN2 protection state (disabled, enabled)\n" \
52 " --pin <pin2>: PIN2 needed to change state\n" \
53 " --change-pin1: Change PIN1\n" \
54 " --pin <old pin>: Current PIN1\n" \
55 " --new-pin <new pin>: New pin\n" \
56 " --change-pin2: Change PIN2\n" \
57 " --pin <old pin>: Current PIN2\n" \
58 " --new-pin <new pin>: New pin\n" \
59 " --unblock-pin1: Unblock PIN1\n" \
60 " --puk <puk>: PUK needed to unblock\n" \
61 " --new-pin <new pin>: New pin\n" \
62 " --unblock-pin2: Unblock PIN2\n" \
63 " --puk <puk>: PUK needed to unblock\n" \
64 " --new-pin <new pin>: New pin\n" \
65 " --get-iccid: Get the ICCID\n" \
66 " --get-imsi: Get International Mobile Subscriber ID\n" \
67 " --get-imei: Get International Mobile Equipment ID\n" \
68 " --get-msisdn: Get the MSISDN (telephone number)\n" \
69 " --reset-dms: Reset the DMS service\n" \
70 " --set-device-operating-mode <m> Set the device operating mode\n" \
71 " (modes: online, low_power, factory_test, offline\n" \
72 " reset, shutting_down, persistent_low_power,\n" \
73 " mode_only_low_power)\n" \
74 " --fcc-auth: Set FCC authentication\n" \
75