DMTB                   4-QAM, 16-QAM, 32-QAM, 64-QAM and 4-QAM-NR.
 DVB-C Annex A/C                16-QAM, 32-QAM, 64-QAM and 256-QAM.
 DVB-C Annex B          64-QAM.
+DVB-C2                 QPSK, 16-QAM, 64-QAM, 256-QAM, 1024-QAM and 4096-QAM.
 DVB-T                  QPSK, 16-QAM and 64-QAM.
 DVB-T2                 QPSK, 16-QAM, 64-QAM and 256-QAM.
 DVB-S                  No need to set. It supports only QPSK.
 DVB-S2                 QPSK, 8-PSK, 16-APSK and 32-APSK.
+DVB-S2X                        8-APSK-L, 16-APSK-L, 32-APSK-L, 64-APSK and 64-APSK-L.
 ISDB-T                 QPSK, DQPSK, 16-QAM and 64-QAM.
 ISDB-S                 8-PSK, QPSK and BPSK.
 ======================= =======================================================
 
 .. note::
 
+   As DVB-S2X specifies extensions to the DVB-S2 standard, the same
+   delivery system enum value is used (SYS_DVBS2).
+
    Please notice that some of the above modulation types may not be
    defined currently at the Kernel. The reason is simple: no driver
    needed such definition yet.
    #. 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.
-   #. Intervals ``GUARD_INTERVAL_1_128``, ``GUARD_INTERVAL_19_128``
-      and ``GUARD_INTERVAL_19_256`` are used only for DVB-T2 at
-      present.
+   #. Interval ``GUARD_INTERVAL_1_64`` is used only for DVB-C2.
+   #. Interval ``GUARD_INTERVAL_1_128`` is used for both DVB-C2 and DVB_T2.
+   #. Intervals ``GUARD_INTERVAL_19_128`` and ``GUARD_INTERVAL_19_256`` are
+      used only for DVB-T2.
    #. Intervals ``GUARD_INTERVAL_PN420``, ``GUARD_INTERVAL_PN595`` and
       ``GUARD_INTERVAL_PN945`` are used only for DMTB at the present.
       On such standard, only those intervals and ``GUARD_INTERVAL_AUTO``
 DTV_STREAM_ID
 =============
 
-Used on DVB-S2, DVB-T2 and ISDB-S.
+Used on DVB-C2, DVB-S2, DVB-T2 and ISDB-S.
 
-DVB-S2, DVB-T2 and ISDB-S support the transmission of several streams on
-a single transport stream. This property enables the digital TV driver to
-handle substream filtering, when supported by the hardware. By default,
-substream filtering is disabled.
+DVB-C2, DVB-S2, DVB-T2 and ISDB-S support the transmission of several
+streams on a single transport stream. This property enables the digital
+TV 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 DVB-C2, 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.
 
 
  * @FEC_3_5:  Forward Error Correction Code 3/5
  * @FEC_9_10: Forward Error Correction Code 9/10
  * @FEC_2_5:  Forward Error Correction Code 2/5
+ * @FEC_1_3:  Forward Error Correction Code 1/3
+ * @FEC_1_4:  Forward Error Correction Code 1/4
+ * @FEC_5_9:  Forward Error Correction Code 5/9
+ * @FEC_7_9:  Forward Error Correction Code 7/9
+ * @FEC_8_15:  Forward Error Correction Code 8/15
+ * @FEC_11_15: Forward Error Correction Code 11/15
+ * @FEC_13_18: Forward Error Correction Code 13/18
+ * @FEC_9_20:  Forward Error Correction Code 9/20
+ * @FEC_11_20: Forward Error Correction Code 11/20
+ * @FEC_23_36: Forward Error Correction Code 23/36
+ * @FEC_25_36: Forward Error Correction Code 25/36
+ * @FEC_13_45: Forward Error Correction Code 13/45
+ * @FEC_26_45: Forward Error Correction Code 26/45
+ * @FEC_28_45: Forward Error Correction Code 28/45
+ * @FEC_32_45: Forward Error Correction Code 32/45
+ * @FEC_77_90: Forward Error Correction Code 77/90
  *
  * Please note that not all FEC types are supported by a given standard.
  */
        FEC_3_5,
        FEC_9_10,
        FEC_2_5,
