blob: 766d8b0ce43166f298eeab2c90d038d39eb66dda [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
Mauro Carvalho Chehab99547832016-08-19 16:58:14 -030018.. c:function:: int ioctl( int fd, CEC_DQEVENT, struct cec_event *argp )
19 :name: CEC_DQEVENT
Markus Heisere2460b12016-07-08 20:55:42 +020020
21Arguments
22=========
23
24``fd``
Hans Verkuilcfaf3842017-07-28 06:31:50 -040025 File descriptor returned by :c:func:`open() <cec-open>`.
Markus Heisere2460b12016-07-08 20:55:42 +020026
Markus Heisere2460b12016-07-08 20:55:42 +020027``argp``
28
29
30Description
31===========
32
Markus Heisere2460b12016-07-08 20:55:42 +020033CEC devices can send asynchronous events. These can be retrieved by
Markus Heiser9cd34762016-08-15 16:08:28 +020034calling :c:func:`CEC_DQEVENT`. If the file descriptor is in
Markus Heisere2460b12016-07-08 20:55:42 +020035non-blocking mode and no event is pending, then it will return -1 and
Hans Verkuile5208ed2016-07-19 06:26:13 -030036set errno to the ``EAGAIN`` error code.
Markus Heisere2460b12016-07-08 20:55:42 +020037
38The internal event queues are per-filehandle and per-event type. If
39there is no more room in a queue then the last event is overwritten with
40the new one. This means that intermediate results can be thrown away but
41that the latest event is always available. This also means that is it
42possible to read two successive events that have the same value (e.g.
Mauro Carvalho Chehabcc0fe5c2016-07-13 10:22:38 -030043two :ref:`CEC_EVENT_STATE_CHANGE <CEC-EVENT-STATE-CHANGE>` events with
44the same state). In that case the intermediate state changes were lost but
45it is guaranteed that the state did change in between the two events.
Markus Heisere2460b12016-07-08 20:55:42 +020046
Mauro Carvalho Chehabfa92b04d2016-08-19 11:14:23 -030047.. tabularcolumns:: |p{1.2cm}|p{2.9cm}|p{13.4cm}|
Markus Heisere2460b12016-07-08 20:55:42 +020048
Mauro Carvalho Chehab94d71e52016-08-29 19:45:57 -030049.. c:type:: cec_event_state_change
Markus Heisere2460b12016-07-08 20:55:42 +020050
51.. flat-table:: struct cec_event_state_change
52 :header-rows: 0
53 :stub-columns: 0
Mauro Carvalho Chehabb2a58432016-07-08 17:59:27 -030054 :widths: 1 1 8
Markus Heisere2460b12016-07-08 20:55:42 +020055
Hans Verkuil77edf602016-11-01 07:41:17 -020056 * - __u16
57 - ``phys_addr``
58 - The current physical address. This is ``CEC_PHYS_ADDR_INVALID`` if no
Hans Verkuilb94dffd2017-02-27 10:14:55 -030059 valid physical address is set.
Hans Verkuil77edf602016-11-01 07:41:17 -020060 * - __u16
61 - ``log_addr_mask``
62 - The current set of claimed logical addresses. This is 0 if no logical
63 addresses are claimed or if ``phys_addr`` is ``CEC_PHYS_ADDR_INVALID``.
64 If bit 15 is set (``1 << CEC_LOG_ADDR_UNREGISTERED``) then this device
65 has the unregistered logical address. In that case all other bits are 0.
Markus Heisere2460b12016-07-08 20:55:42 +020066
67
Mauro Carvalho Chehab94d71e52016-08-29 19:45:57 -030068.. c:type:: cec_event_lost_msgs
Markus Heisere2460b12016-07-08 20:55:42 +020069
Mauro Carvalho Chehab9fce0c22016-10-05 16:42:36 -030070.. tabularcolumns:: |p{1.0cm}|p{2.0cm}|p{14.5cm}|
Markus Heisere2460b12016-07-08 20:55:42 +020071
72.. flat-table:: struct cec_event_lost_msgs
73 :header-rows: 0
74 :stub-columns: 0
Mauro Carvalho Chehabb2a58432016-07-08 17:59:27 -030075 :widths: 1 1 16
Markus Heisere2460b12016-07-08 20:55:42 +020076
Hans Verkuil77edf602016-11-01 07:41:17 -020077 * - __u32
78 - ``lost_msgs``
79 - Set to the number of lost messages since the filehandle was opened
80 or since the last time this event was dequeued for this
81 filehandle. The messages lost are the oldest messages. So when a
82 new message arrives and there is no more room, then the oldest
83 message is discarded to make room for the new one. The internal
84 size of the message queue guarantees that all messages received in
85 the last two seconds will be stored. Since messages should be
86 replied to within a second according to the CEC specification,
87 this is more than enough.
Markus Heisere2460b12016-07-08 20:55:42 +020088
89
Mauro Carvalho Chehabfa92b04d2016-08-19 11:14:23 -030090.. tabularcolumns:: |p{1.0cm}|p{4.2cm}|p{2.5cm}|p{8.8cm}|
Markus Heisere2460b12016-07-08 20:55:42 +020091
Mauro Carvalho Chehabe8be7e92016-08-29 17:37:59 -030092.. c:type:: cec_event
Markus Heisere2460b12016-07-08 20:55:42 +020093
94.. flat-table:: struct cec_event
95 :header-rows: 0
96 :stub-columns: 0
Mauro Carvalho Chehabb2a58432016-07-08 17:59:27 -030097 :widths: 1 1 1 8
Markus Heisere2460b12016-07-08 20:55:42 +020098
Hans Verkuil77edf602016-11-01 07:41:17 -020099 * - __u64
100 - ``ts``
101 - :cspan:`1` Timestamp of the event in ns.
Markus Heisere2460b12016-07-08 20:55:42 +0200102
Hans Verkuil77edf602016-11-01 07:41:17 -0200103 The timestamp has been taken from the ``CLOCK_MONOTONIC`` clock. To access
104 the same clock from userspace use :c:func:`clock_gettime`.
105 * - __u32
106 - ``event``
107 - :cspan:`1` The CEC event type, see :ref:`cec-events`.
108 * - __u32
109 - ``flags``
110 - :cspan:`1` Event flags, see :ref:`cec-event-flags`.
111 * - union
112 - (anonymous)
113 -
114 -
115 * -
116 - struct cec_event_state_change
117 - ``state_change``
118 - The new adapter state as sent by the :ref:`CEC_EVENT_STATE_CHANGE <CEC-EVENT-STATE-CHANGE>`
119 event.
120 * -
121 - struct cec_event_lost_msgs
122 - ``lost_msgs``
123 - The number of lost messages as sent by the :ref:`CEC_EVENT_LOST_MSGS <CEC-EVENT-LOST-MSGS>`
124 event.
Markus Heisere2460b12016-07-08 20:55:42 +0200125
126
Mauro Carvalho Chehabfa92b04d2016-08-19 11:14:23 -0300127.. tabularcolumns:: |p{5.6cm}|p{0.9cm}|p{11.0cm}|
Markus Heisere2460b12016-07-08 20:55:42 +0200128
129.. _cec-events:
130
131.. flat-table:: CEC Events Types
132 :header-rows: 0
133 :stub-columns: 0
Mauro Carvalho Chehabb2a58432016-07-08 17:59:27 -0300134 :widths: 3 1 16
Markus Heisere2460b12016-07-08 20:55:42 +0200135
Hans Verkuil77edf602016-11-01 07:41:17 -0200136 * .. _`CEC-EVENT-STATE-CHANGE`:
Markus Heisere2460b12016-07-08 20:55:42 +0200137
Hans Verkuil77edf602016-11-01 07:41:17 -0200138 - ``CEC_EVENT_STATE_CHANGE``
139 - 1
140 - Generated when the CEC Adapter's state changes. When open() is
141 called an initial event will be generated for that filehandle with
142 the CEC Adapter's state at that time.
143 * .. _`CEC-EVENT-LOST-MSGS`:
Markus Heisere2460b12016-07-08 20:55:42 +0200144
Hans Verkuil77edf602016-11-01 07:41:17 -0200145 - ``CEC_EVENT_LOST_MSGS``
146 - 2
147 - Generated if one or more CEC messages were lost because the
148 application didn't dequeue CEC messages fast enough.
Hans Verkuilfdb8c882017-07-11 03:30:40 -0300149 * .. _`CEC-EVENT-PIN-LOW`:
150
151 - ``CEC_EVENT_PIN_LOW``
152 - 3
153 - Generated if the CEC pin goes from a high voltage to a low voltage.
154 Only applies to adapters that have the ``CEC_CAP_MONITOR_PIN``
155 capability set.
156 * .. _`CEC-EVENT-PIN-HIGH`:
157
158 - ``CEC_EVENT_PIN_HIGH``
159 - 4
160 - Generated if the CEC pin goes from a low voltage to a high voltage.
161 Only applies to adapters that have the ``CEC_CAP_MONITOR_PIN``
162 capability set.
Markus Heisere2460b12016-07-08 20:55:42 +0200163
164
Mauro Carvalho Chehabfa92b04d2016-08-19 11:14:23 -0300165.. tabularcolumns:: |p{6.0cm}|p{0.6cm}|p{10.9cm}|
Markus Heisere2460b12016-07-08 20:55:42 +0200166
167.. _cec-event-flags:
168
169.. flat-table:: CEC Event Flags
170 :header-rows: 0
171 :stub-columns: 0
Mauro Carvalho Chehabb2a58432016-07-08 17:59:27 -0300172 :widths: 3 1 8
Markus Heisere2460b12016-07-08 20:55:42 +0200173
Hans Verkuil77edf602016-11-01 07:41:17 -0200174 * .. _`CEC-EVENT-FL-INITIAL-VALUE`:
Markus Heisere2460b12016-07-08 20:55:42 +0200175
Hans Verkuil77edf602016-11-01 07:41:17 -0200176 - ``CEC_EVENT_FL_INITIAL_VALUE``
177 - 1
178 - Set for the initial events that are generated when the device is
179 opened. See the table above for which events do this. This allows
180 applications to learn the initial state of the CEC adapter at
181 open() time.
Hans Verkuilfdb8c882017-07-11 03:30:40 -0300182 * .. _`CEC-EVENT-FL-DROPPED-EVENTS`:
183
184 - ``CEC_EVENT_FL_DROPPED_EVENTS``
185 - 2
186 - Set if one or more events of the given event type have been dropped.
187 This is an indication that the application cannot keep up.
Markus Heisere2460b12016-07-08 20:55:42 +0200188
189
190
191Return Value
192============
193
194On success 0 is returned, on error -1 and the ``errno`` variable is set
195appropriately. The generic error codes are described at the
196:ref:`Generic Error Codes <gen-errors>` chapter.
Hans Verkuil491314b2017-02-20 17:21:19 -0300197
198The :ref:`ioctl CEC_DQEVENT <CEC_DQEVENT>` can return the following
199error codes:
200
201EAGAIN
202 This is returned when the filehandle is in non-blocking mode and there
203 are no pending events.
204
205ERESTARTSYS
206 An interrupt (e.g. Ctrl-C) arrived while in blocking mode waiting for
207 events to arrive.