blob: 662438fe9ac115f1dad82e7f938cd315b7de3d13 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Device driver for GPIO attached remote control interfaces
4 * on Conexant 2388x based TV/DVB cards.
5 *
6 * Copyright (c) 2003 Pavel Machek
7 * Copyright (c) 2004 Gerd Knorr
Chris Pascoefc40b262006-01-09 15:25:35 -02008 * Copyright (c) 2004, 2005 Chris Pascoe
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */
24
25#include <linux/init.h>
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -030026#include <linux/hrtimer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "cx88.h"
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -030032#include <media/rc-core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -030034#define MODULE_NAME "cx88xx"
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* ---------------------------------------------------------------------- */
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038struct cx88_IR {
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070039 struct cx88_core *core;
David Härdemand8b4b582010-10-29 16:08:23 -030040 struct rc_dev *dev;
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -030041
42 int users;
43
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070044 char name[32];
45 char phys[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 /* sample from gpio pin 16 */
Chris Pascoefc40b262006-01-09 15:25:35 -020048 u32 sampling;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 /* poll external decoder */
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070051 int polling;
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -030052 struct hrtimer timer;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070053 u32 gpio_addr;
54 u32 last_gpio;
55 u32 mask_keycode;
56 u32 mask_keydown;
57 u32 mask_keyup;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
David Härdeman29971372010-10-29 16:08:02 -030060static unsigned ir_samplerate = 4;
61module_param(ir_samplerate, uint, 0444);
62MODULE_PARM_DESC(ir_samplerate, "IR samplerate in kHz, 1 - 20, default 4");
63
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030064static int ir_debug;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070065module_param(ir_debug, int, 0644); /* debug level [IR] */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
67
68#define ir_dprintk(fmt, arg...) if (ir_debug) \
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -070069 printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Mauro Carvalho Chehab1c0eb0f2010-12-30 08:02:51 -030071#define dprintk(fmt, arg...) if (ir_debug) \
72 printk(KERN_DEBUG "cx88 IR: " fmt , ##arg)
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/* ---------------------------------------------------------------------- */
75
76static void cx88_ir_handle_key(struct cx88_IR *ir)
77{
78 struct cx88_core *core = ir->core;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030079 u32 gpio, data, auxgpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 /* read gpio value */
82 gpio = cx_read(ir->gpio_addr);
Trent Piepho6a59d642007-08-15 14:41:57 -030083 switch (core->boardnr) {
Michael Krufky829ea962007-06-25 14:54:09 -030084 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030085 /* This board apparently uses a combination of 2 GPIO
86 to represent the keys. Additionally, the second GPIO
87 can be used for parity.
88
89 Example:
90
91 for key "5"
92 gpio = 0x758, auxgpio = 0xe5 or 0xf5
93 for key "Power"
94 gpio = 0x758, auxgpio = 0xed or 0xfd
95 */
96
97 auxgpio = cx_read(MO_GP1_IO);
98 /* Take out the parity part */
Ricardo Cerqueiraa62c61d2006-07-17 16:34:27 -030099 gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
Michael Krufky829ea962007-06-25 14:54:09 -0300100 break;
101 case CX88_BOARD_WINFAST_DTV1000:
Miroslav Sustek3047a172009-05-31 16:47:28 -0300102 case CX88_BOARD_WINFAST_DTV1800H:
istvan_v@mailbox.huf271a3a2011-06-07 13:14:53 -0300103 case CX88_BOARD_WINFAST_DTV2000H_PLUS:
Pieter Van Schaik3e9a4892009-04-29 03:55:31 -0300104 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
Edgar Pisanie7d11ec2007-06-25 14:46:05 -0300105 gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900);
106 auxgpio = gpio;
Michael Krufky829ea962007-06-25 14:54:09 -0300107 break;
108 default:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300109 auxgpio = gpio;
Michael Krufky829ea962007-06-25 14:54:09 -0300110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (ir->polling) {
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300112 if (ir->last_gpio == auxgpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300114 ir->last_gpio = auxgpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
116
117 /* extract data */
118 data = ir_extract_bits(gpio, ir->mask_keycode);
119 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700120 gpio, data,
121 ir->polling ? "poll" : "irq",
122 (gpio & ir->mask_keydown) ? " down" : "",
123 (gpio & ir->mask_keyup) ? " up" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Trent Piepho6a59d642007-08-15 14:41:57 -0300125 if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) {
Peter Naullsd1009bd2006-08-08 09:10:05 -0300126 u32 gpio_key = cx_read(MO_GP0_IO);
127
128 data = (data << 4) | ((gpio_key & 0xf0) >> 4);
129
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300130 rc_keydown(ir->dev, data, 0);
Peter Naullsd1009bd2006-08-08 09:10:05 -0300131
132 } else if (ir->mask_keydown) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 /* bit set on keydown */
David Härdeman3bbd3f22010-06-07 16:32:28 -0300134 if (gpio & ir->mask_keydown)
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300135 rc_keydown_notimeout(ir->dev, data, 0);
David Härdeman62c65032010-10-29 16:08:07 -0300136 else
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300137 rc_keyup(ir->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 } else if (ir->mask_keyup) {
140 /* bit cleared on keydown */
David Härdeman3bbd3f22010-06-07 16:32:28 -0300141 if (0 == (gpio & ir->mask_keyup))
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300142 rc_keydown_notimeout(ir->dev, data, 0);
David Härdeman62c65032010-10-29 16:08:07 -0300143 else
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300144 rc_keyup(ir->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 } else {
147 /* can't distinguish keydown/up :-/ */
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300148 rc_keydown_notimeout(ir->dev, data, 0);
149 rc_keyup(ir->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151}
152
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300153static enum hrtimer_restart cx88_ir_work(struct hrtimer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300155 unsigned long missed;
156 struct cx88_IR *ir = container_of(timer, struct cx88_IR, timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 cx88_ir_handle_key(ir);
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300159 missed = hrtimer_forward_now(&ir->timer,
160 ktime_set(0, ir->polling * 1000000));
161 if (missed > 1)
162 ir_dprintk("Missed ticks %ld\n", missed - 1);
163
164 return HRTIMER_RESTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300167static int __cx88_ir_start(void *priv)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300168{
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300169 struct cx88_core *core = priv;
170 struct cx88_IR *ir;
171
172 if (!core || !core->ir)
173 return -EINVAL;
174
175 ir = core->ir;
176
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300177 if (ir->polling) {
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300178 hrtimer_init(&ir->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
179 ir->timer.function = cx88_ir_work;
180 hrtimer_start(&ir->timer,
181 ktime_set(0, ir->polling * 1000000),
182 HRTIMER_MODE_REL);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300183 }
184 if (ir->sampling) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300185 core->pci_irqmask |= PCI_INT_IR_SMPINT;
David Härdeman29971372010-10-29 16:08:02 -0300186 cx_write(MO_DDS_IO, 0x33F286 * ir_samplerate); /* samplerate */
187 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300188 }
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300189 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300190}
191
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300192static void __cx88_ir_stop(void *priv)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300193{
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300194 struct cx88_core *core = priv;
195 struct cx88_IR *ir;
196
197 if (!core || !core->ir)
198 return;
199
200 ir = core->ir;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300201 if (ir->sampling) {
202 cx_write(MO_DDSCFG_IO, 0x0);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300203 core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300204 }
205
Jean Delvare569b7ec2009-03-07 07:42:12 -0300206 if (ir->polling)
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300207 hrtimer_cancel(&ir->timer);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300208}
209
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300210int cx88_ir_start(struct cx88_core *core)
211{
212 if (core->ir->users)
213 return __cx88_ir_start(core);
214
215 return 0;
216}
217
218void cx88_ir_stop(struct cx88_core *core)
219{
220 if (core->ir->users)
221 __cx88_ir_stop(core);
222}
223
David Härdemand8b4b582010-10-29 16:08:23 -0300224static int cx88_ir_open(struct rc_dev *rc)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300225{
David Härdemand8b4b582010-10-29 16:08:23 -0300226 struct cx88_core *core = rc->priv;
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300227
228 core->ir->users++;
229 return __cx88_ir_start(core);
230}
231
David Härdemand8b4b582010-10-29 16:08:23 -0300232static void cx88_ir_close(struct rc_dev *rc)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300233{
David Härdemand8b4b582010-10-29 16:08:23 -0300234 struct cx88_core *core = rc->priv;
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300235
236 core->ir->users--;
237 if (!core->ir->users)
238 __cx88_ir_stop(core);
239}
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/* ---------------------------------------------------------------------- */
242
243int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
244{
245 struct cx88_IR *ir;
David Härdemand8b4b582010-10-29 16:08:23 -0300246 struct rc_dev *dev;
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300247 char *ir_codes = NULL;
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300248 u64 rc_type = RC_TYPE_OTHER;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300249 int err = -ENOMEM;
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300250 u32 hardware_mask = 0; /* For devices with a hardware mask, when
251 * used with a full-code IR table
252 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500254 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
David Härdemand8b4b582010-10-29 16:08:23 -0300255 dev = rc_allocate_device();
256 if (!ir || !dev)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300257 goto err_out_free;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500258
David Härdemand8b4b582010-10-29 16:08:23 -0300259 ir->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 /* detect & configure */
Trent Piepho6a59d642007-08-15 14:41:57 -0300262 switch (core->boardnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 case CX88_BOARD_DNTV_LIVE_DVB_T:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700264 case CX88_BOARD_KWORLD_DVB_T:
Marco Manenti28ecc442006-02-07 06:45:33 -0200265 case CX88_BOARD_KWORLD_DVB_T_CX22702:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300266 ir_codes = RC_MAP_DNTV_LIVE_DVB_T;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700267 ir->gpio_addr = MO_GP1_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700269 ir->mask_keyup = 0x60;
270 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700272 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300273 ir_codes = RC_MAP_CINERGY_1400;
Chris Pascoefc40b262006-01-09 15:25:35 -0200274 ir->sampling = 0xeb04; /* address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700275 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 case CX88_BOARD_HAUPPAUGE:
277 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200278 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
279 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Steven Toth611900c2006-01-09 15:25:12 -0200280 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Toth76dc82a2006-09-30 00:43:58 -0300281 case CX88_BOARD_HAUPPAUGE_HVR3000:
Steven Toth5bd1b662008-09-04 01:17:33 -0300282 case CX88_BOARD_HAUPPAUGE_HVR4000:
283 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
Erik S. Beiserf1735bb2009-02-28 22:29:20 -0300284 case CX88_BOARD_PCHDTV_HD3000:
285 case CX88_BOARD_PCHDTV_HD5500:
Steven Toth501d8cd2009-03-28 14:22:21 -0300286 case CX88_BOARD_HAUPPAUGE_IRONLY:
Mauro Carvalho Chehabaf86ce72011-01-24 12:18:48 -0300287 ir_codes = RC_MAP_HAUPPAUGE;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700288 ir->sampling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 break;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300290 case CX88_BOARD_WINFAST_DTV2000H:
Vlastimil Labsky4d14c832009-08-10 22:15:54 -0300291 case CX88_BOARD_WINFAST_DTV2000H_J:
Miroslav Sustek3047a172009-05-31 16:47:28 -0300292 case CX88_BOARD_WINFAST_DTV1800H:
istvan_v@mailbox.huf271a3a2011-06-07 13:14:53 -0300293 case CX88_BOARD_WINFAST_DTV2000H_PLUS:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300294 ir_codes = RC_MAP_WINFAST;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700295 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 ir->mask_keycode = 0x8f8;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700297 ir->mask_keyup = 0x100;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300298 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300300 case CX88_BOARD_WINFAST2000XP_EXPERT:
Edgar Pisanie7d11ec2007-06-25 14:46:05 -0300301 case CX88_BOARD_WINFAST_DTV1000:
Pieter Van Schaik3e9a4892009-04-29 03:55:31 -0300302 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300303 ir_codes = RC_MAP_WINFAST;
Hermann Pittonff97d932006-11-03 10:45:52 -0300304 ir->gpio_addr = MO_GP0_IO;
305 ir->mask_keycode = 0x8f8;
306 ir->mask_keyup = 0x100;
307 ir->polling = 1; /* ms */
308 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 case CX88_BOARD_IODATA_GVBCTV7E:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300310 ir_codes = RC_MAP_IODATA_BCTV7E;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700311 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 ir->mask_keycode = 0xfd;
313 ir->mask_keydown = 0x02;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700314 ir->polling = 5; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300316 case CX88_BOARD_PROLINK_PLAYTVPVR:
Manuel Capinha239df2e2005-06-23 22:04:53 -0700317 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300318 /*
319 * It seems that this hardware is paired with NEC extended
320 * address 0x866b. So, unfortunately, its usage with other
321 * IR's with different address won't work. Still, there are
322 * other IR's from the same manufacturer that works, like the
323 * 002-T mini RC, provided with newer PV hardware
324 */
325 ir_codes = RC_MAP_PIXELVIEW_MK12;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700326 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700327 ir->mask_keyup = 0x80;
Mauro Carvalho Chehab26d56832010-04-04 10:32:04 -0300328 ir->polling = 10; /* ms */
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300329 hardware_mask = 0x3f; /* Hardware returns only 6 bits from command part */
Manuel Capinha239df2e2005-06-23 22:04:53 -0700330 break;
Mauro Carvalho Chehab7f0dd172008-04-22 14:46:01 -0300331 case CX88_BOARD_PROLINK_PV_8000GT:
Mauro Carvalho Chehaba31d2bb2008-09-29 12:08:29 -0300332 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300333 ir_codes = RC_MAP_PIXELVIEW_NEW;
Mauro Carvalho Chehab7f0dd172008-04-22 14:46:01 -0300334 ir->gpio_addr = MO_GP1_IO;
335 ir->mask_keycode = 0x3f;
336 ir->mask_keyup = 0x80;
337 ir->polling = 1; /* ms */
338 break;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200339 case CX88_BOARD_KWORLD_LTV883:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300340 ir_codes = RC_MAP_PIXELVIEW;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200341 ir->gpio_addr = MO_GP1_IO;
342 ir->mask_keycode = 0x1f;
343 ir->mask_keyup = 0x60;
344 ir->polling = 1; /* ms */
345 break;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700346 case CX88_BOARD_ADSTECH_DVB_T_PCI:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300347 ir_codes = RC_MAP_ADSTECH_DVB_T_PCI;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700348 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700349 ir->mask_keycode = 0xbf;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700350 ir->mask_keyup = 0x40;
351 ir->polling = 50; /* ms */
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700352 break;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700353 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300354 ir_codes = RC_MAP_MSI_TVANYWHERE;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700355 ir->gpio_addr = MO_GP1_IO;
356 ir->mask_keycode = 0x1f;
357 ir->mask_keyup = 0x40;
358 ir->polling = 1; /* ms */
359 break;
George Gazurkoff899ad112006-01-09 15:25:19 -0200360 case CX88_BOARD_AVERTV_303:
George Gazurkoff565f4942006-01-09 15:32:46 -0200361 case CX88_BOARD_AVERTV_STUDIO_303:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300362 ir_codes = RC_MAP_AVERTV_303;
George Gazurkoff899ad112006-01-09 15:25:19 -0200363 ir->gpio_addr = MO_GP2_IO;
364 ir->mask_keycode = 0xfb;
365 ir->mask_keydown = 0x02;
366 ir->polling = 50; /* ms */
367 break;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300368 case CX88_BOARD_OMICOM_SS4_PCI:
369 case CX88_BOARD_SATTRADE_ST4200:
370 case CX88_BOARD_TBS_8920:
371 case CX88_BOARD_TBS_8910:
372 case CX88_BOARD_PROF_7300:
Igor M. Liplianinb699c272009-11-16 22:22:32 -0300373 case CX88_BOARD_PROF_7301:
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300374 case CX88_BOARD_PROF_6200:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300375 ir_codes = RC_MAP_TBS_NEC;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300376 ir->sampling = 0xff00; /* address */
377 break;
Igor M. Liplianin0cb73632011-02-25 18:41:24 -0300378 case CX88_BOARD_TEVII_S464:
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300379 case CX88_BOARD_TEVII_S460:
380 case CX88_BOARD_TEVII_S420:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300381 ir_codes = RC_MAP_TEVII_NEC;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300382 ir->sampling = 0xff00; /* address */
383 break;
Chris Pascoefc40b262006-01-09 15:25:35 -0200384 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300385 ir_codes = RC_MAP_DNTV_LIVE_DVBT_PRO;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300386 ir->sampling = 0xff00; /* address */
Chris Pascoefc40b262006-01-09 15:25:35 -0200387 break;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300388 case CX88_BOARD_NORWOOD_MICRO:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300389 ir_codes = RC_MAP_NORWOOD;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300390 ir->gpio_addr = MO_GP1_IO;
391 ir->mask_keycode = 0x0e;
392 ir->mask_keyup = 0x80;
393 ir->polling = 50; /* ms */
394 break;
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -0300395 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300396 ir_codes = RC_MAP_NPGTECH;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300397 ir->gpio_addr = MO_GP0_IO;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300398 ir->mask_keycode = 0xfa;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300399 ir->polling = 50; /* ms */
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300400 break;
Steven Toth91211062008-01-22 01:00:33 -0300401 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300402 ir_codes = RC_MAP_PINNACLE_PCTV_HD;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300403 ir->sampling = 1;
Steven Toth91211062008-01-22 01:00:33 -0300404 break;
Dâniel Fragaba928032008-04-08 19:56:44 -0300405 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300406 ir_codes = RC_MAP_POWERCOLOR_REAL_ANGEL;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300407 ir->gpio_addr = MO_GP2_IO;
Dâniel Fragaba928032008-04-08 19:56:44 -0300408 ir->mask_keycode = 0x7e;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300409 ir->polling = 100; /* ms */
Dâniel Fragaba928032008-04-08 19:56:44 -0300410 break;
Sergey Ivanov111ac842010-08-09 10:18:32 -0300411 case CX88_BOARD_TWINHAN_VP1027_DVBS:
412 ir_codes = RC_MAP_TWINHAN_VP1027_DVBS;
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300413 rc_type = RC_TYPE_NEC;
Sergey Ivanov111ac842010-08-09 10:18:32 -0300414 ir->sampling = 0xff00; /* address */
415 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700417
David Härdeman29971372010-10-29 16:08:02 -0300418 if (!ir_codes) {
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300419 err = -ENODEV;
420 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300423 /*
424 * The usage of mask_keycode were very convenient, due to several
425 * reasons. Among others, the scancode tables were using the scancode
426 * as the index elements. So, the less bits it was used, the smaller
427 * the table were stored. After the input changes, the better is to use
428 * the full scancodes, since it allows replacing the IR remote by
429 * another one. Unfortunately, there are still some hardware, like
430 * Pixelview Ultra Pro, where only part of the scancode is sent via
431 * GPIO. So, there's no way to get the full scancode. Due to that,
432 * hardware_mask were introduced here: it represents those hardware
433 * that has such limits.
434 */
435 if (hardware_mask && !ir->mask_keycode)
436 ir->mask_keycode = hardware_mask;
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /* init input device */
Trent Piepho6a59d642007-08-15 14:41:57 -0300439 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700440 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
David Härdemand8b4b582010-10-29 16:08:23 -0300442 dev->input_name = ir->name;
443 dev->input_phys = ir->phys;
444 dev->input_id.bustype = BUS_PCI;
445 dev->input_id.version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (pci->subsystem_vendor) {
David Härdemand8b4b582010-10-29 16:08:23 -0300447 dev->input_id.vendor = pci->subsystem_vendor;
448 dev->input_id.product = pci->subsystem_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 } else {
David Härdemand8b4b582010-10-29 16:08:23 -0300450 dev->input_id.vendor = pci->vendor;
451 dev->input_id.product = pci->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
David Härdemand8b4b582010-10-29 16:08:23 -0300453 dev->dev.parent = &pci->dev;
454 dev->map_name = ir_codes;
455 dev->driver_name = MODULE_NAME;
456 dev->priv = core;
457 dev->open = cx88_ir_open;
458 dev->close = cx88_ir_close;
459 dev->scanmask = hardware_mask;
460
461 if (ir->sampling) {
462 dev->driver_type = RC_DRIVER_IR_RAW;
463 dev->timeout = 10 * 1000 * 1000; /* 10 ms */
464 } else {
465 dev->driver_type = RC_DRIVER_SCANCODE;
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300466 dev->allowed_protos = rc_type;
David Härdemand8b4b582010-10-29 16:08:23 -0300467 }
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 ir->core = core;
470 core->ir = ir;
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 /* all done */
David Härdemand8b4b582010-10-29 16:08:23 -0300473 err = rc_register_device(dev);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300474 if (err)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300475 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300478
David Härdemand8b4b582010-10-29 16:08:23 -0300479err_out_free:
480 rc_free_device(dev);
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300481 core->ir = NULL;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300482 kfree(ir);
483 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
486int cx88_ir_fini(struct cx88_core *core)
487{
488 struct cx88_IR *ir = core->ir;
489
490 /* skip detach on non attached boards */
491 if (NULL == ir)
492 return 0;
493
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300494 cx88_ir_stop(core);
David Härdemand8b4b582010-10-29 16:08:23 -0300495 rc_unregister_device(ir->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 kfree(ir);
497
498 /* done */
499 core->ir = NULL;
500 return 0;
501}
502
503/* ---------------------------------------------------------------------- */
504
505void cx88_ir_irq(struct cx88_core *core)
506{
507 struct cx88_IR *ir = core->ir;
David Härdeman29971372010-10-29 16:08:02 -0300508 u32 samples;
509 unsigned todo, bits;
510 struct ir_raw_event ev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
David Härdeman29971372010-10-29 16:08:02 -0300512 if (!ir || !ir->sampling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return;
514
David Härdeman29971372010-10-29 16:08:02 -0300515 /*
516 * Samples are stored in a 32 bit register, oldest sample in
517 * the msb. A set bit represents space and an unset bit
518 * represents a pulse.
519 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 samples = cx_read(MO_SAMPLE_IO);
David Härdeman29971372010-10-29 16:08:02 -0300521
David Härdemand8b4b582010-10-29 16:08:23 -0300522 if (samples == 0xff && ir->dev->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return;
David Härdeman29971372010-10-29 16:08:02 -0300524
525 init_ir_raw_event(&ev);
526 for (todo = 32; todo > 0; todo -= bits) {
527 ev.pulse = samples & 0x80000000 ? false : true;
528 bits = min(todo, 32U - fls(ev.pulse ? samples : ~samples));
Lawrence Rust2a164d02011-04-08 09:50:45 -0300529 ev.duration = (bits * (NSEC_PER_SEC / 1000)) / ir_samplerate;
David Härdemand8b4b582010-10-29 16:08:23 -0300530 ir_raw_event_store_with_filter(ir->dev, &ev);
David Härdeman29971372010-10-29 16:08:02 -0300531 samples <<= bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
David Härdemand8b4b582010-10-29 16:08:23 -0300533 ir_raw_event_handle(ir->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Mauro Carvalho Chehab1c0eb0f2010-12-30 08:02:51 -0300536static int get_key_pvr2000(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
537{
538 int flags, code;
539
540 /* poll IR chip */
541 flags = i2c_smbus_read_byte_data(ir->c, 0x10);
542 if (flags < 0) {
543 dprintk("read error\n");
544 return 0;
545 }
546 /* key pressed ? */
547 if (0 == (flags & 0x80))
548 return 0;
549
550 /* read actual key code */
551 code = i2c_smbus_read_byte_data(ir->c, 0x00);
552 if (code < 0) {
553 dprintk("read error\n");
554 return 0;
555 }
556
557 dprintk("IR Key/Flags: (0x%02x/0x%02x)\n",
558 code & 0xff, flags & 0xff);
559
560 *ir_key = code & 0xff;
561 *ir_raw = code;
562 return 1;
563}
564
Mauro Carvalho Chehab44243fc2010-09-23 00:51:44 -0300565void cx88_i2c_init_ir(struct cx88_core *core)
566{
567 struct i2c_board_info info;
Mauro Carvalho Chehab1c0eb0f2010-12-30 08:02:51 -0300568 const unsigned short default_addr_list[] = {
Mauro Carvalho Chehab44243fc2010-09-23 00:51:44 -0300569 0x18, 0x6b, 0x71,
570 I2C_CLIENT_END
571 };
Mauro Carvalho Chehab1c0eb0f2010-12-30 08:02:51 -0300572 const unsigned short pvr2000_addr_list[] = {
573 0x18, 0x1a,
574 I2C_CLIENT_END
575 };
576 const unsigned short *addr_list = default_addr_list;
Mauro Carvalho Chehab44243fc2010-09-23 00:51:44 -0300577 const unsigned short *addrp;
578 /* Instantiate the IR receiver device, if present */
579 if (0 != core->i2c_rc)
580 return;
581
582 memset(&info, 0, sizeof(struct i2c_board_info));
583 strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
584
Mauro Carvalho Chehab1c0eb0f2010-12-30 08:02:51 -0300585 switch (core->boardnr) {
586 case CX88_BOARD_LEADTEK_PVR2000:
587 addr_list = pvr2000_addr_list;
588 core->init_data.name = "cx88 Leadtek PVR 2000 remote";
589 core->init_data.type = RC_TYPE_UNKNOWN;
590 core->init_data.get_key = get_key_pvr2000;
591 core->init_data.ir_codes = RC_MAP_EMPTY;
592 break;
593 }
594
Mauro Carvalho Chehab44243fc2010-09-23 00:51:44 -0300595 /*
596 * We can't call i2c_new_probed_device() because it uses
597 * quick writes for probing and at least some RC receiver
598 * devices only reply to reads.
599 * Also, Hauppauge XVR needs to be specified, as address 0x71
600 * conflicts with another remote type used with saa7134
601 */
602 for (addrp = addr_list; *addrp != I2C_CLIENT_END; addrp++) {
603 info.platform_data = NULL;
604 memset(&core->init_data, 0, sizeof(core->init_data));
605
606 if (*addrp == 0x71) {
607 /* Hauppauge XVR */
608 core->init_data.name = "cx88 Hauppauge XVR remote";
Mauro Carvalho Chehabaf86ce72011-01-24 12:18:48 -0300609 core->init_data.ir_codes = RC_MAP_HAUPPAUGE;
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300610 core->init_data.type = RC_TYPE_RC5;
Mauro Carvalho Chehab44243fc2010-09-23 00:51:44 -0300611 core->init_data.internal_get_key_func = IR_KBD_GET_KEY_HAUP_XVR;
612
613 info.platform_data = &core->init_data;
614 }
615 if (i2c_smbus_xfer(&core->i2c_adap, *addrp, 0,
616 I2C_SMBUS_READ, 0,
617 I2C_SMBUS_QUICK, NULL) >= 0) {
618 info.addr = *addrp;
619 i2c_new_device(&core->i2c_adap, &info);
620 break;
621 }
622 }
623}
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625/* ---------------------------------------------------------------------- */
626
627MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
628MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
629MODULE_LICENSE("GPL");