rc-hisi-poplar.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Keytable for remote controller of HiSilicon poplar board.
  4. *
  5. * Copyright (c) 2017 HiSilicon Technologies Co., Ltd.
  6. */
  7. #include <linux/module.h>
  8. #include <media/rc-map.h>
  9. static struct rc_map_table hisi_poplar_keymap[] = {
  10. { 0x0000b292, KEY_NUMERIC_1},
  11. { 0x0000b293, KEY_NUMERIC_2},
  12. { 0x0000b2cc, KEY_NUMERIC_3},
  13. { 0x0000b28e, KEY_NUMERIC_4},
  14. { 0x0000b28f, KEY_NUMERIC_5},
  15. { 0x0000b2c8, KEY_NUMERIC_6},
  16. { 0x0000b28a, KEY_NUMERIC_7},
  17. { 0x0000b28b, KEY_NUMERIC_8},
  18. { 0x0000b2c4, KEY_NUMERIC_9},
  19. { 0x0000b287, KEY_NUMERIC_0},
  20. { 0x0000b282, KEY_HOMEPAGE},
  21. { 0x0000b2ca, KEY_UP},
  22. { 0x0000b299, KEY_LEFT},
  23. { 0x0000b2c1, KEY_RIGHT},
  24. { 0x0000b2d2, KEY_DOWN},
  25. { 0x0000b2c5, KEY_DELETE},
  26. { 0x0000b29c, KEY_MUTE},
  27. { 0x0000b281, KEY_VOLUMEDOWN},
  28. { 0x0000b280, KEY_VOLUMEUP},
  29. { 0x0000b2dc, KEY_POWER},
  30. { 0x0000b29a, KEY_MENU},
  31. { 0x0000b28d, KEY_SETUP},
  32. { 0x0000b2c5, KEY_BACK},
  33. { 0x0000b295, KEY_PLAYPAUSE},
  34. { 0x0000b2ce, KEY_ENTER},
  35. { 0x0000b285, KEY_CHANNELUP},
  36. { 0x0000b286, KEY_CHANNELDOWN},
  37. { 0x0000b2da, KEY_NUMERIC_STAR},
  38. { 0x0000b2d0, KEY_NUMERIC_POUND},
  39. };
  40. static struct rc_map_list hisi_poplar_map = {
  41. .map = {
  42. .scan = hisi_poplar_keymap,
  43. .size = ARRAY_SIZE(hisi_poplar_keymap),
  44. .rc_proto = RC_PROTO_NEC,
  45. .name = RC_MAP_HISI_POPLAR,
  46. }
  47. };
  48. static int __init init_rc_map_hisi_poplar(void)
  49. {
  50. return rc_map_register(&hisi_poplar_map);
  51. }
  52. static void __exit exit_rc_map_hisi_poplar(void)
  53. {
  54. rc_map_unregister(&hisi_poplar_map);
  55. }
  56. module_init(init_rc_map_hisi_poplar)
  57. module_exit(exit_rc_map_hisi_poplar)
  58. MODULE_LICENSE("GPL v2");