Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  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
  84
  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
 110
 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
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
.. -*- coding: utf-8; mode: rst -*-

.. _fe_property_parameters:

******************************
Digital TV property parameters
******************************


.. _DTV-UNDEFINED:

DTV_UNDEFINED
=============

Used internally. A GET/SET operation for it won't change or return
anything.


.. _DTV-TUNE:

DTV_TUNE
========

Interpret the cache of data, build either a traditional frontend
tunerequest so we can pass validation in the ``FE_SET_FRONTEND`` ioctl.


.. _DTV-CLEAR:

DTV_CLEAR
=========

Reset a cache of data specific to the frontend here. This does not
effect hardware.


.. _DTV-FREQUENCY:

DTV_FREQUENCY
=============

Frequency of the digital TV transponder/channel.

.. note::

  #. For satellite delivery systems, the frequency is in kHz.

  #. For cable and terrestrial delivery systems, the frequency is in
     Hz.

  #. On most delivery systems, the frequency is the center frequency
     of the transponder/channel. The exception is for ISDB-T, where
     the main carrier has a 1/7 offset from the center.

  #. For ISDB-T, the channels are usually transmitted with an offset of
     about 143kHz. E.g. a valid frequency could be 474,143 kHz. The
     stepping is  bound to the bandwidth of the channel which is
     typically 6MHz.

  #. In ISDB-Tsb, the channel consists of only one or three segments the
     frequency step is 429kHz, 3*429 respectively.


.. _DTV-MODULATION:

DTV_MODULATION
==============

Specifies the frontend modulation type for delivery systems that
supports more than one modulation type. The modulation can be one of the
types defined by enum :c:type:`fe_modulation`.


.. c:type:: fe_modulation

Modulation property
-------------------

Most of the digital TV standards currently offers more than one possible
modulation (sometimes called as "constellation" on some standards). This
enum contains the values used by the Kernel. Please note that not all
modulations are supported by a given standard.


.. flat-table:: enum fe_modulation
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _QPSK:

	  ``QPSK``

       -  QPSK modulation

    -  .. row 3

       -  .. _QAM-16:

	  ``QAM_16``

       -  16-QAM modulation

    -  .. row 4

       -  .. _QAM-32:

	  ``QAM_32``

       -  32-QAM modulation

    -  .. row 5

       -  .. _QAM-64:

	  ``QAM_64``

       -  64-QAM modulation

    -  .. row 6

       -  .. _QAM-128:

	  ``QAM_128``

       -  128-QAM modulation

    -  .. row 7

       -  .. _QAM-256:

	  ``QAM_256``

       -  256-QAM modulation

    -  .. row 8

       -  .. _QAM-AUTO:

	  ``QAM_AUTO``

       -  Autodetect QAM modulation

    -  .. row 9

       -  .. _VSB-8:

	  ``VSB_8``

       -  8-VSB modulation

    -  .. row 10

       -  .. _VSB-16:

	  ``VSB_16``

       -  16-VSB modulation

    -  .. row 11

       -  .. _PSK-8:

	  ``PSK_8``

       -  8-PSK modulation

    -  .. row 12

       -  .. _APSK-16:

	  ``APSK_16``

       -  16-APSK modulation

    -  .. row 13

       -  .. _APSK-32:

	  ``APSK_32``

       -  32-APSK modulation

    -  .. row 14

       -  .. _DQPSK:

	  ``DQPSK``

       -  DQPSK modulation

    -  .. row 15

       -  .. _QAM-4-NR:

	  ``QAM_4_NR``

       -  4-QAM-NR modulation



.. _DTV-BANDWIDTH-HZ:

DTV_BANDWIDTH_HZ
================

Bandwidth for the channel, in HZ.

Possible values: ``1712000``, ``5000000``, ``6000000``, ``7000000``,
``8000000``, ``10000000``.

.. note::

  #. DVB-T supports 6, 7 and 8MHz.

  #. DVB-T2 supports 1.172, 5, 6, 7, 8 and 10MHz.

  #. ISDB-T supports 5MHz, 6MHz, 7MHz and 8MHz, although most
     places use 6MHz.

  #. On DVB-C and DVB-S/S2, the bandwidth depends on the symbol rate.
     So, the Kernel will silently ignore setting :ref:`DTV-BANDWIDTH-HZ`.

  #. For DVB-C and DVB-S/S2, the Kernel will return an estimation of the
     bandwidth, calculated from :ref:`DTV-SYMBOL-RATE` and from
     the rolloff, with is fixed for DVB-C and DVB-S.

  #. For DVB-S2, the bandwidth estimation will use :ref:`DTV-ROLLOFF`.

  #. For ISDB-Tsb, it can vary depending on the number of connected
     segments.

  #. Bandwidth in ISDB-Tsb can be easily derived from other parameters
     (DTV_ISDBT_SB_SEGMENT_IDX, DTV_ISDBT_SB_SEGMENT_COUNT).


.. _DTV-INVERSION:

