forked from asterisk/dahdi-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkernel.h
More file actions
1718 lines (1432 loc) · 52.5 KB
/
kernel.h
File metadata and controls
1718 lines (1432 loc) · 52.5 KB
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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* DAHDI Telephony Interface
*
* Written by Mark Spencer <markster@digium.com>
* Based on previous works, designs, and architectures conceived and
* written by Jim Dixon <jim@lambdatel.com>.
*
* Copyright (C) 2001 Jim Dixon / Zapata Telephony.
* Copyright (C) 2001 - 2012 Digium, Inc.
*
* All rights reserved.
*
*/
/*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License Version 2 as published by the
* Free Software Foundation. See the LICENSE file included with
* this program for more details.
*/
/*!
* \file
* \brief DAHDI kernel interface definitions
*/
#ifndef _DAHDI_KERNEL_H
#define _DAHDI_KERNEL_H
#include <dahdi/user.h>
#include <dahdi/fasthdlc.h>
#include <dahdi/dahdi_config.h>
#include <linux/version.h>
#include <linux/fs.h>
#include <linux/device.h>
#include <linux/cdev.h>
#include <linux/module.h>
#include <linux/ioctl.h>
#ifdef CONFIG_DAHDI_NET
#include <linux/hdlc.h>
#endif
#ifdef CONFIG_DAHDI_PPP
#include <linux/ppp_channel.h>
#include <linux/skbuff.h>
#include <linux/interrupt.h>
#endif
#include <linux/device.h>
#include <linux/sysfs.h>
#include <linux/poll.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0)
#define netif_napi_add netif_napi_add_weight
#elif defined(RHEL_RELEASE_VERSION) && defined(RHEL_RELEASE_CODE)
#if (RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(9, 2)) || (RHEL_MAJOR == 8 && RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(8, 8))
#define netif_napi_add netif_napi_add_weight
#endif /* RHEL_RELEASE_CODE */
#endif
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6,15,0)
#define del_timer timer_delete
#define del_timer_sync timer_delete_sync
#endif
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 18, 0)
#include <linux/pci.h>
#include <linux/dma-mapping.h>
static inline void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size, dma_addr_t *dma_handle)
{
return dma_alloc_coherent(hwdev == NULL ? NULL : &hwdev->dev, size, dma_handle, GFP_ATOMIC);
}
static inline void pci_free_consistent(struct pci_dev *hwdev, size_t size, void *vaddr, dma_addr_t dma_handle)
{
dma_free_coherent(hwdev == NULL ? NULL : &hwdev->dev, size, vaddr, dma_handle);
}
static inline dma_addr_t pci_map_single(struct pci_dev *hwdev, void *ptr, size_t size, int direction)
{
return dma_map_single(&hwdev->dev, ptr, size, (enum dma_data_direction)direction);
}
static inline void pci_unmap_single(struct pci_dev *hwdev, dma_addr_t dma_addr, size_t size, int direction)
{
dma_unmap_single(&hwdev->dev, dma_addr, size, (enum dma_data_direction)direction);
}
static inline int pci_set_dma_mask(struct pci_dev *dev, u64 mask)
{
return dma_set_mask(&dev->dev, mask);
}
#endif
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
#define HAVE_NET_DEVICE_OPS
#endif
#define DAHDI_HAVE_PROC_OPS
/* __dev* were removed in 3.8. They still have effect in 2.6.18. */
#ifndef __devinit
# define __devinit
# define __devinitdata
# define __devexit
# define __devexit_p(x) x
#endif
/*! Default chunk size for conferences and such -- static right now, might make
variable sometime. 8 samples = 1 ms = most frequent service interval possible
for a USB device */
#define DAHDI_CHUNKSIZE 8
#define DAHDI_MIN_CHUNKSIZE DAHDI_CHUNKSIZE
#define DAHDI_DEFAULT_CHUNKSIZE DAHDI_CHUNKSIZE
#define DAHDI_MAX_CHUNKSIZE DAHDI_CHUNKSIZE
#define DAHDI_CB_SIZE (1 << 3)
/* DAHDI operates at 8Khz by default */
#define DAHDI_MS_TO_SAMPLES(ms) ((ms) * 8)
#define DAHDI_MSECS_PER_CHUNK (DAHDI_CHUNKSIZE/DAHDI_MS_TO_SAMPLES(1))
#define RING_DEBOUNCE_TIME 2000 /*!< 2000 ms ring debounce time */
typedef struct
{
int32_t gain;
int32_t a1;
int32_t a2;
int32_t b1;
int32_t b2;
int32_t z1;
int32_t z2;
} biquad2_state_t;
typedef struct
{
biquad2_state_t notch;
int notch_level;
int channel_level;
int tone_present;
int tone_cycle_duration;
int good_cycles;
int hit;
} echo_can_disable_detector_state_t;
struct sf_detect_state {
long x1;
long x2;
long y1;
long y2;
long e1;
long e2;
int samps;
int lastdetect;
};
struct dahdi_tone_state {
int v1_1;
int v2_1;
int v3_1;
int v1_2;
int v2_2;
int v3_2;
int modulate;
};
/*! \brief Conference queue structure */
struct confq {
u_char buffer[DAHDI_CHUNKSIZE * DAHDI_CB_SIZE];
u_char *buf[DAHDI_CB_SIZE];
int inbuf;
int outbuf;
};
struct dahdi_chan;
struct dahdi_echocan_state;
/*! Features a DAHDI echo canceler (software or hardware) can provide to the DAHDI core. */
struct dahdi_echocan_features {
/*! Able to detect CED tone (2100 Hz with phase reversals) in the transmit direction.
* If the echocan can detect this tone, it may report it it as an event (see
* the events.CED_tx_detected field of dahdi_echocan_state), and if it will automatically
* disable itself or its non-linear processor, then the NLP_automatic feature flag should also
* be set so that the DAHDI core doesn't bother trying to do so.
*/
u32 CED_tx_detect:1;
/*! Able to detect CED tone (2100 Hz with phase reversals) in the receive direction.
* If the echocan can detect this tone, it may report it it as an event (see
* the events.CED_rx_detected field of dahdi_echocan_state), and if it will automatically
* disable itself or its non-linear processor, then the NLP_automatic flag feature should also
* be set so that the DAHDI core doesn't bother trying to do so.
*/
u32 CED_rx_detect:1;
/*! Able to detect CNG tone (1100 Hz) in the transmit direction. */
u32 CNG_tx_detect:1;
/*! Able to detect CNG tone (1100 Hz) in the receive direction. */
u32 CNG_rx_detect:1;
/*! If the echocan's NLP can be enabled and disabled without requiring destruction
* and recreation of the state structure, this feature flag should be set and the
* echocan_NLP_toggle field of the dahdi_echocan_ops structure should be filled with a
* pointer to the function to perform that operation.
*/
u32 NLP_toggle:1;
/*! If the echocan will automatically disable itself (or even just its NLP) based on
* detection of a CED tone in either direction, this feature flag should be set (along
* with the tone detection feature flags).
*/
u32 NLP_automatic:1;
};
/*! Operations (methods) that can be performed on a DAHDI echo canceler instance (state
* structure) after it has been created, by either a software or hardware echo canceller.
* The echo canceler must populate the owner field of the dahdi_echocan_state structure
* with a pointer to the relevant operations structure for that instance.
*/
struct dahdi_echocan_ops {
/*! \brief Free an echocan state structure.
* \param[in,out] ec Pointer to the state structure to free.
*
* \return Nothing.
*/
void (*echocan_free)(struct dahdi_chan *chan, struct dahdi_echocan_state *ec);
/*! \brief Process an array of audio samples through the echocan.
* \param[in,out] ec Pointer to the state structure.
* \param[in,out] isig The receive direction data (will be modified).
* \param[in] iref The transmit direction data.
* \param[in] size The number of elements in the isig and iref arrays.
*
* Note: This function can also return events in the events field of the
* dahdi_echocan_state structure. If it can do so, then the echocan does
* not need to provide the echocan_events function.
*
* \return Nothing.
*/
void (*echocan_process)(struct dahdi_echocan_state *ec, short *isig, const short *iref, u32 size);
/*! \brief Retrieve events from the echocan.
* \param[in,out] ec Pointer to the state structure.
*
*
* If any events have occurred, the events field of the dahdi_echocan_state
* structure should be updated to include them.
*
* \return Nothing.
*/
void (*echocan_events)(struct dahdi_echocan_state *ec);
/*! \brief Feed a sample (and its position) for echocan training.
* \param[in,out] ec Pointer to the state structure.
* \param[in] pos The tap position to be 'trained'.
* \param[in] val The receive direction sample for the specified tap position.
*
* \retval Zero if training should continue.
* \retval Non-zero if training is complete.
*/
int (*echocan_traintap)(struct dahdi_echocan_state *ec, int pos, short val);
/*! \brief Enable or disable non-linear processing (NLP) in the echocan.
* \param[in,out] ec Pointer to the state structure.
* \param[in] enable Zero to disable, non-zero to enable.
*
* \return Nothing.
*/
void (*echocan_NLP_toggle)(struct dahdi_echocan_state *ec, unsigned int enable);
#ifdef CONFIG_DAHDI_ECHOCAN_PROCESS_TX
/*! \brief Process an array of TX audio samples.
*
* \return Nothing.
*/
void (*echocan_process_tx)(struct dahdi_echocan_state *ec,
short *tx, u32 size);
#endif
};
/*! A factory for creating instances of software echo cancelers to be used on DAHDI channels. */
struct dahdi_echocan_factory {
/*! Get the name of the factory. */
const char *(*get_name)(const struct dahdi_chan *chan);
/*! Pointer to the module that owns this factory; the module's reference count will be
* incremented/decremented by the DAHDI core as needed.
*/
struct module *owner;
/*! \brief Function to create an instance of the echocan.
* \param[in] ecp Structure defining parameters to be used for the instance creation.
* \param[in] p Pointer to the beginning of an (optional) array of user-defined parameters.
* \param[out] ec Pointer to the state structure that is created, if any.
*
* \retval Zero on success.
* \retval Non-zero on failure (return value will be returned to userspace so it should be a
* standard error number).
*/
int (*echocan_create)(struct dahdi_chan *chan, struct dahdi_echocanparams *ecp,
struct dahdi_echocanparam *p, struct dahdi_echocan_state **ec);
};
/*! \brief Register an echo canceler factory with the DAHDI core.
* \param[in] ec Pointer to the dahdi_echocan_factory structure to be registered.
*
* \retval Zero on success.
* \retval Non-zero on failure (return value will be a standard error number).
*/
int dahdi_register_echocan_factory(const struct dahdi_echocan_factory *ec);
/*! \brief Unregister a previously-registered echo canceler factory from the DAHDI core.
* \param[in] ec Pointer to the dahdi_echocan_factory structure to be unregistered.
*
* \return Nothing.
*/
void dahdi_unregister_echocan_factory(const struct dahdi_echocan_factory *ec);
enum dahdi_echocan_mode {
__ECHO_MODE_MUTE = 1 << 8,
ECHO_MODE_IDLE = 0,
ECHO_MODE_PRETRAINING = 1 | __ECHO_MODE_MUTE,
ECHO_MODE_STARTTRAINING = 2 | __ECHO_MODE_MUTE,
ECHO_MODE_AWAITINGECHO = 3 | __ECHO_MODE_MUTE,
ECHO_MODE_TRAINING = 4 | __ECHO_MODE_MUTE,
ECHO_MODE_ACTIVE = 5,
ECHO_MODE_FAX = 6,
};
/*! An instance of a DAHDI echo canceler (software or hardware). */
struct dahdi_echocan_state {
/*! Pointer to a dahdi_echocan_ops structure of operations that can be
* performed on this instance.
*/
const struct dahdi_echocan_ops *ops;
/*! State data used by the DAHDI core's CED detector for the transmit
* direction, if needed.
*/
echo_can_disable_detector_state_t txecdis;
/*! State data used by the DAHDI core's CED detector for the receive
* direction, if needed.
*/
echo_can_disable_detector_state_t rxecdis;
/*! Features offered by the echo canceler that provided this instance. */
struct dahdi_echocan_features features;
struct {
/*! The mode the echocan is currently in. */
enum dahdi_echocan_mode mode;
/*! The last tap position that was fed to the echocan's training function. */
u32 last_train_tap;
/*! How many samples to wait before beginning the training operation. */
u32 pretrain_timer;
} status;
/*! This structure contains event flags, allowing the echocan to report
* events that occurred as it processed the transmit and receive streams
* of samples. Each call to the echocan_process operation for this
* instance may report events, so the structure should be cleared before
* calling that operation.
*/
union dahdi_echocan_events {
u32 all;
struct {
/*! CED tone was detected in the transmit direction. If the
* echocan automatically disables its NLP when this occurs,
* it must also signal the NLP_auto_disabled event during the *same*
* call to echocan_process that reports the CED detection.
*/
u32 CED_tx_detected:1;
/*! CED tone was detected in the receive direction. If the
* echocan automatically disables its NLP when this occurs,
* it must also signal the NLP_auto_disabled event during the *same*
* call to echocan_process that reports the CED detection.
*/
u32 CED_rx_detected:1;
/*! CNG tone was detected in the transmit direction. */
u32 CNG_tx_detected:1;
/*! CNG tone was detected in the receive direction. */
u32 CNG_rx_detected:1;
/*! The echocan disabled its NLP automatically.
*/
u32 NLP_auto_disabled:1;
/*! The echocan enabled its NLP automatically.
*/
u32 NLP_auto_enabled:1;
} bit;
} events;
};
struct dahdi_chan {
#ifdef CONFIG_DAHDI_NET
/*! \note Must be first */
struct dahdi_hdlc *hdlcnetdev;
#endif
#ifdef CONFIG_DAHDI_PPP
struct ppp_channel *ppp;
struct tasklet_struct ppp_calls;
int do_ppp_wakeup;
int do_ppp_error;
struct sk_buff_head ppp_rq;
#endif
#ifdef BUFFER_DEBUG
int statcount;
int lastnumbufs;
#endif
spinlock_t lock;
struct mutex mutex;
char name[40];
/* Specified by DAHDI */
/*! \brief DAHDI channel number */
int channo;
int chanpos;
unsigned long flags;
long rxp1;
long rxp2;
long rxp3;
int txtone;
int tx_v2;
int tx_v3;
int v1_1;
int v2_1;
int v3_1;
int toneflags;
struct sf_detect_state rd;
struct dahdi_chan *master; /*!< Our Master channel (could be us) */
/*! \brief Next slave (if appropriate) */
struct dahdi_chan *nextslave;
u_char *writechunk; /*!< Actual place to write to */
u_char swritechunk[DAHDI_MAX_CHUNKSIZE]; /*!< Buffer to be written */
u_char *readchunk; /*!< Actual place to read from */
u_char sreadchunk[DAHDI_MAX_CHUNKSIZE]; /*!< Preallocated static area */
short *readchunkpreec;
/* Channel from which to read when DACSed. */
struct dahdi_chan *dacs_chan;
/*! Pointer to tx and rx gain tables */
const u_char *rxgain;
const u_char *txgain;
/* Specified by driver, readable by DAHDI */
void *pvt; /*!< Private channel data */
struct file *file; /*!< File structure */
#ifdef CONFIG_DAHDI_MIRROR
struct dahdi_chan *rxmirror; /*!< channel we mirror reads to */
struct dahdi_chan *txmirror; /*!< channel we mirror writes to */
struct dahdi_chan *srcmirror; /*!< channel we mirror from */
#endif /* CONFIG_DAHDI_MIRROR */
struct dahdi_span *span; /*!< Span we're a member of */
int sig; /*!< Signalling */
int sigcap; /*!< Capability for signalling */
__u32 chan_alarms; /*!< alarms status */
wait_queue_head_t waitq;
/* Used only by DAHDI -- NO DRIVER SERVICEABLE PARTS BELOW */
/* Buffer declarations */
u_char *readbuf[DAHDI_MAX_NUM_BUFS]; /*!< read buffer */
int inreadbuf;
int outreadbuf;
u_char *writebuf[DAHDI_MAX_NUM_BUFS]; /*!< write buffers */
int inwritebuf;
int outwritebuf;
int blocksize; /*!< Block size */
int eventinidx; /*!< out index in event buf (circular) */
int eventoutidx; /*!< in index in event buf (circular) */
unsigned int eventbuf[DAHDI_MAX_EVENTSIZE]; /*!< event circ. buffer */
int readn[DAHDI_MAX_NUM_BUFS]; /*!< # of bytes ready in read buf */
int readidx[DAHDI_MAX_NUM_BUFS]; /*!< current read pointer */
int writen[DAHDI_MAX_NUM_BUFS]; /*!< # of bytes ready in write buf */
int writeidx[DAHDI_MAX_NUM_BUFS]; /*!< current write pointer */
int numbufs; /*!< How many buffers in channel */
int txbufpolicy; /*!< Buffer policy */
int txdisable; /*!< Disable transmitter */
/* Tone zone stuff */
struct dahdi_zone *curzone; /*!< Zone for selecting tones */
struct dahdi_tone *curtone; /*!< Current tone we're playing (if any) */
int tonep; /*!< Current position in tone */
struct dahdi_tone_state ts; /*!< Tone state */
/* Pulse dial stuff */
int pdialcount; /*!< pulse dial count */
/*! Ring cadence */
int ringcadence[DAHDI_MAX_CADENCE];
int firstcadencepos; /*!< Where to restart ring cadence */
/* Digit string dialing stuff */
int digitmode; /*!< What kind of tones are we sending? */
char txdialbuf[DAHDI_MAX_DTMF_BUF];
int dialing;
int afterdialingtimer;
int cadencepos; /*!< Where in the cadence we are */
/* I/O Mask */
unsigned int iomask; /*! I/O Mux signal mask */
/* HDLC state machines */
struct fasthdlc_state txhdlc;
struct fasthdlc_state rxhdlc;
int infcs;
/* Conferencing stuff */
int confna; /*! conference number (alias) */
int _confn; /*! Actual conference number */
int confmode; /*! conference mode */
int confmute; /*! conference mute mode */
struct dahdi_chan *conf_chan;
/* Incoming and outgoing conference chunk queues for
communicating between DAHDI master time and
other boards */
struct confq confin;
struct confq confout;
short getlin[DAHDI_MAX_CHUNKSIZE]; /*!< Last transmitted samples */
unsigned char getraw[DAHDI_MAX_CHUNKSIZE]; /*!< Last received raw data */
short putlin[DAHDI_MAX_CHUNKSIZE]; /*!< Last received samples */
unsigned char putraw[DAHDI_MAX_CHUNKSIZE]; /*!< Last received raw data */
short conflast[DAHDI_MAX_CHUNKSIZE]; /*!< Last conference sample -- base part of channel */
short conflast1[DAHDI_MAX_CHUNKSIZE]; /*!< Last conference sample -- pseudo part of channel */
short conflast2[DAHDI_MAX_CHUNKSIZE]; /*!< Previous last conference sample -- pseudo part of channel */
/*! The echo canceler module that should be used to create an
instance when this channel needs one */
const struct dahdi_echocan_factory *ec_factory;
/*! The echo canceler module that owns the instance currently
on this channel, if one is present */
const struct dahdi_echocan_factory *ec_current;
/*! The state data of the echo canceler instance in use */
struct dahdi_echocan_state *ec_state;
/* RBS timings */
int prewinktime; /*!< pre-wink time (ms) */
int preflashtime; /*!< pre-flash time (ms) */
int winktime; /*!< wink time (ms) */
int flashtime; /*!< flash time (ms) */
int starttime; /*!< start time (ms) */
int rxwinktime; /*!< rx wink time (ms) */
int rxflashtime; /*!< rx flash time (ms) */
int debouncetime; /*!< FXS GS sig debounce time (ms) */
int pulsebreaktime; /*!< pulse line open time (ms) */
int pulsemaketime; /*!< pulse line closed time (ms) */
int pulseaftertime; /*!< pulse time between digits (ms) */
/*! RING debounce timer */
int ringdebtimer;
/*! RING trailing detector to make sure a RING is really over */
int ringtrailer;
/* PULSE digit receiver stuff */
int pulsecount;
int pulsetimer;
/* RBS timers */
int itimerset; /*!< what the itimer was set to last */
int itimer;
int otimer;
/* RBS state */
int gotgs;
int txstate;
int rxsig;
int txsig;
int rxsigstate;
/* non-RBS rx state */
int rxhooksig;
int txhooksig;
int kewlonhook;
/*! Idle signalling if CAS signalling */
int idlebits;
int deflaw; /*! 1 = mulaw, 2=alaw, 0=undefined */
short *xlaw;
#ifdef OPTIMIZE_CHANMUTE
int chanmute; /*!< no need for PCM data */
#endif
#ifdef CONFIG_CALC_XLAW
unsigned char (*lineartoxlaw)(short a);
#else
unsigned char *lin2x;
#endif
struct device chan_device; /*!< Kernel object for this chan */
#define dev_to_chan(dev) container_of(dev, struct dahdi_chan, chan_device)
};
#ifdef CONFIG_DAHDI_NET
struct dahdi_hdlc {
struct net_device *netdev;
struct dahdi_chan *chan;
};
#endif
/*! Define the maximum block size */
#define DAHDI_MAX_BLOCKSIZE 8192
#define DAHDI_DEFAULT_WINKTIME 150 /*!< 150 ms default wink time */
#define DAHDI_DEFAULT_FLASHTIME 750 /*!< 750 ms default flash time */
#define DAHDI_DEFAULT_PREWINKTIME 50 /*!< 50 ms before wink */
#define DAHDI_DEFAULT_PREFLASHTIME 50 /*!< 50 ms before flash */
#define DAHDI_DEFAULT_STARTTIME 1500 /*!< 1500 ms of start */
#define DAHDI_DEFAULT_RINGTIME 2000 /*!< 2000 ms of ring on (start, FXO) */
#if 0
#define DAHDI_DEFAULT_RXWINKTIME 250 /*!< 250ms longest rx wink */
#endif
#define DAHDI_DEFAULT_RXWINKTIME 300 /*!< 300ms longest rx wink (to work with the Atlas) */
#define DAHDI_DEFAULT_RXFLASHTIME 1250 /*!< 1250ms longest rx flash */
#define DAHDI_DEFAULT_DEBOUNCETIME 600 /*!< 600ms of FXS GS signalling debounce */
#define DAHDI_DEFAULT_PULSEMAKETIME 50 /*!< 50 ms of line closed when dial pulsing */
#define DAHDI_DEFAULT_PULSEBREAKTIME 50 /*!< 50 ms of line open when dial pulsing */
#define DAHDI_DEFAULT_PULSEAFTERTIME 750 /*!< 750ms between dial pulse digits */
#define DAHDI_MINPULSETIME (15 * 8) /*!< 15 ms minimum */
#ifdef SHORT_FLASH_TIME
#define DAHDI_MAXPULSETIME (80 * 8) /*!< we need 80 ms, not 200ms, as we have a short flash */
#else
#define DAHDI_MAXPULSETIME (200 * 8) /*!< 200 ms maximum */
#endif
#define DAHDI_PULSETIMEOUT ((DAHDI_MAXPULSETIME / 8) + 50)
#define DAHDI_RINGTRAILER (50 * 8) /*!< Don't consider a ring "over" until it's been gone at least this
much time */
#define DAHDI_LOOPCODE_TIME 10000 /*!< send loop codes for 10 secs */
#define DAHDI_ALARMSETTLE_TIME 5000 /*!< allow alarms to settle for 5 secs */
#define DAHDI_AFTERSTART_TIME 500 /*!< 500ms after start */
#define DAHDI_RINGOFFTIME 4000 /*!< Turn off ringer for 4000 ms */
#define DAHDI_KEWLTIME 500 /*!< 500ms for kewl pulse */
#define DAHDI_AFTERKEWLTIME 300 /*!< 300ms after kewl pulse */
#define DAHDI_MAX_PRETRAINING 1000 /*!< 1000ms max pretraining time */
#ifdef FXSFLASH
#define DAHDI_FXSFLASHMINTIME 450 /*!< min 450ms */
#define DAHDI_FXSFLASHMAXTIME 550 /*!< max 550ms */
#endif
struct dahdi_chardev {
const char *name;
__u8 minor;
};
int dahdi_register_chardev(struct dahdi_chardev *dev);
int dahdi_unregister_chardev(struct dahdi_chardev *dev);
/*! \brief defines for transmit signalling */
enum dahdi_txsig {
DAHDI_TXSIG_ONHOOK, /*!< On hook */
DAHDI_TXSIG_OFFHOOK, /*!< Off hook */
DAHDI_TXSIG_START, /*!< Start / Ring */
DAHDI_TXSIG_KEWL, /*!< Drop battery if possible */
/*! Leave this as the last entry */
DAHDI_TXSIG_TOTAL,
};
enum dahdi_rxsig {
DAHDI_RXSIG_ONHOOK,
DAHDI_RXSIG_OFFHOOK,
DAHDI_RXSIG_START,
DAHDI_RXSIG_RING,
DAHDI_RXSIG_INITIAL
};
enum {
/* Span flags */
DAHDI_FLAGBIT_REGISTERED= 0,
DAHDI_FLAGBIT_RUNNING = 1,
DAHDI_FLAGBIT_RBS = 12, /*!< Span uses RBS signalling */
/* Channel flags */
DAHDI_FLAGBIT_DTMFDECODE= 2, /*!< Channel supports native DTMF decode */
DAHDI_FLAGBIT_MFDECODE = 3, /*!< Channel supports native MFr2 decode */
DAHDI_FLAGBIT_ECHOCANCEL= 4, /*!< Channel supports native echo cancellation */
DAHDI_FLAGBIT_HDLC = 5, /*!< Perform HDLC */
#ifdef CONFIG_DAHDI_NET
DAHDI_FLAGBIT_NETDEV = 6, /*!< Send to network */
#endif
DAHDI_FLAGBIT_CLEAR = 8, /*!< Clear channel */
DAHDI_FLAGBIT_AUDIO = 9, /*!< Audio mode channel */
DAHDI_FLAGBIT_OPEN = 10, /*!< Channel is open */
DAHDI_FLAGBIT_FCS = 11, /*!< Calculate FCS */
/* Reserve 12 for uniqueness with span flags */
DAHDI_FLAGBIT_LINEAR = 13, /*!< Talk to user space in linear */
DAHDI_FLAGBIT_PPP = 14, /*!< PPP is available */
DAHDI_FLAGBIT_T1PPP = 15,
DAHDI_FLAGBIT_SIGFREEZE = 16, /*!< Freeze signalling */
DAHDI_FLAGBIT_NOSTDTXRX = 17, /*!< Do NOT do standard transmit and receive on every interrupt */
DAHDI_FLAGBIT_LOOPED = 18, /*!< Loopback the receive data from the channel to the transmit */
DAHDI_FLAGBIT_MTP2 = 19, /*!< Repeats last message in buffer and also discards repeating messages sent to us */
DAHDI_FLAGBIT_HDLC56 = 20, /*!< Sets the given channel (if in HDLC mode) to use 56K HDLC instead of 64K */
DAHDI_FLAGBIT_BUFEVENTS = 21, /*!< Report buffer events */
DAHDI_FLAGBIT_TXUNDERRUN = 22, /*!< Transmit underrun condition */
DAHDI_FLAGBIT_RXOVERRUN = 23, /*!< Receive overrun condition */
DAHDI_FLAGBIT_DEVFILE = 25, /*!< Channel has a sysfs dev file */
};
#ifdef CONFIG_DAHDI_NET
/**
* have_netdev() - Return true if a channel has an associated network device.
* @chan: Then channel to check.
*
*/
static inline int dahdi_have_netdev(const struct dahdi_chan *chan)
{
return test_bit(DAHDI_FLAGBIT_NETDEV, &chan->flags);
}
#else
static inline int dahdi_have_netdev(const struct dahdi_chan *chan) { return 0; }
#endif
struct dahdi_count {
u32 fe; /*!< Framing error counter */
u32 cv; /*!< Coding violations counter */
u32 bpv; /*!< Bipolar Violation counter */
u32 crc4; /*!< CRC4 error counter */
u32 ebit; /*!< current E-bit error count */
u32 fas; /*!< current FAS error count */
u32 be; /*!< current bit error count */
u32 prbs; /*!< current PRBS detected pattern */
u32 errsec; /*!< errored seconds */
u32 timingslips; /*!< Clock slips */
};
/* map flagbits to flag masks */
#define DAHDI_FLAG(x) (1 << (DAHDI_FLAGBIT_ ## x))
/*! This is a redefinition of the flags from above to allow use of the
* legacy drivers that do not use the kernel atomic bit testing and
* changing routines.
*
* See the above descriptions for DAHDI_FLAGBIT_.... for documentation
* about function. */
/* Span flags */
#define DAHDI_FLAG_REGISTERED DAHDI_FLAG(REGISTERED)
#define DAHDI_FLAG_RUNNING DAHDI_FLAG(RUNNING)
#define DAHDI_FLAG_RBS DAHDI_FLAG(RBS)
/* Channel flags */
#define DAHDI_FLAG_DTMFDECODE DAHDI_FLAG(DTMFDECODE)
#define DAHDI_FLAG_MFDECODE DAHDI_FLAG(MFDECODE)
#define DAHDI_FLAG_ECHOCANCEL DAHDI_FLAG(ECHOCANCEL)
#define DAHDI_FLAG_HDLC DAHDI_FLAG(HDLC)
/* #define DAHDI_FLAG_NETDEV DAHDI_FLAG(NETDEV) */
#define DAHDI_FLAG_CLEAR DAHDI_FLAG(CLEAR)
#define DAHDI_FLAG_AUDIO DAHDI_FLAG(AUDIO)
#define DAHDI_FLAG_OPEN DAHDI_FLAG(OPEN)
#define DAHDI_FLAG_FCS DAHDI_FLAG(FCS)
/* Reserve 12 for uniqueness with span flags */
#define DAHDI_FLAG_LINEAR DAHDI_FLAG(LINEAR)
#define DAHDI_FLAG_PPP DAHDI_FLAG(PPP)
#define DAHDI_FLAG_T1PPP DAHDI_FLAG(T1PPP)
#define DAHDI_FLAG_SIGFREEZE DAHDI_FLAG(SIGFREEZE)
#define DAHDI_FLAG_NOSTDTXRX DAHDI_FLAG(NOSTDTXRX)
#define DAHDI_FLAG_LOOPED DAHDI_FLAG(LOOPED)
#define DAHDI_FLAG_MTP2 DAHDI_FLAG(MTP2)
#define DAHDI_FLAG_HDLC56 DAHDI_FLAG(HDLC56)
#define DAHDI_FLAG_BUFEVENTS DAHDI_FLAG(BUFEVENTS)
#define DAHDI_FLAG_TXUNDERRUN DAHDI_FLAG(TXUNDERRUN)
#define DAHDI_FLAG_RXOVERRUN DAHDI_FLAG(RXOVERRUN)
enum spantypes {
SPANTYPE_INVALID = 0,
SPANTYPE_ANALOG_FXS,
SPANTYPE_ANALOG_FXO,
SPANTYPE_ANALOG_MIXED,
SPANTYPE_DIGITAL_E1,
SPANTYPE_DIGITAL_T1,
SPANTYPE_DIGITAL_J1,
SPANTYPE_DIGITAL_BRI_NT,
SPANTYPE_DIGITAL_BRI_TE,
SPANTYPE_DIGITAL_BRI_SOFT,
SPANTYPE_DIGITAL_DYNAMIC,
};
const char *dahdi_spantype2str(enum spantypes st);
enum spantypes dahdi_str2spantype(const char *name);
const char *dahdi_lineconfig_bit_name(int lineconfig_bit);
ssize_t lineconfig_str(int lineconfig, char buf[], size_t size);
struct file;
struct dahdi_span_ops {
struct module *owner; /*!< Which module is exporting this span. */
/* ==== Span Callback Operations ==== */
/*! Req: Set the requested chunk size. This is the unit in which you must
report results for conferencing, etc */
int (*setchunksize)(struct dahdi_span *span, int chunksize);
/*! Opt: Configure the span (if appropriate) */
int (*spanconfig)(struct file *file, struct dahdi_span *span,
struct dahdi_lineconfig *lc);
/*! Opt: Start the span */
int (*startup)(struct file *file, struct dahdi_span *span);
/*! Opt: Shutdown the span */
int (*shutdown)(struct dahdi_span *span);
/*! Opt: Enable maintenance modes */
int (*maint)(struct dahdi_span *span, int mode);
#ifdef DAHDI_SYNC_TICK
/*! Opt: send sync to spans. Called in hard_irq context with chan_lock
* held.*/
void (*sync_tick)(struct dahdi_span *span, int is_master);
#endif
/* ==== Channel Callback Operations ==== */
/*! Opt: Set signalling type (if appropriate) */
int (*chanconfig)(struct file *file, struct dahdi_chan *chan,
int sigtype);
/*! Opt: Prepare a channel for I/O */
int (*open)(struct dahdi_chan *chan);
/*! Opt: Close channel for I/O */
int (*close)(struct dahdi_chan *chan);
/*! Opt: IOCTL */
int (*ioctl)(struct dahdi_chan *chan, unsigned int cmd, unsigned long data);
/* Okay, now we get to the signalling. You have several options: */
/* Option 1: If you're a T1 like interface, you can just provide a
rbsbits function and we'll assert robbed bits for you. Be sure to
set the DAHDI_FLAG_RBS in this case. */
/*! Opt: If the span uses A/B bits, set them here */
int (*rbsbits)(struct dahdi_chan *chan, int bits);
/*! Option 2: If you don't know about sig bits, but do have their
equivalents (i.e. you can disconnect battery, detect off hook,
generate ring, etc directly) then you can just specify a
sethook function, and we'll call you with appropriate hook states
to set. Still set the DAHDI_FLAG_RBS in this case as well */
int (*hooksig)(struct dahdi_chan *chan, enum dahdi_txsig hookstate);
/*! Option 3: If you can't use sig bits, you can write a function
which handles the individual hook states */
int (*sethook)(struct dahdi_chan *chan, int hookstate);
/*! Opt: Used to tell an onboard HDLC controller that there is data ready to transmit */
void (*hdlc_hard_xmit)(struct dahdi_chan *chan);
/*! If the watchdog detects no received data, it will call the
watchdog routine */
int (*watchdog)(struct dahdi_span *span, int cause);
#ifdef DAHDI_AUDIO_NOTIFY
/*! Opt: audio is used, don't optimize out */
int (*audio_notify)(struct dahdi_chan *chan, int yes);
#endif
/*! Opt: Enable preechocan stream from inline HW echocanceler. */
int (*enable_hw_preechocan)(struct dahdi_chan *chan);
/*! Opt: Disable preechocan stream from inline HW echocanceler. */
void (*disable_hw_preechocan)(struct dahdi_chan *chan);
/*! Opt: Dacs the contents of chan2 into chan1 if possible */
int (*dacs)(struct dahdi_chan *chan1, struct dahdi_chan *chan2);
/*! Opt: Provide echo cancellation on a channel */
int (*echocan_create)(struct dahdi_chan *chan,
struct dahdi_echocanparams *ecp,
struct dahdi_echocanparam *p,
struct dahdi_echocan_state **ec);
/*! Opt: Provide the name of the echo canceller on a channel */
const char *(*echocan_name)(const struct dahdi_chan *chan);
/*! When using "assigned spans", this function is called back when this
* span has been assigned with the system. */
void (*assigned)(struct dahdi_span *span);
/*! Called when the spantype / linemode is changed before the span is
* assigned a number. */
int (*set_spantype)(struct dahdi_span *span, enum spantypes st);
};
/**
* dahdi_device - Represents a device that can contain one or more spans.
*
* @spans: List of child spans.
* @manufacturer: Device manufacturer.
* @location: The location of this device. This should not change if
* the device is replaced (e.g: in the same PCI slot)
* @hardware_id: The hardware_id of this device (NULL for devices without
* a hardware_id). This should not change if the device is
* relocated to a different location (e.g: different PCI slot)
* @devicetype: What type of device this is.
* @irqmisses: Count of "interrupt misses" for this device.
*
*/
struct dahdi_device {
struct list_head spans;
const char *manufacturer;
const char *location;
const char *hardware_id;
const char *devicetype;
struct device dev;
unsigned int irqmisses;
ktime_t registration_time;
};
struct dahdi_span {
spinlock_t lock;
char name[40]; /*!< Span name */
char desc[80]; /*!< Span description */
enum spantypes spantype; /*!< span type */
int deflaw; /*!< Default law (DAHDI_MULAW or DAHDI_ALAW) */
int alarms; /*!< Pending alarms on span */
unsigned long flags;
u8 cannot_provide_timing:1;
int lbo; /*!< Span Line-Buildout */
int lineconfig; /*!< Span line configuration */
int linecompat; /*!< Span line compatibility (0 for
analog spans)*/
int channels; /*!< Number of channels in span */
int txlevel; /*!< Tx level */
int rxlevel; /*!< Rx level */
int syncsrc; /*!< current sync src (gets copied here) */
struct dahdi_count count; /*!< Performance and Error counters */
int maintstat; /*!< Maintenance state */
int mainttimer; /*!< Maintenance timer */
struct dahdi_chan **chans; /*!< Member channel structures */
const struct dahdi_span_ops *ops; /*!< span callbacks. */
/* Used by DAHDI only -- no user servicable parts inside */
int spanno; /*!< Span number for DAHDI */
int offset; /*!< Offset within a given card */
int lastalarms; /*!< Previous alarms */
#ifdef CONFIG_DAHDI_WATCHDOG
int watchcounter;
int watchstate;
#endif
#ifdef CONFIG_PROC_FS
struct proc_dir_entry *proc_entry;
#endif
struct list_head spans_node;
struct dahdi_device *parent;
struct list_head device_node;
struct device *span_device;
};