summaryrefslogtreecommitdiff
path: root/xpp/xpd.h
blob: 1576274ac6f086dd7e9a8d2e1fedddc839cca3ad (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
#ifndef	XPD_H
#define	XPD_H

/*
 * Written by Oron Peled <oron@actcom.co.il>
 * Copyright (C) 2004-2005, Xorcom
 *
 * All rights reserved.
 *
 * 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.
 *
 */

#include "xdefs.h"
#include "xproto.h"

#ifdef	__KERNEL__
#include <linux/kernel.h>
#include <asm/atomic.h>
#include <asm/semaphore.h>
#include <linux/moduleparam.h>
#endif

#include <zaptel.h>

#ifdef __KERNEL__
#define	DEF_PARM(type,name,init,desc)	\
	type name = init;	\
	module_param(name, type, 0600);		\
	MODULE_PARM_DESC(name, desc)

#if	LINUX_VERSION_CODE	< KERNEL_VERSION(2,6,10)
/*
 * Old 2.6 kernels had module_param_array() macro that receive the counter
 * by value.
 */
#define	DEF_ARRAY(type,name,count,init,desc)	\
	unsigned int name ## _num_values;	\
	type name[count] = { [0 ... ((count)-1)] = (init) };			\
	module_param_array(name, type, name ## _num_values, 0600);	\
	MODULE_PARM_DESC(name, desc " ( 1-" __MODULE_STRING(count) ")")
#else
#define	DEF_ARRAY(type,name,count,init,desc)	\
	unsigned int name ## _num_values;	\
	type name[count] = {[0 ... ((count)-1)] = init};			\
	module_param_array(name, type, &name ## _num_values, 0600);	\
	MODULE_PARM_DESC(name, desc " ( 1-" __MODULE_STRING(count) ")")
#endif
#endif	// __KERNEL__


#define	MAX_SPANNAME	20
#define	MAX_SPANDESC	40
#define	MAX_CHANNAME	20

#define	XPD_NAMELEN	10	/* must be <= from maximal workqueue name */
#define	XPD_DESCLEN	20
#define	XBUS_NAMELEN	20	/* must be <= from maximal workqueue name */
#define	XBUS_DESCLEN	40

/* Hardware does not check bank_num yet. So only 4 cards can be used */
#define	MAX_XPDS	4	// 1 FXS + 2 E1/T1 + 1 (Quad * E1/T1)

#define	VALID_XPD_NUM(x)	((x) < MAX_XPDS && (x) >= 0)

typedef	struct xbus_ops		xbus_ops_t;

typedef enum xbus_type {
		FIRMWARE_LOOPBACK = 1,
		FIRMWARE_XPP = 2,
} xbus_type_t;

#ifdef	__KERNEL__


typedef struct packet_queue {
	char			qname[XPD_NAMELEN];
	struct list_head	head;
	unsigned int		count;
	unsigned int		worst_count;
	unsigned int		overflows;
	spinlock_t		lock;
} packet_queue_t;

struct xbus_ops {
	int (*packet_send)(xbus_t *xbus, xpacket_t *packet);
	xpacket_t *(*packet_new)(xbus_t *xbus, int flags);
	void (*packet_free)(xbus_t *xbus, xpacket_t *p);
};

enum {
	XBUS_N_DESC_REQ,
	XBUS_N_DEV_DESC,
	XBUS_N_PCM_WRITE,
	XBUS_N_PCM_READ,
	XBUS_N_TX_BYTES,
	XBUS_N_RX_BYTES,
	XBUS_N_SOFTSIM_PACKETS,
	XBUS_N_SIM_PACKETS,
};

#define	XBUS_COUNTER(xbus, counter)	((xbus)->counters[XBUS_N_ ## counter])

#define	C_(x)	[ XBUS_N_ ## x ] = { #x }

/* yucky, make an instance so we can size it... */
static struct xbus_counters {
	char	*name;
} xbus_counters[] = {
	C_(DESC_REQ),
	C_(DEV_DESC),
	C_(PCM_WRITE),
	C_(PCM_READ),
	C_(TX_BYTES),
	C_(RX_BYTES),
	C_(SOFTSIM_PACKETS),
	C_(SIM_PACKETS),
};

#undef C_

#define	XBUS_COUNTER_MAX	ARRAY_SIZE(xbus_counters)

struct xpd_sim {
	bool		simulated;
	bool		softloop_xpd;
	int		loopto;
	xpd_type_t	xpd_type;
	xpp_line_t	hookstate;
};


struct xbus {
	char		busname[XBUS_NAMELEN];	/* only xbus_new set this */
	char		busdesc[XBUS_DESCLEN];	/* lowlevel drivers set this */
	int		num;
	xbus_ops_t	*ops;
	struct xpd	*xpds[MAX_XPDS];

	/* Simulator data */
	xbus_type_t	bus_type;
#if SOFT_SIMULATOR
	struct xpd_sim	sim[MAX_XPDS];
	struct workqueue_struct *sim_workqueue;
	struct work_struct sim_work;		// workqueue job for running simulator
	packet_queue_t	sim_packet_queue;
#endif

	spinlock_t	lock;

	bool		hardware_exists;	/* Hardware is functional */
	int		open_counter;		/* Number of open channels */
	atomic_t	packet_counter;		/* Allocated packets */
	wait_queue_head_t packet_cache_empty;

	struct timer_list poll_timer;
	struct	rw_semaphore in_use;
	int	num_xpds;
	void	*priv;				/* Pointer to transport level data structures */

#ifdef	XPP_PACKET_LOG
	struct cyclic_buff *packet_log;
#endif

#ifdef CONFIG_PROC_FS
	struct proc_dir_entry	*proc_xbus_dir;
	struct proc_dir_entry	*proc_xbus_summary;
#endif

	/* statistics */
	int		counters[XBUS_COUNTER_MAX];

};
#endif

typedef enum xpd_direction {
	TO_PHONE = 0,
	TO_PSTN = 1,
} xpd_direction_t;

#define	LINE_BITS	(sizeof(xpp_line_t)*8)


#ifdef	__KERNEL__
#define	BIT_SET(x,i)	((x) |= (1 << (i)))
#define	BIT_CLR(x,i)	((x) &= ~(1 << (i)))
#define	IS_SET(x,i)	(((x) & (1 << (i))) != 0)
#define	BIT(i)		(1 << (i))

enum {
	XPD_N_PCM_READ,
	XPD_N_PCM_WRITE,
	XPD_N_RECV_ERRORS,
};

#define	XPD_COUNTER(xpd, counter)	((xpd)->counters[XPD_N_ ## counter])

#define	C_(x)	[ XPD_N_ ## x ] = { #x }

/* yucky, make an instance so we can size it... */
static struct xpd_counters {
	char	*name;
} xpd_counters[] = {
	C_(PCM_READ),
	C_(PCM_WRITE),
	C_(RECV_ERRORS),
};

#undef C_

#define	XPD_COUNTER_MAX	(sizeof(xpd_counters)/sizeof(xpd_counters[0]))

enum leds {
	LED_GREEN,
	LED_RED,
	LED_BLUE,
};

#define	NUM_LEDS	3

struct xpd {
	char xpdname[XPD_NAMELEN];
	struct zt_span	span;
	struct zt_chan	*chans;
	int channels;
	xpd_type_t	type;
	xpd_direction_t	direction;		/* TO_PHONE, TO_PSTN */
	xpp_line_t	enabled_chans;		/* hardware activation: 0 - off, 1 - on */
	xpp_line_t	hookstate;		/* 0 - ONHOOK, 1 - OFHOOK */
	xpp_line_t	ledstate[NUM_LEDS];	/* 0 - OFF, 1 - ON */
	xpp_line_t	digital_outputs;	/* 0 - no, 1 - yes */
	xpp_line_t	digital_inputs;		/* 0 - no, 1 - yes */

	int	ringing[CHANNELS_PERXPD];
	bool	ringer_on[CHANNELS_PERXPD];	/* For ring toggling */
	bool	led_on[CHANNELS_PERXPD];	/* For led toggling */
	int	lasttxhook[CHANNELS_PERXPD];

	struct work_struct xpd_post_init;
	xbus_t *xbus;

	spinlock_t	lock;
	atomic_t	open_counter;		/* Number of open channels */

	int		flags;

	unsigned int	board_flags;
#define	XPD_BOARD_LOOPBACK	1

#ifdef CONFIG_PROC_FS
	struct proc_dir_entry	*proc_xpd_dir;
	struct proc_dir_entry	*proc_xpd_summary;
	struct proc_dir_entry	*proc_xpd_ztregister;
#endif
	// Bit numbers of board_flags

	int		counters[XPD_COUNTER_MAX];

	const xops_t	*xops;		/* Card level operations */
	void		*priv;		/* Card level private data */
	atomic_t	card_present;

	unsigned int	recv_errors;
	unsigned int	seq_errors;
	unsigned long	last_response;	/* in jiffies */
	unsigned	id;
	struct list_head xpd_list;
	unsigned int	timer_count;
	volatile u_char *writechunk;	/* Double-word aligned write memory */
	volatile u_char *readchunk;	/* Double-word aligned read memory */
	/* Echo cancelation */
	u_char ec_chunk1[CHANNELS_PERXPD][ZT_CHUNKSIZE];
	u_char ec_chunk2[CHANNELS_PERXPD][ZT_CHUNKSIZE];
};

#endif

#endif	/* XPD_H */