# /etc/init.d/zaptel start
Jan 29 16:52:23 tel Zapata Telephony Interface Registered on major 196
Jan 29 16:52:23 tel Zaptel Version: SVN-branch-1.4-r3754
Jan 29 16:52:23 tel Zaptel Echo Canceller: MG2
Jan 29 16:52:23 tel NOTICE-wcfxo: WCFXO/0: Unknown DAA chip revision: REVB=0
Jan 29 16:52:23 tel Failed to initailize DAA, giving up...
Jan 29 16:52:23 tel wcfxo: probe of 0000:02:06.0 failed with error -5
Jan 29 16:52:23 tel NOTICE-wcfxo: WCFXO/1: Unknown DAA chip revision: REVB=0
Jan 29 16:52:23 tel Failed to initailize DAA, giving up...
Jan 29 16:52:23 tel wcfxo: probe of 0000:02:07.0 failed with error -5
Jan 29 16:52:23 tel NOTICE-wcfxo: WCFXO/2: Unknown DAA chip revision: REVB=0
Jan 29 16:52:23 tel Failed to initailize DAA, giving up...
Jan 29 16:52:23 tel wcfxo: probe of 0000:02:09.0 failed with error -5
Jan 29 16:52:26 tel ztdummy: Trying to load High Resolution Timer
Jan 29 16:52:26 tel ztdummy: Initialized High Resolution Timer
Jan 29 16:52:26 tel ztdummy: Starting High Resolution Timer
Jan 29 16:52:26 tel ztdummy: High Resolution Timer started, good to go
Posted: Thu Dec 04, 2008 2:41 pm Post subject: Unknown DAA chip revision: REVB=0
I am having this problem too but I have noticed something interesting:
I only have one PCI slot and it has a riser to allow the X100p card to lay flat in a 1U enclosure, with the riser in circuit I see the following with dmesg;
Zapata Telephony Interface Registered on major 196
Zaptel Version: 1.4.12.1
Zaptel Echo Canceller: MG2
ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LNKB] -> GSI 11 (level, low) -> IRQ
11
NOTICE-wcfxo: WCFXO/0: Unknown DAA chip revision: REVB=0
Failed to initailize DAA, giving up...
wcfxo: probe of 0000:00:14.0 failed with error -5
With the card plugged directly into the mother board without the riser it works fine;
Zapata Telephony Interface Registered on major 196
Zaptel Version: 1.4.12.1
Zaptel Echo Canceller: MG2
Real Time Clock Driver v1.12ac
parport: PnPBIOS parport detected.
parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP]
ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LNKB] -> GSI 11 (level, low) -> IRQ 11
wcfxo: DAA mode is 'TBR21'
Found a Wildcard FXO: Wildcard X100P
I don't know the answer but I have asked my motherboard supplier to investigate.
I too am getting the Unknown DAA chip revision: REVB=0 error after upgrading Zaptel to 1.4.11-1.
I see that the error is being reported on 1.4.12 as well which I was hoping would solve the problem.
I too have the card plugged into a PCI slot on a riser from the MB, but do not have an option to try it directly into the PCI riser slot. The OS see's the card in either slot the riser creates, but Zaptel refuses to initialse the card properly in either.
I have tried changing the card onto another IRQ and made sure nothing else is sharing the IRQ.
The card has been working with previous releases of Zaptel.
Joined: 15 Feb 2009 Posts: 8 Location: shenzhen,china
Posted: Sun Feb 15, 2009 1:44 am Post subject: I am facing the exact same problem
I am facing the exact same problem
I have no idea . _________________ Bcomtel is a professional WiFi PoE ColorLCD DECT PSTN Business
Router VoIP Phone and ATA manufacturer
From 30 to 80USD
Jack
MSN:bcomtel@bcomtel.com
Skype: bcomtel.com
website :http://www.bcomtel.com
I have the same problem with x100p.
I tried it on Ubuntu server 8.04 and Fedora I tried with various zaptel versions (1-4-12 1-4-11 current 1-2-16 etc...) and I always get error that card can not initialise. (Unknown chip revision error -5 as above).
I can see it from lspci but I can't see it with cat /proc/interrupts.
I tried to disable all unnecessary hardware with no success.
When I removed card from PCI slot 1 to slot 2 I could see wcfxo on
cat /proc/interrupts alone on interrupt but the day after interrupt dissapeared.
I dunno what is happening. Is it motherboard problem, broken card, Digium change in zaptel to eliminate clone cards or something bad what kernel do ? (like disabling interrupts which I need)
Does anyone have this card working and if so pls tell me on what distro and with what version of Asterisk and Zaptel ?
Posted: Thu Mar 12, 2009 4:52 pm Post subject: Solution to: wcfxo: probe of failed with error -5
I was having the same exact problem. Older intel board. 2 x100p.com cards. I tried every kernel parameter under the sun, and no luck. lspci -v would show the cards and I could see that there were no IRQ conflicts.
I happened across this article, and it fixed the problem.
I'm going to copy and paste the patch that ended up working for me:
--- wcfxo.c 2008-08-13 20:58:36.000000000 -0400
+++ wcfxoNew.c 2009-01-11 11:24:51.000000000 -0500
@@ -696,6 +696,16 @@
/* Hardware stuff */
/* Reset PCI Interface chip and registers */
outb(0x0e, wc->ioaddr + WC_CNTL);
+
+ /* Set all to outputs except AUX 4, which is an input */
+ outb(0xef, wc->ioaddr + WC_AUXC);
+
+ /* Reset the DAA (DAA uses AUX5 for reset) */
+ outb(0x00, wc->ioaddr + WC_AUXD);
+ set_current_state(TASK_INTERRUPTIBLE);
+ schedule_timeout(1 + HZ / 800);
+
+ /* Set hook state to on hook & un-reset the DAA */
if (wc->flags & FLAG_RESET_ON_AUX5) {
/* Set hook state to on hook for when we switch.
Make sure reset is high */
@@ -704,9 +714,7 @@
/* Set hook state to on hook for when we switch */
outb(0x24, wc->ioaddr + WC_AUXD);
}
- /* Set all to outputs except AUX 4, which is an input */
- outb(0xef, wc->ioaddr + WC_AUXC);
-
+
/* Back to normal, with automatic DMA wrap around */
outb(0x01, wc->ioaddr + WC_CNTL);
I just inserted the code with the "+"s, recompiled and reinstalled, and it "seems" to have fixed the problem.
Posted: Thu Apr 30, 2009 5:59 am Post subject: Anyone having luck with these x100s?
Anyone having luck with these x100s? _________________ Michael White
.e4 -> Asterisk Hardware Experts
http://www.8774e4voip.com Digium Preferred Webstore
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum