Skip to content

Commit

Permalink
DS1WM: decouple host IRQ and INTR active state settings
Browse files Browse the repository at this point in the history
The DS1WM driver incorrectly infers the IAS bit (1-wire interrupt active
high) from IRQ settings.  There are devices that have IAS=0 but still need
the IRQ to trigger on a rising edge.  With this patch, machines with DS1WM
that need IAS=1 have to set .active_high=1 in the ds1wm_platform_data.

Signed-off-by: Philipp Zabel <[email protected]>
Acked-by: Evgeniy Polyakov <[email protected]>
Acked-by: Matt Reimer <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
pH5 authored and Linus Torvalds committed Feb 7, 2008
1 parent eccba06 commit 4aa323b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 5 additions & 4 deletions drivers/w1/masters/ds1wm.c
Original file line number Diff line number Diff line change
Expand Up @@ -361,11 +361,12 @@ static int ds1wm_probe(struct platform_device *pdev)
goto err1;
}
ds1wm_data->irq = res->start;
ds1wm_data->active_high = (res->flags & IORESOURCE_IRQ_HIGHEDGE) ?
1 : 0;
ds1wm_data->active_high = plat->active_high;

set_irq_type(ds1wm_data->irq, ds1wm_data->active_high ?
IRQ_TYPE_EDGE_RISING : IRQ_TYPE_EDGE_FALLING);
if (res->flags & IORESOURCE_IRQ_HIGHEDGE)
set_irq_type(ds1wm_data->irq, IRQ_TYPE_EDGE_RISING);
if (res->flags & IORESOURCE_IRQ_LOWEDGE)
set_irq_type(ds1wm_data->irq, IRQ_TYPE_EDGE_FALLING);

ret = request_irq(ds1wm_data->irq, ds1wm_isr, IRQF_DISABLED,
"ds1wm", ds1wm_data);
Expand Down
1 change: 1 addition & 0 deletions include/linux/ds1wm.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ struct ds1wm_platform_data {
* e.g. on h5xxx and h2200 this is 2
* (registers aligned to 4-byte boundaries),
* while on hx4700 this is 1 */
int active_high;
void (*enable)(struct platform_device *pdev);
void (*disable)(struct platform_device *pdev);
};

0 comments on commit 4aa323b

Please sign in to comment.