DTV_INVERSION
=============

Specifies if the frontend should do spectral inversion or not.

.. c:type:: fe_spectral_inversion

enum fe_modulation: Frontend spectral inversion
-----------------------------------------------

This parameter indicates if spectral inversion should be presumed or
not. In the automatic setting (``INVERSION_AUTO``) the hardware will try
to figure out the correct setting by itself. If the hardware doesn't
support, the DVB core will try to lock at the carrier first with
inversion off. If it fails, it will try to enable inversion.


.. flat-table:: enum fe_modulation
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _INVERSION-OFF:

	  ``INVERSION_OFF``

       -  Don't do spectral band inversion.

    -  .. row 3

       -  .. _INVERSION-ON:

	  ``INVERSION_ON``

       -  Do spectral band inversion.

    -  .. row 4

       -  .. _INVERSION-AUTO:

	  ``INVERSION_AUTO``

       -  Autodetect spectral band inversion.



.. _DTV-DISEQC-MASTER:

DTV_DISEQC_MASTER
=================

Currently not implemented.


.. _DTV-SYMBOL-RATE:

DTV_SYMBOL_RATE
===============

Digital TV symbol rate, in bauds (symbols/second). Used on cable
standards.


.. _DTV-INNER-FEC:

DTV_INNER_FEC
=============

Used cable/satellite transmissions. The acceptable values are:

.. c:type:: fe_code_rate

enum fe_code_rate: type of the Forward Error Correction.
--------------------------------------------------------

.. flat-table:: enum fe_code_rate
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _FEC-NONE:

	  ``FEC_NONE``

       -  No Forward Error Correction Code

    -  .. row 3

       -  .. _FEC-AUTO:

	  ``FEC_AUTO``

       -  Autodetect Error Correction Code

    -  .. row 4

       -  .. _FEC-1-2:

	  ``FEC_1_2``

       -  Forward Error Correction Code 1/2

    -  .. row 5

       -  .. _FEC-2-3:

	  ``FEC_2_3``

       -  Forward Error Correction Code 2/3

    -  .. row 6

       -  .. _FEC-3-4:

	  ``FEC_3_4``

       -  Forward Error Correction Code 3/4

    -  .. row 7

       -  .. _FEC-4-5:

	  ``FEC_4_5``

       -  Forward Error Correction Code 4/5

    -  .. row 8

       -  .. _FEC-5-6:

	  ``FEC_5_6``

       -  Forward Error Correction Code 5/6

    -  .. row 9

       -  .. _FEC-6-7:

	  ``FEC_6_7``

       -  Forward Error Correction Code 6/7

    -  .. row 10

       -  .. _FEC-7-8:

	  ``FEC_7_8``

       -  Forward Error Correction Code 7/8

    -  .. row 11

       -  .. _FEC-8-9:

	  ``FEC_8_9``

       -  Forward Error Correction Code 8/9

    -  .. row 12

       -  .. _FEC-9-10:

	  ``FEC_9_10``

       -  Forward Error Correction Code 9/10

    -  .. row 13

       -  .. _FEC-2-5:

	  ``FEC_2_5``

       -  Forward Error Correction Code 2/5

    -  .. row 14

       -  .. _FEC-3-5:

	  ``FEC_3_5``

       -  Forward Error Correction Code 3/5



.. _DTV-VOLTAGE:

DTV_VOLTAGE
===========

The voltage is usually used with non-DiSEqC capable LNBs to switch the
polarzation (horizontal/vertical). When using DiSEqC epuipment this
voltage has to be switched consistently to the DiSEqC commands as
described in the DiSEqC spec.


.. c:type:: fe_sec_voltage

.. flat-table:: enum fe_sec_voltage
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _SEC-VOLTAGE-13:

	  ``SEC_VOLTAGE_13``

       -  Set DC voltage level to 13V

    -  .. row 3

       -  .. _SEC-VOLTAGE-18:

	  ``SEC_VOLTAGE_18``

       -  Set DC voltage level to 18V

    -  .. row 4

       -  .. _SEC-VOLTAGE-OFF:

	  ``SEC_VOLTAGE_OFF``

       -  Don't send any voltage to the antenna



.. _DTV-TONE:

DTV_TONE
========

Currently not used.


.. _DTV-PILOT:

DTV_PILOT
=========

Sets DVB-S2 pilot


.. c:type:: fe_pilot

fe_pilot type
-------------


.. flat-table:: enum fe_pilot
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _PILOT-ON:

	  ``PILOT_ON``

       -  Pilot tones enabled

    -  .. row 3

       -  .. _PILOT-OFF:

	  ``PILOT_OFF``

       -  Pilot tones disabled

    -  .. row 4

       -  .. _PILOT-AUTO:

	  ``PILOT_AUTO``

       -  Autodetect pilot tones



.. _DTV-ROLLOFF:

DTV_ROLLOFF
===========

Sets DVB-S2 rolloff


.. c:type:: fe_rolloff

