cec-ioc-dqevent.rst 4.66 KB
Newer Older
1 2
.. -*- coding: utf-8; mode: rst -*-

3
.. _CEC_DQEVENT:
4 5 6 7 8

*****************
ioctl CEC_DQEVENT
*****************

9 10
Name
====
11

12
CEC_DQEVENT - Dequeue a CEC event
13 14 15 16 17


Synopsis
========

18
.. cpp:function:: int ioctl( int fd, int request, struct cec_event *argp )
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

Arguments
=========

``fd``
    File descriptor returned by :ref:`open() <cec-func-open>`.

``request``
    CEC_DQEVENT

``argp``


Description
===========

Note: this documents the proposed CEC API. This API is not yet finalized
and is currently only available as a staging kernel module.

CEC devices can send asynchronous events. These can be retrieved by
39
calling the :ref:`CEC_DQEVENT` ioctl. If the file descriptor is in
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
non-blocking mode and no event is pending, then it will return -1 and
set errno to the EAGAIN error code.

The internal event queues are per-filehandle and per-event type. If
there is no more room in a queue then the last event is overwritten with
the new one. This means that intermediate results can be thrown away but
that the latest event is always available. This also means that is it
possible to read two successive events that have the same value (e.g.
two CEC_EVENT_STATE_CHANGE events with the same state). In that case
the intermediate state changes were lost but it is guaranteed that the
state did change in between the two events.


.. _cec-event-state-change:

.. flat-table:: struct cec_event_state_change
    :header-rows:  0
    :stub-columns: 0
58
    :widths:       1 1 8
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83


    -  .. row 1

       -  __u16

       -  ``phys_addr``

       -  The current physical address.

    -  .. row 2

       -  __u16

       -  ``log_addr_mask``

       -  The current set of claimed logical addresses.



.. _cec-event-lost-msgs:

.. flat-table:: struct cec_event_lost_msgs
    :header-rows:  0
    :stub-columns: 0
84
    :widths:       1 1 16
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109


    -  .. row 1

       -  __u32

       -  ``lost_msgs``

       -  Set to the number of lost messages since the filehandle was opened
          or since the last time this event was dequeued for this
          filehandle. The messages lost are the oldest messages. So when a
          new message arrives and there is no more room, then the oldest
          message is discarded to make room for the new one. The internal
          size of the message queue guarantees that all messages received in
          the last two seconds will be stored. Since messages should be
          replied to within a second according to the CEC specification,
          this is more than enough.



.. _cec-event:

.. flat-table:: struct cec_event
    :header-rows:  0
    :stub-columns: 0
110
    :widths:       1 1 1 8
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158


    -  .. row 1

       -  __u64

       -  ``ts``

       -  Timestamp of the event in ns.

       -

    -  .. row 2

       -  __u32

       -  ``event``

       -  The CEC event type, see :ref:`cec-events`.

       -

    -  .. row 3

       -  __u32

       -  ``flags``

       -  Event flags, see :ref:`cec-event-flags`.

       -

    -  .. row 4

       -  union

       -  (anonymous)

       -
       -

    -  .. row 5

       -
       -  struct cec_event_state_change

       -  ``state_change``

159
       -  The new adapter state as sent by the :ref:`CEC_EVENT_STATE_CHANGE <CEC_EVENT_STATE_CHANGE>`
160 161 162 163 164 165 166 167 168
          event.

    -  .. row 6

       -
       -  struct cec_event_lost_msgs

       -  ``lost_msgs``

169
       -  The number of lost messages as sent by the :ref:`CEC_EVENT_LOST_MSGS <CEC_EVENT_LOST_MSGS>`
170 171 172 173 174 175 176 177 178
          event.



.. _cec-events:

.. flat-table:: CEC Events Types
    :header-rows:  0
    :stub-columns: 0
179
    :widths:       3 1 16
180 181


182
    -  .. _CEC_EVENT_STATE_CHANGE:
183 184 185 186 187 188 189 190 191

       -  ``CEC_EVENT_STATE_CHANGE``

       -  1

       -  Generated when the CEC Adapter's state changes. When open() is
          called an initial event will be generated for that filehandle with
          the CEC Adapter's state at that time.

192
    -  .. _CEC_EVENT_LOST_MSGS:
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207

       -  ``CEC_EVENT_LOST_MSGS``

       -  2

       -  Generated if one or more CEC messages were lost because the
          application didn't dequeue CEC messages fast enough.



.. _cec-event-flags:

.. flat-table:: CEC Event Flags
    :header-rows:  0
    :stub-columns: 0
208
    :widths:       3 1 8
209 210


211
    -  .. _CEC_EVENT_FL_INITIAL_VALUE:
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229

       -  ``CEC_EVENT_FL_INITIAL_VALUE``

       -  1

       -  Set for the initial events that are generated when the device is
          opened. See the table above for which events do this. This allows
          applications to learn the initial state of the CEC adapter at
          open() time.



Return Value
============

On success 0 is returned, on error -1 and the ``errno`` variable is set
appropriately. The generic error codes are described at the
:ref:`Generic Error Codes <gen-errors>` chapter.