Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 199932
b: refs/heads/master
c: 4387418
h: refs/heads/master
v: v3
  • Loading branch information
Oliver Endriss authored and Mauro Carvalho Chehab committed Jun 1, 2010
1 parent 7e7d3de commit 811b516
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: eb05d155bc9f51ff701c09bc9b5e4b4f5a4b4d9f
refs/heads/master: 4387418129895fd9aa2e2f6368ea69e9c4ddd0f2
33 changes: 32 additions & 1 deletion trunk/drivers/media/dvb/ngene/ngene-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1299,11 +1299,14 @@ static void ngene_stop(struct ngene *dev)
ngwritel(0, NGENE_EVENT);
ngwritel(0, NGENE_EVENT_HI);
free_irq(dev->pci_dev->irq, dev);
if (dev->msi_enabled)
pci_disable_msi(dev->pci_dev);
}

static int ngene_start(struct ngene *dev)
{
int stat;
unsigned long flags;
int i;

pci_set_master(dev->pci_dev);
Expand Down Expand Up @@ -1333,6 +1336,28 @@ static int ngene_start(struct ngene *dev)
if (stat < 0)
goto fail;

#ifdef CONFIG_PCI_MSI
/* enable MSI if kernel and card support it */
if (dev->card_info->msi_supported) {
ngwritel(0, NGENE_INT_ENABLE);
free_irq(dev->pci_dev->irq, dev);
stat = pci_enable_msi(dev->pci_dev);
if (stat) {
printk(KERN_INFO DEVICE_NAME
": MSI not available\n");
flags = IRQF_SHARED;
} else {
flags = 0;
dev->msi_enabled = true;
}
stat = request_irq(dev->pci_dev->irq, irq_handler,
flags, "nGene", dev);
if (stat < 0)
goto fail2;
ngwritel(1, NGENE_INT_ENABLE);
}
#endif

stat = ngene_i2c_init(dev, 0);
if (stat < 0)
goto fail;
Expand All @@ -1358,10 +1383,16 @@ static int ngene_start(struct ngene *dev)
bconf = BUFFER_CONFIG_3333;
stat = ngene_command_config_buf(dev, bconf);
}
return stat;
if (!stat)
return stat;

/* otherwise error: fall through */
fail:
ngwritel(0, NGENE_INT_ENABLE);
free_irq(dev->pci_dev->irq, dev);
fail2:
if (dev->msi_enabled)
pci_disable_msi(dev->pci_dev);
return stat;
}

Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/media/dvb/ngene/ngene.h
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@ struct ngene {
u32 device_version;
u32 fw_interface_version;
u32 icounts;
bool msi_enabled;

u8 *CmdDoneByte;
int BootFirmware;
Expand Down Expand Up @@ -797,6 +798,7 @@ struct ngene_info {
#define NGENE_VBOX_V2 7

int fw_version;
bool msi_supported;
char *name;

int io_type[MAX_STREAM];
Expand Down

0 comments on commit 811b516

Please sign in to comment.