2017-12-01 16:47:11 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
// asus-pc39.h - Keytable for asus_pc39 Remote Controller
|
|
|
|
//
|
|
|
|
// keymap imported from ir-keymaps.c
|
|
|
|
//
|
|
|
|
// Copyright (c) 2010 by Mauro Carvalho Chehab
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 10:05:46 +04:00
|
|
|
|
|
|
|
#include <media/rc-map.h>
|
2011-07-03 22:03:12 +04:00
|
|
|
#include <linux/module.h>
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 10:05:46 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Marc Fargas <telenieko@telenieko.com>
|
|
|
|
* this is the remote control that comes with the asus p7131
|
|
|
|
* which has a label saying is "Model PC-39"
|
|
|
|
*/
|
|
|
|
|
[media] rc: Name RC keymap tables as rc_map_table
Remote keytables had different names all over the place. Part of the fault
is due to a bad naming when rc subsystem was created, but there were lots
of old names that were still here.
Use a common standard for everything.
Patch generated by this script:
for i in `find drivers/staging -type f -name *.[ch]` `find include/media -type f -name *.[ch]` `find drivers/media -type f -name *.[ch]`; do sed s,ir_scancode,rc_map_table,g <$i >a && mv a $i; done
for i in `find drivers/staging -type f -name *.[ch]` `find include/media -type f -name *.[ch]` `find drivers/media -type f -name *.[ch]`; do sed s,ir_codes_,rc_map_,g <$i >a && mv a $i; done
for i in `find drivers/staging -type f -name *.[ch]` `find include/media -type f -name *.[ch]` `find drivers/media -type f -name *.[ch]`; do sed s,rc_key_map,rc_map_table,g <$i >a && mv a $i; done
for i in `find drivers/staging -type f -name *.[ch]` `find include/media -type f -name *.[ch]` `find drivers/media -type f -name *.[ch]`; do sed s,rc_map_table_size,rc_map_size,g <$i >a && mv a $i; done
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-11-17 21:46:09 +03:00
|
|
|
static struct rc_map_table asus_pc39[] = {
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 10:05:46 +04:00
|
|
|
/* Keys 0 to 9 */
|
2019-06-24 18:42:14 +03:00
|
|
|
{ 0x082a, KEY_NUMERIC_0 },
|
|
|
|
{ 0x0816, KEY_NUMERIC_1 },
|
|
|
|
{ 0x0812, KEY_NUMERIC_2 },
|
|
|
|
{ 0x0814, KEY_NUMERIC_3 },
|
|
|
|
{ 0x0836, KEY_NUMERIC_4 },
|
|
|
|
{ 0x0832, KEY_NUMERIC_5 },
|
|
|
|
{ 0x0834, KEY_NUMERIC_6 },
|
|
|
|
{ 0x080e, KEY_NUMERIC_7 },
|
|
|
|
{ 0x080a, KEY_NUMERIC_8 },
|
|
|
|
{ 0x080c, KEY_NUMERIC_9 },
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 10:05:46 +04:00
|
|
|
|
2010-09-30 21:46:47 +04:00
|
|
|
{ 0x0801, KEY_RADIO }, /* radio */
|
|
|
|
{ 0x083c, KEY_MENU }, /* dvd/menu */
|
|
|
|
{ 0x0815, KEY_VOLUMEUP },
|
|
|
|
{ 0x0826, KEY_VOLUMEDOWN },
|
|
|
|
{ 0x0808, KEY_UP },
|
|
|
|
{ 0x0804, KEY_DOWN },
|
|
|
|
{ 0x0818, KEY_LEFT },
|
|
|
|
{ 0x0810, KEY_RIGHT },
|
|
|
|
{ 0x081a, KEY_VIDEO }, /* video */
|
|
|
|
{ 0x0806, KEY_AUDIO }, /* music */
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 10:05:46 +04:00
|
|
|
|
2010-09-30 21:46:47 +04:00
|
|
|
{ 0x081e, KEY_TV }, /* tv */
|
|
|
|
{ 0x0822, KEY_EXIT }, /* back */
|
|
|
|
{ 0x0835, KEY_CHANNELUP }, /* channel / program + */
|
|
|
|
{ 0x0824, KEY_CHANNELDOWN }, /* channel / program - */
|
|
|
|
{ 0x0825, KEY_ENTER }, /* enter */
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 10:05:46 +04:00
|
|
|
|
2010-09-30 21:46:47 +04:00
|
|
|
{ 0x0839, KEY_PAUSE }, /* play/pause */
|
|
|
|
{ 0x0821, KEY_PREVIOUS }, /* rew */
|
|
|
|
{ 0x0819, KEY_NEXT }, /* forward */
|
|
|
|
{ 0x0831, KEY_REWIND }, /* backward << */
|
|
|
|
{ 0x0805, KEY_FASTFORWARD }, /* forward >> */
|
|
|
|
{ 0x0809, KEY_STOP },
|
|
|
|
{ 0x0811, KEY_RECORD }, /* recording */
|
|
|
|
{ 0x0829, KEY_POWER }, /* the button that reads "close" */
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 10:05:46 +04:00
|
|
|
|
2010-09-30 21:46:47 +04:00
|
|
|
{ 0x082e, KEY_ZOOM }, /* full screen */
|
|
|
|
{ 0x082c, KEY_MACRO }, /* recall */
|
|
|
|
{ 0x081c, KEY_HOME }, /* home */
|
|
|
|
{ 0x083a, KEY_PVR }, /* picture */
|
|
|
|
{ 0x0802, KEY_MUTE }, /* mute */
|
|
|
|
{ 0x083e, KEY_DVD }, /* dvd */
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 10:05:46 +04:00
|
|
|
};
|
|
|
|
|
2010-11-17 21:56:53 +03:00
|
|
|
static struct rc_map_list asus_pc39_map = {
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 10:05:46 +04:00
|
|
|
.map = {
|
2017-08-07 23:20:58 +03:00
|
|
|
.scan = asus_pc39,
|
|
|
|
.size = ARRAY_SIZE(asus_pc39),
|
|
|
|
.rc_proto = RC_PROTO_RC5,
|
|
|
|
.name = RC_MAP_ASUS_PC39,
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 10:05:46 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init init_rc_map_asus_pc39(void)
|
|
|
|
{
|
2010-11-17 21:56:53 +03:00
|
|
|
return rc_map_register(&asus_pc39_map);
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 10:05:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit exit_rc_map_asus_pc39(void)
|
|
|
|
{
|
2010-11-17 21:56:53 +03:00
|
|
|
rc_map_unregister(&asus_pc39_map);
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 10:05:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
module_init(init_rc_map_asus_pc39)
|
|
|
|
module_exit(exit_rc_map_asus_pc39)
|
|
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|
2014-02-07 14:03:07 +04:00
|
|
|
MODULE_AUTHOR("Mauro Carvalho Chehab");
|