2 * RainShadow Tech HDMI CEC driver
4 * Copyright 2016 Hans Verkuil <hverkuil@xs4all.nl
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version of 2 of the License, or (at your
9 * option) any later version. See the file COPYING in the main directory of
10 * this archive for more details.
16 * The higher level protocols are currently disabled. This can be added
17 * later, similar to how this is done for the Pulse Eight CEC driver.
19 * Documentation of the protocol is available here:
21 * http://rainshadowtech.com/doc/HDMICECtoUSBandRS232v2.0.pdf
24 #include <linux/completion.h>
25 #include <linux/ctype.h>
26 #include <linux/delay.h>
27 #include <linux/init.h>
28 #include <linux/interrupt.h>
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/serio.h>
32 #include <linux/slab.h>
33 #include <linux/spinlock.h>
34 #include <linux/time.h>
35 #include <linux/workqueue.h>
37 #include <media/cec.h>
39 MODULE_AUTHOR("Hans Verkuil <hverkuil@xs4all.nl>");
40 MODULE_DESCRIPTION("RainShadow Tech HDMI CEC driver");
41 MODULE_LICENSE("GPL");
48 struct cec_adapter
*adap
;
49 struct completion cmd_done
;
50 struct work_struct work
;
52 /* Low-level ringbuffer, collecting incoming characters */
54 unsigned int buf_rd_idx
;
55 unsigned int buf_wr_idx
;
64 /* reply to a command, only used to store the firmware version */
65 char cmd_reply
[DATA_SIZE
];
67 struct mutex write_lock
;
70 static void rain_process_msg(struct rain
*rain
)
72 struct cec_msg msg
= {};
73 const char *cmd
= rain
->cmd
+ 3;
79 if (isxdigit(cmd
[0]) && isxdigit(cmd
[1])) {
80 if (msg
.len
== CEC_MAX_MSG_SIZE
)
82 if (hex2bin(msg
.msg
+ msg
.len
, cmd
, 1))
89 stat
= hex_to_bin(cmd
[0]);
93 if (rain
->cmd
[0] == 'R') {
94 if (stat
== 1 || stat
== 2)
95 cec_received_msg(rain
->adap
, &msg
);
101 cec_transmit_attempt_done(rain
->adap
, CEC_TX_STATUS_OK
);
104 cec_transmit_attempt_done(rain
->adap
, CEC_TX_STATUS_NACK
);
107 cec_transmit_attempt_done(rain
->adap
, CEC_TX_STATUS_LOW_DRIVE
);
112 static void rain_irq_work_handler(struct work_struct
*work
)
115 container_of(work
, struct rain
, work
);
121 spin_lock_irqsave(&rain
->buf_lock
, flags
);
122 if (!rain
->buf_len
) {
123 spin_unlock_irqrestore(&rain
->buf_lock
, flags
);
127 data
= rain
->buf
[rain
->buf_rd_idx
];
129 rain
->buf_rd_idx
= (rain
->buf_rd_idx
+ 1) & 0xff;
131 spin_unlock_irqrestore(&rain
->buf_lock
, flags
);
133 if (!rain
->cmd_started
&& data
!= '?')
138 rain
->cmd
[rain
->cmd_idx
] = '\0';
139 dev_dbg(rain
->dev
, "received: %s\n", rain
->cmd
);
140 if (!memcmp(rain
->cmd
, "REC", 3) ||
141 !memcmp(rain
->cmd
, "STA", 3)) {
142 rain_process_msg(rain
);
144 strcpy(rain
->cmd_reply
, rain
->cmd
);
145 complete(&rain
->cmd_done
);
148 rain
->cmd_started
= false;
153 rain
->cmd_started
= false;
158 rain
->cmd_started
= true;
162 if (rain
->cmd_idx
>= DATA_SIZE
- 1) {
164 "throwing away %d bytes of garbage\n", rain
->cmd_idx
);
167 rain
->cmd
[rain
->cmd_idx
++] = data
;
173 static irqreturn_t
rain_interrupt(struct serio
*serio
, unsigned char data
,
176 struct rain
*rain
= serio_get_drvdata(serio
);
178 if (rain
->buf_len
== DATA_SIZE
) {
179 dev_warn_once(rain
->dev
, "buffer overflow\n");
182 spin_lock(&rain
->buf_lock
);
184 rain
->buf
[rain
->buf_wr_idx
] = data
;
185 rain
->buf_wr_idx
= (rain
->buf_wr_idx
+ 1) & 0xff;
186 spin_unlock(&rain
->buf_lock
);
187 schedule_work(&rain
->work
);
191 static void rain_disconnect(struct serio
*serio
)
193 struct rain
*rain
= serio_get_drvdata(serio
);
195 cancel_work_sync(&rain
->work
);
196 cec_unregister_adapter(rain
->adap
);
197 dev_info(&serio
->dev
, "disconnected\n");
199 serio_set_drvdata(serio
, NULL
);
203 static int rain_send(struct rain
*rain
, const char *command
)
205 int err
= serio_write(rain
->serio
, '!');
207 dev_dbg(rain
->dev
, "send: %s\n", command
);
208 while (!err
&& *command
)
209 err
= serio_write(rain
->serio
, *command
++);
211 err
= serio_write(rain
->serio
, '~');
216 static int rain_send_and_wait(struct rain
*rain
,
217 const char *cmd
, const char *reply
)
221 init_completion(&rain
->cmd_done
);
223 mutex_lock(&rain
->write_lock
);
224 err
= rain_send(rain
, cmd
);
228 if (!wait_for_completion_timeout(&rain
->cmd_done
, HZ
)) {
232 if (reply
&& strncmp(rain
->cmd_reply
, reply
, strlen(reply
))) {
234 "transmit of '%s': received '%s' instead of '%s'\n",
235 cmd
, rain
->cmd_reply
, reply
);
239 mutex_unlock(&rain
->write_lock
);
243 static int rain_setup(struct rain
*rain
, struct serio
*serio
,
244 struct cec_log_addrs
*log_addrs
, u16
*pa
)
248 err
= rain_send_and_wait(rain
, "R", "REV");
251 dev_info(rain
->dev
, "Firmware version %s\n", rain
->cmd_reply
+ 4);
253 err
= rain_send_and_wait(rain
, "Q 1", "QTY");
256 err
= rain_send_and_wait(rain
, "c0000", "CFG");
259 return rain_send_and_wait(rain
, "A F 0000", "ADR");
262 static int rain_cec_adap_enable(struct cec_adapter
*adap
, bool enable
)
267 static int rain_cec_adap_log_addr(struct cec_adapter
*adap
, u8 log_addr
)
269 struct rain
*rain
= cec_get_drvdata(adap
);
272 if (log_addr
== CEC_LOG_ADDR_INVALID
)
273 log_addr
= CEC_LOG_ADDR_UNREGISTERED
;
274 snprintf(cmd
, sizeof(cmd
), "A %x", log_addr
);
275 return rain_send_and_wait(rain
, cmd
, "ADR");
278 static int rain_cec_adap_transmit(struct cec_adapter
*adap
, u8 attempts
,
279 u32 signal_free_time
, struct cec_msg
*msg
)
281 struct rain
*rain
= cec_get_drvdata(adap
);
282 char cmd
[2 * CEC_MAX_MSG_SIZE
+ 16];
287 snprintf(cmd
, sizeof(cmd
), "x%x", cec_msg_destination(msg
));
291 snprintf(cmd
, sizeof(cmd
), "x%x %02x ",
292 cec_msg_destination(msg
), msg
->msg
[1]);
293 for (i
= 2; i
< msg
->len
; i
++) {
294 snprintf(hex
, sizeof(hex
), "%02x", msg
->msg
[i
]);
295 strlcat(cmd
, hex
, sizeof(cmd
));
298 mutex_lock(&rain
->write_lock
);
299 err
= rain_send(rain
, cmd
);
300 mutex_unlock(&rain
->write_lock
);
304 static const struct cec_adap_ops rain_cec_adap_ops
= {
305 .adap_enable
= rain_cec_adap_enable
,
306 .adap_log_addr
= rain_cec_adap_log_addr
,
307 .adap_transmit
= rain_cec_adap_transmit
,
310 static int rain_connect(struct serio
*serio
, struct serio_driver
*drv
)
312 u32 caps
= CEC_CAP_DEFAULTS
| CEC_CAP_PHYS_ADDR
| CEC_CAP_MONITOR_ALL
;
315 struct cec_log_addrs log_addrs
= {};
316 u16 pa
= CEC_PHYS_ADDR_INVALID
;
318 rain
= kzalloc(sizeof(*rain
), GFP_KERNEL
);
324 rain
->adap
= cec_allocate_adapter(&rain_cec_adap_ops
, rain
,
325 dev_name(&serio
->dev
), caps
, 1);
326 err
= PTR_ERR_OR_ZERO(rain
->adap
);
330 rain
->dev
= &serio
->dev
;
331 serio_set_drvdata(serio
, rain
);
332 INIT_WORK(&rain
->work
, rain_irq_work_handler
);
333 mutex_init(&rain
->write_lock
);
334 spin_lock_init(&rain
->buf_lock
);
336 err
= serio_open(serio
, drv
);
340 err
= rain_setup(rain
, serio
, &log_addrs
, &pa
);
344 err
= cec_register_adapter(rain
->adap
, &serio
->dev
);
348 rain
->dev
= &rain
->adap
->devnode
.dev
;
354 cec_delete_adapter(rain
->adap
);
355 serio_set_drvdata(serio
, NULL
);
361 static const struct serio_device_id rain_serio_ids
[] = {
364 .proto
= SERIO_RAINSHADOW_CEC
,
371 MODULE_DEVICE_TABLE(serio
, rain_serio_ids
);
373 static struct serio_driver rain_drv
= {
375 .name
= "rainshadow-cec",
377 .description
= "RainShadow Tech HDMI CEC driver",
378 .id_table
= rain_serio_ids
,
379 .interrupt
= rain_interrupt
,
380 .connect
= rain_connect
,
381 .disconnect
= rain_disconnect
,
384 module_serio_driver(rain_drv
);