aboutsummaryrefslogtreecommitdiffstats
path: root/tests/i460_mux/i460_mux_test.c
blob: 7695cb4a38372b75eebf871bebd49b8bbeb794bc (plain)
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
#include <osmocom/core/utils.h>

#include <osmocom/gsm/i460_mux.h>

static void bits_cb(struct osmo_i460_subchan *schan, void *user_data,
		    const ubit_t *bits, unsigned int num_bits)
{
	char *str = user_data;
	printf("demux_bits_cb '%s': %s\n", str, osmo_ubit_dump(bits, num_bits));
}


const struct osmo_i460_schan_desc scd64 = {
	.rate = OSMO_I460_RATE_64k,
	.bit_offset = 0,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "64k",
	},
};

const struct osmo_i460_schan_desc scd32_0 = {
	.rate = OSMO_I460_RATE_32k,
	.bit_offset = 0,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "32k_0",
	},
};
const struct osmo_i460_schan_desc scd32_4 = {
	.rate = OSMO_I460_RATE_32k,
	.bit_offset = 4,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "32k_4",
	},
};

const struct osmo_i460_schan_desc scd16_0 = {
	.rate = OSMO_I460_RATE_16k,
	.bit_offset = 0,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "16k_0",
	},
};
const struct osmo_i460_schan_desc scd16_2 = {
	.rate = OSMO_I460_RATE_16k,
	.bit_offset = 2,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "16k_2",
	},
};
const struct osmo_i460_schan_desc scd16_4 = {
	.rate = OSMO_I460_RATE_16k,
	.bit_offset = 4,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "16k_4",
	},
};
const struct osmo_i460_schan_desc scd16_6 = {
	.rate = OSMO_I460_RATE_16k,
	.bit_offset = 6,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "16k_6",
	},
};

const struct osmo_i460_schan_desc scd8_0 = {
	.rate = OSMO_I460_RATE_8k,
	.bit_offset = 0,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "8k_0",
	},
};
const struct osmo_i460_schan_desc scd8_1 = {
	.rate = OSMO_I460_RATE_8k,
	.bit_offset = 1,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "8k_1",
	},
};
const struct osmo_i460_schan_desc scd8_2 = {
	.rate = OSMO_I460_RATE_8k,
	.bit_offset = 2,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "8k_2",
	},
};
const struct osmo_i460_schan_desc scd8_3 = {
	.rate = OSMO_I460_RATE_8k,
	.bit_offset = 3,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "8k_3",
	},
};
const struct osmo_i460_schan_desc scd8_4 = {
	.rate = OSMO_I460_RATE_8k,
	.bit_offset = 4,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "8k_4",
	},
};
const struct osmo_i460_schan_desc scd8_5 = {
	.rate = OSMO_I460_RATE_8k,
	.bit_offset = 5,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "8k_5",
	},
};
const struct osmo_i460_schan_desc scd8_6 = {
	.rate = OSMO_I460_RATE_8k,
	.bit_offset = 6,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "8k_6",
	},
};
const struct osmo_i460_schan_desc scd8_7 = {
	.rate = OSMO_I460_RATE_8k,
	.bit_offset = 7,
	.demux = {
		.num_bits = 40,
		.out_cb_bits = bits_cb,
		.out_cb_bytes = NULL,
		.user_data = "8k_7",
	},
};

static void test_no_subchan(void)
{
	struct osmo_i460_timeslot _ts, *ts = &_ts;

	/* Initialization */
	printf("\n==> %s\n", __func__);
	osmo_i460_ts_init(ts);

	/* feed in some data; expect nothing to happen */
	const uint8_t nothing[128] = { 0, };
	osmo_i460_demux_in(ts, nothing, sizeof(nothing));

	/* pull bytes out of mux (should be all 0xff) */
	uint8_t buf[128];
	osmo_i460_mux_out(ts, buf, sizeof(buf));
	printf("out: %s\n", osmo_hexdump(buf, sizeof(buf)));
}

static struct msgb *gen_alternating_bitmsg(unsigned int num_bits)
{
	struct msgb *msg = msgb_alloc(num_bits, "mux-in");
	int i;
	for (i = 0; i < num_bits; i++)
		msgb_put_u8(msg, i & 1);
	return msg;
}

static void test_64k_subchan(void)
{
	struct osmo_i460_timeslot _ts, *ts = &_ts;

	/* Initialization */
	printf("\n==> %s\n", __func__);
	osmo_i460_ts_init(ts);
	osmo_i460_subchan_add(NULL, ts, &scd64);

	/* demux */
	uint8_t sequence[128];
	int i;
	for (i = 0; i < sizeof(sequence); i++)
		sequence[i] = i;
	osmo_i460_demux_in(ts, sequence, sizeof(sequence));

	/* mux */
	struct msgb *msg = gen_alternating_bitmsg(128);
	osmo_i460_mux_enqueue(&ts->schan[0], msg);

	uint8_t buf[16];
	osmo_i460_mux_out(ts, buf, sizeof(buf));
	printf("mux_out: %s\n", osmo_hexdump(buf, sizeof(buf)));

	osmo_i460_subchan_del(&ts->schan[0]);
}

