osmo-tetra/src/lower_mac/tetra_rm3014.c

97 lines
2.7 KiB
C

/* Shortened (30,14) Reed-Muller (RM) code */
/* (C) 2011 by Harald Welte <laforge@gnumonks.org>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <stdint.h>
#include <stdio.h>
#include <lower_mac/tetra_rm3014.h>
/* Generator matrix from Section 8.2.3.2 */
static const uint8_t rm_30_14_gen[14][16] = {
{ 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0 },
{ 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0 },
{ 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0 },
{ 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0 },
{ 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0 },
{ 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0 },
{ 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0 },
{ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1 },
{ 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1 },
{ 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1 },
{ 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1 },
{ 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1 },
{ 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1 },
{ 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1 }
};
static uint32_t rm_30_14_rows[14];
static uint32_t shift_bits_together(const uint8_t *bits, int len)
{
uint32_t ret = 0;
int i;
for (i = len-1; i >= 0; i--)
ret |= bits[i] << (len-1-i);
return ret;
}
void tetra_rm3014_init(void)
{
int i;
uint32_t val;
for (i = 0; i < 14; i++) {
/* upper 14 bits identity matrix */
val = (1 << (16+13 - i));
/* lower 16 bits from rm_30_14_gen */
val |= shift_bits_together(rm_30_14_gen[i], 16);
rm_30_14_rows[i] = val;
printf("rm_30_14_rows[%u] = 0x%08x\n", i, val);
}
}
uint32_t tetra_rm3014_compute(const uint16_t in)
{
int i;
uint32_t val = 0;
for (i = 0; i < 14; i++) {
uint32_t bit = (in >> (14-1-i)) & 1;
if (bit)
val ^= rm_30_14_rows[i];
/* we can skip the 'else' as XOR with 0 has no effect */
}
return val;
}
/**
* This is a systematic code. We can remove the control bits
* and then check for an error. Maybe correct it in the future.
*/
int tetra_rm3014_decode(const uint32_t inp, uint16_t *out)
{
*out = inp >> 16;
return 0;
}