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> |
| 26 | #include <linux/delay.h> |
| 27 | #include <linux/input.h> |
| 28 | #include <linux/pci.h> |
| 29 | #include <linux/module.h> |
| 30 | #include <linux/moduleparam.h> |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "cx88.h" |
Mauro Carvalho Chehab | d21838d | 2006-01-09 15:25:21 -0200 | [diff] [blame] | 33 | #include <media/ir-common.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | /* ---------------------------------------------------------------------- */ |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | struct cx88_IR { |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 38 | struct cx88_core *core; |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 39 | struct input_dev *input; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 40 | struct ir_input_state ir; |
| 41 | char name[32]; |
| 42 | char phys[32]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | /* sample from gpio pin 16 */ |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 45 | u32 sampling; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 46 | u32 samples[16]; |
| 47 | int scount; |
| 48 | unsigned long release; |
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; |
| 52 | struct work_struct work; |
| 53 | struct timer_list timer; |
| 54 | u32 gpio_addr; |
| 55 | u32 last_gpio; |
| 56 | u32 mask_keycode; |
| 57 | u32 mask_keydown; |
| 58 | u32 mask_keyup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | }; |
| 60 | |
| 61 | static int ir_debug = 0; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 62 | module_param(ir_debug, int, 0644); /* debug level [IR] */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]"); |
| 64 | |
| 65 | #define ir_dprintk(fmt, arg...) if (ir_debug) \ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 66 | printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | /* ---------------------------------------------------------------------- */ |
| 69 | |
| 70 | static void cx88_ir_handle_key(struct cx88_IR *ir) |
| 71 | { |
| 72 | struct cx88_core *core = ir->core; |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 73 | u32 gpio, data, auxgpio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
| 75 | /* read gpio value */ |
| 76 | gpio = cx_read(ir->gpio_addr); |
Ricardo Cerqueira | be4f451 | 2006-06-08 17:36:17 -0300 | [diff] [blame] | 77 | if (core->board == CX88_BOARD_NPGTECH_REALTV_TOP10FM) { |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 78 | /* This board apparently uses a combination of 2 GPIO |
| 79 | to represent the keys. Additionally, the second GPIO |
| 80 | can be used for parity. |
| 81 | |
| 82 | Example: |
| 83 | |
| 84 | for key "5" |
| 85 | gpio = 0x758, auxgpio = 0xe5 or 0xf5 |
| 86 | for key "Power" |
| 87 | gpio = 0x758, auxgpio = 0xed or 0xfd |
| 88 | */ |
| 89 | |
| 90 | auxgpio = cx_read(MO_GP1_IO); |
| 91 | /* Take out the parity part */ |
Ricardo Cerqueira | a62c61d | 2006-07-17 16:34:27 -0300 | [diff] [blame] | 92 | gpio=(gpio & 0x7fd) + (auxgpio & 0xef); |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 93 | } else |
| 94 | auxgpio = gpio; |
| 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | if (ir->polling) { |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 97 | if (ir->last_gpio == auxgpio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | return; |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 99 | ir->last_gpio = auxgpio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | /* extract data */ |
| 103 | data = ir_extract_bits(gpio, ir->mask_keycode); |
| 104 | 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] | 105 | gpio, data, |
| 106 | ir->polling ? "poll" : "irq", |
| 107 | (gpio & ir->mask_keydown) ? " down" : "", |
| 108 | (gpio & ir->mask_keyup) ? " up" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
Peter Naulls | d1009bd | 2006-08-08 09:10:05 -0300 | [diff] [blame] | 110 | if (ir->core->board == CX88_BOARD_NORWOOD_MICRO) { |
| 111 | u32 gpio_key = cx_read(MO_GP0_IO); |
| 112 | |
| 113 | data = (data << 4) | ((gpio_key & 0xf0) >> 4); |
| 114 | |
| 115 | ir_input_keydown(ir->input, &ir->ir, data, data); |
| 116 | ir_input_nokey(ir->input, &ir->ir); |
| 117 | |
| 118 | } else if (ir->mask_keydown) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | /* bit set on keydown */ |
| 120 | if (gpio & ir->mask_keydown) { |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 121 | ir_input_keydown(ir->input, &ir->ir, data, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | } else { |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 123 | ir_input_nokey(ir->input, &ir->ir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | } else if (ir->mask_keyup) { |
| 127 | /* bit cleared on keydown */ |
| 128 | if (0 == (gpio & ir->mask_keyup)) { |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 129 | ir_input_keydown(ir->input, &ir->ir, data, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | } else { |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 131 | ir_input_nokey(ir->input, &ir->ir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | } else { |
| 135 | /* can't distinguish keydown/up :-/ */ |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 136 | ir_input_keydown(ir->input, &ir->ir, data, data); |
| 137 | ir_input_nokey(ir->input, &ir->ir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
| 139 | } |
| 140 | |
| 141 | static void ir_timer(unsigned long data) |
| 142 | { |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 143 | struct cx88_IR *ir = (struct cx88_IR *)data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
| 145 | schedule_work(&ir->work); |
| 146 | } |
| 147 | |
| 148 | static void cx88_ir_work(void *data) |
| 149 | { |
| 150 | struct cx88_IR *ir = data; |
| 151 | unsigned long timeout; |
| 152 | |
| 153 | cx88_ir_handle_key(ir); |
| 154 | timeout = jiffies + (ir->polling * HZ / 1000); |
| 155 | mod_timer(&ir->timer, timeout); |
| 156 | } |
| 157 | |
| 158 | /* ---------------------------------------------------------------------- */ |
| 159 | |
| 160 | int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) |
| 161 | { |
| 162 | struct cx88_IR *ir; |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 163 | struct input_dev *input_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | IR_KEYTAB_TYPE *ir_codes = NULL; |
| 165 | int ir_type = IR_TYPE_OTHER; |
| 166 | |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 167 | ir = kzalloc(sizeof(*ir), GFP_KERNEL); |
| 168 | input_dev = input_allocate_device(); |
| 169 | if (!ir || !input_dev) { |
| 170 | kfree(ir); |
| 171 | input_free_device(input_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | return -ENOMEM; |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | ir->input = input_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
| 177 | /* detect & configure */ |
| 178 | switch (core->board) { |
| 179 | case CX88_BOARD_DNTV_LIVE_DVB_T: |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 180 | case CX88_BOARD_KWORLD_DVB_T: |
Marco Manenti | 28ecc44 | 2006-02-07 06:45:33 -0200 | [diff] [blame] | 181 | case CX88_BOARD_KWORLD_DVB_T_CX22702: |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 182 | ir_codes = ir_codes_dntv_live_dvb_t; |
| 183 | ir->gpio_addr = MO_GP1_IO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | ir->mask_keycode = 0x1f; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 185 | ir->mask_keyup = 0x60; |
| 186 | ir->polling = 50; /* ms */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | break; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 188 | case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1: |
| 189 | ir_codes = ir_codes_cinergy_1400; |
| 190 | ir_type = IR_TYPE_PD; |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 191 | ir->sampling = 0xeb04; /* address */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 192 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | case CX88_BOARD_HAUPPAUGE: |
| 194 | case CX88_BOARD_HAUPPAUGE_DVB_T1: |
Steven Toth | fb56cb6 | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 195 | case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: |
| 196 | case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: |
Steven Toth | 611900c | 2006-01-09 15:25:12 -0200 | [diff] [blame] | 197 | case CX88_BOARD_HAUPPAUGE_HVR1100: |
Steven Toth | aa481a6 | 2006-09-14 15:41:13 -0300 | [diff] [blame^] | 198 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 199 | ir_codes = ir_codes_hauppauge_new; |
| 200 | ir_type = IR_TYPE_RC5; |
| 201 | ir->sampling = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | break; |
Malcolm Valentine | 2de873e | 2006-05-29 13:56:24 -0300 | [diff] [blame] | 203 | case CX88_BOARD_WINFAST_DTV2000H: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | case CX88_BOARD_WINFAST2000XP_EXPERT: |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 205 | ir_codes = ir_codes_winfast; |
| 206 | ir->gpio_addr = MO_GP0_IO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | ir->mask_keycode = 0x8f8; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 208 | ir->mask_keyup = 0x100; |
Malcolm Valentine | 2de873e | 2006-05-29 13:56:24 -0300 | [diff] [blame] | 209 | ir->polling = 50; /* ms */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | break; |
| 211 | case CX88_BOARD_IODATA_GVBCTV7E: |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 212 | ir_codes = ir_codes_iodata_bctv7e; |
| 213 | ir->gpio_addr = MO_GP0_IO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | ir->mask_keycode = 0xfd; |
| 215 | ir->mask_keydown = 0x02; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 216 | ir->polling = 5; /* ms */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | break; |
Matheus Izvekov | a5daecb | 2006-03-11 23:54:58 -0300 | [diff] [blame] | 218 | case CX88_BOARD_PROLINK_PLAYTVPVR: |
Manuel Capinha | 239df2e | 2005-06-23 22:04:53 -0700 | [diff] [blame] | 219 | case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO: |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 220 | ir_codes = ir_codes_pixelview; |
| 221 | ir->gpio_addr = MO_GP1_IO; |
Manuel Capinha | 239df2e | 2005-06-23 22:04:53 -0700 | [diff] [blame] | 222 | ir->mask_keycode = 0x1f; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 223 | ir->mask_keyup = 0x80; |
| 224 | ir->polling = 1; /* ms */ |
Manuel Capinha | 239df2e | 2005-06-23 22:04:53 -0700 | [diff] [blame] | 225 | break; |
Nickolay V. Shmyrev | b639f9d | 2006-01-23 09:44:10 -0200 | [diff] [blame] | 226 | case CX88_BOARD_KWORLD_LTV883: |
| 227 | ir_codes = ir_codes_pixelview; |
| 228 | ir->gpio_addr = MO_GP1_IO; |
| 229 | ir->mask_keycode = 0x1f; |
| 230 | ir->mask_keyup = 0x60; |
| 231 | ir->polling = 1; /* ms */ |
| 232 | break; |
Mauro Carvalho Chehab | a82decf | 2005-07-07 17:58:36 -0700 | [diff] [blame] | 233 | case CX88_BOARD_ADSTECH_DVB_T_PCI: |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 234 | ir_codes = ir_codes_adstech_dvb_t_pci; |
| 235 | ir->gpio_addr = MO_GP1_IO; |
Mauro Carvalho Chehab | a82decf | 2005-07-07 17:58:36 -0700 | [diff] [blame] | 236 | ir->mask_keycode = 0xbf; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 237 | ir->mask_keyup = 0x40; |
| 238 | ir->polling = 50; /* ms */ |
Mauro Carvalho Chehab | a82decf | 2005-07-07 17:58:36 -0700 | [diff] [blame] | 239 | break; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 240 | case CX88_BOARD_MSI_TVANYWHERE_MASTER: |
| 241 | ir_codes = ir_codes_msi_tvanywhere; |
| 242 | ir->gpio_addr = MO_GP1_IO; |
| 243 | ir->mask_keycode = 0x1f; |
| 244 | ir->mask_keyup = 0x40; |
| 245 | ir->polling = 1; /* ms */ |
| 246 | break; |
George Gazurkoff | 899ad11 | 2006-01-09 15:25:19 -0200 | [diff] [blame] | 247 | case CX88_BOARD_AVERTV_303: |
George Gazurkoff | 565f494 | 2006-01-09 15:32:46 -0200 | [diff] [blame] | 248 | case CX88_BOARD_AVERTV_STUDIO_303: |
George Gazurkoff | 899ad11 | 2006-01-09 15:25:19 -0200 | [diff] [blame] | 249 | ir_codes = ir_codes_avertv_303; |
| 250 | ir->gpio_addr = MO_GP2_IO; |
| 251 | ir->mask_keycode = 0xfb; |
| 252 | ir->mask_keydown = 0x02; |
| 253 | ir->polling = 50; /* ms */ |
| 254 | break; |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 255 | case CX88_BOARD_DNTV_LIVE_DVB_T_PRO: |
| 256 | ir_codes = ir_codes_dntv_live_dvbt_pro; |
| 257 | ir_type = IR_TYPE_PD; |
| 258 | ir->sampling = 0xff00; /* address */ |
| 259 | break; |
Peter Naulls | d1009bd | 2006-08-08 09:10:05 -0300 | [diff] [blame] | 260 | case CX88_BOARD_NORWOOD_MICRO: |
| 261 | ir_codes = ir_codes_norwood; |
| 262 | ir->gpio_addr = MO_GP1_IO; |
| 263 | ir->mask_keycode = 0x0e; |
| 264 | ir->mask_keyup = 0x80; |
| 265 | ir->polling = 50; /* ms */ |
| 266 | break; |
Ricardo Cerqueira | be4f451 | 2006-06-08 17:36:17 -0300 | [diff] [blame] | 267 | case CX88_BOARD_NPGTECH_REALTV_TOP10FM: |
Ricardo Cerqueira | 680543c | 2006-05-22 07:44:02 -0300 | [diff] [blame] | 268 | ir_codes = ir_codes_npgtech; |
| 269 | ir->gpio_addr = MO_GP0_IO; |
| 270 | ir->mask_keycode = 0xfa; |
| 271 | ir->polling = 50; /* ms */ |
| 272 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | } |
Mauro Carvalho Chehab | b45009b | 2005-06-23 22:05:03 -0700 | [diff] [blame] | 274 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | if (NULL == ir_codes) { |
| 276 | kfree(ir); |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 277 | input_free_device(input_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | return -ENODEV; |
| 279 | } |
| 280 | |
| 281 | /* init input device */ |
| 282 | snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", |
| 283 | cx88_boards[core->board].name); |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 284 | snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 286 | ir_input_init(input_dev, &ir->ir, ir_type, ir_codes); |
| 287 | input_dev->name = ir->name; |
| 288 | input_dev->phys = ir->phys; |
| 289 | input_dev->id.bustype = BUS_PCI; |
| 290 | input_dev->id.version = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | if (pci->subsystem_vendor) { |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 292 | input_dev->id.vendor = pci->subsystem_vendor; |
| 293 | input_dev->id.product = pci->subsystem_device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } else { |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 295 | input_dev->id.vendor = pci->vendor; |
| 296 | input_dev->id.product = pci->device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | } |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 298 | input_dev->cdev.dev = &pci->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | /* record handles to ourself */ |
| 300 | ir->core = core; |
| 301 | core->ir = ir; |
| 302 | |
| 303 | if (ir->polling) { |
| 304 | INIT_WORK(&ir->work, cx88_ir_work, ir); |
| 305 | init_timer(&ir->timer); |
| 306 | ir->timer.function = ir_timer; |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 307 | ir->timer.data = (unsigned long)ir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | schedule_work(&ir->work); |
| 309 | } |
| 310 | if (ir->sampling) { |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 311 | core->pci_irqmask |= (1 << 18); /* IR_SMP_INT */ |
| 312 | cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */ |
| 313 | cx_write(MO_DDSCFG_IO, 0x5); /* enable */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | /* all done */ |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 317 | input_register_device(ir->input); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
| 319 | return 0; |
| 320 | } |
| 321 | |
| 322 | int cx88_ir_fini(struct cx88_core *core) |
| 323 | { |
| 324 | struct cx88_IR *ir = core->ir; |
| 325 | |
| 326 | /* skip detach on non attached boards */ |
| 327 | if (NULL == ir) |
| 328 | return 0; |
| 329 | |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 330 | if (ir->sampling) { |
| 331 | cx_write(MO_DDSCFG_IO, 0x0); |
| 332 | core->pci_irqmask &= ~(1 << 18); |
| 333 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | if (ir->polling) { |
| 335 | del_timer(&ir->timer); |
| 336 | flush_scheduled_work(); |
| 337 | } |
| 338 | |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 339 | input_unregister_device(ir->input); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | kfree(ir); |
| 341 | |
| 342 | /* done */ |
| 343 | core->ir = NULL; |
| 344 | return 0; |
| 345 | } |
| 346 | |
| 347 | /* ---------------------------------------------------------------------- */ |
| 348 | |
| 349 | void cx88_ir_irq(struct cx88_core *core) |
| 350 | { |
| 351 | struct cx88_IR *ir = core->ir; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 352 | u32 samples, ircode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | int i; |
| 354 | |
| 355 | if (NULL == ir) |
| 356 | return; |
| 357 | if (!ir->sampling) |
| 358 | return; |
| 359 | |
| 360 | samples = cx_read(MO_SAMPLE_IO); |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 361 | if (0 != samples && 0xffffffff != samples) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | /* record sample data */ |
| 363 | if (ir->scount < ARRAY_SIZE(ir->samples)) |
| 364 | ir->samples[ir->scount++] = samples; |
| 365 | return; |
| 366 | } |
| 367 | if (!ir->scount) { |
| 368 | /* nothing to sample */ |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 369 | if (ir->ir.keypressed && time_after(jiffies, ir->release)) |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 370 | ir_input_nokey(ir->input, &ir->ir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | return; |
| 372 | } |
| 373 | |
| 374 | /* have a complete sample */ |
| 375 | if (ir->scount < ARRAY_SIZE(ir->samples)) |
| 376 | ir->samples[ir->scount++] = samples; |
| 377 | for (i = 0; i < ir->scount; i++) |
| 378 | ir->samples[i] = ~ir->samples[i]; |
| 379 | if (ir_debug) |
Mauro Carvalho Chehab | 41ef7c1 | 2005-07-12 13:58:44 -0700 | [diff] [blame] | 380 | ir_dump_samples(ir->samples, ir->scount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
| 382 | /* decode it */ |
| 383 | switch (core->board) { |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 384 | case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1: |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 385 | case CX88_BOARD_DNTV_LIVE_DVB_T_PRO: |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 386 | ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4); |
| 387 | |
| 388 | if (ircode == 0xffffffff) { /* decoding error */ |
| 389 | ir_dprintk("pulse distance decoding error\n"); |
| 390 | break; |
| 391 | } |
| 392 | |
| 393 | ir_dprintk("pulse distance decoded: %x\n", ircode); |
| 394 | |
| 395 | if (ircode == 0) { /* key still pressed */ |
| 396 | ir_dprintk("pulse distance decoded repeat code\n"); |
| 397 | ir->release = jiffies + msecs_to_jiffies(120); |
| 398 | break; |
| 399 | } |
| 400 | |
Chris Pascoe | fc40b26 | 2006-01-09 15:25:35 -0200 | [diff] [blame] | 401 | if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */ |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 402 | ir_dprintk("pulse distance decoded wrong address\n"); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 403 | break; |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */ |
| 407 | ir_dprintk("pulse distance decoded wrong check sum\n"); |
| 408 | break; |
| 409 | } |
| 410 | |
| 411 | ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0x7f); |
| 412 | |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 413 | ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f, (ircode >> 16) & 0xff); |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 414 | ir->release = jiffies + msecs_to_jiffies(120); |
| 415 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | case CX88_BOARD_HAUPPAUGE: |
| 417 | case CX88_BOARD_HAUPPAUGE_DVB_T1: |
Steven Toth | fb56cb6 | 2006-01-09 15:25:02 -0200 | [diff] [blame] | 418 | case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: |
| 419 | case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: |
Chris Pascoe | 30367bf | 2006-01-11 19:40:01 -0200 | [diff] [blame] | 420 | case CX88_BOARD_HAUPPAUGE_HVR1100: |
Steven Toth | aa481a6 | 2006-09-14 15:41:13 -0300 | [diff] [blame^] | 421 | case CX88_BOARD_HAUPPAUGE_HVR1300: |
Mauro Carvalho Chehab | e52e98a | 2005-09-09 13:03:41 -0700 | [diff] [blame] | 422 | ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7); |
| 423 | ir_dprintk("biphase decoded: %x\n", ircode); |
| 424 | if ((ircode & 0xfffff000) != 0x3000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | break; |
Dmitry Torokhov | b7df391 | 2005-09-15 02:01:53 -0500 | [diff] [blame] | 426 | ir_input_keydown(ir->input, &ir->ir, ircode & 0x3f, ircode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | ir->release = jiffies + msecs_to_jiffies(120); |
| 428 | break; |
| 429 | } |
| 430 | |
| 431 | ir->scount = 0; |
| 432 | return; |
| 433 | } |
| 434 | |
| 435 | /* ---------------------------------------------------------------------- */ |
| 436 | |
| 437 | MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe"); |
| 438 | MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls"); |
| 439 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | /* |
| 441 | * Local variables: |
| 442 | * c-basic-offset: 8 |
| 443 | * End: |
| 444 | */ |