static void test_32k_subchan(void)
{
	struct osmo_i460_timeslot _ts, *ts = &_ts;

	/* Initialization */
	printf("\n==> %s\n", __func__);
	osmo_i460_ts_init(ts);
	osmo_i460_subchan_add(NULL, ts, &scd32_0);
	osmo_i460_subchan_add(NULL, ts, &scd32_4);

	/* demux */
	uint8_t sequence[10];
	int i;
	for (i = 0; i < sizeof(sequence); i++)
		sequence[i] = 0;
	sequence[1] = 0xf0;
	sequence[0] = 0x0f;
	sequence[2] = 0xff;
	osmo_i460_demux_in(ts, sequence, sizeof(sequence));

	/* mux */

	/* test with only a single channel active */
	for (i = 0; i < 2; i++) {
		struct msgb *msg = gen_alternating_bitmsg(128);
		osmo_i460_mux_enqueue(&ts->schan[i], msg);
		printf("%s-single-%u\n", __func__, i);

		uint8_t buf[16];
		int j;
		for (j = 0; j < 3; j++) {
			osmo_i460_mux_out(ts, buf, sizeof(buf));
			printf("mux_out: %s\n", osmo_hexdump(buf, sizeof(buf)));
		}
	}

	for (i = 0; i < 4; i++)
		osmo_i460_subchan_del(&ts->schan[i]);
}



static void test_16k_subchan(void)
{
	struct osmo_i460_timeslot _ts, *ts = &_ts;

	/* Initialization */
	printf("\n==> %s\n", __func__);
	osmo_i460_ts_init(ts);
	osmo_i460_subchan_add(NULL, ts, &scd16_0);
	osmo_i460_subchan_add(NULL, ts, &scd16_2);
	osmo_i460_subchan_add(NULL, ts, &scd16_4);
	osmo_i460_subchan_add(NULL, ts, &scd16_6);

	/* demux */
	uint8_t sequence[20];
	int i;
	for (i = 0; i < sizeof(sequence); i++)
		sequence[i] = 0;
	sequence[0] = 0xC0;
	sequence[1] = 0x30;
	sequence[2] = 0x0c;
	sequence[3] = 0x03;
	sequence[4] = 0xff;
	osmo_i460_demux_in(ts, sequence, sizeof(sequence));

	/* mux */

	/* test with only a single channel active */
	for (i = 0; i < 4; i++) {
		struct msgb *msg = gen_alternating_bitmsg(128);
		osmo_i460_mux_enqueue(&ts->schan[i], msg);
		printf("%s-single-%u\n", __func__, i);

		uint8_t buf[16];
		int j;
		for (j = 0; j < 5; j++) {
			osmo_i460_mux_out(ts, buf, sizeof(buf));
			printf("mux_out: %s\n", osmo_hexdump(buf, sizeof(buf)));
		}
	}

	for (i = 0; i < 4; i++)
		osmo_i460_subchan_del(&ts->schan[i]);
}


static void test_8k_subchan(void)
{
	struct osmo_i460_timeslot _ts, *ts = &_ts;

	/* Initialization */
	printf("\n==> %s\n", __func__);
	osmo_i460_ts_init(ts);
	osmo_i460_subchan_add(NULL, ts, &scd8_0);
	osmo_i460_subchan_add(NULL, ts, &scd8_1);
	osmo_i460_subchan_add(NULL, ts, &scd8_2);
	osmo_i460_subchan_add(NULL, ts, &scd8_3);
	osmo_i460_subchan_add(NULL, ts, &scd8_4);
	osmo_i460_subchan_add(NULL, ts, &scd8_5);
	osmo_i460_subchan_add(NULL, ts, &scd8_6);
	osmo_i460_subchan_add(NULL, ts, &scd8_7);

	/* demux */
	uint8_t sequence[40];
	int i;
	for (i = 0; i < sizeof(sequence); i++)
		sequence[i] = 0;
	i = 0;
	sequence[i++] = 0x80;
	sequence[i++] = 0x40;
	sequence[i++] = 0x20;
	sequence[i++] = 0x10;
	sequence[i++] = 0xf0;
	sequence[i++] = 0x08;
	sequence[i++] = 0x04;
	sequence[i++] = 0x02;
	sequence[i++] = 0x01;
	sequence[i++] = 0x0f;
	sequence[i++] = 0xff;
	osmo_i460_demux_in(ts, sequence, sizeof(sequence));

	/* mux */

	/* test with only a single channel active */
	for (i = 0; i < 8; i++) {
		struct msgb *msg = gen_alternating_bitmsg(64);
		osmo_i460_mux_enqueue(&ts->schan[i], msg);
		printf("%s-single-%u\n", __func__, i);

		uint8_t buf[16];
		int j;
		for (j = 0; j < 5; j++) {
			osmo_i460_mux_out(ts, buf, sizeof(buf));
			printf("mux_out: %s\n", osmo_hexdump(buf, sizeof(buf)));
		}
	}

	for (i = 0; i < 8; i++)
		osmo_i460_subchan_del(&ts->schan[i]);
}

/* activate only one sub-channel; expect unused bits to be '1' */
static void test_unused_subchan(void)
{
	struct osmo_i460_timeslot _ts, *ts = &_ts;

	/* Initialization */
	printf("\n==> %s\n", __func__);
	osmo_i460_ts_init(ts);
	osmo_i460_subchan_add(NULL, ts, &scd16_0);

	/* mux */
	struct msgb *msg = gen_alternating_bitmsg(128);
	memset(msgb_data(msg), 0, msgb_length(msg));
	osmo_i460_mux_enqueue(&ts->schan[0], msg);
	printf("%s-single\n", __func__);

	uint8_t buf[16];
	int j;
	for (j = 0; j < 5; j++) {
		osmo_i460_mux_out(ts, buf, sizeof(buf));
		printf("mux_out: %s\n", osmo_hexdump(buf, sizeof(buf)));
	}

	osmo_i460_subchan_del(&ts->schan[0]);
}

int main(int argc, char **argv)
{
	test_no_subchan();
	test_64k_subchan();
	test_32k_subchan();
	test_16k_subchan();
	test_8k_subchan();
	test_unused_subchan();
	return 0;
}