Adds PLP ID filtering for DVB-T2.
It is untested as I don't have any signal having PLP ID other than 0.
There is only 2 extra registers, 0x32 and 0x36 on bank2, that are
programmed for DVB-T2 but not for DVB-T and all the rest are
programmed similarly - so it is likely PLP.
Pridvorov reported successfully testing it in Russia with m-PLP streams,
on both Vladivostok and Moskow.
Tested-by: "Придворов Андрей (Pridvorov  Andrey)" <ua0lnj@bk.ru>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
        if (ret)
                goto err;
 
+       /* PLP */
+       if (c->delivery_system == SYS_DVBT2) {
+               ret = regmap_write(dev->regmap[2], 0x36, c->stream_id);
+               if (ret)
+                       goto err;
+       }
+
        /* Reset FSM */
        ret = regmap_write(dev->regmap[2], 0xf8, 0x9f);
        if (ret)
                        FE_CAN_GUARD_INTERVAL_AUTO     |
                        FE_CAN_HIERARCHY_AUTO          |
                        FE_CAN_MUTE_TS                 |
-                       FE_CAN_2G_MODULATION
+                       FE_CAN_2G_MODULATION           |
+                       FE_CAN_MULTISTREAM
        },
 
        .get_tune_settings = mn88473_get_tune_settings,