blob: fa73ddb4e6852bcb352ff48ad307e9bfc843e9b2 [file] [log] [blame]
Angel Ponse67ab182020-04-04 18:51:11 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +08002
3#include <assert.h>
4#include <device/mmio.h>
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +08005#include <delay.h>
6#include <soc/dsi.h>
7#include <soc/pll.h>
Elyes HAOUAS29c4d1b2020-07-22 11:45:07 +02008#include <types.h>
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +08009
Yu-Ping Wu443fbd72020-02-11 18:33:57 +080010void mtk_dsi_configure_mipi_tx(u32 data_rate, u32 lanes)
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080011{
Yu-Ping Wu443fbd72020-02-11 18:33:57 +080012 unsigned int txdiv0, txdiv1;
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080013 u64 pcw;
14
Yu-Ping Wu443fbd72020-02-11 18:33:57 +080015 if (data_rate >= 2000 * MHz) {
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080016 txdiv0 = 0;
17 txdiv1 = 0;
Yu-Ping Wu443fbd72020-02-11 18:33:57 +080018 } else if (data_rate >= 1000 * MHz) {
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080019 txdiv0 = 1;
20 txdiv1 = 0;
Yu-Ping Wu443fbd72020-02-11 18:33:57 +080021 } else if (data_rate >= 500 * MHz) {
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080022 txdiv0 = 2;
23 txdiv1 = 0;
Yu-Ping Wu443fbd72020-02-11 18:33:57 +080024 } else if (data_rate > 250 * MHz) {
25 /* (data_rate == 250MHz) is a special case that should go to the
26 else-block below (txdiv0 = 4) */
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080027 txdiv0 = 3;
28 txdiv1 = 0;
29 } else {
30 /* MIN = 125 */
Yu-Ping Wu443fbd72020-02-11 18:33:57 +080031 assert(data_rate >= MTK_DSI_DATA_RATE_MIN_MHZ * MHz);
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080032 txdiv0 = 4;
33 txdiv1 = 0;
34 }
35
Julius Werner55009af2019-12-02 22:03:27 -080036 clrbits32(&mipi_tx->pll_con4, BIT(11) | BIT(10));
37 setbits32(&mipi_tx->pll_pwr, AD_DSI_PLL_SDM_PWR_ON);
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080038 udelay(30);
Julius Werner55009af2019-12-02 22:03:27 -080039 clrbits32(&mipi_tx->pll_pwr, AD_DSI_PLL_SDM_ISO_EN);
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080040
41 pcw = (u64)data_rate * (1 << txdiv0) * (1 << txdiv1);
42 pcw <<= 24;
Yu-Ping Wu443fbd72020-02-11 18:33:57 +080043 pcw /= CLK26M_HZ;
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080044
45 write32(&mipi_tx->pll_con0, pcw);
Julius Werner55009af2019-12-02 22:03:27 -080046 clrsetbits32(&mipi_tx->pll_con1, RG_DSI_PLL_POSDIV, txdiv0 << 8);
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080047 udelay(30);
Julius Werner55009af2019-12-02 22:03:27 -080048 setbits32(&mipi_tx->pll_con1, RG_DSI_PLL_EN);
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080049
50 /* BG_LPF_EN / BG_CORE_EN */
51 write32(&mipi_tx->lane_con, 0x3fff0180);
52 udelay(40);
53 write32(&mipi_tx->lane_con, 0x3fff00c0);
54
55 /* Switch OFF each Lane */
Julius Werner55009af2019-12-02 22:03:27 -080056 clrbits32(&mipi_tx->d0_sw_ctl_en, DSI_SW_CTL_EN);
57 clrbits32(&mipi_tx->d1_sw_ctl_en, DSI_SW_CTL_EN);
58 clrbits32(&mipi_tx->d2_sw_ctl_en, DSI_SW_CTL_EN);
59 clrbits32(&mipi_tx->d3_sw_ctl_en, DSI_SW_CTL_EN);
60 clrbits32(&mipi_tx->ck_sw_ctl_en, DSI_SW_CTL_EN);
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080061
Julius Werner55009af2019-12-02 22:03:27 -080062 setbits32(&mipi_tx->ck_ckmode_en, DSI_CK_CKMODE_EN);
Hung-Te Lin32ddc0d2019-08-07 10:58:36 +080063}
64
65void mtk_dsi_reset(void)
66{
67 write32(&dsi0->dsi_force_commit,
68 DSI_FORCE_COMMIT_USE_MMSYS | DSI_FORCE_COMMIT_ALWAYS);
69 write32(&dsi0->dsi_con_ctrl, 1);
70 write32(&dsi0->dsi_con_ctrl, 0);
71}