fe_rolloff type
---------------


.. flat-table:: enum fe_rolloff
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _ROLLOFF-35:

	  ``ROLLOFF_35``

       -  Roloff factor: α=35%

    -  .. row 3

       -  .. _ROLLOFF-20:

	  ``ROLLOFF_20``

       -  Roloff factor: α=20%

    -  .. row 4

       -  .. _ROLLOFF-25:

	  ``ROLLOFF_25``

       -  Roloff factor: α=25%

    -  .. row 5

       -  .. _ROLLOFF-AUTO:

	  ``ROLLOFF_AUTO``

       -  Auto-detect the roloff factor.



.. _DTV-DISEQC-SLAVE-REPLY:

DTV_DISEQC_SLAVE_REPLY
======================

Currently not implemented.


.. _DTV-FE-CAPABILITY-COUNT:

DTV_FE_CAPABILITY_COUNT
=======================

Currently not implemented.


.. _DTV-FE-CAPABILITY:

DTV_FE_CAPABILITY
=================

Currently not implemented.


.. _DTV-DELIVERY-SYSTEM:

DTV_DELIVERY_SYSTEM
===================

Specifies the type of Delivery system


.. c:type:: fe_delivery_system

fe_delivery_system type
-----------------------

Possible values:


.. flat-table:: enum fe_delivery_system
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _SYS-UNDEFINED:

	  ``SYS_UNDEFINED``

       -  Undefined standard. Generally, indicates an error

    -  .. row 3

       -  .. _SYS-DVBC-ANNEX-A:

	  ``SYS_DVBC_ANNEX_A``

       -  Cable TV: DVB-C following ITU-T J.83 Annex A spec

    -  .. row 4

       -  .. _SYS-DVBC-ANNEX-B:

	  ``SYS_DVBC_ANNEX_B``

       -  Cable TV: DVB-C following ITU-T J.83 Annex B spec (ClearQAM)

    -  .. row 5

       -  .. _SYS-DVBC-ANNEX-C:

	  ``SYS_DVBC_ANNEX_C``

       -  Cable TV: DVB-C following ITU-T J.83 Annex C spec

    -  .. row 6

       -  .. _SYS-ISDBC:

	  ``SYS_ISDBC``

       -  Cable TV: ISDB-C (no drivers yet)

    -  .. row 7

       -  .. _SYS-DVBT:

	  ``SYS_DVBT``

       -  Terrestral TV: DVB-T

    -  .. row 8

       -  .. _SYS-DVBT2:

	  ``SYS_DVBT2``

       -  Terrestral TV: DVB-T2

    -  .. row 9

       -  .. _SYS-ISDBT:

	  ``SYS_ISDBT``

       -  Terrestral TV: ISDB-T

    -  .. row 10

       -  .. _SYS-ATSC:

	  ``SYS_ATSC``

       -  Terrestral TV: ATSC

    -  .. row 11

       -  .. _SYS-ATSCMH:

	  ``SYS_ATSCMH``

       -  Terrestral TV (mobile): ATSC-M/H

    -  .. row 12

       -  .. _SYS-DTMB:

	  ``SYS_DTMB``

       -  Terrestrial TV: DTMB

    -  .. row 13

       -  .. _SYS-DVBS:

	  ``SYS_DVBS``

       -  Satellite TV: DVB-S

    -  .. row 14

       -  .. _SYS-DVBS2:

	  ``SYS_DVBS2``

       -  Satellite TV: DVB-S2

    -  .. row 15

       -  .. _SYS-TURBO:

	  ``SYS_TURBO``

       -  Satellite TV: DVB-S Turbo

    -  .. row 16

       -  .. _SYS-ISDBS:

	  ``SYS_ISDBS``

       -  Satellite TV: ISDB-S

    -  .. row 17

       -  .. _SYS-DAB:

	  ``SYS_DAB``

       -  Digital audio: DAB (not fully supported)

    -  .. row 18

       -  .. _SYS-DSS:

	  ``SYS_DSS``

       -  Satellite TV:"DSS (not fully supported)

    -  .. row 19

       -  .. _SYS-CMMB:

	  ``SYS_CMMB``

       -  Terrestral TV (mobile):CMMB (not fully supported)

    -  .. row 20

       -  .. _SYS-DVBH:

	  ``SYS_DVBH``

       -  Terrestral TV (mobile): DVB-H (standard deprecated)



.. _DTV-ISDBT-PARTIAL-RECEPTION:

DTV_ISDBT_PARTIAL_RECEPTION
===========================

If ``DTV_ISDBT_SOUND_BROADCASTING`` is '0' this bit-field represents
whether the channel is in partial reception mode or not.

If '1' ``DTV_ISDBT_LAYERA_*`` values are assigned to the center segment
and ``DTV_ISDBT_LAYERA_SEGMENT_COUNT`` has to be '1'.

