[svn-commits] sruffell: branch linux/2.5 r10221 - /linux/branches/2.5/drivers/dahdi/wct4xxp/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Oct 12 11:32:39 CDT 2011


Author: sruffell
Date: Wed Oct 12 11:32:35 2011
New Revision: 10221

URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=10221
Log:
wct4xxp: Fix condition where hardware echo canceler erroneously mutes DTMF.

Commit r9750 "wct4xxp: Reduce the memory footprint of the hardware
echocanceler.", as part of reducing the non-pageable memory required to
support the VPMOCT064 and VPMOCT128, disabled caching of some hardware
echocan registers. This resulted in more physical reads to the echo
canceler. These new read transactions exposed an existing issue where
sometimes reads could be turned into writes which put a channel into an
unintended state preventing Asterisk from detecting any DTMF.

This issue is resolved by ensuring that the write signal to the Octasic
part is explicitly cleared between when the address is presented on the
bus and when the read and chip select signals are asserted. The cost is
an increase in the average time to enable / disable echo cancellation by
about 5 us on one Intel Xeon X3220 test machine (~250ns increase per
read from the Octasic part and 20 reads to enable / disable a channel).

This commit resolves a behavioral regression first introduced in 2.5.0
and 2.4.1 which could take many calls before revealing itself. This
change only affects cards with a VPMOCT128 or VPMOCT064 installed.

Signed-off-by: Shaun Ruffell <sruffell at digium.com>
Acked-by: Doug Bailey <dbailey at digium.com>

Origin: http://svnview.digium.com/svn/dahdi?view=rev&rev=10220

Modified:
    linux/branches/2.5/drivers/dahdi/wct4xxp/base.c

Modified: linux/branches/2.5/drivers/dahdi/wct4xxp/base.c
URL: http://svnview.digium.com/svn/dahdi/linux/branches/2.5/drivers/dahdi/wct4xxp/base.c?view=diff&rev=10221&r1=10220&r2=10221
==============================================================================
--- linux/branches/2.5/drivers/dahdi/wct4xxp/base.c (original)
+++ linux/branches/2.5/drivers/dahdi/wct4xxp/base.c Wed Oct 12 11:32:35 2011
@@ -766,11 +766,9 @@
 	__t4_pci_out(wc, WC_LADDR, (WC_LWRITE | WC_LALE));
 	if (!pedanticpci)
 		__t4_pci_in(wc, WC_VERSION);
-#ifdef PEDANTIC_OCTASIC_CHECKING 
 	__t4_pci_out(wc, WC_LADDR, (WC_LALE));
 	if (!pedanticpci)
 		__t4_pci_in(wc, WC_VERSION);
-#endif
 	if (!octopt) {
 		__t4_gpio_setdir(wc, 0xff, 0x00);
 		__t4_gpio_set(wc, 0xff, 0x00);




More information about the svn-commits mailing list