blob: 69f8cdc958d4f48d0c660c4475bafbc1e871c691 [file] [log] [blame]
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +02001/* encoding.cpp
2 *
3 * Copyright (C) 2012 Ivan Klyuchnikov
4 * Copyright (C) 2012 Andreas Eversberg <jolly@eversberg.eu>
5 * Copyright (C) 2013 by Holger Hans Peter Freyther
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21#pragma once
22
23#include <stdint.h>
24#include <gsm_rlcmac.h>
Jacob Erlbeck5058bd62016-01-13 10:51:25 +010025#include <gprs_coding_scheme.h>
bhargava465f5bb2016-09-02 16:50:43 +053026extern "C" {
27#include <osmocom/gsm/l1sap.h>
28}
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +020029
30struct gprs_rlcmac_bts;
31struct gprs_rlcmac_tbf;
32struct bitvec;
Jacob Erlbeck14bb0942016-01-12 11:58:13 +010033struct gprs_llc;
34struct gprs_rlc_data_block_info;
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +020035
36/**
37 * I help with encoding data into CSN1 messages.
38 * TODO: Nobody can remember a function signature like this. One should
39 * fill out a struct with the request parameters and then hand the struct
40 * to the code.
41 */
42class Encoding {
43public:
44 static int write_immediate_assignment(
Jacob Erlbeck2647a332016-02-01 16:13:38 +010045 struct gprs_rlcmac_tbf *tbf,
bhargava465f5bb2016-09-02 16:50:43 +053046 bitvec * dest, uint8_t downlink, uint16_t ra,
Jacob Erlbeck2647a332016-02-01 16:13:38 +010047 uint32_t ref_fn, uint8_t ta, uint16_t arfcn, uint8_t ts,
48 uint8_t tsc, uint8_t usf, uint8_t polling,
49 uint32_t fn, uint8_t alpha, uint8_t gamma,
bhargava465f5bb2016-09-02 16:50:43 +053050 int8_t ta_idx,
51 enum ph_burst_type burst_type =
52 GSM_L1_BURST_TYPE_ACCESS_0,
53 uint8_t sb = 1);
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +020054
55 static void write_packet_uplink_assignment(
56 struct gprs_rlcmac_bts *bts,
57 bitvec * dest, uint8_t old_tfi,
Jacob Erlbeckf2694b72016-01-26 21:46:26 +010058 uint8_t old_downlink, uint32_t tlli, uint8_t use_tlli,
59 struct gprs_rlcmac_ul_tbf *tbf, uint8_t poll, uint8_t rrbp,
60 uint8_t alpha, uint8_t gamma, int8_t ta_idx,
61 int8_t use_egprs);
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +020062
Jacob Erlbeck166c9fc2016-01-07 16:04:29 +010063 static void write_packet_downlink_assignment(RlcMacDownlink_t * block,
Jacob Erlbeck6b356a52016-01-29 16:39:21 +010064 bool old_tfi_is_valid, uint8_t old_tfi, uint8_t old_downlink,
Jacob Erlbeckf2694b72016-01-26 21:46:26 +010065 struct gprs_rlcmac_tbf *tbf, uint8_t poll, uint8_t rrbp,
66 uint8_t alpha, uint8_t gamma,
67 int8_t ta_idx, uint8_t ta_ts, bool use_egprs);
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +020068
Daniel Willmann5241c1a2013-12-11 14:35:29 +010069 static void encode_rbb(const char *show_rbb, uint8_t *rbb);
70
Jacob Erlbeck37005a12015-12-22 14:58:34 +010071 static void write_packet_uplink_ack(
72 struct gprs_rlcmac_bts *bts, bitvec * dest,
Jacob Erlbeckf2694b72016-01-26 21:46:26 +010073 struct gprs_rlcmac_ul_tbf *tbf, bool is_final,
74 uint8_t rrbp);
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +020075
76 static int write_paging_request(bitvec * dest, uint8_t *ptmsi, uint16_t ptmsi_len);
77
78 static unsigned write_repeated_page_info(bitvec * dest, unsigned& wp, uint8_t len,
79 uint8_t *identity, uint8_t chan_needed);
80
81 static unsigned write_packet_paging_request(bitvec * dest);
Jacob Erlbeckf0e40392016-01-08 10:07:53 +010082
83 static int rlc_write_dl_data_header(
84 const struct gprs_rlc_data_info *rlc,
85 uint8_t *data);
86 static unsigned int rlc_copy_from_aligned_buffer(
87 const struct gprs_rlc_data_info *rlc,
88 unsigned int data_block_idx,
89 uint8_t *dst, const uint8_t *buffer);
Jacob Erlbeck14bb0942016-01-12 11:58:13 +010090
91 enum AppendResult {
92 AR_NEED_MORE_BLOCKS,
93 AR_COMPLETED_SPACE_LEFT,
94 AR_COMPLETED_BLOCK_FILLED,
95 };
96
97 static AppendResult rlc_data_to_dl_append(
Jacob Erlbeck5058bd62016-01-13 10:51:25 +010098 struct gprs_rlc_data_block_info *rdbi, GprsCodingScheme cs,
Jacob Erlbeck14bb0942016-01-12 11:58:13 +010099 gprs_llc *llc, int *offset, int *num_chunks,
Alexander Couzens6f0dc962016-05-30 19:30:21 +0200100 uint8_t *data, bool is_final, int *count_payload);
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +0200101};