If in addition ``DTV_ISDBT_SOUND_BROADCASTING`` is '1'
``DTV_ISDBT_PARTIAL_RECEPTION`` represents whether this ISDB-Tsb channel
is consisting of one segment and layer or three segments and two layers.

Possible values: 0, 1, -1 (AUTO)


.. _DTV-ISDBT-SOUND-BROADCASTING:

DTV_ISDBT_SOUND_BROADCASTING
============================

This field represents whether the other DTV_ISDBT_*-parameters are
referring to an ISDB-T and an ISDB-Tsb channel. (See also
``DTV_ISDBT_PARTIAL_RECEPTION``).

Possible values: 0, 1, -1 (AUTO)


.. _DTV-ISDBT-SB-SUBCHANNEL-ID:

DTV_ISDBT_SB_SUBCHANNEL_ID
==========================

This field only applies if ``DTV_ISDBT_SOUND_BROADCASTING`` is '1'.

(Note of the author: This might not be the correct description of the
``SUBCHANNEL-ID`` in all details, but it is my understanding of the
technical background needed to program a device)

An ISDB-Tsb channel (1 or 3 segments) can be broadcasted alone or in a
set of connected ISDB-Tsb channels. In this set of channels every
channel can be received independently. The number of connected ISDB-Tsb
segment can vary, e.g. depending on the frequency spectrum bandwidth
available.

Example: Assume 8 ISDB-Tsb connected segments are broadcasted. The
broadcaster has several possibilities to put those channels in the air:
Assuming a normal 13-segment ISDB-T spectrum he can align the 8 segments
from position 1-8 to 5-13 or anything in between.

The underlying layer of segments are subchannels: each segment is
consisting of several subchannels with a predefined IDs. A sub-channel
is used to help the demodulator to synchronize on the channel.

An ISDB-T channel is always centered over all sub-channels. As for the
example above, in ISDB-Tsb it is no longer as simple as that.

``The DTV_ISDBT_SB_SUBCHANNEL_ID`` parameter is used to give the
sub-channel ID of the segment to be demodulated.

Possible values: 0 .. 41, -1 (AUTO)


.. _DTV-ISDBT-SB-SEGMENT-IDX:

DTV_ISDBT_SB_SEGMENT_IDX
========================

This field only applies if ``DTV_ISDBT_SOUND_BROADCASTING`` is '1'.

``DTV_ISDBT_SB_SEGMENT_IDX`` gives the index of the segment to be
demodulated for an ISDB-Tsb channel where several of them are
transmitted in the connected manner.

Possible values: 0 .. ``DTV_ISDBT_SB_SEGMENT_COUNT`` - 1

Note: This value cannot be determined by an automatic channel search.


.. _DTV-ISDBT-SB-SEGMENT-COUNT:

DTV_ISDBT_SB_SEGMENT_COUNT
==========================

This field only applies if ``DTV_ISDBT_SOUND_BROADCASTING`` is '1'.

``DTV_ISDBT_SB_SEGMENT_COUNT`` gives the total count of connected
ISDB-Tsb channels.

Possible values: 1 .. 13

Note: This value cannot be determined by an automatic channel search.


.. _isdb-hierq-layers:

DTV-ISDBT-LAYER[A-C] parameters
===============================

ISDB-T channels can be coded hierarchically. As opposed to DVB-T in
ISDB-T hierarchical layers can be decoded simultaneously. For that
reason a ISDB-T demodulator has 3 Viterbi and 3 Reed-Solomon decoders.

ISDB-T has 3 hierarchical layers which each can use a part of the
available segments. The total number of segments over all layers has to
13 in ISDB-T.

There are 3 parameter sets, for Layers A, B and C.


.. _DTV-ISDBT-LAYER-ENABLED:

DTV_ISDBT_LAYER_ENABLED
-----------------------

Hierarchical reception in ISDB-T is achieved by enabling or disabling
layers in the decoding process. Setting all bits of
``DTV_ISDBT_LAYER_ENABLED`` to '1' forces all layers (if applicable) to
be demodulated. This is the default.

If the channel is in the partial reception mode
(``DTV_ISDBT_PARTIAL_RECEPTION`` = 1) the central segment can be decoded
independently of the other 12 segments. In that mode layer A has to have
a ``SEGMENT_COUNT`` of 1.

In ISDB-Tsb only layer A is used, it can be 1 or 3 in ISDB-Tsb according
to ``DTV_ISDBT_PARTIAL_RECEPTION``. ``SEGMENT_COUNT`` must be filled
accordingly.

Only the values of the first 3 bits are used. Other bits will be silently ignored:

``DTV_ISDBT_LAYER_ENABLED`` bit 0: layer A enabled

``DTV_ISDBT_LAYER_ENABLED`` bit 1: layer B enabled

``DTV_ISDBT_LAYER_ENABLED`` bit 2: layer C enabled

``DTV_ISDBT_LAYER_ENABLED`` bits 3-31: unused


.. _DTV-ISDBT-LAYER-FEC:

DTV_ISDBT_LAYER[A-C]_FEC
------------------------

