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; |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 44 | u64 ir_type; |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 45 | |
| 46 | int users; |
| 47 | |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 48 | char name[32]; |
| 49 | char phys[32]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | /* sample from gpio pin 16 */ |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 52 | u32 sampling; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 53 | u32 samples[16]; |
| 54 | int scount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | /* poll external decoder */ |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 57 | int polling; |
Andrzej Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 58 | struct hrtimer timer; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 59 | u32 gpio_addr; |
| 60 | u32 last_gpio; |
| 61 | u32 mask_keycode; |
| 62 | u32 mask_keydown; |
| 63 | u32 mask_keyup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 66 | static int ir_debug; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 67 | module_param(ir_debug, int, 0644); /* debug level [IR] */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]"); |
| 69 | |
| 70 | #define ir_dprintk(fmt, arg...) if (ir_debug) \ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 71 | printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
| 73 | /* ---------------------------------------------------------------------- */ |
| 74 | |
| 75 | static void cx88_ir_handle_key(struct cx88_IR *ir) |
| 76 | { |
| 77 | struct cx88_core *core = ir->core; |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 78 | u32 gpio, data, auxgpio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | /* read gpio value */ |
| 81 | gpio = cx_read(ir->gpio_addr); |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 82 | switch (core->boardnr) { |
Michael Krufky | 829ea96 | 2007-06-25 14:54:09 -0300 | [diff] [blame] | 83 | case CX88_BOARD_NPGTECH_REALTV_TOP10FM: |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 84 | /* This board apparently uses a combination of 2 GPIO |
| 85 | to represent the keys. Additionally, the second GPIO |
| 86 | can be used for parity. |
| 87 | |
| 88 | Example: |
| 89 | |
| 90 | for key "5" |
| 91 | gpio = 0x758, auxgpio = 0xe5 or 0xf5 |
| 92 | for key "Power" |
| 93 | gpio = 0x758, auxgpio = 0xed or 0xfd |
| 94 | */ |
| 95 | |
| 96 | auxgpio = cx_read(MO_GP1_IO); |
| 97 | /* Take out the parity part */ |
Ricardo Cerqueira | a62c61d | 2006-07-17 16:34:27 -0300 | [diff] [blame] | 98 | gpio=(gpio & 0x7fd) + (auxgpio & 0xef); |
Michael Krufky | 829ea96 | 2007-06-25 14:54:09 -0300 | [diff] [blame] | 99 | break; |
| 100 | case CX88_BOARD_WINFAST_DTV1000: |
Miroslav Sustek | 3047a17 | 2009-05-31 16:47:28 -0300 | [diff] [blame] | 101 | case CX88_BOARD_WINFAST_DTV1800H: |
Pieter Van Schaik | 3e9a489 | 2009-04-29 03:55:31 -0300 | [diff] [blame] | 102 | case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL: |
Edgar Pisani | e7d11ec | 2007-06-25 14:46:05 -0300 | [diff] [blame] | 103 | gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900); |
| 104 | auxgpio = gpio; |
Michael Krufky | 829ea96 | 2007-06-25 14:54:09 -0300 | [diff] [blame] | 105 | break; |
| 106 | default: |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 107 | auxgpio = gpio; |
Michael Krufky | 829ea96 | 2007-06-25 14:54:09 -0300 | [diff] [blame] | 108 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | if (ir->polling) { |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 110 | if (ir->last_gpio == auxgpio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | return; |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 112 | ir->last_gpio = auxgpio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | /* extract data */ |
| 116 | data = ir_extract_bits(gpio, ir->mask_keycode); |
| 117 | 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] | 118 | gpio, data, |
| 119 | ir->polling ? "poll" : "irq", |
| 120 | (gpio & ir->mask_keydown) ? " down" : "", |
| 121 | (gpio & ir->mask_keyup) ? " up" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 123 | if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) { |
Peter Naulls | d1009bd | 2006-08-08 09:10:05 -0300 | [diff] [blame] | 124 | u32 gpio_key = cx_read(MO_GP0_IO); |
| 125 | |
| 126 | data = (data << 4) | ((gpio_key & 0xf0) >> 4); |
| 127 | |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 128 | ir_keydown(ir->input, data, 0); |
Peter Naulls | d1009bd | 2006-08-08 09:10:05 -0300 | [diff] [blame] | 129 | |
| 130 | } else if (ir->mask_keydown) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | /* bit set on keydown */ |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 132 | if (gpio & ir->mask_keydown) |
| 133 | ir_keydown(ir->input, data, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
| 135 | } else if (ir->mask_keyup) { |
| 136 | /* bit cleared on keydown */ |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 137 | if (0 == (gpio & ir->mask_keyup)) |
| 138 | ir_keydown(ir->input, data, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
| 140 | } else { |
| 141 | /* can't distinguish keydown/up :-/ */ |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 142 | ir_keydown(ir->input, data, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | } |
| 144 | } |
| 145 | |
Andrzej Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 146 | static enum hrtimer_restart cx88_ir_work(struct hrtimer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | { |
Andrzej Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 148 | unsigned long missed; |
| 149 | struct cx88_IR *ir = container_of(timer, struct cx88_IR, timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
| 151 | cx88_ir_handle_key(ir); |
Andrzej Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 152 | missed = hrtimer_forward_now(&ir->timer, |
| 153 | ktime_set(0, ir->polling * 1000000)); |
| 154 | if (missed > 1) |
| 155 | ir_dprintk("Missed ticks %ld\n", missed - 1); |
| 156 | |
| 157 | return HRTIMER_RESTART; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | } |
| 159 | |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 160 | static int __cx88_ir_start(void *priv) |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 161 | { |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 162 | struct cx88_core *core = priv; |
| 163 | struct cx88_IR *ir; |
| 164 | |
| 165 | if (!core || !core->ir) |
| 166 | return -EINVAL; |
| 167 | |
| 168 | ir = core->ir; |
| 169 | |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 170 | if (ir->polling) { |
Andrzej Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 171 | hrtimer_init(&ir->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 172 | ir->timer.function = cx88_ir_work; |
| 173 | hrtimer_start(&ir->timer, |
| 174 | ktime_set(0, ir->polling * 1000000), |
| 175 | HRTIMER_MODE_REL); |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 176 | } |
| 177 | if (ir->sampling) { |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 178 | core->pci_irqmask |= PCI_INT_IR_SMPINT; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 179 | cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */ |
| 180 | cx_write(MO_DDSCFG_IO, 0x5); /* enable */ |
| 181 | } |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 182 | return 0; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 183 | } |
| 184 | |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 185 | static void __cx88_ir_stop(void *priv) |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 186 | { |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 187 | struct cx88_core *core = priv; |
| 188 | struct cx88_IR *ir; |
| 189 | |
| 190 | if (!core || !core->ir) |
| 191 | return; |
| 192 | |
| 193 | ir = core->ir; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 194 | if (ir->sampling) { |
| 195 | cx_write(MO_DDSCFG_IO, 0x0); |
Trent Piepho | 8ddac9e | 2007-08-18 06:57:55 -0300 | [diff] [blame] | 196 | core->pci_irqmask &= ~PCI_INT_IR_SMPINT; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 197 | } |
| 198 | |
Jean Delvare | 569b7ec | 2009-03-07 07:42:12 -0300 | [diff] [blame] | 199 | if (ir->polling) |
Andrzej Hajda | 3c1c48b | 2009-07-02 11:50:35 -0300 | [diff] [blame] | 200 | hrtimer_cancel(&ir->timer); |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 201 | } |
| 202 | |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 203 | int cx88_ir_start(struct cx88_core *core) |
| 204 | { |
| 205 | if (core->ir->users) |
| 206 | return __cx88_ir_start(core); |
| 207 | |
| 208 | return 0; |
| 209 | } |
| 210 | |
| 211 | void cx88_ir_stop(struct cx88_core *core) |
| 212 | { |
| 213 | if (core->ir->users) |
| 214 | __cx88_ir_stop(core); |
| 215 | } |
| 216 | |
| 217 | static int cx88_ir_open(void *priv) |
| 218 | { |
| 219 | struct cx88_core *core = priv; |
| 220 | |
| 221 | core->ir->users++; |
| 222 | return __cx88_ir_start(core); |
| 223 | } |
| 224 | |
| 225 | static void cx88_ir_close(void *priv) |
| 226 | { |
| 227 | struct cx88_core *core = priv; |
| 228 | |
| 229 | core->ir->users--; |
| 230 | if (!core->ir->users) |
| 231 | __cx88_ir_stop(core); |
| 232 | } |
| 233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | /* ---------------------------------------------------------------------- */ |
| 235 | |
| 236 | int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) |
| 237 | { |
| 238 | struct cx88_IR *ir; |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 239 | struct input_dev *input_dev; |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 240 | char *ir_codes = NULL; |
Mauro Carvalho Chehab | 971e829 | 2009-12-14 13:53:37 -0300 | [diff] [blame] | 241 | u64 ir_type = IR_TYPE_OTHER; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 242 | int err = -ENOMEM; |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 243 | u32 hardware_mask = 0; /* For devices with a hardware mask, when |
| 244 | * used with a full-code IR table |
| 245 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 247 | ir = kzalloc(sizeof(*ir), GFP_KERNEL); |
| 248 | input_dev = input_allocate_device(); |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 249 | if (!ir || !input_dev) |
| 250 | goto err_out_free; |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 251 | |
| 252 | ir->input = input_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
| 254 | /* detect & configure */ |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 255 | switch (core->boardnr) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | case CX88_BOARD_DNTV_LIVE_DVB_T: |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 257 | case CX88_BOARD_KWORLD_DVB_T: |
Marco Manenti | 28ecc44 | 2006-02-07 06:45:33 -0200 | [diff] [blame] | 258 | case CX88_BOARD_KWORLD_DVB_T_CX22702: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 259 | ir_codes = RC_MAP_DNTV_LIVE_DVB_T; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 260 | ir->gpio_addr = MO_GP1_IO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | ir->mask_keycode = 0x1f; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 262 | ir->mask_keyup = 0x60; |
| 263 | ir->polling = 50; /* ms */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | break; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 265 | case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 266 | ir_codes = RC_MAP_CINERGY_1400; |
David Härdeman | 5a143b1 | 2010-04-24 18:14:00 -0300 | [diff] [blame] | 267 | ir_type = IR_TYPE_NEC; |
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_type = IR_TYPE_RC5; |
| 283 | ir->sampling = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | break; |
Malcolm Valentine | 2de873e | 2006-05-29 13:56:24 -0300 | [diff] [blame] | 285 | case CX88_BOARD_WINFAST_DTV2000H: |
Vlastimil Labsky | 4d14c83 | 2009-08-10 22:15:54 -0300 | [diff] [blame] | 286 | case CX88_BOARD_WINFAST_DTV2000H_J: |
Miroslav Sustek | 3047a17 | 2009-05-31 16:47:28 -0300 | [diff] [blame] | 287 | case CX88_BOARD_WINFAST_DTV1800H: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 288 | ir_codes = RC_MAP_WINFAST; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 289 | ir->gpio_addr = MO_GP0_IO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | ir->mask_keycode = 0x8f8; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 291 | ir->mask_keyup = 0x100; |
Malcolm Valentine | 2de873e | 2006-05-29 13:56:24 -0300 | [diff] [blame] | 292 | ir->polling = 50; /* ms */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | break; |
Hermann Pitton | ff97d93 | 2006-11-03 10:45:52 -0300 | [diff] [blame] | 294 | case CX88_BOARD_WINFAST2000XP_EXPERT: |
Edgar Pisani | e7d11ec | 2007-06-25 14:46:05 -0300 | [diff] [blame] | 295 | case CX88_BOARD_WINFAST_DTV1000: |
Pieter Van Schaik | 3e9a489 | 2009-04-29 03:55:31 -0300 | [diff] [blame] | 296 | case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 297 | ir_codes = RC_MAP_WINFAST; |
Hermann Pitton | ff97d93 | 2006-11-03 10:45:52 -0300 | [diff] [blame] | 298 | ir->gpio_addr = MO_GP0_IO; |
| 299 | ir->mask_keycode = 0x8f8; |
| 300 | ir->mask_keyup = 0x100; |
| 301 | ir->polling = 1; /* ms */ |
| 302 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | case CX88_BOARD_IODATA_GVBCTV7E: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 304 | ir_codes = RC_MAP_IODATA_BCTV7E; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 305 | ir->gpio_addr = MO_GP0_IO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | ir->mask_keycode = 0xfd; |
| 307 | ir->mask_keydown = 0x02; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 308 | ir->polling = 5; /* ms */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | break; |
Hermann Pitton | ff97d93 | 2006-11-03 10:45:52 -0300 | [diff] [blame] | 310 | case CX88_BOARD_PROLINK_PLAYTVPVR: |
Manuel Capinha | 239df2e | 2005-06-23 22:04:53 -0700 | [diff] [blame] | 311 | case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO: |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 312 | /* |
| 313 | * It seems that this hardware is paired with NEC extended |
| 314 | * address 0x866b. So, unfortunately, its usage with other |
| 315 | * IR's with different address won't work. Still, there are |
| 316 | * other IR's from the same manufacturer that works, like the |
| 317 | * 002-T mini RC, provided with newer PV hardware |
| 318 | */ |
| 319 | ir_codes = RC_MAP_PIXELVIEW_MK12; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 320 | ir->gpio_addr = MO_GP1_IO; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 321 | ir->mask_keyup = 0x80; |
Mauro Carvalho Chehab | 26d5683 | 2010-04-04 10:32:04 -0300 | [diff] [blame] | 322 | ir->polling = 10; /* ms */ |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 323 | hardware_mask = 0x3f; /* Hardware returns only 6 bits from command part */ |
Manuel Capinha | 239df2e | 2005-06-23 22:04:53 -0700 | [diff] [blame] | 324 | break; |
Mauro Carvalho Chehab | 7f0dd17 | 2008-04-22 14:46:01 -0300 | [diff] [blame] | 325 | case CX88_BOARD_PROLINK_PV_8000GT: |
Mauro Carvalho Chehab | a31d2bb | 2008-09-29 12:08:29 -0300 | [diff] [blame] | 326 | case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 327 | ir_codes = RC_MAP_PIXELVIEW_NEW; |
Mauro Carvalho Chehab | 7f0dd17 | 2008-04-22 14:46:01 -0300 | [diff] [blame] | 328 | ir->gpio_addr = MO_GP1_IO; |
| 329 | ir->mask_keycode = 0x3f; |
| 330 | ir->mask_keyup = 0x80; |
| 331 | ir->polling = 1; /* ms */ |
| 332 | break; |
Nickolay V. Shmyrev | b639f9d | 2006-01-23 09:44:10 -0200 | [diff] [blame] | 333 | case CX88_BOARD_KWORLD_LTV883: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 334 | ir_codes = RC_MAP_PIXELVIEW; |
Nickolay V. Shmyrev | b639f9d | 2006-01-23 09:44:10 -0200 | [diff] [blame] | 335 | ir->gpio_addr = MO_GP1_IO; |
| 336 | ir->mask_keycode = 0x1f; |
| 337 | ir->mask_keyup = 0x60; |
| 338 | ir->polling = 1; /* ms */ |
| 339 | break; |
Mauro Carvalho Chehab | a82decf | 2005-07-07 17:58:36 -0700 | [diff] [blame] | 340 | case CX88_BOARD_ADSTECH_DVB_T_PCI: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 341 | ir_codes = RC_MAP_ADSTECH_DVB_T_PCI; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 342 | ir->gpio_addr = MO_GP1_IO; |
Mauro Carvalho Chehab | a82decf | 2005-07-07 17:58:36 -0700 | [diff] [blame] | 343 | ir->mask_keycode = 0xbf; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 344 | ir->mask_keyup = 0x40; |
| 345 | ir->polling = 50; /* ms */ |
Mauro Carvalho Chehab | a82decf | 2005-07-07 17:58:36 -0700 | [diff] [blame] | 346 | break; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 347 | case CX88_BOARD_MSI_TVANYWHERE_MASTER: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 348 | ir_codes = RC_MAP_MSI_TVANYWHERE; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 349 | ir->gpio_addr = MO_GP1_IO; |
| 350 | ir->mask_keycode = 0x1f; |
| 351 | ir->mask_keyup = 0x40; |
| 352 | ir->polling = 1; /* ms */ |
| 353 | break; |
George Gazurkoff | 899ad11 | 2006-01-09 15:25:19 -0200 | [diff] [blame] | 354 | case CX88_BOARD_AVERTV_303: |
George Gazurkoff | 565f494 | 2006-01-09 15:32:46 -0200 | [diff] [blame] | 355 | case CX88_BOARD_AVERTV_STUDIO_303: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 356 | ir_codes = RC_MAP_AVERTV_303; |
George Gazurkoff | 899ad11 | 2006-01-09 15:25:19 -0200 | [diff] [blame] | 357 | ir->gpio_addr = MO_GP2_IO; |
| 358 | ir->mask_keycode = 0xfb; |
| 359 | ir->mask_keydown = 0x02; |
| 360 | ir->polling = 50; /* ms */ |
| 361 | break; |
Igor M. Liplianin | d8d8622 | 2009-09-19 09:51:12 -0300 | [diff] [blame] | 362 | case CX88_BOARD_OMICOM_SS4_PCI: |
| 363 | case CX88_BOARD_SATTRADE_ST4200: |
| 364 | case CX88_BOARD_TBS_8920: |
| 365 | case CX88_BOARD_TBS_8910: |
| 366 | case CX88_BOARD_PROF_7300: |
Igor M. Liplianin | b699c27 | 2009-11-16 22:22:32 -0300 | [diff] [blame] | 367 | case CX88_BOARD_PROF_7301: |
Igor M. Liplianin | d8d8622 | 2009-09-19 09:51:12 -0300 | [diff] [blame] | 368 | case CX88_BOARD_PROF_6200: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 369 | ir_codes = RC_MAP_TBS_NEC; |
David Härdeman | 5a143b1 | 2010-04-24 18:14:00 -0300 | [diff] [blame] | 370 | ir_type = IR_TYPE_NEC; |
Igor M. Liplianin | d8d8622 | 2009-09-19 09:51:12 -0300 | [diff] [blame] | 371 | ir->sampling = 0xff00; /* address */ |
| 372 | break; |
| 373 | case CX88_BOARD_TEVII_S460: |
| 374 | case CX88_BOARD_TEVII_S420: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 375 | ir_codes = RC_MAP_TEVII_NEC; |
David Härdeman | 5a143b1 | 2010-04-24 18:14:00 -0300 | [diff] [blame] | 376 | ir_type = IR_TYPE_NEC; |
Igor M. Liplianin | d8d8622 | 2009-09-19 09:51:12 -0300 | [diff] [blame] | 377 | ir->sampling = 0xff00; /* address */ |
| 378 | break; |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 379 | case CX88_BOARD_DNTV_LIVE_DVB_T_PRO: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 380 | ir_codes = RC_MAP_DNTV_LIVE_DVBT_PRO; |
David Härdeman | 5a143b1 | 2010-04-24 18:14:00 -0300 | [diff] [blame] | 381 | ir_type = IR_TYPE_NEC; |
Mauro Carvalho Chehab | 715a223 | 2009-08-29 14:15:55 -0300 | [diff] [blame] | 382 | ir->sampling = 0xff00; /* address */ |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 383 | break; |
Peter Naulls | d1009bd | 2006-08-08 09:10:05 -0300 | [diff] [blame] | 384 | case CX88_BOARD_NORWOOD_MICRO: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 385 | ir_codes = RC_MAP_NORWOOD; |
Peter Naulls | d1009bd | 2006-08-08 09:10:05 -0300 | [diff] [blame] | 386 | ir->gpio_addr = MO_GP1_IO; |
| 387 | ir->mask_keycode = 0x0e; |
| 388 | ir->mask_keyup = 0x80; |
| 389 | ir->polling = 50; /* ms */ |
| 390 | break; |
Ricardo Cerqueira | be4f451 | 2006-06-08 17:36:17 -0300 | [diff] [blame] | 391 | case CX88_BOARD_NPGTECH_REALTV_TOP10FM: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 392 | ir_codes = RC_MAP_NPGTECH; |
Mauro Carvalho Chehab | 715a223 | 2009-08-29 14:15:55 -0300 | [diff] [blame] | 393 | ir->gpio_addr = MO_GP0_IO; |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 394 | ir->mask_keycode = 0xfa; |
Mauro Carvalho Chehab | 715a223 | 2009-08-29 14:15:55 -0300 | [diff] [blame] | 395 | ir->polling = 50; /* ms */ |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 396 | break; |
Steven Toth | 9121106 | 2008-01-22 01:00:33 -0300 | [diff] [blame] | 397 | case CX88_BOARD_PINNACLE_PCTV_HD_800i: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 398 | ir_codes = RC_MAP_PINNACLE_PCTV_HD; |
Mauro Carvalho Chehab | 715a223 | 2009-08-29 14:15:55 -0300 | [diff] [blame] | 399 | ir_type = IR_TYPE_RC5; |
| 400 | ir->sampling = 1; |
Steven Toth | 9121106 | 2008-01-22 01:00:33 -0300 | [diff] [blame] | 401 | break; |
Dâniel Fraga | ba92803 | 2008-04-08 19:56:44 -0300 | [diff] [blame] | 402 | case CX88_BOARD_POWERCOLOR_REAL_ANGEL: |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 403 | ir_codes = RC_MAP_POWERCOLOR_REAL_ANGEL; |
Mauro Carvalho Chehab | 715a223 | 2009-08-29 14:15:55 -0300 | [diff] [blame] | 404 | ir->gpio_addr = MO_GP2_IO; |
Dâniel Fraga | ba92803 | 2008-04-08 19:56:44 -0300 | [diff] [blame] | 405 | ir->mask_keycode = 0x7e; |
Mauro Carvalho Chehab | 715a223 | 2009-08-29 14:15:55 -0300 | [diff] [blame] | 406 | ir->polling = 100; /* ms */ |
Dâniel Fraga | ba92803 | 2008-04-08 19:56:44 -0300 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | if (NULL == 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 | |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 434 | ir->ir_type = ir_type; |
Mauro Carvalho Chehab | 055cd55 | 2009-11-29 08:19:59 -0300 | [diff] [blame] | 435 | |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 436 | input_dev->name = ir->name; |
| 437 | input_dev->phys = ir->phys; |
| 438 | input_dev->id.bustype = BUS_PCI; |
| 439 | input_dev->id.version = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | if (pci->subsystem_vendor) { |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 441 | input_dev->id.vendor = pci->subsystem_vendor; |
| 442 | input_dev->id.product = pci->subsystem_device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | } else { |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 444 | input_dev->id.vendor = pci->vendor; |
| 445 | input_dev->id.product = pci->device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | } |
Dmitry Torokhov | 2c8a3a3 | 2007-07-16 09:28:15 -0300 | [diff] [blame] | 447 | input_dev->dev.parent = &pci->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | /* record handles to ourself */ |
| 449 | ir->core = core; |
| 450 | core->ir = ir; |
| 451 | |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 452 | ir->props.priv = core; |
| 453 | ir->props.open = cx88_ir_open; |
| 454 | ir->props.close = cx88_ir_close; |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 455 | ir->props.scanmask = hardware_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | |
| 457 | /* all done */ |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 458 | err = ir_input_register(ir->input, ir_codes, &ir->props, MODULE_NAME); |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 459 | if (err) |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 460 | goto err_out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
| 462 | return 0; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 463 | |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 464 | err_out_free: |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 465 | core->ir = NULL; |
Dmitry Torokhov | b07b478 | 2006-11-20 10:23:04 -0300 | [diff] [blame] | 466 | kfree(ir); |
| 467 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | } |
| 469 | |
| 470 | int cx88_ir_fini(struct cx88_core *core) |
| 471 | { |
| 472 | struct cx88_IR *ir = core->ir; |
| 473 | |
| 474 | /* skip detach on non attached boards */ |
| 475 | if (NULL == ir) |
| 476 | return 0; |
| 477 | |
Mauro Carvalho Chehab | 92f4fc1 | 2010-03-31 16:07:49 -0300 | [diff] [blame] | 478 | cx88_ir_stop(core); |
Mauro Carvalho Chehab | 38ef6aa | 2009-12-11 09:47:42 -0300 | [diff] [blame] | 479 | ir_input_unregister(ir->input); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | kfree(ir); |
| 481 | |
| 482 | /* done */ |
| 483 | core->ir = NULL; |
| 484 | return 0; |
| 485 | } |
| 486 | |
| 487 | /* ---------------------------------------------------------------------- */ |
| 488 | |
| 489 | void cx88_ir_irq(struct cx88_core *core) |
| 490 | { |
| 491 | struct cx88_IR *ir = core->ir; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 492 | u32 samples, ircode; |
Darron Broad | 34c0802 | 2008-09-22 00:54:59 -0300 | [diff] [blame] | 493 | int i, start, range, toggle, dev, code; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | |
| 495 | if (NULL == ir) |
| 496 | return; |
| 497 | if (!ir->sampling) |
| 498 | return; |
| 499 | |
| 500 | samples = cx_read(MO_SAMPLE_IO); |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 501 | if (0 != samples && 0xffffffff != samples) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | /* record sample data */ |
| 503 | if (ir->scount < ARRAY_SIZE(ir->samples)) |
| 504 | ir->samples[ir->scount++] = samples; |
| 505 | return; |
| 506 | } |
| 507 | if (!ir->scount) { |
| 508 | /* nothing to sample */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | return; |
| 510 | } |
| 511 | |
| 512 | /* have a complete sample */ |
| 513 | if (ir->scount < ARRAY_SIZE(ir->samples)) |
| 514 | ir->samples[ir->scount++] = samples; |
| 515 | for (i = 0; i < ir->scount; i++) |
| 516 | ir->samples[i] = ~ir->samples[i]; |
| 517 | if (ir_debug) |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 518 | ir_dump_samples(ir->samples, ir->scount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | |
| 520 | /* decode it */ |
Trent Piepho | 6a59d64 | 2007-08-15 14:41:57 -0300 | [diff] [blame] | 521 | switch (core->boardnr) { |
Igor M. Liplianin | d8d8622 | 2009-09-19 09:51:12 -0300 | [diff] [blame] | 522 | case CX88_BOARD_TEVII_S460: |
| 523 | case CX88_BOARD_TEVII_S420: |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 524 | case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1: |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 525 | case CX88_BOARD_DNTV_LIVE_DVB_T_PRO: |
Igor M. Liplianin | d8d8622 | 2009-09-19 09:51:12 -0300 | [diff] [blame] | 526 | case CX88_BOARD_OMICOM_SS4_PCI: |
| 527 | case CX88_BOARD_SATTRADE_ST4200: |
| 528 | case CX88_BOARD_TBS_8920: |
| 529 | case CX88_BOARD_TBS_8910: |
| 530 | case CX88_BOARD_PROF_7300: |
Igor M. Liplianin | b699c27 | 2009-11-16 22:22:32 -0300 | [diff] [blame] | 531 | case CX88_BOARD_PROF_7301: |
Igor M. Liplianin | d8d8622 | 2009-09-19 09:51:12 -0300 | [diff] [blame] | 532 | case CX88_BOARD_PROF_6200: |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 533 | ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4); |
| 534 | |
| 535 | if (ircode == 0xffffffff) { /* decoding error */ |
| 536 | ir_dprintk("pulse distance decoding error\n"); |
| 537 | break; |
| 538 | } |
| 539 | |
| 540 | ir_dprintk("pulse distance decoded: %x\n", ircode); |
| 541 | |
| 542 | if (ircode == 0) { /* key still pressed */ |
| 543 | ir_dprintk("pulse distance decoded repeat code\n"); |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 544 | ir_repeat(ir->input); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 545 | break; |
| 546 | } |
| 547 | |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 548 | if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 549 | ir_dprintk("pulse distance decoded wrong address\n"); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 550 | break; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 551 | } |
| 552 | |
| 553 | if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */ |
| 554 | ir_dprintk("pulse distance decoded wrong check sum\n"); |
| 555 | break; |
| 556 | } |
| 557 | |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 558 | ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0xff); |
| 559 | ir_keydown(ir->input, (ircode >> 16) & 0xff, 0); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 560 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | case CX88_BOARD_HAUPPAUGE: |
| 562 | case CX88_BOARD_HAUPPAUGE_DVB_T1: |
Steven Toth | fb56cb6 | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 563 | case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: |
| 564 | case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: |
Chris Pascoe | 30367bf | 2006-01-11 19:40:01 -0200 | [diff] [blame] | 565 | case CX88_BOARD_HAUPPAUGE_HVR1100: |
Steven Toth | 76dc82a | 2006-09-30 00:43:58 -0300 | [diff] [blame] | 566 | case CX88_BOARD_HAUPPAUGE_HVR3000: |
Steven Toth | 5bd1b66 | 2008-09-04 01:17:33 -0300 | [diff] [blame] | 567 | case CX88_BOARD_HAUPPAUGE_HVR4000: |
| 568 | case CX88_BOARD_HAUPPAUGE_HVR4000LITE: |
Erik S. Beiser | f1735bb | 2009-02-28 22:29:20 -0300 | [diff] [blame] | 569 | case CX88_BOARD_PCHDTV_HD3000: |
| 570 | case CX88_BOARD_PCHDTV_HD5500: |
Steven Toth | 501d8cd | 2009-03-28 14:22:21 -0300 | [diff] [blame] | 571 | case CX88_BOARD_HAUPPAUGE_IRONLY: |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 572 | ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7); |
| 573 | ir_dprintk("biphase decoded: %x\n", ircode); |
Darron Broad | 34c0802 | 2008-09-22 00:54:59 -0300 | [diff] [blame] | 574 | /* |
| 575 | * RC5 has an extension bit which adds a new range |
| 576 | * of available codes, this is detected here. Also |
| 577 | * hauppauge remotes (black/silver) always use |
| 578 | * specific device ids. If we do not filter the |
| 579 | * device ids then messages destined for devices |
| 580 | * such as TVs (id=0) will get through to the |
| 581 | * device causing mis-fired events. |
| 582 | */ |
| 583 | /* split rc5 data block ... */ |
| 584 | start = (ircode & 0x2000) >> 13; |
| 585 | range = (ircode & 0x1000) >> 12; |
| 586 | toggle= (ircode & 0x0800) >> 11; |
| 587 | dev = (ircode & 0x07c0) >> 6; |
| 588 | code = (ircode & 0x003f) | ((range << 6) ^ 0x0040); |
| 589 | if( start != 1) |
| 590 | /* no key pressed */ |
| 591 | break; |
| 592 | if ( dev != 0x1e && dev != 0x1f ) |
| 593 | /* not a hauppauge remote */ |
| 594 | break; |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 595 | ir_keydown(ir->input, code, toggle); |
Darron Broad | 34c0802 | 2008-09-22 00:54:59 -0300 | [diff] [blame] | 596 | break; |
| 597 | case CX88_BOARD_PINNACLE_PCTV_HD_800i: |
| 598 | ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7); |
| 599 | ir_dprintk("biphase decoded: %x\n", ircode); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 600 | if ((ircode & 0xfffff000) != 0x3000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | break; |
David Härdeman | 3bbd3f2 | 2010-06-07 16:32:28 -0300 | [diff] [blame] | 602 | /* Note: bit 0x800 being the toggle is assumed, not checked |
| 603 | with real hardware */ |
| 604 | ir_keydown(ir->input, ircode & 0x3f, ircode & 0x0800 ? 1 : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | break; |
| 606 | } |
| 607 | |
| 608 | ir->scount = 0; |
| 609 | return; |
| 610 | } |
| 611 | |
| 612 | /* ---------------------------------------------------------------------- */ |
| 613 | |
| 614 | MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe"); |
| 615 | MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls"); |
| 616 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | /* |
| 618 | * Local variables: |
| 619 | * c-basic-offset: 8 |
| 620 | * End: |
| 621 | */ |