Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 1 | .. -*- coding: utf-8; mode: rst -*- |
| 2 | |
Mauro Carvalho Chehab | af4a4d0 | 2016-07-01 13:42:29 -0300 | [diff] [blame] | 3 | .. _VIDIOC_G_FREQUENCY: |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 4 | |
| 5 | ******************************************** |
| 6 | ioctl VIDIOC_G_FREQUENCY, VIDIOC_S_FREQUENCY |
| 7 | ******************************************** |
| 8 | |
Mauro Carvalho Chehab | 15e7d61 | 2016-07-05 15:14:35 -0300 | [diff] [blame] | 9 | Name |
Mauro Carvalho Chehab | 586027c | 2016-07-05 07:58:48 -0300 | [diff] [blame] | 10 | ==== |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 11 | |
Mauro Carvalho Chehab | 586027c | 2016-07-05 07:58:48 -0300 | [diff] [blame] | 12 | VIDIOC_G_FREQUENCY - VIDIOC_S_FREQUENCY - Get or set tuner or modulator radio frequency |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 13 | |
Mauro Carvalho Chehab | 15e7d61 | 2016-07-05 15:14:35 -0300 | [diff] [blame] | 14 | |
| 15 | Synopsis |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 16 | ======== |
| 17 | |
Mauro Carvalho Chehab | b7e67f6 | 2016-07-02 09:49:16 -0300 | [diff] [blame] | 18 | .. cpp:function:: int ioctl( int fd, int request, struct v4l2_frequency *argp ) |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 19 | |
Mauro Carvalho Chehab | b7e67f6 | 2016-07-02 09:49:16 -0300 | [diff] [blame] | 20 | .. cpp:function:: int ioctl( int fd, int request, const struct v4l2_frequency *argp ) |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 21 | |
Mauro Carvalho Chehab | 586027c | 2016-07-05 07:58:48 -0300 | [diff] [blame] | 22 | |
Mauro Carvalho Chehab | 15e7d61 | 2016-07-05 15:14:35 -0300 | [diff] [blame] | 23 | Arguments |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 24 | ========= |
| 25 | |
| 26 | ``fd`` |
| 27 | File descriptor returned by :ref:`open() <func-open>`. |
| 28 | |
| 29 | ``request`` |
| 30 | VIDIOC_G_FREQUENCY, VIDIOC_S_FREQUENCY |
| 31 | |
| 32 | ``argp`` |
| 33 | |
| 34 | |
Mauro Carvalho Chehab | 15e7d61 | 2016-07-05 15:14:35 -0300 | [diff] [blame] | 35 | Description |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 36 | =========== |
| 37 | |
| 38 | To get the current tuner or modulator radio frequency applications set |
| 39 | the ``tuner`` field of a struct |
| 40 | :ref:`v4l2_frequency <v4l2-frequency>` to the respective tuner or |
| 41 | modulator number (only input devices have tuners, only output devices |
| 42 | have modulators), zero out the ``reserved`` array and call the |
Mauro Carvalho Chehab | 4e03cb7 | 2016-07-03 10:02:29 -0300 | [diff] [blame] | 43 | :ref:`VIDIOC_G_FREQUENCY <VIDIOC_G_FREQUENCY>` ioctl with a pointer to this structure. The |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 44 | driver stores the current frequency in the ``frequency`` field. |
| 45 | |
| 46 | To change the current tuner or modulator radio frequency applications |
| 47 | initialize the ``tuner``, ``type`` and ``frequency`` fields, and the |
| 48 | ``reserved`` array of a struct :ref:`v4l2_frequency <v4l2-frequency>` |
Mauro Carvalho Chehab | 2212ff2 | 2016-07-01 14:33:56 -0300 | [diff] [blame] | 49 | and call the :ref:`VIDIOC_S_FREQUENCY <VIDIOC_G_FREQUENCY>` ioctl with a pointer to this |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 50 | structure. When the requested frequency is not possible the driver |
Mauro Carvalho Chehab | 2212ff2 | 2016-07-01 14:33:56 -0300 | [diff] [blame] | 51 | assumes the closest possible value. However :ref:`VIDIOC_S_FREQUENCY <VIDIOC_G_FREQUENCY>` is a |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 52 | write-only ioctl, it does not return the actual new frequency. |
| 53 | |
| 54 | |
| 55 | .. _v4l2-frequency: |
| 56 | |
| 57 | .. flat-table:: struct v4l2_frequency |
| 58 | :header-rows: 0 |
| 59 | :stub-columns: 0 |
| 60 | :widths: 1 1 2 |
| 61 | |
| 62 | |
| 63 | - .. row 1 |
| 64 | |
| 65 | - __u32 |
| 66 | |
| 67 | - ``tuner`` |
| 68 | |
| 69 | - The tuner or modulator index number. This is the same value as in |
Mauro Carvalho Chehab | 0579e6e | 2016-07-04 16:25:48 -0300 | [diff] [blame] | 70 | the struct :ref:`v4l2_input <v4l2-input>` ``tuner`` field and |
| 71 | the struct :ref:`v4l2_tuner <v4l2-tuner>` ``index`` field, or |
| 72 | the struct :ref:`v4l2_output <v4l2-output>` ``modulator`` field |
| 73 | and the struct :ref:`v4l2_modulator <v4l2-modulator>` ``index`` |
| 74 | field. |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 75 | |
| 76 | - .. row 2 |
| 77 | |
| 78 | - __u32 |
| 79 | |
| 80 | - ``type`` |
| 81 | |
| 82 | - The tuner type. This is the same value as in the struct |
Mauro Carvalho Chehab | 0579e6e | 2016-07-04 16:25:48 -0300 | [diff] [blame] | 83 | :ref:`v4l2_tuner <v4l2-tuner>` ``type`` field. The type must be |
| 84 | set to ``V4L2_TUNER_RADIO`` for ``/dev/radioX`` device nodes, and |
| 85 | to ``V4L2_TUNER_ANALOG_TV`` for all others. Set this field to |
| 86 | ``V4L2_TUNER_RADIO`` for modulators (currently only radio |
| 87 | modulators are supported). See :ref:`v4l2-tuner-type` |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 88 | |
| 89 | - .. row 3 |
| 90 | |
| 91 | - __u32 |
| 92 | |
| 93 | - ``frequency`` |
| 94 | |
| 95 | - Tuning frequency in units of 62.5 kHz, or if the struct |
Mauro Carvalho Chehab | 0579e6e | 2016-07-04 16:25:48 -0300 | [diff] [blame] | 96 | :ref:`v4l2_tuner <v4l2-tuner>` or struct |
| 97 | :ref:`v4l2_modulator <v4l2-modulator>` ``capability`` flag |
| 98 | ``V4L2_TUNER_CAP_LOW`` is set, in units of 62.5 Hz. A 1 Hz unit is |
| 99 | used when the ``capability`` flag ``V4L2_TUNER_CAP_1HZ`` is set. |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 100 | |
| 101 | - .. row 4 |
| 102 | |
| 103 | - __u32 |
| 104 | |
Mauro Carvalho Chehab | ffbab69 | 2016-07-12 15:20:11 -0300 | [diff] [blame^] | 105 | - ``reserved``\ \[8\] |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 106 | |
| 107 | - Reserved for future extensions. Drivers and applications must set |
Mauro Carvalho Chehab | 0579e6e | 2016-07-04 16:25:48 -0300 | [diff] [blame] | 108 | the array to zero. |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 109 | |
| 110 | |
Mauro Carvalho Chehab | 15e7d61 | 2016-07-05 15:14:35 -0300 | [diff] [blame] | 111 | Return Value |
Markus Heiser | 5377d91 | 2016-06-30 15:18:56 +0200 | [diff] [blame] | 112 | ============ |
| 113 | |
| 114 | On success 0 is returned, on error -1 and the ``errno`` variable is set |
| 115 | appropriately. The generic error codes are described at the |
| 116 | :ref:`Generic Error Codes <gen-errors>` chapter. |
| 117 | |
| 118 | EINVAL |
| 119 | The ``tuner`` index is out of bounds or the value in the ``type`` |
| 120 | field is wrong. |
| 121 | |
| 122 | EBUSY |
| 123 | A hardware seek is in progress. |