patch-2.1.27 linux/drivers/net/soundmodem/sm_afsk1200.c

Next file: linux/drivers/net/soundmodem/sm_fsk9600.c
Previous file: linux/drivers/net/soundmodem/sm.h
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.1.26/linux/drivers/net/soundmodem/sm_afsk1200.c linux/drivers/net/soundmodem/sm_afsk1200.c
@@ -0,0 +1,273 @@
+/*****************************************************************************/
+
+/*
+ *	sm_afsk1200.h  -- soundcard radio modem driver, 1200 baud AFSK modem
+ *
+ *	Copyright (C) 1996  Thomas Sailer (sailer@ife.ee.ethz.ch)
+ *
+ *	This program is free software; you can redistribute it and/or modify
+ *	it under the terms of the GNU General Public License as published by
+ *	the Free Software Foundation; either version 2 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 General Public License for more details.
+ *
+ *	You should have received a copy of the GNU General Public License
+ *	along with this program; if not, write to the Free Software
+ *	Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ *  Please note that the GPL allows you to use the driver, NOT the radio.
+ *  In order to use the radio, you need a license from the communications
+ *  authority of your country.
+ *
+ */
+
+#include "sm.h"
+#include "sm_tbl_afsk1200.h"
+
+/* --------------------------------------------------------------------- */
+
+struct demod_state_afsk12 {
+	unsigned int shreg;
+	unsigned int bit_pll;
+	unsigned char last_sample;
+	unsigned int dcd_shreg;
+	int dcd_sum0, dcd_sum1, dcd_sum2;
+	unsigned int dcd_time;
+	unsigned char last_rxbit;
+	union {
+		signed char c[8];
+		float f[8];
+	} filt;
+};
+
+struct mod_state_afsk12 {
+	unsigned int shreg;
+	unsigned char tx_bit;
+	unsigned int bit_pll;
+};
+
+/* --------------------------------------------------------------------- */
+
+static void modulator_1200(struct sm_state *sm, unsigned char *buf, int buflen)
+{
+	struct mod_state_afsk12 *st = (struct mod_state_afsk12 *)(&sm->m);
+	static const int dds_inc[2] = { AFSK12_TX_FREQ_LO*0x10000/AFSK12_SAMPLE_RATE,
+					AFSK12_TX_FREQ_HI*0x10000/AFSK12_SAMPLE_RATE };
+	int j, k;
+
+	for (; buflen >= 8; buflen -= 8) {
+		if (st->shreg <= 1)
+			st->shreg = hdlcdrv_getbits(&sm->hdrv) | 0x10000;
+		st->tx_bit = (st->tx_bit ^ 
+				       (!(st->shreg & 1))) & 1;
+		st->shreg >>= 1;
+		k = dds_inc[st->tx_bit & 1];
+		for (j = 0; j < 8; j++) {
+			*buf++ = OFFSCOS(st->bit_pll);
+			st->bit_pll += k;
+		}
+	}
+}
+
+/* --------------------------------------------------------------------- */
+
+
+/*
+ * should eventually move to an asm header file
+ */
+
+
+
+
+#if defined (CONFIG_SOUNDMODEM__AFSK1200_FP) && (defined(CONFIG_M586) || defined(CONFIG_M686))
+
+
+
+#define ENV_STORAGE unsigned char fpu_save[108];
+
+#define ENV_SAVE asm("fsave %0;\n\tfninit;\n\t" : "=m" (*fpu_save) : : "memory");
+#define ENV_RESTORE asm("frstor %0;\n\t" : : "m" (*fpu_save));
+
+static inline float convolution8(const float *st, const float *coeff)
+{
+	float f;
+
+	/*
+	 * from Phil Karn, KA9Q's home page
+	 */
+	asm volatile ("flds (%1);\n\t"
+	    "fmuls (%2);\n\t"
+	    "flds 4(%1);\n\t"
+	    "fmuls 4(%2);\n\t"
+	    "flds 8(%1);\n\t"
+	    "fmuls 8(%2);\n\t"
+	    "fxch %%st(2);\n\t"
+	    "faddp;\n\t"
+	    "flds 12(%1);\n\t"
+	    "fmuls 12(%2);\n\t"
+	    "fxch %%st(2);\n\t"
+	    "faddp;\n\t"
+	    "flds 16(%1);\n\t"
+	    "fmuls 16(%2);\n\t"
+	    "fxch %%st(2);\n\t"
+	    "faddp;\n\t"
+	    "flds 20(%1);\n\t"
+	    "fmuls 20(%2);\n\t"
+	    "fxch %%st(2);\n\t"
+	    "faddp;\n\t"
+	    "flds 24(%1);\n\t"
+	    "fmuls 24(%2);\n\t"
+	    "fxch %%st(2);\n\t"
+	    "faddp;\n\t"
+	    "flds 28(%1);\n\t"
+	    "fmuls 28(%2);\n\t"
+	    "fxch %%st(2);\n\t"
+	    "faddp;\n\t"
+	    "faddp;\n\t"
+	    "fmul %%st(0),%%st;\n\t" :
+	    "=t" (f) :
+	    "r" (st),
+	    "r" (coeff) : "memory");
+
+	return f;
+}
+
+static inline int do_filter_1200(struct demod_state_afsk12 *st, unsigned char newval)
+{
+	float sum;
+
+	memmove(st->filt.f+1, st->filt.f,sizeof(st->filt.f) - sizeof(st->filt.f[0]));
+	st->filt.f[0] = (((int)newval)-0x80);
+
+	sum = convolution8(st->filt.f, afsk12_tx_lo_i);
+	sum += convolution8(st->filt.f, afsk12_tx_lo_q);
+	sum -= convolution8(st->filt.f, afsk12_tx_hi_i);
+	sum -= convolution8(st->filt.f, afsk12_tx_hi_q);
+	return sum;
+}
+
+#else /* defined (CONFIG_SOUNDMODEM__AFSK1200_FP) && (defined(CONFIG_M586) || defined(CONFIG_M686)) */
+
+#define ENV_STORAGE 
+#define ENV_SAVE
+#define ENV_RESTORE
+
+static inline void datamove8(signed char *st, unsigned char newval)
+{
+	memmove(st+1, st, 7);
+	*st = newval - 0x80;
+}
+
+static inline int convolution8(const signed char *st, const signed char *coeff)
+{
+	int sum = (st[0] * coeff[0]);
+	
+	sum += (st[1] * coeff[1]);
+	sum += (st[2] * coeff[2]);
+	sum += (st[3] * coeff[3]);
+	sum += (st[4] * coeff[4]);
+	sum += (st[5] * coeff[5]);
+	sum += (st[6] * coeff[6]);
+	sum += (st[7] * coeff[7]);
+
+	sum >>= 7;
+	return sum * sum;
+}
+
+static inline int do_filter_1200(struct demod_state_afsk12 *st, unsigned char newval)
+{
+	int sum;
+
+	datamove8(st->filt.c, newval);
+	
+	sum = convolution8(st->filt.c, afsk12_tx_lo_i);
+	sum += convolution8(st->filt.c, afsk12_tx_lo_q);
+	sum -= convolution8(st->filt.c, afsk12_tx_hi_i);
+	sum -= convolution8(st->filt.c, afsk12_tx_hi_q);
+	return sum;
+}
+
+#endif /* defined (CONFIG_SOUNDMODEM__AFSK1200_FP) && (defined(CONFIG_M586) || defined(CONFIG_M686)) */
+
+
+/* --------------------------------------------------------------------- */
+
+static void demodulator_1200(struct sm_state *sm, unsigned char *buf, int buflen)
+{
+	struct demod_state_afsk12 *st = (struct demod_state_afsk12 *)(&sm->d);
+	static const int pll_corr[2] = { -0x1000, 0x1000 };
+	int j;
+	int sum;
+	unsigned char newsample;
+	ENV_STORAGE;
+
+	ENV_SAVE;
+	for (; buflen > 0; buflen--, buf++) {
+		sum = do_filter_1200(st, *buf);
+		st->dcd_shreg <<= 1;
+		st->bit_pll += 0x2000;
+		newsample = (sum > 0);
+		if (st->last_sample ^ newsample) {
+			st->last_sample = newsample;
+			st->dcd_shreg |= 1;
+			st->bit_pll += pll_corr
+				[st->bit_pll < 0x9000];
+			j = 4 * hweight8(st->dcd_shreg & 0x38)
+				- hweight16(st->dcd_shreg & 0x7c0);
+			st->dcd_sum0 += j;
+		}
+		hdlcdrv_channelbit(&sm->hdrv, st->last_sample);
+		if ((--st->dcd_time) <= 0) {
+			hdlcdrv_setdcd(&sm->hdrv, (st->dcd_sum0 + 
+						   st->dcd_sum1 + 
+						   st->dcd_sum2) < 0);
+			st->dcd_sum2 = st->dcd_sum1;
+			st->dcd_sum1 = st->dcd_sum0;
+			st->dcd_sum0 = 2; /* slight bias */
+			st->dcd_time = 120;
+		}
+		if (st->bit_pll >= 0x10000) {
+			st->bit_pll &= 0xffff;
+			st->shreg >>= 1;
+			st->shreg |= (!(st->last_rxbit ^
+					st->last_sample)) << 16;
+			st->last_rxbit = st->last_sample;
+			diag_trigger(sm);
+			if (st->shreg & 1) {
+				hdlcdrv_putbits(&sm->hdrv, st->shreg >> 1);
+				st->shreg = 0x10000;
+			}
+		}
+		diag_add(sm, (((int)*buf)-0x80) << 8, sum);
+	}
+	ENV_RESTORE;
+}
+
+/* --------------------------------------------------------------------- */
+
+static void demod_init_1200(struct sm_state *sm)
+{
+	struct demod_state_afsk12 *st = (struct demod_state_afsk12 *)(&sm->d);
+
+       	st->dcd_time = 120;
+	st->dcd_sum0 = 2;	
+}
+
+/* --------------------------------------------------------------------- */
+
+const struct modem_tx_info sm_afsk1200_tx = {
+	"afsk1200", sizeof(struct mod_state_afsk12), 
+	AFSK12_SAMPLE_RATE, 1200, AFSK12_SAMPLE_RATE/1200, modulator_1200, NULL
+};
+
+const struct modem_rx_info sm_afsk1200_rx = {
+	"afsk1200", sizeof(struct demod_state_afsk12), 
+	AFSK12_SAMPLE_RATE, 1200, AFSK12_SAMPLE_RATE/1200, 
+	AFSK12_SAMPLE_RATE/1200, demodulator_1200, demod_init_1200
+};
+
+/* --------------------------------------------------------------------- */

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov