1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/**
* This file is part of samsung-ril.
*
* Copyright (C) 2010-2011 Joerie de Gram <j.de.gram@gmail.com>
* Copyright (C) 2011-2012 Paul Kocialkowski <contact@paulk.fr>
*
* samsung-ril 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 3 of the License, or
* (at your option) any later version.
*
* samsung-ril 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 samsung-ril. If not, see <http://www.gnu.org/licenses/>.
*
*/
#define LOG_TAG "RIL-DISP"
#include <utils/Log.h>
#include "samsung-ril.h"
#include "util.h"
/**
* Converts IPC RSSI to Android RIL format
*/
#if RIL_VERSION >= 6
void ipc2ril_rssi(unsigned char rssi, RIL_SignalStrength_v6 *ss)
#else
void ipc2ril_rssi(unsigned char rssi, RIL_SignalStrength *ss)
#endif
{
int ril_rssi = 0;
if (rssi > 0x6f) {
ril_rssi = 0;
} else {
ril_rssi = (((rssi - 0x71) * -1) - ((rssi - 0x71) * -1) % 2) / 2;
if (ril_rssi > 31)
ril_rssi = 31;
}
LOGD("Signal Strength is %d\n", ril_rssi);
#if RIL_VERSION >= 6
memset(ss, 0, sizeof(RIL_SignalStrength_v6));
memset(&ss->LTE_SignalStrength, -1, sizeof(ss->LTE_SignalStrength));
#else
memset(ss, 0, sizeof(RIL_SignalStrength));
#endif
ss->GW_SignalStrength.signalStrength = ril_rssi;
ss->GW_SignalStrength.bitErrorRate = 99;
}
void ril_request_signal_strength(RIL_Token t)
{
unsigned char request = 1;
ipc_fmt_send(IPC_DISP_ICON_INFO, IPC_TYPE_GET, &request, sizeof(request), ril_request_get_id(t));
}
void ipc_disp_icon_info(struct ipc_message_info *info)
{
struct ipc_disp_icon_info *icon_info = (struct ipc_disp_icon_info *) info->data;
#if RIL_VERSION >= 6
RIL_SignalStrength_v6 ss;
#else
RIL_SignalStrength ss;
#endif
/* Don't consider this if modem isn't in normal power mode. */
if (ril_data.state.power_state != IPC_PWR_PHONE_STATE_NORMAL)
return;
if (info->type == IPC_TYPE_NOTI && icon_info->rssi == 0xff)
return;
ipc2ril_rssi(icon_info->rssi, &ss);
if (info->type == IPC_TYPE_NOTI) {
LOGD("Unsol request!");
ril_request_unsolicited(RIL_UNSOL_SIGNAL_STRENGTH, &ss, sizeof(ss));
} else if (info->type == IPC_TYPE_RESP) {
LOGD("Sol request!");
ril_request_complete(ril_request_get_token(info->aseq), RIL_E_SUCCESS, &ss, sizeof(ss));
}
}
void ipc_disp_rssi_info(struct ipc_message_info *info)
{
struct ipc_disp_rssi_info *rssi_info = (struct ipc_disp_rssi_info *) info->data;
#if RIL_VERSION >= 6
RIL_SignalStrength_v6 ss;
#else
RIL_SignalStrength ss;
#endif
int rssi;
/* Don't consider this if modem isn't in normal power mode. */
if (ril_data.state.power_state != IPC_PWR_PHONE_STATE_NORMAL)
return;
ipc2ril_rssi(rssi_info->rssi, &ss);
ril_request_unsolicited(RIL_UNSOL_SIGNAL_STRENGTH, &ss, sizeof(ss));
}
|