[media] doc-rst: improve display of notes and warnings
[deliverable/linux.git] / Documentation / media / uapi / dvb / fe-read-status.rst
CommitLineData
5377d91f
MH
1.. -*- coding: utf-8; mode: rst -*-
2
3.. _FE_READ_STATUS:
4
5********************
6ioctl FE_READ_STATUS
7********************
8
15e7d615 9Name
586027ce 10====
5377d91f 11
586027ce 12FE_READ_STATUS - Returns status information about the front-end. This call only requires - read-only access to the device
5377d91f 13
15e7d615
MCC
14
15Synopsis
5377d91f
MH
16========
17
b7e67f6c 18.. cpp:function:: int ioctl( int fd, int request, unsigned int *status )
5377d91f 19
586027ce 20
15e7d615 21Arguments
5377d91f
MH
22=========
23
24``fd``
25 File descriptor returned by :ref:`open() <frontend_f_open>`.
26
27``request``
28 FE_READ_STATUS
29
30``status``
31 pointer to a bitmask integer filled with the values defined by enum
32 :ref:`fe_status <fe-status>`.
33
34
15e7d615 35Description
5377d91f
MH
36===========
37
38All DVB frontend devices support the ``FE_READ_STATUS`` ioctl. It is
39used to check about the locking status of the frontend after being
40tuned. The ioctl takes a pointer to an integer where the status will be
41written.
42
706f8a99
MCC
43.. note:: The size of status is actually sizeof(enum fe_status), with
44 varies according with the architecture. This needs to be fixed in the
45 future.
5377d91f 46
586027ce 47
5377d91f
MH
48.. _fe-status-t:
49
50int fe_status
51=============
52
53The fe_status parameter is used to indicate the current state and/or
54state changes of the frontend hardware. It is produced using the enum
55:ref:`fe_status <fe-status>` values on a bitmask
56
57
58.. _fe-status:
59
60.. flat-table:: enum fe_status
61 :header-rows: 1
62 :stub-columns: 0
63
64
65 - .. row 1
66
67 - ID
68
69 - Description
70
71 - .. row 2
72
6aeb3f67 73 - .. _FE-HAS-SIGNAL:
5377d91f 74
0579e6e3 75 ``FE_HAS_SIGNAL``
5377d91f
MH
76
77 - The frontend has found something above the noise level
78
79 - .. row 3
80
6aeb3f67 81 - .. _FE-HAS-CARRIER:
5377d91f 82
0579e6e3 83 ``FE_HAS_CARRIER``
5377d91f
MH
84
85 - The frontend has found a DVB signal
86
87 - .. row 4
88
6aeb3f67 89 - .. _FE-HAS-VITERBI:
5377d91f 90
0579e6e3 91 ``FE_HAS_VITERBI``
5377d91f
MH
92
93 - The frontend FEC inner coding (Viterbi, LDPC or other inner code)
0579e6e3 94 is stable
5377d91f
MH
95
96 - .. row 5
97
6aeb3f67 98 - .. _FE-HAS-SYNC:
5377d91f 99
0579e6e3 100 ``FE_HAS_SYNC``
5377d91f
MH
101
102 - Synchronization bytes was found
103
104 - .. row 6
105
6aeb3f67 106 - .. _FE-HAS-LOCK:
5377d91f 107
0579e6e3 108 ``FE_HAS_LOCK``
5377d91f
MH
109
110 - The DVB were locked and everything is working
111
112 - .. row 7
113
6aeb3f67 114 - .. _FE-TIMEDOUT:
5377d91f 115
0579e6e3 116 ``FE_TIMEDOUT``
5377d91f
MH
117
118 - no lock within the last about 2 seconds
119
120 - .. row 8
121
6aeb3f67 122 - .. _FE-REINIT:
5377d91f 123
0579e6e3 124 ``FE_REINIT``
5377d91f
MH
125
126 - The frontend was reinitialized, application is recommended to
0579e6e3 127 reset DiSEqC, tone and parameters
fc833980 128
15e7d615
MCC
129
130Return Value
fc833980
MCC
131============
132
133On success 0 is returned, on error -1 and the ``errno`` variable is set
134appropriately. The generic error codes are described at the
135:ref:`Generic Error Codes <gen-errors>` chapter.
This page took 0.037825 seconds and 5 git commands to generate.