Path: blob/master/drivers/media/rc/keymaps/rc-fusionhdtv-mce.c
15157 views
/* fusionhdtv-mce.h - Keytable for fusionhdtv_mce Remote Controller1*2* keymap imported from ir-keymaps.c3*4* Copyright (c) 2010 by Mauro Carvalho Chehab <[email protected]>5*6* This program is free software; you can redistribute it and/or modify7* it under the terms of the GNU General Public License as published by8* the Free Software Foundation; either version 2 of the License, or9* (at your option) any later version.10*/1112#include <media/rc-map.h>1314/* DViCO FUSION HDTV MCE remote */1516static struct rc_map_table fusionhdtv_mce[] = {1718{ 0x0b, KEY_1 },19{ 0x17, KEY_2 },20{ 0x1b, KEY_3 },21{ 0x07, KEY_4 },22{ 0x50, KEY_5 },23{ 0x54, KEY_6 },24{ 0x48, KEY_7 },25{ 0x4c, KEY_8 },26{ 0x58, KEY_9 },27{ 0x03, KEY_0 },2829{ 0x5e, KEY_OK },30{ 0x51, KEY_UP },31{ 0x53, KEY_DOWN },32{ 0x5b, KEY_LEFT },33{ 0x5f, KEY_RIGHT },3435{ 0x02, KEY_TV }, /* Labeled DTV on remote */36{ 0x0e, KEY_MP3 },37{ 0x1a, KEY_DVD },38{ 0x1e, KEY_FAVORITES }, /* Labeled CPF on remote */39{ 0x16, KEY_SETUP },40{ 0x46, KEY_POWER2 }, /* TV On/Off button on remote */41{ 0x0a, KEY_EPG }, /* Labeled Guide on remote */4243{ 0x49, KEY_BACK },44{ 0x59, KEY_INFO }, /* Labeled MORE on remote */45{ 0x4d, KEY_MENU }, /* Labeled DVDMENU on remote */46{ 0x55, KEY_CYCLEWINDOWS }, /* Labeled ALT-TAB on remote */4748{ 0x0f, KEY_PREVIOUSSONG }, /* Labeled |<< REPLAY on remote */49{ 0x12, KEY_NEXTSONG }, /* Labeled >>| SKIP on remote */50{ 0x42, KEY_ENTER }, /* Labeled START with a green51MS windows logo on remote */5253{ 0x15, KEY_VOLUMEUP },54{ 0x05, KEY_VOLUMEDOWN },55{ 0x11, KEY_CHANNELUP },56{ 0x09, KEY_CHANNELDOWN },5758{ 0x52, KEY_CAMERA },59{ 0x5a, KEY_TUNER },60{ 0x19, KEY_OPEN },6162{ 0x13, KEY_MODE }, /* 4:3 16:9 select */63{ 0x1f, KEY_ZOOM },6465{ 0x43, KEY_REWIND },66{ 0x47, KEY_PLAYPAUSE },67{ 0x4f, KEY_FASTFORWARD },68{ 0x57, KEY_MUTE },69{ 0x0d, KEY_STOP },70{ 0x01, KEY_RECORD },71{ 0x4e, KEY_POWER },72};7374static struct rc_map_list fusionhdtv_mce_map = {75.map = {76.scan = fusionhdtv_mce,77.size = ARRAY_SIZE(fusionhdtv_mce),78.rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */79.name = RC_MAP_FUSIONHDTV_MCE,80}81};8283static int __init init_rc_map_fusionhdtv_mce(void)84{85return rc_map_register(&fusionhdtv_mce_map);86}8788static void __exit exit_rc_map_fusionhdtv_mce(void)89{90rc_map_unregister(&fusionhdtv_mce_map);91}9293module_init(init_rc_map_fusionhdtv_mce)94module_exit(exit_rc_map_fusionhdtv_mce)9596MODULE_LICENSE("GPL");97MODULE_AUTHOR("Mauro Carvalho Chehab <[email protected]>");9899100