📄 saa7134-input.c
字号:
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Should you need to contact me, the author, you can do so either by * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail: * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic */#include <linux/module.h>#include <linux/init.h>#include <linux/input.h>#include <linux/delay.h>#include <linux/interrupt.h>#include <linux/input.h>#include "saa7134-reg.h"#include "saa7134.h"/* ---------------------------------------------------------------------- */static IR_KEYTAB_TYPE flyvideo_codes[IR_KEYTAB_SIZE] = { [ 15 ] = KEY_KP0, [ 3 ] = KEY_KP1, [ 4 ] = KEY_KP2, [ 5 ] = KEY_KP3, [ 7 ] = KEY_KP4, [ 8 ] = KEY_KP5, [ 9 ] = KEY_KP6, [ 11 ] = KEY_KP7, [ 12 ] = KEY_KP8, [ 13 ] = KEY_KP9, [ 14 ] = KEY_TUNER, // Air/Cable [ 17 ] = KEY_VIDEO, // Video [ 21 ] = KEY_AUDIO, // Audio [ 0 ] = KEY_POWER, // Pover [ 2 ] = KEY_ZOOM, // Fullscreen [ 27 ] = KEY_MUTE, // Mute [ 20 ] = KEY_VOLUMEUP, [ 23 ] = KEY_VOLUMEDOWN, [ 18 ] = KEY_CHANNELUP, // Channel + [ 19 ] = KEY_CHANNELDOWN, // Channel - [ 6 ] = KEY_AGAIN, // Recal [ 16 ] = KEY_KPENTER, // Enter#if 1 /* FIXME */ [ 26 ] = KEY_F22, // Stereo [ 24 ] = KEY_EDIT, // AV Source#endif};static IR_KEYTAB_TYPE cinergy_codes[IR_KEYTAB_SIZE] = { [ 0 ] = KEY_KP0, [ 1 ] = KEY_KP1, [ 2 ] = KEY_KP2, [ 3 ] = KEY_KP3, [ 4 ] = KEY_KP4, [ 5 ] = KEY_KP5, [ 6 ] = KEY_KP6, [ 7 ] = KEY_KP7, [ 8 ] = KEY_KP8, [ 9 ] = KEY_KP9, [ 0x0a ] = KEY_POWER, [ 0x0b ] = KEY_PROG1, // app [ 0x0c ] = KEY_ZOOM, // zoom/fullscreen [ 0x0d ] = KEY_CHANNELUP, // channel [ 0x0e ] = KEY_CHANNELDOWN, // channel- [ 0x0f ] = KEY_VOLUMEUP, [ 0x10 ] = KEY_VOLUMEDOWN, [ 0x11 ] = KEY_TUNER, // AV [ 0x12 ] = KEY_NUMLOCK, // -/-- [ 0x13 ] = KEY_AUDIO, // audio [ 0x14 ] = KEY_MUTE, [ 0x15 ] = KEY_UP, [ 0x16 ] = KEY_DOWN, [ 0x17 ] = KEY_LEFT, [ 0x18 ] = KEY_RIGHT, [ 0x19 ] = BTN_LEFT, [ 0x1a ] = BTN_RIGHT, [ 0x1b ] = KEY_WWW, // text [ 0x1c ] = KEY_REWIND, [ 0x1d ] = KEY_FORWARD, [ 0x1e ] = KEY_RECORD, [ 0x1f ] = KEY_PLAY, [ 0x20 ] = KEY_PREVIOUSSONG, [ 0x21 ] = KEY_NEXTSONG, [ 0x22 ] = KEY_PAUSE, [ 0x23 ] = KEY_STOP,};/* ---------------------------------------------------------------------- */static int build_key(struct saa7134_dev *dev){ struct saa7134_ir *ir = dev->remote; u32 gpio, data; /* rising SAA7134_GPIO_GPRESCAN reads the status */ saa_clearb(SAA7134_GPIO_GPMODE3,SAA7134_GPIO_GPRESCAN); saa_setb(SAA7134_GPIO_GPMODE3,SAA7134_GPIO_GPRESCAN); gpio = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2); data = ir_extract_bits(gpio, ir->mask_keycode); printk("%s: build_key gpio=0x%x mask=0x%x data=%d\n", dev->name, gpio, ir->mask_keycode, data); if ((ir->mask_keydown && (0 != (gpio & ir->mask_keydown))) || (ir->mask_keyup && (0 == (gpio & ir->mask_keyup)))) { ir_input_keydown(&ir->dev,&ir->ir,data,data); } else { ir_input_nokey(&ir->dev,&ir->ir); } return 0;}/* ---------------------------------------------------------------------- */void saa7134_input_irq(struct saa7134_dev *dev){ build_key(dev);}int saa7134_input_init1(struct saa7134_dev *dev){ struct saa7134_ir *ir; IR_KEYTAB_TYPE *ir_codes = NULL; u32 mask_keycode = 0; u32 mask_keydown = 0; u32 mask_keyup = 0; int ir_type = IR_TYPE_OTHER; /* detect & configure */ if (!dev->has_remote) return -ENODEV; switch (dev->board) { case SAA7134_BOARD_FLYVIDEO2000: case SAA7134_BOARD_FLYVIDEO3000: ir_codes = flyvideo_codes; mask_keycode = 0xEC00000; mask_keydown = 0x0040000; break; case SAA7134_BOARD_CINERGY400: case SAA7134_BOARD_CINERGY600: ir_codes = cinergy_codes; mask_keycode = 0x00003f; mask_keyup = 0x040000; break; } if (NULL == ir_codes) { printk("%s: Oops: IR config error [card=%d]\n", dev->name, dev->board); return -ENODEV; } ir = kmalloc(sizeof(*ir),GFP_KERNEL); if (NULL == ir) return -ENOMEM; memset(ir,0,sizeof(*ir)); /* init hardware-specific stuff */ ir->mask_keycode = mask_keycode; ir->mask_keydown = mask_keydown; ir->mask_keyup = mask_keyup; /* init input device */ snprintf(ir->name, sizeof(ir->name), "saa7134 IR (%s)", saa7134_boards[dev->board].name); snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(dev->pci)); ir_input_init(&ir->dev, &ir->ir, ir_type, ir_codes); ir->dev.name = ir->name;#if LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0) ir->dev.phys = ir->phys; ir->dev.id.bustype = BUS_PCI; ir->dev.id.version = 1; if (dev->pci->subsystem_vendor) { ir->dev.id.vendor = dev->pci->subsystem_vendor; ir->dev.id.product = dev->pci->subsystem_device; } else { ir->dev.id.vendor = dev->pci->vendor; ir->dev.id.product = dev->pci->device; }#endif /* all done */ dev->remote = ir; input_register_device(&dev->remote->dev); printk("%s: registered input device for IR\n",dev->name); return 0;}void saa7134_input_fini(struct saa7134_dev *dev){ if (NULL == dev->remote) return; input_unregister_device(&dev->remote->dev); kfree(dev->remote); dev->remote = NULL;}/* ---------------------------------------------------------------------- * Local variables: * c-basic-offset: 8 * End: */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -