We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44b0712 commit 38eaef2Copy full SHA for 38eaef2
drivers/gpu/drm/mediatek/mtk_dpi.c
@@ -699,6 +699,12 @@ static const struct mtk_dpi_conf mt8183_conf = {
699
.max_clock_khz = 100000,
700
};
701
702
+static const struct mtk_dpi_conf mt8192_conf = {
703
+ .cal_factor = mt8183_calculate_factor,
704
+ .reg_h_fre_con = 0xe0,
705
+ .max_clock_khz = 150000,
706
+};
707
+
708
static int mtk_dpi_probe(struct platform_device *pdev)
709
{
710
struct device *dev = &pdev->dev;
@@ -817,6 +823,9 @@ static const struct of_device_id mtk_dpi_of_ids[] = {
817
823
{ .compatible = "mediatek,mt8183-dpi",
818
824
.data = &mt8183_conf,
819
825
},
826
+ { .compatible = "mediatek,mt8192-dpi",
827
+ .data = &mt8192_conf,
828
+ },
820
829
{ },
821
830
822
831
0 commit comments