linux/drivers/media/rc/keymaps/rc-genius-tvgo-a11mce.c
<<
>>
Prefs
   1/* genius-tvgo-a11mce.h - Keytable for genius_tvgo_a11mce Remote Controller
   2 *
   3 * keymap imported from ir-keymaps.c
   4 *
   5 * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
   6 *
   7 * This program is free software; you can redistribute it and/or modify
   8 * it under the terms of the GNU General Public License as published by
   9 * the Free Software Foundation; either version 2 of the License, or
  10 * (at your option) any later version.
  11 */
  12
  13#include <media/rc-map.h>
  14#include <linux/module.h>
  15
  16/*
  17 * Remote control for the Genius TVGO A11MCE
  18 * Adrian Pardini <pardo.bsso@gmail.com>
  19 */
  20
  21static struct rc_map_table genius_tvgo_a11mce[] = {
  22        /* Keys 0 to 9 */
  23        { 0x48, KEY_0 },
  24        { 0x09, KEY_1 },
  25        { 0x1d, KEY_2 },
  26        { 0x1f, KEY_3 },
  27        { 0x19, KEY_4 },
  28        { 0x1b, KEY_5 },
  29        { 0x11, KEY_6 },
  30        { 0x17, KEY_7 },
  31        { 0x12, KEY_8 },
  32        { 0x16, KEY_9 },
  33
  34        { 0x54, KEY_RECORD },           /* recording */
  35        { 0x06, KEY_MUTE },             /* mute */
  36        { 0x10, KEY_POWER },
  37        { 0x40, KEY_LAST },             /* recall */
  38        { 0x4c, KEY_CHANNELUP },        /* channel / program + */
  39        { 0x00, KEY_CHANNELDOWN },      /* channel / program - */
  40        { 0x0d, KEY_VOLUMEUP },
  41        { 0x15, KEY_VOLUMEDOWN },
  42        { 0x4d, KEY_OK },               /* also labeled as Pause */
  43        { 0x1c, KEY_ZOOM },             /* full screen and Stop*/
  44        { 0x02, KEY_MODE },             /* AV Source or Rewind*/
  45        { 0x04, KEY_LIST },             /* -/-- */
  46        /* small arrows above numbers */
  47        { 0x1a, KEY_NEXT },             /* also Fast Forward */
  48        { 0x0e, KEY_PREVIOUS },         /* also Rewind */
  49        /* these are in a rather non standard layout and have
  50        an alternate name written */
  51        { 0x1e, KEY_UP },               /* Video Setting */
  52        { 0x0a, KEY_DOWN },             /* Video Default */
  53        { 0x05, KEY_CAMERA },           /* Snapshot */
  54        { 0x0c, KEY_RIGHT },            /* Hide Panel */
  55        /* Four buttons without label */
  56        { 0x49, KEY_RED },
  57        { 0x0b, KEY_GREEN },
  58        { 0x13, KEY_YELLOW },
  59        { 0x50, KEY_BLUE },
  60};
  61
  62static struct rc_map_list genius_tvgo_a11mce_map = {
  63        .map = {
  64                .scan    = genius_tvgo_a11mce,
  65                .size    = ARRAY_SIZE(genius_tvgo_a11mce),
  66                .rc_type = RC_TYPE_UNKNOWN,     /* Legacy IR type */
  67                .name    = RC_MAP_GENIUS_TVGO_A11MCE,
  68        }
  69};
  70
  71static int __init init_rc_map_genius_tvgo_a11mce(void)
  72{
  73        return rc_map_register(&genius_tvgo_a11mce_map);
  74}
  75
  76static void __exit exit_rc_map_genius_tvgo_a11mce(void)
  77{
  78        rc_map_unregister(&genius_tvgo_a11mce_map);
  79}
  80
  81module_init(init_rc_map_genius_tvgo_a11mce)
  82module_exit(exit_rc_map_genius_tvgo_a11mce)
  83
  84MODULE_LICENSE("GPL");
  85MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
  86