Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
48032024a3 | ||
|
|
62d7a00fdc | ||
|
|
5aaaaf9d2f | ||
|
|
f56b748f73 | ||
|
|
4305b44108 | ||
|
|
b6fe19cff5 | ||
|
|
108b0641aa | ||
|
|
368d8bec4b | ||
|
|
799753aefd | ||
|
|
a3da9f1d03 | ||
|
|
701f633e0d | ||
|
|
9d62e703fe | ||
|
|
6dd89a7ae5 | ||
|
|
0981935d5c | ||
|
|
cf057d4b0e | ||
|
|
9769028667 | ||
|
|
4f0cf5fb98 | ||
|
|
c4356304e5 | ||
|
|
54893b93aa | ||
|
|
91bc5a3b57 | ||
|
|
8428452ad1 | ||
|
|
90b6712d01 | ||
|
|
31cbf7a90e | ||
|
|
bce1ecafda |
3
Makefile
3
Makefile
@@ -196,7 +196,8 @@ test:
|
||||
docs: $(GENERATED_DOCS)
|
||||
|
||||
README.html: README
|
||||
$(ASCIIDOC_CMD) -o $@ $<
|
||||
date=`stat -c "%y" $<`
|
||||
$(ASCIIDOC_CMD) -a revdate="$$date" -o $@ $<
|
||||
|
||||
dahdi-api.html: drivers/dahdi/dahdi-base.c
|
||||
build_tools/kernel-doc --kernel $(KSRC) $^ >$@
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
|
||||
@@ -98,7 +98,11 @@
|
||||
#define chan_to_netdev(h) ((h)->hdlcnetdev->netdev)
|
||||
|
||||
/* macro-oni for determining a unit (channel) number */
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
|
||||
#define UNIT(file) MINOR(file->f_dentry->d_inode->i_rdev)
|
||||
#else
|
||||
#define UNIT(file) MINOR(file->f_path.dentry->d_inode->i_rdev)
|
||||
#endif
|
||||
|
||||
EXPORT_SYMBOL(dahdi_transcode_fops);
|
||||
EXPORT_SYMBOL(dahdi_init_tone_state);
|
||||
@@ -10284,6 +10288,18 @@ MODULE_PARM_DESC(auto_assign_spans,
|
||||
"channel numbers assigned by the driver. If 0, user space "
|
||||
"will need to assign them via /sys/bus/dahdi_devices.");
|
||||
|
||||
|
||||
static ssize_t dahdi_no_read(struct file *file, char __user *usrbuf,
|
||||
size_t count, loff_t *ppos)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
static ssize_t dahdi_no_write(struct file *file, const char __user *usrbuf,
|
||||
size_t count, loff_t *ppos)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
static const struct file_operations dahdi_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.open = dahdi_open,
|
||||
@@ -10297,6 +10313,8 @@ static const struct file_operations dahdi_fops = {
|
||||
.ioctl = dahdi_ioctl,
|
||||
#endif
|
||||
.poll = dahdi_poll,
|
||||
.read = dahdi_no_read,
|
||||
.write = dahdi_no_write,
|
||||
};
|
||||
|
||||
static const struct file_operations dahdi_timer_fops = {
|
||||
@@ -10311,6 +10329,8 @@ static const struct file_operations dahdi_timer_fops = {
|
||||
.ioctl = dahdi_timer_ioctl,
|
||||
#endif
|
||||
.poll = dahdi_timer_poll,
|
||||
.read = dahdi_no_read,
|
||||
.write = dahdi_no_write,
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
@@ -201,7 +201,9 @@ static void dahdi_dynamic_sendmessage(struct dahdi_dynamic *d)
|
||||
static void __dahdi_dynamic_run(void)
|
||||
{
|
||||
struct dahdi_dynamic *d;
|
||||
#ifdef ENABLE_TASKLETS
|
||||
struct dahdi_dynamic_driver *drv;
|
||||
#endif
|
||||
|
||||
rcu_read_lock();
|
||||
list_for_each_entry_rcu(d, &dspan_list, list) {
|
||||
@@ -211,6 +213,13 @@ static void __dahdi_dynamic_run(void)
|
||||
}
|
||||
|
||||
#ifdef ENABLE_TASKLETS
|
||||
list_for_each_entry_rcu(drv, &driver_list, list) {
|
||||
/* Flush any traffic still pending in the driver */
|
||||
if (drv->flush) {
|
||||
drv->flush();
|
||||
}
|
||||
}
|
||||
#else
|
||||
/* If tasklets are not enabled, the above section will be called in
|
||||
* interrupt context and the flushing of each driver will be called in a
|
||||
* separate tasklet that only handles that. This is necessary since some
|
||||
@@ -221,13 +230,6 @@ static void __dahdi_dynamic_run(void)
|
||||
*
|
||||
*/
|
||||
tasklet_hi_schedule(&dahdi_dynamic_flush_tlet);
|
||||
#else
|
||||
list_for_each_entry_rcu(drv, &driver_list, list) {
|
||||
/* Flush any traffic still pending in the driver */
|
||||
if (drv->flush) {
|
||||
drv->flush();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
rcu_read_unlock();
|
||||
}
|
||||
|
||||
@@ -266,6 +266,7 @@ static void ztdeth_destroy(struct dahdi_dynamic *dyn)
|
||||
struct ztdeth *z = dyn->pvt;
|
||||
unsigned long flags;
|
||||
struct ztdeth *prev=NULL, *cur;
|
||||
|
||||
spin_lock_irqsave(&zlock, flags);
|
||||
cur = zdevs;
|
||||
while(cur) {
|
||||
@@ -279,12 +280,14 @@ static void ztdeth_destroy(struct dahdi_dynamic *dyn)
|
||||
prev = cur;
|
||||
cur = cur->next;
|
||||
}
|
||||
spin_unlock_irqrestore(&zlock, flags);
|
||||
|
||||
if (cur == z) { /* Successfully removed */
|
||||
dyn->pvt = NULL;
|
||||
dev_put(z->dev);
|
||||
printk(KERN_INFO "TDMoE: Removed interface for %s\n", z->span->name);
|
||||
kfree(z);
|
||||
}
|
||||
spin_unlock_irqrestore(&zlock, flags);
|
||||
}
|
||||
|
||||
static int ztdeth_create(struct dahdi_dynamic *dyn, const char *addr)
|
||||
|
||||
@@ -1063,12 +1063,23 @@ static int fr_add_pvc(struct net_device *master, unsigned int dlci, int type)
|
||||
|
||||
used = pvc_is_used(pvc);
|
||||
|
||||
if (type == ARPHRD_ETHER)
|
||||
if (type == ARPHRD_ETHER) {
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0)
|
||||
dev = alloc_netdev(sizeof(struct net_device_stats),
|
||||
"pvceth%d", NET_NAME_UNKNOWN, ether_setup);
|
||||
#else
|
||||
dev = alloc_netdev(sizeof(struct net_device_stats),
|
||||
"pvceth%d", ether_setup);
|
||||
else
|
||||
#endif
|
||||
} else {
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0)
|
||||
dev = alloc_netdev(sizeof(struct net_device_stats),
|
||||
"pvc%d", NET_NAME_UNKNOWN, dlci_setup);
|
||||
#else
|
||||
dev = alloc_netdev(sizeof(struct net_device_stats),
|
||||
"pvc%d", dlci_setup);
|
||||
#endif
|
||||
}
|
||||
|
||||
if (!dev) {
|
||||
printk(KERN_WARNING "%s: Memory squeeze on fr_pvc()\n",
|
||||
|
||||
@@ -282,7 +282,12 @@ static void hdlc_setup(struct net_device *dev)
|
||||
struct net_device *alloc_hdlcdev(void *priv)
|
||||
{
|
||||
struct net_device *dev;
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0)
|
||||
dev = alloc_netdev(sizeof(hdlc_device), "hdlc%d",
|
||||
NET_NAME_UNKNOWN, hdlc_setup);
|
||||
#else
|
||||
dev = alloc_netdev(sizeof(hdlc_device), "hdlc%d", hdlc_setup);
|
||||
#endif
|
||||
if (dev)
|
||||
dev_to_hdlc(dev)->priv = priv;
|
||||
return dev;
|
||||
|
||||
@@ -31,19 +31,20 @@ VPMADT032_VERSION:=1.25.0
|
||||
HX8_VERSION:=2.06
|
||||
VPMOCT032_VERSION:=1.12.0
|
||||
WCT820_VERSION:=1.76
|
||||
TE133_VERSION:=780019
|
||||
TE133_VERSION:=7a001e
|
||||
TE134_VERSION:=780017
|
||||
TE435_VERSION:=e0019
|
||||
TE435_VERSION:=13001e
|
||||
TE436_VERSION:=10017
|
||||
A8A_VERSION:=1d0017
|
||||
A8B_VERSION:=1d0019
|
||||
A8B_VERSION:=1f001e
|
||||
A4A_VERSION:=a0017
|
||||
A4B_VERSION:=b0019
|
||||
A4B_VERSION:=d001e
|
||||
|
||||
FIRMWARE_URL:=http://downloads.digium.com/pub/telephony/firmware/releases
|
||||
|
||||
ALL_FIRMWARE=FIRMWARE-OCT6114-032 FIRMWARE-OCT6114-064 FIRMWARE-OCT6114-128 FIRMWARE-OCT6114-256
|
||||
ALL_FIRMWARE+=FIRMWARE-TC400M FIRMWARE-HX8 FIRMWARE-VPMOCT032 FIRMWARE-TE820 FIRMWARE-TE133 FIRMWARE-TE134
|
||||
ALL_FIRMWARE+=FIRMWARE-A8A FIRMWARE-A8B FIRMWARE-A4A FIRMWARE-A4B FIRMWARE-TE435
|
||||
ALL_FIRMWARE+=FIRMWARE-A8A FIRMWARE-A8B FIRMWARE-A4A FIRMWARE-A4B FIRMWARE-TE435 FIRMWARE-TE436
|
||||
|
||||
# Firmware files should use the naming convention: dahdi-fw-<base name>-<sub name>-<version> or dahdi-fw-<base name>-<version>
|
||||
# First example: dahdi-fw-oct6114-064-1.05.01
|
||||
@@ -63,6 +64,7 @@ FIRMWARE:=$(FIRMWARE:FIRMWARE-TE820=dahdi-fw-te820-$(WCT820_VERSION).tar.gz)
|
||||
FIRMWARE:=$(FIRMWARE:FIRMWARE-TE133=dahdi-fw-te133-$(TE133_VERSION).tar.gz)
|
||||
FIRMWARE:=$(FIRMWARE:FIRMWARE-TE134=dahdi-fw-te134-$(TE134_VERSION).tar.gz)
|
||||
FIRMWARE:=$(FIRMWARE:FIRMWARE-TE435=dahdi-fw-te435-$(TE435_VERSION).tar.gz)
|
||||
FIRMWARE:=$(FIRMWARE:FIRMWARE-TE436=dahdi-fw-te436-$(TE436_VERSION).tar.gz)
|
||||
FIRMWARE:=$(FIRMWARE:FIRMWARE-A8A=dahdi-fw-a8b-$(A8B_VERSION).tar.gz)
|
||||
FIRMWARE:=$(FIRMWARE:FIRMWARE-A8B=dahdi-fw-a8a-$(A8A_VERSION).tar.gz)
|
||||
FIRMWARE:=$(FIRMWARE:FIRMWARE-A4A=dahdi-fw-a4b-$(A4B_VERSION).tar.gz)
|
||||
@@ -138,6 +140,7 @@ hotplug-install: $(DESTDIR)/usr/lib/hotplug/firmware $(DESTDIR)/lib/firmware $(F
|
||||
@$(call RUN_INST,dahdi-fw-te133,$(TE133_VERSION))
|
||||
@$(call RUN_INST,dahdi-fw-te134,$(TE134_VERSION))
|
||||
@$(call RUN_INST,dahdi-fw-te435,$(TE435_VERSION))
|
||||
@$(call RUN_INST,dahdi-fw-te436,$(TE436_VERSION))
|
||||
@$(call RUN_INST,dahdi-fw-a8a,$(A8A_VERSION))
|
||||
@$(call RUN_INST,dahdi-fw-a8b,$(A8B_VERSION))
|
||||
@$(call RUN_INST,dahdi-fw-a4a,$(A4A_VERSION))
|
||||
|
||||
@@ -1784,7 +1784,8 @@ static int __devinit pciradio_init_one(struct pci_dev *pdev, const struct pci_de
|
||||
|
||||
}
|
||||
|
||||
if (request_irq(pdev->irq, pciradio_interrupt, DAHDI_IRQ_SHARED, "pciradio", rad)) {
|
||||
if (request_irq(pdev->irq, pciradio_interrupt,
|
||||
IRQF_SHARED, "pciradio", rad)) {
|
||||
printk(KERN_NOTICE "pciradio: Unable to request IRQ %d\n", pdev->irq);
|
||||
if (rad->freeregion)
|
||||
release_region(rad->ioaddr, 0xff);
|
||||
|
||||
@@ -543,7 +543,7 @@ static int __devinit tor2_probe(struct pci_dev *pdev, const struct pci_device_id
|
||||
for (x = 0; x < 256; x++)
|
||||
writel(0x7f7f7f7f, &tor->mem32[x]);
|
||||
|
||||
if (request_irq(tor->irq, tor2_intr, DAHDI_IRQ_SHARED_DISABLED, "tor2", tor)) {
|
||||
if (request_irq(tor->irq, tor2_intr, IRQF_SHARED, "tor2", tor)) {
|
||||
printk(KERN_ERR "Unable to request tormenta IRQ %d\n", tor->irq);
|
||||
goto err_out_release_all;
|
||||
}
|
||||
@@ -1200,6 +1200,7 @@ DAHDI_IRQ_HANDLER(tor2_intr)
|
||||
unsigned char c, rxc;
|
||||
unsigned char abits, bbits;
|
||||
struct tor2 *tor = (struct tor2 *) dev_id;
|
||||
unsigned long flags;
|
||||
|
||||
/* make sure its a real interrupt for us */
|
||||
if (!(readb(&tor->mem8[STATREG]) & INTACTIVE)) /* if not, just return */
|
||||
@@ -1207,6 +1208,8 @@ DAHDI_IRQ_HANDLER(tor2_intr)
|
||||
return IRQ_NONE;
|
||||
}
|
||||
|
||||
local_irq_save(flags);
|
||||
|
||||
if (tor->cardtype == TYPE_E1) {
|
||||
/* set outbit, interrupt enable, and ack interrupt */
|
||||
writeb(OUTBIT | INTENA | INTACK | E1DIV | tor->master,
|
||||
@@ -1504,6 +1507,8 @@ DAHDI_IRQ_HANDLER(tor2_intr)
|
||||
else
|
||||
/* clear OUTBIT and enable interrupts */
|
||||
writeb(INTENA | tor->master, &tor->mem8[CTLREG]);
|
||||
|
||||
local_irq_restore(flags);
|
||||
return IRQ_RETVAL(1);
|
||||
}
|
||||
|
||||
|
||||
@@ -1885,7 +1885,7 @@ __voicebus_init(struct voicebus *vb, const char *board_name,
|
||||
goto cleanup;
|
||||
|
||||
#if !defined(CONFIG_VOICEBUS_TIMER)
|
||||
retval = request_irq(vb->pdev->irq, vb_isr, DAHDI_IRQ_SHARED,
|
||||
retval = request_irq(vb->pdev->irq, vb_isr, IRQF_SHARED,
|
||||
board_name, vb);
|
||||
if (retval) {
|
||||
dev_warn(&vb->pdev->dev, "Failed to request interrupt line.\n");
|
||||
|
||||
@@ -207,7 +207,13 @@ int vb_net_register(struct voicebus *vb, const char *board_name)
|
||||
struct voicebus_netdev_priv *priv;
|
||||
const char our_mac[] = { 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff};
|
||||
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0)
|
||||
netdev = alloc_netdev(sizeof(*priv), board_name,
|
||||
NET_NAME_UNKNOWN, ether_setup);
|
||||
#else
|
||||
netdev = alloc_netdev(sizeof(*priv), board_name, ether_setup);
|
||||
#endif
|
||||
|
||||
if (!netdev)
|
||||
return -ENOMEM;
|
||||
priv = netdev_priv(netdev);
|
||||
|
||||
@@ -3823,7 +3823,7 @@ static void wcaxx_back_out_gracefully(struct wcaxx *wc)
|
||||
unsigned long flags;
|
||||
|
||||
clear_bit(INITIALIZED, &wc->bit_flags);
|
||||
smp_mb__after_clear_bit();
|
||||
smp_mb__after_atomic();
|
||||
|
||||
/* Make sure we're not on the card list anymore. */
|
||||
mutex_lock(&card_list_lock);
|
||||
@@ -3886,9 +3886,9 @@ static int wcaxx_check_firmware(struct wcaxx *wc)
|
||||
u32 firmware_version;
|
||||
const bool force_firmware = false;
|
||||
const unsigned int A4A_VERSION = 0x0a0017;
|
||||
const unsigned int A4B_VERSION = 0x0b0019;
|
||||
const unsigned int A4B_VERSION = 0x0d001e;
|
||||
const unsigned int A8A_VERSION = 0x1d0017;
|
||||
const unsigned int A8B_VERSION = 0x1d0019;
|
||||
const unsigned int A8B_VERSION = 0x1f001e;
|
||||
|
||||
if (wc->desc == &device_a8a) {
|
||||
firmware_version = A8A_VERSION;
|
||||
|
||||
@@ -2572,6 +2572,7 @@ DAHDI_IRQ_HANDLER(b4xxp_interrupt)
|
||||
{
|
||||
struct b4xxp *b4 = dev_id;
|
||||
unsigned char status;
|
||||
unsigned long flags;
|
||||
int i;
|
||||
|
||||
/* Make sure it's really for us */
|
||||
@@ -2585,6 +2586,8 @@ DAHDI_IRQ_HANDLER(b4xxp_interrupt)
|
||||
* That way if we get behind, we don't lose anything.
|
||||
* We don't actually do any processing here, we simply flag the bottom-half to do the heavy lifting.
|
||||
*/
|
||||
local_irq_save(flags);
|
||||
|
||||
if (status & V_FR_IRQSTA) {
|
||||
b4->fifo_irqstatus[0] |= __pci_in8(b4, R_IRQ_FIFO_BL0);
|
||||
b4->fifo_irqstatus[1] |= __pci_in8(b4, R_IRQ_FIFO_BL1);
|
||||
@@ -2620,6 +2623,8 @@ DAHDI_IRQ_HANDLER(b4xxp_interrupt)
|
||||
/* tasklet_hi_schedule(&b4->b4xxp_tlet); */
|
||||
b4xxp_bottom_half((unsigned long)b4);
|
||||
|
||||
local_irq_restore(flags);
|
||||
|
||||
return IRQ_RETVAL(1);
|
||||
}
|
||||
|
||||
@@ -2951,7 +2956,7 @@ static int __devinit b4xx_probe(struct pci_dev *pdev, const struct pci_device_id
|
||||
|
||||
create_sysfs_files(b4);
|
||||
|
||||
if (request_irq(pdev->irq, b4xxp_interrupt, DAHDI_IRQ_SHARED_DISABLED, "b4xxp", b4)) {
|
||||
if (request_irq(pdev->irq, b4xxp_interrupt, IRQF_SHARED, "b4xxp", b4)) {
|
||||
dev_err(&b4->pdev->dev, "Unable to request IRQ %d\n",
|
||||
pdev->irq);
|
||||
ret = -EIO;
|
||||
|
||||
@@ -972,7 +972,7 @@ static int __devinit wcfxo_init_one(struct pci_dev *pdev, const struct pci_devic
|
||||
/* Keep track of which device we are */
|
||||
pci_set_drvdata(pdev, wc);
|
||||
|
||||
if (request_irq(pdev->irq, wcfxo_interrupt, DAHDI_IRQ_SHARED, "wcfxo", wc)) {
|
||||
if (request_irq(pdev->irq, wcfxo_interrupt, IRQF_SHARED, "wcfxo", wc)) {
|
||||
printk(KERN_NOTICE "wcfxo: Unable to request IRQ %d\n", pdev->irq);
|
||||
if (wc->freeregion)
|
||||
release_region(wc->ioaddr, 0xff);
|
||||
|
||||
@@ -1174,6 +1174,8 @@ DAHDI_IRQ_HANDLER(t1xxp_interrupt)
|
||||
if (!ints)
|
||||
return IRQ_NONE;
|
||||
|
||||
local_irq_save(flags);
|
||||
|
||||
outb(ints, wc->ioaddr + WC_INTSTAT);
|
||||
|
||||
if (!wc->intcount) {
|
||||
@@ -1188,13 +1190,13 @@ DAHDI_IRQ_HANDLER(t1xxp_interrupt)
|
||||
t1xxp_receiveprep(wc, ints);
|
||||
t1xxp_transmitprep(wc, ints);
|
||||
}
|
||||
spin_lock_irqsave(&wc->lock, flags);
|
||||
spin_lock(&wc->lock);
|
||||
|
||||
#if 1
|
||||
__handle_leds(wc);
|
||||
#endif
|
||||
|
||||
spin_unlock_irqrestore(&wc->lock, flags);
|
||||
spin_unlock(&wc->lock);
|
||||
|
||||
/* Count down timers */
|
||||
t1xxp_do_counters(wc);
|
||||
@@ -1220,6 +1222,8 @@ DAHDI_IRQ_HANDLER(t1xxp_interrupt)
|
||||
if (ints & 0x20)
|
||||
printk(KERN_INFO "PCI Target abort\n");
|
||||
|
||||
local_irq_restore(flags);
|
||||
|
||||
return IRQ_RETVAL(1);
|
||||
}
|
||||
|
||||
@@ -1333,7 +1337,7 @@ static int __devinit t1xxp_init_one(struct pci_dev *pdev, const struct pci_devic
|
||||
/* Keep track of which device we are */
|
||||
pci_set_drvdata(pdev, wc);
|
||||
|
||||
if (request_irq(pdev->irq, t1xxp_interrupt, DAHDI_IRQ_SHARED_DISABLED, "t1xxp", wc)) {
|
||||
if (request_irq(pdev->irq, t1xxp_interrupt, IRQF_SHARED, "t1xxp", wc)) {
|
||||
printk(KERN_NOTICE "t1xxp: Unable to request IRQ %d\n", pdev->irq);
|
||||
kfree(wc);
|
||||
return -EIO;
|
||||
|
||||
@@ -5334,7 +5334,7 @@ t4_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
#ifdef SUPPORT_GEN1
|
||||
if (request_irq(pdev->irq, (wc->devtype->flags & FLAG_2NDGEN) ?
|
||||
t4_interrupt_gen2 : t4_interrupt,
|
||||
DAHDI_IRQ_SHARED,
|
||||
IRQF_SHARED,
|
||||
(wc->numspans == 8) ? "wct8xxp" :
|
||||
(wc->numspans == 2) ? "wct2xxp" :
|
||||
"wct4xxp",
|
||||
@@ -5348,7 +5348,7 @@ t4_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
}
|
||||
|
||||
if (request_irq(pdev->irq, t4_interrupt_gen2,
|
||||
DAHDI_IRQ_SHARED, "t4xxp", wc)) {
|
||||
IRQF_SHARED, "t4xxp", wc)) {
|
||||
#endif
|
||||
dev_notice(&wc->dev->dev, "Unable to request IRQ %d\n",
|
||||
pdev->irq);
|
||||
|
||||
@@ -375,6 +375,7 @@ struct wcdte {
|
||||
#endif
|
||||
struct timer_list watchdog;
|
||||
u16 open_channels;
|
||||
unsigned long reported_packet_errors;
|
||||
};
|
||||
|
||||
struct wcdte_netdev_priv {
|
||||
@@ -657,7 +658,13 @@ wctc4xxp_net_register(struct wcdte *wc)
|
||||
struct wcdte_netdev_priv *priv;
|
||||
const char our_mac[] = { 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff};
|
||||
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0)
|
||||
netdev = alloc_netdev(sizeof(*priv), wc->board_name,
|
||||
NET_NAME_UNKNOWN, ether_setup);
|
||||
#else
|
||||
netdev = alloc_netdev(sizeof(*priv), wc->board_name, ether_setup);
|
||||
#endif
|
||||
|
||||
if (!netdev)
|
||||
return -ENOMEM;
|
||||
priv = netdev_priv(netdev);
|
||||
@@ -2013,14 +2020,16 @@ wctc4xxp_disable_polling(struct wcdte *wc)
|
||||
|
||||
static void wctc4xxp_check_for_rx_errors(struct wcdte *wc)
|
||||
{
|
||||
static unsigned long last_errors = 0;
|
||||
/* get_packet_errors() returns the accumulated total errors */
|
||||
unsigned long errors = wctc4xxp_get_packet_errors(wc->rxd);
|
||||
if (last_errors != errors) {
|
||||
|
||||
/* Print warning when the number of errors changes */
|
||||
if (wc->reported_packet_errors != errors) {
|
||||
if (printk_ratelimit()) {
|
||||
dev_err(&wc->pdev->dev,
|
||||
"%lu errored receive packets.\n",
|
||||
errors - last_errors);
|
||||
last_errors = errors;
|
||||
errors - wc->reported_packet_errors);
|
||||
wc->reported_packet_errors = errors;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -3861,6 +3870,7 @@ static int wctc4xxp_reset_driver_state(struct wcdte *wc)
|
||||
release_firmware(firmware);
|
||||
spin_lock_irqsave(&wc->rxd->lock, flags);
|
||||
wc->rxd->packet_errors = 0;
|
||||
wc->reported_packet_errors = 0;
|
||||
spin_unlock_irqrestore(&wc->rxd->lock, flags);
|
||||
return res;
|
||||
}
|
||||
@@ -4099,7 +4109,7 @@ wctc4xxp_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
pci_set_master(pdev);
|
||||
pci_set_drvdata(pdev, wc);
|
||||
res = request_irq(pdev->irq, wctc4xxp_interrupt,
|
||||
DAHDI_IRQ_SHARED, wc->board_name, wc);
|
||||
IRQF_SHARED, wc->board_name, wc);
|
||||
if (res) {
|
||||
dev_err(&wc->pdev->dev,
|
||||
"Unable to request IRQ %d\n", pdev->irq);
|
||||
|
||||
@@ -2684,7 +2684,8 @@ static int __devinit wctdm_init_one(struct pci_dev *pdev, const struct pci_devic
|
||||
/* Keep track of which device we are */
|
||||
pci_set_drvdata(pdev, wc);
|
||||
|
||||
if (request_irq(pdev->irq, wctdm_interrupt, DAHDI_IRQ_SHARED, "wctdm", wc)) {
|
||||
if (request_irq(pdev->irq, wctdm_interrupt,
|
||||
IRQF_SHARED, "wctdm", wc)) {
|
||||
printk(KERN_NOTICE "wctdm: Unable to request IRQ %d\n", pdev->irq);
|
||||
if (wc->freeregion)
|
||||
release_region(wc->ioaddr, 0xff);
|
||||
|
||||
@@ -1351,6 +1351,8 @@ DAHDI_IRQ_HANDLER(t1xxp_interrupt)
|
||||
if (!ints)
|
||||
return IRQ_NONE;
|
||||
|
||||
local_irq_save(flags);
|
||||
|
||||
outb(ints, wc->ioaddr + WC_INTSTAT);
|
||||
|
||||
if (!wc->intcount) {
|
||||
@@ -1365,13 +1367,13 @@ DAHDI_IRQ_HANDLER(t1xxp_interrupt)
|
||||
t1xxp_receiveprep(wc, ints);
|
||||
t1xxp_transmitprep(wc, ints);
|
||||
}
|
||||
spin_lock_irqsave(&wc->lock, flags);
|
||||
spin_lock(&wc->lock);
|
||||
|
||||
#if 1
|
||||
__handle_leds(wc);
|
||||
#endif
|
||||
|
||||
spin_unlock_irqrestore(&wc->lock, flags);
|
||||
spin_unlock(&wc->lock);
|
||||
|
||||
/* Count down timers */
|
||||
t1_do_counters(wc);
|
||||
@@ -1398,6 +1400,7 @@ DAHDI_IRQ_HANDLER(t1xxp_interrupt)
|
||||
if (ints & 0x20)
|
||||
printk(KERN_NOTICE "PCI Target abort\n");
|
||||
|
||||
local_irq_restore(flags);
|
||||
return IRQ_RETVAL(1);
|
||||
}
|
||||
|
||||
@@ -1534,7 +1537,8 @@ static int __devinit t1xxp_init_one(struct pci_dev *pdev, const struct pci_devic
|
||||
/* Keep track of which device we are */
|
||||
pci_set_drvdata(pdev, wc);
|
||||
|
||||
if (request_irq(pdev->irq, t1xxp_interrupt, DAHDI_IRQ_SHARED_DISABLED, "wcte11xp", wc)) {
|
||||
if (request_irq(pdev->irq, t1xxp_interrupt,
|
||||
IRQF_SHARED, "wcte11xp", wc)) {
|
||||
printk(KERN_NOTICE "wcte11xp: Unable to request IRQ %d\n", pdev->irq);
|
||||
kfree(wc);
|
||||
return -EIO;
|
||||
|
||||
@@ -2110,7 +2110,7 @@ static int t1xxp_set_linemode(struct dahdi_span *span, enum spantypes linemode)
|
||||
* them. */
|
||||
clear_bit(INITIALIZED, &wc->bit_flags);
|
||||
synchronize_irq(wc->vb.pdev->irq);
|
||||
smp_mb__after_clear_bit();
|
||||
smp_mb__after_atomic();
|
||||
del_timer_sync(&wc->timer);
|
||||
flush_workqueue(wc->wq);
|
||||
|
||||
@@ -3076,7 +3076,7 @@ static void __devexit te12xp_remove_one(struct pci_dev *pdev)
|
||||
remove_sysfs_files(wc);
|
||||
|
||||
clear_bit(INITIALIZED, &wc->bit_flags);
|
||||
smp_mb__after_clear_bit();
|
||||
smp_mb__after_atomic();
|
||||
|
||||
del_timer_sync(&wc->timer);
|
||||
flush_workqueue(wc->wq);
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
|
||||
static const char *TE133_FW_FILENAME = "dahdi-fw-te133.bin";
|
||||
static const char *TE134_FW_FILENAME = "dahdi-fw-te134.bin";
|
||||
static const u32 TE133_FW_VERSION = 0x780019;
|
||||
static const u32 TE133_FW_VERSION = 0x7a001e;
|
||||
static const u32 TE134_FW_VERSION = 0x780017;
|
||||
|
||||
#define WC_MAX_IFACES 8
|
||||
@@ -1316,6 +1316,10 @@ static int t13x_startup(struct file *file, struct dahdi_span *span)
|
||||
/* Reset framer with proper parameters and start */
|
||||
t13x_framer_start(wc);
|
||||
|
||||
/* Reset span alarm state to RED to prevent false
|
||||
* temporary GREEN state on span bringup */
|
||||
span->alarms |= DAHDI_ALARM_RED;
|
||||
|
||||
/* Do we want to SYNC on receive or not. This must always happen after
|
||||
* the framer is fully reset. */
|
||||
wcxb_set_clksrc(&wc->xb,
|
||||
@@ -1845,7 +1849,7 @@ static int t13x_set_linemode(struct dahdi_span *span, enum spantypes linemode)
|
||||
clear_bit(INITIALIZED, &wc->bit_flags);
|
||||
disable_irq(wc->xb.pdev->irq);
|
||||
|
||||
smp_mb__after_clear_bit();
|
||||
smp_mb__after_atomic();
|
||||
del_timer_sync(&wc->timer);
|
||||
flush_workqueue(wc->wq);
|
||||
|
||||
@@ -2721,7 +2725,7 @@ static void __devexit te13xp_remove_one(struct pci_dev *pdev)
|
||||
return;
|
||||
|
||||
clear_bit(INITIALIZED, &wc->bit_flags);
|
||||
smp_mb__after_clear_bit();
|
||||
smp_mb__after_atomic();
|
||||
|
||||
/* Quiesce DMA engine interrupts */
|
||||
wcxb_stop(&wc->xb);
|
||||
|
||||
@@ -65,7 +65,9 @@ static inline int delayed_work_pending(struct work_struct *work)
|
||||
#endif
|
||||
|
||||
static const char *TE435_FW_FILENAME = "dahdi-fw-te435.bin";
|
||||
static const u32 TE435_VERSION = 0xe0019;
|
||||
static const char *TE436_FW_FILENAME = "dahdi-fw-te436.bin";
|
||||
static const u32 TE435_VERSION = 0x13001e;
|
||||
static const u32 TE436_VERSION = 0x10017;
|
||||
|
||||
/* #define RPC_RCLK */
|
||||
|
||||
@@ -794,6 +796,8 @@ struct t43x_desc {
|
||||
|
||||
static const struct t43x_desc te435 = {"Wildcard TE435"}; /* pci express quad */
|
||||
static const struct t43x_desc te235 = {"Wildcard TE235"}; /* pci express dual */
|
||||
static const struct t43x_desc te436 = {"Wildcard TE436"}; /* pci quad */
|
||||
static const struct t43x_desc te236 = {"Wildcard TE236"}; /* pci dual */
|
||||
|
||||
static int __t43x_pci_get(struct t43x *wc, unsigned int addr)
|
||||
{
|
||||
@@ -1762,6 +1766,10 @@ static void t43x_framer_start(struct t43x *wc)
|
||||
t43x_set_cas_mode(wc, unit);
|
||||
|
||||
set_bit(DAHDI_FLAGBIT_RUNNING, &ts->span.flags);
|
||||
|
||||
/* Reset span alarm state to RED to prevent false
|
||||
* temporary GREEN state on span bringup */
|
||||
ts->span.alarms |= DAHDI_ALARM_RED;
|
||||
}
|
||||
|
||||
for (unit = 0; unit < wc->numspans; unit++) {
|
||||
@@ -3449,12 +3457,6 @@ static int __devinit t43x_init_one(struct pci_dev *pdev,
|
||||
goto fail_exit;
|
||||
}
|
||||
|
||||
/* Check for field updatable firmware */
|
||||
res = wcxb_check_firmware(&wc->xb, TE435_VERSION,
|
||||
TE435_FW_FILENAME, force_firmware, WCXB_RESET_NOW);
|
||||
if (res)
|
||||
goto fail_exit;
|
||||
|
||||
wc->ddev->hardware_id = t43x_read_serial(wc);
|
||||
|
||||
if (wc->ddev->hardware_id == NULL) {
|
||||
@@ -3464,11 +3466,21 @@ static int __devinit t43x_init_one(struct pci_dev *pdev,
|
||||
}
|
||||
|
||||
if (strncmp(wc->ddev->hardware_id, "1TE435F", 7) == 0) {
|
||||
/* Quad-span PCIE */
|
||||
wc->numspans = 4;
|
||||
wc->devtype = &te435;
|
||||
} else if (strncmp(wc->ddev->hardware_id, "1TE235F", 7) == 0) {
|
||||
/* Dual-span PCIE */
|
||||
wc->numspans = 2;
|
||||
wc->devtype = &te235;
|
||||
} else if (strncmp(wc->ddev->hardware_id, "1TE436F", 7) == 0) {
|
||||
/* Quad-span PCI */
|
||||
wc->numspans = 4;
|
||||
wc->devtype = &te436;
|
||||
} else if (strncmp(wc->ddev->hardware_id, "1TE236F", 7) == 0) {
|
||||
/* Dual-span PCI */
|
||||
wc->numspans = 2;
|
||||
wc->devtype = &te236;
|
||||
} else {
|
||||
dev_info(&wc->xb.pdev->dev,
|
||||
"Unable to identify board type from serial number %s\n",
|
||||
@@ -3477,6 +3489,20 @@ static int __devinit t43x_init_one(struct pci_dev *pdev,
|
||||
goto fail_exit;
|
||||
}
|
||||
|
||||
/* Check for field updatable firmware */
|
||||
if ((wc->devtype == &te435) || (wc->devtype == &te235)) {
|
||||
res = wcxb_check_firmware(&wc->xb, TE435_VERSION,
|
||||
TE435_FW_FILENAME, force_firmware, WCXB_RESET_NOW);
|
||||
} else if ((wc->devtype == &te436) || (wc->devtype == &te236)) {
|
||||
res = wcxb_check_firmware(&wc->xb, TE436_VERSION,
|
||||
TE436_FW_FILENAME, force_firmware, WCXB_RESET_NOW);
|
||||
} else {
|
||||
res = -EIO;
|
||||
}
|
||||
|
||||
if (res)
|
||||
goto fail_exit;
|
||||
|
||||
for (x = 0; x < wc->numspans; x++) {
|
||||
ts = kzalloc(sizeof(*wc->tspans[x]), GFP_KERNEL);
|
||||
if (!ts) {
|
||||
@@ -3555,7 +3581,7 @@ static void __devexit t43x_remove_one(struct pci_dev *pdev)
|
||||
return;
|
||||
|
||||
wc->not_ready = 1;
|
||||
smp_mb__after_clear_bit();
|
||||
smp_mb__after_atomic();
|
||||
|
||||
/* Stop everything */
|
||||
wcxb_stop(&wc->xb);
|
||||
@@ -3595,6 +3621,7 @@ static void __devexit t43x_remove_one(struct pci_dev *pdev)
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(t43x_pci_tbl) = {
|
||||
{ 0xd161, 0x800e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
|
||||
{ 0xd161, 0x8013, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
|
||||
{ 0 }
|
||||
};
|
||||
|
||||
|
||||
@@ -66,7 +66,6 @@
|
||||
#define DRING_SIZE_MASK (DRING_SIZE-1)
|
||||
#define DESC_EOR (1 << 0)
|
||||
#define DESC_INT (1 << 1)
|
||||
#define DESC_IO_ERROR (1 << 30)
|
||||
#define DESC_OWN (1 << 31)
|
||||
#define DESC_DEFAULT_STATUS 0xdeadbe00
|
||||
#define DMA_CHAN_SIZE 128
|
||||
@@ -358,45 +357,25 @@ static void _wcxb_reset_dring(struct wcxb *xb)
|
||||
hdesc->control |= cpu_to_be32(DESC_EOR);
|
||||
#ifdef DEBUG
|
||||
xb->last_retry_count = 0;
|
||||
xb->max_retry_count = 0;
|
||||
xb->last_dma_time = 0;
|
||||
xb->max_dma_time = 0;
|
||||
#endif
|
||||
iowrite32be(xb->hw_dring_phys, xb->membase + TDM_DRING_ADDR);
|
||||
}
|
||||
|
||||
static void wcxb_handle_dma(struct wcxb *xb)
|
||||
{
|
||||
#ifdef DEBUG
|
||||
bool did_retry_dma = false;
|
||||
u8 retry;
|
||||
#endif
|
||||
struct wcxb_meta_desc *mdesc;
|
||||
struct wcxb_hw_desc *tail = &(xb->hw_dring[xb->dma_tail]);
|
||||
|
||||
while (!(tail->control & cpu_to_be32(DESC_OWN))) {
|
||||
u_char *frame;
|
||||
|
||||
if (tail->control & cpu_to_be32(DESC_IO_ERROR)) {
|
||||
u32 ier;
|
||||
unsigned long flags;
|
||||
|
||||
/* The firmware detected an error condition on the bus.
|
||||
* Force an underrun by disabling the descriptor
|
||||
* complete interrupt. When the driver processes the
|
||||
* underrun it will reset the TDM engine. */
|
||||
xb->flags.io_error = 1;
|
||||
|
||||
spin_lock_irqsave(&xb->lock, flags);
|
||||
ier = ioread32be(xb->membase + IER);
|
||||
iowrite32be(ier & ~DESC_COMPLETE, xb->membase + IER);
|
||||
spin_unlock_irqrestore(&xb->lock, flags);
|
||||
return;
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
retry = be32_to_cpu(tail->status) & 0xff;
|
||||
if (xb->last_retry_count != retry) {
|
||||
xb->last_retry_count = retry;
|
||||
did_retry_dma = true;
|
||||
}
|
||||
xb->last_retry_count =
|
||||
((be32_to_cpu(tail->control) & 0x0000ff00) >> 8);
|
||||
xb->last_dma_time = (be32_to_cpu(tail->status));
|
||||
#endif
|
||||
|
||||
mdesc = &xb->meta_dring[xb->dma_tail];
|
||||
@@ -420,9 +399,17 @@ static void wcxb_handle_dma(struct wcxb *xb)
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
if (did_retry_dma) {
|
||||
if (xb->last_retry_count > xb->max_retry_count) {
|
||||
xb->max_retry_count = xb->last_retry_count;
|
||||
dev_info(&xb->pdev->dev,
|
||||
"DMA retries detected: %d\n", xb->last_retry_count);
|
||||
"New DMA max retries detected: %d\n",
|
||||
xb->max_retry_count);
|
||||
}
|
||||
if (xb->last_dma_time > xb->max_dma_time) {
|
||||
xb->max_dma_time = xb->last_dma_time;
|
||||
dev_info(&xb->pdev->dev,
|
||||
"New DMA max transfer time detected: %d\n",
|
||||
xb->max_dma_time);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
@@ -451,14 +438,7 @@ static irqreturn_t _wcxb_isr(int irq, void *dev_id)
|
||||
|
||||
spin_lock(&xb->lock);
|
||||
|
||||
if (xb->flags.io_error) {
|
||||
/* Since an IO error is not necessarily because
|
||||
* the host could not keep up, we do not want to
|
||||
* bump the latency. */
|
||||
xb->flags.io_error = 0;
|
||||
dev_warn(&xb->pdev->dev,
|
||||
"IO error reported by firmware.\n");
|
||||
} else if (!xb->flags.latency_locked) {
|
||||
if (!xb->flags.latency_locked) {
|
||||
/* bump latency */
|
||||
|
||||
xb->latency = min(xb->latency + 1,
|
||||
@@ -705,7 +685,7 @@ int wcxb_init(struct wcxb *xb, const char *board_name, u32 int_mode)
|
||||
xb->flags.have_msi = (int_mode) ? 0 : (0 == pci_enable_msi(pdev));
|
||||
|
||||
if (request_irq(pdev->irq, wcxb_isr,
|
||||
(xb->flags.have_msi) ? 0 : DAHDI_IRQ_SHARED,
|
||||
(xb->flags.have_msi) ? 0 : IRQF_SHARED,
|
||||
board_name, xb)) {
|
||||
dev_notice(&xb->pdev->dev, "Unable to request IRQ %d\n",
|
||||
pdev->irq);
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#define __WCXB_H__
|
||||
|
||||
#define WCXB_DEFAULT_LATENCY 3U
|
||||
#define WCXB_DEFAULT_MAXLATENCY 20U
|
||||
#define WCXB_DEFAULT_MAXLATENCY 12U
|
||||
#define WCXB_DMA_CHAN_SIZE 128
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 24)
|
||||
@@ -66,7 +66,7 @@ struct wcxb {
|
||||
#ifdef WCXB_PCI_DEV_DOES_NOT_HAVE_IS_PCIE
|
||||
u32 is_pcie:1;
|
||||
#endif
|
||||
u32 io_error:1;
|
||||
u32 dma_ins:1;
|
||||
} flags;
|
||||
void __iomem *membase;
|
||||
struct wcxb_meta_desc *meta_dring;
|
||||
@@ -78,6 +78,9 @@ struct wcxb {
|
||||
unsigned long framecount;
|
||||
#ifdef DEBUG
|
||||
u8 last_retry_count;
|
||||
u8 max_retry_count;
|
||||
u32 last_dma_time;
|
||||
u32 max_dma_time;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
@@ -2399,11 +2399,11 @@ static DEVICE_ATTR_WRITER(pri_protocol_store, dev, buf, count)
|
||||
buf, i);
|
||||
return -EINVAL;
|
||||
}
|
||||
if (strnicmp(buf, "E1", 2) == 0)
|
||||
if (strncasecmp(buf, "E1", 2) == 0)
|
||||
new_protocol = PRI_PROTO_E1;
|
||||
else if (strnicmp(buf, "T1", 2) == 0)
|
||||
else if (strncasecmp(buf, "T1", 2) == 0)
|
||||
new_protocol = PRI_PROTO_T1;
|
||||
else if (strnicmp(buf, "J1", 2) == 0)
|
||||
else if (strncasecmp(buf, "J1", 2) == 0)
|
||||
new_protocol = PRI_PROTO_J1;
|
||||
else {
|
||||
XPD_NOTICE(xpd,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -20,7 +20,12 @@ install:
|
||||
mkdir -p $(TARGET)
|
||||
install $(SCRIPTS) $(TARGET)/
|
||||
install -m 644 ../XppConfig.pm $(FIRMWARES) $(TARGET)/
|
||||
if [ ! -r $(TARGET)/USB_FW.202.hex ]; then \
|
||||
ln -s USB_FW.201.hex $(TARGET)/USB_FW.202.hex;\
|
||||
for id in 202 203; do \
|
||||
if [ ! -r $(TARGET)/USB_FW.$$id.hex ]; then \
|
||||
ln -s USB_FW.201.hex $(TARGET)/USB_FW.$$id.hex;\
|
||||
fi; \
|
||||
done
|
||||
if [ ! -r $(TARGET)/FPGA_1161.203.hex ]; then \
|
||||
ln -s FPGA_1161.201.hex $(TARGET)/FPGA_1161.203.hex;\
|
||||
fi
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# $Id: USB_FW.201.hex 10402 2012-02-15 15:34:50Z dima $
|
||||
# $Id: USB_FW.201.hex 11453 2015-03-29 18:27:25Z dima $
|
||||
#
|
||||
:03004300021F0099
|
||||
:03005300021F0089
|
||||
@@ -27,7 +27,7 @@
|
||||
:050FF6000300000000F3
|
||||
:100F3C0041E0370041E0B60042E0B1000041E0384A
|
||||
:100F4C0000021BE0850218E07943E0B30000004D7D
|
||||
:0F0F5C00E03931303339354D202020202020005E
|
||||
:0F0F5C00E03931313435314D2020202020200064
|
||||
:101D71008B538A548955E5581558AE57700215573B
|
||||
:101D81004E6014AB530555E555AA54700205541421
|
||||
:081D9100F9ED12077780DF2253
|
||||
@@ -164,7 +164,7 @@
|
||||
:100B7E00AB45AA46A9477401120777E4F550E55034
|
||||
:100B8E00C454F0AB45AA46A94790000112078985C7
|
||||
:100B9E004858854959854A5A755B08121A95AB48CB
|
||||
:100BAE00AA49A94A90000212074AFE5403FFEE54C6
|
||||
:100BAE00AA49A94A90000212074AFE5407FFEE54C2
|
||||
:100BBE0070F55124E0602924F0604B24F0605D2430
|
||||
:100BCE00F0606F24406003020C5675410185184297
|
||||
:100BDE00851943EF24FE600624FE703B801C801FA7
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# $Id: USB_FW.hex 10401 2012-02-15 15:30:24Z dima $
|
||||
# $Id: USB_FW.hex 11452 2015-03-29 18:21:13Z dima $
|
||||
#
|
||||
:03004300021F0099
|
||||
:03005300021F0089
|
||||
@@ -27,7 +27,7 @@
|
||||
:051EF1000300000000E9
|
||||
:1011F50041E0370041E0B70042E0B2000041E0388D
|
||||
:1012050000021BE0860218E07A43E0B40000004EBD
|
||||
:10121500E03931303339354D502020202020200051
|
||||
:10121500E03931313435314D502020202020200057
|
||||
:101D9A008B518A528953E5561556AE557002155520
|
||||
:101DAA004E6014AB510553E553AA52700205521402
|
||||
:081DBA00F9ED12077180DF2230
|
||||
@@ -165,7 +165,7 @@
|
||||
:100B7800AB43AA44A9457401120771E4F54EE54E4A
|
||||
:100B8800C454F0AB43AA44A94590000112078385D9
|
||||
:100B98004656854757854858755908121A94AB46E2
|
||||
:100BA800AA47A948900002120744FE5403FFEE54D6
|
||||
:100BA800AA47A948900002120744FE5407FFEE54D2
|
||||
:100BB80070F54F24E0602924F0604B24F0605D2438
|
||||
:100BC800F0606F24406003020C50753F01851840A7
|
||||
:100BD800851941EF24FE600624FE703B801C801FAF
|
||||
|
||||
@@ -80,7 +80,8 @@ static const xproto_table_t *xproto_table(xpd_type_t cardtype)
|
||||
return xprotocol_tables[cardtype];
|
||||
}
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 3, 0)
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 3, 0) || \
|
||||
LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0)
|
||||
#define MODULE_REFCOUNT_FORMAT "%s refcount was %d\n"
|
||||
#else
|
||||
#define MODULE_REFCOUNT_FORMAT "%s refcount was %lu\n"
|
||||
|
||||
@@ -76,10 +76,6 @@
|
||||
#define HAVE_NET_DEVICE_OPS
|
||||
#endif
|
||||
|
||||
#define DAHDI_IRQ_SHARED IRQF_SHARED
|
||||
#define DAHDI_IRQ_DISABLED IRQF_DISABLED
|
||||
#define DAHDI_IRQ_SHARED_DISABLED IRQF_SHARED | IRQF_DISABLED
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 26)
|
||||
# ifdef RHEL_RELEASE_VERSION
|
||||
# if RHEL_RELEASE_CODE < RHEL_RELEASE_VERSION(5, 6)
|
||||
@@ -1408,6 +1404,17 @@ static inline short dahdi_txtone_nextsample(struct dahdi_chan *ss)
|
||||
/*! Maximum audio mask */
|
||||
#define DAHDI_FORMAT_AUDIO_MASK ((1 << 16) - 1)
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 16, 0)
|
||||
|
||||
/* DAHDI only was using the xxx_clear_bit variants. */
|
||||
#ifndef smp_mb__before_atomic
|
||||
#define smp_mb__before_atomic smp_mb__before_clear_bit
|
||||
#endif
|
||||
|
||||
#ifndef smp_mb__after_atomic
|
||||
#define smp_mb__after_atomic smp_mb__after_clear_bit
|
||||
#endif
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 10, 0)
|
||||
#ifdef RHEL_RELEASE_VERSION
|
||||
#if RHEL_RELEASE_CODE < RHEL_RELEASE_VERSION(6, 5)
|
||||
@@ -1491,6 +1498,8 @@ void dahdi_pci_disable_link_state(struct pci_dev *pdev, int state);
|
||||
#define list_first_entry(ptr, type, member) \
|
||||
list_entry((ptr)->next, type, member)
|
||||
|
||||
#define strncasecmp strnicmp
|
||||
|
||||
#ifndef __packed
|
||||
#define __packed __attribute__((packed))
|
||||
#endif
|
||||
@@ -1523,6 +1532,7 @@ static inline int strcasecmp(const char *s1, const char *s2)
|
||||
#endif /* 2.6.27 */
|
||||
#endif /* 2.6.31 */
|
||||
#endif /* 3.10.0 */
|
||||
#endif /* 3.16.0 */
|
||||
|
||||
#ifndef DEFINE_SPINLOCK
|
||||
#define DEFINE_SPINLOCK(x) spinlock_t x = SPIN_LOCK_UNLOCKED
|
||||
@@ -1653,9 +1663,11 @@ struct mutex {
|
||||
chan_printk(DEBUG, "-" #bits, chan, \
|
||||
"%s: " fmt, __func__, ## __VA_ARGS__)))
|
||||
#define dahdi_dev_dbg(bits, dev, fmt, ...) \
|
||||
((void)((debug & (DAHDI_DBG_ ## bits)) && \
|
||||
do { if (debug & (DAHDI_DBG_ ## bits)) { \
|
||||
dev_printk(KERN_DEBUG, dev, \
|
||||
"DBG-%s(%s): " fmt, #bits, __func__, ## __VA_ARGS__)))
|
||||
"DBG-%s(%s): " fmt, #bits, __func__, ## __VA_ARGS__); \
|
||||
} } while (0)
|
||||
|
||||
#endif /* DAHDI_PRINK_MACROS_USE_debug */
|
||||
|
||||
#endif /* _DAHDI_KERNEL_H */
|
||||
|
||||
Reference in New Issue
Block a user