Skip to content

Commit

Permalink
ide: allow host drivers to specify IRQ flags
Browse files Browse the repository at this point in the history
* Add ->irq_flags field to struct ide_port_info and struct ide_host.

* Update host drivers and IDE PCI code to use ->irq_flags field.

* Convert init_irq() and ide_intr() to use host->irq_flags.

This fixes handling of shared IRQs for non-PCI hosts
and removes ugly ifdeffery from core IDE code.

Signed-off-by: Bartlomiej Zolnierkiewicz <[email protected]>
  • Loading branch information
bzolnier committed Mar 27, 2009
1 parent c7db966 commit 255115f
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 21 deletions.
1 change: 1 addition & 0 deletions drivers/ide/buddha.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ static void __init buddha_setup_ports(hw_regs_t *hw, unsigned long base,

static const struct ide_port_info buddha_port_info = {
.host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA,
.irq_flags = IRQF_SHARED,
};

/*
Expand Down
1 change: 1 addition & 0 deletions drivers/ide/delkin_cb.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ static const struct ide_port_info delkin_cb_port_info = {
.port_ops = &delkin_cb_port_ops,
.host_flags = IDE_HFLAG_IO_32BIT | IDE_HFLAG_UNMASK_IRQS |
IDE_HFLAG_NO_DMA,
.irq_flags = IRQF_SHARED,
.init_chipset = delkin_cb_init_chipset,
};

Expand Down
1 change: 1 addition & 0 deletions drivers/ide/falconide.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ static const struct ide_port_info falconide_port_info = {
.tp_ops = &falconide_tp_ops,
.host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_SERIALIZE |
IDE_HFLAG_NO_DMA,
.irq_flags = IRQF_SHARED,
};

static void __init falconide_setup_ports(hw_regs_t *hw)
Expand Down
1 change: 1 addition & 0 deletions drivers/ide/gayle.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ static void __init gayle_setup_ports(hw_regs_t *hw, unsigned long base,
static const struct ide_port_info gayle_port_info = {
.host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_SERIALIZE |
IDE_HFLAG_NO_DMA,
.irq_flags = IRQF_SHARED,
};

/*
Expand Down
1 change: 1 addition & 0 deletions drivers/ide/ide-cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ static const struct ide_port_ops idecs_port_ops = {
static const struct ide_port_info idecs_port_info = {
.port_ops = &idecs_port_ops,
.host_flags = IDE_HFLAG_NO_DMA,
.irq_flags = IRQF_SHARED,
};

static struct ide_host *idecs_register(unsigned long io, unsigned long ctl,
Expand Down
15 changes: 4 additions & 11 deletions drivers/ide/ide-io.c
Original file line number Diff line number Diff line change
Expand Up @@ -841,15 +841,16 @@ static void unexpected_intr(int irq, ide_hwif_t *hwif)
irqreturn_t ide_intr (int irq, void *dev_id)
{
ide_hwif_t *hwif = (ide_hwif_t *)dev_id;
struct ide_host *host = hwif->host;
ide_drive_t *uninitialized_var(drive);
ide_handler_t *handler;
unsigned long flags;
ide_startstop_t startstop;
irqreturn_t irq_ret = IRQ_NONE;
int plug_device = 0;

if (hwif->host->host_flags & IDE_HFLAG_SERIALIZE) {
if (hwif != hwif->host->cur_port)
if (host->host_flags & IDE_HFLAG_SERIALIZE) {
if (hwif != host->cur_port)
goto out_early;
}

Expand All @@ -872,27 +873,19 @@ irqreturn_t ide_intr (int irq, void *dev_id)
*
* For PCI, we cannot tell the difference,
* so in that case we just ignore it and hope it goes away.
*
* FIXME: unexpected_intr should be hwif-> then we can
* remove all the ifdef PCI crap
*/
#ifdef CONFIG_BLK_DEV_IDEPCI
if (hwif->chipset != ide_pci)
#endif /* CONFIG_BLK_DEV_IDEPCI */
{
if ((host->irq_flags & IRQF_SHARED) == 0) {
/*
* Probably not a shared PCI interrupt,
* so we can safely try to do something about it:
*/
unexpected_intr(irq, hwif);
#ifdef CONFIG_BLK_DEV_IDEPCI
} else {
/*
* Whack the status register, just in case
* we have a leftover pending IRQ.
*/
(void)hwif->tp_ops->read_status(hwif);
#endif /* CONFIG_BLK_DEV_IDEPCI */
}
goto out;
}
Expand Down
13 changes: 3 additions & 10 deletions drivers/ide/ide-probe.c
Original file line number Diff line number Diff line change
Expand Up @@ -837,20 +837,13 @@ static int ide_port_setup_devices(ide_hwif_t *hwif)
static int init_irq (ide_hwif_t *hwif)
{
struct ide_io_ports *io_ports = &hwif->io_ports;
irq_handler_t irq_handler;
int sa = 0;
struct ide_host *host = hwif->host;
irq_handler_t irq_handler = host->irq_handler;
int sa = host->irq_flags;

irq_handler = hwif->host->irq_handler;
if (irq_handler == NULL)
irq_handler = ide_intr;

#if defined(__mc68000__)
sa = IRQF_SHARED;
#endif /* __mc68000__ */

if (hwif->chipset == ide_pci)
sa = IRQF_SHARED;

if (io_ports->ctl_addr)
hwif->tp_ops->set_irq(hwif, 1);

Expand Down
1 change: 1 addition & 0 deletions drivers/ide/macide.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ static void __init macide_setup_ports(hw_regs_t *hw, unsigned long base,

static const struct ide_port_info macide_port_info = {
.host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA,
.irq_flags = IRQF_SHARED,
};

static const char *mac_ide_name[] =
Expand Down
1 change: 1 addition & 0 deletions drivers/ide/q40ide.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ static const struct ide_tp_ops q40ide_tp_ops = {
static const struct ide_port_info q40ide_port_info = {
.tp_ops = &q40ide_tp_ops,
.host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA,
.irq_flags = IRQF_SHARED,
};

/*
Expand Down
1 change: 1 addition & 0 deletions drivers/ide/scc_pata.c
Original file line number Diff line number Diff line change
Expand Up @@ -891,6 +891,7 @@ static const struct ide_port_info scc_chipset __devinitdata = {
.port_ops = &scc_port_ops,
.dma_ops = &scc_dma_ops,
.host_flags = IDE_HFLAG_SINGLE,
.irq_flags = IRQF_SHARED,
.pio_mask = ATA_PIO4,
};

Expand Down
4 changes: 4 additions & 0 deletions drivers/ide/setup-pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,8 @@ int ide_pci_init_one(struct pci_dev *dev, const struct ide_port_info *d,

host->host_priv = priv;

host->irq_flags = IRQF_SHARED;

pci_set_drvdata(dev, host);

ret = do_ide_setup_pci_device(dev, d, 1);
Expand Down Expand Up @@ -606,6 +608,8 @@ int ide_pci_init_two(struct pci_dev *dev1, struct pci_dev *dev2,

host->host_priv = priv;

host->irq_flags = IRQF_SHARED;

pci_set_drvdata(pdev[0], host);
pci_set_drvdata(pdev[1], host);

Expand Down
1 change: 1 addition & 0 deletions drivers/ide/sgiioc4.c
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,7 @@ static const struct ide_port_info sgiioc4_port_info __devinitconst = {
.port_ops = &sgiioc4_port_ops,
.dma_ops = &sgiioc4_dma_ops,
.host_flags = IDE_HFLAG_MMIO,
.irq_flags = IRQF_SHARED,
.mwdma_mask = ATA_MWDMA2_ONLY,
};

Expand Down
6 changes: 6 additions & 0 deletions include/linux/ide.h
Original file line number Diff line number Diff line change
Expand Up @@ -839,6 +839,9 @@ struct ide_host {
irq_handler_t irq_handler;

unsigned long host_flags;

int irq_flags;

void *host_priv;
ide_hwif_t *cur_port; /* for hosts requiring serialization */

Expand Down Expand Up @@ -1371,6 +1374,9 @@ struct ide_port_info {
u16 max_sectors; /* if < than the default one */

u32 host_flags;

int irq_flags;

u8 pio_mask;
u8 swdma_mask;
u8 mwdma_mask;
Expand Down

0 comments on commit 255115f

Please sign in to comment.