1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#if 0
22
23#include <media/rc-core.h>
24#include <linux/pci.h>
25
26#include "dmxdev.h"
27#include "dvbdev.h"
28#include "dvb_demux.h"
29#include "dvb_frontend.h"
30#include "dvb_net.h"
31
32#include "mantis_common.h"
33#include "mantis_reg.h"
34#include "mantis_uart.h"
35
36#define MODULE_NAME "mantis_core"
37#define RC_MAP_MANTIS "rc-mantis"
38
39static struct rc_map_table mantis_ir_table[] = {
40 { 0x29, KEY_POWER },
41 { 0x28, KEY_FAVORITES },
42 { 0x30, KEY_TEXT },
43 { 0x17, KEY_INFO },
44 { 0x23, KEY_EPG },
45 { 0x3b, KEY_F22 },
46 { 0x3c, KEY_1 },
47 { 0x3e, KEY_2 },
48 { 0x39, KEY_3 },
49 { 0x36, KEY_4 },
50 { 0x22, KEY_5 },
51 { 0x20, KEY_6 },
52 { 0x32, KEY_7 },
53 { 0x26, KEY_8 },
54 { 0x24, KEY_9 },
55 { 0x2a, KEY_0 },
56
57 { 0x33, KEY_CANCEL },
58 { 0x2c, KEY_BACK },
59 { 0x15, KEY_CLEAR },
60 { 0x3f, KEY_TAB },
61 { 0x10, KEY_ENTER },
62 { 0x14, KEY_UP },
63 { 0x0d, KEY_RIGHT },
64 { 0x0e, KEY_DOWN },
65 { 0x11, KEY_LEFT },
66
67 { 0x21, KEY_VOLUMEUP },
68 { 0x35, KEY_VOLUMEDOWN },
69 { 0x3d, KEY_CHANNELDOWN },
70 { 0x3a, KEY_CHANNELUP },
71 { 0x2e, KEY_RECORD },
72 { 0x2b, KEY_PLAY },
73 { 0x13, KEY_PAUSE },
74 { 0x25, KEY_STOP },
75
76 { 0x1f, KEY_REWIND },
77 { 0x2d, KEY_FASTFORWARD },
78 { 0x1e, KEY_PREVIOUS },
79 { 0x1d, KEY_NEXT },
80
81 { 0x0b, KEY_CAMERA },
82 { 0x0f, KEY_LANGUAGE },
83 { 0x18, KEY_MODE },
84 { 0x12, KEY_ZOOM },
85 { 0x1c, KEY_SUBTITLE },
86 { 0x2f, KEY_MUTE },
87 { 0x16, KEY_F20 },
88 { 0x38, KEY_F21 },
89
90 { 0x37, KEY_SWITCHVIDEOMODE },
91 { 0x31, KEY_AGAIN },
92 { 0x1a, KEY_KPPLUS },
93 { 0x19, KEY_KPMINUS },
94 { 0x27, KEY_RED },
95 { 0x0C, KEY_GREEN },
96 { 0x01, KEY_YELLOW },
97 { 0x00, KEY_BLUE },
98};
99
100static struct rc_map_list ir_mantis_map = {
101 .map = {
102 .scan = mantis_ir_table,
103 .size = ARRAY_SIZE(mantis_ir_table),
104 .rc_type = RC_TYPE_UNKNOWN,
105 .name = RC_MAP_MANTIS,
106 }
107};
108
109int mantis_input_init(struct mantis_pci *mantis)
110{
111 struct rc_dev *dev;
112 int err;
113
114 err = rc_map_register(&ir_mantis_map);
115 if (err)
116 goto out;
117
118 dev = rc_allocate_device();
119 if (!dev) {
120 dprintk(MANTIS_ERROR, 1, "Remote device allocation failed");
121 err = -ENOMEM;
122 goto out_map;
123 }
124
125 sprintf(mantis->input_name, "Mantis %s IR receiver", mantis->hwconfig->model_name);
126 sprintf(mantis->input_phys, "pci-%s/ir0", pci_name(mantis->pdev));
127
128 dev->input_name = mantis->input_name;
129 dev->input_phys = mantis->input_phys;
130 dev->input_id.bustype = BUS_PCI;
131 dev->input_id.vendor = mantis->vendor_id;
132 dev->input_id.product = mantis->device_id;
133 dev->input_id.version = 1;
134 dev->driver_name = MODULE_NAME;
135 dev->map_name = RC_MAP_MANTIS;
136 dev->dev.parent = &mantis->pdev->dev;
137
138 err = rc_register_device(dev);
139 if (err) {
140 dprintk(MANTIS_ERROR, 1, "IR device registration failed, ret = %d", err);
141 goto out_dev;
142 }
143
144 mantis->rc = dev;
145 return 0;
146
147out_dev:
148 rc_free_device(dev);
149out_map:
150 rc_map_unregister(&ir_mantis_map);
151out:
152 return err;
153}
154
155int mantis_init_exit(struct mantis_pci *mantis)
156{
157 rc_unregister_device(mantis->rc);
158 rc_map_unregister(&ir_mantis_map);
159 return 0;
160}
161
162#endif
163