Commit 4aa323bd authored by Philipp Zabel's avatar Philipp Zabel Committed by Linus Torvalds

DS1WM: decouple host IRQ and INTR active state settings

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: default avatarPhilipp Zabel <philipp.zabel@gmail.com>
Acked-by: default avatarEvgeniy Polyakov <johnpol@2ka.mipt.ru>
Acked-by: default avatarMatt Reimer <mreimer@vpop.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent eccba068
...@@ -361,11 +361,12 @@ static int ds1wm_probe(struct platform_device *pdev) ...@@ -361,11 +361,12 @@ static int ds1wm_probe(struct platform_device *pdev)
goto err1; goto err1;
} }
ds1wm_data->irq = res->start; ds1wm_data->irq = res->start;
ds1wm_data->active_high = (res->flags & IORESOURCE_IRQ_HIGHEDGE) ? ds1wm_data->active_high = plat->active_high;
1 : 0;
set_irq_type(ds1wm_data->irq, ds1wm_data->active_high ? if (res->flags & IORESOURCE_IRQ_HIGHEDGE)
IRQ_TYPE_EDGE_RISING : IRQ_TYPE_EDGE_FALLING); 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, ret = request_irq(ds1wm_data->irq, ds1wm_isr, IRQF_DISABLED,
"ds1wm", ds1wm_data); "ds1wm", ds1wm_data);
......
...@@ -6,6 +6,7 @@ struct ds1wm_platform_data { ...@@ -6,6 +6,7 @@ struct ds1wm_platform_data {
* e.g. on h5xxx and h2200 this is 2 * e.g. on h5xxx and h2200 this is 2
* (registers aligned to 4-byte boundaries), * (registers aligned to 4-byte boundaries),
* while on hx4700 this is 1 */ * while on hx4700 this is 1 */
int active_high;
void (*enable)(struct platform_device *pdev); void (*enable)(struct platform_device *pdev);
void (*disable)(struct platform_device *pdev); void (*disable)(struct platform_device *pdev);
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment