blob: 81c6d8e93774a89bd4d1d745b512ea41e7d1a513 [file] [log] [blame]
Hans Verkuilefe29382015-05-04 14:32:59 -03001CEC Kernel Support
2==================
3
4The CEC framework provides a unified kernel interface for use with HDMI CEC
5hardware. It is designed to handle a multiple types of hardware (receivers,
6transmitters, USB dongles). The framework also gives the option to decide
7what to do in the kernel driver and what should be handled by userspace
8applications. In addition it integrates the remote control passthrough
9feature into the kernel's remote control framework.
10
11
12The CEC Protocol
13----------------
14
15The CEC protocol enables consumer electronic devices to communicate with each
16other through the HDMI connection. The protocol uses logical addresses in the
17communication. The logical address is strictly connected with the functionality
18provided by the device. The TV acting as the communication hub is always
19assigned address 0. The physical address is determined by the physical
20connection between devices.
21
22The CEC framework described here is up to date with the CEC 2.0 specification.
23It is documented in the HDMI 1.4 specification with the new 2.0 bits documented
24in the HDMI 2.0 specification. But for most of the features the freely available
25HDMI 1.3a specification is sufficient:
26
27http://www.microprocessor.org/HDMISpecification13a.pdf
28
29
30The Kernel Interface
31====================
32
33CEC Adapter
34-----------
35
36The struct cec_adapter represents the CEC adapter hardware. It is created by
37calling cec_allocate_adapter() and deleted by calling cec_delete_adapter():
38
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -030039.. c:function::
Hans Verkuilf51e8082016-11-25 06:23:34 -020040 struct cec_adapter *cec_allocate_adapter(const struct cec_adap_ops *ops, void *priv,
41 const char *name, u32 caps, u8 available_las);
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -030042
43.. c:function::
44 void cec_delete_adapter(struct cec_adapter *adap);
Hans Verkuilefe29382015-05-04 14:32:59 -030045
46To create an adapter you need to pass the following information:
47
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -030048ops:
49 adapter operations which are called by the CEC framework and that you
50 have to implement.
Hans Verkuilefe29382015-05-04 14:32:59 -030051
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -030052priv:
53 will be stored in adap->priv and can be used by the adapter ops.
Hans Verkuilefe29382015-05-04 14:32:59 -030054
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -030055name:
56 the name of the CEC adapter. Note: this name will be copied.
Hans Verkuilefe29382015-05-04 14:32:59 -030057
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -030058caps:
59 capabilities of the CEC adapter. These capabilities determine the
Hans Verkuilefe29382015-05-04 14:32:59 -030060 capabilities of the hardware and which parts are to be handled
61 by userspace and which parts are handled by kernelspace. The
62 capabilities are returned by CEC_ADAP_G_CAPS.
63
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -030064available_las:
65 the number of simultaneous logical addresses that this
Hans Verkuilefe29382015-05-04 14:32:59 -030066 adapter can handle. Must be 1 <= available_las <= CEC_MAX_LOG_ADDRS.
67
Hans Verkuilefe29382015-05-04 14:32:59 -030068
69To register the /dev/cecX device node and the remote control device (if
70CEC_CAP_RC is set) you call:
71
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -030072.. c:function::
Hans Verkuilf51e8082016-11-25 06:23:34 -020073 int cec_register_adapter(struct cec_adapter *adap, struct device *parent);
74
75where parent is the parent device.
Hans Verkuilefe29382015-05-04 14:32:59 -030076
77To unregister the devices call:
78
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -030079.. c:function::
Hans Verkuilf51e8082016-11-25 06:23:34 -020080 void cec_unregister_adapter(struct cec_adapter *adap);
Hans Verkuilefe29382015-05-04 14:32:59 -030081
82Note: if cec_register_adapter() fails, then call cec_delete_adapter() to
83clean up. But if cec_register_adapter() succeeded, then only call
84cec_unregister_adapter() to clean up, never cec_delete_adapter(). The
85unregister function will delete the adapter automatically once the last user
86of that /dev/cecX device has closed its file handle.
87
88
89Implementing the Low-Level CEC Adapter
90--------------------------------------
91
92The following low-level adapter operations have to be implemented in
93your driver:
94
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -030095.. c:type:: struct cec_adap_ops
Hans Verkuilefe29382015-05-04 14:32:59 -030096
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -030097.. code-block:: none
98
99 struct cec_adap_ops
100 {
101 /* Low-level callbacks */
102 int (*adap_enable)(struct cec_adapter *adap, bool enable);
103 int (*adap_monitor_all_enable)(struct cec_adapter *adap, bool enable);
104 int (*adap_log_addr)(struct cec_adapter *adap, u8 logical_addr);
105 int (*adap_transmit)(struct cec_adapter *adap, u8 attempts,
106 u32 signal_free_time, struct cec_msg *msg);
Hans Verkuile92ca732016-11-09 06:00:53 -0200107 void (*adap_status)(struct cec_adapter *adap, struct seq_file *file);
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300108
109 /* High-level callbacks */
110 ...
111 };
Hans Verkuilefe29382015-05-04 14:32:59 -0300112
Hans Verkuile92ca732016-11-09 06:00:53 -0200113The five low-level ops deal with various aspects of controlling the CEC adapter
Hans Verkuilefe29382015-05-04 14:32:59 -0300114hardware:
115
116
117To enable/disable the hardware:
118
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300119.. c:function::
Hans Verkuilefe29382015-05-04 14:32:59 -0300120 int (*adap_enable)(struct cec_adapter *adap, bool enable);
121
122This callback enables or disables the CEC hardware. Enabling the CEC hardware
123means powering it up in a state where no logical addresses are claimed. This
124op assumes that the physical address (adap->phys_addr) is valid when enable is
125true and will not change while the CEC adapter remains enabled. The initial
126state of the CEC adapter after calling cec_allocate_adapter() is disabled.
127
128Note that adap_enable must return 0 if enable is false.
129
130
131To enable/disable the 'monitor all' mode:
132
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300133.. c:function::
Hans Verkuilefe29382015-05-04 14:32:59 -0300134 int (*adap_monitor_all_enable)(struct cec_adapter *adap, bool enable);
135
136If enabled, then the adapter should be put in a mode to also monitor messages
137that not for us. Not all hardware supports this and this function is only
138called if the CEC_CAP_MONITOR_ALL capability is set. This callback is optional
139(some hardware may always be in 'monitor all' mode).
140
141Note that adap_monitor_all_enable must return 0 if enable is false.
142
143
144To program a new logical address:
145
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300146.. c:function::
Hans Verkuilefe29382015-05-04 14:32:59 -0300147 int (*adap_log_addr)(struct cec_adapter *adap, u8 logical_addr);
148
149If logical_addr == CEC_LOG_ADDR_INVALID then all programmed logical addresses
150are to be erased. Otherwise the given logical address should be programmed.
151If the maximum number of available logical addresses is exceeded, then it
152should return -ENXIO. Once a logical address is programmed the CEC hardware
153can receive directed messages to that address.
154
155Note that adap_log_addr must return 0 if logical_addr is CEC_LOG_ADDR_INVALID.
156
157
158To transmit a new message:
159
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300160.. c:function::
Hans Verkuilefe29382015-05-04 14:32:59 -0300161 int (*adap_transmit)(struct cec_adapter *adap, u8 attempts,
162 u32 signal_free_time, struct cec_msg *msg);
163
164This transmits a new message. The attempts argument is the suggested number of
165attempts for the transmit.
166
167The signal_free_time is the number of data bit periods that the adapter should
168wait when the line is free before attempting to send a message. This value
169depends on whether this transmit is a retry, a message from a new initiator or
170a new message for the same initiator. Most hardware will handle this
171automatically, but in some cases this information is needed.
172
173The CEC_FREE_TIME_TO_USEC macro can be used to convert signal_free_time to
174microseconds (one data bit period is 2.4 ms).
175
176
177To log the current CEC hardware status:
178
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300179.. c:function::
Hans Verkuilefe29382015-05-04 14:32:59 -0300180 void (*adap_status)(struct cec_adapter *adap, struct seq_file *file);
181
182This optional callback can be used to show the status of the CEC hardware.
183The status is available through debugfs: cat /sys/kernel/debug/cec/cecX/status
184
185
186Your adapter driver will also have to react to events (typically interrupt
187driven) by calling into the framework in the following situations:
188
189When a transmit finished (successfully or otherwise):
190
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300191.. c:function::
192 void cec_transmit_done(struct cec_adapter *adap, u8 status, u8 arb_lost_cnt,
Hans Verkuilefe29382015-05-04 14:32:59 -0300193 u8 nack_cnt, u8 low_drive_cnt, u8 error_cnt);
194
195The status can be one of:
196
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300197CEC_TX_STATUS_OK:
198 the transmit was successful.
Hans Verkuilefe29382015-05-04 14:32:59 -0300199
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300200CEC_TX_STATUS_ARB_LOST:
201 arbitration was lost: another CEC initiator
202 took control of the CEC line and you lost the arbitration.
203
204CEC_TX_STATUS_NACK:
205 the message was nacked (for a directed message) or
206 acked (for a broadcast message). A retransmission is needed.
207
208CEC_TX_STATUS_LOW_DRIVE:
209 low drive was detected on the CEC bus. This indicates that
210 a follower detected an error on the bus and requested a
211 retransmission.
212
213CEC_TX_STATUS_ERROR:
214 some unspecified error occurred: this can be one of
215 the previous two if the hardware cannot differentiate or something
216 else entirely.
217
218CEC_TX_STATUS_MAX_RETRIES:
219 could not transmit the message after trying multiple times.
220 Should only be set by the driver if it has hardware support for
221 retrying messages. If set, then the framework assumes that it
222 doesn't have to make another attempt to transmit the message
223 since the hardware did that already.
224
225The \*_cnt arguments are the number of error conditions that were seen.
Hans Verkuilefe29382015-05-04 14:32:59 -0300226This may be 0 if no information is available. Drivers that do not support
227hardware retry can just set the counter corresponding to the transmit error
228to 1, if the hardware does support retry then either set these counters to
2290 if the hardware provides no feedback of which errors occurred and how many
230times, or fill in the correct values as reported by the hardware.
231
232When a CEC message was received:
233
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300234.. c:function::
235 void cec_received_msg(struct cec_adapter *adap, struct cec_msg *msg);
Hans Verkuilefe29382015-05-04 14:32:59 -0300236
237Speaks for itself.
238
Hans Verkuile92ca732016-11-09 06:00:53 -0200239Implementing the interrupt handler
240----------------------------------
241
242Typically the CEC hardware provides interrupts that signal when a transmit
243finished and whether it was successful or not, and it provides and interrupt
244when a CEC message was received.
245
246The CEC driver should always process the transmit interrupts first before
247handling the receive interrupt. The framework expects to see the cec_transmit_done
248call before the cec_received_msg call, otherwise it can get confused if the
249received message was in reply to the transmitted message.
250
Hans Verkuilefe29382015-05-04 14:32:59 -0300251Implementing the High-Level CEC Adapter
252---------------------------------------
253
254The low-level operations drive the hardware, the high-level operations are
255CEC protocol driven. The following high-level callbacks are available:
256
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300257.. code-block:: none
Hans Verkuilefe29382015-05-04 14:32:59 -0300258
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300259 struct cec_adap_ops {
Hans Verkuile92ca732016-11-09 06:00:53 -0200260 /* Low-level callbacks */
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300261 ...
262
Hans Verkuile92ca732016-11-09 06:00:53 -0200263 /* High-level CEC message callback */
264 int (*received)(struct cec_adapter *adap, struct cec_msg *msg);
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300265 };
Hans Verkuilefe29382015-05-04 14:32:59 -0300266
267The received() callback allows the driver to optionally handle a newly
268received CEC message
269
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300270.. c:function::
Hans Verkuilefe29382015-05-04 14:32:59 -0300271 int (*received)(struct cec_adapter *adap, struct cec_msg *msg);
272
273If the driver wants to process a CEC message, then it can implement this
274callback. If it doesn't want to handle this message, then it should return
275-ENOMSG, otherwise the CEC framework assumes it processed this message and
Hans Verkuile92ca732016-11-09 06:00:53 -0200276it will not do anything with it.
Hans Verkuilefe29382015-05-04 14:32:59 -0300277
278
279CEC framework functions
280-----------------------
281
282CEC Adapter drivers can call the following CEC framework functions:
283
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300284.. c:function::
285 int cec_transmit_msg(struct cec_adapter *adap, struct cec_msg *msg,
286 bool block);
Hans Verkuilefe29382015-05-04 14:32:59 -0300287
288Transmit a CEC message. If block is true, then wait until the message has been
289transmitted, otherwise just queue it and return.
290
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300291.. c:function::
292 void cec_s_phys_addr(struct cec_adapter *adap, u16 phys_addr,
293 bool block);
Hans Verkuilefe29382015-05-04 14:32:59 -0300294
295Change the physical address. This function will set adap->phys_addr and
296send an event if it has changed. If cec_s_log_addrs() has been called and
297the physical address has become valid, then the CEC framework will start
298claiming the logical addresses. If block is true, then this function won't
299return until this process has finished.
300
301When the physical address is set to a valid value the CEC adapter will
302be enabled (see the adap_enable op). When it is set to CEC_PHYS_ADDR_INVALID,
303then the CEC adapter will be disabled. If you change a valid physical address
304to another valid physical address, then this function will first set the
305address to CEC_PHYS_ADDR_INVALID before enabling the new physical address.
306
Mauro Carvalho Chehab9486f2b2016-08-19 08:46:13 -0300307.. c:function::
308 int cec_s_log_addrs(struct cec_adapter *adap,
309 struct cec_log_addrs *log_addrs, bool block);
Hans Verkuilefe29382015-05-04 14:32:59 -0300310
311Claim the CEC logical addresses. Should never be called if CEC_CAP_LOG_ADDRS
312is set. If block is true, then wait until the logical addresses have been
313claimed, otherwise just queue it and return. To unconfigure all logical
314addresses call this function with log_addrs set to NULL or with
315log_addrs->num_log_addrs set to 0. The block argument is ignored when
316unconfiguring. This function will just return if the physical address is
317invalid. Once the physical address becomes valid, then the framework will
318attempt to claim these logical addresses.