linux/drivers/media/rc/keymaps/rc-fusionhdtv-mce.c
<<
>>
Prefs
   1/* fusionhdtv-mce.h - Keytable for fusionhdtv_mce 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/* DViCO FUSION HDTV MCE remote */
  17
  18static struct rc_map_table fusionhdtv_mce[] = {
  19
  20        { 0x0b, KEY_1 },
  21        { 0x17, KEY_2 },
  22        { 0x1b, KEY_3 },
  23        { 0x07, KEY_4 },
  24        { 0x50, KEY_5 },
  25        { 0x54, KEY_6 },
  26        { 0x48, KEY_7 },
  27        { 0x4c, KEY_8 },
  28        { 0x58, KEY_9 },
  29        { 0x03, KEY_0 },
  30
  31        { 0x5e, KEY_OK },
  32        { 0x51, KEY_UP },
  33        { 0x53, KEY_DOWN },
  34        { 0x5b, KEY_LEFT },
  35        { 0x5f, KEY_RIGHT },
  36
  37        { 0x02, KEY_TV },               /* Labeled DTV on remote */
  38        { 0x0e, KEY_MP3 },
  39        { 0x1a, KEY_DVD },
  40        { 0x1e, KEY_FAVORITES },        /* Labeled CPF on remote */
  41        { 0x16, KEY_SETUP },
  42        { 0x46, KEY_POWER2 },           /* TV On/Off button on remote */
  43        { 0x0a, KEY_EPG },              /* Labeled Guide on remote */
  44
  45        { 0x49, KEY_BACK },
  46        { 0x59, KEY_INFO },             /* Labeled MORE on remote */
  47        { 0x4d, KEY_MENU },             /* Labeled DVDMENU on remote */
  48        { 0x55, KEY_CYCLEWINDOWS },     /* Labeled ALT-TAB on remote */
  49
  50        { 0x0f, KEY_PREVIOUSSONG },     /* Labeled |<< REPLAY on remote */
  51        { 0x12, KEY_NEXTSONG },         /* Labeled >>| SKIP on remote */
  52        { 0x42, KEY_ENTER },            /* Labeled START with a green
  53                                           MS windows logo on remote */
  54
  55        { 0x15, KEY_VOLUMEUP },
  56        { 0x05, KEY_VOLUMEDOWN },
  57        { 0x11, KEY_CHANNELUP },
  58        { 0x09, KEY_CHANNELDOWN },
  59
  60        { 0x52, KEY_CAMERA },
  61        { 0x5a, KEY_TUNER },
  62        { 0x19, KEY_OPEN },
  63
  64        { 0x13, KEY_MODE },             /* 4:3 16:9 select */
  65        { 0x1f, KEY_ZOOM },
  66
  67        { 0x43, KEY_REWIND },
  68        { 0x47, KEY_PLAYPAUSE },
  69        { 0x4f, KEY_FASTFORWARD },
  70        { 0x57, KEY_MUTE },
  71        { 0x0d, KEY_STOP },
  72        { 0x01, KEY_RECORD },
  73        { 0x4e, KEY_POWER },
  74};
  75
  76static struct rc_map_list fusionhdtv_mce_map = {
  77        .map = {
  78                .scan    = fusionhdtv_mce,
  79                .size    = ARRAY_SIZE(fusionhdtv_mce),
  80                .rc_type = RC_TYPE_UNKNOWN,     /* Legacy IR type */
  81                .name    = RC_MAP_FUSIONHDTV_MCE,
  82        }
  83};
  84
  85static int __init init_rc_map_fusionhdtv_mce(void)
  86{
  87        return rc_map_register(&fusionhdtv_mce_map);
  88}
  89
  90static void __exit exit_rc_map_fusionhdtv_mce(void)
  91{
  92        rc_map_unregister(&fusionhdtv_mce_map);
  93}
  94
  95module_init(init_rc_map_fusionhdtv_mce)
  96module_exit(exit_rc_map_fusionhdtv_mce)
  97
  98MODULE_LICENSE("GPL");
  99MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
 100