Path: blob/master/drivers/media/rc/keymaps/rc-avermedia-cardbus.c
15157 views
/* avermedia-cardbus.h - Keytable for avermedia_cardbus 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/* Oldrich Jedlicka <[email protected]> */1516static struct rc_map_table avermedia_cardbus[] = {17{ 0x00, KEY_POWER },18{ 0x01, KEY_TUNER }, /* TV/FM */19{ 0x03, KEY_TEXT }, /* Teletext */20{ 0x04, KEY_EPG },21{ 0x05, KEY_1 },22{ 0x06, KEY_2 },23{ 0x07, KEY_3 },24{ 0x08, KEY_AUDIO },25{ 0x09, KEY_4 },26{ 0x0a, KEY_5 },27{ 0x0b, KEY_6 },28{ 0x0c, KEY_ZOOM }, /* Full screen */29{ 0x0d, KEY_7 },30{ 0x0e, KEY_8 },31{ 0x0f, KEY_9 },32{ 0x10, KEY_PAGEUP }, /* 16-CH PREV */33{ 0x11, KEY_0 },34{ 0x12, KEY_INFO },35{ 0x13, KEY_AGAIN }, /* CH RTN - channel return */36{ 0x14, KEY_MUTE },37{ 0x15, KEY_EDIT }, /* Autoscan */38{ 0x17, KEY_SAVE }, /* Screenshot */39{ 0x18, KEY_PLAYPAUSE },40{ 0x19, KEY_RECORD },41{ 0x1a, KEY_PLAY },42{ 0x1b, KEY_STOP },43{ 0x1c, KEY_FASTFORWARD },44{ 0x1d, KEY_REWIND },45{ 0x1e, KEY_VOLUMEDOWN },46{ 0x1f, KEY_VOLUMEUP },47{ 0x22, KEY_SLEEP }, /* Sleep */48{ 0x23, KEY_ZOOM }, /* Aspect */49{ 0x26, KEY_SCREEN }, /* Pos */50{ 0x27, KEY_ANGLE }, /* Size */51{ 0x28, KEY_SELECT }, /* Select */52{ 0x29, KEY_BLUE }, /* Blue/Picture */53{ 0x2a, KEY_BACKSPACE }, /* Back */54{ 0x2b, KEY_VIDEO }, /* PIP (Picture-in-picture) */55{ 0x2c, KEY_DOWN },56{ 0x2e, KEY_DOT },57{ 0x2f, KEY_TV }, /* Live TV */58{ 0x32, KEY_LEFT },59{ 0x33, KEY_CLEAR }, /* Clear */60{ 0x35, KEY_RED }, /* Red/TV */61{ 0x36, KEY_UP },62{ 0x37, KEY_HOME }, /* Home */63{ 0x39, KEY_GREEN }, /* Green/Video */64{ 0x3d, KEY_YELLOW }, /* Yellow/Music */65{ 0x3e, KEY_OK }, /* Ok */66{ 0x3f, KEY_RIGHT },67{ 0x40, KEY_NEXT }, /* Next */68{ 0x41, KEY_PREVIOUS }, /* Previous */69{ 0x42, KEY_CHANNELDOWN }, /* Channel down */70{ 0x43, KEY_CHANNELUP }, /* Channel up */71};7273static struct rc_map_list avermedia_cardbus_map = {74.map = {75.scan = avermedia_cardbus,76.size = ARRAY_SIZE(avermedia_cardbus),77.rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */78.name = RC_MAP_AVERMEDIA_CARDBUS,79}80};8182static int __init init_rc_map_avermedia_cardbus(void)83{84return rc_map_register(&avermedia_cardbus_map);85}8687static void __exit exit_rc_map_avermedia_cardbus(void)88{89rc_map_unregister(&avermedia_cardbus_map);90}9192module_init(init_rc_map_avermedia_cardbus)93module_exit(exit_rc_map_avermedia_cardbus)9495MODULE_LICENSE("GPL");96MODULE_AUTHOR("Mauro Carvalho Chehab <[email protected]>");979899