blob: 7a6d6d00ce194572f8053008397daa0395ee05dc [file] [log] [blame]
Markus Heisere2460b12016-07-08 20:55:42 +02001.. -*- coding: utf-8; mode: rst -*-
2
Markus Heiser21c62692016-07-08 20:55:43 +02003.. _CEC_DQEVENT:
Markus Heisere2460b12016-07-08 20:55:42 +02004
5*****************
6ioctl CEC_DQEVENT
7*****************
8
Markus Heiser21c62692016-07-08 20:55:43 +02009Name
10====
Markus Heisere2460b12016-07-08 20:55:42 +020011
Markus Heiser21c62692016-07-08 20:55:43 +020012CEC_DQEVENT - Dequeue a CEC event
Markus Heisere2460b12016-07-08 20:55:42 +020013
14
15Synopsis
16========
17
Markus Heiser21c62692016-07-08 20:55:43 +020018.. cpp:function:: int ioctl( int fd, int request, struct cec_event *argp )
Markus Heisere2460b12016-07-08 20:55:42 +020019
20Arguments
21=========
22
23``fd``
24 File descriptor returned by :ref:`open() <cec-func-open>`.
25
26``request``
27 CEC_DQEVENT
28
29``argp``
30
31
32Description
33===========
34
Mauro Carvalho Chehab706f8a92016-07-10 11:57:43 -030035.. note:: This documents the proposed CEC API. This API is not yet finalized
36 and is currently only available as a staging kernel module.
Markus Heisere2460b12016-07-08 20:55:42 +020037
38CEC devices can send asynchronous events. These can be retrieved by
Hans Verkuil1267c602016-07-13 08:48:54 -030039calling :ref:`ioctl CEC_DQEVENT <CEC_DQEVENT>`. If the file descriptor is in
Markus Heisere2460b12016-07-08 20:55:42 +020040non-blocking mode and no event is pending, then it will return -1 and
Hans Verkuile5208ed2016-07-19 06:26:13 -030041set errno to the ``EAGAIN`` error code.
Markus Heisere2460b12016-07-08 20:55:42 +020042
43The internal event queues are per-filehandle and per-event type. If
44there is no more room in a queue then the last event is overwritten with
45the new one. This means that intermediate results can be thrown away but
46that the latest event is always available. This also means that is it
47possible to read two successive events that have the same value (e.g.
Mauro Carvalho Chehabcc0fe5c2016-07-13 10:22:38 -030048two :ref:`CEC_EVENT_STATE_CHANGE <CEC-EVENT-STATE-CHANGE>` events with
49the same state). In that case the intermediate state changes were lost but
50it is guaranteed that the state did change in between the two events.
Markus Heisere2460b12016-07-08 20:55:42 +020051
52
Mauro Carvalho Chehab96f69e02016-07-09 10:25:05 -030053.. _cec-event-state-change_s:
Markus Heisere2460b12016-07-08 20:55:42 +020054
55.. flat-table:: struct cec_event_state_change
56 :header-rows: 0
57 :stub-columns: 0
Mauro Carvalho Chehabb2a58432016-07-08 17:59:27 -030058 :widths: 1 1 8
Markus Heisere2460b12016-07-08 20:55:42 +020059
60
61 - .. row 1
62
63 - __u16
64
65 - ``phys_addr``
66
67 - The current physical address.
68
69 - .. row 2
70
71 - __u16
72
73 - ``log_addr_mask``
74
75 - The current set of claimed logical addresses.
76
77
78
Mauro Carvalho Chehab96f69e02016-07-09 10:25:05 -030079.. _cec-event-lost-msgs_s:
Markus Heisere2460b12016-07-08 20:55:42 +020080
81.. flat-table:: struct cec_event_lost_msgs
82 :header-rows: 0
83 :stub-columns: 0
Mauro Carvalho Chehabb2a58432016-07-08 17:59:27 -030084 :widths: 1 1 16
Markus Heisere2460b12016-07-08 20:55:42 +020085
86
87 - .. row 1
88
89 - __u32
90
91 - ``lost_msgs``
92
93 - Set to the number of lost messages since the filehandle was opened
Mauro Carvalho Chehab706f8a92016-07-10 11:57:43 -030094 or since the last time this event was dequeued for this
95 filehandle. The messages lost are the oldest messages. So when a
96 new message arrives and there is no more room, then the oldest
97 message is discarded to make room for the new one. The internal
98 size of the message queue guarantees that all messages received in
99 the last two seconds will be stored. Since messages should be
100 replied to within a second according to the CEC specification,
101 this is more than enough.
Markus Heisere2460b12016-07-08 20:55:42 +0200102
103
104
105.. _cec-event:
106
107.. flat-table:: struct cec_event
108 :header-rows: 0
109 :stub-columns: 0
Mauro Carvalho Chehabb2a58432016-07-08 17:59:27 -0300110 :widths: 1 1 1 8
Markus Heisere2460b12016-07-08 20:55:42 +0200111
112
113 - .. row 1
114
115 - __u64
116
117 - ``ts``
118
119 - Timestamp of the event in ns.
Hans Verkuile5208ed2016-07-19 06:26:13 -0300120 The timestamp has been taken from the ``CLOCK_MONOTONIC`` clock. To access
121 the same clock from userspace use :c:func:`clock_gettime(2)`.
Markus Heisere2460b12016-07-08 20:55:42 +0200122
123 -
124
125 - .. row 2
126
127 - __u32
128
129 - ``event``
130
131 - The CEC event type, see :ref:`cec-events`.
132
133 -
134
135 - .. row 3
136
137 - __u32
138
139 - ``flags``
140
141 - Event flags, see :ref:`cec-event-flags`.
142
143 -
144
145 - .. row 4
146
147 - union
148
149 - (anonymous)
150
151 -
152 -
153
154 - .. row 5
155
156 -
157 - struct cec_event_state_change
158
159 - ``state_change``
160
Mauro Carvalho Chehab96f69e02016-07-09 10:25:05 -0300161 - The new adapter state as sent by the :ref:`CEC_EVENT_STATE_CHANGE <CEC-EVENT-STATE-CHANGE>`
Mauro Carvalho Chehab706f8a92016-07-10 11:57:43 -0300162 event.
Markus Heisere2460b12016-07-08 20:55:42 +0200163
164 - .. row 6
165
166 -
167 - struct cec_event_lost_msgs
168
169 - ``lost_msgs``
170
Mauro Carvalho Chehab96f69e02016-07-09 10:25:05 -0300171 - The number of lost messages as sent by the :ref:`CEC_EVENT_LOST_MSGS <CEC-EVENT-LOST-MSGS>`
Mauro Carvalho Chehab706f8a92016-07-10 11:57:43 -0300172 event.
Markus Heisere2460b12016-07-08 20:55:42 +0200173
174
175
176.. _cec-events:
177
178.. flat-table:: CEC Events Types
179 :header-rows: 0
180 :stub-columns: 0
Mauro Carvalho Chehabb2a58432016-07-08 17:59:27 -0300181 :widths: 3 1 16
Markus Heisere2460b12016-07-08 20:55:42 +0200182
183
Mauro Carvalho Chehab96f69e02016-07-09 10:25:05 -0300184 - .. _`CEC-EVENT-STATE-CHANGE`:
Markus Heisere2460b12016-07-08 20:55:42 +0200185
186 - ``CEC_EVENT_STATE_CHANGE``
187
188 - 1
189
190 - Generated when the CEC Adapter's state changes. When open() is
Mauro Carvalho Chehab706f8a92016-07-10 11:57:43 -0300191 called an initial event will be generated for that filehandle with
192 the CEC Adapter's state at that time.
Markus Heisere2460b12016-07-08 20:55:42 +0200193
Mauro Carvalho Chehab96f69e02016-07-09 10:25:05 -0300194 - .. _`CEC-EVENT-LOST-MSGS`:
Markus Heisere2460b12016-07-08 20:55:42 +0200195
196 - ``CEC_EVENT_LOST_MSGS``
197
198 - 2
199
200 - Generated if one or more CEC messages were lost because the
Mauro Carvalho Chehab706f8a92016-07-10 11:57:43 -0300201 application didn't dequeue CEC messages fast enough.
Markus Heisere2460b12016-07-08 20:55:42 +0200202
203
204
205.. _cec-event-flags:
206
207.. flat-table:: CEC Event Flags
208 :header-rows: 0
209 :stub-columns: 0
Mauro Carvalho Chehabb2a58432016-07-08 17:59:27 -0300210 :widths: 3 1 8
Markus Heisere2460b12016-07-08 20:55:42 +0200211
212
Mauro Carvalho Chehab96f69e02016-07-09 10:25:05 -0300213 - .. _`CEC-EVENT-FL-INITIAL-VALUE`:
Markus Heisere2460b12016-07-08 20:55:42 +0200214
215 - ``CEC_EVENT_FL_INITIAL_VALUE``
216
217 - 1
218
219 - Set for the initial events that are generated when the device is
Mauro Carvalho Chehab706f8a92016-07-10 11:57:43 -0300220 opened. See the table above for which events do this. This allows
221 applications to learn the initial state of the CEC adapter at
222 open() time.
Markus Heisere2460b12016-07-08 20:55:42 +0200223
224
225
226Return Value
227============
228
229On success 0 is returned, on error -1 and the ``errno`` variable is set
230appropriately. The generic error codes are described at the
231:ref:`Generic Error Codes <gen-errors>` chapter.