.core_id = VENC_SYS,
 };
 
+static const struct mtk_vcodec_enc_pdata mt8192_pdata = {
+       .chip = MTK_MT8192,
+       .uses_ext = true,
+       /* MT8192 supports the same capture formats as MT8183 */
+       .capture_formats = mtk_video_formats_capture_mt8183,
+       .num_capture_formats = ARRAY_SIZE(mtk_video_formats_capture_mt8183),
+       /* MT8192 supports the same output formats as MT8173 */
+       .output_formats = mtk_video_formats_output_mt8173,
+       .num_output_formats = ARRAY_SIZE(mtk_video_formats_output_mt8173),
+       .min_bitrate = 64,
+       .max_bitrate = 100000000,
+       .core_id = VENC_SYS,
+};
 static const struct of_device_id mtk_vcodec_enc_match[] = {
        {.compatible = "mediatek,mt8173-vcodec-enc",
                        .data = &mt8173_avc_pdata},
        {.compatible = "mediatek,mt8173-vcodec-enc-vp8",
                        .data = &mt8173_vp8_pdata},
        {.compatible = "mediatek,mt8183-vcodec-enc", .data = &mt8183_pdata},
+       {.compatible = "mediatek,mt8192-vcodec-enc", .data = &mt8192_pdata},
        {},
 };
 MODULE_DEVICE_TABLE(of, mtk_vcodec_enc_match);