Possible values: ``FEC_AUTO``, ``FEC_1_2``, ``FEC_2_3``, ``FEC_3_4``,
``FEC_5_6``, ``FEC_7_8``


.. _DTV-ISDBT-LAYER-MODULATION:

DTV_ISDBT_LAYER[A-C]_MODULATION
-------------------------------

Possible values: ``QAM_AUTO``, QP\ ``SK, QAM_16``, ``QAM_64``, ``DQPSK``

Note: If layer C is ``DQPSK`` layer B has to be ``DQPSK``. If layer B is
``DQPSK`` and ``DTV_ISDBT_PARTIAL_RECEPTION``\ =0 layer has to be
``DQPSK``.


.. _DTV-ISDBT-LAYER-SEGMENT-COUNT:

DTV_ISDBT_LAYER[A-C]_SEGMENT_COUNT
----------------------------------

Possible values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, -1 (AUTO)

Note: Truth table for ``DTV_ISDBT_SOUND_BROADCASTING`` and
``DTV_ISDBT_PARTIAL_RECEPTION`` and ``LAYER[A-C]_SEGMENT_COUNT``

.. _isdbt-layer_seg-cnt-table:

.. flat-table:: Truth table for ISDB-T Sound Broadcasting
    :header-rows:  0
    :stub-columns: 0


    -  .. row 1

       -  PR

       -  SB

       -  Layer A width

       -  Layer B width

       -  Layer C width

       -  total width

    -  .. row 2

       -  0

       -  0

       -  1 .. 13

       -  1 .. 13

       -  1 .. 13

       -  13

    -  .. row 3

       -  1

       -  0

       -  1

       -  1 .. 13

       -  1 .. 13

       -  13

    -  .. row 4

       -  0

       -  1

       -  1

       -  0

       -  0

       -  1

    -  .. row 5

       -  1

       -  1

       -  1

       -  2

       -  0

       -  13



.. _DTV-ISDBT-LAYER-TIME-INTERLEAVING:

DTV_ISDBT_LAYER[A-C]_TIME_INTERLEAVING
--------------------------------------

Valid values: 0, 1, 2, 4, -1 (AUTO)

when DTV_ISDBT_SOUND_BROADCASTING is active, value 8 is also valid.

Note: The real time interleaving length depends on the mode (fft-size).
The values here are referring to what can be found in the
TMCC-structure, as shown in the table below.


.. c:type:: isdbt_layer_interleaving_table

.. flat-table:: ISDB-T time interleaving modes
    :header-rows:  0
    :stub-columns: 0


    -  .. row 1

       -  ``DTV_ISDBT_LAYER[A-C]_TIME_INTERLEAVING``

       -  Mode 1 (2K FFT)

       -  Mode 2 (4K FFT)

       -  Mode 3 (8K FFT)

    -  .. row 2

       -  0

       -  0

       -  0

       -  0

    -  .. row 3

       -  1

       -  4

       -  2

       -  1

    -  .. row 4

       -  2

       -  8

       -  4

       -  2

    -  .. row 5

       -  4

       -  16

       -  8

       -  4



.. _DTV-ATSCMH-FIC-VER:

DTV_ATSCMH_FIC_VER
------------------

Version number of the FIC (Fast Information Channel) signaling data.

FIC is used for relaying information to allow rapid service acquisition
by the receiver.

Possible values: 0, 1, 2, 3, ..., 30, 31


.. _DTV-ATSCMH-PARADE-ID:

DTV_ATSCMH_PARADE_ID
--------------------

Parade identification number

A parade is a collection of up to eight MH groups, conveying one or two
ensembles.

Possible values: 0, 1, 2, 3, ..., 126, 127


.. _DTV-ATSCMH-NOG:

DTV_ATSCMH_NOG
--------------

Number of MH groups per MH subframe for a designated parade.

Possible values: 1, 2, 3, 4, 5, 6, 7, 8


.. _DTV-ATSCMH-TNOG:

DTV_ATSCMH_TNOG
---------------

Total number of MH groups including all MH groups belonging to all MH
parades in one MH subframe.

Possible values: 0, 1, 2, 3, ..., 30, 31


.. _DTV-ATSCMH-SGN:

DTV_ATSCMH_SGN
--------------

Start group number.

Possible values: 0, 1, 2, 3, ..., 14, 15


.. _DTV-ATSCMH-PRC:

DTV_ATSCMH_PRC
--------------

Parade repetition cycle.

Possible values: 1, 2, 3, 4, 5, 6, 7, 8


.. _DTV-ATSCMH-RS-FRAME-MODE:

DTV_ATSCMH_RS_FRAME_MODE
------------------------

Reed Solomon (RS) frame mode.

Possible values are:

.. tabularcolumns:: |p{5.0cm}|p{12.5cm}|

.. c:type:: atscmh_rs_frame_mode

