diff options
author | Andy Walls <awalls@md.metrocast.net> | 2010-07-19 00:35:46 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-08-08 22:42:56 -0400 |
commit | e5514f104d875b3d28cbcd5d4f2b96ab2fca1e29 (patch) | |
tree | 8869a2ac0445351e9da7a20304d44d3f5994b3fc /drivers/media/video/cx23885/cx23885-ir.c | |
parent | dbe83a3b921328e12b2abe894fc692afba293d7f (diff) |
V4L/DVB: cx23885: Move AV Core irq handling to a work handler
Interrupts from the AV Core are best handled by a workqueue handler
since many I2C transactions are required to service the AV Core
interrupt. The AV_CORE PCI interrupt is disabled by the IRQ handler
and reenabled when the work handler is finished.
Signed-off-by: Andy Walls <awalls@md.metrocast.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx23885/cx23885-ir.c')
-rw-r--r-- | drivers/media/video/cx23885/cx23885-ir.c | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/drivers/media/video/cx23885/cx23885-ir.c b/drivers/media/video/cx23885/cx23885-ir.c index 6ceabd4fba07..7125247dd255 100644 --- a/drivers/media/video/cx23885/cx23885-ir.c +++ b/drivers/media/video/cx23885/cx23885-ir.c | |||
@@ -72,7 +72,7 @@ void cx23885_ir_tx_work_handler(struct work_struct *work) | |||
72 | 72 | ||
73 | } | 73 | } |
74 | 74 | ||
75 | /* Called in an IRQ context */ | 75 | /* Possibly called in an IRQ context */ |
76 | void cx23885_ir_rx_v4l2_dev_notify(struct v4l2_subdev *sd, u32 events) | 76 | void cx23885_ir_rx_v4l2_dev_notify(struct v4l2_subdev *sd, u32 events) |
77 | { | 77 | { |
78 | struct cx23885_dev *dev = to_cx23885(sd->v4l2_dev); | 78 | struct cx23885_dev *dev = to_cx23885(sd->v4l2_dev); |
@@ -86,10 +86,18 @@ void cx23885_ir_rx_v4l2_dev_notify(struct v4l2_subdev *sd, u32 events) | |||
86 | set_bit(CX23885_IR_RX_HW_FIFO_OVERRUN, notifications); | 86 | set_bit(CX23885_IR_RX_HW_FIFO_OVERRUN, notifications); |
87 | if (events & V4L2_SUBDEV_IR_RX_SW_FIFO_OVERRUN) | 87 | if (events & V4L2_SUBDEV_IR_RX_SW_FIFO_OVERRUN) |
88 | set_bit(CX23885_IR_RX_SW_FIFO_OVERRUN, notifications); | 88 | set_bit(CX23885_IR_RX_SW_FIFO_OVERRUN, notifications); |
89 | schedule_work(&dev->ir_rx_work); | 89 | |
90 | /* | ||
91 | * For the integrated AV core, we are already in a workqueue context. | ||
92 | * For the CX23888 integrated IR, we are in an interrupt context. | ||
93 | */ | ||
94 | if (sd == dev->sd_cx25840) | ||
95 | cx23885_ir_rx_work_handler(&dev->ir_rx_work); | ||
96 | else | ||
97 | schedule_work(&dev->ir_rx_work); | ||
90 | } | 98 | } |
91 | 99 | ||
92 | /* Called in an IRQ context */ | 100 | /* Possibly called in an IRQ context */ |
93 | void cx23885_ir_tx_v4l2_dev_notify(struct v4l2_subdev *sd, u32 events) | 101 | void cx23885_ir_tx_v4l2_dev_notify(struct v4l2_subdev *sd, u32 events) |
94 | { | 102 | { |
95 | struct cx23885_dev *dev = to_cx23885(sd->v4l2_dev); | 103 | struct cx23885_dev *dev = to_cx23885(sd->v4l2_dev); |
@@ -97,5 +105,13 @@ void cx23885_ir_tx_v4l2_dev_notify(struct v4l2_subdev *sd, u32 events) | |||
97 | 105 | ||
98 | if (events & V4L2_SUBDEV_IR_TX_FIFO_SERVICE_REQ) | 106 | if (events & V4L2_SUBDEV_IR_TX_FIFO_SERVICE_REQ) |
99 | set_bit(CX23885_IR_TX_FIFO_SERVICE_REQ, notifications); | 107 | set_bit(CX23885_IR_TX_FIFO_SERVICE_REQ, notifications); |
100 | schedule_work(&dev->ir_tx_work); | 108 | |
109 | /* | ||
110 | * For the integrated AV core, we are already in a workqueue context. | ||
111 | * For the CX23888 integrated IR, we are in an interrupt context. | ||
112 | */ | ||
113 | if (sd == dev->sd_cx25840) | ||
114 | cx23885_ir_tx_work_handler(&dev->ir_tx_work); | ||
115 | else | ||
116 | schedule_work(&dev->ir_tx_work); | ||
101 | } | 117 | } |