1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#include "img-ir-hw.h"
20
21
22static int img_ir_sanyo_scancode(int len, u64 raw, u64 enabled_protocols,
23 struct img_ir_scancode_req *request)
24{
25 unsigned int addr, addr_inv, data, data_inv;
26
27 if (!len)
28 return IMG_IR_REPEATCODE;
29 if (len != 42)
30 return -EINVAL;
31 addr = (raw >> 0) & 0x1fff;
32 addr_inv = (raw >> 13) & 0x1fff;
33 data = (raw >> 26) & 0xff;
34 data_inv = (raw >> 34) & 0xff;
35
36 if ((data_inv ^ data) != 0xff)
37 return -EINVAL;
38
39 if ((addr_inv ^ addr) != 0x1fff)
40 return -EINVAL;
41
42
43 request->protocol = RC_PROTO_SANYO;
44 request->scancode = addr << 8 | data;
45 return IMG_IR_SCANCODE;
46}
47
48
49static int img_ir_sanyo_filter(const struct rc_scancode_filter *in,
50 struct img_ir_filter *out, u64 protocols)
51{
52 unsigned int addr, addr_inv, data, data_inv;
53 unsigned int addr_m, data_m;
54
55 data = in->data & 0xff;
56 data_m = in->mask & 0xff;
57 data_inv = data ^ 0xff;
58
59 if (in->data & 0xff700000)
60 return -EINVAL;
61
62 addr = (in->data >> 8) & 0x1fff;
63 addr_m = (in->mask >> 8) & 0x1fff;
64 addr_inv = addr ^ 0x1fff;
65
66 out->data = (u64)data_inv << 34 |
67 (u64)data << 26 |
68 addr_inv << 13 |
69 addr;
70 out->mask = (u64)data_m << 34 |
71 (u64)data_m << 26 |
72 addr_m << 13 |
73 addr_m;
74 return 0;
75}
76
77
78struct img_ir_decoder img_ir_sanyo = {
79 .type = RC_PROTO_BIT_SANYO,
80 .control = {
81 .decoden = 1,
82 .code_type = IMG_IR_CODETYPE_PULSEDIST,
83 },
84
85 .unit = 562500,
86 .timings = {
87
88 .ldr = {
89 .pulse = { 16 },
90 .space = { 8 },
91 },
92
93 .s00 = {
94 .pulse = { 1 },
95 .space = { 1 },
96 },
97
98 .s01 = {
99 .pulse = { 1 },
100 .space = { 3 },
101 },
102
103 .ft = {
104 .minlen = 42,
105 .maxlen = 42,
106 .ft_min = 10,
107 },
108 },
109
110 .repeat = 108,
111 .rtimings = {
112
113 .ldr = {
114 .space = { 4 },
115 },
116
117 .ft = {
118 .minlen = 0,
119 .maxlen = 0,
120 },
121 },
122
123 .scancode = img_ir_sanyo_scancode,
124 .filter = img_ir_sanyo_filter,
125};
126