.. flat-table:: enum atscmh_rs_frame_mode
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _ATSCMH-RSFRAME-PRI-ONLY:

	  ``ATSCMH_RSFRAME_PRI_ONLY``

       -  Single Frame: There is only a primary RS Frame for all Group
	  Regions.

    -  .. row 3

       -  .. _ATSCMH-RSFRAME-PRI-SEC:

	  ``ATSCMH_RSFRAME_PRI_SEC``

       -  Dual Frame: There are two separate RS Frames: Primary RS Frame for
	  Group Region A and B and Secondary RS Frame for Group Region C and
	  D.



.. _DTV-ATSCMH-RS-FRAME-ENSEMBLE:

DTV_ATSCMH_RS_FRAME_ENSEMBLE
----------------------------

Reed Solomon(RS) frame ensemble.

Possible values are:


.. c:type:: atscmh_rs_frame_ensemble

.. flat-table:: enum atscmh_rs_frame_ensemble
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _ATSCMH-RSFRAME-ENS-PRI:

	  ``ATSCMH_RSFRAME_ENS_PRI``

       -  Primary Ensemble.

    -  .. row 3

       -  .. _ATSCMH-RSFRAME-ENS-SEC:

	  ``AATSCMH_RSFRAME_PRI_SEC``

       -  Secondary Ensemble.

    -  .. row 4

       -  .. _ATSCMH-RSFRAME-RES:

	  ``AATSCMH_RSFRAME_RES``

       -  Reserved. Shouldn't be used.



.. _DTV-ATSCMH-RS-CODE-MODE-PRI:

DTV_ATSCMH_RS_CODE_MODE_PRI
---------------------------

Reed Solomon (RS) code mode (primary).

Possible values are:


.. c:type:: atscmh_rs_code_mode

.. flat-table:: enum atscmh_rs_code_mode
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _ATSCMH-RSCODE-211-187:

	  ``ATSCMH_RSCODE_211_187``

       -  Reed Solomon code (211,187).

    -  .. row 3

       -  .. _ATSCMH-RSCODE-223-187:

	  ``ATSCMH_RSCODE_223_187``

       -  Reed Solomon code (223,187).

    -  .. row 4

       -  .. _ATSCMH-RSCODE-235-187:

	  ``ATSCMH_RSCODE_235_187``

       -  Reed Solomon code (235,187).

    -  .. row 5

       -  .. _ATSCMH-RSCODE-RES:

	  ``ATSCMH_RSCODE_RES``

       -  Reserved. Shouldn't be used.



.. _DTV-ATSCMH-RS-CODE-MODE-SEC:

DTV_ATSCMH_RS_CODE_MODE_SEC
---------------------------

Reed Solomon (RS) code mode (secondary).

Possible values are the same as documented on enum
:c:type:`atscmh_rs_code_mode`:


.. _DTV-ATSCMH-SCCC-BLOCK-MODE:

DTV_ATSCMH_SCCC_BLOCK_MODE
--------------------------

Series Concatenated Convolutional Code Block Mode.

Possible values are:

.. tabularcolumns:: |p{4.5cm}|p{13.0cm}|

.. c:type:: atscmh_sccc_block_mode

.. flat-table:: enum atscmh_scc_block_mode
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _ATSCMH-SCCC-BLK-SEP:

	  ``ATSCMH_SCCC_BLK_SEP``

       -  Separate SCCC: the SCCC outer code mode shall be set independently
	  for each Group Region (A, B, C, D)

    -  .. row 3

       -  .. _ATSCMH-SCCC-BLK-COMB:

	  ``ATSCMH_SCCC_BLK_COMB``

       -  Combined SCCC: all four Regions shall have the same SCCC outer
	  code mode.

    -  .. row 4

       -  .. _ATSCMH-SCCC-BLK-RES:

	  ``ATSCMH_SCCC_BLK_RES``

       -  Reserved. Shouldn't be used.



.. _DTV-ATSCMH-SCCC-CODE-MODE-A:

DTV_ATSCMH_SCCC_CODE_MODE_A
---------------------------

Series Concatenated Convolutional Code Rate.

Possible values are:


.. c:type:: atscmh_sccc_code_mode

.. flat-table:: enum atscmh_sccc_code_mode
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _ATSCMH-SCCC-CODE-HLF:

	  ``ATSCMH_SCCC_CODE_HLF``

       -  The outer code rate of a SCCC Block is 1/2 rate.

    -  .. row 3

       -  .. _ATSCMH-SCCC-CODE-QTR:

	  ``ATSCMH_SCCC_CODE_QTR``

       -  The outer code rate of a SCCC Block is 1/4 rate.

    -  .. row 4

       -  .. _ATSCMH-SCCC-CODE-RES:

	  ``ATSCMH_SCCC_CODE_RES``

       -  to be documented.



.. _DTV-ATSCMH-SCCC-CODE-MODE-B:

DTV_ATSCMH_SCCC_CODE_MODE_B
---------------------------

Series Concatenated Convolutional Code Rate.

