1 <refentry id="vidioc-s-hw-freq-seek">
3 <refentrytitle>ioctl VIDIOC_S_HW_FREQ_SEEK</refentrytitle>
8 <refname>VIDIOC_S_HW_FREQ_SEEK</refname>
9 <refpurpose>Perform a hardware frequency seek</refpurpose>
15 <funcdef>int <function>ioctl</function></funcdef>
16 <paramdef>int <parameter>fd</parameter></paramdef>
17 <paramdef>int <parameter>request</parameter></paramdef>
18 <paramdef>struct v4l2_hw_freq_seek
19 *<parameter>argp</parameter></paramdef>
25 <title>Arguments</title>
29 <term><parameter>fd</parameter></term>
35 <term><parameter>request</parameter></term>
37 <para>VIDIOC_S_HW_FREQ_SEEK</para>
41 <term><parameter>argp</parameter></term>
50 <title>Description</title>
52 <para>Start a hardware frequency seek from the current frequency.
53 To do this applications initialize the <structfield>tuner</structfield>,
54 <structfield>type</structfield>, <structfield>seek_upward</structfield>,
55 <structfield>wrap_around</structfield>, <structfield>spacing</structfield>,
56 <structfield>rangelow</structfield> and <structfield>rangehigh</structfield>
57 fields, and zero out the <structfield>reserved</structfield> array of a
58 &v4l2-hw-freq-seek; and call the <constant>VIDIOC_S_HW_FREQ_SEEK</constant>
59 ioctl with a pointer to this structure.</para>
61 <para>The <structfield>rangelow</structfield> and
62 <structfield>rangehigh</structfield> fields can be set to a non-zero value to
63 tell the driver to search a specific band. If the &v4l2-tuner;
64 <structfield>capability</structfield> field has the
65 <constant>V4L2_TUNER_CAP_HWSEEK_PROG_LIM</constant> flag set, these values
66 must fall within one of the bands returned by &VIDIOC-ENUM-FREQ-BANDS;. If
67 the <constant>V4L2_TUNER_CAP_HWSEEK_PROG_LIM</constant> flag is not set,
68 then these values must exactly match those of one of the bands returned by
69 &VIDIOC-ENUM-FREQ-BANDS;. If the current frequency of the tuner does not fall
70 within the selected band it will be clamped to fit in the band before the
71 seek is started.</para>
73 <para>If an error is returned, then the original frequency will
76 <para>This ioctl is supported if the <constant>V4L2_CAP_HW_FREQ_SEEK</constant> capability is set.</para>
78 <para>If this ioctl is called from a non-blocking filehandle, then &EAGAIN; is
79 returned and no seek takes place.</para>
81 <table pgwide="1" frame="none" id="v4l2-hw-freq-seek">
82 <title>struct <structname>v4l2_hw_freq_seek</structname></title>
88 <entry><structfield>tuner</structfield></entry>
89 <entry>The tuner index number. This is the
90 same value as in the &v4l2-input; <structfield>tuner</structfield>
91 field and the &v4l2-tuner; <structfield>index</structfield> field.</entry>
95 <entry><structfield>type</structfield></entry>
96 <entry>The tuner type. This is the same value as in the
97 &v4l2-tuner; <structfield>type</structfield> field. See <xref
98 linkend="v4l2-tuner-type" /></entry>
102 <entry><structfield>seek_upward</structfield></entry>
103 <entry>If non-zero, seek upward from the current frequency, else seek downward.</entry>
107 <entry><structfield>wrap_around</structfield></entry>
108 <entry>If non-zero, wrap around when at the end of the frequency range, else stop seeking.
109 The &v4l2-tuner; <structfield>capability</structfield> field will tell you what the
115 <entry><structfield>spacing</structfield></entry>
116 <entry>If non-zero, defines the hardware seek resolution in Hz. The driver selects the nearest value that is supported by the device. If spacing is zero a reasonable default value is used.</entry>
120 <entry><structfield>rangelow</structfield></entry>
121 <entry>If non-zero, the lowest tunable frequency of the band to
122 search in units of 62.5 kHz, or if the &v4l2-tuner;
123 <structfield>capability</structfield> field has the
124 <constant>V4L2_TUNER_CAP_LOW</constant> flag set, in units of 62.5 Hz or if the &v4l2-tuner;
125 <structfield>capability</structfield> field has the
126 <constant>V4L2_TUNER_CAP_1HZ</constant> flag set, in units of 1 Hz.
127 If <structfield>rangelow</structfield> is zero a reasonable default value
132 <entry><structfield>rangehigh</structfield></entry>
133 <entry>If non-zero, the highest tunable frequency of the band to
134 search in units of 62.5 kHz, or if the &v4l2-tuner;
135 <structfield>capability</structfield> field has the
136 <constant>V4L2_TUNER_CAP_LOW</constant> flag set, in units of 62.5 Hz or if the &v4l2-tuner;
137 <structfield>capability</structfield> field has the
138 <constant>V4L2_TUNER_CAP_1HZ</constant> flag set, in units of 1 Hz.
139 If <structfield>rangehigh</structfield> is zero a reasonable default value
144 <entry><structfield>reserved</structfield>[5]</entry>
145 <entry>Reserved for future extensions. Applications
146 must set the array to zero.</entry>
158 <term><errorcode>EINVAL</errorcode></term>
160 <para>The <structfield>tuner</structfield> index is out of
161 bounds, the <structfield>wrap_around</structfield> value is not supported or
162 one of the values in the <structfield>type</structfield>,
163 <structfield>rangelow</structfield> or <structfield>rangehigh</structfield>
164 fields is wrong.</para>
168 <term><errorcode>EAGAIN</errorcode></term>
170 <para>Attempted to call <constant>VIDIOC_S_HW_FREQ_SEEK</constant>
171 with the filehandle in non-blocking mode.</para>
175 <term><errorcode>ENODATA</errorcode></term>
177 <para>The hardware seek found no channels.</para>
181 <term><errorcode>EBUSY</errorcode></term>
183 <para>Another hardware seek is already in progress.</para>