summaryrefslogtreecommitdiffstats
path: root/src/soc
diff options
context:
space:
mode:
authorBo-Chen Chen <rex-bc.chen@mediatek.com>2022-11-23 17:22:19 +0800
committerFelix Held <felix-coreboot@felixheld.de>2022-12-05 14:25:00 +0000
commitb1e7adeca160066052047462cb1f936cf68d873e (patch)
tree8b3867b9d6b0129f272dc605be8374e7444f4701 /src/soc
parentf9679c42876bab145f1b7a2a2e6e1eb5331fa418 (diff)
downloadcoreboot-b1e7adeca160066052047462cb1f936cf68d873e.tar.gz
coreboot-b1e7adeca160066052047462cb1f936cf68d873e.tar.bz2
coreboot-b1e7adeca160066052047462cb1f936cf68d873e.zip
soc/mediatek/mt8188: Add display data path for MIPI output
For geralt project, we also support MIPI panel as our firmware display. So add this patch to configure ddp to choose eDP display or MIPI panel display. BUG=b:244208960 TEST=test firmware display pass for both eDP and MIPI panel on MT8188 EVB. Change-Id: I06f38b1889811274588c26e9284da4d502acf38b Signed-off-by: Bo-Chen Chen <rex-bc.chen@mediatek.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70181 Reviewed-by: Yidi Lin <yidilin@google.com> Reviewed-by: Yu-Ping Wu <yupingso@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc')
-rw-r--r--src/soc/mediatek/mt8188/ddp.c40
-rw-r--r--src/soc/mediatek/mt8188/include/soc/ddp.h13
2 files changed, 36 insertions, 17 deletions
diff --git a/src/soc/mediatek/mt8188/ddp.c b/src/soc/mediatek/mt8188/ddp.c
index 8d2d43ad5de8..ce14fa7800be 100644
--- a/src/soc/mediatek/mt8188/ddp.c
+++ b/src/soc/mediatek/mt8188/ddp.c
@@ -6,24 +6,36 @@
#include <soc/addressmap.h>
#include <soc/ddp.h>
-static void disp_config_main_path_connection(void)
+static void disp_config_main_path_connection(enum disp_path_sel path)
{
/* ovl0 */
write32(&mmsys_cfg->mmsys_ovl_mout_en,
DISP_OVL0_TO_DISP_RDMA0);
- write32(&mmsys_cfg->mmsys_dp_intf0_sel_in,
- SEL_IN_DP_INTF0_FROM_DISP_DITHER0);
- write32(&mmsys_cfg->mmsys_dither0_sel_out,
- SEL_OUT_DISP_DITHER0_TO_DP_INTF0);
+
+ if (path == DISP_PATH_EDP) {
+ write32(&mmsys_cfg->mmsys_dp_intf0_sel_in,
+ SEL_IN_DP_INTF0_FROM_DISP_DITHER0);
+ write32(&mmsys_cfg->mmsys_dither0_sel_out,
+ SEL_OUT_DISP_DITHER0_TO_DP_INTF0);
+ } else {
+ write32(&mmsys_cfg->mmsys_dsi0_sel_in,
+ SEL_IN_DSI0_FROM_DISP_DITHER0);
+ write32(&mmsys_cfg->mmsys_dither0_sel_out,
+ SEL_OUT_DISP_DITHER0_TO_DSI0);
+ }
}
-static void disp_config_main_path_mutex(void)
+static void disp_config_main_path_mutex(enum disp_path_sel path)
{
write32(&disp_mutex->mutex[0].mod, MUTEX_MOD_MAIN_PATH);
- /* Clock source from DP_INTF0 */
- write32(&disp_mutex->mutex[0].ctl,
- MUTEX_SOF_DP_INTF0 | (MUTEX_SOF_DP_INTF0 << 7));
+ if (path == DISP_PATH_EDP)
+ write32(&disp_mutex->mutex[0].ctl,
+ MUTEX_SOF_DP_INTF0 | (MUTEX_SOF_DP_INTF0 << 7));
+ else
+ write32(&disp_mutex->mutex[0].ctl,
+ MUTEX_SOF_DSI0 | (MUTEX_SOF_DSI0 << 7));
+
write32(&disp_mutex->mutex[0].en, BIT(0));
}
@@ -94,7 +106,7 @@ static void dither_config(u32 width, u32 height)
write32(&regs->en, PQ_EN);
}
-static void main_disp_path_setup(u32 width, u32 height, u32 vrefresh)
+static void main_disp_path_setup(u32 width, u32 height, u32 vrefresh, enum disp_path_sel path)
{
u32 idx;
const u32 pixel_clk = width * height * vrefresh;
@@ -114,8 +126,8 @@ static void main_disp_path_setup(u32 width, u32 height, u32 vrefresh)
gamma_config(width, height);
postmask_config(width, height);
dither_config(width, height);
- disp_config_main_path_connection();
- disp_config_main_path_mutex();
+ disp_config_main_path_connection(path);
+ disp_config_main_path_mutex(path);
}
static void disp_clock_on(void)
@@ -133,7 +145,7 @@ void mtk_ddp_init(void)
write32p(SMI_LARB0 + SMI_LARB_PORT_L0_OVL_RDMA0, 0);
}
-void mtk_ddp_mode_set(const struct edid *edid)
+void mtk_ddp_mode_set(const struct edid *edid, enum disp_path_sel path)
{
u32 fmt = OVL_INFMT_RGBA8888;
u32 bpp = edid->framebuffer_bits_per_pixel / 8;
@@ -156,7 +168,7 @@ void mtk_ddp_mode_set(const struct edid *edid)
__func__, vrefresh);
}
- main_disp_path_setup(width, height, vrefresh);
+ main_disp_path_setup(width, height, vrefresh, path);
rdma_start();
ovl_layer_config(fmt, bpp, width, height);
}
diff --git a/src/soc/mediatek/mt8188/include/soc/ddp.h b/src/soc/mediatek/mt8188/include/soc/ddp.h
index 26f015183f5c..475485eb623b 100644
--- a/src/soc/mediatek/mt8188/include/soc/ddp.h
+++ b/src/soc/mediatek/mt8188/include/soc/ddp.h
@@ -82,7 +82,8 @@ enum {
CG_CON0_DISP_AAL0 |
CG_CON0_DISP_GAMMA0 |
CG_CON0_DISP_DITHER0 |
- CG_CON0_DISP_DP_INTF0,
+ CG_CON0_DISP_DP_INTF0 |
+ CG_CON0_DISP_DSI0,
CG_CON0_ALL = 0xffffffff
};
@@ -122,7 +123,8 @@ enum {
CG_CON2_DPI_DPI0 = BIT(8),
CG_CON2_DP_INTF0 = BIT(16),
- CG_CON2_DISP_ALL = CG_CON2_DP_INTF0,
+ CG_CON2_DISP_ALL = CG_CON2_DSI_DSI0 |
+ CG_CON2_DP_INTF0,
CG_CON2_ALL = 0xffffffff
};
@@ -280,7 +282,12 @@ enum {
SMI_LARB_PORT_L0_OVL_RDMA0 = 0xF88,
};
+enum disp_path_sel {
+ DISP_PATH_EDP = 0,
+ DISP_PATH_MIPI,
+};
+
void mtk_ddp_init(void);
-void mtk_ddp_mode_set(const struct edid *edid);
+void mtk_ddp_mode_set(const struct edid *edid, enum disp_path_sel);
#endif