Linux Audio

Check our new training course

Loading...
v6.13.7
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 * Copyright (c) 2015 MediaTek Inc.
   4 */
   5
   6#include <linux/bitfield.h>
   7#include <linux/clk.h>
   8#include <linux/component.h>
   9#include <linux/iopoll.h>
  10#include <linux/irq.h>
  11#include <linux/of.h>
  12#include <linux/of_platform.h>
  13#include <linux/phy/phy.h>
  14#include <linux/platform_device.h>
  15#include <linux/reset.h>
  16#include <linux/units.h>
  17
  18#include <video/mipi_display.h>
  19#include <video/videomode.h>
  20
  21#include <drm/drm_atomic_helper.h>
  22#include <drm/drm_bridge.h>
  23#include <drm/drm_bridge_connector.h>
  24#include <drm/drm_mipi_dsi.h>
  25#include <drm/drm_of.h>
  26#include <drm/drm_panel.h>
  27#include <drm/drm_print.h>
  28#include <drm/drm_probe_helper.h>
  29#include <drm/drm_simple_kms_helper.h>
  30
  31#include "mtk_ddp_comp.h"
  32#include "mtk_disp_drv.h"
  33#include "mtk_drm_drv.h"
  34
  35#define DSI_START		0x00
  36
  37#define DSI_INTEN		0x08
  38
  39#define DSI_INTSTA		0x0c
  40#define LPRX_RD_RDY_INT_FLAG		BIT(0)
  41#define CMD_DONE_INT_FLAG		BIT(1)
  42#define TE_RDY_INT_FLAG			BIT(2)
  43#define VM_DONE_INT_FLAG		BIT(3)
  44#define EXT_TE_RDY_INT_FLAG		BIT(4)
  45#define DSI_BUSY			BIT(31)
  46
  47#define DSI_CON_CTRL		0x10
  48#define DSI_RESET			BIT(0)
  49#define DSI_EN				BIT(1)
  50#define DPHY_RESET			BIT(2)
  51
  52#define DSI_MODE_CTRL		0x14
  53#define MODE				(3)
  54#define CMD_MODE			0
  55#define SYNC_PULSE_MODE			1
  56#define SYNC_EVENT_MODE			2
  57#define BURST_MODE			3
  58#define FRM_MODE			BIT(16)
  59#define MIX_MODE			BIT(17)
  60
  61#define DSI_TXRX_CTRL		0x18
  62#define VC_NUM				BIT(1)
  63#define LANE_NUM			GENMASK(5, 2)
  64#define DIS_EOT				BIT(6)
  65#define NULL_EN				BIT(7)
  66#define TE_FREERUN			BIT(8)
  67#define EXT_TE_EN			BIT(9)
  68#define EXT_TE_EDGE			BIT(10)
  69#define MAX_RTN_SIZE			GENMASK(15, 12)
  70#define HSTX_CKLP_EN			BIT(16)
  71
  72#define DSI_PSCTRL		0x1c
  73#define DSI_PS_WC			GENMASK(13, 0)
  74#define DSI_PS_SEL			GENMASK(17, 16)
  75#define PACKED_PS_16BIT_RGB565		0
  76#define PACKED_PS_18BIT_RGB666		1
  77#define LOOSELY_PS_24BIT_RGB666		2
  78#define PACKED_PS_24BIT_RGB888		3
  79
  80#define DSI_VSA_NL		0x20
  81#define DSI_VBP_NL		0x24
  82#define DSI_VFP_NL		0x28
  83#define DSI_VACT_NL		0x2C
  84#define VACT_NL				GENMASK(14, 0)
  85#define DSI_SIZE_CON		0x38
  86#define DSI_HEIGHT				GENMASK(30, 16)
  87#define DSI_WIDTH				GENMASK(14, 0)
  88#define DSI_HSA_WC		0x50
  89#define DSI_HBP_WC		0x54
  90#define DSI_HFP_WC		0x58
  91#define HFP_HS_VB_PS_WC		GENMASK(30, 16)
  92#define HFP_HS_EN			BIT(31)
  93
  94#define DSI_CMDQ_SIZE		0x60
  95#define CMDQ_SIZE			0x3f
  96#define CMDQ_SIZE_SEL		BIT(15)
  97
  98#define DSI_HSTX_CKL_WC		0x64
  99#define HSTX_CKL_WC			GENMASK(15, 2)
 100
 101#define DSI_RX_DATA0		0x74
 102#define DSI_RX_DATA1		0x78
 103#define DSI_RX_DATA2		0x7c
 104#define DSI_RX_DATA3		0x80
 105
 106#define DSI_RACK		0x84
 107#define RACK				BIT(0)
 108
 109#define DSI_PHY_LCCON		0x104
 110#define LC_HS_TX_EN			BIT(0)
 111#define LC_ULPM_EN			BIT(1)
 112#define LC_WAKEUP_EN			BIT(2)
 113
 114#define DSI_PHY_LD0CON		0x108
 115#define LD0_HS_TX_EN			BIT(0)
 116#define LD0_ULPM_EN			BIT(1)
 117#define LD0_WAKEUP_EN			BIT(2)
 118
 119#define DSI_PHY_TIMECON0	0x110
 120#define LPX				GENMASK(7, 0)
 121#define HS_PREP				GENMASK(15, 8)
 122#define HS_ZERO				GENMASK(23, 16)
 123#define HS_TRAIL			GENMASK(31, 24)
 124
 125#define DSI_PHY_TIMECON1	0x114
 126#define TA_GO				GENMASK(7, 0)
 127#define TA_SURE				GENMASK(15, 8)
 128#define TA_GET				GENMASK(23, 16)
 129#define DA_HS_EXIT			GENMASK(31, 24)
 130
 131#define DSI_PHY_TIMECON2	0x118
 132#define CONT_DET			GENMASK(7, 0)
 133#define DA_HS_SYNC			GENMASK(15, 8)
 134#define CLK_ZERO			GENMASK(23, 16)
 135#define CLK_TRAIL			GENMASK(31, 24)
 136
 137#define DSI_PHY_TIMECON3	0x11c
 138#define CLK_HS_PREP			GENMASK(7, 0)
 139#define CLK_HS_POST			GENMASK(15, 8)
 140#define CLK_HS_EXIT			GENMASK(23, 16)
 141
 142/* DSI_VM_CMD_CON */
 143#define VM_CMD_EN			BIT(0)
 144#define TS_VFP_EN			BIT(5)
 145
 146/* DSI_SHADOW_DEBUG */
 147#define FORCE_COMMIT			BIT(0)
 148#define BYPASS_SHADOW			BIT(1)
 149
 150/* CMDQ related bits */
 151#define CONFIG				GENMASK(7, 0)
 152#define SHORT_PACKET			0
 153#define LONG_PACKET			2
 154#define BTA				BIT(2)
 155#define DATA_ID				GENMASK(15, 8)
 156#define DATA_0				GENMASK(23, 16)
 157#define DATA_1				GENMASK(31, 24)
 
 
 
 
 
 
 158
 159#define NS_TO_CYCLE(n, c)    ((n) / (c) + (((n) % (c)) ? 1 : 0))
 160
 161#define MTK_DSI_HOST_IS_READ(type) \
 162	((type == MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM) || \
 163	(type == MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM) || \
 164	(type == MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM) || \
 165	(type == MIPI_DSI_DCS_READ))
 166
 167struct mtk_phy_timing {
 168	u32 lpx;
 169	u32 da_hs_prepare;
 170	u32 da_hs_zero;
 171	u32 da_hs_trail;
 172
 173	u32 ta_go;
 174	u32 ta_sure;
 175	u32 ta_get;
 176	u32 da_hs_exit;
 177
 178	u32 clk_hs_zero;
 179	u32 clk_hs_trail;
 180
 181	u32 clk_hs_prepare;
 182	u32 clk_hs_post;
 183	u32 clk_hs_exit;
 184};
 185
 186struct phy;
 187
 188struct mtk_dsi_driver_data {
 189	const u32 reg_cmdq_off;
 190	const u32 reg_vm_cmd_off;
 191	const u32 reg_shadow_dbg_off;
 192	bool has_shadow_ctl;
 193	bool has_size_ctl;
 194	bool cmdq_long_packet_ctl;
 195	bool support_per_frame_lp;
 196};
 197
 198struct mtk_dsi {
 
 199	struct device *dev;
 200	struct mipi_dsi_host host;
 201	struct drm_encoder encoder;
 202	struct drm_bridge bridge;
 203	struct drm_bridge *next_bridge;
 204	struct drm_connector *connector;
 205	struct phy *phy;
 206
 207	void __iomem *regs;
 208
 209	struct clk *engine_clk;
 210	struct clk *digital_clk;
 211	struct clk *hs_clk;
 212
 213	u32 data_rate;
 214
 215	unsigned long mode_flags;
 216	enum mipi_dsi_pixel_format format;
 217	unsigned int lanes;
 218	struct videomode vm;
 219	struct mtk_phy_timing phy_timing;
 220	int refcount;
 221	bool enabled;
 222	bool lanes_ready;
 223	u32 irq_data;
 224	wait_queue_head_t irq_wait_queue;
 225	const struct mtk_dsi_driver_data *driver_data;
 226};
 227
 228static inline struct mtk_dsi *bridge_to_dsi(struct drm_bridge *b)
 229{
 230	return container_of(b, struct mtk_dsi, bridge);
 
 
 
 
 
 231}
 232
 233static inline struct mtk_dsi *host_to_dsi(struct mipi_dsi_host *h)
 234{
 235	return container_of(h, struct mtk_dsi, host);
 236}
 237
 238static void mtk_dsi_mask(struct mtk_dsi *dsi, u32 offset, u32 mask, u32 data)
 239{
 240	u32 temp = readl(dsi->regs + offset);
 241
 242	writel((temp & ~mask) | (data & mask), dsi->regs + offset);
 243}
 244
 245static void mtk_dsi_phy_timconfig(struct mtk_dsi *dsi)
 246{
 247	u32 timcon0, timcon1, timcon2, timcon3;
 248	u32 data_rate_mhz = DIV_ROUND_UP(dsi->data_rate, HZ_PER_MHZ);
 249	struct mtk_phy_timing *timing = &dsi->phy_timing;
 250
 251	timing->lpx = (60 * data_rate_mhz / (8 * 1000)) + 1;
 252	timing->da_hs_prepare = (80 * data_rate_mhz + 4 * 1000) / 8000;
 253	timing->da_hs_zero = (170 * data_rate_mhz + 10 * 1000) / 8000 + 1 -
 254			     timing->da_hs_prepare;
 255	timing->da_hs_trail = timing->da_hs_prepare + 1;
 256
 257	timing->ta_go = 4 * timing->lpx - 2;
 258	timing->ta_sure = timing->lpx + 2;
 259	timing->ta_get = 4 * timing->lpx;
 260	timing->da_hs_exit = 2 * timing->lpx + 1;
 261
 262	timing->clk_hs_prepare = 70 * data_rate_mhz / (8 * 1000);
 263	timing->clk_hs_post = timing->clk_hs_prepare + 8;
 264	timing->clk_hs_trail = timing->clk_hs_prepare;
 265	timing->clk_hs_zero = timing->clk_hs_trail * 4;
 266	timing->clk_hs_exit = 2 * timing->clk_hs_trail;
 267
 268	timcon0 = FIELD_PREP(LPX, timing->lpx) |
 269		  FIELD_PREP(HS_PREP, timing->da_hs_prepare) |
 270		  FIELD_PREP(HS_ZERO, timing->da_hs_zero) |
 271		  FIELD_PREP(HS_TRAIL, timing->da_hs_trail);
 272
 273	timcon1 = FIELD_PREP(TA_GO, timing->ta_go) |
 274		  FIELD_PREP(TA_SURE, timing->ta_sure) |
 275		  FIELD_PREP(TA_GET, timing->ta_get) |
 276		  FIELD_PREP(DA_HS_EXIT, timing->da_hs_exit);
 277
 278	timcon2 = FIELD_PREP(DA_HS_SYNC, 1) |
 279		  FIELD_PREP(CLK_ZERO, timing->clk_hs_zero) |
 280		  FIELD_PREP(CLK_TRAIL, timing->clk_hs_trail);
 281
 282	timcon3 = FIELD_PREP(CLK_HS_PREP, timing->clk_hs_prepare) |
 283		  FIELD_PREP(CLK_HS_POST, timing->clk_hs_post) |
 284		  FIELD_PREP(CLK_HS_EXIT, timing->clk_hs_exit);
 285
 286	writel(timcon0, dsi->regs + DSI_PHY_TIMECON0);
 287	writel(timcon1, dsi->regs + DSI_PHY_TIMECON1);
 288	writel(timcon2, dsi->regs + DSI_PHY_TIMECON2);
 289	writel(timcon3, dsi->regs + DSI_PHY_TIMECON3);
 290}
 291
 292static void mtk_dsi_enable(struct mtk_dsi *dsi)
 293{
 294	mtk_dsi_mask(dsi, DSI_CON_CTRL, DSI_EN, DSI_EN);
 295}
 296
 297static void mtk_dsi_disable(struct mtk_dsi *dsi)
 298{
 299	mtk_dsi_mask(dsi, DSI_CON_CTRL, DSI_EN, 0);
 300}
 301
 302static void mtk_dsi_reset_engine(struct mtk_dsi *dsi)
 303{
 304	mtk_dsi_mask(dsi, DSI_CON_CTRL, DSI_RESET, DSI_RESET);
 305	mtk_dsi_mask(dsi, DSI_CON_CTRL, DSI_RESET, 0);
 306}
 307
 308static void mtk_dsi_reset_dphy(struct mtk_dsi *dsi)
 309{
 310	mtk_dsi_mask(dsi, DSI_CON_CTRL, DPHY_RESET, DPHY_RESET);
 311	mtk_dsi_mask(dsi, DSI_CON_CTRL, DPHY_RESET, 0);
 312}
 313
 314static void mtk_dsi_clk_ulp_mode_enter(struct mtk_dsi *dsi)
 315{
 316	mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_HS_TX_EN, 0);
 317	mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_ULPM_EN, 0);
 318}
 319
 320static void mtk_dsi_clk_ulp_mode_leave(struct mtk_dsi *dsi)
 321{
 322	mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_ULPM_EN, 0);
 323	mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_WAKEUP_EN, LC_WAKEUP_EN);
 324	mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_WAKEUP_EN, 0);
 325}
 326
 327static void mtk_dsi_lane0_ulp_mode_enter(struct mtk_dsi *dsi)
 328{
 329	mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_HS_TX_EN, 0);
 330	mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_ULPM_EN, 0);
 331}
 332
 333static void mtk_dsi_lane0_ulp_mode_leave(struct mtk_dsi *dsi)
 334{
 335	mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_ULPM_EN, 0);
 336	mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_WAKEUP_EN, LD0_WAKEUP_EN);
 337	mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_WAKEUP_EN, 0);
 338}
 339
 340static bool mtk_dsi_clk_hs_state(struct mtk_dsi *dsi)
 341{
 342	return readl(dsi->regs + DSI_PHY_LCCON) & LC_HS_TX_EN;
 
 
 
 343}
 344
 345static void mtk_dsi_clk_hs_mode(struct mtk_dsi *dsi, bool enter)
 346{
 347	if (enter && !mtk_dsi_clk_hs_state(dsi))
 348		mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_HS_TX_EN, LC_HS_TX_EN);
 349	else if (!enter && mtk_dsi_clk_hs_state(dsi))
 350		mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_HS_TX_EN, 0);
 351}
 352
 353static void mtk_dsi_set_mode(struct mtk_dsi *dsi)
 354{
 355	u32 vid_mode = CMD_MODE;
 356
 357	if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO) {
 358		if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST)
 359			vid_mode = BURST_MODE;
 360		else if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE)
 361			vid_mode = SYNC_PULSE_MODE;
 362		else
 363			vid_mode = SYNC_EVENT_MODE;
 364	}
 365
 366	writel(vid_mode, dsi->regs + DSI_MODE_CTRL);
 367}
 368
 369static void mtk_dsi_set_vm_cmd(struct mtk_dsi *dsi)
 370{
 371	mtk_dsi_mask(dsi, dsi->driver_data->reg_vm_cmd_off, VM_CMD_EN, VM_CMD_EN);
 372	mtk_dsi_mask(dsi, dsi->driver_data->reg_vm_cmd_off, TS_VFP_EN, TS_VFP_EN);
 373}
 374
 375static void mtk_dsi_rxtx_control(struct mtk_dsi *dsi)
 376{
 377	u32 regval, tmp_reg = 0;
 378	u8 i;
 379
 380	/* Number of DSI lanes (max 4 lanes), each bit enables one DSI lane. */
 381	for (i = 0; i < dsi->lanes; i++)
 382		tmp_reg |= BIT(i);
 383
 384	regval = FIELD_PREP(LANE_NUM, tmp_reg);
 385
 386	if (dsi->mode_flags & MIPI_DSI_CLOCK_NON_CONTINUOUS)
 387		regval |= HSTX_CKLP_EN;
 388
 389	if (dsi->mode_flags & MIPI_DSI_MODE_NO_EOT_PACKET)
 390		regval |= DIS_EOT;
 391
 392	writel(regval, dsi->regs + DSI_TXRX_CTRL);
 393}
 394
 395static void mtk_dsi_ps_control(struct mtk_dsi *dsi, bool config_vact)
 396{
 397	u32 dsi_buf_bpp, ps_val, ps_wc, vact_nl;
 398
 399	if (dsi->format == MIPI_DSI_FMT_RGB565)
 400		dsi_buf_bpp = 2;
 401	else
 402		dsi_buf_bpp = 3;
 403
 404	/* Word count */
 405	ps_wc = FIELD_PREP(DSI_PS_WC, dsi->vm.hactive * dsi_buf_bpp);
 406	ps_val = ps_wc;
 407
 408	/* Pixel Stream type */
 409	switch (dsi->format) {
 410	default:
 411		fallthrough;
 412	case MIPI_DSI_FMT_RGB888:
 413		ps_val |= FIELD_PREP(DSI_PS_SEL, PACKED_PS_24BIT_RGB888);
 414		break;
 415	case MIPI_DSI_FMT_RGB666:
 416		ps_val |= FIELD_PREP(DSI_PS_SEL, LOOSELY_PS_24BIT_RGB666);
 417		break;
 418	case MIPI_DSI_FMT_RGB666_PACKED:
 419		ps_val |= FIELD_PREP(DSI_PS_SEL, PACKED_PS_18BIT_RGB666);
 420		break;
 421	case MIPI_DSI_FMT_RGB565:
 422		ps_val |= FIELD_PREP(DSI_PS_SEL, PACKED_PS_16BIT_RGB565);
 423		break;
 424	}
 425
 426	if (config_vact) {
 427		vact_nl = FIELD_PREP(VACT_NL, dsi->vm.vactive);
 428		writel(vact_nl, dsi->regs + DSI_VACT_NL);
 429		writel(ps_wc, dsi->regs + DSI_HSTX_CKL_WC);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 430	}
 431	writel(ps_val, dsi->regs + DSI_PSCTRL);
 
 
 
 
 432}
 433
 434static void mtk_dsi_config_vdo_timing_per_frame_lp(struct mtk_dsi *dsi)
 435{
 436	u32 horizontal_sync_active_byte;
 437	u32 horizontal_backporch_byte;
 438	u32 horizontal_frontporch_byte;
 439	u32 hfp_byte_adjust, v_active_adjust;
 440	u32 cklp_wc_min_adjust, cklp_wc_max_adjust;
 441	u32 dsi_tmp_buf_bpp;
 442	unsigned int da_hs_trail;
 443	unsigned int ps_wc, hs_vb_ps_wc;
 444	u32 v_active_roundup, hstx_cklp_wc;
 445	u32 hstx_cklp_wc_max, hstx_cklp_wc_min;
 446	struct videomode *vm = &dsi->vm;
 447
 448	if (dsi->format == MIPI_DSI_FMT_RGB565)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 449		dsi_tmp_buf_bpp = 2;
 450	else
 
 
 451		dsi_tmp_buf_bpp = 3;
 452
 453	da_hs_trail = dsi->phy_timing.da_hs_trail;
 454	ps_wc = vm->hactive * dsi_tmp_buf_bpp;
 455
 456	if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE) {
 457		horizontal_sync_active_byte =
 458			vm->hsync_len * dsi_tmp_buf_bpp - 10;
 459		horizontal_backporch_byte =
 460			vm->hback_porch * dsi_tmp_buf_bpp - 10;
 461		hfp_byte_adjust = 12;
 462		v_active_adjust = 32 + horizontal_sync_active_byte;
 463		cklp_wc_min_adjust = 12 + 2 + 4 + horizontal_sync_active_byte;
 464		cklp_wc_max_adjust = 20 + 6 + 4 + horizontal_sync_active_byte;
 465	} else {
 466		horizontal_sync_active_byte = vm->hsync_len * dsi_tmp_buf_bpp - 4;
 467		horizontal_backporch_byte = (vm->hback_porch + vm->hsync_len) *
 468			dsi_tmp_buf_bpp - 10;
 469		cklp_wc_min_adjust = 4;
 470		cklp_wc_max_adjust = 12 + 4 + 4;
 471		if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST) {
 472			hfp_byte_adjust = 18;
 473			v_active_adjust = 28;
 474		} else {
 475			hfp_byte_adjust = 12;
 476			v_active_adjust = 22;
 477		}
 478	}
 479	horizontal_frontporch_byte = vm->hfront_porch * dsi_tmp_buf_bpp - hfp_byte_adjust;
 480	v_active_roundup = (v_active_adjust + horizontal_backporch_byte + ps_wc +
 481			   horizontal_frontporch_byte) % dsi->lanes;
 482	if (v_active_roundup)
 483		horizontal_backporch_byte += dsi->lanes - v_active_roundup;
 484	hstx_cklp_wc_min = (DIV_ROUND_UP(cklp_wc_min_adjust, dsi->lanes) + da_hs_trail + 1)
 485			   * dsi->lanes / 6 - 1;
 486	hstx_cklp_wc_max = (DIV_ROUND_UP((cklp_wc_max_adjust + horizontal_backporch_byte +
 487			   ps_wc), dsi->lanes) + da_hs_trail + 1) * dsi->lanes / 6 - 1;
 488
 489	hstx_cklp_wc = FIELD_PREP(HSTX_CKL_WC, (hstx_cklp_wc_min + hstx_cklp_wc_max) / 2);
 490	writel(hstx_cklp_wc, dsi->regs + DSI_HSTX_CKL_WC);
 491
 492	hs_vb_ps_wc = ps_wc - (dsi->phy_timing.lpx + dsi->phy_timing.da_hs_exit +
 493		      dsi->phy_timing.da_hs_prepare + dsi->phy_timing.da_hs_zero + 2) * dsi->lanes;
 494	horizontal_frontporch_byte |= FIELD_PREP(HFP_HS_EN, 1) |
 495				      FIELD_PREP(HFP_HS_VB_PS_WC, hs_vb_ps_wc);
 496
 497	writel(horizontal_sync_active_byte, dsi->regs + DSI_HSA_WC);
 498	writel(horizontal_backporch_byte, dsi->regs + DSI_HBP_WC);
 499	writel(horizontal_frontporch_byte, dsi->regs + DSI_HFP_WC);
 500}
 501
 502static void mtk_dsi_config_vdo_timing_per_line_lp(struct mtk_dsi *dsi)
 503{
 504	u32 horizontal_sync_active_byte;
 505	u32 horizontal_backporch_byte;
 506	u32 horizontal_frontporch_byte;
 507	u32 horizontal_front_back_byte;
 508	u32 data_phy_cycles_byte;
 509	u32 dsi_tmp_buf_bpp, data_phy_cycles;
 510	u32 delta;
 511	struct mtk_phy_timing *timing = &dsi->phy_timing;
 512	struct videomode *vm = &dsi->vm;
 513
 514	if (dsi->format == MIPI_DSI_FMT_RGB565)
 515		dsi_tmp_buf_bpp = 2;
 516	else
 517		dsi_tmp_buf_bpp = 3;
 518
 
 
 
 
 
 519	horizontal_sync_active_byte = (vm->hsync_len * dsi_tmp_buf_bpp - 10);
 520
 521	if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE)
 522		horizontal_backporch_byte = vm->hback_porch * dsi_tmp_buf_bpp - 10;
 
 523	else
 524		horizontal_backporch_byte = (vm->hback_porch + vm->hsync_len) *
 525					    dsi_tmp_buf_bpp - 10;
 526
 527	data_phy_cycles = timing->lpx + timing->da_hs_prepare +
 528			  timing->da_hs_zero + timing->da_hs_exit + 3;
 529
 530	delta = dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST ? 18 : 12;
 531	delta += dsi->mode_flags & MIPI_DSI_MODE_NO_EOT_PACKET ? 0 : 2;
 532
 533	horizontal_frontporch_byte = vm->hfront_porch * dsi_tmp_buf_bpp;
 534	horizontal_front_back_byte = horizontal_frontporch_byte + horizontal_backporch_byte;
 535	data_phy_cycles_byte = data_phy_cycles * dsi->lanes + delta;
 536
 537	if (horizontal_front_back_byte > data_phy_cycles_byte) {
 538		horizontal_frontporch_byte -= data_phy_cycles_byte *
 539					      horizontal_frontporch_byte /
 540					      horizontal_front_back_byte;
 541
 542		horizontal_backporch_byte -= data_phy_cycles_byte *
 543					     horizontal_backporch_byte /
 544					     horizontal_front_back_byte;
 545	} else {
 546		DRM_WARN("HFP + HBP less than d-phy, FPS will under 60Hz\n");
 547	}
 548
 549	if ((dsi->mode_flags & MIPI_DSI_HS_PKT_END_ALIGNED) &&
 550	    (dsi->lanes == 4)) {
 551		horizontal_sync_active_byte =
 552			roundup(horizontal_sync_active_byte, dsi->lanes) - 2;
 553		horizontal_frontporch_byte =
 554			roundup(horizontal_frontporch_byte, dsi->lanes) - 2;
 555		horizontal_backporch_byte =
 556			roundup(horizontal_backporch_byte, dsi->lanes) - 2;
 557		horizontal_backporch_byte -=
 558			(vm->hactive * dsi_tmp_buf_bpp + 2) % dsi->lanes;
 559	}
 560
 561	writel(horizontal_sync_active_byte, dsi->regs + DSI_HSA_WC);
 562	writel(horizontal_backporch_byte, dsi->regs + DSI_HBP_WC);
 563	writel(horizontal_frontporch_byte, dsi->regs + DSI_HFP_WC);
 564}
 565
 566static void mtk_dsi_config_vdo_timing(struct mtk_dsi *dsi)
 567{
 568	struct videomode *vm = &dsi->vm;
 569
 570	writel(vm->vsync_len, dsi->regs + DSI_VSA_NL);
 571	writel(vm->vback_porch, dsi->regs + DSI_VBP_NL);
 572	writel(vm->vfront_porch, dsi->regs + DSI_VFP_NL);
 573	writel(vm->vactive, dsi->regs + DSI_VACT_NL);
 574
 575	if (dsi->driver_data->has_size_ctl)
 576		writel(FIELD_PREP(DSI_HEIGHT, vm->vactive) |
 577			FIELD_PREP(DSI_WIDTH, vm->hactive),
 578			dsi->regs + DSI_SIZE_CON);
 579
 580	if (dsi->driver_data->support_per_frame_lp)
 581		mtk_dsi_config_vdo_timing_per_frame_lp(dsi);
 582	else
 583		mtk_dsi_config_vdo_timing_per_line_lp(dsi);
 584
 585	mtk_dsi_ps_control(dsi, false);
 586}
 587
 588static void mtk_dsi_start(struct mtk_dsi *dsi)
 589{
 590	writel(0, dsi->regs + DSI_START);
 591	writel(1, dsi->regs + DSI_START);
 592}
 593
 594static void mtk_dsi_stop(struct mtk_dsi *dsi)
 595{
 596	writel(0, dsi->regs + DSI_START);
 597}
 598
 599static void mtk_dsi_set_cmd_mode(struct mtk_dsi *dsi)
 600{
 601	writel(CMD_MODE, dsi->regs + DSI_MODE_CTRL);
 602}
 603
 604static void mtk_dsi_set_interrupt_enable(struct mtk_dsi *dsi)
 605{
 606	u32 inten = LPRX_RD_RDY_INT_FLAG | CMD_DONE_INT_FLAG | VM_DONE_INT_FLAG;
 607
 608	writel(inten, dsi->regs + DSI_INTEN);
 609}
 610
 611static void mtk_dsi_irq_data_set(struct mtk_dsi *dsi, u32 irq_bit)
 612{
 613	dsi->irq_data |= irq_bit;
 614}
 615
 616static void mtk_dsi_irq_data_clear(struct mtk_dsi *dsi, u32 irq_bit)
 617{
 618	dsi->irq_data &= ~irq_bit;
 619}
 620
 621static s32 mtk_dsi_wait_for_irq_done(struct mtk_dsi *dsi, u32 irq_flag,
 622				     unsigned int timeout)
 623{
 624	s32 ret = 0;
 625	unsigned long jiffies = msecs_to_jiffies(timeout);
 626
 627	ret = wait_event_interruptible_timeout(dsi->irq_wait_queue,
 628					       dsi->irq_data & irq_flag,
 629					       jiffies);
 630	if (ret == 0) {
 631		DRM_WARN("Wait DSI IRQ(0x%08x) Timeout\n", irq_flag);
 632
 633		mtk_dsi_enable(dsi);
 634		mtk_dsi_reset_engine(dsi);
 635	}
 636
 637	return ret;
 638}
 639
 640static irqreturn_t mtk_dsi_irq(int irq, void *dev_id)
 641{
 642	struct mtk_dsi *dsi = dev_id;
 643	u32 status, tmp;
 644	u32 flag = LPRX_RD_RDY_INT_FLAG | CMD_DONE_INT_FLAG | VM_DONE_INT_FLAG;
 645
 646	status = readl(dsi->regs + DSI_INTSTA) & flag;
 647
 648	if (status) {
 649		do {
 650			mtk_dsi_mask(dsi, DSI_RACK, RACK, RACK);
 651			tmp = readl(dsi->regs + DSI_INTSTA);
 652		} while (tmp & DSI_BUSY);
 653
 654		mtk_dsi_mask(dsi, DSI_INTSTA, status, 0);
 655		mtk_dsi_irq_data_set(dsi, status);
 656		wake_up_interruptible(&dsi->irq_wait_queue);
 657	}
 658
 659	return IRQ_HANDLED;
 660}
 661
 662static s32 mtk_dsi_switch_to_cmd_mode(struct mtk_dsi *dsi, u8 irq_flag, u32 t)
 663{
 664	mtk_dsi_irq_data_clear(dsi, irq_flag);
 665	mtk_dsi_set_cmd_mode(dsi);
 666
 667	if (!mtk_dsi_wait_for_irq_done(dsi, irq_flag, t)) {
 668		DRM_ERROR("failed to switch cmd mode\n");
 669		return -ETIME;
 670	} else {
 671		return 0;
 672	}
 673}
 674
 675static int mtk_dsi_poweron(struct mtk_dsi *dsi)
 676{
 677	struct device *dev = dsi->host.dev;
 678	int ret;
 679	u32 bit_per_pixel;
 
 680
 681	if (++dsi->refcount != 1)
 682		return 0;
 683
 684	ret = mipi_dsi_pixel_format_to_bpp(dsi->format);
 685	if (ret < 0) {
 686		dev_err(dev, "Unknown MIPI DSI format %d\n", dsi->format);
 687		return ret;
 
 
 
 
 
 
 
 
 688	}
 689	bit_per_pixel = ret;
 690
 691	dsi->data_rate = DIV_ROUND_UP_ULL(dsi->vm.pixelclock * bit_per_pixel,
 692					  dsi->lanes);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 693
 694	ret = clk_set_rate(dsi->hs_clk, dsi->data_rate);
 695	if (ret < 0) {
 696		dev_err(dev, "Failed to set data rate: %d\n", ret);
 697		goto err_refcount;
 698	}
 699
 700	phy_power_on(dsi->phy);
 701
 702	ret = clk_prepare_enable(dsi->engine_clk);
 703	if (ret < 0) {
 704		dev_err(dev, "Failed to enable engine clock: %d\n", ret);
 705		goto err_phy_power_off;
 706	}
 707
 708	ret = clk_prepare_enable(dsi->digital_clk);
 709	if (ret < 0) {
 710		dev_err(dev, "Failed to enable digital clock: %d\n", ret);
 711		goto err_disable_engine_clk;
 712	}
 713
 714	mtk_dsi_enable(dsi);
 715
 716	if (dsi->driver_data->has_shadow_ctl)
 717		writel(FORCE_COMMIT | BYPASS_SHADOW,
 718		       dsi->regs + dsi->driver_data->reg_shadow_dbg_off);
 719
 720	mtk_dsi_reset_engine(dsi);
 721	mtk_dsi_phy_timconfig(dsi);
 722
 723	mtk_dsi_ps_control(dsi, true);
 
 724	mtk_dsi_set_vm_cmd(dsi);
 725	mtk_dsi_config_vdo_timing(dsi);
 726	mtk_dsi_set_interrupt_enable(dsi);
 727
 
 
 
 
 
 
 
 
 
 
 
 728	return 0;
 
 
 729err_disable_engine_clk:
 730	clk_disable_unprepare(dsi->engine_clk);
 731err_phy_power_off:
 732	phy_power_off(dsi->phy);
 733err_refcount:
 734	dsi->refcount--;
 735	return ret;
 736}
 737
 738static void mtk_dsi_poweroff(struct mtk_dsi *dsi)
 739{
 740	if (WARN_ON(dsi->refcount == 0))
 741		return;
 742
 743	if (--dsi->refcount != 0)
 744		return;
 745
 746	/*
 747	 * mtk_dsi_stop() and mtk_dsi_start() is asymmetric, since
 748	 * mtk_dsi_stop() should be called after mtk_crtc_atomic_disable(),
 749	 * which needs irq for vblank, and mtk_dsi_stop() will disable irq.
 750	 * mtk_dsi_start() needs to be called in mtk_output_dsi_enable(),
 751	 * after dsi is fully set.
 752	 */
 753	mtk_dsi_stop(dsi);
 754
 755	mtk_dsi_switch_to_cmd_mode(dsi, VM_DONE_INT_FLAG, 500);
 
 
 
 
 
 
 
 
 756	mtk_dsi_reset_engine(dsi);
 757	mtk_dsi_lane0_ulp_mode_enter(dsi);
 758	mtk_dsi_clk_ulp_mode_enter(dsi);
 759	/* set the lane number as 0 to pull down mipi */
 760	writel(0, dsi->regs + DSI_TXRX_CTRL);
 761
 762	mtk_dsi_disable(dsi);
 763
 764	clk_disable_unprepare(dsi->engine_clk);
 765	clk_disable_unprepare(dsi->digital_clk);
 766
 767	phy_power_off(dsi->phy);
 768
 769	dsi->lanes_ready = false;
 770}
 771
 772static void mtk_dsi_lane_ready(struct mtk_dsi *dsi)
 773{
 774	if (!dsi->lanes_ready) {
 775		dsi->lanes_ready = true;
 776		mtk_dsi_rxtx_control(dsi);
 777		usleep_range(30, 100);
 778		mtk_dsi_reset_dphy(dsi);
 779		mtk_dsi_clk_ulp_mode_leave(dsi);
 780		mtk_dsi_lane0_ulp_mode_leave(dsi);
 781		mtk_dsi_clk_hs_mode(dsi, 0);
 782		usleep_range(1000, 3000);
 783		/* The reaction time after pulling up the mipi signal for dsi_rx */
 784	}
 785}
 786
 787static void mtk_output_dsi_enable(struct mtk_dsi *dsi)
 788{
 
 
 789	if (dsi->enabled)
 790		return;
 791
 792	mtk_dsi_lane_ready(dsi);
 
 
 
 
 
 793	mtk_dsi_set_mode(dsi);
 794	mtk_dsi_clk_hs_mode(dsi, 1);
 795
 796	mtk_dsi_start(dsi);
 797
 
 
 
 
 
 
 
 798	dsi->enabled = true;
 
 
 
 
 
 799}
 800
 801static void mtk_output_dsi_disable(struct mtk_dsi *dsi)
 802{
 803	if (!dsi->enabled)
 804		return;
 805
 
 
 
 
 
 
 
 
 
 806	dsi->enabled = false;
 807}
 808
 809static int mtk_dsi_bridge_attach(struct drm_bridge *bridge,
 810				 enum drm_bridge_attach_flags flags)
 811{
 812	struct mtk_dsi *dsi = bridge_to_dsi(bridge);
 
 
 
 
 
 813
 814	/* Attach the panel or bridge to the dsi bridge */
 815	return drm_bridge_attach(bridge->encoder, dsi->next_bridge,
 816				 &dsi->bridge, flags);
 
 
 817}
 818
 819static void mtk_dsi_bridge_mode_set(struct drm_bridge *bridge,
 820				    const struct drm_display_mode *mode,
 821				    const struct drm_display_mode *adjusted)
 822{
 823	struct mtk_dsi *dsi = bridge_to_dsi(bridge);
 824
 825	drm_display_mode_to_videomode(adjusted, &dsi->vm);
 826}
 827
 828static void mtk_dsi_bridge_atomic_disable(struct drm_bridge *bridge,
 829					  struct drm_bridge_state *old_bridge_state)
 830{
 831	struct mtk_dsi *dsi = bridge_to_dsi(bridge);
 832
 833	mtk_output_dsi_disable(dsi);
 834}
 835
 836static void mtk_dsi_bridge_atomic_enable(struct drm_bridge *bridge,
 837					 struct drm_bridge_state *old_bridge_state)
 838{
 839	struct mtk_dsi *dsi = bridge_to_dsi(bridge);
 840
 841	if (dsi->refcount == 0)
 842		return;
 843
 844	mtk_output_dsi_enable(dsi);
 845}
 846
 847static void mtk_dsi_bridge_atomic_pre_enable(struct drm_bridge *bridge,
 848					     struct drm_bridge_state *old_bridge_state)
 849{
 850	struct mtk_dsi *dsi = bridge_to_dsi(bridge);
 851	int ret;
 852
 853	ret = mtk_dsi_poweron(dsi);
 854	if (ret < 0)
 855		DRM_ERROR("failed to power on dsi\n");
 856}
 857
 858static void mtk_dsi_bridge_atomic_post_disable(struct drm_bridge *bridge,
 859					       struct drm_bridge_state *old_bridge_state)
 860{
 861	struct mtk_dsi *dsi = bridge_to_dsi(bridge);
 
 
 862
 863	mtk_dsi_poweroff(dsi);
 864}
 
 
 
 
 
 865
 866static enum drm_mode_status
 867mtk_dsi_bridge_mode_valid(struct drm_bridge *bridge,
 868			  const struct drm_display_info *info,
 869			  const struct drm_display_mode *mode)
 870{
 871	struct mtk_dsi *dsi = bridge_to_dsi(bridge);
 872	int bpp;
 873
 874	bpp = mipi_dsi_pixel_format_to_bpp(dsi->format);
 875	if (bpp < 0)
 876		return MODE_ERROR;
 877
 878	if (mode->clock * bpp / dsi->lanes > 1500000)
 879		return MODE_CLOCK_HIGH;
 880
 881	return MODE_OK;
 882}
 883
 884static const struct drm_bridge_funcs mtk_dsi_bridge_funcs = {
 885	.attach = mtk_dsi_bridge_attach,
 886	.atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
 887	.atomic_disable = mtk_dsi_bridge_atomic_disable,
 888	.atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
 889	.atomic_enable = mtk_dsi_bridge_atomic_enable,
 890	.atomic_pre_enable = mtk_dsi_bridge_atomic_pre_enable,
 891	.atomic_post_disable = mtk_dsi_bridge_atomic_post_disable,
 892	.atomic_reset = drm_atomic_helper_bridge_reset,
 893	.mode_valid = mtk_dsi_bridge_mode_valid,
 894	.mode_set = mtk_dsi_bridge_mode_set,
 895};
 896
 897void mtk_dsi_ddp_start(struct device *dev)
 898{
 899	struct mtk_dsi *dsi = dev_get_drvdata(dev);
 900
 901	mtk_dsi_poweron(dsi);
 902}
 
 
 
 
 903
 904void mtk_dsi_ddp_stop(struct device *dev)
 905{
 906	struct mtk_dsi *dsi = dev_get_drvdata(dev);
 907
 908	mtk_dsi_poweroff(dsi);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 909}
 910
 911static int mtk_dsi_encoder_init(struct drm_device *drm, struct mtk_dsi *dsi)
 912{
 913	int ret;
 914
 915	ret = drm_simple_encoder_init(drm, &dsi->encoder,
 916				      DRM_MODE_ENCODER_DSI);
 917	if (ret) {
 918		DRM_ERROR("Failed to encoder init to drm\n");
 919		return ret;
 920	}
 
 921
 922	ret = mtk_find_possible_crtcs(drm, dsi->host.dev);
 923	if (ret < 0)
 924		goto err_cleanup_encoder;
 925	dsi->encoder.possible_crtcs = ret;
 926
 927	ret = drm_bridge_attach(&dsi->encoder, &dsi->bridge, NULL,
 928				DRM_BRIDGE_ATTACH_NO_CONNECTOR);
 929	if (ret)
 930		goto err_cleanup_encoder;
 931
 932	dsi->connector = drm_bridge_connector_init(drm, &dsi->encoder);
 933	if (IS_ERR(dsi->connector)) {
 934		DRM_ERROR("Unable to create bridge connector\n");
 935		ret = PTR_ERR(dsi->connector);
 936		goto err_cleanup_encoder;
 
 
 
 
 
 
 
 937	}
 938	drm_connector_attach_encoder(dsi->connector, &dsi->encoder);
 939
 940	return 0;
 941
 942err_cleanup_encoder:
 943	drm_encoder_cleanup(&dsi->encoder);
 944	return ret;
 945}
 946
 947unsigned int mtk_dsi_encoder_index(struct device *dev)
 948{
 949	struct mtk_dsi *dsi = dev_get_drvdata(dev);
 950	unsigned int encoder_index = drm_encoder_index(&dsi->encoder);
 951
 952	dev_dbg(dev, "encoder index:%d\n", encoder_index);
 953	return encoder_index;
 
 954}
 955
 956static int mtk_dsi_bind(struct device *dev, struct device *master, void *data)
 957{
 958	int ret;
 959	struct drm_device *drm = data;
 960	struct mtk_dsi *dsi = dev_get_drvdata(dev);
 961
 962	ret = mtk_dsi_encoder_init(drm, dsi);
 963	if (ret)
 964		return ret;
 965
 966	return device_reset_optional(dev);
 967}
 968
 969static void mtk_dsi_unbind(struct device *dev, struct device *master,
 970			   void *data)
 971{
 972	struct mtk_dsi *dsi = dev_get_drvdata(dev);
 973
 974	drm_encoder_cleanup(&dsi->encoder);
 975}
 976
 977static const struct component_ops mtk_dsi_component_ops = {
 978	.bind = mtk_dsi_bind,
 979	.unbind = mtk_dsi_unbind,
 980};
 981
 982static int mtk_dsi_host_attach(struct mipi_dsi_host *host,
 983			       struct mipi_dsi_device *device)
 984{
 985	struct mtk_dsi *dsi = host_to_dsi(host);
 986	struct device *dev = host->dev;
 987	int ret;
 988
 989	dsi->lanes = device->lanes;
 990	dsi->format = device->format;
 991	dsi->mode_flags = device->mode_flags;
 992	dsi->next_bridge = devm_drm_of_get_bridge(dev, dev->of_node, 1, 0);
 993	if (IS_ERR(dsi->next_bridge)) {
 994		ret = PTR_ERR(dsi->next_bridge);
 995		if (ret == -EPROBE_DEFER)
 996			return ret;
 997
 998		/* Old devicetree has only one endpoint */
 999		dsi->next_bridge = devm_drm_of_get_bridge(dev, dev->of_node, 0, 0);
1000		if (IS_ERR(dsi->next_bridge))
1001			return PTR_ERR(dsi->next_bridge);
1002	}
1003
1004	drm_bridge_add(&dsi->bridge);
1005
1006	ret = component_add(host->dev, &mtk_dsi_component_ops);
1007	if (ret) {
1008		DRM_ERROR("failed to add dsi_host component: %d\n", ret);
1009		drm_bridge_remove(&dsi->bridge);
1010		return ret;
1011	}
1012
1013	return 0;
1014}
1015
1016static int mtk_dsi_host_detach(struct mipi_dsi_host *host,
1017			       struct mipi_dsi_device *device)
1018{
1019	struct mtk_dsi *dsi = host_to_dsi(host);
1020
1021	component_del(host->dev, &mtk_dsi_component_ops);
1022	drm_bridge_remove(&dsi->bridge);
 
1023	return 0;
1024}
1025
1026static void mtk_dsi_wait_for_idle(struct mtk_dsi *dsi)
1027{
1028	int ret;
1029	u32 val;
1030
1031	ret = readl_poll_timeout(dsi->regs + DSI_INTSTA, val, !(val & DSI_BUSY),
1032				 4, 2000000);
1033	if (ret) {
1034		DRM_WARN("polling dsi wait not busy timeout!\n");
1035
1036		mtk_dsi_enable(dsi);
1037		mtk_dsi_reset_engine(dsi);
1038	}
1039}
1040
1041static u32 mtk_dsi_recv_cnt(u8 type, u8 *read_data)
1042{
1043	switch (type) {
1044	case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_1BYTE:
1045	case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE:
1046		return 1;
1047	case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_2BYTE:
1048	case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE:
1049		return 2;
1050	case MIPI_DSI_RX_GENERIC_LONG_READ_RESPONSE:
1051	case MIPI_DSI_RX_DCS_LONG_READ_RESPONSE:
1052		return read_data[1] + read_data[2] * 16;
1053	case MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT:
1054		DRM_INFO("type is 0x02, try again\n");
1055		break;
1056	default:
1057		DRM_INFO("type(0x%x) not recognized\n", type);
1058		break;
1059	}
1060
1061	return 0;
1062}
1063
1064static void mtk_dsi_cmdq(struct mtk_dsi *dsi, const struct mipi_dsi_msg *msg)
1065{
1066	const char *tx_buf = msg->tx_buf;
1067	u8 config, cmdq_size, cmdq_off, type = msg->type;
1068	u32 reg_val, cmdq_mask, i;
1069	u32 reg_cmdq_off = dsi->driver_data->reg_cmdq_off;
1070
1071	if (MTK_DSI_HOST_IS_READ(type))
1072		config = BTA;
1073	else
1074		config = (msg->tx_len > 2) ? LONG_PACKET : SHORT_PACKET;
1075
1076	if (msg->tx_len > 2) {
1077		cmdq_size = 1 + (msg->tx_len + 3) / 4;
1078		cmdq_off = 4;
1079		cmdq_mask = CONFIG | DATA_ID | DATA_0 | DATA_1;
1080		reg_val = (msg->tx_len << 16) | (type << 8) | config;
1081	} else {
1082		cmdq_size = 1;
1083		cmdq_off = 2;
1084		cmdq_mask = CONFIG | DATA_ID;
1085		reg_val = (type << 8) | config;
1086	}
1087
1088	for (i = 0; i < msg->tx_len; i++)
1089		mtk_dsi_mask(dsi, (reg_cmdq_off + cmdq_off + i) & (~0x3U),
1090			     (0xffUL << (((i + cmdq_off) & 3U) * 8U)),
1091			     tx_buf[i] << (((i + cmdq_off) & 3U) * 8U));
1092
1093	mtk_dsi_mask(dsi, reg_cmdq_off, cmdq_mask, reg_val);
1094	mtk_dsi_mask(dsi, DSI_CMDQ_SIZE, CMDQ_SIZE, cmdq_size);
1095	if (dsi->driver_data->cmdq_long_packet_ctl) {
1096		/* Disable setting cmdq_size automatically for long packets */
1097		mtk_dsi_mask(dsi, DSI_CMDQ_SIZE, CMDQ_SIZE_SEL, CMDQ_SIZE_SEL);
1098	}
1099}
1100
1101static ssize_t mtk_dsi_host_send_cmd(struct mtk_dsi *dsi,
1102				     const struct mipi_dsi_msg *msg, u8 flag)
1103{
1104	mtk_dsi_wait_for_idle(dsi);
1105	mtk_dsi_irq_data_clear(dsi, flag);
1106	mtk_dsi_cmdq(dsi, msg);
1107	mtk_dsi_start(dsi);
1108
1109	if (!mtk_dsi_wait_for_irq_done(dsi, flag, 2000))
1110		return -ETIME;
1111	else
1112		return 0;
1113}
1114
1115static ssize_t mtk_dsi_host_transfer(struct mipi_dsi_host *host,
1116				     const struct mipi_dsi_msg *msg)
1117{
1118	struct mtk_dsi *dsi = host_to_dsi(host);
1119	u32 recv_cnt, i;
1120	u8 read_data[16];
1121	void *src_addr;
1122	u8 irq_flag = CMD_DONE_INT_FLAG;
1123	u32 dsi_mode;
1124	int ret;
1125
1126	dsi_mode = readl(dsi->regs + DSI_MODE_CTRL);
1127	if (dsi_mode & MODE) {
1128		mtk_dsi_stop(dsi);
1129		ret = mtk_dsi_switch_to_cmd_mode(dsi, VM_DONE_INT_FLAG, 500);
1130		if (ret)
1131			goto restore_dsi_mode;
1132	}
1133
1134	if (MTK_DSI_HOST_IS_READ(msg->type))
1135		irq_flag |= LPRX_RD_RDY_INT_FLAG;
1136
1137	mtk_dsi_lane_ready(dsi);
1138
1139	ret = mtk_dsi_host_send_cmd(dsi, msg, irq_flag);
1140	if (ret)
1141		goto restore_dsi_mode;
1142
1143	if (!MTK_DSI_HOST_IS_READ(msg->type)) {
1144		recv_cnt = 0;
1145		goto restore_dsi_mode;
1146	}
1147
1148	if (!msg->rx_buf) {
1149		DRM_ERROR("dsi receive buffer size may be NULL\n");
1150		ret = -EINVAL;
1151		goto restore_dsi_mode;
1152	}
1153
1154	for (i = 0; i < 16; i++)
1155		*(read_data + i) = readb(dsi->regs + DSI_RX_DATA0 + i);
1156
1157	recv_cnt = mtk_dsi_recv_cnt(read_data[0], read_data);
1158
1159	if (recv_cnt > 2)
1160		src_addr = &read_data[4];
1161	else
1162		src_addr = &read_data[1];
1163
1164	if (recv_cnt > 10)
1165		recv_cnt = 10;
1166
1167	if (recv_cnt > msg->rx_len)
1168		recv_cnt = msg->rx_len;
1169
1170	if (recv_cnt)
1171		memcpy(msg->rx_buf, src_addr, recv_cnt);
1172
1173	DRM_INFO("dsi get %d byte data from the panel address(0x%x)\n",
1174		 recv_cnt, *((u8 *)(msg->tx_buf)));
1175
1176restore_dsi_mode:
1177	if (dsi_mode & MODE) {
1178		mtk_dsi_set_mode(dsi);
1179		mtk_dsi_start(dsi);
1180	}
1181
1182	return ret < 0 ? ret : recv_cnt;
1183}
1184
1185static const struct mipi_dsi_host_ops mtk_dsi_ops = {
1186	.attach = mtk_dsi_host_attach,
1187	.detach = mtk_dsi_host_detach,
1188	.transfer = mtk_dsi_host_transfer,
1189};
1190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1191static int mtk_dsi_probe(struct platform_device *pdev)
1192{
1193	struct mtk_dsi *dsi;
1194	struct device *dev = &pdev->dev;
1195	struct resource *regs;
1196	int irq_num;
 
1197	int ret;
1198
1199	dsi = devm_kzalloc(dev, sizeof(*dsi), GFP_KERNEL);
1200	if (!dsi)
1201		return -ENOMEM;
1202
1203	dsi->driver_data = of_device_get_match_data(dev);
 
1204
1205	dsi->engine_clk = devm_clk_get(dev, "engine");
1206	if (IS_ERR(dsi->engine_clk))
1207		return dev_err_probe(dev, PTR_ERR(dsi->engine_clk),
1208				     "Failed to get engine clock\n");
1209
 
 
 
 
 
 
1210
1211	dsi->digital_clk = devm_clk_get(dev, "digital");
1212	if (IS_ERR(dsi->digital_clk))
1213		return dev_err_probe(dev, PTR_ERR(dsi->digital_clk),
1214				     "Failed to get digital clock\n");
 
 
1215
1216	dsi->hs_clk = devm_clk_get(dev, "hs");
1217	if (IS_ERR(dsi->hs_clk))
1218		return dev_err_probe(dev, PTR_ERR(dsi->hs_clk), "Failed to get hs clock\n");
 
 
 
1219
1220	regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1221	dsi->regs = devm_ioremap_resource(dev, regs);
1222	if (IS_ERR(dsi->regs))
1223		return dev_err_probe(dev, PTR_ERR(dsi->regs), "Failed to ioremap memory\n");
 
 
 
1224
1225	dsi->phy = devm_phy_get(dev, "dphy");
1226	if (IS_ERR(dsi->phy))
1227		return dev_err_probe(dev, PTR_ERR(dsi->phy), "Failed to get MIPI-DPHY\n");
 
 
 
1228
1229	irq_num = platform_get_irq(pdev, 0);
1230	if (irq_num < 0)
1231		return irq_num;
 
 
1232
1233	dsi->host.ops = &mtk_dsi_ops;
1234	dsi->host.dev = dev;
1235	ret = mipi_dsi_host_register(&dsi->host);
1236	if (ret < 0)
1237		return dev_err_probe(dev, ret, "Failed to register DSI host\n");
 
1238
 
 
 
 
 
 
 
1239	ret = devm_request_irq(&pdev->dev, irq_num, mtk_dsi_irq,
1240			       IRQF_TRIGGER_NONE, dev_name(&pdev->dev), dsi);
1241	if (ret) {
1242		mipi_dsi_host_unregister(&dsi->host);
1243		return dev_err_probe(&pdev->dev, ret, "Failed to request DSI irq\n");
1244	}
1245
1246	init_waitqueue_head(&dsi->irq_wait_queue);
1247
1248	platform_set_drvdata(pdev, dsi);
1249
1250	dsi->bridge.funcs = &mtk_dsi_bridge_funcs;
1251	dsi->bridge.of_node = dev->of_node;
1252	dsi->bridge.type = DRM_MODE_CONNECTOR_DSI;
1253
1254	return 0;
1255}
1256
1257static void mtk_dsi_remove(struct platform_device *pdev)
1258{
1259	struct mtk_dsi *dsi = platform_get_drvdata(pdev);
1260
1261	mtk_output_dsi_disable(dsi);
1262	mipi_dsi_host_unregister(&dsi->host);
1263}
1264
1265static const struct mtk_dsi_driver_data mt8173_dsi_driver_data = {
1266	.reg_cmdq_off = 0x200,
1267	.reg_vm_cmd_off = 0x130,
1268	.reg_shadow_dbg_off = 0x190
1269};
1270
1271static const struct mtk_dsi_driver_data mt2701_dsi_driver_data = {
1272	.reg_cmdq_off = 0x180,
1273	.reg_vm_cmd_off = 0x130,
1274	.reg_shadow_dbg_off = 0x190
1275};
1276
1277static const struct mtk_dsi_driver_data mt8183_dsi_driver_data = {
1278	.reg_cmdq_off = 0x200,
1279	.reg_vm_cmd_off = 0x130,
1280	.reg_shadow_dbg_off = 0x190,
1281	.has_shadow_ctl = true,
1282	.has_size_ctl = true,
1283};
1284
1285static const struct mtk_dsi_driver_data mt8186_dsi_driver_data = {
1286	.reg_cmdq_off = 0xd00,
1287	.reg_vm_cmd_off = 0x200,
1288	.reg_shadow_dbg_off = 0xc00,
1289	.has_shadow_ctl = true,
1290	.has_size_ctl = true,
1291};
1292
1293static const struct mtk_dsi_driver_data mt8188_dsi_driver_data = {
1294	.reg_cmdq_off = 0xd00,
1295	.reg_vm_cmd_off = 0x200,
1296	.reg_shadow_dbg_off = 0xc00,
1297	.has_shadow_ctl = true,
1298	.has_size_ctl = true,
1299	.cmdq_long_packet_ctl = true,
1300	.support_per_frame_lp = true,
1301};
1302
1303static const struct of_device_id mtk_dsi_of_match[] = {
1304	{ .compatible = "mediatek,mt2701-dsi", .data = &mt2701_dsi_driver_data },
1305	{ .compatible = "mediatek,mt8173-dsi", .data = &mt8173_dsi_driver_data },
1306	{ .compatible = "mediatek,mt8183-dsi", .data = &mt8183_dsi_driver_data },
1307	{ .compatible = "mediatek,mt8186-dsi", .data = &mt8186_dsi_driver_data },
1308	{ .compatible = "mediatek,mt8188-dsi", .data = &mt8188_dsi_driver_data },
1309	{ /* sentinel */ }
1310};
1311MODULE_DEVICE_TABLE(of, mtk_dsi_of_match);
1312
1313struct platform_driver mtk_dsi_driver = {
1314	.probe = mtk_dsi_probe,
1315	.remove = mtk_dsi_remove,
1316	.driver = {
1317		.name = "mtk-dsi",
1318		.of_match_table = mtk_dsi_of_match,
1319	},
1320};
v5.4
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 * Copyright (c) 2015 MediaTek Inc.
   4 */
   5
 
   6#include <linux/clk.h>
   7#include <linux/component.h>
   8#include <linux/iopoll.h>
   9#include <linux/irq.h>
  10#include <linux/of.h>
  11#include <linux/of_platform.h>
  12#include <linux/phy/phy.h>
  13#include <linux/platform_device.h>
 
 
  14
  15#include <video/mipi_display.h>
  16#include <video/videomode.h>
  17
  18#include <drm/drm_atomic_helper.h>
 
 
  19#include <drm/drm_mipi_dsi.h>
  20#include <drm/drm_of.h>
  21#include <drm/drm_panel.h>
  22#include <drm/drm_print.h>
  23#include <drm/drm_probe_helper.h>
 
  24
  25#include "mtk_drm_ddp_comp.h"
 
 
  26
  27#define DSI_START		0x00
  28
  29#define DSI_INTEN		0x08
  30
  31#define DSI_INTSTA		0x0c
  32#define LPRX_RD_RDY_INT_FLAG		BIT(0)
  33#define CMD_DONE_INT_FLAG		BIT(1)
  34#define TE_RDY_INT_FLAG			BIT(2)
  35#define VM_DONE_INT_FLAG		BIT(3)
  36#define EXT_TE_RDY_INT_FLAG		BIT(4)
  37#define DSI_BUSY			BIT(31)
  38
  39#define DSI_CON_CTRL		0x10
  40#define DSI_RESET			BIT(0)
  41#define DSI_EN				BIT(1)
 
  42
  43#define DSI_MODE_CTRL		0x14
  44#define MODE				(3)
  45#define CMD_MODE			0
  46#define SYNC_PULSE_MODE			1
  47#define SYNC_EVENT_MODE			2
  48#define BURST_MODE			3
  49#define FRM_MODE			BIT(16)
  50#define MIX_MODE			BIT(17)
  51
  52#define DSI_TXRX_CTRL		0x18
  53#define VC_NUM				BIT(1)
  54#define LANE_NUM			(0xf << 2)
  55#define DIS_EOT				BIT(6)
  56#define NULL_EN				BIT(7)
  57#define TE_FREERUN			BIT(8)
  58#define EXT_TE_EN			BIT(9)
  59#define EXT_TE_EDGE			BIT(10)
  60#define MAX_RTN_SIZE			(0xf << 12)
  61#define HSTX_CKLP_EN			BIT(16)
  62
  63#define DSI_PSCTRL		0x1c
  64#define DSI_PS_WC			0x3fff
  65#define DSI_PS_SEL			(3 << 16)
  66#define PACKED_PS_16BIT_RGB565		(0 << 16)
  67#define LOOSELY_PS_18BIT_RGB666		(1 << 16)
  68#define PACKED_PS_18BIT_RGB666		(2 << 16)
  69#define PACKED_PS_24BIT_RGB888		(3 << 16)
  70
  71#define DSI_VSA_NL		0x20
  72#define DSI_VBP_NL		0x24
  73#define DSI_VFP_NL		0x28
  74#define DSI_VACT_NL		0x2C
 
 
 
 
  75#define DSI_HSA_WC		0x50
  76#define DSI_HBP_WC		0x54
  77#define DSI_HFP_WC		0x58
 
 
  78
  79#define DSI_CMDQ_SIZE		0x60
  80#define CMDQ_SIZE			0x3f
 
  81
  82#define DSI_HSTX_CKL_WC		0x64
 
  83
  84#define DSI_RX_DATA0		0x74
  85#define DSI_RX_DATA1		0x78
  86#define DSI_RX_DATA2		0x7c
  87#define DSI_RX_DATA3		0x80
  88
  89#define DSI_RACK		0x84
  90#define RACK				BIT(0)
  91
  92#define DSI_PHY_LCCON		0x104
  93#define LC_HS_TX_EN			BIT(0)
  94#define LC_ULPM_EN			BIT(1)
  95#define LC_WAKEUP_EN			BIT(2)
  96
  97#define DSI_PHY_LD0CON		0x108
  98#define LD0_HS_TX_EN			BIT(0)
  99#define LD0_ULPM_EN			BIT(1)
 100#define LD0_WAKEUP_EN			BIT(2)
 101
 102#define DSI_PHY_TIMECON0	0x110
 103#define LPX				(0xff << 0)
 104#define HS_PREP				(0xff << 8)
 105#define HS_ZERO				(0xff << 16)
 106#define HS_TRAIL			(0xff << 24)
 107
 108#define DSI_PHY_TIMECON1	0x114
 109#define TA_GO				(0xff << 0)
 110#define TA_SURE				(0xff << 8)
 111#define TA_GET				(0xff << 16)
 112#define DA_HS_EXIT			(0xff << 24)
 113
 114#define DSI_PHY_TIMECON2	0x118
 115#define CONT_DET			(0xff << 0)
 116#define CLK_ZERO			(0xff << 16)
 117#define CLK_TRAIL			(0xff << 24)
 
 118
 119#define DSI_PHY_TIMECON3	0x11c
 120#define CLK_HS_PREP			(0xff << 0)
 121#define CLK_HS_POST			(0xff << 8)
 122#define CLK_HS_EXIT			(0xff << 16)
 123
 124#define DSI_VM_CMD_CON		0x130
 125#define VM_CMD_EN			BIT(0)
 126#define TS_VFP_EN			BIT(5)
 127
 128#define DSI_CMDQ0		0x180
 129#define CONFIG				(0xff << 0)
 
 
 
 
 130#define SHORT_PACKET			0
 131#define LONG_PACKET			2
 132#define BTA				BIT(2)
 133#define DATA_ID				(0xff << 8)
 134#define DATA_0				(0xff << 16)
 135#define DATA_1				(0xff << 24)
 136
 137#define T_LPX		5
 138#define T_HS_PREP	6
 139#define T_HS_TRAIL	8
 140#define T_HS_EXIT	7
 141#define T_HS_ZERO	10
 142
 143#define NS_TO_CYCLE(n, c)    ((n) / (c) + (((n) % (c)) ? 1 : 0))
 144
 145#define MTK_DSI_HOST_IS_READ(type) \
 146	((type == MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM) || \
 147	(type == MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM) || \
 148	(type == MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM) || \
 149	(type == MIPI_DSI_DCS_READ))
 150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 151struct phy;
 152
 
 
 
 
 
 
 
 
 
 
 153struct mtk_dsi {
 154	struct mtk_ddp_comp ddp_comp;
 155	struct device *dev;
 156	struct mipi_dsi_host host;
 157	struct drm_encoder encoder;
 158	struct drm_connector conn;
 159	struct drm_panel *panel;
 160	struct drm_bridge *bridge;
 161	struct phy *phy;
 162
 163	void __iomem *regs;
 164
 165	struct clk *engine_clk;
 166	struct clk *digital_clk;
 167	struct clk *hs_clk;
 168
 169	u32 data_rate;
 170
 171	unsigned long mode_flags;
 172	enum mipi_dsi_pixel_format format;
 173	unsigned int lanes;
 174	struct videomode vm;
 
 175	int refcount;
 176	bool enabled;
 
 177	u32 irq_data;
 178	wait_queue_head_t irq_wait_queue;
 
 179};
 180
 181static inline struct mtk_dsi *encoder_to_dsi(struct drm_encoder *e)
 182{
 183	return container_of(e, struct mtk_dsi, encoder);
 184}
 185
 186static inline struct mtk_dsi *connector_to_dsi(struct drm_connector *c)
 187{
 188	return container_of(c, struct mtk_dsi, conn);
 189}
 190
 191static inline struct mtk_dsi *host_to_dsi(struct mipi_dsi_host *h)
 192{
 193	return container_of(h, struct mtk_dsi, host);
 194}
 195
 196static void mtk_dsi_mask(struct mtk_dsi *dsi, u32 offset, u32 mask, u32 data)
 197{
 198	u32 temp = readl(dsi->regs + offset);
 199
 200	writel((temp & ~mask) | (data & mask), dsi->regs + offset);
 201}
 202
 203static void mtk_dsi_phy_timconfig(struct mtk_dsi *dsi)
 204{
 205	u32 timcon0, timcon1, timcon2, timcon3;
 206	u32 ui, cycle_time;
 
 207
 208	ui = 1000 / dsi->data_rate + 0x01;
 209	cycle_time = 8000 / dsi->data_rate + 0x01;
 210
 211	timcon0 = T_LPX | T_HS_PREP << 8 | T_HS_ZERO << 16 | T_HS_TRAIL << 24;
 212	timcon1 = 4 * T_LPX | (3 * T_LPX / 2) << 8 | 5 * T_LPX << 16 |
 213		  T_HS_EXIT << 24;
 214	timcon2 = ((NS_TO_CYCLE(0x64, cycle_time) + 0xa) << 24) |
 215		  (NS_TO_CYCLE(0x150, cycle_time) << 16);
 216	timcon3 = NS_TO_CYCLE(0x40, cycle_time) | (2 * T_LPX) << 16 |
 217		  NS_TO_CYCLE(80 + 52 * ui, cycle_time) << 8;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 218
 219	writel(timcon0, dsi->regs + DSI_PHY_TIMECON0);
 220	writel(timcon1, dsi->regs + DSI_PHY_TIMECON1);
 221	writel(timcon2, dsi->regs + DSI_PHY_TIMECON2);
 222	writel(timcon3, dsi->regs + DSI_PHY_TIMECON3);
 223}
 224
 225static void mtk_dsi_enable(struct mtk_dsi *dsi)
 226{
 227	mtk_dsi_mask(dsi, DSI_CON_CTRL, DSI_EN, DSI_EN);
 228}
 229
 230static void mtk_dsi_disable(struct mtk_dsi *dsi)
 231{
 232	mtk_dsi_mask(dsi, DSI_CON_CTRL, DSI_EN, 0);
 233}
 234
 235static void mtk_dsi_reset_engine(struct mtk_dsi *dsi)
 236{
 237	mtk_dsi_mask(dsi, DSI_CON_CTRL, DSI_RESET, DSI_RESET);
 238	mtk_dsi_mask(dsi, DSI_CON_CTRL, DSI_RESET, 0);
 239}
 240
 
 
 
 
 
 
 241static void mtk_dsi_clk_ulp_mode_enter(struct mtk_dsi *dsi)
 242{
 243	mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_HS_TX_EN, 0);
 244	mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_ULPM_EN, 0);
 245}
 246
 247static void mtk_dsi_clk_ulp_mode_leave(struct mtk_dsi *dsi)
 248{
 249	mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_ULPM_EN, 0);
 250	mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_WAKEUP_EN, LC_WAKEUP_EN);
 251	mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_WAKEUP_EN, 0);
 252}
 253
 254static void mtk_dsi_lane0_ulp_mode_enter(struct mtk_dsi *dsi)
 255{
 256	mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_HS_TX_EN, 0);
 257	mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_ULPM_EN, 0);
 258}
 259
 260static void mtk_dsi_lane0_ulp_mode_leave(struct mtk_dsi *dsi)
 261{
 262	mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_ULPM_EN, 0);
 263	mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_WAKEUP_EN, LD0_WAKEUP_EN);
 264	mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_WAKEUP_EN, 0);
 265}
 266
 267static bool mtk_dsi_clk_hs_state(struct mtk_dsi *dsi)
 268{
 269	u32 tmp_reg1;
 270
 271	tmp_reg1 = readl(dsi->regs + DSI_PHY_LCCON);
 272	return ((tmp_reg1 & LC_HS_TX_EN) == 1) ? true : false;
 273}
 274
 275static void mtk_dsi_clk_hs_mode(struct mtk_dsi *dsi, bool enter)
 276{
 277	if (enter && !mtk_dsi_clk_hs_state(dsi))
 278		mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_HS_TX_EN, LC_HS_TX_EN);
 279	else if (!enter && mtk_dsi_clk_hs_state(dsi))
 280		mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_HS_TX_EN, 0);
 281}
 282
 283static void mtk_dsi_set_mode(struct mtk_dsi *dsi)
 284{
 285	u32 vid_mode = CMD_MODE;
 286
 287	if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO) {
 288		if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST)
 289			vid_mode = BURST_MODE;
 290		else if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE)
 291			vid_mode = SYNC_PULSE_MODE;
 292		else
 293			vid_mode = SYNC_EVENT_MODE;
 294	}
 295
 296	writel(vid_mode, dsi->regs + DSI_MODE_CTRL);
 297}
 298
 299static void mtk_dsi_set_vm_cmd(struct mtk_dsi *dsi)
 300{
 301	mtk_dsi_mask(dsi, DSI_VM_CMD_CON, VM_CMD_EN, VM_CMD_EN);
 302	mtk_dsi_mask(dsi, DSI_VM_CMD_CON, TS_VFP_EN, TS_VFP_EN);
 303}
 304
 305static void mtk_dsi_ps_control_vact(struct mtk_dsi *dsi)
 306{
 307	struct videomode *vm = &dsi->vm;
 308	u32 dsi_buf_bpp, ps_wc;
 309	u32 ps_bpp_mode;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 310
 311	if (dsi->format == MIPI_DSI_FMT_RGB565)
 312		dsi_buf_bpp = 2;
 313	else
 314		dsi_buf_bpp = 3;
 315
 316	ps_wc = vm->hactive * dsi_buf_bpp;
 317	ps_bpp_mode = ps_wc;
 
 318
 
 319	switch (dsi->format) {
 
 
 320	case MIPI_DSI_FMT_RGB888:
 321		ps_bpp_mode |= PACKED_PS_24BIT_RGB888;
 322		break;
 323	case MIPI_DSI_FMT_RGB666:
 324		ps_bpp_mode |= PACKED_PS_18BIT_RGB666;
 325		break;
 326	case MIPI_DSI_FMT_RGB666_PACKED:
 327		ps_bpp_mode |= LOOSELY_PS_18BIT_RGB666;
 328		break;
 329	case MIPI_DSI_FMT_RGB565:
 330		ps_bpp_mode |= PACKED_PS_16BIT_RGB565;
 331		break;
 332	}
 333
 334	writel(vm->vactive, dsi->regs + DSI_VACT_NL);
 335	writel(ps_bpp_mode, dsi->regs + DSI_PSCTRL);
 336	writel(ps_wc, dsi->regs + DSI_HSTX_CKL_WC);
 337}
 338
 339static void mtk_dsi_rxtx_control(struct mtk_dsi *dsi)
 340{
 341	u32 tmp_reg;
 342
 343	switch (dsi->lanes) {
 344	case 1:
 345		tmp_reg = 1 << 2;
 346		break;
 347	case 2:
 348		tmp_reg = 3 << 2;
 349		break;
 350	case 3:
 351		tmp_reg = 7 << 2;
 352		break;
 353	case 4:
 354		tmp_reg = 0xf << 2;
 355		break;
 356	default:
 357		tmp_reg = 0xf << 2;
 358		break;
 359	}
 360
 361	tmp_reg |= (dsi->mode_flags & MIPI_DSI_CLOCK_NON_CONTINUOUS) << 6;
 362	tmp_reg |= (dsi->mode_flags & MIPI_DSI_MODE_EOT_PACKET) >> 3;
 363
 364	writel(tmp_reg, dsi->regs + DSI_TXRX_CTRL);
 365}
 366
 367static void mtk_dsi_ps_control(struct mtk_dsi *dsi)
 368{
 
 
 
 
 
 369	u32 dsi_tmp_buf_bpp;
 370	u32 tmp_reg;
 
 
 
 
 371
 372	switch (dsi->format) {
 373	case MIPI_DSI_FMT_RGB888:
 374		tmp_reg = PACKED_PS_24BIT_RGB888;
 375		dsi_tmp_buf_bpp = 3;
 376		break;
 377	case MIPI_DSI_FMT_RGB666:
 378		tmp_reg = LOOSELY_PS_18BIT_RGB666;
 379		dsi_tmp_buf_bpp = 3;
 380		break;
 381	case MIPI_DSI_FMT_RGB666_PACKED:
 382		tmp_reg = PACKED_PS_18BIT_RGB666;
 383		dsi_tmp_buf_bpp = 3;
 384		break;
 385	case MIPI_DSI_FMT_RGB565:
 386		tmp_reg = PACKED_PS_16BIT_RGB565;
 387		dsi_tmp_buf_bpp = 2;
 388		break;
 389	default:
 390		tmp_reg = PACKED_PS_24BIT_RGB888;
 391		dsi_tmp_buf_bpp = 3;
 392		break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 393	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 394
 395	tmp_reg += dsi->vm.hactive * dsi_tmp_buf_bpp & DSI_PS_WC;
 396	writel(tmp_reg, dsi->regs + DSI_PSCTRL);
 
 397}
 398
 399static void mtk_dsi_config_vdo_timing(struct mtk_dsi *dsi)
 400{
 401	u32 horizontal_sync_active_byte;
 402	u32 horizontal_backporch_byte;
 403	u32 horizontal_frontporch_byte;
 404	u32 dsi_tmp_buf_bpp;
 405
 
 
 
 406	struct videomode *vm = &dsi->vm;
 407
 408	if (dsi->format == MIPI_DSI_FMT_RGB565)
 409		dsi_tmp_buf_bpp = 2;
 410	else
 411		dsi_tmp_buf_bpp = 3;
 412
 413	writel(vm->vsync_len, dsi->regs + DSI_VSA_NL);
 414	writel(vm->vback_porch, dsi->regs + DSI_VBP_NL);
 415	writel(vm->vfront_porch, dsi->regs + DSI_VFP_NL);
 416	writel(vm->vactive, dsi->regs + DSI_VACT_NL);
 417
 418	horizontal_sync_active_byte = (vm->hsync_len * dsi_tmp_buf_bpp - 10);
 419
 420	if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE)
 421		horizontal_backporch_byte =
 422			(vm->hback_porch * dsi_tmp_buf_bpp - 10);
 423	else
 424		horizontal_backporch_byte = ((vm->hback_porch + vm->hsync_len) *
 425			dsi_tmp_buf_bpp - 10);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 426
 427	horizontal_frontporch_byte = (vm->hfront_porch * dsi_tmp_buf_bpp - 12);
 
 
 
 
 
 
 
 
 
 
 428
 429	writel(horizontal_sync_active_byte, dsi->regs + DSI_HSA_WC);
 430	writel(horizontal_backporch_byte, dsi->regs + DSI_HBP_WC);
 431	writel(horizontal_frontporch_byte, dsi->regs + DSI_HFP_WC);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 432
 433	mtk_dsi_ps_control(dsi);
 
 
 
 
 
 434}
 435
 436static void mtk_dsi_start(struct mtk_dsi *dsi)
 437{
 438	writel(0, dsi->regs + DSI_START);
 439	writel(1, dsi->regs + DSI_START);
 440}
 441
 442static void mtk_dsi_stop(struct mtk_dsi *dsi)
 443{
 444	writel(0, dsi->regs + DSI_START);
 445}
 446
 447static void mtk_dsi_set_cmd_mode(struct mtk_dsi *dsi)
 448{
 449	writel(CMD_MODE, dsi->regs + DSI_MODE_CTRL);
 450}
 451
 452static void mtk_dsi_set_interrupt_enable(struct mtk_dsi *dsi)
 453{
 454	u32 inten = LPRX_RD_RDY_INT_FLAG | CMD_DONE_INT_FLAG | VM_DONE_INT_FLAG;
 455
 456	writel(inten, dsi->regs + DSI_INTEN);
 457}
 458
 459static void mtk_dsi_irq_data_set(struct mtk_dsi *dsi, u32 irq_bit)
 460{
 461	dsi->irq_data |= irq_bit;
 462}
 463
 464static void mtk_dsi_irq_data_clear(struct mtk_dsi *dsi, u32 irq_bit)
 465{
 466	dsi->irq_data &= ~irq_bit;
 467}
 468
 469static s32 mtk_dsi_wait_for_irq_done(struct mtk_dsi *dsi, u32 irq_flag,
 470				     unsigned int timeout)
 471{
 472	s32 ret = 0;
 473	unsigned long jiffies = msecs_to_jiffies(timeout);
 474
 475	ret = wait_event_interruptible_timeout(dsi->irq_wait_queue,
 476					       dsi->irq_data & irq_flag,
 477					       jiffies);
 478	if (ret == 0) {
 479		DRM_WARN("Wait DSI IRQ(0x%08x) Timeout\n", irq_flag);
 480
 481		mtk_dsi_enable(dsi);
 482		mtk_dsi_reset_engine(dsi);
 483	}
 484
 485	return ret;
 486}
 487
 488static irqreturn_t mtk_dsi_irq(int irq, void *dev_id)
 489{
 490	struct mtk_dsi *dsi = dev_id;
 491	u32 status, tmp;
 492	u32 flag = LPRX_RD_RDY_INT_FLAG | CMD_DONE_INT_FLAG | VM_DONE_INT_FLAG;
 493
 494	status = readl(dsi->regs + DSI_INTSTA) & flag;
 495
 496	if (status) {
 497		do {
 498			mtk_dsi_mask(dsi, DSI_RACK, RACK, RACK);
 499			tmp = readl(dsi->regs + DSI_INTSTA);
 500		} while (tmp & DSI_BUSY);
 501
 502		mtk_dsi_mask(dsi, DSI_INTSTA, status, 0);
 503		mtk_dsi_irq_data_set(dsi, status);
 504		wake_up_interruptible(&dsi->irq_wait_queue);
 505	}
 506
 507	return IRQ_HANDLED;
 508}
 509
 510static s32 mtk_dsi_switch_to_cmd_mode(struct mtk_dsi *dsi, u8 irq_flag, u32 t)
 511{
 512	mtk_dsi_irq_data_clear(dsi, irq_flag);
 513	mtk_dsi_set_cmd_mode(dsi);
 514
 515	if (!mtk_dsi_wait_for_irq_done(dsi, irq_flag, t)) {
 516		DRM_ERROR("failed to switch cmd mode\n");
 517		return -ETIME;
 518	} else {
 519		return 0;
 520	}
 521}
 522
 523static int mtk_dsi_poweron(struct mtk_dsi *dsi)
 524{
 525	struct device *dev = dsi->dev;
 526	int ret;
 527	u64 pixel_clock, total_bits;
 528	u32 htotal, htotal_bits, bit_per_pixel, overhead_cycles, overhead_bits;
 529
 530	if (++dsi->refcount != 1)
 531		return 0;
 532
 533	switch (dsi->format) {
 534	case MIPI_DSI_FMT_RGB565:
 535		bit_per_pixel = 16;
 536		break;
 537	case MIPI_DSI_FMT_RGB666_PACKED:
 538		bit_per_pixel = 18;
 539		break;
 540	case MIPI_DSI_FMT_RGB666:
 541	case MIPI_DSI_FMT_RGB888:
 542	default:
 543		bit_per_pixel = 24;
 544		break;
 545	}
 
 546
 547	/**
 548	 * htotal_time = htotal * byte_per_pixel / num_lanes
 549	 * overhead_time = lpx + hs_prepare + hs_zero + hs_trail + hs_exit
 550	 * mipi_ratio = (htotal_time + overhead_time) / htotal_time
 551	 * data_rate = pixel_clock * bit_per_pixel * mipi_ratio / num_lanes;
 552	 */
 553	pixel_clock = dsi->vm.pixelclock;
 554	htotal = dsi->vm.hactive + dsi->vm.hback_porch + dsi->vm.hfront_porch +
 555			dsi->vm.hsync_len;
 556	htotal_bits = htotal * bit_per_pixel;
 557
 558	overhead_cycles = T_LPX + T_HS_PREP + T_HS_ZERO + T_HS_TRAIL +
 559			T_HS_EXIT;
 560	overhead_bits = overhead_cycles * dsi->lanes * 8;
 561	total_bits = htotal_bits + overhead_bits;
 562
 563	dsi->data_rate = DIV_ROUND_UP_ULL(pixel_clock * total_bits,
 564					  htotal * dsi->lanes);
 565
 566	ret = clk_set_rate(dsi->hs_clk, dsi->data_rate);
 567	if (ret < 0) {
 568		dev_err(dev, "Failed to set data rate: %d\n", ret);
 569		goto err_refcount;
 570	}
 571
 572	phy_power_on(dsi->phy);
 573
 574	ret = clk_prepare_enable(dsi->engine_clk);
 575	if (ret < 0) {
 576		dev_err(dev, "Failed to enable engine clock: %d\n", ret);
 577		goto err_phy_power_off;
 578	}
 579
 580	ret = clk_prepare_enable(dsi->digital_clk);
 581	if (ret < 0) {
 582		dev_err(dev, "Failed to enable digital clock: %d\n", ret);
 583		goto err_disable_engine_clk;
 584	}
 585
 586	mtk_dsi_enable(dsi);
 
 
 
 
 
 587	mtk_dsi_reset_engine(dsi);
 588	mtk_dsi_phy_timconfig(dsi);
 589
 590	mtk_dsi_rxtx_control(dsi);
 591	mtk_dsi_ps_control_vact(dsi);
 592	mtk_dsi_set_vm_cmd(dsi);
 593	mtk_dsi_config_vdo_timing(dsi);
 594	mtk_dsi_set_interrupt_enable(dsi);
 595
 596	mtk_dsi_clk_ulp_mode_leave(dsi);
 597	mtk_dsi_lane0_ulp_mode_leave(dsi);
 598	mtk_dsi_clk_hs_mode(dsi, 0);
 599
 600	if (dsi->panel) {
 601		if (drm_panel_prepare(dsi->panel)) {
 602			DRM_ERROR("failed to prepare the panel\n");
 603			goto err_disable_digital_clk;
 604		}
 605	}
 606
 607	return 0;
 608err_disable_digital_clk:
 609	clk_disable_unprepare(dsi->digital_clk);
 610err_disable_engine_clk:
 611	clk_disable_unprepare(dsi->engine_clk);
 612err_phy_power_off:
 613	phy_power_off(dsi->phy);
 614err_refcount:
 615	dsi->refcount--;
 616	return ret;
 617}
 618
 619static void mtk_dsi_poweroff(struct mtk_dsi *dsi)
 620{
 621	if (WARN_ON(dsi->refcount == 0))
 622		return;
 623
 624	if (--dsi->refcount != 0)
 625		return;
 626
 627	/*
 628	 * mtk_dsi_stop() and mtk_dsi_start() is asymmetric, since
 629	 * mtk_dsi_stop() should be called after mtk_drm_crtc_atomic_disable(),
 630	 * which needs irq for vblank, and mtk_dsi_stop() will disable irq.
 631	 * mtk_dsi_start() needs to be called in mtk_output_dsi_enable(),
 632	 * after dsi is fully set.
 633	 */
 634	mtk_dsi_stop(dsi);
 635
 636	if (!mtk_dsi_switch_to_cmd_mode(dsi, VM_DONE_INT_FLAG, 500)) {
 637		if (dsi->panel) {
 638			if (drm_panel_unprepare(dsi->panel)) {
 639				DRM_ERROR("failed to unprepare the panel\n");
 640				return;
 641			}
 642		}
 643	}
 644
 645	mtk_dsi_reset_engine(dsi);
 646	mtk_dsi_lane0_ulp_mode_enter(dsi);
 647	mtk_dsi_clk_ulp_mode_enter(dsi);
 
 
 648
 649	mtk_dsi_disable(dsi);
 650
 651	clk_disable_unprepare(dsi->engine_clk);
 652	clk_disable_unprepare(dsi->digital_clk);
 653
 654	phy_power_off(dsi->phy);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 655}
 656
 657static void mtk_output_dsi_enable(struct mtk_dsi *dsi)
 658{
 659	int ret;
 660
 661	if (dsi->enabled)
 662		return;
 663
 664	ret = mtk_dsi_poweron(dsi);
 665	if (ret < 0) {
 666		DRM_ERROR("failed to power on dsi\n");
 667		return;
 668	}
 669
 670	mtk_dsi_set_mode(dsi);
 671	mtk_dsi_clk_hs_mode(dsi, 1);
 672
 673	mtk_dsi_start(dsi);
 674
 675	if (dsi->panel) {
 676		if (drm_panel_enable(dsi->panel)) {
 677			DRM_ERROR("failed to enable the panel\n");
 678			goto err_dsi_power_off;
 679		}
 680	}
 681
 682	dsi->enabled = true;
 683
 684	return;
 685err_dsi_power_off:
 686	mtk_dsi_stop(dsi);
 687	mtk_dsi_poweroff(dsi);
 688}
 689
 690static void mtk_output_dsi_disable(struct mtk_dsi *dsi)
 691{
 692	if (!dsi->enabled)
 693		return;
 694
 695	if (dsi->panel) {
 696		if (drm_panel_disable(dsi->panel)) {
 697			DRM_ERROR("failed to disable the panel\n");
 698			return;
 699		}
 700	}
 701
 702	mtk_dsi_poweroff(dsi);
 703
 704	dsi->enabled = false;
 705}
 706
 707static void mtk_dsi_encoder_destroy(struct drm_encoder *encoder)
 
 708{
 709	drm_encoder_cleanup(encoder);
 710}
 711
 712static const struct drm_encoder_funcs mtk_dsi_encoder_funcs = {
 713	.destroy = mtk_dsi_encoder_destroy,
 714};
 715
 716static bool mtk_dsi_encoder_mode_fixup(struct drm_encoder *encoder,
 717				       const struct drm_display_mode *mode,
 718				       struct drm_display_mode *adjusted_mode)
 719{
 720	return true;
 721}
 722
 723static void mtk_dsi_encoder_mode_set(struct drm_encoder *encoder,
 724				     struct drm_display_mode *mode,
 725				     struct drm_display_mode *adjusted)
 726{
 727	struct mtk_dsi *dsi = encoder_to_dsi(encoder);
 728
 729	drm_display_mode_to_videomode(adjusted, &dsi->vm);
 730}
 731
 732static void mtk_dsi_encoder_disable(struct drm_encoder *encoder)
 
 733{
 734	struct mtk_dsi *dsi = encoder_to_dsi(encoder);
 735
 736	mtk_output_dsi_disable(dsi);
 737}
 738
 739static void mtk_dsi_encoder_enable(struct drm_encoder *encoder)
 
 740{
 741	struct mtk_dsi *dsi = encoder_to_dsi(encoder);
 
 
 
 742
 743	mtk_output_dsi_enable(dsi);
 744}
 745
 746static int mtk_dsi_connector_get_modes(struct drm_connector *connector)
 
 747{
 748	struct mtk_dsi *dsi = connector_to_dsi(connector);
 
 749
 750	return drm_panel_get_modes(dsi->panel);
 
 
 751}
 752
 753static const struct drm_encoder_helper_funcs mtk_dsi_encoder_helper_funcs = {
 754	.mode_fixup = mtk_dsi_encoder_mode_fixup,
 755	.mode_set = mtk_dsi_encoder_mode_set,
 756	.disable = mtk_dsi_encoder_disable,
 757	.enable = mtk_dsi_encoder_enable,
 758};
 759
 760static const struct drm_connector_funcs mtk_dsi_connector_funcs = {
 761	.fill_modes = drm_helper_probe_single_connector_modes,
 762	.destroy = drm_connector_cleanup,
 763	.reset = drm_atomic_helper_connector_reset,
 764	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
 765	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
 766};
 767
 768static const struct drm_connector_helper_funcs
 769	mtk_dsi_connector_helper_funcs = {
 770	.get_modes = mtk_dsi_connector_get_modes,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 771};
 772
 773static int mtk_dsi_create_connector(struct drm_device *drm, struct mtk_dsi *dsi)
 774{
 775	int ret;
 776
 777	ret = drm_connector_init(drm, &dsi->conn, &mtk_dsi_connector_funcs,
 778				 DRM_MODE_CONNECTOR_DSI);
 779	if (ret) {
 780		DRM_ERROR("Failed to connector init to drm\n");
 781		return ret;
 782	}
 783
 784	drm_connector_helper_add(&dsi->conn, &mtk_dsi_connector_helper_funcs);
 
 
 785
 786	dsi->conn.dpms = DRM_MODE_DPMS_OFF;
 787	drm_connector_attach_encoder(&dsi->conn, &dsi->encoder);
 788
 789	if (dsi->panel) {
 790		ret = drm_panel_attach(dsi->panel, &dsi->conn);
 791		if (ret) {
 792			DRM_ERROR("Failed to attach panel to drm\n");
 793			goto err_connector_cleanup;
 794		}
 795	}
 796
 797	return 0;
 798
 799err_connector_cleanup:
 800	drm_connector_cleanup(&dsi->conn);
 801	return ret;
 802}
 803
 804static int mtk_dsi_create_conn_enc(struct drm_device *drm, struct mtk_dsi *dsi)
 805{
 806	int ret;
 807
 808	ret = drm_encoder_init(drm, &dsi->encoder, &mtk_dsi_encoder_funcs,
 809			       DRM_MODE_ENCODER_DSI, NULL);
 810	if (ret) {
 811		DRM_ERROR("Failed to encoder init to drm\n");
 812		return ret;
 813	}
 814	drm_encoder_helper_add(&dsi->encoder, &mtk_dsi_encoder_helper_funcs);
 815
 816	/*
 817	 * Currently display data paths are statically assigned to a crtc each.
 818	 * crtc 0 is OVL0 -> COLOR0 -> AAL -> OD -> RDMA0 -> UFOE -> DSI0
 819	 */
 820	dsi->encoder.possible_crtcs = 1;
 
 
 
 
 821
 822	/* If there's a bridge, attach to it and let it create the connector */
 823	if (dsi->bridge) {
 824		ret = drm_bridge_attach(&dsi->encoder, dsi->bridge, NULL);
 825		if (ret) {
 826			DRM_ERROR("Failed to attach bridge to drm\n");
 827			goto err_encoder_cleanup;
 828		}
 829	} else {
 830		/* Otherwise create our own connector and attach to a panel */
 831		ret = mtk_dsi_create_connector(drm, dsi);
 832		if (ret)
 833			goto err_encoder_cleanup;
 834	}
 
 835
 836	return 0;
 837
 838err_encoder_cleanup:
 839	drm_encoder_cleanup(&dsi->encoder);
 840	return ret;
 841}
 842
 843static void mtk_dsi_destroy_conn_enc(struct mtk_dsi *dsi)
 844{
 845	drm_encoder_cleanup(&dsi->encoder);
 846	/* Skip connector cleanup if creation was delegated to the bridge */
 847	if (dsi->conn.dev)
 848		drm_connector_cleanup(&dsi->conn);
 849	if (dsi->panel)
 850		drm_panel_detach(dsi->panel);
 851}
 852
 853static void mtk_dsi_ddp_start(struct mtk_ddp_comp *comp)
 854{
 855	struct mtk_dsi *dsi = container_of(comp, struct mtk_dsi, ddp_comp);
 
 
 856
 857	mtk_dsi_poweron(dsi);
 
 
 
 
 858}
 859
 860static void mtk_dsi_ddp_stop(struct mtk_ddp_comp *comp)
 
 861{
 862	struct mtk_dsi *dsi = container_of(comp, struct mtk_dsi, ddp_comp);
 863
 864	mtk_dsi_poweroff(dsi);
 865}
 866
 867static const struct mtk_ddp_comp_funcs mtk_dsi_funcs = {
 868	.start = mtk_dsi_ddp_start,
 869	.stop = mtk_dsi_ddp_stop,
 870};
 871
 872static int mtk_dsi_host_attach(struct mipi_dsi_host *host,
 873			       struct mipi_dsi_device *device)
 874{
 875	struct mtk_dsi *dsi = host_to_dsi(host);
 
 
 876
 877	dsi->lanes = device->lanes;
 878	dsi->format = device->format;
 879	dsi->mode_flags = device->mode_flags;
 
 
 
 
 
 880
 881	if (dsi->conn.dev)
 882		drm_helper_hpd_irq_event(dsi->conn.dev);
 
 
 
 
 
 
 
 
 
 
 
 
 883
 884	return 0;
 885}
 886
 887static int mtk_dsi_host_detach(struct mipi_dsi_host *host,
 888			       struct mipi_dsi_device *device)
 889{
 890	struct mtk_dsi *dsi = host_to_dsi(host);
 891
 892	if (dsi->conn.dev)
 893		drm_helper_hpd_irq_event(dsi->conn.dev);
 894
 895	return 0;
 896}
 897
 898static void mtk_dsi_wait_for_idle(struct mtk_dsi *dsi)
 899{
 900	int ret;
 901	u32 val;
 902
 903	ret = readl_poll_timeout(dsi->regs + DSI_INTSTA, val, !(val & DSI_BUSY),
 904				 4, 2000000);
 905	if (ret) {
 906		DRM_WARN("polling dsi wait not busy timeout!\n");
 907
 908		mtk_dsi_enable(dsi);
 909		mtk_dsi_reset_engine(dsi);
 910	}
 911}
 912
 913static u32 mtk_dsi_recv_cnt(u8 type, u8 *read_data)
 914{
 915	switch (type) {
 916	case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_1BYTE:
 917	case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE:
 918		return 1;
 919	case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_2BYTE:
 920	case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE:
 921		return 2;
 922	case MIPI_DSI_RX_GENERIC_LONG_READ_RESPONSE:
 923	case MIPI_DSI_RX_DCS_LONG_READ_RESPONSE:
 924		return read_data[1] + read_data[2] * 16;
 925	case MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT:
 926		DRM_INFO("type is 0x02, try again\n");
 927		break;
 928	default:
 929		DRM_INFO("type(0x%x) not recognized\n", type);
 930		break;
 931	}
 932
 933	return 0;
 934}
 935
 936static void mtk_dsi_cmdq(struct mtk_dsi *dsi, const struct mipi_dsi_msg *msg)
 937{
 938	const char *tx_buf = msg->tx_buf;
 939	u8 config, cmdq_size, cmdq_off, type = msg->type;
 940	u32 reg_val, cmdq_mask, i;
 
 941
 942	if (MTK_DSI_HOST_IS_READ(type))
 943		config = BTA;
 944	else
 945		config = (msg->tx_len > 2) ? LONG_PACKET : SHORT_PACKET;
 946
 947	if (msg->tx_len > 2) {
 948		cmdq_size = 1 + (msg->tx_len + 3) / 4;
 949		cmdq_off = 4;
 950		cmdq_mask = CONFIG | DATA_ID | DATA_0 | DATA_1;
 951		reg_val = (msg->tx_len << 16) | (type << 8) | config;
 952	} else {
 953		cmdq_size = 1;
 954		cmdq_off = 2;
 955		cmdq_mask = CONFIG | DATA_ID;
 956		reg_val = (type << 8) | config;
 957	}
 958
 959	for (i = 0; i < msg->tx_len; i++)
 960		writeb(tx_buf[i], dsi->regs + DSI_CMDQ0 + cmdq_off + i);
 
 
 961
 962	mtk_dsi_mask(dsi, DSI_CMDQ0, cmdq_mask, reg_val);
 963	mtk_dsi_mask(dsi, DSI_CMDQ_SIZE, CMDQ_SIZE, cmdq_size);
 
 
 
 
 964}
 965
 966static ssize_t mtk_dsi_host_send_cmd(struct mtk_dsi *dsi,
 967				     const struct mipi_dsi_msg *msg, u8 flag)
 968{
 969	mtk_dsi_wait_for_idle(dsi);
 970	mtk_dsi_irq_data_clear(dsi, flag);
 971	mtk_dsi_cmdq(dsi, msg);
 972	mtk_dsi_start(dsi);
 973
 974	if (!mtk_dsi_wait_for_irq_done(dsi, flag, 2000))
 975		return -ETIME;
 976	else
 977		return 0;
 978}
 979
 980static ssize_t mtk_dsi_host_transfer(struct mipi_dsi_host *host,
 981				     const struct mipi_dsi_msg *msg)
 982{
 983	struct mtk_dsi *dsi = host_to_dsi(host);
 984	u32 recv_cnt, i;
 985	u8 read_data[16];
 986	void *src_addr;
 987	u8 irq_flag = CMD_DONE_INT_FLAG;
 
 
 988
 989	if (readl(dsi->regs + DSI_MODE_CTRL) & MODE) {
 990		DRM_ERROR("dsi engine is not command mode\n");
 991		return -EINVAL;
 
 
 
 992	}
 993
 994	if (MTK_DSI_HOST_IS_READ(msg->type))
 995		irq_flag |= LPRX_RD_RDY_INT_FLAG;
 996
 997	if (mtk_dsi_host_send_cmd(dsi, msg, irq_flag) < 0)
 998		return -ETIME;
 
 
 
 999
1000	if (!MTK_DSI_HOST_IS_READ(msg->type))
1001		return 0;
 
 
1002
1003	if (!msg->rx_buf) {
1004		DRM_ERROR("dsi receive buffer size may be NULL\n");
1005		return -EINVAL;
 
1006	}
1007
1008	for (i = 0; i < 16; i++)
1009		*(read_data + i) = readb(dsi->regs + DSI_RX_DATA0 + i);
1010
1011	recv_cnt = mtk_dsi_recv_cnt(read_data[0], read_data);
1012
1013	if (recv_cnt > 2)
1014		src_addr = &read_data[4];
1015	else
1016		src_addr = &read_data[1];
1017
1018	if (recv_cnt > 10)
1019		recv_cnt = 10;
1020
1021	if (recv_cnt > msg->rx_len)
1022		recv_cnt = msg->rx_len;
1023
1024	if (recv_cnt)
1025		memcpy(msg->rx_buf, src_addr, recv_cnt);
1026
1027	DRM_INFO("dsi get %d byte data from the panel address(0x%x)\n",
1028		 recv_cnt, *((u8 *)(msg->tx_buf)));
1029
1030	return recv_cnt;
 
 
 
 
 
 
1031}
1032
1033static const struct mipi_dsi_host_ops mtk_dsi_ops = {
1034	.attach = mtk_dsi_host_attach,
1035	.detach = mtk_dsi_host_detach,
1036	.transfer = mtk_dsi_host_transfer,
1037};
1038
1039static int mtk_dsi_bind(struct device *dev, struct device *master, void *data)
1040{
1041	int ret;
1042	struct drm_device *drm = data;
1043	struct mtk_dsi *dsi = dev_get_drvdata(dev);
1044
1045	ret = mtk_ddp_comp_register(drm, &dsi->ddp_comp);
1046	if (ret < 0) {
1047		dev_err(dev, "Failed to register component %pOF: %d\n",
1048			dev->of_node, ret);
1049		return ret;
1050	}
1051
1052	ret = mipi_dsi_host_register(&dsi->host);
1053	if (ret < 0) {
1054		dev_err(dev, "failed to register DSI host: %d\n", ret);
1055		goto err_ddp_comp_unregister;
1056	}
1057
1058	ret = mtk_dsi_create_conn_enc(drm, dsi);
1059	if (ret) {
1060		DRM_ERROR("Encoder create failed with %d\n", ret);
1061		goto err_unregister;
1062	}
1063
1064	return 0;
1065
1066err_unregister:
1067	mipi_dsi_host_unregister(&dsi->host);
1068err_ddp_comp_unregister:
1069	mtk_ddp_comp_unregister(drm, &dsi->ddp_comp);
1070	return ret;
1071}
1072
1073static void mtk_dsi_unbind(struct device *dev, struct device *master,
1074			   void *data)
1075{
1076	struct drm_device *drm = data;
1077	struct mtk_dsi *dsi = dev_get_drvdata(dev);
1078
1079	mtk_dsi_destroy_conn_enc(dsi);
1080	mipi_dsi_host_unregister(&dsi->host);
1081	mtk_ddp_comp_unregister(drm, &dsi->ddp_comp);
1082}
1083
1084static const struct component_ops mtk_dsi_component_ops = {
1085	.bind = mtk_dsi_bind,
1086	.unbind = mtk_dsi_unbind,
1087};
1088
1089static int mtk_dsi_probe(struct platform_device *pdev)
1090{
1091	struct mtk_dsi *dsi;
1092	struct device *dev = &pdev->dev;
1093	struct resource *regs;
1094	int irq_num;
1095	int comp_id;
1096	int ret;
1097
1098	dsi = devm_kzalloc(dev, sizeof(*dsi), GFP_KERNEL);
1099	if (!dsi)
1100		return -ENOMEM;
1101
1102	dsi->host.ops = &mtk_dsi_ops;
1103	dsi->host.dev = dev;
1104
1105	ret = drm_of_find_panel_or_bridge(dev->of_node, 0, 0,
1106					  &dsi->panel, &dsi->bridge);
1107	if (ret)
1108		return ret;
1109
1110	dsi->engine_clk = devm_clk_get(dev, "engine");
1111	if (IS_ERR(dsi->engine_clk)) {
1112		ret = PTR_ERR(dsi->engine_clk);
1113		dev_err(dev, "Failed to get engine clock: %d\n", ret);
1114		return ret;
1115	}
1116
1117	dsi->digital_clk = devm_clk_get(dev, "digital");
1118	if (IS_ERR(dsi->digital_clk)) {
1119		ret = PTR_ERR(dsi->digital_clk);
1120		dev_err(dev, "Failed to get digital clock: %d\n", ret);
1121		return ret;
1122	}
1123
1124	dsi->hs_clk = devm_clk_get(dev, "hs");
1125	if (IS_ERR(dsi->hs_clk)) {
1126		ret = PTR_ERR(dsi->hs_clk);
1127		dev_err(dev, "Failed to get hs clock: %d\n", ret);
1128		return ret;
1129	}
1130
1131	regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1132	dsi->regs = devm_ioremap_resource(dev, regs);
1133	if (IS_ERR(dsi->regs)) {
1134		ret = PTR_ERR(dsi->regs);
1135		dev_err(dev, "Failed to ioremap memory: %d\n", ret);
1136		return ret;
1137	}
1138
1139	dsi->phy = devm_phy_get(dev, "dphy");
1140	if (IS_ERR(dsi->phy)) {
1141		ret = PTR_ERR(dsi->phy);
1142		dev_err(dev, "Failed to get MIPI-DPHY: %d\n", ret);
1143		return ret;
1144	}
1145
1146	comp_id = mtk_ddp_comp_get_id(dev->of_node, MTK_DSI);
1147	if (comp_id < 0) {
1148		dev_err(dev, "Failed to identify by alias: %d\n", comp_id);
1149		return comp_id;
1150	}
1151
1152	ret = mtk_ddp_comp_init(dev, dev->of_node, &dsi->ddp_comp, comp_id,
1153				&mtk_dsi_funcs);
1154	if (ret) {
1155		dev_err(dev, "Failed to initialize component: %d\n", ret);
1156		return ret;
1157	}
1158
1159	irq_num = platform_get_irq(pdev, 0);
1160	if (irq_num < 0) {
1161		dev_err(&pdev->dev, "failed to request dsi irq resource\n");
1162		return -EPROBE_DEFER;
1163	}
1164
1165	irq_set_status_flags(irq_num, IRQ_TYPE_LEVEL_LOW);
1166	ret = devm_request_irq(&pdev->dev, irq_num, mtk_dsi_irq,
1167			       IRQF_TRIGGER_LOW, dev_name(&pdev->dev), dsi);
1168	if (ret) {
1169		dev_err(&pdev->dev, "failed to request mediatek dsi irq\n");
1170		return -EPROBE_DEFER;
1171	}
1172
1173	init_waitqueue_head(&dsi->irq_wait_queue);
1174
1175	platform_set_drvdata(pdev, dsi);
1176
1177	return component_add(&pdev->dev, &mtk_dsi_component_ops);
 
 
 
 
1178}
1179
1180static int mtk_dsi_remove(struct platform_device *pdev)
1181{
1182	struct mtk_dsi *dsi = platform_get_drvdata(pdev);
1183
1184	mtk_output_dsi_disable(dsi);
1185	component_del(&pdev->dev, &mtk_dsi_component_ops);
 
 
 
 
 
 
 
1186
1187	return 0;
1188}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1189
1190static const struct of_device_id mtk_dsi_of_match[] = {
1191	{ .compatible = "mediatek,mt2701-dsi" },
1192	{ .compatible = "mediatek,mt8173-dsi" },
1193	{ },
 
 
 
1194};
 
1195
1196struct platform_driver mtk_dsi_driver = {
1197	.probe = mtk_dsi_probe,
1198	.remove = mtk_dsi_remove,
1199	.driver = {
1200		.name = "mtk-dsi",
1201		.of_match_table = mtk_dsi_of_match,
1202	},
1203};