Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 1 | /* |
Mauro Carvalho Chehab | f7abcd3 | 2005-11-08 21:38:25 -0800 | [diff] [blame] | 2 | handle em28xx IR remotes via linux kernel input layer. |
| 3 | |
| 4 | Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it> |
| 5 | Markus Rechberger <mrechberger@gmail.com> |
Mauro Carvalho Chehab | 2e7c6dc | 2006-04-03 07:53:40 -0300 | [diff] [blame] | 6 | Mauro Carvalho Chehab <mchehab@infradead.org> |
Mauro Carvalho Chehab | f7abcd3 | 2005-11-08 21:38:25 -0800 | [diff] [blame] | 7 | Sascha Sommer <saschasommer@freenet.de> |
| 8 | |
| 9 | This program is free software; you can redistribute it and/or modify |
| 10 | it under the terms of the GNU General Public License as published by |
| 11 | the Free Software Foundation; either version 2 of the License, or |
| 12 | (at your option) any later version. |
| 13 | |
| 14 | This program is distributed in the hope that it will be useful, |
| 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | GNU General Public License for more details. |
| 18 | |
| 19 | You should have received a copy of the GNU General Public License |
| 20 | along with this program; if not, write to the Free Software |
| 21 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 22 | */ |
| 23 | |
| 24 | #include <linux/module.h> |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 25 | #include <linux/init.h> |
| 26 | #include <linux/delay.h> |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 27 | #include <linux/interrupt.h> |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 28 | #include <linux/usb.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 30 | |
Mauro Carvalho Chehab | f7abcd3 | 2005-11-08 21:38:25 -0800 | [diff] [blame] | 31 | #include "em28xx.h" |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 32 | |
Devin Heitmueller | a9fc52b | 2008-06-28 08:57:06 -0300 | [diff] [blame] | 33 | #define EM28XX_SNAPSHOT_KEY KEY_CAMERA |
| 34 | #define EM28XX_SBUTTON_QUERY_INTERVAL 500 |
| 35 | #define EM28XX_R0C_USBSUSP_SNAPSHOT 0x20 |
| 36 | |
Mauro Carvalho Chehab | c8793b0 | 2008-01-13 15:42:17 -0300 | [diff] [blame] | 37 | static unsigned int ir_debug; |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 38 | module_param(ir_debug, int, 0644); |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 39 | MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]"); |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 40 | |
Mauro Carvalho Chehab | 727e625 | 2010-03-12 21:18:14 -0300 | [diff] [blame] | 41 | #define MODULE_NAME "em28xx" |
| 42 | |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 43 | #define i2cdprintk(fmt, arg...) \ |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 44 | if (ir_debug) { \ |
Jean Delvare | 1df8e98 | 2009-05-13 16:48:07 -0300 | [diff] [blame] | 45 | printk(KERN_DEBUG "%s/ir: " fmt, ir->name , ## arg); \ |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 46 | } |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 47 | |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 48 | #define dprintk(fmt, arg...) \ |
| 49 | if (ir_debug) { \ |
| 50 | printk(KERN_DEBUG "%s/ir: " fmt, ir->name , ## arg); \ |
| 51 | } |
| 52 | |
| 53 | /********************************************************** |
| 54 | Polling structure used by em28xx IR's |
| 55 | **********************************************************/ |
| 56 | |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 57 | struct em28xx_ir_poll_result { |
| 58 | unsigned int toggle_bit:1; |
| 59 | unsigned int read_count:7; |
Mauro Carvalho Chehab | 105e368 | 2012-12-15 08:29:11 -0300 | [diff] [blame] | 60 | |
| 61 | u32 scancode; |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 62 | }; |
| 63 | |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 64 | struct em28xx_IR { |
| 65 | struct em28xx *dev; |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 66 | struct rc_dev *rc; |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 67 | char name[32]; |
| 68 | char phys[32]; |
| 69 | |
| 70 | /* poll external decoder */ |
| 71 | int polling; |
Jean Delvare | f263bac | 2009-03-07 07:43:01 -0300 | [diff] [blame] | 72 | struct delayed_work work; |
Mauro Carvalho Chehab | 0278155 | 2009-11-27 23:28:40 -0300 | [diff] [blame] | 73 | unsigned int full_code:1; |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 74 | unsigned int last_readcount; |
Mauro Carvalho Chehab | 105e368 | 2012-12-15 08:29:11 -0300 | [diff] [blame] | 75 | u64 rc_type; |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 76 | |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 77 | int (*get_key)(struct em28xx_IR *, struct em28xx_ir_poll_result *); |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | /********************************************************** |
| 81 | I2C IR based get keycodes - should be used with ir-kbd-i2c |
| 82 | **********************************************************/ |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 83 | |
Ezequiel García | 769af21 | 2012-03-26 09:13:34 -0300 | [diff] [blame] | 84 | static int em28xx_get_key_terratec(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw) |
Markus Rechberger | e43f14a | 2005-11-08 21:37:35 -0800 | [diff] [blame] | 85 | { |
| 86 | unsigned char b; |
| 87 | |
| 88 | /* poll IR chip */ |
Jean Delvare | c668f32 | 2009-05-13 16:48:50 -0300 | [diff] [blame] | 89 | if (1 != i2c_master_recv(ir->c, &b, 1)) { |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 90 | i2cdprintk("read error\n"); |
Markus Rechberger | e43f14a | 2005-11-08 21:37:35 -0800 | [diff] [blame] | 91 | return -EIO; |
| 92 | } |
| 93 | |
| 94 | /* it seems that 0xFE indicates that a button is still hold |
Mauro Carvalho Chehab | 4f9c05a | 2005-11-08 21:37:36 -0800 | [diff] [blame] | 95 | down, while 0xff indicates that no button is hold |
| 96 | down. 0xfe sequences are sometimes interrupted by 0xFF */ |
Markus Rechberger | e43f14a | 2005-11-08 21:37:35 -0800 | [diff] [blame] | 97 | |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 98 | i2cdprintk("key %02x\n", b); |
Markus Rechberger | e43f14a | 2005-11-08 21:37:35 -0800 | [diff] [blame] | 99 | |
Mauro Carvalho Chehab | 4f9c05a | 2005-11-08 21:37:36 -0800 | [diff] [blame] | 100 | if (b == 0xff) |
Markus Rechberger | e43f14a | 2005-11-08 21:37:35 -0800 | [diff] [blame] | 101 | return 0; |
| 102 | |
Mauro Carvalho Chehab | 4f9c05a | 2005-11-08 21:37:36 -0800 | [diff] [blame] | 103 | if (b == 0xfe) |
Markus Rechberger | e43f14a | 2005-11-08 21:37:35 -0800 | [diff] [blame] | 104 | /* keep old data */ |
| 105 | return 1; |
| 106 | |
| 107 | *ir_key = b; |
| 108 | *ir_raw = b; |
| 109 | return 1; |
| 110 | } |
| 111 | |
Ezequiel García | 769af21 | 2012-03-26 09:13:34 -0300 | [diff] [blame] | 112 | static int em28xx_get_key_em_haup(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw) |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 113 | { |
| 114 | unsigned char buf[2]; |
Mauro Carvalho Chehab | b779974 | 2009-12-05 23:24:50 -0300 | [diff] [blame] | 115 | u16 code; |
| 116 | int size; |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 117 | |
| 118 | /* poll IR chip */ |
Mauro Carvalho Chehab | b779974 | 2009-12-05 23:24:50 -0300 | [diff] [blame] | 119 | size = i2c_master_recv(ir->c, buf, sizeof(buf)); |
| 120 | |
| 121 | if (size != 2) |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 122 | return -EIO; |
| 123 | |
| 124 | /* Does eliminate repeated parity code */ |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 125 | if (buf[1] == 0xff) |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 126 | return 0; |
| 127 | |
Mauro Carvalho Chehab | b779974 | 2009-12-05 23:24:50 -0300 | [diff] [blame] | 128 | /* |
| 129 | * Rearranges bits to the right order. |
| 130 | * The bit order were determined experimentally by using |
| 131 | * The original Hauppauge Grey IR and another RC5 that uses addr=0x08 |
| 132 | * The RC5 code has 14 bits, but we've experimentally determined |
| 133 | * the meaning for only 11 bits. |
| 134 | * So, the code translation is not complete. Yet, it is enough to |
| 135 | * work with the provided RC5 IR. |
| 136 | */ |
| 137 | code = |
| 138 | ((buf[0] & 0x01) ? 0x0020 : 0) | /* 0010 0000 */ |
| 139 | ((buf[0] & 0x02) ? 0x0010 : 0) | /* 0001 0000 */ |
| 140 | ((buf[0] & 0x04) ? 0x0008 : 0) | /* 0000 1000 */ |
| 141 | ((buf[0] & 0x08) ? 0x0004 : 0) | /* 0000 0100 */ |
| 142 | ((buf[0] & 0x10) ? 0x0002 : 0) | /* 0000 0010 */ |
| 143 | ((buf[0] & 0x20) ? 0x0001 : 0) | /* 0000 0001 */ |
| 144 | ((buf[1] & 0x08) ? 0x1000 : 0) | /* 0001 0000 */ |
| 145 | ((buf[1] & 0x10) ? 0x0800 : 0) | /* 0000 1000 */ |
| 146 | ((buf[1] & 0x20) ? 0x0400 : 0) | /* 0000 0100 */ |
| 147 | ((buf[1] & 0x40) ? 0x0200 : 0) | /* 0000 0010 */ |
| 148 | ((buf[1] & 0x80) ? 0x0100 : 0); /* 0000 0001 */ |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 149 | |
Mauro Carvalho Chehab | b779974 | 2009-12-05 23:24:50 -0300 | [diff] [blame] | 150 | i2cdprintk("ir hauppauge (em2840): code=0x%02x (rcv=0x%02x%02x)\n", |
| 151 | code, buf[1], buf[0]); |
Mauro Carvalho Chehab | d5e5265 | 2005-11-08 21:37:32 -0800 | [diff] [blame] | 152 | |
| 153 | /* return key */ |
| 154 | *ir_key = code; |
| 155 | *ir_raw = code; |
| 156 | return 1; |
| 157 | } |
| 158 | |
Ezequiel García | 769af21 | 2012-03-26 09:13:34 -0300 | [diff] [blame] | 159 | static int em28xx_get_key_pinnacle_usb_grey(struct IR_i2c *ir, u32 *ir_key, |
Mauro Carvalho Chehab | c8793b0 | 2008-01-13 15:42:17 -0300 | [diff] [blame] | 160 | u32 *ir_raw) |
Markus Rechberger | 366cc64 | 2006-01-15 21:04:27 -0200 | [diff] [blame] | 161 | { |
| 162 | unsigned char buf[3]; |
| 163 | |
| 164 | /* poll IR chip */ |
| 165 | |
Jean Delvare | c668f32 | 2009-05-13 16:48:50 -0300 | [diff] [blame] | 166 | if (3 != i2c_master_recv(ir->c, buf, 3)) { |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 167 | i2cdprintk("read error\n"); |
Markus Rechberger | 366cc64 | 2006-01-15 21:04:27 -0200 | [diff] [blame] | 168 | return -EIO; |
| 169 | } |
| 170 | |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 171 | i2cdprintk("key %02x\n", buf[2]&0x3f); |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 172 | if (buf[0] != 0x00) |
Markus Rechberger | 366cc64 | 2006-01-15 21:04:27 -0200 | [diff] [blame] | 173 | return 0; |
Markus Rechberger | 366cc64 | 2006-01-15 21:04:27 -0200 | [diff] [blame] | 174 | |
| 175 | *ir_key = buf[2]&0x3f; |
| 176 | *ir_raw = buf[2]&0x3f; |
| 177 | |
| 178 | return 1; |
| 179 | } |
| 180 | |
Ezequiel García | 769af21 | 2012-03-26 09:13:34 -0300 | [diff] [blame] | 181 | static int em28xx_get_key_winfast_usbii_deluxe(struct IR_i2c *ir, u32 *ir_key, |
| 182 | u32 *ir_raw) |
Magnus Alm | ca39d84 | 2009-11-13 05:48:24 -0300 | [diff] [blame] | 183 | { |
| 184 | unsigned char subaddr, keydetect, key; |
| 185 | |
| 186 | struct i2c_msg msg[] = { { .addr = ir->c->addr, .flags = 0, .buf = &subaddr, .len = 1}, |
| 187 | |
| 188 | { .addr = ir->c->addr, .flags = I2C_M_RD, .buf = &keydetect, .len = 1} }; |
| 189 | |
| 190 | subaddr = 0x10; |
| 191 | if (2 != i2c_transfer(ir->c->adapter, msg, 2)) { |
| 192 | i2cdprintk("read error\n"); |
| 193 | return -EIO; |
| 194 | } |
| 195 | if (keydetect == 0x00) |
| 196 | return 0; |
| 197 | |
| 198 | subaddr = 0x00; |
| 199 | msg[1].buf = &key; |
| 200 | if (2 != i2c_transfer(ir->c->adapter, msg, 2)) { |
| 201 | i2cdprintk("read error\n"); |
| 202 | return -EIO; |
| 203 | } |
| 204 | if (key == 0x00) |
| 205 | return 0; |
| 206 | |
| 207 | *ir_key = key; |
| 208 | *ir_raw = key; |
| 209 | return 1; |
| 210 | } |
| 211 | |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 212 | /********************************************************** |
| 213 | Poll based get keycode functions |
| 214 | **********************************************************/ |
| 215 | |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 216 | /* This is for the em2860/em2880 */ |
| 217 | static int default_polling_getkey(struct em28xx_IR *ir, |
| 218 | struct em28xx_ir_poll_result *poll_result) |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 219 | { |
| 220 | struct em28xx *dev = ir->dev; |
| 221 | int rc; |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 222 | u8 msg[3] = { 0, 0, 0 }; |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 223 | |
Mauro Carvalho Chehab | 0a6b8a8 | 2008-11-12 18:46:01 -0300 | [diff] [blame] | 224 | /* Read key toggle, brand, and key code |
| 225 | on registers 0x45, 0x46 and 0x47 |
| 226 | */ |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 227 | rc = dev->em28xx_read_reg_req_len(dev, 0, EM28XX_R45_IR, |
Mauro Carvalho Chehab | 0a6b8a8 | 2008-11-12 18:46:01 -0300 | [diff] [blame] | 228 | msg, sizeof(msg)); |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 229 | if (rc < 0) |
| 230 | return rc; |
| 231 | |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 232 | /* Infrared toggle (Reg 0x45[7]) */ |
| 233 | poll_result->toggle_bit = (msg[0] >> 7); |
| 234 | |
| 235 | /* Infrared read count (Reg 0x45[6:0] */ |
| 236 | poll_result->read_count = (msg[0] & 0x7f); |
| 237 | |
Mauro Carvalho Chehab | 105e368 | 2012-12-15 08:29:11 -0300 | [diff] [blame] | 238 | /* Remote Control Address/Data (Regs 0x46/0x47) */ |
| 239 | poll_result->scancode = msg[1] << 8 | msg[2]; |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 240 | |
| 241 | return 0; |
| 242 | } |
| 243 | |
| 244 | static int em2874_polling_getkey(struct em28xx_IR *ir, |
| 245 | struct em28xx_ir_poll_result *poll_result) |
| 246 | { |
| 247 | struct em28xx *dev = ir->dev; |
| 248 | int rc; |
| 249 | u8 msg[5] = { 0, 0, 0, 0, 0 }; |
| 250 | |
| 251 | /* Read key toggle, brand, and key code |
| 252 | on registers 0x51-55 |
| 253 | */ |
| 254 | rc = dev->em28xx_read_reg_req_len(dev, 0, EM2874_R51_IR, |
| 255 | msg, sizeof(msg)); |
| 256 | if (rc < 0) |
| 257 | return rc; |
| 258 | |
| 259 | /* Infrared toggle (Reg 0x51[7]) */ |
| 260 | poll_result->toggle_bit = (msg[0] >> 7); |
| 261 | |
| 262 | /* Infrared read count (Reg 0x51[6:0] */ |
| 263 | poll_result->read_count = (msg[0] & 0x7f); |
| 264 | |
Mauro Carvalho Chehab | 105e368 | 2012-12-15 08:29:11 -0300 | [diff] [blame] | 265 | /* |
| 266 | * Remote Control Address (Reg 0x52) |
| 267 | * Remote Control Data (Reg 0x53-0x55) |
| 268 | */ |
| 269 | switch (ir->rc_type) { |
| 270 | case RC_BIT_RC5: |
| 271 | poll_result->scancode = msg[1] << 8 | msg[2]; |
| 272 | break; |
| 273 | case RC_BIT_NEC: |
| 274 | if ((msg[3] ^ msg[4]) != 0xff) /* 32 bits NEC */ |
| 275 | poll_result->scancode = (msg[1] << 24) | |
| 276 | (msg[2] << 16) | |
| 277 | (msg[3] << 8) | |
| 278 | msg[4]; |
| 279 | else if ((msg[1] ^ msg[2]) != 0xff) /* 24 bits NEC */ |
| 280 | poll_result->scancode = (msg[1] << 16) | |
| 281 | (msg[2] << 8) | |
| 282 | msg[3]; |
| 283 | else /* Normal NEC */ |
| 284 | poll_result->scancode = msg[1] << 8 | msg[3]; |
| 285 | break; |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 286 | case RC_BIT_RC6_0: |
| 287 | poll_result->scancode = msg[1] << 8 | msg[2]; |
| 288 | break; |
Mauro Carvalho Chehab | 105e368 | 2012-12-15 08:29:11 -0300 | [diff] [blame] | 289 | default: |
| 290 | poll_result->scancode = (msg[1] << 24) | (msg[2] << 16) | |
| 291 | (msg[3] << 8) | msg[4]; |
| 292 | break; |
| 293 | } |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 294 | |
| 295 | return 0; |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | /********************************************************** |
| 299 | Polling code for em28xx |
| 300 | **********************************************************/ |
| 301 | |
| 302 | static void em28xx_ir_handle_key(struct em28xx_IR *ir) |
| 303 | { |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 304 | int result; |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 305 | struct em28xx_ir_poll_result poll_result; |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 306 | |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 307 | /* read the registers containing the IR status */ |
| 308 | result = ir->get_key(ir, &poll_result); |
Mauro Carvalho Chehab | 603044d | 2010-06-27 08:32:11 -0300 | [diff] [blame] | 309 | if (unlikely(result < 0)) { |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 310 | dprintk("ir->get_key() failed %d\n", result); |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 311 | return; |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 312 | } |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 313 | |
Mauro Carvalho Chehab | 603044d | 2010-06-27 08:32:11 -0300 | [diff] [blame] | 314 | if (unlikely(poll_result.read_count != ir->last_readcount)) { |
Mauro Carvalho Chehab | 105e368 | 2012-12-15 08:29:11 -0300 | [diff] [blame] | 315 | dprintk("%s: toggle: %d, count: %d, key 0x%04x\n", __func__, |
Mauro Carvalho Chehab | 603044d | 2010-06-27 08:32:11 -0300 | [diff] [blame] | 316 | poll_result.toggle_bit, poll_result.read_count, |
Mauro Carvalho Chehab | 105e368 | 2012-12-15 08:29:11 -0300 | [diff] [blame] | 317 | poll_result.scancode); |
David Härdeman | a469585 | 2010-06-07 16:32:23 -0300 | [diff] [blame] | 318 | if (ir->full_code) |
Mauro Carvalho Chehab | ca86674 | 2010-11-17 13:53:11 -0300 | [diff] [blame] | 319 | rc_keydown(ir->rc, |
Mauro Carvalho Chehab | 105e368 | 2012-12-15 08:29:11 -0300 | [diff] [blame] | 320 | poll_result.scancode, |
David Härdeman | a469585 | 2010-06-07 16:32:23 -0300 | [diff] [blame] | 321 | poll_result.toggle_bit); |
| 322 | else |
Mauro Carvalho Chehab | ca86674 | 2010-11-17 13:53:11 -0300 | [diff] [blame] | 323 | rc_keydown(ir->rc, |
Mauro Carvalho Chehab | 105e368 | 2012-12-15 08:29:11 -0300 | [diff] [blame] | 324 | poll_result.scancode & 0xff, |
David Härdeman | a469585 | 2010-06-07 16:32:23 -0300 | [diff] [blame] | 325 | poll_result.toggle_bit); |
David Härdeman | a469585 | 2010-06-07 16:32:23 -0300 | [diff] [blame] | 326 | |
Mauro Carvalho Chehab | 20ae974 | 2011-11-20 12:23:54 -0200 | [diff] [blame] | 327 | if (ir->dev->chip_id == CHIP_ID_EM2874 || |
| 328 | ir->dev->chip_id == CHIP_ID_EM2884) |
Mauro Carvalho Chehab | 603044d | 2010-06-27 08:32:11 -0300 | [diff] [blame] | 329 | /* The em2874 clears the readcount field every time the |
| 330 | register is read. The em2860/2880 datasheet says that it |
| 331 | is supposed to clear the readcount, but it doesn't. So with |
| 332 | the em2874, we are looking for a non-zero read count as |
| 333 | opposed to a readcount that is incrementing */ |
| 334 | ir->last_readcount = 0; |
| 335 | else |
| 336 | ir->last_readcount = poll_result.read_count; |
| 337 | } |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 338 | } |
| 339 | |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 340 | static void em28xx_ir_work(struct work_struct *work) |
| 341 | { |
Jean Delvare | f263bac | 2009-03-07 07:43:01 -0300 | [diff] [blame] | 342 | struct em28xx_IR *ir = container_of(work, struct em28xx_IR, work.work); |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 343 | |
| 344 | em28xx_ir_handle_key(ir); |
Jean Delvare | f263bac | 2009-03-07 07:43:01 -0300 | [diff] [blame] | 345 | schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling)); |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 346 | } |
| 347 | |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 348 | static int em28xx_ir_start(struct rc_dev *rc) |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 349 | { |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 350 | struct em28xx_IR *ir = rc->priv; |
Mauro Carvalho Chehab | c373cab | 2010-04-07 22:57:04 -0300 | [diff] [blame] | 351 | |
Jean Delvare | f263bac | 2009-03-07 07:43:01 -0300 | [diff] [blame] | 352 | INIT_DELAYED_WORK(&ir->work, em28xx_ir_work); |
| 353 | schedule_delayed_work(&ir->work, 0); |
Mauro Carvalho Chehab | c373cab | 2010-04-07 22:57:04 -0300 | [diff] [blame] | 354 | |
| 355 | return 0; |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 356 | } |
| 357 | |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 358 | static void em28xx_ir_stop(struct rc_dev *rc) |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 359 | { |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 360 | struct em28xx_IR *ir = rc->priv; |
Mauro Carvalho Chehab | c373cab | 2010-04-07 22:57:04 -0300 | [diff] [blame] | 361 | |
Jean Delvare | f263bac | 2009-03-07 07:43:01 -0300 | [diff] [blame] | 362 | cancel_delayed_work_sync(&ir->work); |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 363 | } |
| 364 | |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 365 | static int em2860_ir_change_protocol(struct rc_dev *rc_dev, u64 *rc_type) |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 366 | { |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 367 | struct em28xx_IR *ir = rc_dev->priv; |
| 368 | struct em28xx *dev = ir->dev; |
| 369 | |
| 370 | /* Adjust xclk based on IR table for RC5/NEC tables */ |
| 371 | if (*rc_type & RC_BIT_RC5) { |
| 372 | dev->board.xclk |= EM28XX_XCLK_IR_RC5_MODE; |
| 373 | ir->full_code = 1; |
| 374 | *rc_type = RC_BIT_RC5; |
| 375 | } else if (*rc_type & RC_BIT_NEC) { |
| 376 | dev->board.xclk &= ~EM28XX_XCLK_IR_RC5_MODE; |
| 377 | ir->full_code = 1; |
| 378 | *rc_type = RC_BIT_NEC; |
| 379 | } else if (*rc_type & RC_BIT_UNKNOWN) { |
| 380 | *rc_type = RC_BIT_UNKNOWN; |
| 381 | } else { |
| 382 | *rc_type = ir->rc_type; |
| 383 | return -EINVAL; |
| 384 | } |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 385 | em28xx_write_reg_bits(dev, EM28XX_R0F_XCLK, dev->board.xclk, |
| 386 | EM28XX_XCLK_IR_RC5_MODE); |
| 387 | |
| 388 | ir->rc_type = *rc_type; |
| 389 | |
| 390 | return 0; |
| 391 | } |
| 392 | |
| 393 | static int em2874_ir_change_protocol(struct rc_dev *rc_dev, u64 *rc_type) |
| 394 | { |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 395 | struct em28xx_IR *ir = rc_dev->priv; |
Mauro Carvalho Chehab | 950b0f5 | 2009-12-14 02:54:22 -0300 | [diff] [blame] | 396 | struct em28xx *dev = ir->dev; |
| 397 | u8 ir_config = EM2874_IR_RC5; |
Mauro Carvalho Chehab | 1bad429 | 2009-12-05 08:27:49 -0300 | [diff] [blame] | 398 | |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 399 | /* Adjust xclk and set type based on IR table for RC5/NEC/RC6 tables */ |
David Härdeman | c003ab1 | 2012-10-11 19:11:54 -0300 | [diff] [blame] | 400 | if (*rc_type & RC_BIT_RC5) { |
Mauro Carvalho Chehab | 1bad429 | 2009-12-05 08:27:49 -0300 | [diff] [blame] | 401 | dev->board.xclk |= EM28XX_XCLK_IR_RC5_MODE; |
| 402 | ir->full_code = 1; |
David Härdeman | c003ab1 | 2012-10-11 19:11:54 -0300 | [diff] [blame] | 403 | *rc_type = RC_BIT_RC5; |
| 404 | } else if (*rc_type & RC_BIT_NEC) { |
Mauro Carvalho Chehab | 1bad429 | 2009-12-05 08:27:49 -0300 | [diff] [blame] | 405 | dev->board.xclk &= ~EM28XX_XCLK_IR_RC5_MODE; |
Mauro Carvalho Chehab | 105e368 | 2012-12-15 08:29:11 -0300 | [diff] [blame] | 406 | ir_config = EM2874_IR_NEC | EM2874_IR_NEC_NO_PARITY; |
Mauro Carvalho Chehab | 1bad429 | 2009-12-05 08:27:49 -0300 | [diff] [blame] | 407 | ir->full_code = 1; |
David Härdeman | c003ab1 | 2012-10-11 19:11:54 -0300 | [diff] [blame] | 408 | *rc_type = RC_BIT_NEC; |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 409 | } else if (*rc_type & RC_BIT_RC6_0) { |
| 410 | dev->board.xclk |= EM28XX_XCLK_IR_RC5_MODE; |
| 411 | ir_config = EM2874_IR_RC6_MODE_0; |
| 412 | ir->full_code = 1; |
| 413 | *rc_type = RC_BIT_RC6_0; |
| 414 | } else if (*rc_type & RC_BIT_UNKNOWN) { |
| 415 | *rc_type = RC_BIT_UNKNOWN; |
| 416 | } else { |
| 417 | *rc_type = ir->rc_type; |
| 418 | return -EINVAL; |
| 419 | } |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 420 | em28xx_write_regs(dev, EM2874_R50_IR_CONFIG, &ir_config, 1); |
Mauro Carvalho Chehab | 1bad429 | 2009-12-05 08:27:49 -0300 | [diff] [blame] | 421 | em28xx_write_reg_bits(dev, EM28XX_R0F_XCLK, dev->board.xclk, |
| 422 | EM28XX_XCLK_IR_RC5_MODE); |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 423 | |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 424 | ir->rc_type = *rc_type; |
| 425 | |
| 426 | return 0; |
| 427 | } |
| 428 | static int em28xx_ir_change_protocol(struct rc_dev *rc_dev, u64 *rc_type) |
| 429 | { |
| 430 | struct em28xx_IR *ir = rc_dev->priv; |
| 431 | struct em28xx *dev = ir->dev; |
| 432 | |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 433 | /* Setup the proper handler based on the chip */ |
| 434 | switch (dev->chip_id) { |
| 435 | case CHIP_ID_EM2860: |
| 436 | case CHIP_ID_EM2883: |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 437 | return em2860_ir_change_protocol(rc_dev, rc_type); |
Mauro Carvalho Chehab | 20ae974 | 2011-11-20 12:23:54 -0200 | [diff] [blame] | 438 | case CHIP_ID_EM2884: |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 439 | case CHIP_ID_EM2874: |
Antti Palosaari | a24ec44 | 2011-05-25 16:56:37 -0300 | [diff] [blame] | 440 | case CHIP_ID_EM28174: |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 441 | return em2874_ir_change_protocol(rc_dev, rc_type); |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 442 | default: |
Mauro Carvalho Chehab | 20ae974 | 2011-11-20 12:23:54 -0200 | [diff] [blame] | 443 | printk("Unrecognized em28xx chip id 0x%02x: IR not supported\n", |
| 444 | dev->chip_id); |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 445 | return -EINVAL; |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 446 | } |
Mauro Carvalho Chehab | 950b0f5 | 2009-12-14 02:54:22 -0300 | [diff] [blame] | 447 | } |
| 448 | |
Ezequiel García | 769af21 | 2012-03-26 09:13:34 -0300 | [diff] [blame] | 449 | static void em28xx_register_i2c_ir(struct em28xx *dev) |
Ezequiel García | 9d9f479 | 2012-03-26 09:13:33 -0300 | [diff] [blame] | 450 | { |
| 451 | /* Leadtek winfast tv USBII deluxe can find a non working IR-device */ |
| 452 | /* at address 0x18, so if that address is needed for another board in */ |
| 453 | /* the future, please put it after 0x1f. */ |
| 454 | struct i2c_board_info info; |
| 455 | const unsigned short addr_list[] = { |
| 456 | 0x1f, 0x30, 0x47, I2C_CLIENT_END |
| 457 | }; |
| 458 | |
| 459 | memset(&info, 0, sizeof(struct i2c_board_info)); |
| 460 | memset(&dev->init_data, 0, sizeof(dev->init_data)); |
| 461 | strlcpy(info.type, "ir_video", I2C_NAME_SIZE); |
| 462 | |
| 463 | /* detect & configure */ |
| 464 | switch (dev->model) { |
| 465 | case EM2800_BOARD_TERRATEC_CINERGY_200: |
| 466 | case EM2820_BOARD_TERRATEC_CINERGY_250: |
| 467 | dev->init_data.ir_codes = RC_MAP_EM_TERRATEC; |
| 468 | dev->init_data.get_key = em28xx_get_key_terratec; |
Mauro Carvalho Chehab | d40580e | 2013-01-04 17:37:26 -0300 | [diff] [blame] | 469 | dev->init_data.name = "Terratec Cinergy 200/250"; |
Ezequiel García | 9d9f479 | 2012-03-26 09:13:33 -0300 | [diff] [blame] | 470 | break; |
| 471 | case EM2820_BOARD_PINNACLE_USB_2: |
| 472 | dev->init_data.ir_codes = RC_MAP_PINNACLE_GREY; |
| 473 | dev->init_data.get_key = em28xx_get_key_pinnacle_usb_grey; |
Mauro Carvalho Chehab | d40580e | 2013-01-04 17:37:26 -0300 | [diff] [blame] | 474 | dev->init_data.name = "Pinnacle USB2"; |
Ezequiel García | 9d9f479 | 2012-03-26 09:13:33 -0300 | [diff] [blame] | 475 | break; |
| 476 | case EM2820_BOARD_HAUPPAUGE_WINTV_USB_2: |
| 477 | dev->init_data.ir_codes = RC_MAP_HAUPPAUGE; |
| 478 | dev->init_data.get_key = em28xx_get_key_em_haup; |
Mauro Carvalho Chehab | d40580e | 2013-01-04 17:37:26 -0300 | [diff] [blame] | 479 | dev->init_data.name = "WinTV USB2"; |
Mauro Carvalho Chehab | 3ac693c | 2013-01-04 18:01:59 -0300 | [diff] [blame] | 480 | dev->init_data.type = RC_BIT_RC5; |
Ezequiel García | 9d9f479 | 2012-03-26 09:13:33 -0300 | [diff] [blame] | 481 | break; |
| 482 | case EM2820_BOARD_LEADTEK_WINFAST_USBII_DELUXE: |
| 483 | dev->init_data.ir_codes = RC_MAP_WINFAST_USBII_DELUXE; |
| 484 | dev->init_data.get_key = em28xx_get_key_winfast_usbii_deluxe; |
Mauro Carvalho Chehab | d40580e | 2013-01-04 17:37:26 -0300 | [diff] [blame] | 485 | dev->init_data.name = "Winfast TV USBII Deluxe"; |
Ezequiel García | 9d9f479 | 2012-03-26 09:13:33 -0300 | [diff] [blame] | 486 | break; |
| 487 | } |
| 488 | |
| 489 | if (dev->init_data.name) |
| 490 | info.platform_data = &dev->init_data; |
| 491 | i2c_new_probed_device(&dev->i2c_adap, &info, addr_list, NULL); |
| 492 | } |
| 493 | |
Ezequiel García | 769af21 | 2012-03-26 09:13:34 -0300 | [diff] [blame] | 494 | /********************************************************** |
| 495 | Handle Webcam snapshot button |
| 496 | **********************************************************/ |
| 497 | |
| 498 | static void em28xx_query_sbutton(struct work_struct *work) |
| 499 | { |
| 500 | /* Poll the register and see if the button is depressed */ |
| 501 | struct em28xx *dev = |
| 502 | container_of(work, struct em28xx, sbutton_query_work.work); |
| 503 | int ret; |
| 504 | |
| 505 | ret = em28xx_read_reg(dev, EM28XX_R0C_USBSUSP); |
| 506 | |
| 507 | if (ret & EM28XX_R0C_USBSUSP_SNAPSHOT) { |
| 508 | u8 cleared; |
| 509 | /* Button is depressed, clear the register */ |
| 510 | cleared = ((u8) ret) & ~EM28XX_R0C_USBSUSP_SNAPSHOT; |
| 511 | em28xx_write_regs(dev, EM28XX_R0C_USBSUSP, &cleared, 1); |
| 512 | |
| 513 | /* Not emulate the keypress */ |
| 514 | input_report_key(dev->sbutton_input_dev, EM28XX_SNAPSHOT_KEY, |
| 515 | 1); |
| 516 | /* Now unpress the key */ |
| 517 | input_report_key(dev->sbutton_input_dev, EM28XX_SNAPSHOT_KEY, |
| 518 | 0); |
| 519 | } |
| 520 | |
| 521 | /* Schedule next poll */ |
| 522 | schedule_delayed_work(&dev->sbutton_query_work, |
| 523 | msecs_to_jiffies(EM28XX_SBUTTON_QUERY_INTERVAL)); |
| 524 | } |
| 525 | |
| 526 | static void em28xx_register_snapshot_button(struct em28xx *dev) |
| 527 | { |
| 528 | struct input_dev *input_dev; |
| 529 | int err; |
| 530 | |
| 531 | em28xx_info("Registering snapshot button...\n"); |
| 532 | input_dev = input_allocate_device(); |
| 533 | if (!input_dev) { |
| 534 | em28xx_errdev("input_allocate_device failed\n"); |
| 535 | return; |
| 536 | } |
| 537 | |
| 538 | usb_make_path(dev->udev, dev->snapshot_button_path, |
| 539 | sizeof(dev->snapshot_button_path)); |
| 540 | strlcat(dev->snapshot_button_path, "/sbutton", |
| 541 | sizeof(dev->snapshot_button_path)); |
| 542 | INIT_DELAYED_WORK(&dev->sbutton_query_work, em28xx_query_sbutton); |
| 543 | |
| 544 | input_dev->name = "em28xx snapshot button"; |
| 545 | input_dev->phys = dev->snapshot_button_path; |
| 546 | input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP); |
| 547 | set_bit(EM28XX_SNAPSHOT_KEY, input_dev->keybit); |
| 548 | input_dev->keycodesize = 0; |
| 549 | input_dev->keycodemax = 0; |
| 550 | input_dev->id.bustype = BUS_USB; |
| 551 | input_dev->id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor); |
| 552 | input_dev->id.product = le16_to_cpu(dev->udev->descriptor.idProduct); |
| 553 | input_dev->id.version = 1; |
| 554 | input_dev->dev.parent = &dev->udev->dev; |
| 555 | |
| 556 | err = input_register_device(input_dev); |
| 557 | if (err) { |
| 558 | em28xx_errdev("input_register_device failed\n"); |
| 559 | input_free_device(input_dev); |
| 560 | return; |
| 561 | } |
| 562 | |
| 563 | dev->sbutton_input_dev = input_dev; |
| 564 | schedule_delayed_work(&dev->sbutton_query_work, |
| 565 | msecs_to_jiffies(EM28XX_SBUTTON_QUERY_INTERVAL)); |
| 566 | return; |
| 567 | |
| 568 | } |
| 569 | |
| 570 | static void em28xx_deregister_snapshot_button(struct em28xx *dev) |
| 571 | { |
| 572 | if (dev->sbutton_input_dev != NULL) { |
| 573 | em28xx_info("Deregistering snapshot button\n"); |
| 574 | cancel_delayed_work_sync(&dev->sbutton_query_work); |
| 575 | input_unregister_device(dev->sbutton_input_dev); |
| 576 | dev->sbutton_input_dev = NULL; |
| 577 | } |
| 578 | return; |
| 579 | } |
| 580 | |
Ezequiel García | f4d4e76 | 2012-03-26 09:13:35 -0300 | [diff] [blame] | 581 | static int em28xx_ir_init(struct em28xx *dev) |
Mauro Carvalho Chehab | 950b0f5 | 2009-12-14 02:54:22 -0300 | [diff] [blame] | 582 | { |
| 583 | struct em28xx_IR *ir; |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 584 | struct rc_dev *rc; |
Mauro Carvalho Chehab | 950b0f5 | 2009-12-14 02:54:22 -0300 | [diff] [blame] | 585 | int err = -ENOMEM; |
David Härdeman | c003ab1 | 2012-10-11 19:11:54 -0300 | [diff] [blame] | 586 | u64 rc_type; |
Mauro Carvalho Chehab | 950b0f5 | 2009-12-14 02:54:22 -0300 | [diff] [blame] | 587 | |
Mauro Carvalho Chehab | 8303dc9 | 2013-01-04 17:27:47 -0300 | [diff] [blame] | 588 | if (dev->board.has_snapshot_button) |
| 589 | em28xx_register_snapshot_button(dev); |
| 590 | |
| 591 | if (dev->board.has_ir_i2c) { |
| 592 | em28xx_register_i2c_ir(dev); |
| 593 | #if defined(CONFIG_MODULES) && defined(MODULE) |
| 594 | request_module("ir-kbd-i2c"); |
| 595 | #endif |
| 596 | return 0; |
| 597 | } |
| 598 | |
Mauro Carvalho Chehab | 950b0f5 | 2009-12-14 02:54:22 -0300 | [diff] [blame] | 599 | if (dev->board.ir_codes == NULL) { |
| 600 | /* No remote control support */ |
Martin Blumenstingl | b83f671 | 2012-05-30 15:47:40 -0300 | [diff] [blame] | 601 | em28xx_warn("Remote control support is not available for " |
| 602 | "this card.\n"); |
Mauro Carvalho Chehab | 950b0f5 | 2009-12-14 02:54:22 -0300 | [diff] [blame] | 603 | return 0; |
| 604 | } |
| 605 | |
| 606 | ir = kzalloc(sizeof(*ir), GFP_KERNEL); |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 607 | rc = rc_allocate_device(); |
| 608 | if (!ir || !rc) |
Frank Schaefer | 2f5741a | 2012-12-22 10:13:38 -0300 | [diff] [blame] | 609 | goto error; |
Mauro Carvalho Chehab | 950b0f5 | 2009-12-14 02:54:22 -0300 | [diff] [blame] | 610 | |
| 611 | /* record handles to ourself */ |
| 612 | ir->dev = dev; |
| 613 | dev->ir = ir; |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 614 | ir->rc = rc; |
Mauro Carvalho Chehab | 950b0f5 | 2009-12-14 02:54:22 -0300 | [diff] [blame] | 615 | |
| 616 | /* |
| 617 | * em2874 supports more protocols. For now, let's just announce |
| 618 | * the two protocols that were already tested |
| 619 | */ |
David Härdeman | c003ab1 | 2012-10-11 19:11:54 -0300 | [diff] [blame] | 620 | rc->allowed_protos = RC_BIT_RC5 | RC_BIT_NEC; |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 621 | rc->priv = ir; |
| 622 | rc->change_protocol = em28xx_ir_change_protocol; |
| 623 | rc->open = em28xx_ir_start; |
| 624 | rc->close = em28xx_ir_stop; |
Mauro Carvalho Chehab | c373cab | 2010-04-07 22:57:04 -0300 | [diff] [blame] | 625 | |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 626 | switch (dev->chip_id) { |
| 627 | case CHIP_ID_EM2860: |
| 628 | case CHIP_ID_EM2883: |
| 629 | rc->allowed_protos = RC_BIT_RC5 | RC_BIT_NEC; |
Frank Schaefer | 6ea887e | 2012-12-27 19:02:47 -0300 | [diff] [blame] | 630 | ir->get_key = default_polling_getkey; |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 631 | break; |
| 632 | case CHIP_ID_EM2884: |
| 633 | case CHIP_ID_EM2874: |
| 634 | case CHIP_ID_EM28174: |
Frank Schaefer | 6ea887e | 2012-12-27 19:02:47 -0300 | [diff] [blame] | 635 | ir->get_key = em2874_polling_getkey; |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 636 | rc->allowed_protos = RC_BIT_RC5 | RC_BIT_NEC | RC_BIT_RC6_0; |
| 637 | break; |
| 638 | default: |
| 639 | err = -ENODEV; |
Frank Schaefer | 2f5741a | 2012-12-22 10:13:38 -0300 | [diff] [blame] | 640 | goto error; |
Mauro Carvalho Chehab | 0dae883 | 2012-12-15 08:29:12 -0300 | [diff] [blame] | 641 | } |
| 642 | |
Mauro Carvalho Chehab | c373cab | 2010-04-07 22:57:04 -0300 | [diff] [blame] | 643 | /* By default, keep protocol field untouched */ |
David Härdeman | c003ab1 | 2012-10-11 19:11:54 -0300 | [diff] [blame] | 644 | rc_type = RC_BIT_UNKNOWN; |
| 645 | err = em28xx_ir_change_protocol(rc, &rc_type); |
Mauro Carvalho Chehab | c373cab | 2010-04-07 22:57:04 -0300 | [diff] [blame] | 646 | if (err) |
Frank Schaefer | 2f5741a | 2012-12-22 10:13:38 -0300 | [diff] [blame] | 647 | goto error; |
Mauro Carvalho Chehab | 950b0f5 | 2009-12-14 02:54:22 -0300 | [diff] [blame] | 648 | |
Devin Heitmueller | 4b92253 | 2008-11-13 03:15:55 -0300 | [diff] [blame] | 649 | /* This is how often we ask the chip for IR information */ |
| 650 | ir->polling = 100; /* ms */ |
| 651 | |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 652 | /* init input device */ |
| 653 | snprintf(ir->name, sizeof(ir->name), "em28xx IR (%s)", |
| 654 | dev->name); |
| 655 | |
| 656 | usb_make_path(dev->udev, ir->phys, sizeof(ir->phys)); |
| 657 | strlcat(ir->phys, "/input0", sizeof(ir->phys)); |
| 658 | |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 659 | rc->input_name = ir->name; |
| 660 | rc->input_phys = ir->phys; |
| 661 | rc->input_id.bustype = BUS_USB; |
| 662 | rc->input_id.version = 1; |
| 663 | rc->input_id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor); |
| 664 | rc->input_id.product = le16_to_cpu(dev->udev->descriptor.idProduct); |
| 665 | rc->dev.parent = &dev->udev->dev; |
| 666 | rc->map_name = dev->board.ir_codes; |
| 667 | rc->driver_name = MODULE_NAME; |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 668 | |
| 669 | /* all done */ |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 670 | err = rc_register_device(rc); |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 671 | if (err) |
Frank Schaefer | 2f5741a | 2012-12-22 10:13:38 -0300 | [diff] [blame] | 672 | goto error; |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 673 | |
| 674 | return 0; |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 675 | |
Frank Schaefer | 2f5741a | 2012-12-22 10:13:38 -0300 | [diff] [blame] | 676 | error: |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 677 | dev->ir = NULL; |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 678 | rc_free_device(rc); |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 679 | kfree(ir); |
| 680 | return err; |
| 681 | } |
| 682 | |
Ezequiel García | f4d4e76 | 2012-03-26 09:13:35 -0300 | [diff] [blame] | 683 | static int em28xx_ir_fini(struct em28xx *dev) |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 684 | { |
| 685 | struct em28xx_IR *ir = dev->ir; |
| 686 | |
Ezequiel García | 2fd6f8d | 2012-03-26 09:13:32 -0300 | [diff] [blame] | 687 | em28xx_deregister_snapshot_button(dev); |
| 688 | |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 689 | /* skip detach on non attached boards */ |
| 690 | if (!ir) |
| 691 | return 0; |
| 692 | |
Mauro Carvalho Chehab | 6d51477 | 2011-07-29 02:26:59 -0300 | [diff] [blame] | 693 | if (ir->rc) |
| 694 | rc_unregister_device(ir->rc); |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 695 | |
| 696 | /* done */ |
Mauro Carvalho Chehab | 6d51477 | 2011-07-29 02:26:59 -0300 | [diff] [blame] | 697 | kfree(ir); |
Mauro Carvalho Chehab | a924a49 | 2008-11-12 08:41:29 -0300 | [diff] [blame] | 698 | dev->ir = NULL; |
| 699 | return 0; |
| 700 | } |
| 701 | |
Ezequiel García | f4d4e76 | 2012-03-26 09:13:35 -0300 | [diff] [blame] | 702 | static struct em28xx_ops rc_ops = { |
| 703 | .id = EM28XX_RC, |
| 704 | .name = "Em28xx Input Extension", |
| 705 | .init = em28xx_ir_init, |
| 706 | .fini = em28xx_ir_fini, |
| 707 | }; |
| 708 | |
| 709 | static int __init em28xx_rc_register(void) |
| 710 | { |
| 711 | return em28xx_register_extension(&rc_ops); |
| 712 | } |
| 713 | |
| 714 | static void __exit em28xx_rc_unregister(void) |
| 715 | { |
| 716 | em28xx_unregister_extension(&rc_ops); |
| 717 | } |
| 718 | |
| 719 | MODULE_LICENSE("GPL"); |
| 720 | MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>"); |
| 721 | MODULE_DESCRIPTION("Em28xx Input driver"); |
| 722 | |
| 723 | module_init(em28xx_rc_register); |
| 724 | module_exit(em28xx_rc_unregister); |