2 * Driver for the Conexant CX23885/7/8 PCIe bridge
4 * Infrared remote control input device
8 * Copyright (C) 2009 Andy Walls <awalls@md.metrocast.net>
10 * However, the cx23885_input_{init,fini} functions contained herein are
11 * derived from Linux kernel files linux/media/video/.../...-input.c marked as:
13 * Copyright (C) 2008 <srinivasa.deevi at conexant dot com>
14 * Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
15 * Markus Rechberger <mrechberger@gmail.com>
16 * Mauro Carvalho Chehab <mchehab@infradead.org>
17 * Sascha Sommer <saschasommer@freenet.de>
18 * Copyright (C) 2004, 2005 Chris Pascoe
19 * Copyright (C) 2003, 2004 Gerd Knorr
20 * Copyright (C) 2003 Pavel Machek
22 * This program is free software; you can redistribute it and/or
23 * modify it under the terms of the GNU General Public License
24 * as published by the Free Software Foundation; either version 2
25 * of the License, or (at your option) any later version.
27 * This program is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 * GNU General Public License for more details.
32 * You should have received a copy of the GNU General Public License
33 * along with this program; if not, write to the Free Software
34 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
38 #include <linux/slab.h>
39 #include <media/rc-core.h>
40 #include <media/v4l2-subdev.h>
44 #define MODULE_NAME "cx23885"
46 static void cx23885_input_process_measurements(struct cx23885_dev
*dev
,
49 struct cx23885_kernel_ir
*kernel_ir
= dev
->kernel_ir
;
54 struct ir_raw_event ir_core_event
[64];
58 v4l2_subdev_call(dev
->sd_ir
, ir
, rx_read
, (u8
*) ir_core_event
,
59 sizeof(ir_core_event
), &num
);
61 count
= num
/ sizeof(struct ir_raw_event
);
63 for (i
= 0; i
< count
; i
++) {
64 ir_raw_event_store(kernel_ir
->rc
,
71 ir_raw_event_reset(kernel_ir
->rc
);
73 ir_raw_event_handle(kernel_ir
->rc
);
76 void cx23885_input_rx_work_handler(struct cx23885_dev
*dev
, u32 events
)
78 struct v4l2_subdev_ir_parameters params
;
79 int overrun
, data_available
;
81 if (dev
->sd_ir
== NULL
|| events
== 0)
85 case CX23885_BOARD_HAUPPAUGE_HVR1270
:
86 case CX23885_BOARD_HAUPPAUGE_HVR1850
:
87 case CX23885_BOARD_HAUPPAUGE_HVR1290
:
88 case CX23885_BOARD_TEVII_S470
:
89 case CX23885_BOARD_HAUPPAUGE_HVR1250
:
91 * The only boards we handle right now. However other boards
92 * using the CX2388x integrated IR controller should be similar
99 overrun
= events
& (V4L2_SUBDEV_IR_RX_SW_FIFO_OVERRUN
|
100 V4L2_SUBDEV_IR_RX_HW_FIFO_OVERRUN
);
102 data_available
= events
& (V4L2_SUBDEV_IR_RX_END_OF_RX_DETECTED
|
103 V4L2_SUBDEV_IR_RX_FIFO_SERVICE_REQ
);
106 /* If there was a FIFO overrun, stop the device */
107 v4l2_subdev_call(dev
->sd_ir
, ir
, rx_g_parameters
, ¶ms
);
108 params
.enable
= false;
109 /* Mitigate race with cx23885_input_ir_stop() */
110 params
.shutdown
= atomic_read(&dev
->ir_input_stopping
);
111 v4l2_subdev_call(dev
->sd_ir
, ir
, rx_s_parameters
, ¶ms
);
115 cx23885_input_process_measurements(dev
, overrun
);
118 /* If there was a FIFO overrun, clear & restart the device */
119 params
.enable
= true;
120 /* Mitigate race with cx23885_input_ir_stop() */
121 params
.shutdown
= atomic_read(&dev
->ir_input_stopping
);
122 v4l2_subdev_call(dev
->sd_ir
, ir
, rx_s_parameters
, ¶ms
);
126 static int cx23885_input_ir_start(struct cx23885_dev
*dev
)
128 struct v4l2_subdev_ir_parameters params
;
130 if (dev
->sd_ir
== NULL
)
133 atomic_set(&dev
->ir_input_stopping
, 0);
135 v4l2_subdev_call(dev
->sd_ir
, ir
, rx_g_parameters
, ¶ms
);
136 switch (dev
->board
) {
137 case CX23885_BOARD_HAUPPAUGE_HVR1270
:
138 case CX23885_BOARD_HAUPPAUGE_HVR1850
:
139 case CX23885_BOARD_HAUPPAUGE_HVR1290
:
140 case CX23885_BOARD_HAUPPAUGE_HVR1250
:
142 * The IR controller on this board only returns pulse widths.
143 * Any other mode setting will fail to set up the device.
145 params
.mode
= V4L2_SUBDEV_IR_MODE_PULSE_WIDTH
;
146 params
.enable
= true;
147 params
.interrupt_enable
= true;
148 params
.shutdown
= false;
150 /* Setup for baseband compatible with both RC-5 and RC-6A */
151 params
.modulation
= false;
152 /* RC-5: 2,222,222 ns = 1/36 kHz * 32 cycles * 2 marks * 1.25*/
153 /* RC-6A: 3,333,333 ns = 1/36 kHz * 16 cycles * 6 marks * 1.25*/
154 params
.max_pulse_width
= 3333333; /* ns */
155 /* RC-5: 666,667 ns = 1/36 kHz * 32 cycles * 1 mark * 0.75 */
156 /* RC-6A: 333,333 ns = 1/36 kHz * 16 cycles * 1 mark * 0.75 */
157 params
.noise_filter_min_width
= 333333; /* ns */
159 * This board has inverted receive sense:
160 * mark is received as low logic level;
161 * falling edges are detected as rising edges; etc.
163 params
.invert_level
= true;
165 case CX23885_BOARD_TEVII_S470
:
167 * The IR controller on this board only returns pulse widths.
168 * Any other mode setting will fail to set up the device.
170 params
.mode
= V4L2_SUBDEV_IR_MODE_PULSE_WIDTH
;
171 params
.enable
= true;
172 params
.interrupt_enable
= true;
173 params
.shutdown
= false;
175 /* Setup for a standard NEC protocol */
176 params
.carrier_freq
= 37917; /* Hz, 455 kHz/12 for NEC */
177 params
.carrier_range_lower
= 33000; /* Hz */
178 params
.carrier_range_upper
= 43000; /* Hz */
179 params
.duty_cycle
= 33; /* percent, 33 percent for NEC */
182 * NEC max pulse width: (64/3)/(455 kHz/12) * 16 nec_units
183 * (64/3)/(455 kHz/12) * 16 nec_units * 1.375 = 12378022 ns
185 params
.max_pulse_width
= 12378022; /* ns */
188 * NEC noise filter min width: (64/3)/(455 kHz/12) * 1 nec_unit
189 * (64/3)/(455 kHz/12) * 1 nec_units * 0.625 = 351648 ns
191 params
.noise_filter_min_width
= 351648; /* ns */
193 params
.modulation
= false;
194 params
.invert_level
= true;
197 v4l2_subdev_call(dev
->sd_ir
, ir
, rx_s_parameters
, ¶ms
);
201 static int cx23885_input_ir_open(struct rc_dev
*rc
)
203 struct cx23885_kernel_ir
*kernel_ir
= rc
->priv
;
205 if (kernel_ir
->cx
== NULL
)
208 return cx23885_input_ir_start(kernel_ir
->cx
);
211 static void cx23885_input_ir_stop(struct cx23885_dev
*dev
)
213 struct v4l2_subdev_ir_parameters params
;
215 if (dev
->sd_ir
== NULL
)
219 * Stop the sd_ir subdevice from generating notifications and
221 * It is shutdown this way in order to mitigate a race with
222 * cx23885_input_rx_work_handler() in the overrun case, which could
223 * re-enable the subdevice.
225 atomic_set(&dev
->ir_input_stopping
, 1);
226 v4l2_subdev_call(dev
->sd_ir
, ir
, rx_g_parameters
, ¶ms
);
227 while (params
.shutdown
== false) {
228 params
.enable
= false;
229 params
.interrupt_enable
= false;
230 params
.shutdown
= true;
231 v4l2_subdev_call(dev
->sd_ir
, ir
, rx_s_parameters
, ¶ms
);
232 v4l2_subdev_call(dev
->sd_ir
, ir
, rx_g_parameters
, ¶ms
);
234 flush_work_sync(&dev
->cx25840_work
);
235 flush_work_sync(&dev
->ir_rx_work
);
236 flush_work_sync(&dev
->ir_tx_work
);
239 static void cx23885_input_ir_close(struct rc_dev
*rc
)
241 struct cx23885_kernel_ir
*kernel_ir
= rc
->priv
;
243 if (kernel_ir
->cx
!= NULL
)
244 cx23885_input_ir_stop(kernel_ir
->cx
);
247 int cx23885_input_init(struct cx23885_dev
*dev
)
249 struct cx23885_kernel_ir
*kernel_ir
;
252 enum rc_driver_type driver_type
;
253 unsigned long allowed_protos
;
258 * If the IR device (hardware registers, chip, GPIO lines, etc.) isn't
259 * encapsulated in a v4l2_subdev, then I'm not going to deal with it.
261 if (dev
->sd_ir
== NULL
)
264 switch (dev
->board
) {
265 case CX23885_BOARD_HAUPPAUGE_HVR1270
:
266 case CX23885_BOARD_HAUPPAUGE_HVR1850
:
267 case CX23885_BOARD_HAUPPAUGE_HVR1290
:
268 case CX23885_BOARD_HAUPPAUGE_HVR1250
:
269 /* Integrated CX2388[58] IR controller */
270 driver_type
= RC_DRIVER_IR_RAW
;
271 allowed_protos
= RC_TYPE_ALL
;
272 /* The grey Hauppauge RC-5 remote */
273 rc_map
= RC_MAP_HAUPPAUGE
;
275 case CX23885_BOARD_TEVII_S470
:
276 /* Integrated CX23885 IR controller */
277 driver_type
= RC_DRIVER_IR_RAW
;
278 allowed_protos
= RC_TYPE_ALL
;
279 /* A guess at the remote */
280 rc_map
= RC_MAP_TEVII_NEC
;
286 /* cx23885 board instance kernel IR state */
287 kernel_ir
= kzalloc(sizeof(struct cx23885_kernel_ir
), GFP_KERNEL
);
288 if (kernel_ir
== NULL
)
292 kernel_ir
->name
= kasprintf(GFP_KERNEL
, "cx23885 IR (%s)",
293 cx23885_boards
[dev
->board
].name
);
294 kernel_ir
->phys
= kasprintf(GFP_KERNEL
, "pci-%s/ir0",
298 rc
= rc_allocate_device();
305 rc
->input_name
= kernel_ir
->name
;
306 rc
->input_phys
= kernel_ir
->phys
;
307 rc
->input_id
.bustype
= BUS_PCI
;
308 rc
->input_id
.version
= 1;
309 if (dev
->pci
->subsystem_vendor
) {
310 rc
->input_id
.vendor
= dev
->pci
->subsystem_vendor
;
311 rc
->input_id
.product
= dev
->pci
->subsystem_device
;
313 rc
->input_id
.vendor
= dev
->pci
->vendor
;
314 rc
->input_id
.product
= dev
->pci
->device
;
316 rc
->dev
.parent
= &dev
->pci
->dev
;
317 rc
->driver_type
= driver_type
;
318 rc
->allowed_protos
= allowed_protos
;
319 rc
->priv
= kernel_ir
;
320 rc
->open
= cx23885_input_ir_open
;
321 rc
->close
= cx23885_input_ir_close
;
322 rc
->map_name
= rc_map
;
323 rc
->driver_name
= MODULE_NAME
;
326 dev
->kernel_ir
= kernel_ir
;
327 ret
= rc_register_device(rc
);
334 cx23885_input_ir_stop(dev
);
335 dev
->kernel_ir
= NULL
;
338 kfree(kernel_ir
->phys
);
339 kfree(kernel_ir
->name
);
344 void cx23885_input_fini(struct cx23885_dev
*dev
)
346 /* Always stop the IR hardware from generating interrupts */
347 cx23885_input_ir_stop(dev
);
349 if (dev
->kernel_ir
== NULL
)
351 rc_unregister_device(dev
->kernel_ir
->rc
);
352 kfree(dev
->kernel_ir
->phys
);
353 kfree(dev
->kernel_ir
->name
);
354 kfree(dev
->kernel_ir
);
355 dev
->kernel_ir
= NULL
;