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