Possible values are the same as documented on enum
:c:type:`atscmh_sccc_code_mode`.


.. _DTV-ATSCMH-SCCC-CODE-MODE-C:

DTV_ATSCMH_SCCC_CODE_MODE_C
---------------------------

Series Concatenated Convolutional Code Rate.

Possible values are the same as documented on enum
:c:type:`atscmh_sccc_code_mode`.


.. _DTV-ATSCMH-SCCC-CODE-MODE-D:

DTV_ATSCMH_SCCC_CODE_MODE_D
---------------------------

Series Concatenated Convolutional Code Rate.

Possible values are the same as documented on enum
:c:type:`atscmh_sccc_code_mode`.


.. _DTV-API-VERSION:

DTV_API_VERSION
===============

Returns the major/minor version of the DVB API


.. _DTV-CODE-RATE-HP:

DTV_CODE_RATE_HP
================

Used on terrestrial transmissions. The acceptable values are the ones
described at :c:type:`fe_transmit_mode`.


.. _DTV-CODE-RATE-LP:

DTV_CODE_RATE_LP
================

Used on terrestrial transmissions. The acceptable values are the ones
described at :c:type:`fe_transmit_mode`.


.. _DTV-GUARD-INTERVAL:

DTV_GUARD_INTERVAL
==================

Possible values are:


.. c:type:: fe_guard_interval

Modulation guard interval
-------------------------


.. flat-table:: enum fe_guard_interval
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _GUARD-INTERVAL-AUTO:

	  ``GUARD_INTERVAL_AUTO``

       -  Autodetect the guard interval

    -  .. row 3

       -  .. _GUARD-INTERVAL-1-128:

	  ``GUARD_INTERVAL_1_128``

       -  Guard interval 1/128

    -  .. row 4

       -  .. _GUARD-INTERVAL-1-32:

	  ``GUARD_INTERVAL_1_32``

       -  Guard interval 1/32

    -  .. row 5

       -  .. _GUARD-INTERVAL-1-16:

	  ``GUARD_INTERVAL_1_16``

       -  Guard interval 1/16

    -  .. row 6

       -  .. _GUARD-INTERVAL-1-8:

	  ``GUARD_INTERVAL_1_8``

       -  Guard interval 1/8

    -  .. row 7

       -  .. _GUARD-INTERVAL-1-4:

	  ``GUARD_INTERVAL_1_4``

       -  Guard interval 1/4

    -  .. row 8

       -  .. _GUARD-INTERVAL-19-128:

	  ``GUARD_INTERVAL_19_128``

       -  Guard interval 19/128

    -  .. row 9

       -  .. _GUARD-INTERVAL-19-256:

	  ``GUARD_INTERVAL_19_256``

       -  Guard interval 19/256

    -  .. row 10

       -  .. _GUARD-INTERVAL-PN420:

	  ``GUARD_INTERVAL_PN420``

       -  PN length 420 (1/4)

    -  .. row 11

       -  .. _GUARD-INTERVAL-PN595:

	  ``GUARD_INTERVAL_PN595``

       -  PN length 595 (1/6)

    -  .. row 12

       -  .. _GUARD-INTERVAL-PN945:

	  ``GUARD_INTERVAL_PN945``

       -  PN length 945 (1/9)


Notes:

1) If ``DTV_GUARD_INTERVAL`` is set the ``GUARD_INTERVAL_AUTO`` the
hardware will try to find the correct guard interval (if capable) and
will use TMCC to fill in the missing parameters.

2) Intervals 1/128, 19/128 and 19/256 are used only for DVB-T2 at
present

3) DTMB specifies PN420, PN595 and PN945.


.. _DTV-TRANSMISSION-MODE:

DTV_TRANSMISSION_MODE
=====================

Specifies the number of carriers used by the standard. This is used only
on OFTM-based standards, e. g. DVB-T/T2, ISDB-T, DTMB


.. c:type:: fe_transmit_mode

enum fe_transmit_mode: Number of carriers per channel
-----------------------------------------------------

.. tabularcolumns:: |p{5.0cm}|p{12.5cm}|

.. flat-table:: enum fe_transmit_mode
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _TRANSMISSION-MODE-AUTO:

	  ``TRANSMISSION_MODE_AUTO``

       -  Autodetect transmission mode. The hardware will try to find the
	  correct FFT-size (if capable) to fill in the missing parameters.

    -  .. row 3

       -  .. _TRANSMISSION-MODE-1K:

	  ``TRANSMISSION_MODE_1K``

       -  Transmission mode 1K

    -  .. row 4

       -  .. _TRANSMISSION-MODE-2K:

	  ``TRANSMISSION_MODE_2K``

       -  Transmission mode 2K

    -  .. row 5

       -  .. _TRANSMISSION-MODE-8K:

	  ``TRANSMISSION_MODE_8K``

       -  Transmission mode 8K

    -  .. row 6

       -  .. _TRANSMISSION-MODE-4K:

	  ``TRANSMISSION_MODE_4K``

       -  Transmission mode 4K

    -  .. row 7

       -  .. _TRANSMISSION-MODE-16K:

	  ``TRANSMISSION_MODE_16K``

       -  Transmission mode 16K

    -  .. row 8

       -  .. _TRANSMISSION-MODE-32K:

	  ``TRANSMISSION_MODE_32K``

       -  Transmission mode 32K

    -  .. row 9

       -  .. _TRANSMISSION-MODE-C1:

	  ``TRANSMISSION_MODE_C1``

       -  Single Carrier (C=1) transmission mode (DTMB)

    -  .. row 10

       -  .. _TRANSMISSION-MODE-C3780:

	  ``TRANSMISSION_MODE_C3780``

       -  Multi Carrier (C=3780) transmission mode (DTMB)


