1 /* dntv-live-dvbt-pro.h - Keytable for dntv_live_dvbt_pro 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 15 /* DigitalNow DNTV Live! DVB-T Pro Remote */ 16 17 static struct rc_map_table dntv_live_dvbt_pro[] = { 18 { 0x16, KEY_POWER }, 19 { 0x5b, KEY_HOME }, 20 21 { 0x55, KEY_TV }, /* live tv */ 22 { 0x58, KEY_TUNER }, /* digital Radio */ 23 { 0x5a, KEY_RADIO }, /* FM radio */ 24 { 0x59, KEY_DVD }, /* dvd menu */ 25 { 0x03, KEY_1 }, 26 { 0x01, KEY_2 }, 27 { 0x06, KEY_3 }, 28 { 0x09, KEY_4 }, 29 { 0x1d, KEY_5 }, 30 { 0x1f, KEY_6 }, 31 { 0x0d, KEY_7 }, 32 { 0x19, KEY_8 }, 33 { 0x1b, KEY_9 }, 34 { 0x0c, KEY_CANCEL }, 35 { 0x15, KEY_0 }, 36 { 0x4a, KEY_CLEAR }, 37 { 0x13, KEY_BACK }, 38 { 0x00, KEY_TAB }, 39 { 0x4b, KEY_UP }, 40 { 0x4e, KEY_LEFT }, 41 { 0x4f, KEY_OK }, 42 { 0x52, KEY_RIGHT }, 43 { 0x51, KEY_DOWN }, 44 { 0x1e, KEY_VOLUMEUP }, 45 { 0x0a, KEY_VOLUMEDOWN }, 46 { 0x02, KEY_CHANNELDOWN }, 47 { 0x05, KEY_CHANNELUP }, 48 { 0x11, KEY_RECORD }, 49 { 0x14, KEY_PLAY }, 50 { 0x4c, KEY_PAUSE }, 51 { 0x1a, KEY_STOP }, 52 { 0x40, KEY_REWIND }, 53 { 0x12, KEY_FASTFORWARD }, 54 { 0x41, KEY_PREVIOUSSONG }, /* replay |< */ 55 { 0x42, KEY_NEXTSONG }, /* skip >| */ 56 { 0x54, KEY_CAMERA }, /* capture */ 57 { 0x50, KEY_LANGUAGE }, /* sap */ 58 { 0x47, KEY_TV2 }, /* pip */ 59 { 0x4d, KEY_SCREEN }, 60 { 0x43, KEY_SUBTITLE }, 61 { 0x10, KEY_MUTE }, 62 { 0x49, KEY_AUDIO }, /* l/r */ 63 { 0x07, KEY_SLEEP }, 64 { 0x08, KEY_VIDEO }, /* a/v */ 65 { 0x0e, KEY_PREVIOUS }, /* recall */ 66 { 0x45, KEY_ZOOM }, /* zoom + */ 67 { 0x46, KEY_ANGLE }, /* zoom - */ 68 { 0x56, KEY_RED }, 69 { 0x57, KEY_GREEN }, 70 { 0x5c, KEY_YELLOW }, 71 { 0x5d, KEY_BLUE }, 72 }; 73 74 static struct rc_map_list dntv_live_dvbt_pro_map = { 75 .map = { 76 .scan = dntv_live_dvbt_pro, 77 .size = ARRAY_SIZE(dntv_live_dvbt_pro), 78 .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */ 79 .name = RC_MAP_DNTV_LIVE_DVBT_PRO, 80 } 81 }; 82 83 static int __init init_rc_map_dntv_live_dvbt_pro(void) 84 { 85 return rc_map_register(&dntv_live_dvbt_pro_map); 86 } 87 88 static void __exit exit_rc_map_dntv_live_dvbt_pro(void) 89 { 90 rc_map_unregister(&dntv_live_dvbt_pro_map); 91 } 92 93 module_init(init_rc_map_dntv_live_dvbt_pro) 94 module_exit(exit_rc_map_dntv_live_dvbt_pro) 95 96 MODULE_LICENSE("GPL"); 97 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>"); 98