96 lines · c
1// SPDX-License-Identifier: GPL-2.0+2// fusionhdtv-mce.h - Keytable for fusionhdtv_mce Remote Controller3//4// keymap imported from ir-keymaps.c5//6// Copyright (c) 2010 by Mauro Carvalho Chehab7 8#include <media/rc-map.h>9#include <linux/module.h>10 11/* DViCO FUSION HDTV MCE remote */12 13static struct rc_map_table fusionhdtv_mce[] = {14 15 { 0x0b, KEY_NUMERIC_1 },16 { 0x17, KEY_NUMERIC_2 },17 { 0x1b, KEY_NUMERIC_3 },18 { 0x07, KEY_NUMERIC_4 },19 { 0x50, KEY_NUMERIC_5 },20 { 0x54, KEY_NUMERIC_6 },21 { 0x48, KEY_NUMERIC_7 },22 { 0x4c, KEY_NUMERIC_8 },23 { 0x58, KEY_NUMERIC_9 },24 { 0x03, KEY_NUMERIC_0 },25 26 { 0x5e, KEY_OK },27 { 0x51, KEY_UP },28 { 0x53, KEY_DOWN },29 { 0x5b, KEY_LEFT },30 { 0x5f, KEY_RIGHT },31 32 { 0x02, KEY_TV }, /* Labeled DTV on remote */33 { 0x0e, KEY_MP3 },34 { 0x1a, KEY_DVD },35 { 0x1e, KEY_FAVORITES }, /* Labeled CPF on remote */36 { 0x16, KEY_SETUP },37 { 0x46, KEY_POWER2 }, /* TV On/Off button on remote */38 { 0x0a, KEY_EPG }, /* Labeled Guide on remote */39 40 { 0x49, KEY_BACK },41 { 0x59, KEY_INFO }, /* Labeled MORE on remote */42 { 0x4d, KEY_MENU }, /* Labeled DVDMENU on remote */43 { 0x55, KEY_CYCLEWINDOWS }, /* Labeled ALT-TAB on remote */44 45 { 0x0f, KEY_PREVIOUSSONG }, /* Labeled |<< REPLAY on remote */46 { 0x12, KEY_NEXTSONG }, /* Labeled >>| SKIP on remote */47 { 0x42, KEY_ENTER }, /* Labeled START with a green48 MS windows logo on remote */49 50 { 0x15, KEY_VOLUMEUP },51 { 0x05, KEY_VOLUMEDOWN },52 { 0x11, KEY_CHANNELUP },53 { 0x09, KEY_CHANNELDOWN },54 55 { 0x52, KEY_CAMERA },56 { 0x5a, KEY_TUNER },57 { 0x19, KEY_OPEN },58 59 { 0x13, KEY_MODE }, /* 4:3 16:9 select */60 { 0x1f, KEY_ZOOM },61 62 { 0x43, KEY_REWIND },63 { 0x47, KEY_PLAYPAUSE },64 { 0x4f, KEY_FASTFORWARD },65 { 0x57, KEY_MUTE },66 { 0x0d, KEY_STOP },67 { 0x01, KEY_RECORD },68 { 0x4e, KEY_POWER },69};70 71static struct rc_map_list fusionhdtv_mce_map = {72 .map = {73 .scan = fusionhdtv_mce,74 .size = ARRAY_SIZE(fusionhdtv_mce),75 .rc_proto = RC_PROTO_UNKNOWN, /* Legacy IR type */76 .name = RC_MAP_FUSIONHDTV_MCE,77 }78};79 80static int __init init_rc_map_fusionhdtv_mce(void)81{82 return rc_map_register(&fusionhdtv_mce_map);83}84 85static void __exit exit_rc_map_fusionhdtv_mce(void)86{87 rc_map_unregister(&fusionhdtv_mce_map);88}89 90module_init(init_rc_map_fusionhdtv_mce)91module_exit(exit_rc_map_fusionhdtv_mce)92 93MODULE_LICENSE("GPL");94MODULE_AUTHOR("Mauro Carvalho Chehab");95MODULE_DESCRIPTION("DViCO FUSION HDTV MCE remote controller keytable");96