1 // SPDX-License-Identifier: GPL-2.0-only
3 * cec-adap.c - HDMI Consumer Electronics Control framework - CEC adapter
5 * Copyright 2016 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
8 #include <linux/errno.h>
9 #include <linux/init.h>
10 #include <linux/module.h>
11 #include <linux/kernel.h>
12 #include <linux/kmod.h>
13 #include <linux/ktime.h>
14 #include <linux/slab.h>
16 #include <linux/string.h>
17 #include <linux/types.h>
19 #include <drm/drm_edid.h>
23 static void cec_fill_msg_report_features(struct cec_adapter
*adap
,
28 * 400 ms is the time it takes for one 16 byte message to be
29 * transferred and 5 is the maximum number of retries. Add
30 * another 100 ms as a margin. So if the transmit doesn't
31 * finish before that time something is really wrong and we
34 * This is a sign that something it really wrong and a warning
37 #define CEC_XFER_TIMEOUT_MS (5 * 400 + 100)
39 #define call_op(adap, op, arg...) \
40 (adap->ops->op ? adap->ops->op(adap, ## arg) : 0)
42 #define call_void_op(adap, op, arg...) \
45 adap->ops->op(adap, ## arg); \
48 static int cec_log_addr2idx(const struct cec_adapter
*adap
, u8 log_addr
)
52 for (i
= 0; i
< adap
->log_addrs
.num_log_addrs
; i
++)
53 if (adap
->log_addrs
.log_addr
[i
] == log_addr
)
58 static unsigned int cec_log_addr2dev(const struct cec_adapter
*adap
, u8 log_addr
)
60 int i
= cec_log_addr2idx(adap
, log_addr
);
62 return adap
->log_addrs
.primary_device_type
[i
< 0 ? 0 : i
];
66 * Queue a new event for this filehandle. If ts == 0, then set it
67 * to the current time.
69 * We keep a queue of at most max_event events where max_event differs
70 * per event. If the queue becomes full, then drop the oldest event and
71 * keep track of how many events we've dropped.
73 void cec_queue_event_fh(struct cec_fh
*fh
,
74 const struct cec_event
*new_ev
, u64 ts
)
76 static const u16 max_events
[CEC_NUM_EVENTS
] = {
79 struct cec_event_entry
*entry
;
80 unsigned int ev_idx
= new_ev
->event
- 1;
82 if (WARN_ON(ev_idx
>= ARRAY_SIZE(fh
->events
)))
88 mutex_lock(&fh
->lock
);
89 if (ev_idx
< CEC_NUM_CORE_EVENTS
)
90 entry
= &fh
->core_events
[ev_idx
];
92 entry
= kmalloc(sizeof(*entry
), GFP_KERNEL
);
94 if (new_ev
->event
== CEC_EVENT_LOST_MSGS
&&
95 fh
->queued_events
[ev_idx
]) {
96 entry
->ev
.lost_msgs
.lost_msgs
+=
97 new_ev
->lost_msgs
.lost_msgs
;
103 if (fh
->queued_events
[ev_idx
] < max_events
[ev_idx
]) {
104 /* Add new msg at the end of the queue */
105 list_add_tail(&entry
->list
, &fh
->events
[ev_idx
]);
106 fh
->queued_events
[ev_idx
]++;
107 fh
->total_queued_events
++;
111 if (ev_idx
>= CEC_NUM_CORE_EVENTS
) {
112 list_add_tail(&entry
->list
, &fh
->events
[ev_idx
]);
113 /* drop the oldest event */
114 entry
= list_first_entry(&fh
->events
[ev_idx
],
115 struct cec_event_entry
, list
);
116 list_del(&entry
->list
);
120 /* Mark that events were lost */
121 entry
= list_first_entry_or_null(&fh
->events
[ev_idx
],
122 struct cec_event_entry
, list
);
124 entry
->ev
.flags
|= CEC_EVENT_FL_DROPPED_EVENTS
;
127 mutex_unlock(&fh
->lock
);
128 wake_up_interruptible(&fh
->wait
);
131 /* Queue a new event for all open filehandles. */
132 static void cec_queue_event(struct cec_adapter
*adap
,
133 const struct cec_event
*ev
)
135 u64 ts
= ktime_get_ns();
138 mutex_lock(&adap
->devnode
.lock
);
139 list_for_each_entry(fh
, &adap
->devnode
.fhs
, list
)
140 cec_queue_event_fh(fh
, ev
, ts
);
141 mutex_unlock(&adap
->devnode
.lock
);
144 /* Notify userspace that the CEC pin changed state at the given time. */
145 void cec_queue_pin_cec_event(struct cec_adapter
*adap
, bool is_high
,
146 bool dropped_events
, ktime_t ts
)
148 struct cec_event ev
= {
149 .event
= is_high
? CEC_EVENT_PIN_CEC_HIGH
:
150 CEC_EVENT_PIN_CEC_LOW
,
151 .flags
= dropped_events
? CEC_EVENT_FL_DROPPED_EVENTS
: 0,
155 mutex_lock(&adap
->devnode
.lock
);
156 list_for_each_entry(fh
, &adap
->devnode
.fhs
, list
)
157 if (fh
->mode_follower
== CEC_MODE_MONITOR_PIN
)
158 cec_queue_event_fh(fh
, &ev
, ktime_to_ns(ts
));
159 mutex_unlock(&adap
->devnode
.lock
);
161 EXPORT_SYMBOL_GPL(cec_queue_pin_cec_event
);
163 /* Notify userspace that the HPD pin changed state at the given time. */
164 void cec_queue_pin_hpd_event(struct cec_adapter
*adap
, bool is_high
, ktime_t ts
)
166 struct cec_event ev
= {
167 .event
= is_high
? CEC_EVENT_PIN_HPD_HIGH
:
168 CEC_EVENT_PIN_HPD_LOW
,
172 mutex_lock(&adap
->devnode
.lock
);
173 list_for_each_entry(fh
, &adap
->devnode
.fhs
, list
)
174 cec_queue_event_fh(fh
, &ev
, ktime_to_ns(ts
));
175 mutex_unlock(&adap
->devnode
.lock
);
177 EXPORT_SYMBOL_GPL(cec_queue_pin_hpd_event
);
180 * Queue a new message for this filehandle.
182 * We keep a queue of at most CEC_MAX_MSG_RX_QUEUE_SZ messages. If the
183 * queue becomes full, then drop the oldest message and keep track
184 * of how many messages we've dropped.
186 static void cec_queue_msg_fh(struct cec_fh
*fh
, const struct cec_msg
*msg
)
188 static const struct cec_event ev_lost_msgs
= {
189 .event
= CEC_EVENT_LOST_MSGS
,
195 struct cec_msg_entry
*entry
;
197 mutex_lock(&fh
->lock
);
198 entry
= kmalloc(sizeof(*entry
), GFP_KERNEL
);
201 /* Add new msg at the end of the queue */
202 list_add_tail(&entry
->list
, &fh
->msgs
);
204 if (fh
->queued_msgs
< CEC_MAX_MSG_RX_QUEUE_SZ
) {
205 /* All is fine if there is enough room */
207 mutex_unlock(&fh
->lock
);
208 wake_up_interruptible(&fh
->wait
);
213 * if the message queue is full, then drop the oldest one and
214 * send a lost message event.
216 entry
= list_first_entry(&fh
->msgs
, struct cec_msg_entry
, list
);
217 list_del(&entry
->list
);
220 mutex_unlock(&fh
->lock
);
223 * We lost a message, either because kmalloc failed or the queue
226 cec_queue_event_fh(fh
, &ev_lost_msgs
, ktime_get_ns());
230 * Queue the message for those filehandles that are in monitor mode.
231 * If valid_la is true (this message is for us or was sent by us),
232 * then pass it on to any monitoring filehandle. If this message
233 * isn't for us or from us, then only give it to filehandles that
234 * are in MONITOR_ALL mode.
236 * This can only happen if the CEC_CAP_MONITOR_ALL capability is
237 * set and the CEC adapter was placed in 'monitor all' mode.
239 static void cec_queue_msg_monitor(struct cec_adapter
*adap
,
240 const struct cec_msg
*msg
,
244 u32 monitor_mode
= valid_la
? CEC_MODE_MONITOR
:
245 CEC_MODE_MONITOR_ALL
;
247 mutex_lock(&adap
->devnode
.lock
);
248 list_for_each_entry(fh
, &adap
->devnode
.fhs
, list
) {
249 if (fh
->mode_follower
>= monitor_mode
)
250 cec_queue_msg_fh(fh
, msg
);
252 mutex_unlock(&adap
->devnode
.lock
);
256 * Queue the message for follower filehandles.
258 static void cec_queue_msg_followers(struct cec_adapter
*adap
,
259 const struct cec_msg
*msg
)
263 mutex_lock(&adap
->devnode
.lock
);
264 list_for_each_entry(fh
, &adap
->devnode
.fhs
, list
) {
265 if (fh
->mode_follower
== CEC_MODE_FOLLOWER
)
266 cec_queue_msg_fh(fh
, msg
);
268 mutex_unlock(&adap
->devnode
.lock
);
271 /* Notify userspace of an adapter state change. */
272 static void cec_post_state_event(struct cec_adapter
*adap
)
274 struct cec_event ev
= {
275 .event
= CEC_EVENT_STATE_CHANGE
,
278 ev
.state_change
.phys_addr
= adap
->phys_addr
;
279 ev
.state_change
.log_addr_mask
= adap
->log_addrs
.log_addr_mask
;
280 cec_queue_event(adap
, &ev
);
284 * A CEC transmit (and a possible wait for reply) completed.
285 * If this was in blocking mode, then complete it, otherwise
286 * queue the message for userspace to dequeue later.
288 * This function is called with adap->lock held.
290 static void cec_data_completed(struct cec_data
*data
)
293 * Delete this transmit from the filehandle's xfer_list since
294 * we're done with it.
296 * Note that if the filehandle is closed before this transmit
297 * finished, then the release() function will set data->fh to NULL.
298 * Without that we would be referring to a closed filehandle.
301 list_del(&data
->xfer_list
);
303 if (data
->blocking
) {
305 * Someone is blocking so mark the message as completed
308 data
->completed
= true;
312 * No blocking, so just queue the message if needed and
316 cec_queue_msg_fh(data
->fh
, &data
->msg
);
322 * A pending CEC transmit needs to be cancelled, either because the CEC
323 * adapter is disabled or the transmit takes an impossibly long time to
326 * This function is called with adap->lock held.
328 static void cec_data_cancel(struct cec_data
*data
)
331 * It's either the current transmit, or it is a pending
332 * transmit. Take the appropriate action to clear it.
334 if (data
->adap
->transmitting
== data
) {
335 data
->adap
->transmitting
= NULL
;
337 list_del_init(&data
->list
);
338 if (!(data
->msg
.tx_status
& CEC_TX_STATUS_OK
))
339 data
->adap
->transmit_queue_sz
--;
342 /* Mark it as an error */
343 data
->msg
.tx_ts
= ktime_get_ns();
344 data
->msg
.tx_status
|= CEC_TX_STATUS_ERROR
|
345 CEC_TX_STATUS_MAX_RETRIES
;
346 data
->msg
.tx_error_cnt
++;
348 /* Queue transmitted message for monitoring purposes */
349 cec_queue_msg_monitor(data
->adap
, &data
->msg
, 1);
351 cec_data_completed(data
);
355 * Flush all pending transmits and cancel any pending timeout work.
357 * This function is called with adap->lock held.
359 static void cec_flush(struct cec_adapter
*adap
)
361 struct cec_data
*data
, *n
;
364 * If the adapter is disabled, or we're asked to stop,
365 * then cancel any pending transmits.
367 while (!list_empty(&adap
->transmit_queue
)) {
368 data
= list_first_entry(&adap
->transmit_queue
,
369 struct cec_data
, list
);
370 cec_data_cancel(data
);
372 if (adap
->transmitting
)
373 cec_data_cancel(adap
->transmitting
);
375 /* Cancel the pending timeout work. */
376 list_for_each_entry_safe(data
, n
, &adap
->wait_queue
, list
) {
377 if (cancel_delayed_work(&data
->work
))
378 cec_data_cancel(data
);
380 * If cancel_delayed_work returned false, then
381 * the cec_wait_timeout function is running,
382 * which will call cec_data_completed. So no
383 * need to do anything special in that case.
389 * Main CEC state machine
391 * Wait until the thread should be stopped, or we are not transmitting and
392 * a new transmit message is queued up, in which case we start transmitting
393 * that message. When the adapter finished transmitting the message it will
394 * call cec_transmit_done().
396 * If the adapter is disabled, then remove all queued messages instead.
398 * If the current transmit times out, then cancel that transmit.
400 int cec_thread_func(void *_adap
)
402 struct cec_adapter
*adap
= _adap
;
405 unsigned int signal_free_time
;
406 struct cec_data
*data
;
407 bool timeout
= false;
410 if (adap
->transmitting
) {
414 * We are transmitting a message, so add a timeout
415 * to prevent the state machine to get stuck waiting
416 * for this message to finalize and add a check to
417 * see if the adapter is disabled in which case the
418 * transmit should be canceled.
420 err
= wait_event_interruptible_timeout(adap
->kthread_waitq
,
422 (!adap
->is_configured
&& !adap
->is_configuring
)) ||
423 kthread_should_stop() ||
424 (!adap
->transmitting
&&
425 !list_empty(&adap
->transmit_queue
)),
426 msecs_to_jiffies(CEC_XFER_TIMEOUT_MS
));
429 /* Otherwise we just wait for something to happen. */
430 wait_event_interruptible(adap
->kthread_waitq
,
431 kthread_should_stop() ||
432 (!adap
->transmitting
&&
433 !list_empty(&adap
->transmit_queue
)));
436 mutex_lock(&adap
->lock
);
438 if ((adap
->needs_hpd
&&
439 (!adap
->is_configured
&& !adap
->is_configuring
)) ||
440 kthread_should_stop()) {
445 if (adap
->transmitting
&& timeout
) {
447 * If we timeout, then log that. Normally this does
448 * not happen and it is an indication of a faulty CEC
449 * adapter driver, or the CEC bus is in some weird
450 * state. On rare occasions it can happen if there is
451 * so much traffic on the bus that the adapter was
452 * unable to transmit for CEC_XFER_TIMEOUT_MS (2.1s).
454 dprintk(1, "%s: message %*ph timed out\n", __func__
,
455 adap
->transmitting
->msg
.len
,
456 adap
->transmitting
->msg
.msg
);
458 /* Just give up on this. */
459 cec_data_cancel(adap
->transmitting
);
464 * If we are still transmitting, or there is nothing new to
465 * transmit, then just continue waiting.
467 if (adap
->transmitting
|| list_empty(&adap
->transmit_queue
))
470 /* Get a new message to transmit */
471 data
= list_first_entry(&adap
->transmit_queue
,
472 struct cec_data
, list
);
473 list_del_init(&data
->list
);
474 adap
->transmit_queue_sz
--;
476 /* Make this the current transmitting message */
477 adap
->transmitting
= data
;
480 * Suggested number of attempts as per the CEC 2.0 spec:
481 * 4 attempts is the default, except for 'secondary poll
482 * messages', i.e. poll messages not sent during the adapter
483 * configuration phase when it allocates logical addresses.
485 if (data
->msg
.len
== 1 && adap
->is_configured
)
490 /* Set the suggested signal free time */
491 if (data
->attempts
) {
492 /* should be >= 3 data bit periods for a retry */
493 signal_free_time
= CEC_SIGNAL_FREE_TIME_RETRY
;
494 } else if (data
->new_initiator
) {
495 /* should be >= 5 data bit periods for new initiator */
496 signal_free_time
= CEC_SIGNAL_FREE_TIME_NEW_INITIATOR
;
499 * should be >= 7 data bit periods for sending another
500 * frame immediately after another.
502 signal_free_time
= CEC_SIGNAL_FREE_TIME_NEXT_XFER
;
504 if (data
->attempts
== 0)
505 data
->attempts
= attempts
;
507 /* Tell the adapter to transmit, cancel on error */
508 if (adap
->ops
->adap_transmit(adap
, data
->attempts
,
509 signal_free_time
, &data
->msg
))
510 cec_data_cancel(data
);
513 mutex_unlock(&adap
->lock
);
515 if (kthread_should_stop())
522 * Called by the CEC adapter if a transmit finished.
524 void cec_transmit_done_ts(struct cec_adapter
*adap
, u8 status
,
525 u8 arb_lost_cnt
, u8 nack_cnt
, u8 low_drive_cnt
,
526 u8 error_cnt
, ktime_t ts
)
528 struct cec_data
*data
;
530 unsigned int attempts_made
= arb_lost_cnt
+ nack_cnt
+
531 low_drive_cnt
+ error_cnt
;
533 dprintk(2, "%s: status 0x%02x\n", __func__
, status
);
534 if (attempts_made
< 1)
537 mutex_lock(&adap
->lock
);
538 data
= adap
->transmitting
;
541 * This can happen if a transmit was issued and the cable is
542 * unplugged while the transmit is ongoing. Ignore this
543 * transmit in that case.
545 dprintk(1, "%s was called without an ongoing transmit!\n",
552 /* Drivers must fill in the status! */
553 WARN_ON(status
== 0);
554 msg
->tx_ts
= ktime_to_ns(ts
);
555 msg
->tx_status
|= status
;
556 msg
->tx_arb_lost_cnt
+= arb_lost_cnt
;
557 msg
->tx_nack_cnt
+= nack_cnt
;
558 msg
->tx_low_drive_cnt
+= low_drive_cnt
;
559 msg
->tx_error_cnt
+= error_cnt
;
561 /* Mark that we're done with this transmit */
562 adap
->transmitting
= NULL
;
565 * If there are still retry attempts left and there was an error and
566 * the hardware didn't signal that it retried itself (by setting
567 * CEC_TX_STATUS_MAX_RETRIES), then we will retry ourselves.
569 if (data
->attempts
> attempts_made
&&
570 !(status
& (CEC_TX_STATUS_MAX_RETRIES
| CEC_TX_STATUS_OK
))) {
571 /* Retry this message */
572 data
->attempts
-= attempts_made
;
574 dprintk(2, "retransmit: %*ph (attempts: %d, wait for 0x%02x)\n",
575 msg
->len
, msg
->msg
, data
->attempts
, msg
->reply
);
577 dprintk(2, "retransmit: %*ph (attempts: %d)\n",
578 msg
->len
, msg
->msg
, data
->attempts
);
579 /* Add the message in front of the transmit queue */
580 list_add(&data
->list
, &adap
->transmit_queue
);
581 adap
->transmit_queue_sz
++;
587 /* Always set CEC_TX_STATUS_MAX_RETRIES on error */
588 if (!(status
& CEC_TX_STATUS_OK
))
589 msg
->tx_status
|= CEC_TX_STATUS_MAX_RETRIES
;
591 /* Queue transmitted message for monitoring purposes */
592 cec_queue_msg_monitor(adap
, msg
, 1);
594 if ((status
& CEC_TX_STATUS_OK
) && adap
->is_configured
&&
597 * Queue the message into the wait queue if we want to wait
600 list_add_tail(&data
->list
, &adap
->wait_queue
);
601 schedule_delayed_work(&data
->work
,
602 msecs_to_jiffies(msg
->timeout
));
604 /* Otherwise we're done */
605 cec_data_completed(data
);
610 * Wake up the main thread to see if another message is ready
611 * for transmitting or to retry the current message.
613 wake_up_interruptible(&adap
->kthread_waitq
);
615 mutex_unlock(&adap
->lock
);
617 EXPORT_SYMBOL_GPL(cec_transmit_done_ts
);
619 void cec_transmit_attempt_done_ts(struct cec_adapter
*adap
,
620 u8 status
, ktime_t ts
)
622 switch (status
& ~CEC_TX_STATUS_MAX_RETRIES
) {
623 case CEC_TX_STATUS_OK
:
624 cec_transmit_done_ts(adap
, status
, 0, 0, 0, 0, ts
);
626 case CEC_TX_STATUS_ARB_LOST
:
627 cec_transmit_done_ts(adap
, status
, 1, 0, 0, 0, ts
);
629 case CEC_TX_STATUS_NACK
:
630 cec_transmit_done_ts(adap
, status
, 0, 1, 0, 0, ts
);
632 case CEC_TX_STATUS_LOW_DRIVE
:
633 cec_transmit_done_ts(adap
, status
, 0, 0, 1, 0, ts
);
635 case CEC_TX_STATUS_ERROR
:
636 cec_transmit_done_ts(adap
, status
, 0, 0, 0, 1, ts
);
639 /* Should never happen */
640 WARN(1, "cec-%s: invalid status 0x%02x\n", adap
->name
, status
);
644 EXPORT_SYMBOL_GPL(cec_transmit_attempt_done_ts
);
647 * Called when waiting for a reply times out.
649 static void cec_wait_timeout(struct work_struct
*work
)
651 struct cec_data
*data
= container_of(work
, struct cec_data
, work
.work
);
652 struct cec_adapter
*adap
= data
->adap
;
654 mutex_lock(&adap
->lock
);
656 * Sanity check in case the timeout and the arrival of the message
657 * happened at the same time.
659 if (list_empty(&data
->list
))
662 /* Mark the message as timed out */
663 list_del_init(&data
->list
);
664 data
->msg
.rx_ts
= ktime_get_ns();
665 data
->msg
.rx_status
= CEC_RX_STATUS_TIMEOUT
;
666 cec_data_completed(data
);
668 mutex_unlock(&adap
->lock
);
672 * Transmit a message. The fh argument may be NULL if the transmit is not
673 * associated with a specific filehandle.
675 * This function is called with adap->lock held.
677 int cec_transmit_msg_fh(struct cec_adapter
*adap
, struct cec_msg
*msg
,
678 struct cec_fh
*fh
, bool block
)
680 struct cec_data
*data
;
681 u8 last_initiator
= 0xff;
682 unsigned int timeout
;
689 msg
->tx_arb_lost_cnt
= 0;
690 msg
->tx_nack_cnt
= 0;
691 msg
->tx_low_drive_cnt
= 0;
692 msg
->tx_error_cnt
= 0;
695 if (msg
->reply
&& msg
->timeout
== 0) {
696 /* Make sure the timeout isn't 0. */
700 msg
->flags
&= CEC_MSG_FL_REPLY_TO_FOLLOWERS
;
704 if (msg
->len
> 1 && msg
->msg
[1] == CEC_MSG_CDC_MESSAGE
) {
705 msg
->msg
[2] = adap
->phys_addr
>> 8;
706 msg
->msg
[3] = adap
->phys_addr
& 0xff;
710 if (msg
->len
== 0 || msg
->len
> CEC_MAX_MSG_SIZE
) {
711 dprintk(1, "%s: invalid length %d\n", __func__
, msg
->len
);
715 memset(msg
->msg
+ msg
->len
, 0, sizeof(msg
->msg
) - msg
->len
);
718 dprintk(2, "%s: %*ph (wait for 0x%02x%s)\n",
719 __func__
, msg
->len
, msg
->msg
, msg
->reply
,
720 !block
? ", nb" : "");
722 dprintk(2, "%s: %*ph%s\n",
723 __func__
, msg
->len
, msg
->msg
, !block
? " (nb)" : "");
725 if (msg
->timeout
&& msg
->len
== 1) {
726 dprintk(1, "%s: can't reply to poll msg\n", __func__
);
730 if (cec_msg_destination(msg
) == 0xf) {
731 dprintk(1, "%s: invalid poll message\n", __func__
);
734 if (cec_has_log_addr(adap
, cec_msg_destination(msg
))) {
736 * If the destination is a logical address our adapter
737 * has already claimed, then just NACK this.
738 * It depends on the hardware what it will do with a
739 * POLL to itself (some OK this), so it is just as
740 * easy to handle it here so the behavior will be
743 msg
->tx_ts
= ktime_get_ns();
744 msg
->tx_status
= CEC_TX_STATUS_NACK
|
745 CEC_TX_STATUS_MAX_RETRIES
;
746 msg
->tx_nack_cnt
= 1;
747 msg
->sequence
= ++adap
->sequence
;
749 msg
->sequence
= ++adap
->sequence
;
753 if (msg
->len
> 1 && !cec_msg_is_broadcast(msg
) &&
754 cec_has_log_addr(adap
, cec_msg_destination(msg
))) {
755 dprintk(1, "%s: destination is the adapter itself\n", __func__
);
758 if (msg
->len
> 1 && adap
->is_configured
&&
759 !cec_has_log_addr(adap
, cec_msg_initiator(msg
))) {
760 dprintk(1, "%s: initiator has unknown logical address %d\n",
761 __func__
, cec_msg_initiator(msg
));
764 if (!adap
->is_configured
&& !adap
->is_configuring
) {
765 if (adap
->needs_hpd
|| msg
->msg
[0] != 0xf0) {
766 dprintk(1, "%s: adapter is unconfigured\n", __func__
);
770 dprintk(1, "%s: invalid msg->reply\n", __func__
);
775 if (adap
->transmit_queue_sz
>= CEC_MAX_MSG_TX_QUEUE_SZ
) {
776 dprintk(1, "%s: transmit queue full\n", __func__
);
780 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
784 msg
->sequence
= ++adap
->sequence
;
786 msg
->sequence
= ++adap
->sequence
;
791 data
->blocking
= block
;
794 * Determine if this message follows a message from the same
795 * initiator. Needed to determine the free signal time later on.
798 if (!(list_empty(&adap
->transmit_queue
))) {
799 const struct cec_data
*last
;
801 last
= list_last_entry(&adap
->transmit_queue
,
802 const struct cec_data
, list
);
803 last_initiator
= cec_msg_initiator(&last
->msg
);
804 } else if (adap
->transmitting
) {
806 cec_msg_initiator(&adap
->transmitting
->msg
);
809 data
->new_initiator
= last_initiator
!= cec_msg_initiator(msg
);
810 init_completion(&data
->c
);
811 INIT_DELAYED_WORK(&data
->work
, cec_wait_timeout
);
814 list_add_tail(&data
->xfer_list
, &fh
->xfer_list
);
816 list_add_tail(&data
->list
, &adap
->transmit_queue
);
817 adap
->transmit_queue_sz
++;
818 if (!adap
->transmitting
)
819 wake_up_interruptible(&adap
->kthread_waitq
);
821 /* All done if we don't need to block waiting for completion */
826 * If we don't get a completion before this time something is really
827 * wrong and we time out.
829 timeout
= CEC_XFER_TIMEOUT_MS
;
830 /* Add the requested timeout if we have to wait for a reply as well */
832 timeout
+= msg
->timeout
;
835 * Release the lock and wait, retake the lock afterwards.
837 mutex_unlock(&adap
->lock
);
838 res
= wait_for_completion_killable_timeout(&data
->c
,
839 msecs_to_jiffies(timeout
));
840 mutex_lock(&adap
->lock
);
842 if (data
->completed
) {
843 /* The transmit completed (possibly with an error) */
849 * The wait for completion timed out or was interrupted, so mark this
850 * as non-blocking and disconnect from the filehandle since it is
851 * still 'in flight'. When it finally completes it will just drop the
854 data
->blocking
= false;
856 list_del(&data
->xfer_list
);
859 if (res
== 0) { /* timed out */
860 /* Check if the reply or the transmit failed */
861 if (msg
->timeout
&& (msg
->tx_status
& CEC_TX_STATUS_OK
))
862 msg
->rx_status
= CEC_RX_STATUS_TIMEOUT
;
864 msg
->tx_status
= CEC_TX_STATUS_MAX_RETRIES
;
866 return res
> 0 ? 0 : res
;
869 /* Helper function to be used by drivers and this framework. */
870 int cec_transmit_msg(struct cec_adapter
*adap
, struct cec_msg
*msg
,
875 mutex_lock(&adap
->lock
);
876 ret
= cec_transmit_msg_fh(adap
, msg
, NULL
, block
);
877 mutex_unlock(&adap
->lock
);
880 EXPORT_SYMBOL_GPL(cec_transmit_msg
);
883 * I don't like forward references but without this the low-level
884 * cec_received_msg() function would come after a bunch of high-level
885 * CEC protocol handling functions. That was very confusing.
887 static int cec_receive_notify(struct cec_adapter
*adap
, struct cec_msg
*msg
,
890 #define DIRECTED 0x80
891 #define BCAST1_4 0x40
892 #define BCAST2_0 0x20 /* broadcast only allowed for >= 2.0 */
893 #define BCAST (BCAST1_4 | BCAST2_0)
894 #define BOTH (BCAST | DIRECTED)
897 * Specify minimum length and whether the message is directed, broadcast
898 * or both. Messages that do not match the criteria are ignored as per
899 * the CEC specification.
901 static const u8 cec_msg_size
[256] = {
902 [CEC_MSG_ACTIVE_SOURCE
] = 4 | BCAST
,
903 [CEC_MSG_IMAGE_VIEW_ON
] = 2 | DIRECTED
,
904 [CEC_MSG_TEXT_VIEW_ON
] = 2 | DIRECTED
,
905 [CEC_MSG_INACTIVE_SOURCE
] = 4 | DIRECTED
,
906 [CEC_MSG_REQUEST_ACTIVE_SOURCE
] = 2 | BCAST
,
907 [CEC_MSG_ROUTING_CHANGE
] = 6 | BCAST
,
908 [CEC_MSG_ROUTING_INFORMATION
] = 4 | BCAST
,
909 [CEC_MSG_SET_STREAM_PATH
] = 4 | BCAST
,
910 [CEC_MSG_STANDBY
] = 2 | BOTH
,
911 [CEC_MSG_RECORD_OFF
] = 2 | DIRECTED
,
912 [CEC_MSG_RECORD_ON
] = 3 | DIRECTED
,
913 [CEC_MSG_RECORD_STATUS
] = 3 | DIRECTED
,
914 [CEC_MSG_RECORD_TV_SCREEN
] = 2 | DIRECTED
,
915 [CEC_MSG_CLEAR_ANALOGUE_TIMER
] = 13 | DIRECTED
,
916 [CEC_MSG_CLEAR_DIGITAL_TIMER
] = 16 | DIRECTED
,
917 [CEC_MSG_CLEAR_EXT_TIMER
] = 13 | DIRECTED
,
918 [CEC_MSG_SET_ANALOGUE_TIMER
] = 13 | DIRECTED
,
919 [CEC_MSG_SET_DIGITAL_TIMER
] = 16 | DIRECTED
,
920 [CEC_MSG_SET_EXT_TIMER
] = 13 | DIRECTED
,
921 [CEC_MSG_SET_TIMER_PROGRAM_TITLE
] = 2 | DIRECTED
,
922 [CEC_MSG_TIMER_CLEARED_STATUS
] = 3 | DIRECTED
,
923 [CEC_MSG_TIMER_STATUS
] = 3 | DIRECTED
,
924 [CEC_MSG_CEC_VERSION
] = 3 | DIRECTED
,
925 [CEC_MSG_GET_CEC_VERSION
] = 2 | DIRECTED
,
926 [CEC_MSG_GIVE_PHYSICAL_ADDR
] = 2 | DIRECTED
,
927 [CEC_MSG_GET_MENU_LANGUAGE
] = 2 | DIRECTED
,
928 [CEC_MSG_REPORT_PHYSICAL_ADDR
] = 5 | BCAST
,
929 [CEC_MSG_SET_MENU_LANGUAGE
] = 5 | BCAST
,
930 [CEC_MSG_REPORT_FEATURES
] = 6 | BCAST
,
931 [CEC_MSG_GIVE_FEATURES
] = 2 | DIRECTED
,
932 [CEC_MSG_DECK_CONTROL
] = 3 | DIRECTED
,
933 [CEC_MSG_DECK_STATUS
] = 3 | DIRECTED
,
934 [CEC_MSG_GIVE_DECK_STATUS
] = 3 | DIRECTED
,
935 [CEC_MSG_PLAY
] = 3 | DIRECTED
,
936 [CEC_MSG_GIVE_TUNER_DEVICE_STATUS
] = 3 | DIRECTED
,
937 [CEC_MSG_SELECT_ANALOGUE_SERVICE
] = 6 | DIRECTED
,
938 [CEC_MSG_SELECT_DIGITAL_SERVICE
] = 9 | DIRECTED
,
939 [CEC_MSG_TUNER_DEVICE_STATUS
] = 7 | DIRECTED
,
940 [CEC_MSG_TUNER_STEP_DECREMENT
] = 2 | DIRECTED
,
941 [CEC_MSG_TUNER_STEP_INCREMENT
] = 2 | DIRECTED
,
942 [CEC_MSG_DEVICE_VENDOR_ID
] = 5 | BCAST
,
943 [CEC_MSG_GIVE_DEVICE_VENDOR_ID
] = 2 | DIRECTED
,
944 [CEC_MSG_VENDOR_COMMAND
] = 2 | DIRECTED
,
945 [CEC_MSG_VENDOR_COMMAND_WITH_ID
] = 5 | BOTH
,
946 [CEC_MSG_VENDOR_REMOTE_BUTTON_DOWN
] = 2 | BOTH
,
947 [CEC_MSG_VENDOR_REMOTE_BUTTON_UP
] = 2 | BOTH
,
948 [CEC_MSG_SET_OSD_STRING
] = 3 | DIRECTED
,
949 [CEC_MSG_GIVE_OSD_NAME
] = 2 | DIRECTED
,
950 [CEC_MSG_SET_OSD_NAME
] = 2 | DIRECTED
,
951 [CEC_MSG_MENU_REQUEST
] = 3 | DIRECTED
,
952 [CEC_MSG_MENU_STATUS
] = 3 | DIRECTED
,
953 [CEC_MSG_USER_CONTROL_PRESSED
] = 3 | DIRECTED
,
954 [CEC_MSG_USER_CONTROL_RELEASED
] = 2 | DIRECTED
,
955 [CEC_MSG_GIVE_DEVICE_POWER_STATUS
] = 2 | DIRECTED
,
956 [CEC_MSG_REPORT_POWER_STATUS
] = 3 | DIRECTED
| BCAST2_0
,
957 [CEC_MSG_FEATURE_ABORT
] = 4 | DIRECTED
,
958 [CEC_MSG_ABORT
] = 2 | DIRECTED
,
959 [CEC_MSG_GIVE_AUDIO_STATUS
] = 2 | DIRECTED
,
960 [CEC_MSG_GIVE_SYSTEM_AUDIO_MODE_STATUS
] = 2 | DIRECTED
,
961 [CEC_MSG_REPORT_AUDIO_STATUS
] = 3 | DIRECTED
,
962 [CEC_MSG_REPORT_SHORT_AUDIO_DESCRIPTOR
] = 2 | DIRECTED
,
963 [CEC_MSG_REQUEST_SHORT_AUDIO_DESCRIPTOR
] = 2 | DIRECTED
,
964 [CEC_MSG_SET_SYSTEM_AUDIO_MODE
] = 3 | BOTH
,
965 [CEC_MSG_SYSTEM_AUDIO_MODE_REQUEST
] = 2 | DIRECTED
,
966 [CEC_MSG_SYSTEM_AUDIO_MODE_STATUS
] = 3 | DIRECTED
,
967 [CEC_MSG_SET_AUDIO_RATE
] = 3 | DIRECTED
,
968 [CEC_MSG_INITIATE_ARC
] = 2 | DIRECTED
,
969 [CEC_MSG_REPORT_ARC_INITIATED
] = 2 | DIRECTED
,
970 [CEC_MSG_REPORT_ARC_TERMINATED
] = 2 | DIRECTED
,
971 [CEC_MSG_REQUEST_ARC_INITIATION
] = 2 | DIRECTED
,
972 [CEC_MSG_REQUEST_ARC_TERMINATION
] = 2 | DIRECTED
,
973 [CEC_MSG_TERMINATE_ARC
] = 2 | DIRECTED
,
974 [CEC_MSG_REQUEST_CURRENT_LATENCY
] = 4 | BCAST
,
975 [CEC_MSG_REPORT_CURRENT_LATENCY
] = 6 | BCAST
,
976 [CEC_MSG_CDC_MESSAGE
] = 2 | BCAST
,
979 /* Called by the CEC adapter if a message is received */
980 void cec_received_msg_ts(struct cec_adapter
*adap
,
981 struct cec_msg
*msg
, ktime_t ts
)
983 struct cec_data
*data
;
984 u8 msg_init
= cec_msg_initiator(msg
);
985 u8 msg_dest
= cec_msg_destination(msg
);
986 u8 cmd
= msg
->msg
[1];
987 bool is_reply
= false;
988 bool valid_la
= true;
991 if (WARN_ON(!msg
->len
|| msg
->len
> CEC_MAX_MSG_SIZE
))
995 * Some CEC adapters will receive the messages that they transmitted.
996 * This test filters out those messages by checking if we are the
997 * initiator, and just returning in that case.
999 * Note that this won't work if this is an Unregistered device.
1001 * It is bad practice if the hardware receives the message that it
1002 * transmitted and luckily most CEC adapters behave correctly in this
1005 if (msg_init
!= CEC_LOG_ADDR_UNREGISTERED
&&
1006 cec_has_log_addr(adap
, msg_init
))
1009 msg
->rx_ts
= ktime_to_ns(ts
);
1010 msg
->rx_status
= CEC_RX_STATUS_OK
;
1011 msg
->sequence
= msg
->reply
= msg
->timeout
= 0;
1014 msg
->tx_arb_lost_cnt
= 0;
1015 msg
->tx_nack_cnt
= 0;
1016 msg
->tx_low_drive_cnt
= 0;
1017 msg
->tx_error_cnt
= 0;
1019 memset(msg
->msg
+ msg
->len
, 0, sizeof(msg
->msg
) - msg
->len
);
1021 mutex_lock(&adap
->lock
);
1022 dprintk(2, "%s: %*ph\n", __func__
, msg
->len
, msg
->msg
);
1024 /* Check if this message was for us (directed or broadcast). */
1025 if (!cec_msg_is_broadcast(msg
))
1026 valid_la
= cec_has_log_addr(adap
, msg_dest
);
1029 * Check if the length is not too short or if the message is a
1030 * broadcast message where a directed message was expected or
1031 * vice versa. If so, then the message has to be ignored (according
1032 * to section CEC 7.3 and CEC 12.2).
1034 if (valid_la
&& msg
->len
> 1 && cec_msg_size
[cmd
]) {
1035 u8 dir_fl
= cec_msg_size
[cmd
] & BOTH
;
1037 min_len
= cec_msg_size
[cmd
] & 0x1f;
1038 if (msg
->len
< min_len
)
1040 else if (!cec_msg_is_broadcast(msg
) && !(dir_fl
& DIRECTED
))
1042 else if (cec_msg_is_broadcast(msg
) && !(dir_fl
& BCAST1_4
))
1044 else if (cec_msg_is_broadcast(msg
) &&
1045 adap
->log_addrs
.cec_version
>= CEC_OP_CEC_VERSION_2_0
&&
1046 !(dir_fl
& BCAST2_0
))
1049 if (valid_la
&& min_len
) {
1050 /* These messages have special length requirements */
1052 case CEC_MSG_TIMER_STATUS
:
1053 if (msg
->msg
[2] & 0x10) {
1054 switch (msg
->msg
[2] & 0xf) {
1055 case CEC_OP_PROG_INFO_NOT_ENOUGH_SPACE
:
1056 case CEC_OP_PROG_INFO_MIGHT_NOT_BE_ENOUGH_SPACE
:
1061 } else if ((msg
->msg
[2] & 0xf) == CEC_OP_PROG_ERROR_DUPLICATE
) {
1066 case CEC_MSG_RECORD_ON
:
1067 switch (msg
->msg
[2]) {
1068 case CEC_OP_RECORD_SRC_OWN
:
1070 case CEC_OP_RECORD_SRC_DIGITAL
:
1074 case CEC_OP_RECORD_SRC_ANALOG
:
1078 case CEC_OP_RECORD_SRC_EXT_PLUG
:
1082 case CEC_OP_RECORD_SRC_EXT_PHYS_ADDR
:
1091 /* It's a valid message and not a poll or CDC message */
1092 if (valid_la
&& msg
->len
> 1 && cmd
!= CEC_MSG_CDC_MESSAGE
) {
1093 bool abort
= cmd
== CEC_MSG_FEATURE_ABORT
;
1095 /* The aborted command is in msg[2] */
1100 * Walk over all transmitted messages that are waiting for a
1103 list_for_each_entry(data
, &adap
->wait_queue
, list
) {
1104 struct cec_msg
*dst
= &data
->msg
;
1107 * The *only* CEC message that has two possible replies
1108 * is CEC_MSG_INITIATE_ARC.
1109 * In this case allow either of the two replies.
1111 if (!abort
&& dst
->msg
[1] == CEC_MSG_INITIATE_ARC
&&
1112 (cmd
== CEC_MSG_REPORT_ARC_INITIATED
||
1113 cmd
== CEC_MSG_REPORT_ARC_TERMINATED
) &&
1114 (dst
->reply
== CEC_MSG_REPORT_ARC_INITIATED
||
1115 dst
->reply
== CEC_MSG_REPORT_ARC_TERMINATED
))
1118 /* Does the command match? */
1119 if ((abort
&& cmd
!= dst
->msg
[1]) ||
1120 (!abort
&& cmd
!= dst
->reply
))
1123 /* Does the addressing match? */
1124 if (msg_init
!= cec_msg_destination(dst
) &&
1125 !cec_msg_is_broadcast(dst
))
1128 /* We got a reply */
1129 memcpy(dst
->msg
, msg
->msg
, msg
->len
);
1130 dst
->len
= msg
->len
;
1131 dst
->rx_ts
= msg
->rx_ts
;
1132 dst
->rx_status
= msg
->rx_status
;
1134 dst
->rx_status
|= CEC_RX_STATUS_FEATURE_ABORT
;
1135 msg
->flags
= dst
->flags
;
1136 /* Remove it from the wait_queue */
1137 list_del_init(&data
->list
);
1139 /* Cancel the pending timeout work */
1140 if (!cancel_delayed_work(&data
->work
)) {
1141 mutex_unlock(&adap
->lock
);
1142 flush_scheduled_work();
1143 mutex_lock(&adap
->lock
);
1146 * Mark this as a reply, provided someone is still
1147 * waiting for the answer.
1151 cec_data_completed(data
);
1155 mutex_unlock(&adap
->lock
);
1157 /* Pass the message on to any monitoring filehandles */
1158 cec_queue_msg_monitor(adap
, msg
, valid_la
);
1160 /* We're done if it is not for us or a poll message */
1161 if (!valid_la
|| msg
->len
<= 1)
1164 if (adap
->log_addrs
.log_addr_mask
== 0)
1168 * Process the message on the protocol level. If is_reply is true,
1169 * then cec_receive_notify() won't pass on the reply to the listener(s)
1170 * since that was already done by cec_data_completed() above.
1172 cec_receive_notify(adap
, msg
, is_reply
);
1174 EXPORT_SYMBOL_GPL(cec_received_msg_ts
);
1176 /* Logical Address Handling */
1179 * Attempt to claim a specific logical address.
1181 * This function is called with adap->lock held.
1183 static int cec_config_log_addr(struct cec_adapter
*adap
,
1185 unsigned int log_addr
)
1187 struct cec_log_addrs
*las
= &adap
->log_addrs
;
1188 struct cec_msg msg
= { };
1191 if (cec_has_log_addr(adap
, log_addr
))
1194 /* Send poll message */
1196 msg
.msg
[0] = (log_addr
<< 4) | log_addr
;
1197 err
= cec_transmit_msg_fh(adap
, &msg
, NULL
, true);
1200 * While trying to poll the physical address was reset
1201 * and the adapter was unconfigured, so bail out.
1203 if (!adap
->is_configuring
)
1209 if (msg
.tx_status
& CEC_TX_STATUS_OK
)
1213 * Message not acknowledged, so this logical
1214 * address is free to use.
1216 err
= adap
->ops
->adap_log_addr(adap
, log_addr
);
1220 las
->log_addr
[idx
] = log_addr
;
1221 las
->log_addr_mask
|= 1 << log_addr
;
1222 adap
->phys_addrs
[log_addr
] = adap
->phys_addr
;
1227 * Unconfigure the adapter: clear all logical addresses and send
1228 * the state changed event.
1230 * This function is called with adap->lock held.
1232 static void cec_adap_unconfigure(struct cec_adapter
*adap
)
1234 if (!adap
->needs_hpd
||
1235 adap
->phys_addr
!= CEC_PHYS_ADDR_INVALID
)
1236 WARN_ON(adap
->ops
->adap_log_addr(adap
, CEC_LOG_ADDR_INVALID
));
1237 adap
->log_addrs
.log_addr_mask
= 0;
1238 adap
->is_configuring
= false;
1239 adap
->is_configured
= false;
1240 memset(adap
->phys_addrs
, 0xff, sizeof(adap
->phys_addrs
));
1242 wake_up_interruptible(&adap
->kthread_waitq
);
1243 cec_post_state_event(adap
);
1247 * Attempt to claim the required logical addresses.
1249 static int cec_config_thread_func(void *arg
)
1251 /* The various LAs for each type of device */
1252 static const u8 tv_log_addrs
[] = {
1253 CEC_LOG_ADDR_TV
, CEC_LOG_ADDR_SPECIFIC
,
1254 CEC_LOG_ADDR_INVALID
1256 static const u8 record_log_addrs
[] = {
1257 CEC_LOG_ADDR_RECORD_1
, CEC_LOG_ADDR_RECORD_2
,
1258 CEC_LOG_ADDR_RECORD_3
,
1259 CEC_LOG_ADDR_BACKUP_1
, CEC_LOG_ADDR_BACKUP_2
,
1260 CEC_LOG_ADDR_INVALID
1262 static const u8 tuner_log_addrs
[] = {
1263 CEC_LOG_ADDR_TUNER_1
, CEC_LOG_ADDR_TUNER_2
,
1264 CEC_LOG_ADDR_TUNER_3
, CEC_LOG_ADDR_TUNER_4
,
1265 CEC_LOG_ADDR_BACKUP_1
, CEC_LOG_ADDR_BACKUP_2
,
1266 CEC_LOG_ADDR_INVALID
1268 static const u8 playback_log_addrs
[] = {
1269 CEC_LOG_ADDR_PLAYBACK_1
, CEC_LOG_ADDR_PLAYBACK_2
,
1270 CEC_LOG_ADDR_PLAYBACK_3
,
1271 CEC_LOG_ADDR_BACKUP_1
, CEC_LOG_ADDR_BACKUP_2
,
1272 CEC_LOG_ADDR_INVALID
1274 static const u8 audiosystem_log_addrs
[] = {
1275 CEC_LOG_ADDR_AUDIOSYSTEM
,
1276 CEC_LOG_ADDR_INVALID
1278 static const u8 specific_use_log_addrs
[] = {
1279 CEC_LOG_ADDR_SPECIFIC
,
1280 CEC_LOG_ADDR_BACKUP_1
, CEC_LOG_ADDR_BACKUP_2
,
1281 CEC_LOG_ADDR_INVALID
1283 static const u8
*type2addrs
[6] = {
1284 [CEC_LOG_ADDR_TYPE_TV
] = tv_log_addrs
,
1285 [CEC_LOG_ADDR_TYPE_RECORD
] = record_log_addrs
,
1286 [CEC_LOG_ADDR_TYPE_TUNER
] = tuner_log_addrs
,
1287 [CEC_LOG_ADDR_TYPE_PLAYBACK
] = playback_log_addrs
,
1288 [CEC_LOG_ADDR_TYPE_AUDIOSYSTEM
] = audiosystem_log_addrs
,
1289 [CEC_LOG_ADDR_TYPE_SPECIFIC
] = specific_use_log_addrs
,
1291 static const u16 type2mask
[] = {
1292 [CEC_LOG_ADDR_TYPE_TV
] = CEC_LOG_ADDR_MASK_TV
,
1293 [CEC_LOG_ADDR_TYPE_RECORD
] = CEC_LOG_ADDR_MASK_RECORD
,
1294 [CEC_LOG_ADDR_TYPE_TUNER
] = CEC_LOG_ADDR_MASK_TUNER
,
1295 [CEC_LOG_ADDR_TYPE_PLAYBACK
] = CEC_LOG_ADDR_MASK_PLAYBACK
,
1296 [CEC_LOG_ADDR_TYPE_AUDIOSYSTEM
] = CEC_LOG_ADDR_MASK_AUDIOSYSTEM
,
1297 [CEC_LOG_ADDR_TYPE_SPECIFIC
] = CEC_LOG_ADDR_MASK_SPECIFIC
,
1299 struct cec_adapter
*adap
= arg
;
1300 struct cec_log_addrs
*las
= &adap
->log_addrs
;
1304 mutex_lock(&adap
->lock
);
1305 dprintk(1, "physical address: %x.%x.%x.%x, claim %d logical addresses\n",
1306 cec_phys_addr_exp(adap
->phys_addr
), las
->num_log_addrs
);
1307 las
->log_addr_mask
= 0;
1309 if (las
->log_addr_type
[0] == CEC_LOG_ADDR_TYPE_UNREGISTERED
)
1312 for (i
= 0; i
< las
->num_log_addrs
; i
++) {
1313 unsigned int type
= las
->log_addr_type
[i
];
1318 * The TV functionality can only map to physical address 0.
1319 * For any other address, try the Specific functionality
1320 * instead as per the spec.
1322 if (adap
->phys_addr
&& type
== CEC_LOG_ADDR_TYPE_TV
)
1323 type
= CEC_LOG_ADDR_TYPE_SPECIFIC
;
1325 la_list
= type2addrs
[type
];
1326 last_la
= las
->log_addr
[i
];
1327 las
->log_addr
[i
] = CEC_LOG_ADDR_INVALID
;
1328 if (last_la
== CEC_LOG_ADDR_INVALID
||
1329 last_la
== CEC_LOG_ADDR_UNREGISTERED
||
1330 !((1 << last_la
) & type2mask
[type
]))
1331 last_la
= la_list
[0];
1333 err
= cec_config_log_addr(adap
, i
, last_la
);
1334 if (err
> 0) /* Reused last LA */
1340 for (j
= 0; la_list
[j
] != CEC_LOG_ADDR_INVALID
; j
++) {
1341 /* Tried this one already, skip it */
1342 if (la_list
[j
] == last_la
)
1344 /* The backup addresses are CEC 2.0 specific */
1345 if ((la_list
[j
] == CEC_LOG_ADDR_BACKUP_1
||
1346 la_list
[j
] == CEC_LOG_ADDR_BACKUP_2
) &&
1347 las
->cec_version
< CEC_OP_CEC_VERSION_2_0
)
1350 err
= cec_config_log_addr(adap
, i
, la_list
[j
]);
1351 if (err
== 0) /* LA is in use */
1355 /* Done, claimed an LA */
1359 if (la_list
[j
] == CEC_LOG_ADDR_INVALID
)
1360 dprintk(1, "could not claim LA %d\n", i
);
1363 if (adap
->log_addrs
.log_addr_mask
== 0 &&
1364 !(las
->flags
& CEC_LOG_ADDRS_FL_ALLOW_UNREG_FALLBACK
))
1368 if (adap
->log_addrs
.log_addr_mask
== 0) {
1369 /* Fall back to unregistered */
1370 las
->log_addr
[0] = CEC_LOG_ADDR_UNREGISTERED
;
1371 las
->log_addr_mask
= 1 << las
->log_addr
[0];
1372 for (i
= 1; i
< las
->num_log_addrs
; i
++)
1373 las
->log_addr
[i
] = CEC_LOG_ADDR_INVALID
;
1375 for (i
= las
->num_log_addrs
; i
< CEC_MAX_LOG_ADDRS
; i
++)
1376 las
->log_addr
[i
] = CEC_LOG_ADDR_INVALID
;
1377 adap
->is_configured
= true;
1378 adap
->is_configuring
= false;
1379 cec_post_state_event(adap
);
1382 * Now post the Report Features and Report Physical Address broadcast
1383 * messages. Note that these are non-blocking transmits, meaning that
1384 * they are just queued up and once adap->lock is unlocked the main
1385 * thread will kick in and start transmitting these.
1387 * If after this function is done (but before one or more of these
1388 * messages are actually transmitted) the CEC adapter is unconfigured,
1389 * then any remaining messages will be dropped by the main thread.
1391 for (i
= 0; i
< las
->num_log_addrs
; i
++) {
1392 struct cec_msg msg
= {};
1394 if (las
->log_addr
[i
] == CEC_LOG_ADDR_INVALID
||
1395 (las
->flags
& CEC_LOG_ADDRS_FL_CDC_ONLY
))
1398 msg
.msg
[0] = (las
->log_addr
[i
] << 4) | 0x0f;
1400 /* Report Features must come first according to CEC 2.0 */
1401 if (las
->log_addr
[i
] != CEC_LOG_ADDR_UNREGISTERED
&&
1402 adap
->log_addrs
.cec_version
>= CEC_OP_CEC_VERSION_2_0
) {
1403 cec_fill_msg_report_features(adap
, &msg
, i
);
1404 cec_transmit_msg_fh(adap
, &msg
, NULL
, false);
1407 /* Report Physical Address */
1408 cec_msg_report_physical_addr(&msg
, adap
->phys_addr
,
1409 las
->primary_device_type
[i
]);
1410 dprintk(1, "config: la %d pa %x.%x.%x.%x\n",
1412 cec_phys_addr_exp(adap
->phys_addr
));
1413 cec_transmit_msg_fh(adap
, &msg
, NULL
, false);
1415 adap
->kthread_config
= NULL
;
1416 complete(&adap
->config_completion
);
1417 mutex_unlock(&adap
->lock
);
1421 for (i
= 0; i
< las
->num_log_addrs
; i
++)
1422 las
->log_addr
[i
] = CEC_LOG_ADDR_INVALID
;
1423 cec_adap_unconfigure(adap
);
1424 adap
->kthread_config
= NULL
;
1425 mutex_unlock(&adap
->lock
);
1426 complete(&adap
->config_completion
);
1431 * Called from either __cec_s_phys_addr or __cec_s_log_addrs to claim the
1432 * logical addresses.
1434 * This function is called with adap->lock held.
1436 static void cec_claim_log_addrs(struct cec_adapter
*adap
, bool block
)
1438 if (WARN_ON(adap
->is_configuring
|| adap
->is_configured
))
1441 init_completion(&adap
->config_completion
);
1443 /* Ready to kick off the thread */
1444 adap
->is_configuring
= true;
1445 adap
->kthread_config
= kthread_run(cec_config_thread_func
, adap
,
1446 "ceccfg-%s", adap
->name
);
1447 if (IS_ERR(adap
->kthread_config
)) {
1448 adap
->kthread_config
= NULL
;
1450 mutex_unlock(&adap
->lock
);
1451 wait_for_completion(&adap
->config_completion
);
1452 mutex_lock(&adap
->lock
);
1456 /* Set a new physical address and send an event notifying userspace of this.
1458 * This function is called with adap->lock held.
1460 void __cec_s_phys_addr(struct cec_adapter
*adap
, u16 phys_addr
, bool block
)
1462 if (phys_addr
== adap
->phys_addr
)
1464 if (phys_addr
!= CEC_PHYS_ADDR_INVALID
&& adap
->devnode
.unregistered
)
1467 dprintk(1, "new physical address %x.%x.%x.%x\n",
1468 cec_phys_addr_exp(phys_addr
));
1469 if (phys_addr
== CEC_PHYS_ADDR_INVALID
||
1470 adap
->phys_addr
!= CEC_PHYS_ADDR_INVALID
) {
1471 adap
->phys_addr
= CEC_PHYS_ADDR_INVALID
;
1472 cec_post_state_event(adap
);
1473 cec_adap_unconfigure(adap
);
1474 /* Disabling monitor all mode should always succeed */
1475 if (adap
->monitor_all_cnt
)
1476 WARN_ON(call_op(adap
, adap_monitor_all_enable
, false));
1477 mutex_lock(&adap
->devnode
.lock
);
1478 if (adap
->needs_hpd
|| list_empty(&adap
->devnode
.fhs
))
1479 WARN_ON(adap
->ops
->adap_enable(adap
, false));
1480 mutex_unlock(&adap
->devnode
.lock
);
1481 if (phys_addr
== CEC_PHYS_ADDR_INVALID
)
1485 mutex_lock(&adap
->devnode
.lock
);
1486 if ((adap
->needs_hpd
|| list_empty(&adap
->devnode
.fhs
)) &&
1487 adap
->ops
->adap_enable(adap
, true)) {
1488 mutex_unlock(&adap
->devnode
.lock
);
1492 if (adap
->monitor_all_cnt
&&
1493 call_op(adap
, adap_monitor_all_enable
, true)) {
1494 if (adap
->needs_hpd
|| list_empty(&adap
->devnode
.fhs
))
1495 WARN_ON(adap
->ops
->adap_enable(adap
, false));
1496 mutex_unlock(&adap
->devnode
.lock
);
1499 mutex_unlock(&adap
->devnode
.lock
);
1501 adap
->phys_addr
= phys_addr
;
1502 cec_post_state_event(adap
);
1503 if (adap
->log_addrs
.num_log_addrs
)
1504 cec_claim_log_addrs(adap
, block
);
1507 void cec_s_phys_addr(struct cec_adapter
*adap
, u16 phys_addr
, bool block
)
1509 if (IS_ERR_OR_NULL(adap
))
1512 mutex_lock(&adap
->lock
);
1513 __cec_s_phys_addr(adap
, phys_addr
, block
);
1514 mutex_unlock(&adap
->lock
);
1516 EXPORT_SYMBOL_GPL(cec_s_phys_addr
);
1518 void cec_s_phys_addr_from_edid(struct cec_adapter
*adap
,
1519 const struct edid
*edid
)
1521 u16 pa
= CEC_PHYS_ADDR_INVALID
;
1523 if (edid
&& edid
->extensions
)
1524 pa
= cec_get_edid_phys_addr((const u8
*)edid
,
1525 EDID_LENGTH
* (edid
->extensions
+ 1), NULL
);
1526 cec_s_phys_addr(adap
, pa
, false);
1528 EXPORT_SYMBOL_GPL(cec_s_phys_addr_from_edid
);
1531 * Called from either the ioctl or a driver to set the logical addresses.
1533 * This function is called with adap->lock held.
1535 int __cec_s_log_addrs(struct cec_adapter
*adap
,
1536 struct cec_log_addrs
*log_addrs
, bool block
)
1541 if (adap
->devnode
.unregistered
)
1544 if (!log_addrs
|| log_addrs
->num_log_addrs
== 0) {
1545 cec_adap_unconfigure(adap
);
1546 adap
->log_addrs
.num_log_addrs
= 0;
1547 for (i
= 0; i
< CEC_MAX_LOG_ADDRS
; i
++)
1548 adap
->log_addrs
.log_addr
[i
] = CEC_LOG_ADDR_INVALID
;
1549 adap
->log_addrs
.osd_name
[0] = '\0';
1550 adap
->log_addrs
.vendor_id
= CEC_VENDOR_ID_NONE
;
1551 adap
->log_addrs
.cec_version
= CEC_OP_CEC_VERSION_2_0
;
1555 if (log_addrs
->flags
& CEC_LOG_ADDRS_FL_CDC_ONLY
) {
1557 * Sanitize log_addrs fields if a CDC-Only device is
1560 log_addrs
->num_log_addrs
= 1;
1561 log_addrs
->osd_name
[0] = '\0';
1562 log_addrs
->vendor_id
= CEC_VENDOR_ID_NONE
;
1563 log_addrs
->log_addr_type
[0] = CEC_LOG_ADDR_TYPE_UNREGISTERED
;
1565 * This is just an internal convention since a CDC-Only device
1566 * doesn't have to be a switch. But switches already use
1567 * unregistered, so it makes some kind of sense to pick this
1568 * as the primary device. Since a CDC-Only device never sends
1569 * any 'normal' CEC messages this primary device type is never
1570 * sent over the CEC bus.
1572 log_addrs
->primary_device_type
[0] = CEC_OP_PRIM_DEVTYPE_SWITCH
;
1573 log_addrs
->all_device_types
[0] = 0;
1574 log_addrs
->features
[0][0] = 0;
1575 log_addrs
->features
[0][1] = 0;
1578 /* Ensure the osd name is 0-terminated */
1579 log_addrs
->osd_name
[sizeof(log_addrs
->osd_name
) - 1] = '\0';
1582 if (log_addrs
->num_log_addrs
> adap
->available_log_addrs
) {
1583 dprintk(1, "num_log_addrs > %d\n", adap
->available_log_addrs
);
1588 * Vendor ID is a 24 bit number, so check if the value is
1589 * within the correct range.
1591 if (log_addrs
->vendor_id
!= CEC_VENDOR_ID_NONE
&&
1592 (log_addrs
->vendor_id
& 0xff000000) != 0) {
1593 dprintk(1, "invalid vendor ID\n");
1597 if (log_addrs
->cec_version
!= CEC_OP_CEC_VERSION_1_4
&&
1598 log_addrs
->cec_version
!= CEC_OP_CEC_VERSION_2_0
) {
1599 dprintk(1, "invalid CEC version\n");
1603 if (log_addrs
->num_log_addrs
> 1)
1604 for (i
= 0; i
< log_addrs
->num_log_addrs
; i
++)
1605 if (log_addrs
->log_addr_type
[i
] ==
1606 CEC_LOG_ADDR_TYPE_UNREGISTERED
) {
1607 dprintk(1, "num_log_addrs > 1 can't be combined with unregistered LA\n");
1611 for (i
= 0; i
< log_addrs
->num_log_addrs
; i
++) {
1612 const u8 feature_sz
= ARRAY_SIZE(log_addrs
->features
[0]);
1613 u8
*features
= log_addrs
->features
[i
];
1614 bool op_is_dev_features
= false;
1617 log_addrs
->log_addr
[i
] = CEC_LOG_ADDR_INVALID
;
1618 if (type_mask
& (1 << log_addrs
->log_addr_type
[i
])) {
1619 dprintk(1, "duplicate logical address type\n");
1622 type_mask
|= 1 << log_addrs
->log_addr_type
[i
];
1623 if ((type_mask
& (1 << CEC_LOG_ADDR_TYPE_RECORD
)) &&
1624 (type_mask
& (1 << CEC_LOG_ADDR_TYPE_PLAYBACK
))) {
1625 /* Record already contains the playback functionality */
1626 dprintk(1, "invalid record + playback combination\n");
1629 if (log_addrs
->primary_device_type
[i
] >
1630 CEC_OP_PRIM_DEVTYPE_PROCESSOR
) {
1631 dprintk(1, "unknown primary device type\n");
1634 if (log_addrs
->primary_device_type
[i
] == 2) {
1635 dprintk(1, "invalid primary device type\n");
1638 if (log_addrs
->log_addr_type
[i
] > CEC_LOG_ADDR_TYPE_UNREGISTERED
) {
1639 dprintk(1, "unknown logical address type\n");
1642 for (j
= 0; j
< feature_sz
; j
++) {
1643 if ((features
[j
] & 0x80) == 0) {
1644 if (op_is_dev_features
)
1646 op_is_dev_features
= true;
1649 if (!op_is_dev_features
|| j
== feature_sz
) {
1650 dprintk(1, "malformed features\n");
1653 /* Zero unused part of the feature array */
1654 memset(features
+ j
+ 1, 0, feature_sz
- j
- 1);
1657 if (log_addrs
->cec_version
>= CEC_OP_CEC_VERSION_2_0
) {
1658 if (log_addrs
->num_log_addrs
> 2) {
1659 dprintk(1, "CEC 2.0 allows no more than 2 logical addresses\n");
1662 if (log_addrs
->num_log_addrs
== 2) {
1663 if (!(type_mask
& ((1 << CEC_LOG_ADDR_TYPE_AUDIOSYSTEM
) |
1664 (1 << CEC_LOG_ADDR_TYPE_TV
)))) {
1665 dprintk(1, "two LAs is only allowed for audiosystem and TV\n");
1668 if (!(type_mask
& ((1 << CEC_LOG_ADDR_TYPE_PLAYBACK
) |
1669 (1 << CEC_LOG_ADDR_TYPE_RECORD
)))) {
1670 dprintk(1, "an audiosystem/TV can only be combined with record or playback\n");
1676 /* Zero unused LAs */
1677 for (i
= log_addrs
->num_log_addrs
; i
< CEC_MAX_LOG_ADDRS
; i
++) {
1678 log_addrs
->primary_device_type
[i
] = 0;
1679 log_addrs
->log_addr_type
[i
] = 0;
1680 log_addrs
->all_device_types
[i
] = 0;
1681 memset(log_addrs
->features
[i
], 0,
1682 sizeof(log_addrs
->features
[i
]));
1685 log_addrs
->log_addr_mask
= adap
->log_addrs
.log_addr_mask
;
1686 adap
->log_addrs
= *log_addrs
;
1687 if (adap
->phys_addr
!= CEC_PHYS_ADDR_INVALID
)
1688 cec_claim_log_addrs(adap
, block
);
1692 int cec_s_log_addrs(struct cec_adapter
*adap
,
1693 struct cec_log_addrs
*log_addrs
, bool block
)
1697 mutex_lock(&adap
->lock
);
1698 err
= __cec_s_log_addrs(adap
, log_addrs
, block
);
1699 mutex_unlock(&adap
->lock
);
1702 EXPORT_SYMBOL_GPL(cec_s_log_addrs
);
1704 /* High-level core CEC message handling */
1706 /* Fill in the Report Features message */
1707 static void cec_fill_msg_report_features(struct cec_adapter
*adap
,
1708 struct cec_msg
*msg
,
1709 unsigned int la_idx
)
1711 const struct cec_log_addrs
*las
= &adap
->log_addrs
;
1712 const u8
*features
= las
->features
[la_idx
];
1713 bool op_is_dev_features
= false;
1716 /* Report Features */
1717 msg
->msg
[0] = (las
->log_addr
[la_idx
] << 4) | 0x0f;
1719 msg
->msg
[1] = CEC_MSG_REPORT_FEATURES
;
1720 msg
->msg
[2] = adap
->log_addrs
.cec_version
;
1721 msg
->msg
[3] = las
->all_device_types
[la_idx
];
1723 /* Write RC Profiles first, then Device Features */
1724 for (idx
= 0; idx
< ARRAY_SIZE(las
->features
[0]); idx
++) {
1725 msg
->msg
[msg
->len
++] = features
[idx
];
1726 if ((features
[idx
] & CEC_OP_FEAT_EXT
) == 0) {
1727 if (op_is_dev_features
)
1729 op_is_dev_features
= true;
1734 /* Transmit the Feature Abort message */
1735 static int cec_feature_abort_reason(struct cec_adapter
*adap
,
1736 struct cec_msg
*msg
, u8 reason
)
1738 struct cec_msg tx_msg
= { };
1741 * Don't reply with CEC_MSG_FEATURE_ABORT to a CEC_MSG_FEATURE_ABORT
1744 if (msg
->msg
[1] == CEC_MSG_FEATURE_ABORT
)
1746 /* Don't Feature Abort messages from 'Unregistered' */
1747 if (cec_msg_initiator(msg
) == CEC_LOG_ADDR_UNREGISTERED
)
1749 cec_msg_set_reply_to(&tx_msg
, msg
);
1750 cec_msg_feature_abort(&tx_msg
, msg
->msg
[1], reason
);
1751 return cec_transmit_msg(adap
, &tx_msg
, false);
1754 static int cec_feature_abort(struct cec_adapter
*adap
, struct cec_msg
*msg
)
1756 return cec_feature_abort_reason(adap
, msg
,
1757 CEC_OP_ABORT_UNRECOGNIZED_OP
);
1760 static int cec_feature_refused(struct cec_adapter
*adap
, struct cec_msg
*msg
)
1762 return cec_feature_abort_reason(adap
, msg
,
1763 CEC_OP_ABORT_REFUSED
);
1767 * Called when a CEC message is received. This function will do any
1768 * necessary core processing. The is_reply bool is true if this message
1769 * is a reply to an earlier transmit.
1771 * The message is either a broadcast message or a valid directed message.
1773 static int cec_receive_notify(struct cec_adapter
*adap
, struct cec_msg
*msg
,
1776 bool is_broadcast
= cec_msg_is_broadcast(msg
);
1777 u8 dest_laddr
= cec_msg_destination(msg
);
1778 u8 init_laddr
= cec_msg_initiator(msg
);
1779 u8 devtype
= cec_log_addr2dev(adap
, dest_laddr
);
1780 int la_idx
= cec_log_addr2idx(adap
, dest_laddr
);
1781 bool from_unregistered
= init_laddr
== 0xf;
1782 struct cec_msg tx_cec_msg
= { };
1784 dprintk(2, "%s: %*ph\n", __func__
, msg
->len
, msg
->msg
);
1786 /* If this is a CDC-Only device, then ignore any non-CDC messages */
1787 if (cec_is_cdc_only(&adap
->log_addrs
) &&
1788 msg
->msg
[1] != CEC_MSG_CDC_MESSAGE
)
1791 if (adap
->ops
->received
) {
1792 /* Allow drivers to process the message first */
1793 if (adap
->ops
->received(adap
, msg
) != -ENOMSG
)
1798 * REPORT_PHYSICAL_ADDR, CEC_MSG_USER_CONTROL_PRESSED and
1799 * CEC_MSG_USER_CONTROL_RELEASED messages always have to be
1800 * handled by the CEC core, even if the passthrough mode is on.
1801 * The others are just ignored if passthrough mode is on.
1803 switch (msg
->msg
[1]) {
1804 case CEC_MSG_GET_CEC_VERSION
:
1806 case CEC_MSG_GIVE_DEVICE_POWER_STATUS
:
1807 case CEC_MSG_GIVE_OSD_NAME
:
1809 * These messages reply with a directed message, so ignore if
1810 * the initiator is Unregistered.
1812 if (!adap
->passthrough
&& from_unregistered
)
1815 case CEC_MSG_GIVE_DEVICE_VENDOR_ID
:
1816 case CEC_MSG_GIVE_FEATURES
:
1817 case CEC_MSG_GIVE_PHYSICAL_ADDR
:
1819 * Skip processing these messages if the passthrough mode
1822 if (adap
->passthrough
)
1823 goto skip_processing
;
1824 /* Ignore if addressing is wrong */
1829 case CEC_MSG_USER_CONTROL_PRESSED
:
1830 case CEC_MSG_USER_CONTROL_RELEASED
:
1831 /* Wrong addressing mode: don't process */
1832 if (is_broadcast
|| from_unregistered
)
1833 goto skip_processing
;
1836 case CEC_MSG_REPORT_PHYSICAL_ADDR
:
1838 * This message is always processed, regardless of the
1839 * passthrough setting.
1841 * Exception: don't process if wrong addressing mode.
1844 goto skip_processing
;
1851 cec_msg_set_reply_to(&tx_cec_msg
, msg
);
1853 switch (msg
->msg
[1]) {
1854 /* The following messages are processed but still passed through */
1855 case CEC_MSG_REPORT_PHYSICAL_ADDR
: {
1856 u16 pa
= (msg
->msg
[2] << 8) | msg
->msg
[3];
1858 if (!from_unregistered
)
1859 adap
->phys_addrs
[init_laddr
] = pa
;
1860 dprintk(1, "reported physical address %x.%x.%x.%x for logical address %d\n",
1861 cec_phys_addr_exp(pa
), init_laddr
);
1865 case CEC_MSG_USER_CONTROL_PRESSED
:
1866 if (!(adap
->capabilities
& CEC_CAP_RC
) ||
1867 !(adap
->log_addrs
.flags
& CEC_LOG_ADDRS_FL_ALLOW_RC_PASSTHRU
))
1870 #ifdef CONFIG_MEDIA_CEC_RC
1871 switch (msg
->msg
[2]) {
1873 * Play function, this message can have variable length
1874 * depending on the specific play function that is used.
1878 rc_keydown(adap
->rc
, RC_PROTO_CEC
,
1881 rc_keydown(adap
->rc
, RC_PROTO_CEC
,
1882 msg
->msg
[2] << 8 | msg
->msg
[3], 0);
1885 * Other function messages that are not handled.
1886 * Currently the RC framework does not allow to supply an
1887 * additional parameter to a keypress. These "keys" contain
1888 * other information such as channel number, an input number
1890 * For the time being these messages are not processed by the
1891 * framework and are simply forwarded to the user space.
1893 case 0x56: case 0x57:
1894 case 0x67: case 0x68: case 0x69: case 0x6a:
1897 rc_keydown(adap
->rc
, RC_PROTO_CEC
, msg
->msg
[2], 0);
1903 case CEC_MSG_USER_CONTROL_RELEASED
:
1904 if (!(adap
->capabilities
& CEC_CAP_RC
) ||
1905 !(adap
->log_addrs
.flags
& CEC_LOG_ADDRS_FL_ALLOW_RC_PASSTHRU
))
1907 #ifdef CONFIG_MEDIA_CEC_RC
1913 * The remaining messages are only processed if the passthrough mode
1916 case CEC_MSG_GET_CEC_VERSION
:
1917 cec_msg_cec_version(&tx_cec_msg
, adap
->log_addrs
.cec_version
);
1918 return cec_transmit_msg(adap
, &tx_cec_msg
, false);
1920 case CEC_MSG_GIVE_PHYSICAL_ADDR
:
1921 /* Do nothing for CEC switches using addr 15 */
1922 if (devtype
== CEC_OP_PRIM_DEVTYPE_SWITCH
&& dest_laddr
== 15)
1924 cec_msg_report_physical_addr(&tx_cec_msg
, adap
->phys_addr
, devtype
);
1925 return cec_transmit_msg(adap
, &tx_cec_msg
, false);
1927 case CEC_MSG_GIVE_DEVICE_VENDOR_ID
:
1928 if (adap
->log_addrs
.vendor_id
== CEC_VENDOR_ID_NONE
)
1929 return cec_feature_abort(adap
, msg
);
1930 cec_msg_device_vendor_id(&tx_cec_msg
, adap
->log_addrs
.vendor_id
);
1931 return cec_transmit_msg(adap
, &tx_cec_msg
, false);
1934 /* Do nothing for CEC switches */
1935 if (devtype
== CEC_OP_PRIM_DEVTYPE_SWITCH
)
1937 return cec_feature_refused(adap
, msg
);
1939 case CEC_MSG_GIVE_OSD_NAME
: {
1940 if (adap
->log_addrs
.osd_name
[0] == 0)
1941 return cec_feature_abort(adap
, msg
);
1942 cec_msg_set_osd_name(&tx_cec_msg
, adap
->log_addrs
.osd_name
);
1943 return cec_transmit_msg(adap
, &tx_cec_msg
, false);
1946 case CEC_MSG_GIVE_FEATURES
:
1947 if (adap
->log_addrs
.cec_version
< CEC_OP_CEC_VERSION_2_0
)
1948 return cec_feature_abort(adap
, msg
);
1949 cec_fill_msg_report_features(adap
, &tx_cec_msg
, la_idx
);
1950 return cec_transmit_msg(adap
, &tx_cec_msg
, false);
1954 * Unprocessed messages are aborted if userspace isn't doing
1955 * any processing either.
1957 if (!is_broadcast
&& !is_reply
&& !adap
->follower_cnt
&&
1958 !adap
->cec_follower
&& msg
->msg
[1] != CEC_MSG_FEATURE_ABORT
)
1959 return cec_feature_abort(adap
, msg
);
1964 /* If this was a reply, then we're done, unless otherwise specified */
1965 if (is_reply
&& !(msg
->flags
& CEC_MSG_FL_REPLY_TO_FOLLOWERS
))
1969 * Send to the exclusive follower if there is one, otherwise send
1972 if (adap
->cec_follower
)
1973 cec_queue_msg_fh(adap
->cec_follower
, msg
);
1975 cec_queue_msg_followers(adap
, msg
);
1980 * Helper functions to keep track of the 'monitor all' use count.
1982 * These functions are called with adap->lock held.
1984 int cec_monitor_all_cnt_inc(struct cec_adapter
*adap
)
1988 if (adap
->monitor_all_cnt
== 0)
1989 ret
= call_op(adap
, adap_monitor_all_enable
, 1);
1991 adap
->monitor_all_cnt
++;
1995 void cec_monitor_all_cnt_dec(struct cec_adapter
*adap
)
1997 adap
->monitor_all_cnt
--;
1998 if (adap
->monitor_all_cnt
== 0)
1999 WARN_ON(call_op(adap
, adap_monitor_all_enable
, 0));
2003 * Helper functions to keep track of the 'monitor pin' use count.
2005 * These functions are called with adap->lock held.
2007 int cec_monitor_pin_cnt_inc(struct cec_adapter
*adap
)
2011 if (adap
->monitor_pin_cnt
== 0)
2012 ret
= call_op(adap
, adap_monitor_pin_enable
, 1);
2014 adap
->monitor_pin_cnt
++;
2018 void cec_monitor_pin_cnt_dec(struct cec_adapter
*adap
)
2020 adap
->monitor_pin_cnt
--;
2021 if (adap
->monitor_pin_cnt
== 0)
2022 WARN_ON(call_op(adap
, adap_monitor_pin_enable
, 0));
2025 #ifdef CONFIG_DEBUG_FS
2027 * Log the current state of the CEC adapter.
2028 * Very useful for debugging.
2030 int cec_adap_status(struct seq_file
*file
, void *priv
)
2032 struct cec_adapter
*adap
= dev_get_drvdata(file
->private);
2033 struct cec_data
*data
;
2035 mutex_lock(&adap
->lock
);
2036 seq_printf(file
, "configured: %d\n", adap
->is_configured
);
2037 seq_printf(file
, "configuring: %d\n", adap
->is_configuring
);
2038 seq_printf(file
, "phys_addr: %x.%x.%x.%x\n",
2039 cec_phys_addr_exp(adap
->phys_addr
));
2040 seq_printf(file
, "number of LAs: %d\n", adap
->log_addrs
.num_log_addrs
);
2041 seq_printf(file
, "LA mask: 0x%04x\n", adap
->log_addrs
.log_addr_mask
);
2042 if (adap
->cec_follower
)
2043 seq_printf(file
, "has CEC follower%s\n",
2044 adap
->passthrough
? " (in passthrough mode)" : "");
2045 if (adap
->cec_initiator
)
2046 seq_puts(file
, "has CEC initiator\n");
2047 if (adap
->monitor_all_cnt
)
2048 seq_printf(file
, "file handles in Monitor All mode: %u\n",
2049 adap
->monitor_all_cnt
);
2050 if (adap
->tx_timeouts
) {
2051 seq_printf(file
, "transmit timeouts: %u\n",
2053 adap
->tx_timeouts
= 0;
2055 data
= adap
->transmitting
;
2057 seq_printf(file
, "transmitting message: %*ph (reply: %02x, timeout: %ums)\n",
2058 data
->msg
.len
, data
->msg
.msg
, data
->msg
.reply
,
2060 seq_printf(file
, "pending transmits: %u\n", adap
->transmit_queue_sz
);
2061 list_for_each_entry(data
, &adap
->transmit_queue
, list
) {
2062 seq_printf(file
, "queued tx message: %*ph (reply: %02x, timeout: %ums)\n",
2063 data
->msg
.len
, data
->msg
.msg
, data
->msg
.reply
,
2066 list_for_each_entry(data
, &adap
->wait_queue
, list
) {
2067 seq_printf(file
, "message waiting for reply: %*ph (reply: %02x, timeout: %ums)\n",
2068 data
->msg
.len
, data
->msg
.msg
, data
->msg
.reply
,
2072 call_void_op(adap
, adap_status
, file
);
2073 mutex_unlock(&adap
->lock
);