blob: a73033846fce86c987a1a757e9ecc624de63ef5c [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
71/* ---------------------------------------------------------------------- */
72
73static void cx88_ir_handle_key(struct cx88_IR *ir)
74{
75 struct cx88_core *core = ir->core;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030076 u32 gpio, data, auxgpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 /* read gpio value */
79 gpio = cx_read(ir->gpio_addr);
Trent Piepho6a59d642007-08-15 14:41:57 -030080 switch (core->boardnr) {
Michael Krufky829ea962007-06-25 14:54:09 -030081 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030082 /* This board apparently uses a combination of 2 GPIO
83 to represent the keys. Additionally, the second GPIO
84 can be used for parity.
85
86 Example:
87
88 for key "5"
89 gpio = 0x758, auxgpio = 0xe5 or 0xf5
90 for key "Power"
91 gpio = 0x758, auxgpio = 0xed or 0xfd
92 */
93
94 auxgpio = cx_read(MO_GP1_IO);
95 /* Take out the parity part */
Ricardo Cerqueiraa62c61d2006-07-17 16:34:27 -030096 gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
Michael Krufky829ea962007-06-25 14:54:09 -030097 break;
98 case CX88_BOARD_WINFAST_DTV1000:
Miroslav Sustek3047a172009-05-31 16:47:28 -030099 case CX88_BOARD_WINFAST_DTV1800H:
Pieter Van Schaik3e9a4892009-04-29 03:55:31 -0300100 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
Edgar Pisanie7d11ec2007-06-25 14:46:05 -0300101 gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900);
102 auxgpio = gpio;
Michael Krufky829ea962007-06-25 14:54:09 -0300103 break;
104 default:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300105 auxgpio = gpio;
Michael Krufky829ea962007-06-25 14:54:09 -0300106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (ir->polling) {
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300108 if (ir->last_gpio == auxgpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300110 ir->last_gpio = auxgpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
112
113 /* extract data */
114 data = ir_extract_bits(gpio, ir->mask_keycode);
115 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700116 gpio, data,
117 ir->polling ? "poll" : "irq",
118 (gpio & ir->mask_keydown) ? " down" : "",
119 (gpio & ir->mask_keyup) ? " up" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Trent Piepho6a59d642007-08-15 14:41:57 -0300121 if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) {
Peter Naullsd1009bd2006-08-08 09:10:05 -0300122 u32 gpio_key = cx_read(MO_GP0_IO);
123
124 data = (data << 4) | ((gpio_key & 0xf0) >> 4);
125
David Härdemand8b4b582010-10-29 16:08:23 -0300126 ir_keydown(ir->dev, data, 0);
Peter Naullsd1009bd2006-08-08 09:10:05 -0300127
128 } else if (ir->mask_keydown) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 /* bit set on keydown */
David Härdeman3bbd3f22010-06-07 16:32:28 -0300130 if (gpio & ir->mask_keydown)
David Härdemand8b4b582010-10-29 16:08:23 -0300131 ir_keydown_notimeout(ir->dev, data, 0);
David Härdeman62c65032010-10-29 16:08:07 -0300132 else
David Härdemand8b4b582010-10-29 16:08:23 -0300133 ir_keyup(ir->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 } else if (ir->mask_keyup) {
136 /* bit cleared on keydown */
David Härdeman3bbd3f22010-06-07 16:32:28 -0300137 if (0 == (gpio & ir->mask_keyup))
David Härdemand8b4b582010-10-29 16:08:23 -0300138 ir_keydown_notimeout(ir->dev, data, 0);
David Härdeman62c65032010-10-29 16:08:07 -0300139 else
David Härdemand8b4b582010-10-29 16:08:23 -0300140 ir_keyup(ir->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 } else {
143 /* can't distinguish keydown/up :-/ */
David Härdemand8b4b582010-10-29 16:08:23 -0300144 ir_keydown_notimeout(ir->dev, data, 0);
145 ir_keyup(ir->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
147}
148
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300149static enum hrtimer_restart cx88_ir_work(struct hrtimer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300151 unsigned long missed;
152 struct cx88_IR *ir = container_of(timer, struct cx88_IR, timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 cx88_ir_handle_key(ir);
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300155 missed = hrtimer_forward_now(&ir->timer,
156 ktime_set(0, ir->polling * 1000000));
157 if (missed > 1)
158 ir_dprintk("Missed ticks %ld\n", missed - 1);
159
160 return HRTIMER_RESTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300163static int __cx88_ir_start(void *priv)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300164{
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300165 struct cx88_core *core = priv;
166 struct cx88_IR *ir;
167
168 if (!core || !core->ir)
169 return -EINVAL;
170
171 ir = core->ir;
172
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300173 if (ir->polling) {
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300174 hrtimer_init(&ir->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
175 ir->timer.function = cx88_ir_work;
176 hrtimer_start(&ir->timer,
177 ktime_set(0, ir->polling * 1000000),
178 HRTIMER_MODE_REL);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300179 }
180 if (ir->sampling) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300181 core->pci_irqmask |= PCI_INT_IR_SMPINT;
David Härdeman29971372010-10-29 16:08:02 -0300182 cx_write(MO_DDS_IO, 0x33F286 * ir_samplerate); /* samplerate */
183 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300184 }
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300185 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300186}
187
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300188static void __cx88_ir_stop(void *priv)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300189{
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300190 struct cx88_core *core = priv;
191 struct cx88_IR *ir;
192
193 if (!core || !core->ir)
194 return;
195
196 ir = core->ir;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300197 if (ir->sampling) {
198 cx_write(MO_DDSCFG_IO, 0x0);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300199 core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300200 }
201
Jean Delvare569b7ec2009-03-07 07:42:12 -0300202 if (ir->polling)
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300203 hrtimer_cancel(&ir->timer);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300204}
205
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300206int cx88_ir_start(struct cx88_core *core)
207{
208 if (core->ir->users)
209 return __cx88_ir_start(core);
210
211 return 0;
212}
213
214void cx88_ir_stop(struct cx88_core *core)
215{
216 if (core->ir->users)
217 __cx88_ir_stop(core);
218}
219
David Härdemand8b4b582010-10-29 16:08:23 -0300220static int cx88_ir_open(struct rc_dev *rc)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300221{
David Härdemand8b4b582010-10-29 16:08:23 -0300222 struct cx88_core *core = rc->priv;
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300223
224 core->ir->users++;
225 return __cx88_ir_start(core);
226}
227
David Härdemand8b4b582010-10-29 16:08:23 -0300228static void cx88_ir_close(struct rc_dev *rc)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300229{
David Härdemand8b4b582010-10-29 16:08:23 -0300230 struct cx88_core *core = rc->priv;
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300231
232 core->ir->users--;
233 if (!core->ir->users)
234 __cx88_ir_stop(core);
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/* ---------------------------------------------------------------------- */
238
239int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
240{
241 struct cx88_IR *ir;
David Härdemand8b4b582010-10-29 16:08:23 -0300242 struct rc_dev *dev;
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300243 char *ir_codes = NULL;
Mauro Carvalho Chehab971e8292009-12-14 13:53:37 -0300244 u64 ir_type = IR_TYPE_OTHER;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300245 int err = -ENOMEM;
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300246 u32 hardware_mask = 0; /* For devices with a hardware mask, when
247 * used with a full-code IR table
248 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500250 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
David Härdemand8b4b582010-10-29 16:08:23 -0300251 dev = rc_allocate_device();
252 if (!ir || !dev)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300253 goto err_out_free;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500254
David Härdemand8b4b582010-10-29 16:08:23 -0300255 ir->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 /* detect & configure */
Trent Piepho6a59d642007-08-15 14:41:57 -0300258 switch (core->boardnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 case CX88_BOARD_DNTV_LIVE_DVB_T:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700260 case CX88_BOARD_KWORLD_DVB_T:
Marco Manenti28ecc442006-02-07 06:45:33 -0200261 case CX88_BOARD_KWORLD_DVB_T_CX22702:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300262 ir_codes = RC_MAP_DNTV_LIVE_DVB_T;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700263 ir->gpio_addr = MO_GP1_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700265 ir->mask_keyup = 0x60;
266 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700268 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300269 ir_codes = RC_MAP_CINERGY_1400;
Chris Pascoefc40b262006-01-09 15:25:35 -0200270 ir->sampling = 0xeb04; /* address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700271 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 case CX88_BOARD_HAUPPAUGE:
273 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200274 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
275 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Steven Toth611900c2006-01-09 15:25:12 -0200276 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Toth76dc82a2006-09-30 00:43:58 -0300277 case CX88_BOARD_HAUPPAUGE_HVR3000:
Steven Toth5bd1b662008-09-04 01:17:33 -0300278 case CX88_BOARD_HAUPPAUGE_HVR4000:
279 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
Erik S. Beiserf1735bb2009-02-28 22:29:20 -0300280 case CX88_BOARD_PCHDTV_HD3000:
281 case CX88_BOARD_PCHDTV_HD5500:
Steven Toth501d8cd2009-03-28 14:22:21 -0300282 case CX88_BOARD_HAUPPAUGE_IRONLY:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300283 ir_codes = RC_MAP_HAUPPAUGE_NEW;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700284 ir->sampling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 break;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300286 case CX88_BOARD_WINFAST_DTV2000H:
Vlastimil Labsky4d14c832009-08-10 22:15:54 -0300287 case CX88_BOARD_WINFAST_DTV2000H_J:
Miroslav Sustek3047a172009-05-31 16:47:28 -0300288 case CX88_BOARD_WINFAST_DTV1800H:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300289 ir_codes = RC_MAP_WINFAST;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700290 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 ir->mask_keycode = 0x8f8;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700292 ir->mask_keyup = 0x100;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300293 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300295 case CX88_BOARD_WINFAST2000XP_EXPERT:
Edgar Pisanie7d11ec2007-06-25 14:46:05 -0300296 case CX88_BOARD_WINFAST_DTV1000:
Pieter Van Schaik3e9a4892009-04-29 03:55:31 -0300297 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300298 ir_codes = RC_MAP_WINFAST;
Hermann Pittonff97d932006-11-03 10:45:52 -0300299 ir->gpio_addr = MO_GP0_IO;
300 ir->mask_keycode = 0x8f8;
301 ir->mask_keyup = 0x100;
302 ir->polling = 1; /* ms */
303 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 case CX88_BOARD_IODATA_GVBCTV7E:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300305 ir_codes = RC_MAP_IODATA_BCTV7E;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700306 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 ir->mask_keycode = 0xfd;
308 ir->mask_keydown = 0x02;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700309 ir->polling = 5; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300311 case CX88_BOARD_PROLINK_PLAYTVPVR:
Manuel Capinha239df2e2005-06-23 22:04:53 -0700312 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300313 /*
314 * It seems that this hardware is paired with NEC extended
315 * address 0x866b. So, unfortunately, its usage with other
316 * IR's with different address won't work. Still, there are
317 * other IR's from the same manufacturer that works, like the
318 * 002-T mini RC, provided with newer PV hardware
319 */
320 ir_codes = RC_MAP_PIXELVIEW_MK12;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700321 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700322 ir->mask_keyup = 0x80;
Mauro Carvalho Chehab26d56832010-04-04 10:32:04 -0300323 ir->polling = 10; /* ms */
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300324 hardware_mask = 0x3f; /* Hardware returns only 6 bits from command part */
Manuel Capinha239df2e2005-06-23 22:04:53 -0700325 break;
Mauro Carvalho Chehab7f0dd172008-04-22 14:46:01 -0300326 case CX88_BOARD_PROLINK_PV_8000GT:
Mauro Carvalho Chehaba31d2bb2008-09-29 12:08:29 -0300327 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300328 ir_codes = RC_MAP_PIXELVIEW_NEW;
Mauro Carvalho Chehab7f0dd172008-04-22 14:46:01 -0300329 ir->gpio_addr = MO_GP1_IO;
330 ir->mask_keycode = 0x3f;
331 ir->mask_keyup = 0x80;
332 ir->polling = 1; /* ms */
333 break;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200334 case CX88_BOARD_KWORLD_LTV883:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300335 ir_codes = RC_MAP_PIXELVIEW;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200336 ir->gpio_addr = MO_GP1_IO;
337 ir->mask_keycode = 0x1f;
338 ir->mask_keyup = 0x60;
339 ir->polling = 1; /* ms */
340 break;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700341 case CX88_BOARD_ADSTECH_DVB_T_PCI:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300342 ir_codes = RC_MAP_ADSTECH_DVB_T_PCI;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700343 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700344 ir->mask_keycode = 0xbf;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700345 ir->mask_keyup = 0x40;
346 ir->polling = 50; /* ms */
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700347 break;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700348 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300349 ir_codes = RC_MAP_MSI_TVANYWHERE;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700350 ir->gpio_addr = MO_GP1_IO;
351 ir->mask_keycode = 0x1f;
352 ir->mask_keyup = 0x40;
353 ir->polling = 1; /* ms */
354 break;
George Gazurkoff899ad112006-01-09 15:25:19 -0200355 case CX88_BOARD_AVERTV_303:
George Gazurkoff565f4942006-01-09 15:32:46 -0200356 case CX88_BOARD_AVERTV_STUDIO_303:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300357 ir_codes = RC_MAP_AVERTV_303;
George Gazurkoff899ad112006-01-09 15:25:19 -0200358 ir->gpio_addr = MO_GP2_IO;
359 ir->mask_keycode = 0xfb;
360 ir->mask_keydown = 0x02;
361 ir->polling = 50; /* ms */
362 break;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300363 case CX88_BOARD_OMICOM_SS4_PCI:
364 case CX88_BOARD_SATTRADE_ST4200:
365 case CX88_BOARD_TBS_8920:
366 case CX88_BOARD_TBS_8910:
367 case CX88_BOARD_PROF_7300:
Igor M. Liplianinb699c272009-11-16 22:22:32 -0300368 case CX88_BOARD_PROF_7301:
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300369 case CX88_BOARD_PROF_6200:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300370 ir_codes = RC_MAP_TBS_NEC;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300371 ir->sampling = 0xff00; /* address */
372 break;
373 case CX88_BOARD_TEVII_S460:
374 case CX88_BOARD_TEVII_S420:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300375 ir_codes = RC_MAP_TEVII_NEC;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300376 ir->sampling = 0xff00; /* address */
377 break;
Chris Pascoefc40b262006-01-09 15:25:35 -0200378 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300379 ir_codes = RC_MAP_DNTV_LIVE_DVBT_PRO;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300380 ir->sampling = 0xff00; /* address */
Chris Pascoefc40b262006-01-09 15:25:35 -0200381 break;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300382 case CX88_BOARD_NORWOOD_MICRO:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300383 ir_codes = RC_MAP_NORWOOD;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300384 ir->gpio_addr = MO_GP1_IO;
385 ir->mask_keycode = 0x0e;
386 ir->mask_keyup = 0x80;
387 ir->polling = 50; /* ms */
388 break;
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -0300389 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300390 ir_codes = RC_MAP_NPGTECH;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300391 ir->gpio_addr = MO_GP0_IO;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300392 ir->mask_keycode = 0xfa;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300393 ir->polling = 50; /* ms */
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300394 break;
Steven Toth91211062008-01-22 01:00:33 -0300395 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300396 ir_codes = RC_MAP_PINNACLE_PCTV_HD;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300397 ir->sampling = 1;
Steven Toth91211062008-01-22 01:00:33 -0300398 break;
Dâniel Fragaba928032008-04-08 19:56:44 -0300399 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300400 ir_codes = RC_MAP_POWERCOLOR_REAL_ANGEL;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300401 ir->gpio_addr = MO_GP2_IO;
Dâniel Fragaba928032008-04-08 19:56:44 -0300402 ir->mask_keycode = 0x7e;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300403 ir->polling = 100; /* ms */
Dâniel Fragaba928032008-04-08 19:56:44 -0300404 break;
Sergey Ivanov111ac842010-08-09 10:18:32 -0300405 case CX88_BOARD_TWINHAN_VP1027_DVBS:
406 ir_codes = RC_MAP_TWINHAN_VP1027_DVBS;
407 ir_type = IR_TYPE_NEC;
408 ir->sampling = 0xff00; /* address */
409 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700411
David Härdeman29971372010-10-29 16:08:02 -0300412 if (!ir_codes) {
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300413 err = -ENODEV;
414 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300417 /*
418 * The usage of mask_keycode were very convenient, due to several
419 * reasons. Among others, the scancode tables were using the scancode
420 * as the index elements. So, the less bits it was used, the smaller
421 * the table were stored. After the input changes, the better is to use
422 * the full scancodes, since it allows replacing the IR remote by
423 * another one. Unfortunately, there are still some hardware, like
424 * Pixelview Ultra Pro, where only part of the scancode is sent via
425 * GPIO. So, there's no way to get the full scancode. Due to that,
426 * hardware_mask were introduced here: it represents those hardware
427 * that has such limits.
428 */
429 if (hardware_mask && !ir->mask_keycode)
430 ir->mask_keycode = hardware_mask;
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /* init input device */
Trent Piepho6a59d642007-08-15 14:41:57 -0300433 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700434 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
David Härdemand8b4b582010-10-29 16:08:23 -0300436 dev->input_name = ir->name;
437 dev->input_phys = ir->phys;
438 dev->input_id.bustype = BUS_PCI;
439 dev->input_id.version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (pci->subsystem_vendor) {
David Härdemand8b4b582010-10-29 16:08:23 -0300441 dev->input_id.vendor = pci->subsystem_vendor;
442 dev->input_id.product = pci->subsystem_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 } else {
David Härdemand8b4b582010-10-29 16:08:23 -0300444 dev->input_id.vendor = pci->vendor;
445 dev->input_id.product = pci->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
David Härdemand8b4b582010-10-29 16:08:23 -0300447 dev->dev.parent = &pci->dev;
448 dev->map_name = ir_codes;
449 dev->driver_name = MODULE_NAME;
450 dev->priv = core;
451 dev->open = cx88_ir_open;
452 dev->close = cx88_ir_close;
453 dev->scanmask = hardware_mask;
454
455 if (ir->sampling) {
456 dev->driver_type = RC_DRIVER_IR_RAW;
457 dev->timeout = 10 * 1000 * 1000; /* 10 ms */
458 } else {
459 dev->driver_type = RC_DRIVER_SCANCODE;
460 dev->allowed_protos = ir_type;
461 }
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 ir->core = core;
464 core->ir = ir;
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /* all done */
David Härdemand8b4b582010-10-29 16:08:23 -0300467 err = rc_register_device(dev);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300468 if (err)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300469 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300472
David Härdemand8b4b582010-10-29 16:08:23 -0300473err_out_free:
474 rc_free_device(dev);
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300475 core->ir = NULL;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300476 kfree(ir);
477 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
480int cx88_ir_fini(struct cx88_core *core)
481{
482 struct cx88_IR *ir = core->ir;
483
484 /* skip detach on non attached boards */
485 if (NULL == ir)
486 return 0;
487
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300488 cx88_ir_stop(core);
David Härdemand8b4b582010-10-29 16:08:23 -0300489 rc_unregister_device(ir->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 kfree(ir);
491
492 /* done */
493 core->ir = NULL;
494 return 0;
495}
496
497/* ---------------------------------------------------------------------- */
498
499void cx88_ir_irq(struct cx88_core *core)
500{
501 struct cx88_IR *ir = core->ir;
David Härdeman29971372010-10-29 16:08:02 -0300502 u32 samples;
503 unsigned todo, bits;
504 struct ir_raw_event ev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
David Härdeman29971372010-10-29 16:08:02 -0300506 if (!ir || !ir->sampling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return;
508
David Härdeman29971372010-10-29 16:08:02 -0300509 /*
510 * Samples are stored in a 32 bit register, oldest sample in
511 * the msb. A set bit represents space and an unset bit
512 * represents a pulse.
513 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 samples = cx_read(MO_SAMPLE_IO);
David Härdeman29971372010-10-29 16:08:02 -0300515
David Härdemand8b4b582010-10-29 16:08:23 -0300516 if (samples == 0xff && ir->dev->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return;
David Härdeman29971372010-10-29 16:08:02 -0300518
519 init_ir_raw_event(&ev);
520 for (todo = 32; todo > 0; todo -= bits) {
521 ev.pulse = samples & 0x80000000 ? false : true;
522 bits = min(todo, 32U - fls(ev.pulse ? samples : ~samples));
523 ev.duration = (bits * NSEC_PER_SEC) / (1000 * ir_samplerate);
David Härdemand8b4b582010-10-29 16:08:23 -0300524 ir_raw_event_store_with_filter(ir->dev, &ev);
David Härdeman29971372010-10-29 16:08:02 -0300525 samples <<= bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
David Härdemand8b4b582010-10-29 16:08:23 -0300527 ir_raw_event_handle(ir->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Mauro Carvalho Chehab44243fc2010-09-23 00:51:44 -0300530void cx88_i2c_init_ir(struct cx88_core *core)
531{
532 struct i2c_board_info info;
533 const unsigned short addr_list[] = {
534 0x18, 0x6b, 0x71,
535 I2C_CLIENT_END
536 };
537 const unsigned short *addrp;
538 /* Instantiate the IR receiver device, if present */
539 if (0 != core->i2c_rc)
540 return;
541
542 memset(&info, 0, sizeof(struct i2c_board_info));
543 strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
544
545 /*
546 * We can't call i2c_new_probed_device() because it uses
547 * quick writes for probing and at least some RC receiver
548 * devices only reply to reads.
549 * Also, Hauppauge XVR needs to be specified, as address 0x71
550 * conflicts with another remote type used with saa7134
551 */
552 for (addrp = addr_list; *addrp != I2C_CLIENT_END; addrp++) {
553 info.platform_data = NULL;
554 memset(&core->init_data, 0, sizeof(core->init_data));
555
556 if (*addrp == 0x71) {
557 /* Hauppauge XVR */
558 core->init_data.name = "cx88 Hauppauge XVR remote";
559 core->init_data.ir_codes = RC_MAP_HAUPPAUGE_NEW;
560 core->init_data.type = IR_TYPE_RC5;
561 core->init_data.internal_get_key_func = IR_KBD_GET_KEY_HAUP_XVR;
562
563 info.platform_data = &core->init_data;
564 }
565 if (i2c_smbus_xfer(&core->i2c_adap, *addrp, 0,
566 I2C_SMBUS_READ, 0,
567 I2C_SMBUS_QUICK, NULL) >= 0) {
568 info.addr = *addrp;
569 i2c_new_device(&core->i2c_adap, &info);
570 break;
571 }
572 }
573}
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575/* ---------------------------------------------------------------------- */
576
577MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
578MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
579MODULE_LICENSE("GPL");