Notes:

1) ISDB-T supports three carrier/symbol-size: 8K, 4K, 2K. It is called
'mode' in the standard: Mode 1 is 2K, mode 2 is 4K, mode 3 is 8K

2) If ``DTV_TRANSMISSION_MODE`` is set the ``TRANSMISSION_MODE_AUTO``
the hardware will try to find the correct FFT-size (if capable) and will
use TMCC to fill in the missing parameters.

3) DVB-T specifies 2K and 8K as valid sizes.

4) DVB-T2 specifies 1K, 2K, 4K, 8K, 16K and 32K.

5) DTMB specifies C1 and C3780.


.. _DTV-HIERARCHY:

DTV_HIERARCHY
=============

Frontend hierarchy


.. c:type:: fe_hierarchy

Frontend hierarchy
------------------


.. flat-table:: enum fe_hierarchy
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _HIERARCHY-NONE:

	  ``HIERARCHY_NONE``

       -  No hierarchy

    -  .. row 3

       -  .. _HIERARCHY-AUTO:

	  ``HIERARCHY_AUTO``

       -  Autodetect hierarchy (if supported)

    -  .. row 4

       -  .. _HIERARCHY-1:

	  ``HIERARCHY_1``

       -  Hierarchy 1

    -  .. row 5

       -  .. _HIERARCHY-2:

	  ``HIERARCHY_2``

       -  Hierarchy 2

    -  .. row 6

       -  .. _HIERARCHY-4:

	  ``HIERARCHY_4``

       -  Hierarchy 4



.. _DTV-STREAM-ID:

DTV_STREAM_ID
=============

DVB-S2, DVB-T2 and ISDB-S support the transmission of several streams on
a single transport stream. This property enables the DVB driver to
handle substream filtering, when supported by the hardware. By default,
substream filtering is disabled.

For DVB-S2 and DVB-T2, the valid substream id range is from 0 to 255.

For ISDB, the valid substream id range is from 1 to 65535.

To disable it, you should use the special macro NO_STREAM_ID_FILTER.

Note: any value outside the id range also disables filtering.


.. _DTV-DVBT2-PLP-ID-LEGACY:

DTV_DVBT2_PLP_ID_LEGACY
=======================

Obsolete, replaced with DTV_STREAM_ID.


.. _DTV-ENUM-DELSYS:

DTV_ENUM_DELSYS
===============

A Multi standard frontend needs to advertise the delivery systems
provided. Applications need to enumerate the provided delivery systems,
before using any other operation with the frontend. Prior to it's
introduction, FE_GET_INFO was used to determine a frontend type. A
frontend which provides more than a single delivery system,
FE_GET_INFO doesn't help much. Applications which intends to use a
multistandard frontend must enumerate the delivery systems associated
with it, rather than trying to use FE_GET_INFO. In the case of a
legacy frontend, the result is just the same as with FE_GET_INFO, but
in a more structured format


.. _DTV-INTERLEAVING:

DTV_INTERLEAVING
================

Time interleaving to be used. Currently, used only on DTMB.


.. c:type:: fe_interleaving

.. flat-table:: enum fe_interleaving
    :header-rows:  1
    :stub-columns: 0


    -  .. row 1

       -  ID

       -  Description

    -  .. row 2

       -  .. _INTERLEAVING-NONE:

	  ``INTERLEAVING_NONE``

       -  No interleaving.

    -  .. row 3

       -  .. _INTERLEAVING-AUTO:

	  ``INTERLEAVING_AUTO``

       -  Auto-detect interleaving.

    -  .. row 4

       -  .. _INTERLEAVING-240:

	  ``INTERLEAVING_240``

       -  Interleaving of 240 symbols.

    -  .. row 5

       -  .. _INTERLEAVING-720:

	  ``INTERLEAVING_720``

       -  Interleaving of 720 symbols.



.. _DTV-LNA:

DTV_LNA
=======

Low-noise amplifier.

Hardware might offer controllable LNA which can be set manually using
that parameter. Usually LNA could be found only from terrestrial devices
if at all.

Possible values: 0, 1, LNA_AUTO

0, LNA off

1, LNA on

use the special macro LNA_AUTO to set LNA auto