+       FEC_1_3,
+       FEC_1_4,
+       FEC_5_9,
+       FEC_7_9,
+       FEC_8_15,
+       FEC_11_15,
+       FEC_13_18,
+       FEC_9_20,
+       FEC_11_20,
+       FEC_23_36,
+       FEC_25_36,
+       FEC_13_45,
+       FEC_26_45,
+       FEC_28_45,
+       FEC_32_45,
+       FEC_77_90,
 };
 
 /**
  * @APSK_32:   32-APSK modulation
  * @DQPSK:     DQPSK modulation
  * @QAM_4_NR:  4-QAM-NR modulation
+ * @QAM-1024:  1024-QAM modulation
+ * @QAM-4096:  4096-QAM modulation
+ * @APSK_8_L:  8APSK-L modulation
+ * @APSK_16_L: 16APSK-L modulation
+ * @APSK_32_L: 32APSK-L modulation
+ * @APSK_64:   64APSK modulation
+ * @APSK_64_L: 64APSK-L modulation
  *
  * Please note that not all modulations are supported by a given standard.
  *
        APSK_32,
        DQPSK,
        QAM_4_NR,
+       QAM_1024,
+       QAM_4096,
+       APSK_8_L,
+       APSK_16_L,
+       APSK_32_L,
+       APSK_64,
+       APSK_64_L,
 };
 
 /**
  * @GUARD_INTERVAL_PN420:      PN length 420 (1/4)
  * @GUARD_INTERVAL_PN595:      PN length 595 (1/6)
  * @GUARD_INTERVAL_PN945:      PN length 945 (1/9)
+ * @GUARD_INTERVAL_1_64:       Guard interval 1/64
  *
  * Please note that not all guard intervals are supported by a given standard.
  */
        GUARD_INTERVAL_PN420,
        GUARD_INTERVAL_PN595,
        GUARD_INTERVAL_PN945,
+       GUARD_INTERVAL_1_64,
 };
 
 /**
  * @ROLLOFF_20:                Roloff factor: α=20%
  * @ROLLOFF_25:                Roloff factor: α=25%
  * @ROLLOFF_AUTO:      Auto-detect the roloff factor.
+ * @ROLLOFF_15:                Rolloff factor: α=15%
+ * @ROLLOFF_10:                Rolloff factor: α=10%
+ * @ROLLOFF_5:         Rolloff factor: α=5%
  *
  * .. note:
  *
        ROLLOFF_20,
        ROLLOFF_25,
        ROLLOFF_AUTO,
+       ROLLOFF_15,
+       ROLLOFF_10,
+       ROLLOFF_5,
 };
 
 /**
  *     Cable TV: DVB-C following ITU-T J.83 Annex B spec (ClearQAM)
  * @SYS_DVBC_ANNEX_C:
  *     Cable TV: DVB-C following ITU-T J.83 Annex C spec
+ * @SYS_DVBC2:
+ *      Cable TV: DVB-C2
  * @SYS_ISDBC:
  *     Cable TV: ISDB-C (no drivers yet)
  * @SYS_DVBT:
  * @SYS_DVBS:
  *     Satellite TV: DVB-S
  * @SYS_DVBS2:
- *     Satellite TV: DVB-S2
+ *     Satellite TV: DVB-S2 and DVB-S2X
  * @SYS_TURBO:
  *     Satellite TV: DVB-S Turbo
  * @SYS_ISDBS:
        SYS_DVBT2,
        SYS_TURBO,
        SYS_DVBC_ANNEX_C,
+       SYS_DVBC2,
 };
 
 /* backward compatibility definitions for delivery systems */