Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
| 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 Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 8 | * Copyright (c) 2004, 2005 Chris Pascoe |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 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 Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 26 | #include <linux/hrtimer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/input.h> |
| 28 | #include <linux/pci.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "cx88.h" |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 33 | #include <media/ir-core.h> |
Mauro Carvalho Chehab | d21838d | 2006-01-09 15:25:21 -0200 | [diff] [blame] | 34 | #include <media/ir-common.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Mauro Carvalho Chehab | 727e625 | 2010-03-12 21:18:14 -0300 | [diff] [blame] | 36 | #define MODULE_NAME "cx88xx" |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | /* ---------------------------------------------------------------------- */ |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | struct cx88_IR { |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 41 | struct cx88_core *core; |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 42 | struct input_dev *input; |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 43 | struct ir_dev_props props; |
| 44 | |
| 45 | int users; |
| 46 | |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 47 | char name[32]; |
| 48 | char phys[32]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | /* sample from gpio pin 16 */ |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 51 | u32 sampling; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | /* poll external decoder */ |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 54 | int polling; |
Andrzej Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 55 | struct hrtimer timer; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 56 | u32 gpio_addr; |
| 57 | u32 last_gpio; |
| 58 | u32 mask_keycode; |
| 59 | u32 mask_keydown; |
| 60 | u32 mask_keyup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | }; |
| 62 | |
David Härdeman | 2997137 | 2010-10-29 16:08:02 -0300 | [diff] [blame^] | 63 | static unsigned ir_samplerate = 4; |
| 64 | module_param(ir_samplerate, uint, 0444); |
| 65 | MODULE_PARM_DESC(ir_samplerate, "IR samplerate in kHz, 1 - 20, default 4"); |
| 66 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 67 | static int ir_debug; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 68 | module_param(ir_debug, int, 0644); /* debug level [IR] */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]"); |
| 70 | |
| 71 | #define ir_dprintk(fmt, arg...) if (ir_debug) \ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 72 | printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
| 74 | /* ---------------------------------------------------------------------- */ |
| 75 | |
| 76 | static void cx88_ir_handle_key(struct cx88_IR *ir) |
| 77 | { |
| 78 | struct cx88_core *core = ir->core; |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 79 | u32 gpio, data, auxgpio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
| 81 | /* read gpio value */ |
| 82 | gpio = cx_read(ir->gpio_addr); |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 83 | switch (core->boardnr) { |
Michael Krufky | 829ea96 | 2007-06-25 14:54:09 -0300 | [diff] [blame] | 84 | case CX88_BOARD_NPGTECH_REALTV_TOP10FM: |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 85 | /* 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 Cerqueira | a62c61d | 2006-07-17 16:34:27 -0300 | [diff] [blame] | 99 | gpio=(gpio & 0x7fd) + (auxgpio & 0xef); |
Michael Krufky | 829ea96 | 2007-06-25 14:54:09 -0300 | [diff] [blame] | 100 | break; |
| 101 | case CX88_BOARD_WINFAST_DTV1000: |
Miroslav Sustek | 3047a17 | 2009-05-31 16:47:28 -0300 | [diff] [blame] | 102 | case CX88_BOARD_WINFAST_DTV1800H: |
Pieter Van Schaik | 3e9a489 | 2009-04-29 03:55:31 -0300 | [diff] [blame] | 103 | case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL: |
Edgar Pisani | e7d11ec | 2007-06-25 14:46:05 -0300 | [diff] [blame] | 104 | gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900); |
| 105 | auxgpio = gpio; |
Michael Krufky | 829ea96 | 2007-06-25 14:54:09 -0300 | [diff] [blame] | 106 | break; |
| 107 | default: |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 108 | auxgpio = gpio; |
Michael Krufky | 829ea96 | 2007-06-25 14:54:09 -0300 | [diff] [blame] | 109 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | if (ir->polling) { |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 111 | if (ir->last_gpio == auxgpio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | return; |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 113 | ir->last_gpio = auxgpio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | /* extract data */ |
| 117 | data = ir_extract_bits(gpio, ir->mask_keycode); |
| 118 | ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n", |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 119 | gpio, data, |
| 120 | ir->polling ? "poll" : "irq", |
| 121 | (gpio & ir->mask_keydown) ? " down" : "", |
| 122 | (gpio & ir->mask_keyup) ? " up" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 124 | if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) { |
Peter Naulls | d1009bd | 2006-08-08 09:10:05 -0300 | [diff] [blame] | 125 | u32 gpio_key = cx_read(MO_GP0_IO); |
| 126 | |
| 127 | data = (data << 4) | ((gpio_key & 0xf0) >> 4); |
| 128 | |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 129 | ir_keydown(ir->input, data, 0); |
Peter Naulls | d1009bd | 2006-08-08 09:10:05 -0300 | [diff] [blame] | 130 | |
| 131 | } else if (ir->mask_keydown) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | /* bit set on keydown */ |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 133 | if (gpio & ir->mask_keydown) |
| 134 | ir_keydown(ir->input, data, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
| 136 | } else if (ir->mask_keyup) { |
| 137 | /* bit cleared on keydown */ |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 138 | if (0 == (gpio & ir->mask_keyup)) |
| 139 | ir_keydown(ir->input, data, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
| 141 | } else { |
| 142 | /* can't distinguish keydown/up :-/ */ |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 143 | ir_keydown(ir->input, data, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | } |
| 146 | |
Andrzej Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 147 | static enum hrtimer_restart cx88_ir_work(struct hrtimer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | { |
Andrzej Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 149 | unsigned long missed; |
| 150 | struct cx88_IR *ir = container_of(timer, struct cx88_IR, timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | cx88_ir_handle_key(ir); |
Andrzej Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 153 | missed = hrtimer_forward_now(&ir->timer, |
| 154 | ktime_set(0, ir->polling * 1000000)); |
| 155 | if (missed > 1) |
| 156 | ir_dprintk("Missed ticks %ld\n", missed - 1); |
| 157 | |
| 158 | return HRTIMER_RESTART; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 161 | static int __cx88_ir_start(void *priv) |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 162 | { |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 163 | struct cx88_core *core = priv; |
| 164 | struct cx88_IR *ir; |
| 165 | |
| 166 | if (!core || !core->ir) |
| 167 | return -EINVAL; |
| 168 | |
| 169 | ir = core->ir; |
| 170 | |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 171 | if (ir->polling) { |
Andrzej Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 172 | hrtimer_init(&ir->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 173 | ir->timer.function = cx88_ir_work; |
| 174 | hrtimer_start(&ir->timer, |
| 175 | ktime_set(0, ir->polling * 1000000), |
| 176 | HRTIMER_MODE_REL); |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 177 | } |
| 178 | if (ir->sampling) { |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 179 | core->pci_irqmask |= PCI_INT_IR_SMPINT; |
David Härdeman | 2997137 | 2010-10-29 16:08:02 -0300 | [diff] [blame^] | 180 | cx_write(MO_DDS_IO, 0x33F286 * ir_samplerate); /* samplerate */ |
| 181 | cx_write(MO_DDSCFG_IO, 0x5); /* enable */ |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 182 | } |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 183 | return 0; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 184 | } |
| 185 | |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 186 | static void __cx88_ir_stop(void *priv) |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 187 | { |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 188 | struct cx88_core *core = priv; |
| 189 | struct cx88_IR *ir; |
| 190 | |
| 191 | if (!core || !core->ir) |
| 192 | return; |
| 193 | |
| 194 | ir = core->ir; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 195 | if (ir->sampling) { |
| 196 | cx_write(MO_DDSCFG_IO, 0x0); |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 197 | core->pci_irqmask &= ~PCI_INT_IR_SMPINT; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 198 | } |
| 199 | |
Jean Delvare | 569b7ec | 2009-03-07 07:42:12 -0300 | [diff] [blame] | 200 | if (ir->polling) |
Andrzej Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 201 | hrtimer_cancel(&ir->timer); |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 202 | } |
| 203 | |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 204 | int cx88_ir_start(struct cx88_core *core) |
| 205 | { |
| 206 | if (core->ir->users) |
| 207 | return __cx88_ir_start(core); |
| 208 | |
| 209 | return 0; |
| 210 | } |
| 211 | |
| 212 | void cx88_ir_stop(struct cx88_core *core) |
| 213 | { |
| 214 | if (core->ir->users) |
| 215 | __cx88_ir_stop(core); |
| 216 | } |
| 217 | |
| 218 | static int cx88_ir_open(void *priv) |
| 219 | { |
| 220 | struct cx88_core *core = priv; |
| 221 | |
| 222 | core->ir->users++; |
| 223 | return __cx88_ir_start(core); |
| 224 | } |
| 225 | |
| 226 | static void cx88_ir_close(void *priv) |
| 227 | { |
| 228 | struct cx88_core *core = priv; |
| 229 | |
| 230 | core->ir->users--; |
| 231 | if (!core->ir->users) |
| 232 | __cx88_ir_stop(core); |
| 233 | } |
| 234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | /* ---------------------------------------------------------------------- */ |
| 236 | |
| 237 | int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) |
| 238 | { |
| 239 | struct cx88_IR *ir; |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 240 | struct input_dev *input_dev; |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 241 | char *ir_codes = NULL; |
Mauro Carvalho Chehab | 971e829 | 2009-12-14 13:53:37 -0300 | [diff] [blame] | 242 | u64 ir_type = IR_TYPE_OTHER; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 243 | int err = -ENOMEM; |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 244 | u32 hardware_mask = 0; /* For devices with a hardware mask, when |
| 245 | * used with a full-code IR table |
| 246 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 248 | ir = kzalloc(sizeof(*ir), GFP_KERNEL); |
| 249 | input_dev = input_allocate_device(); |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 250 | if (!ir || !input_dev) |
| 251 | goto err_out_free; |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 252 | |
| 253 | ir->input = input_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
| 255 | /* detect & configure */ |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 256 | switch (core->boardnr) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | case CX88_BOARD_DNTV_LIVE_DVB_T: |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 258 | case CX88_BOARD_KWORLD_DVB_T: |
Marco Manenti | 28ecc44 | 2006-02-07 06:45:33 -0200 | [diff] [blame] | 259 | case CX88_BOARD_KWORLD_DVB_T_CX22702: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 260 | ir_codes = RC_MAP_DNTV_LIVE_DVB_T; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 261 | ir->gpio_addr = MO_GP1_IO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | ir->mask_keycode = 0x1f; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 263 | ir->mask_keyup = 0x60; |
| 264 | ir->polling = 50; /* ms */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | break; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 266 | case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 267 | ir_codes = RC_MAP_CINERGY_1400; |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 268 | ir->sampling = 0xeb04; /* address */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 269 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | case CX88_BOARD_HAUPPAUGE: |
| 271 | case CX88_BOARD_HAUPPAUGE_DVB_T1: |
Steven Toth | fb56cb6 | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 272 | case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: |
| 273 | case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: |
Steven Toth | 611900c | 2006-01-09 15:25:12 -0200 | [diff] [blame] | 274 | case CX88_BOARD_HAUPPAUGE_HVR1100: |
Steven Toth | 76dc82a | 2006-09-30 00:43:58 -0300 | [diff] [blame] | 275 | case CX88_BOARD_HAUPPAUGE_HVR3000: |
Steven Toth | 5bd1b66 | 2008-09-04 01:17:33 -0300 | [diff] [blame] | 276 | case CX88_BOARD_HAUPPAUGE_HVR4000: |
| 277 | case CX88_BOARD_HAUPPAUGE_HVR4000LITE: |
Erik S. Beiser | f1735bb | 2009-02-28 22:29:20 -0300 | [diff] [blame] | 278 | case CX88_BOARD_PCHDTV_HD3000: |
| 279 | case CX88_BOARD_PCHDTV_HD5500: |
Steven Toth | 501d8cd | 2009-03-28 14:22:21 -0300 | [diff] [blame] | 280 | case CX88_BOARD_HAUPPAUGE_IRONLY: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 281 | ir_codes = RC_MAP_HAUPPAUGE_NEW; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 282 | ir->sampling = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | break; |
Malcolm Valentine | 2de873e | 2006-05-29 13:56:24 -0300 | [diff] [blame] | 284 | case CX88_BOARD_WINFAST_DTV2000H: |
Vlastimil Labsky | 4d14c83 | 2009-08-10 22:15:54 -0300 | [diff] [blame] | 285 | case CX88_BOARD_WINFAST_DTV2000H_J: |
Miroslav Sustek | 3047a17 | 2009-05-31 16:47:28 -0300 | [diff] [blame] | 286 | case CX88_BOARD_WINFAST_DTV1800H: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 287 | ir_codes = RC_MAP_WINFAST; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 288 | ir->gpio_addr = MO_GP0_IO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | ir->mask_keycode = 0x8f8; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 290 | ir->mask_keyup = 0x100; |
Malcolm Valentine | 2de873e | 2006-05-29 13:56:24 -0300 | [diff] [blame] | 291 | ir->polling = 50; /* ms */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | break; |
Hermann Pitton | ff97d93 | 2006-11-03 10:45:52 -0300 | [diff] [blame] | 293 | case CX88_BOARD_WINFAST2000XP_EXPERT: |
Edgar Pisani | e7d11ec | 2007-06-25 14:46:05 -0300 | [diff] [blame] | 294 | case CX88_BOARD_WINFAST_DTV1000: |
Pieter Van Schaik | 3e9a489 | 2009-04-29 03:55:31 -0300 | [diff] [blame] | 295 | case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 296 | ir_codes = RC_MAP_WINFAST; |
Hermann Pitton | ff97d93 | 2006-11-03 10:45:52 -0300 | [diff] [blame] | 297 | ir->gpio_addr = MO_GP0_IO; |
| 298 | ir->mask_keycode = 0x8f8; |
| 299 | ir->mask_keyup = 0x100; |
| 300 | ir->polling = 1; /* ms */ |
| 301 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | case CX88_BOARD_IODATA_GVBCTV7E: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 303 | ir_codes = RC_MAP_IODATA_BCTV7E; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 304 | ir->gpio_addr = MO_GP0_IO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | ir->mask_keycode = 0xfd; |
| 306 | ir->mask_keydown = 0x02; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 307 | ir->polling = 5; /* ms */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | break; |
Hermann Pitton | ff97d93 | 2006-11-03 10:45:52 -0300 | [diff] [blame] | 309 | case CX88_BOARD_PROLINK_PLAYTVPVR: |
Manuel Capinha | 239df2e | 2005-06-23 22:04:53 -0700 | [diff] [blame] | 310 | case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO: |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 311 | /* |
| 312 | * It seems that this hardware is paired with NEC extended |
| 313 | * address 0x866b. So, unfortunately, its usage with other |
| 314 | * IR's with different address won't work. Still, there are |
| 315 | * other IR's from the same manufacturer that works, like the |
| 316 | * 002-T mini RC, provided with newer PV hardware |
| 317 | */ |
| 318 | ir_codes = RC_MAP_PIXELVIEW_MK12; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 319 | ir->gpio_addr = MO_GP1_IO; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 320 | ir->mask_keyup = 0x80; |
Mauro Carvalho Chehab | 26d5683 | 2010-04-04 10:32:04 -0300 | [diff] [blame] | 321 | ir->polling = 10; /* ms */ |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 322 | hardware_mask = 0x3f; /* Hardware returns only 6 bits from command part */ |
Manuel Capinha | 239df2e | 2005-06-23 22:04:53 -0700 | [diff] [blame] | 323 | break; |
Mauro Carvalho Chehab | 7f0dd17 | 2008-04-22 14:46:01 -0300 | [diff] [blame] | 324 | case CX88_BOARD_PROLINK_PV_8000GT: |
Mauro Carvalho Chehab | a31d2bb | 2008-09-29 12:08:29 -0300 | [diff] [blame] | 325 | case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 326 | ir_codes = RC_MAP_PIXELVIEW_NEW; |
Mauro Carvalho Chehab | 7f0dd17 | 2008-04-22 14:46:01 -0300 | [diff] [blame] | 327 | ir->gpio_addr = MO_GP1_IO; |
| 328 | ir->mask_keycode = 0x3f; |
| 329 | ir->mask_keyup = 0x80; |
| 330 | ir->polling = 1; /* ms */ |
| 331 | break; |
Nickolay V. Shmyrev | b639f9d | 2006-01-23 09:44:10 -0200 | [diff] [blame] | 332 | case CX88_BOARD_KWORLD_LTV883: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 333 | ir_codes = RC_MAP_PIXELVIEW; |
Nickolay V. Shmyrev | b639f9d | 2006-01-23 09:44:10 -0200 | [diff] [blame] | 334 | ir->gpio_addr = MO_GP1_IO; |
| 335 | ir->mask_keycode = 0x1f; |
| 336 | ir->mask_keyup = 0x60; |
| 337 | ir->polling = 1; /* ms */ |
| 338 | break; |
Mauro Carvalho Chehab | a82decf | 2005-07-07 17:58:36 -0700 | [diff] [blame] | 339 | case CX88_BOARD_ADSTECH_DVB_T_PCI: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 340 | ir_codes = RC_MAP_ADSTECH_DVB_T_PCI; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 341 | ir->gpio_addr = MO_GP1_IO; |
Mauro Carvalho Chehab | a82decf | 2005-07-07 17:58:36 -0700 | [diff] [blame] | 342 | ir->mask_keycode = 0xbf; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 343 | ir->mask_keyup = 0x40; |
| 344 | ir->polling = 50; /* ms */ |
Mauro Carvalho Chehab | a82decf | 2005-07-07 17:58:36 -0700 | [diff] [blame] | 345 | break; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 346 | case CX88_BOARD_MSI_TVANYWHERE_MASTER: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 347 | ir_codes = RC_MAP_MSI_TVANYWHERE; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 348 | ir->gpio_addr = MO_GP1_IO; |
| 349 | ir->mask_keycode = 0x1f; |
| 350 | ir->mask_keyup = 0x40; |
| 351 | ir->polling = 1; /* ms */ |
| 352 | break; |
George Gazurkoff | 899ad11 | 2006-01-09 15:25:19 -0200 | [diff] [blame] | 353 | case CX88_BOARD_AVERTV_303: |
George Gazurkoff | 565f494 | 2006-01-09 15:32:46 -0200 | [diff] [blame] | 354 | case CX88_BOARD_AVERTV_STUDIO_303: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 355 | ir_codes = RC_MAP_AVERTV_303; |
George Gazurkoff | 899ad11 | 2006-01-09 15:25:19 -0200 | [diff] [blame] | 356 | ir->gpio_addr = MO_GP2_IO; |
| 357 | ir->mask_keycode = 0xfb; |
| 358 | ir->mask_keydown = 0x02; |
| 359 | ir->polling = 50; /* ms */ |
| 360 | break; |
Igor M. Liplianin | d8d8622 | 2009-09-19 09:51:12 -0300 | [diff] [blame] | 361 | case CX88_BOARD_OMICOM_SS4_PCI: |
| 362 | case CX88_BOARD_SATTRADE_ST4200: |
| 363 | case CX88_BOARD_TBS_8920: |
| 364 | case CX88_BOARD_TBS_8910: |
| 365 | case CX88_BOARD_PROF_7300: |
Igor M. Liplianin | b699c27 | 2009-11-16 22:22:32 -0300 | [diff] [blame] | 366 | case CX88_BOARD_PROF_7301: |
Igor M. Liplianin | d8d8622 | 2009-09-19 09:51:12 -0300 | [diff] [blame] | 367 | case CX88_BOARD_PROF_6200: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 368 | ir_codes = RC_MAP_TBS_NEC; |
Igor M. Liplianin | d8d8622 | 2009-09-19 09:51:12 -0300 | [diff] [blame] | 369 | ir->sampling = 0xff00; /* address */ |
| 370 | break; |
| 371 | case CX88_BOARD_TEVII_S460: |
| 372 | case CX88_BOARD_TEVII_S420: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 373 | ir_codes = RC_MAP_TEVII_NEC; |
Igor M. Liplianin | d8d8622 | 2009-09-19 09:51:12 -0300 | [diff] [blame] | 374 | ir->sampling = 0xff00; /* address */ |
| 375 | break; |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 376 | case CX88_BOARD_DNTV_LIVE_DVB_T_PRO: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 377 | ir_codes = RC_MAP_DNTV_LIVE_DVBT_PRO; |
Mauro Carvalho Chehab | 715a223 | 2009-08-29 14:15:55 -0300 | [diff] [blame] | 378 | ir->sampling = 0xff00; /* address */ |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 379 | break; |
Peter Naulls | d1009bd | 2006-08-08 09:10:05 -0300 | [diff] [blame] | 380 | case CX88_BOARD_NORWOOD_MICRO: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 381 | ir_codes = RC_MAP_NORWOOD; |
Peter Naulls | d1009bd | 2006-08-08 09:10:05 -0300 | [diff] [blame] | 382 | ir->gpio_addr = MO_GP1_IO; |
| 383 | ir->mask_keycode = 0x0e; |
| 384 | ir->mask_keyup = 0x80; |
| 385 | ir->polling = 50; /* ms */ |
| 386 | break; |
Ricardo Cerqueira | be4f451 | 2006-06-08 17:36:17 -0300 | [diff] [blame] | 387 | case CX88_BOARD_NPGTECH_REALTV_TOP10FM: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 388 | ir_codes = RC_MAP_NPGTECH; |
Mauro Carvalho Chehab | 715a223 | 2009-08-29 14:15:55 -0300 | [diff] [blame] | 389 | ir->gpio_addr = MO_GP0_IO; |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 390 | ir->mask_keycode = 0xfa; |
Mauro Carvalho Chehab | 715a223 | 2009-08-29 14:15:55 -0300 | [diff] [blame] | 391 | ir->polling = 50; /* ms */ |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 392 | break; |
Steven Toth | 9121106 | 2008-01-22 01:00:33 -0300 | [diff] [blame] | 393 | case CX88_BOARD_PINNACLE_PCTV_HD_800i: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 394 | ir_codes = RC_MAP_PINNACLE_PCTV_HD; |
Mauro Carvalho Chehab | 715a223 | 2009-08-29 14:15:55 -0300 | [diff] [blame] | 395 | ir->sampling = 1; |
Steven Toth | 9121106 | 2008-01-22 01:00:33 -0300 | [diff] [blame] | 396 | break; |
Dâniel Fraga | ba92803 | 2008-04-08 19:56:44 -0300 | [diff] [blame] | 397 | case CX88_BOARD_POWERCOLOR_REAL_ANGEL: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 398 | ir_codes = RC_MAP_POWERCOLOR_REAL_ANGEL; |
Mauro Carvalho Chehab | 715a223 | 2009-08-29 14:15:55 -0300 | [diff] [blame] | 399 | ir->gpio_addr = MO_GP2_IO; |
Dâniel Fraga | ba92803 | 2008-04-08 19:56:44 -0300 | [diff] [blame] | 400 | ir->mask_keycode = 0x7e; |
Mauro Carvalho Chehab | 715a223 | 2009-08-29 14:15:55 -0300 | [diff] [blame] | 401 | ir->polling = 100; /* ms */ |
Dâniel Fraga | ba92803 | 2008-04-08 19:56:44 -0300 | [diff] [blame] | 402 | break; |
Sergey Ivanov | 111ac84 | 2010-08-09 10:18:32 -0300 | [diff] [blame] | 403 | case CX88_BOARD_TWINHAN_VP1027_DVBS: |
| 404 | ir_codes = RC_MAP_TWINHAN_VP1027_DVBS; |
| 405 | ir_type = IR_TYPE_NEC; |
| 406 | ir->sampling = 0xff00; /* address */ |
| 407 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | } |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 409 | |
David Härdeman | 2997137 | 2010-10-29 16:08:02 -0300 | [diff] [blame^] | 410 | if (!ir_codes) { |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 411 | err = -ENODEV; |
| 412 | goto err_out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | } |
| 414 | |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 415 | /* |
| 416 | * The usage of mask_keycode were very convenient, due to several |
| 417 | * reasons. Among others, the scancode tables were using the scancode |
| 418 | * as the index elements. So, the less bits it was used, the smaller |
| 419 | * the table were stored. After the input changes, the better is to use |
| 420 | * the full scancodes, since it allows replacing the IR remote by |
| 421 | * another one. Unfortunately, there are still some hardware, like |
| 422 | * Pixelview Ultra Pro, where only part of the scancode is sent via |
| 423 | * GPIO. So, there's no way to get the full scancode. Due to that, |
| 424 | * hardware_mask were introduced here: it represents those hardware |
| 425 | * that has such limits. |
| 426 | */ |
| 427 | if (hardware_mask && !ir->mask_keycode) |
| 428 | ir->mask_keycode = hardware_mask; |
| 429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | /* init input device */ |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 431 | snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name); |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 432 | snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 434 | input_dev->name = ir->name; |
| 435 | input_dev->phys = ir->phys; |
| 436 | input_dev->id.bustype = BUS_PCI; |
| 437 | input_dev->id.version = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | if (pci->subsystem_vendor) { |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 439 | input_dev->id.vendor = pci->subsystem_vendor; |
| 440 | input_dev->id.product = pci->subsystem_device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | } else { |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 442 | input_dev->id.vendor = pci->vendor; |
| 443 | input_dev->id.product = pci->device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | } |
Dmitry Torokhov | 2c8a3a3 | 2007-07-16 09:28:15 -0300 | [diff] [blame] | 445 | input_dev->dev.parent = &pci->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | /* record handles to ourself */ |
| 447 | ir->core = core; |
| 448 | core->ir = ir; |
| 449 | |
David Härdeman | 2997137 | 2010-10-29 16:08:02 -0300 | [diff] [blame^] | 450 | if (ir->sampling) { |
| 451 | ir_type = IR_TYPE_ALL; |
| 452 | ir->props.driver_type = RC_DRIVER_IR_RAW; |
| 453 | ir->props.timeout = 10 * 1000 * 1000; /* 10 ms */ |
| 454 | } else |
| 455 | ir->props.driver_type = RC_DRIVER_SCANCODE; |
| 456 | |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 457 | ir->props.priv = core; |
| 458 | ir->props.open = cx88_ir_open; |
| 459 | ir->props.close = cx88_ir_close; |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 460 | ir->props.scanmask = hardware_mask; |
David Härdeman | 2997137 | 2010-10-29 16:08:02 -0300 | [diff] [blame^] | 461 | ir->props.allowed_protos = ir_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
| 463 | /* all done */ |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 464 | err = ir_input_register(ir->input, ir_codes, &ir->props, MODULE_NAME); |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 465 | if (err) |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 466 | goto err_out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
| 468 | return 0; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 469 | |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 470 | err_out_free: |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 471 | core->ir = NULL; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 472 | kfree(ir); |
| 473 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | int cx88_ir_fini(struct cx88_core *core) |
| 477 | { |
| 478 | struct cx88_IR *ir = core->ir; |
| 479 | |
| 480 | /* skip detach on non attached boards */ |
| 481 | if (NULL == ir) |
| 482 | return 0; |
| 483 | |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 484 | cx88_ir_stop(core); |
Mauro Carvalho Chehab | 38ef6aa | 2009-12-11 09:47:42 -0300 | [diff] [blame] | 485 | ir_input_unregister(ir->input); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | kfree(ir); |
| 487 | |
| 488 | /* done */ |
| 489 | core->ir = NULL; |
| 490 | return 0; |
| 491 | } |
| 492 | |
| 493 | /* ---------------------------------------------------------------------- */ |
| 494 | |
| 495 | void cx88_ir_irq(struct cx88_core *core) |
| 496 | { |
| 497 | struct cx88_IR *ir = core->ir; |
David Härdeman | 2997137 | 2010-10-29 16:08:02 -0300 | [diff] [blame^] | 498 | u32 samples; |
| 499 | unsigned todo, bits; |
| 500 | struct ir_raw_event ev; |
| 501 | struct ir_input_dev *irdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
David Härdeman | 2997137 | 2010-10-29 16:08:02 -0300 | [diff] [blame^] | 503 | if (!ir || !ir->sampling) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | return; |
| 505 | |
David Härdeman | 2997137 | 2010-10-29 16:08:02 -0300 | [diff] [blame^] | 506 | /* |
| 507 | * Samples are stored in a 32 bit register, oldest sample in |
| 508 | * the msb. A set bit represents space and an unset bit |
| 509 | * represents a pulse. |
| 510 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | samples = cx_read(MO_SAMPLE_IO); |
David Härdeman | 2997137 | 2010-10-29 16:08:02 -0300 | [diff] [blame^] | 512 | irdev = input_get_drvdata(ir->input); |
| 513 | |
| 514 | if (samples == 0xff && irdev->idle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | return; |
David Härdeman | 2997137 | 2010-10-29 16:08:02 -0300 | [diff] [blame^] | 516 | |
| 517 | init_ir_raw_event(&ev); |
| 518 | for (todo = 32; todo > 0; todo -= bits) { |
| 519 | ev.pulse = samples & 0x80000000 ? false : true; |
| 520 | bits = min(todo, 32U - fls(ev.pulse ? samples : ~samples)); |
| 521 | ev.duration = (bits * NSEC_PER_SEC) / (1000 * ir_samplerate); |
| 522 | ir_raw_event_store_with_filter(ir->input, &ev); |
| 523 | samples <<= bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } |
David Härdeman | 2997137 | 2010-10-29 16:08:02 -0300 | [diff] [blame^] | 525 | ir_raw_event_handle(ir->input); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | } |
| 527 | |
Mauro Carvalho Chehab | 44243fc | 2010-09-23 00:51:44 -0300 | [diff] [blame] | 528 | void cx88_i2c_init_ir(struct cx88_core *core) |
| 529 | { |
| 530 | struct i2c_board_info info; |
| 531 | const unsigned short addr_list[] = { |
| 532 | 0x18, 0x6b, 0x71, |
| 533 | I2C_CLIENT_END |
| 534 | }; |
| 535 | const unsigned short *addrp; |
| 536 | /* Instantiate the IR receiver device, if present */ |
| 537 | if (0 != core->i2c_rc) |
| 538 | return; |
| 539 | |
| 540 | memset(&info, 0, sizeof(struct i2c_board_info)); |
| 541 | strlcpy(info.type, "ir_video", I2C_NAME_SIZE); |
| 542 | |
| 543 | /* |
| 544 | * We can't call i2c_new_probed_device() because it uses |
| 545 | * quick writes for probing and at least some RC receiver |
| 546 | * devices only reply to reads. |
| 547 | * Also, Hauppauge XVR needs to be specified, as address 0x71 |
| 548 | * conflicts with another remote type used with saa7134 |
| 549 | */ |
| 550 | for (addrp = addr_list; *addrp != I2C_CLIENT_END; addrp++) { |
| 551 | info.platform_data = NULL; |
| 552 | memset(&core->init_data, 0, sizeof(core->init_data)); |
| 553 | |
| 554 | if (*addrp == 0x71) { |
| 555 | /* Hauppauge XVR */ |
| 556 | core->init_data.name = "cx88 Hauppauge XVR remote"; |
| 557 | core->init_data.ir_codes = RC_MAP_HAUPPAUGE_NEW; |
| 558 | core->init_data.type = IR_TYPE_RC5; |
| 559 | core->init_data.internal_get_key_func = IR_KBD_GET_KEY_HAUP_XVR; |
| 560 | |
| 561 | info.platform_data = &core->init_data; |
| 562 | } |
| 563 | if (i2c_smbus_xfer(&core->i2c_adap, *addrp, 0, |
| 564 | I2C_SMBUS_READ, 0, |
| 565 | I2C_SMBUS_QUICK, NULL) >= 0) { |
| 566 | info.addr = *addrp; |
| 567 | i2c_new_device(&core->i2c_adap, &info); |
| 568 | break; |
| 569 | } |
| 570 | } |
| 571 | } |
| 572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | /* ---------------------------------------------------------------------- */ |
| 574 | |
| 575 | MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe"); |
| 576 | MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls"); |
| 577 | MODULE_LICENSE("GPL"); |