gsm/utils: Adding conversion of "mobile power class" to dBm
[osmocom-bb.git] / include / osmocom / gsm / gsm_utils.h
1 /* GSM utility functions, e.g. coding and decoding */
2 /*
3  * (C) 2008 by Daniel Willmann <daniel@totalueberwachung.de>
4  * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
5  * (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
6  *
7  * All Rights Reserved
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  *
23  */
24
25 #ifndef GSM_UTILS_H
26 #define GSM_UTILS_H
27
28 #include <stdint.h>
29
30 #define ADD_MODULO(sum, delta, modulo) do {     \
31         if ((sum += delta) >= modulo)           \
32                 sum -= modulo;                  \
33         } while (0)
34
35 #define GSM_MAX_FN      (26*51*2048)
36
37 struct gsm_time {
38         uint32_t        fn;     /* FN count */
39         uint16_t        t1;     /* FN div (26*51) */
40         uint8_t         t2;     /* FN modulo 26 */
41         uint8_t         t3;     /* FN modulo 51 */
42         uint8_t         tc;
43 };
44
45 enum gsm_band {
46         GSM_BAND_850    = 1,
47         GSM_BAND_900    = 2,
48         GSM_BAND_1800   = 4,
49         GSM_BAND_1900   = 8,
50         GSM_BAND_450    = 0x10,
51         GSM_BAND_480    = 0x20,
52         GSM_BAND_750    = 0x40,
53         GSM_BAND_810    = 0x80,
54 };
55
56 const char *gsm_band_name(enum gsm_band band);
57 enum gsm_band gsm_band_parse(const char *mhz);
58
59 int gsm_7bit_decode(char *decoded, const uint8_t *user_data, uint8_t length);
60 int gsm_7bit_encode(uint8_t *result, const char *data);
61
62 unsigned int ms_class_gmsk_dbm(enum gsm_band band, int class);
63
64 int ms_pwr_ctl_lvl(enum gsm_band band, unsigned int dbm);
65 int ms_pwr_dbm(enum gsm_band band, uint8_t lvl);
66
67 /* According to TS 08.05 Chapter 8.1.4 */
68 int rxlev2dbm(uint8_t rxlev);
69 uint8_t dbm2rxlev(int dbm);
70
71 /* According to GSM 04.08 Chapter 10.5.1.6 */
72 static inline int ms_cm2_a5n_support(uint8_t *cm2, int n) {
73         switch (n) {
74                 case 0: return 1;
75                 case 1: return (cm2[0] & (1<<3)) ? 0 : 1;
76                 case 2: return (cm2[2] & (1<<0)) ? 1 : 0;
77                 case 3: return (cm2[2] & (1<<1)) ? 1 : 0;
78                 default:
79                         return 0;
80         }
81 }
82
83 /* According to GSM 04.08 Chapter 10.5.2.29 */
84 static inline int rach_max_trans_val2raw(int val) { return (val >> 1) & 3; }
85 static inline int rach_max_trans_raw2val(int raw) {
86         const int tbl[4] = { 1, 2, 4, 7 };
87         return tbl[raw & 3];
88 }
89
90 #define ARFCN_PCS       0x8000
91 #define ARFCN_UPLINK    0x4000
92 #define ARFCN_FLAG_MASK 0xf000  /* Reserve the upper 5 bits for flags */
93
94 enum gsm_band gsm_arfcn2band(uint16_t arfcn);
95
96 /* Convert an ARFCN to the frequency in MHz * 10 */
97 uint16_t gsm_arfcn2freq10(uint16_t arfcn, int uplink);
98
99 /* Convert from frame number to GSM time */
100 void gsm_fn2gsmtime(struct gsm_time *time, uint32_t fn);
101
102 /* Convert from GSM time to frame number */
103 uint32_t gsm_gsmtime2fn(struct gsm_time *time);
104
105 /* GSM TS 03.03 Chapter 2.6 */
106 enum gprs_tlli_type {
107         TLLI_LOCAL,
108         TLLI_FOREIGN,
109         TLLI_RANDOM,
110         TLLI_AUXILIARY,
111         TLLI_RESERVED,
112 };
113
114 /* TS 03.03 Chapter 2.6 */
115 int gprs_tlli_type(uint32_t tlli);
116
117 uint32_t gprs_tmsi2tlli(uint32_t p_tmsi, enum gprs_tlli_type type);
118
119 /* Osmocom internal, not part of any gsm spec */
120 enum gsm_phys_chan_config {
121         GSM_PCHAN_NONE,
122         GSM_PCHAN_CCCH,
123         GSM_PCHAN_CCCH_SDCCH4,
124         GSM_PCHAN_TCH_F,
125         GSM_PCHAN_TCH_H,
126         GSM_PCHAN_SDCCH8_SACCH8C,
127         GSM_PCHAN_PDCH,         /* GPRS PDCH */
128         GSM_PCHAN_TCH_F_PDCH,   /* TCH/F if used, PDCH otherwise */
129         GSM_PCHAN_UNKNOWN,
130         _GSM_PCHAN_MAX
131 };
132
133 /* Osmocom internal, not part of any gsm spec */
134 enum gsm_chan_t {
135         GSM_LCHAN_NONE,
136         GSM_LCHAN_SDCCH,
137         GSM_LCHAN_TCH_F,
138         GSM_LCHAN_TCH_H,
139         GSM_LCHAN_UNKNOWN,
140         GSM_LCHAN_CCCH,
141         _GSM_LCHAN_MAX
142 };
143
144
145 #endif