blob: 43ab0b8f0f8708e0ec2018c81a460ec580263132 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file gsm0502.h */
2
Sylvain Munaut12ba7782014-06-16 10:13:40 +02003#pragma once
Harald Welte94df39e2011-06-26 14:33:57 +02004
5#include <stdint.h>
6
7#include <osmocom/gsm/protocol/gsm_04_08.h>
8#include <osmocom/gsm/protocol/gsm_08_58.h>
9
Vadim Yanitskiyed0445b2020-06-17 03:55:46 +070010/* 4.3.3 TDMA frame number : constants and modular arithmetic */
11#define GSM_TDMA_FN_DURATION_nS 4615384 /* in 1e−9 seconds (approx) */
12#define GSM_TDMA_FN_DURATION_uS 4615 /* in 1e-6 seconds (approx) */
13
14#define GSM_TDMA_SUPERFRAME (26 * 51)
15#define GSM_TDMA_HYPERFRAME (2048 * GSM_TDMA_SUPERFRAME)
16
17/*! Return the sum of two specified TDMA frame numbers (summation) */
18#define GSM_TDMA_FN_SUM(a, b) \
Vadim Yanitskiy8deedfa2022-10-04 02:41:13 +070019 (((a) + (b)) % GSM_TDMA_HYPERFRAME)
Vadim Yanitskiyed0445b2020-06-17 03:55:46 +070020/*! Return the difference of two specified TDMA frame numbers (subtraction) */
21#define GSM_TDMA_FN_SUB(a, b) \
Vadim Yanitskiy8deedfa2022-10-04 02:41:13 +070022 (((a) + GSM_TDMA_HYPERFRAME - (b)) % GSM_TDMA_HYPERFRAME)
Vadim Yanitskiyed0445b2020-06-17 03:55:46 +070023/*! Return the *minimum* difference of two specified TDMA frame numbers (distance) */
24#define GSM_TDMA_FN_DIFF(a, b) \
25 OSMO_MIN(GSM_TDMA_FN_SUB(a, b), GSM_TDMA_FN_SUB(b, a))
26
27/*! Increment the given TDMA frame number by 1 and return the result (like ++fn) */
28#define GSM_TDMA_FN_INC(fn) \
29 ((fn) = GSM_TDMA_FN_SUM((fn), 1))
30/*! Decrement the given TDMA frame number by 1 and return the result (like --fn) */
31#define GSM_TDMA_FN_DEC(fn) \
32 ((fn) = GSM_TDMA_FN_SUB((fn), 1))
33
Vadim Yanitskiyc657a502023-03-06 04:42:14 +070034/* 5.2.3.1 Normal burst for GMSK (1 bit per symbol) */
35#define GSM_NBITS_NB_GMSK_TAIL 3
36#define GSM_NBITS_NB_GMSK_PAYLOAD (2 * 58)
37#define GSM_NBITS_NB_GMSK_TRAIN_SEQ 26
38#define GSM_NBITS_NB_GMSK_BURST 148 /* without guard period */
39
40/* 5.2.3.3 Normal burst for 8-PSK (3 bits per symbol) */
41#define GSM_NBITS_NB_8PSK_TAIL (GSM_NBITS_NB_GMSK_TAIL * 3)
42#define GSM_NBITS_NB_8PSK_PAYLOAD (GSM_NBITS_NB_GMSK_PAYLOAD * 3)
43#define GSM_NBITS_NB_8PSK_TRAIN_SEQ (GSM_NBITS_NB_GMSK_TRAIN_SEQ * 3)
44#define GSM_NBITS_NB_8PSK_BURST (GSM_NBITS_NB_GMSK_BURST * 3)
45
46/* 5.2.5 Synchronization burst (also GMSK) */
47#define GSM_NBITS_SB_GMSK_TAIL GSM_NBITS_NB_GMSK_TAIL
48#define GSM_NBITS_SB_GMSK_PAYLOAD (2 * 39)
49#define GSM_NBITS_SB_GMSK_ETRAIN_SEQ 64
50#define GSM_NBITS_SB_GMSK_BURST GSM_NBITS_NB_GMSK_BURST
51
52/* 5.2.6 Dummy burst (also GMSK) */
53#define GSM_NBITS_DB_GMSK_TAIL GSM_NBITS_NB_GMSK_TAIL
54#define GSM_NBITS_DB_GMSK_MIXED 142
55#define GSM_NBITS_DB_GMSK_BURST GSM_NBITS_NB_GMSK_BURST
56
57/* 5.2.7 Access burst (also GMSK) */
58#define GSM_NBITS_AB_GMSK_ETAIL 8
59#define GSM_NBITS_AB_GMSK_SYNCH_SEQ 41
60#define GSM_NBITS_AB_GMSK_PAYLOAD 36
61#define GSM_NBITS_AB_GMSK_TAIL GSM_NBITS_NB_GMSK_TAIL
62#define GSM_NBITS_AB_GMSK_BURST GSM_NBITS_NB_GMSK_BURST
63
Harald Welte94df39e2011-06-26 14:33:57 +020064/* Table 5 Clause 7 TS 05.02 */
65static inline unsigned int
Pau Espin Pedrol6ca0a432022-11-24 17:09:03 +010066gsm0502_get_n_pag_blocks(const struct gsm48_control_channel_descr *chan_desc)
Harald Welte94df39e2011-06-26 14:33:57 +020067{
68 if (chan_desc->ccch_conf == RSL_BCCH_CCCH_CONF_1_C)
69 return 3 - chan_desc->bs_ag_blks_res;
70 else
71 return 9 - chan_desc->bs_ag_blks_res;
72}
73
74/* Chapter 6.5.2 of TS 05.02 */
75static inline unsigned int
76gsm0502_get_ccch_group(uint64_t imsi, unsigned int bs_cc_chans,
77 unsigned int n_pag_blocks)
78{
79 return (imsi % 1000) % (bs_cc_chans * n_pag_blocks) / n_pag_blocks;
80}
81
82/* Chapter 6.5.2 of TS 05.02 */
83static inline unsigned int
84gsm0502_get_paging_group(uint64_t imsi, unsigned int bs_cc_chans,
85 int n_pag_blocks)
86{
87 return (imsi % 1000) % (bs_cc_chans * n_pag_blocks) % n_pag_blocks;
88}
89
Harald Welteea19c972011-06-26 14:47:16 +020090unsigned int
Pau Espin Pedrol6ca0a432022-11-24 17:09:03 +010091gsm0502_calc_paging_group(const struct gsm48_control_channel_descr *chan_desc, uint64_t imsi);
Philipp Maier69e00cc2019-10-09 13:38:38 +020092
93enum gsm0502_fn_remap_channel {
94 FN_REMAP_TCH_F,
95 FN_REMAP_TCH_H0,
96 FN_REMAP_TCH_H1,
97 FN_REMAP_FACCH_F,
98 FN_REMAP_FACCH_H0,
99 FN_REMAP_FACCH_H1,
100 FN_REMAP_MAX,
101};
102
103uint32_t gsm0502_fn_remap(uint32_t fn, enum gsm0502_fn_remap_channel channel);
Sylvain Munaut63bee452020-05-14 03:02:26 +0700104
105uint16_t gsm0502_hop_seq_gen(const struct gsm_time *t,
106 uint8_t hsn, uint8_t maio,
107 size_t n, const uint16_t *ma);
Vadim Yanitskiy418d76c2023-06-22 23:00:05 +0700108
109int gsm0502_fn2ccch_block(uint32_t fn);