Linux Audio

Check our new training course

Yocto distribution development and maintenance

Need a Yocto distribution for your embedded project?
Loading...
Note: File does not exist in v4.6.
   1// SPDX-License-Identifier: GPL-2.0+
   2/*
   3 * Copyright (c) 2016, Fuzhou Rockchip Electronics Co., Ltd
   4 * Copyright (C) STMicroelectronics SA 2017
   5 *
   6 * Modified by Philippe Cornu <philippe.cornu@st.com>
   7 * This generic Synopsys DesignWare MIPI DSI host driver is based on the
   8 * Rockchip version from rockchip/dw-mipi-dsi.c with phy & bridge APIs.
   9 */
  10
  11#include <linux/clk.h>
  12#include <linux/component.h>
  13#include <linux/debugfs.h>
  14#include <linux/iopoll.h>
  15#include <linux/math64.h>
  16#include <linux/media-bus-format.h>
  17#include <linux/module.h>
  18#include <linux/platform_device.h>
  19#include <linux/pm_runtime.h>
  20#include <linux/reset.h>
  21
  22#include <video/mipi_display.h>
  23
  24#include <drm/bridge/dw_mipi_dsi.h>
  25#include <drm/drm_atomic_helper.h>
  26#include <drm/drm_bridge.h>
  27#include <drm/drm_connector.h>
  28#include <drm/drm_crtc.h>
  29#include <drm/drm_mipi_dsi.h>
  30#include <drm/drm_modes.h>
  31#include <drm/drm_of.h>
  32#include <drm/drm_print.h>
  33
  34#define HWVER_131			0x31333100	/* IP version 1.31 */
  35
  36#define DSI_VERSION			0x00
  37#define VERSION				GENMASK(31, 8)
  38
  39#define DSI_PWR_UP			0x04
  40#define RESET				0
  41#define POWERUP				BIT(0)
  42
  43#define DSI_CLKMGR_CFG			0x08
  44#define TO_CLK_DIVISION(div)		(((div) & 0xff) << 8)
  45#define TX_ESC_CLK_DIVISION(div)	((div) & 0xff)
  46
  47#define DSI_DPI_VCID			0x0c
  48#define DPI_VCID(vcid)			((vcid) & 0x3)
  49
  50#define DSI_DPI_COLOR_CODING		0x10
  51#define LOOSELY18_EN			BIT(8)
  52#define DPI_COLOR_CODING_16BIT_1	0x0
  53#define DPI_COLOR_CODING_16BIT_2	0x1
  54#define DPI_COLOR_CODING_16BIT_3	0x2
  55#define DPI_COLOR_CODING_18BIT_1	0x3
  56#define DPI_COLOR_CODING_18BIT_2	0x4
  57#define DPI_COLOR_CODING_24BIT		0x5
  58
  59#define DSI_DPI_CFG_POL			0x14
  60#define COLORM_ACTIVE_LOW		BIT(4)
  61#define SHUTD_ACTIVE_LOW		BIT(3)
  62#define HSYNC_ACTIVE_LOW		BIT(2)
  63#define VSYNC_ACTIVE_LOW		BIT(1)
  64#define DATAEN_ACTIVE_LOW		BIT(0)
  65
  66#define DSI_DPI_LP_CMD_TIM		0x18
  67#define OUTVACT_LPCMD_TIME(p)		(((p) & 0xff) << 16)
  68#define INVACT_LPCMD_TIME(p)		((p) & 0xff)
  69
  70#define DSI_DBI_VCID			0x1c
  71#define DSI_DBI_CFG			0x20
  72#define DSI_DBI_PARTITIONING_EN		0x24
  73#define DSI_DBI_CMDSIZE			0x28
  74
  75#define DSI_PCKHDL_CFG			0x2c
  76#define CRC_RX_EN			BIT(4)
  77#define ECC_RX_EN			BIT(3)
  78#define BTA_EN				BIT(2)
  79#define EOTP_RX_EN			BIT(1)
  80#define EOTP_TX_EN			BIT(0)
  81
  82#define DSI_GEN_VCID			0x30
  83
  84#define DSI_MODE_CFG			0x34
  85#define ENABLE_VIDEO_MODE		0
  86#define ENABLE_CMD_MODE			BIT(0)
  87
  88#define DSI_VID_MODE_CFG		0x38
  89#define ENABLE_LOW_POWER		(0x3f << 8)
  90#define ENABLE_LOW_POWER_MASK		(0x3f << 8)
  91#define VID_MODE_TYPE_NON_BURST_SYNC_PULSES	0x0
  92#define VID_MODE_TYPE_NON_BURST_SYNC_EVENTS	0x1
  93#define VID_MODE_TYPE_BURST			0x2
  94#define VID_MODE_TYPE_MASK			0x3
  95#define ENABLE_LOW_POWER_CMD		BIT(15)
  96#define VID_MODE_VPG_ENABLE		BIT(16)
  97#define VID_MODE_VPG_MODE		BIT(20)
  98#define VID_MODE_VPG_HORIZONTAL		BIT(24)
  99
 100#define DSI_VID_PKT_SIZE		0x3c
 101#define VID_PKT_SIZE(p)			((p) & 0x3fff)
 102
 103#define DSI_VID_NUM_CHUNKS		0x40
 104#define VID_NUM_CHUNKS(c)		((c) & 0x1fff)
 105
 106#define DSI_VID_NULL_SIZE		0x44
 107#define VID_NULL_SIZE(b)		((b) & 0x1fff)
 108
 109#define DSI_VID_HSA_TIME		0x48
 110#define DSI_VID_HBP_TIME		0x4c
 111#define DSI_VID_HLINE_TIME		0x50
 112#define DSI_VID_VSA_LINES		0x54
 113#define DSI_VID_VBP_LINES		0x58
 114#define DSI_VID_VFP_LINES		0x5c
 115#define DSI_VID_VACTIVE_LINES		0x60
 116#define DSI_EDPI_CMD_SIZE		0x64
 117
 118#define DSI_CMD_MODE_CFG		0x68
 119#define MAX_RD_PKT_SIZE_LP		BIT(24)
 120#define DCS_LW_TX_LP			BIT(19)
 121#define DCS_SR_0P_TX_LP			BIT(18)
 122#define DCS_SW_1P_TX_LP			BIT(17)
 123#define DCS_SW_0P_TX_LP			BIT(16)
 124#define GEN_LW_TX_LP			BIT(14)
 125#define GEN_SR_2P_TX_LP			BIT(13)
 126#define GEN_SR_1P_TX_LP			BIT(12)
 127#define GEN_SR_0P_TX_LP			BIT(11)
 128#define GEN_SW_2P_TX_LP			BIT(10)
 129#define GEN_SW_1P_TX_LP			BIT(9)
 130#define GEN_SW_0P_TX_LP			BIT(8)
 131#define ACK_RQST_EN			BIT(1)
 132#define TEAR_FX_EN			BIT(0)
 133
 134#define CMD_MODE_ALL_LP			(MAX_RD_PKT_SIZE_LP | \
 135					 DCS_LW_TX_LP | \
 136					 DCS_SR_0P_TX_LP | \
 137					 DCS_SW_1P_TX_LP | \
 138					 DCS_SW_0P_TX_LP | \
 139					 GEN_LW_TX_LP | \
 140					 GEN_SR_2P_TX_LP | \
 141					 GEN_SR_1P_TX_LP | \
 142					 GEN_SR_0P_TX_LP | \
 143					 GEN_SW_2P_TX_LP | \
 144					 GEN_SW_1P_TX_LP | \
 145					 GEN_SW_0P_TX_LP)
 146
 147#define DSI_GEN_HDR			0x6c
 148#define DSI_GEN_PLD_DATA		0x70
 149
 150#define DSI_CMD_PKT_STATUS		0x74
 151#define GEN_RD_CMD_BUSY			BIT(6)
 152#define GEN_PLD_R_FULL			BIT(5)
 153#define GEN_PLD_R_EMPTY			BIT(4)
 154#define GEN_PLD_W_FULL			BIT(3)
 155#define GEN_PLD_W_EMPTY			BIT(2)
 156#define GEN_CMD_FULL			BIT(1)
 157#define GEN_CMD_EMPTY			BIT(0)
 158
 159#define DSI_TO_CNT_CFG			0x78
 160#define HSTX_TO_CNT(p)			(((p) & 0xffff) << 16)
 161#define LPRX_TO_CNT(p)			((p) & 0xffff)
 162
 163#define DSI_HS_RD_TO_CNT		0x7c
 164#define DSI_LP_RD_TO_CNT		0x80
 165#define DSI_HS_WR_TO_CNT		0x84
 166#define DSI_LP_WR_TO_CNT		0x88
 167#define DSI_BTA_TO_CNT			0x8c
 168
 169#define DSI_LPCLK_CTRL			0x94
 170#define AUTO_CLKLANE_CTRL		BIT(1)
 171#define PHY_TXREQUESTCLKHS		BIT(0)
 172
 173#define DSI_PHY_TMR_LPCLK_CFG		0x98
 174#define PHY_CLKHS2LP_TIME(lbcc)		(((lbcc) & 0x3ff) << 16)
 175#define PHY_CLKLP2HS_TIME(lbcc)		((lbcc) & 0x3ff)
 176
 177#define DSI_PHY_TMR_CFG			0x9c
 178#define PHY_HS2LP_TIME(lbcc)		(((lbcc) & 0xff) << 24)
 179#define PHY_LP2HS_TIME(lbcc)		(((lbcc) & 0xff) << 16)
 180#define MAX_RD_TIME(lbcc)		((lbcc) & 0x7fff)
 181#define PHY_HS2LP_TIME_V131(lbcc)	(((lbcc) & 0x3ff) << 16)
 182#define PHY_LP2HS_TIME_V131(lbcc)	((lbcc) & 0x3ff)
 183
 184#define DSI_PHY_RSTZ			0xa0
 185#define PHY_DISFORCEPLL			0
 186#define PHY_ENFORCEPLL			BIT(3)
 187#define PHY_DISABLECLK			0
 188#define PHY_ENABLECLK			BIT(2)
 189#define PHY_RSTZ			0
 190#define PHY_UNRSTZ			BIT(1)
 191#define PHY_SHUTDOWNZ			0
 192#define PHY_UNSHUTDOWNZ			BIT(0)
 193
 194#define DSI_PHY_IF_CFG			0xa4
 195#define PHY_STOP_WAIT_TIME(cycle)	(((cycle) & 0xff) << 8)
 196#define N_LANES(n)			(((n) - 1) & 0x3)
 197
 198#define DSI_PHY_ULPS_CTRL		0xa8
 199#define DSI_PHY_TX_TRIGGERS		0xac
 200
 201#define DSI_PHY_STATUS			0xb0
 202#define PHY_STOP_STATE_CLK_LANE		BIT(2)
 203#define PHY_LOCK			BIT(0)
 204
 205#define DSI_PHY_TST_CTRL0		0xb4
 206#define PHY_TESTCLK			BIT(1)
 207#define PHY_UNTESTCLK			0
 208#define PHY_TESTCLR			BIT(0)
 209#define PHY_UNTESTCLR			0
 210
 211#define DSI_PHY_TST_CTRL1		0xb8
 212#define PHY_TESTEN			BIT(16)
 213#define PHY_UNTESTEN			0
 214#define PHY_TESTDOUT(n)			(((n) & 0xff) << 8)
 215#define PHY_TESTDIN(n)			((n) & 0xff)
 216
 217#define DSI_INT_ST0			0xbc
 218#define DSI_INT_ST1			0xc0
 219#define DSI_INT_MSK0			0xc4
 220#define DSI_INT_MSK1			0xc8
 221
 222#define DSI_PHY_TMR_RD_CFG		0xf4
 223#define MAX_RD_TIME_V131(lbcc)		((lbcc) & 0x7fff)
 224
 225#define PHY_STATUS_TIMEOUT_US		10000
 226#define CMD_PKT_STATUS_TIMEOUT_US	20000
 227
 228#ifdef CONFIG_DEBUG_FS
 229#define VPG_DEFS(name, dsi) \
 230	((void __force *)&((*dsi).vpg_defs.name))
 231
 232#define REGISTER(name, mask, dsi) \
 233	{ #name, VPG_DEFS(name, dsi), mask, dsi }
 234
 235struct debugfs_entries {
 236	const char				*name;
 237	bool					*reg;
 238	u32					mask;
 239	struct dw_mipi_dsi			*dsi;
 240};
 241#endif /* CONFIG_DEBUG_FS */
 242
 243struct dw_mipi_dsi {
 244	struct drm_bridge bridge;
 245	struct mipi_dsi_host dsi_host;
 246	struct drm_bridge *panel_bridge;
 247	struct device *dev;
 248	void __iomem *base;
 249
 250	struct clk *pclk;
 251
 252	unsigned int lane_mbps; /* per lane */
 253	u32 channel;
 254	u32 lanes;
 255	u32 format;
 256	unsigned long mode_flags;
 257
 258#ifdef CONFIG_DEBUG_FS
 259	struct dentry *debugfs;
 260	struct debugfs_entries *debugfs_vpg;
 261	struct {
 262		bool vpg;
 263		bool vpg_horizontal;
 264		bool vpg_ber_pattern;
 265	} vpg_defs;
 266#endif /* CONFIG_DEBUG_FS */
 267
 268	struct dw_mipi_dsi *master; /* dual-dsi master ptr */
 269	struct dw_mipi_dsi *slave; /* dual-dsi slave ptr */
 270
 271	struct drm_display_mode mode;
 272	const struct dw_mipi_dsi_plat_data *plat_data;
 273};
 274
 275/*
 276 * Check if either a link to a master or slave is present
 277 */
 278static inline bool dw_mipi_is_dual_mode(struct dw_mipi_dsi *dsi)
 279{
 280	return dsi->slave || dsi->master;
 281}
 282
 283/*
 284 * The controller should generate 2 frames before
 285 * preparing the peripheral.
 286 */
 287static void dw_mipi_dsi_wait_for_two_frames(const struct drm_display_mode *mode)
 288{
 289	int refresh, two_frames;
 290
 291	refresh = drm_mode_vrefresh(mode);
 292	two_frames = DIV_ROUND_UP(MSEC_PER_SEC, refresh) * 2;
 293	msleep(two_frames);
 294}
 295
 296static inline struct dw_mipi_dsi *host_to_dsi(struct mipi_dsi_host *host)
 297{
 298	return container_of(host, struct dw_mipi_dsi, dsi_host);
 299}
 300
 301static inline struct dw_mipi_dsi *bridge_to_dsi(struct drm_bridge *bridge)
 302{
 303	return container_of(bridge, struct dw_mipi_dsi, bridge);
 304}
 305
 306static inline void dsi_write(struct dw_mipi_dsi *dsi, u32 reg, u32 val)
 307{
 308	writel(val, dsi->base + reg);
 309}
 310
 311static inline u32 dsi_read(struct dw_mipi_dsi *dsi, u32 reg)
 312{
 313	return readl(dsi->base + reg);
 314}
 315
 316static int dw_mipi_dsi_host_attach(struct mipi_dsi_host *host,
 317				   struct mipi_dsi_device *device)
 318{
 319	struct dw_mipi_dsi *dsi = host_to_dsi(host);
 320	const struct dw_mipi_dsi_plat_data *pdata = dsi->plat_data;
 321	struct drm_bridge *bridge;
 322	int ret;
 323
 324	if (device->lanes > dsi->plat_data->max_data_lanes) {
 325		dev_err(dsi->dev, "the number of data lanes(%u) is too many\n",
 326			device->lanes);
 327		return -EINVAL;
 328	}
 329
 330	dsi->lanes = device->lanes;
 331	dsi->channel = device->channel;
 332	dsi->format = device->format;
 333	dsi->mode_flags = device->mode_flags;
 334
 335	bridge = devm_drm_of_get_bridge(dsi->dev, dsi->dev->of_node, 1, 0);
 336	if (IS_ERR(bridge))
 337		return PTR_ERR(bridge);
 338
 339	bridge->pre_enable_prev_first = true;
 340	dsi->panel_bridge = bridge;
 341
 342	drm_bridge_add(&dsi->bridge);
 343
 344	if (pdata->host_ops && pdata->host_ops->attach) {
 345		ret = pdata->host_ops->attach(pdata->priv_data, device);
 346		if (ret < 0)
 347			return ret;
 348	}
 349
 350	return 0;
 351}
 352
 353static int dw_mipi_dsi_host_detach(struct mipi_dsi_host *host,
 354				   struct mipi_dsi_device *device)
 355{
 356	struct dw_mipi_dsi *dsi = host_to_dsi(host);
 357	const struct dw_mipi_dsi_plat_data *pdata = dsi->plat_data;
 358	int ret;
 359
 360	if (pdata->host_ops && pdata->host_ops->detach) {
 361		ret = pdata->host_ops->detach(pdata->priv_data, device);
 362		if (ret < 0)
 363			return ret;
 364	}
 365
 366	drm_of_panel_bridge_remove(host->dev->of_node, 1, 0);
 367
 368	drm_bridge_remove(&dsi->bridge);
 369
 370	return 0;
 371}
 372
 373static void dw_mipi_message_config(struct dw_mipi_dsi *dsi,
 374				   const struct mipi_dsi_msg *msg)
 375{
 376	bool lpm = msg->flags & MIPI_DSI_MSG_USE_LPM;
 377	u32 val = 0;
 378
 379	/*
 380	 * TODO dw drv improvements
 381	 * largest packet sizes during hfp or during vsa/vpb/vfp
 382	 * should be computed according to byte lane, lane number and only
 383	 * if sending lp cmds in high speed is enable (PHY_TXREQUESTCLKHS)
 384	 */
 385	dsi_write(dsi, DSI_DPI_LP_CMD_TIM, OUTVACT_LPCMD_TIME(16)
 386		  | INVACT_LPCMD_TIME(4));
 387
 388	if (msg->flags & MIPI_DSI_MSG_REQ_ACK)
 389		val |= ACK_RQST_EN;
 390	if (lpm)
 391		val |= CMD_MODE_ALL_LP;
 392
 393	dsi_write(dsi, DSI_CMD_MODE_CFG, val);
 394
 395	val = dsi_read(dsi, DSI_VID_MODE_CFG);
 396	if (lpm)
 397		val |= ENABLE_LOW_POWER_CMD;
 398	else
 399		val &= ~ENABLE_LOW_POWER_CMD;
 400	dsi_write(dsi, DSI_VID_MODE_CFG, val);
 401}
 402
 403static int dw_mipi_dsi_gen_pkt_hdr_write(struct dw_mipi_dsi *dsi, u32 hdr_val)
 404{
 405	int ret;
 406	u32 val, mask;
 407
 408	ret = readl_poll_timeout(dsi->base + DSI_CMD_PKT_STATUS,
 409				 val, !(val & GEN_CMD_FULL), 1000,
 410				 CMD_PKT_STATUS_TIMEOUT_US);
 411	if (ret) {
 412		dev_err(dsi->dev, "failed to get available command FIFO\n");
 413		return ret;
 414	}
 415
 416	dsi_write(dsi, DSI_GEN_HDR, hdr_val);
 417
 418	mask = GEN_CMD_EMPTY | GEN_PLD_W_EMPTY;
 419	ret = readl_poll_timeout(dsi->base + DSI_CMD_PKT_STATUS,
 420				 val, (val & mask) == mask,
 421				 1000, CMD_PKT_STATUS_TIMEOUT_US);
 422	if (ret) {
 423		dev_err(dsi->dev, "failed to write command FIFO\n");
 424		return ret;
 425	}
 426
 427	return 0;
 428}
 429
 430static int dw_mipi_dsi_write(struct dw_mipi_dsi *dsi,
 431			     const struct mipi_dsi_packet *packet)
 432{
 433	const u8 *tx_buf = packet->payload;
 434	int len = packet->payload_length, pld_data_bytes = sizeof(u32), ret;
 435	__le32 word;
 436	u32 val;
 437
 438	while (len) {
 439		if (len < pld_data_bytes) {
 440			word = 0;
 441			memcpy(&word, tx_buf, len);
 442			dsi_write(dsi, DSI_GEN_PLD_DATA, le32_to_cpu(word));
 443			len = 0;
 444		} else {
 445			memcpy(&word, tx_buf, pld_data_bytes);
 446			dsi_write(dsi, DSI_GEN_PLD_DATA, le32_to_cpu(word));
 447			tx_buf += pld_data_bytes;
 448			len -= pld_data_bytes;
 449		}
 450
 451		ret = readl_poll_timeout(dsi->base + DSI_CMD_PKT_STATUS,
 452					 val, !(val & GEN_PLD_W_FULL), 1000,
 453					 CMD_PKT_STATUS_TIMEOUT_US);
 454		if (ret) {
 455			dev_err(dsi->dev,
 456				"failed to get available write payload FIFO\n");
 457			return ret;
 458		}
 459	}
 460
 461	word = 0;
 462	memcpy(&word, packet->header, sizeof(packet->header));
 463	return dw_mipi_dsi_gen_pkt_hdr_write(dsi, le32_to_cpu(word));
 464}
 465
 466static int dw_mipi_dsi_read(struct dw_mipi_dsi *dsi,
 467			    const struct mipi_dsi_msg *msg)
 468{
 469	int i, j, ret, len = msg->rx_len;
 470	u8 *buf = msg->rx_buf;
 471	u32 val;
 472
 473	/* Wait end of the read operation */
 474	ret = readl_poll_timeout(dsi->base + DSI_CMD_PKT_STATUS,
 475				 val, !(val & GEN_RD_CMD_BUSY),
 476				 1000, CMD_PKT_STATUS_TIMEOUT_US);
 477	if (ret) {
 478		dev_err(dsi->dev, "Timeout during read operation\n");
 479		return ret;
 480	}
 481
 482	for (i = 0; i < len; i += 4) {
 483		/* Read fifo must not be empty before all bytes are read */
 484		ret = readl_poll_timeout(dsi->base + DSI_CMD_PKT_STATUS,
 485					 val, !(val & GEN_PLD_R_EMPTY),
 486					 1000, CMD_PKT_STATUS_TIMEOUT_US);
 487		if (ret) {
 488			dev_err(dsi->dev, "Read payload FIFO is empty\n");
 489			return ret;
 490		}
 491
 492		val = dsi_read(dsi, DSI_GEN_PLD_DATA);
 493		for (j = 0; j < 4 && j + i < len; j++)
 494			buf[i + j] = val >> (8 * j);
 495	}
 496
 497	return ret;
 498}
 499
 500static ssize_t dw_mipi_dsi_host_transfer(struct mipi_dsi_host *host,
 501					 const struct mipi_dsi_msg *msg)
 502{
 503	struct dw_mipi_dsi *dsi = host_to_dsi(host);
 504	struct mipi_dsi_packet packet;
 505	int ret, nb_bytes;
 506
 507	ret = mipi_dsi_create_packet(&packet, msg);
 508	if (ret) {
 509		dev_err(dsi->dev, "failed to create packet: %d\n", ret);
 510		return ret;
 511	}
 512
 513	dw_mipi_message_config(dsi, msg);
 514	if (dsi->slave)
 515		dw_mipi_message_config(dsi->slave, msg);
 516
 517	ret = dw_mipi_dsi_write(dsi, &packet);
 518	if (ret)
 519		return ret;
 520	if (dsi->slave) {
 521		ret = dw_mipi_dsi_write(dsi->slave, &packet);
 522		if (ret)
 523			return ret;
 524	}
 525
 526	if (msg->rx_buf && msg->rx_len) {
 527		ret = dw_mipi_dsi_read(dsi, msg);
 528		if (ret)
 529			return ret;
 530		nb_bytes = msg->rx_len;
 531	} else {
 532		nb_bytes = packet.size;
 533	}
 534
 535	return nb_bytes;
 536}
 537
 538static const struct mipi_dsi_host_ops dw_mipi_dsi_host_ops = {
 539	.attach = dw_mipi_dsi_host_attach,
 540	.detach = dw_mipi_dsi_host_detach,
 541	.transfer = dw_mipi_dsi_host_transfer,
 542};
 543
 544static u32 *
 545dw_mipi_dsi_bridge_atomic_get_input_bus_fmts(struct drm_bridge *bridge,
 546					     struct drm_bridge_state *bridge_state,
 547					     struct drm_crtc_state *crtc_state,
 548					     struct drm_connector_state *conn_state,
 549					     u32 output_fmt,
 550					     unsigned int *num_input_fmts)
 551{
 552	struct dw_mipi_dsi *dsi = bridge_to_dsi(bridge);
 553	const struct dw_mipi_dsi_plat_data *pdata = dsi->plat_data;
 554	u32 *input_fmts;
 555
 556	if (pdata->get_input_bus_fmts)
 557		return pdata->get_input_bus_fmts(pdata->priv_data,
 558						 bridge, bridge_state,
 559						 crtc_state, conn_state,
 560						 output_fmt, num_input_fmts);
 561
 562	/* Fall back to MEDIA_BUS_FMT_FIXED as the only input format. */
 563	input_fmts = kmalloc(sizeof(*input_fmts), GFP_KERNEL);
 564	if (!input_fmts)
 565		return NULL;
 566	input_fmts[0] = MEDIA_BUS_FMT_FIXED;
 567	*num_input_fmts = 1;
 568
 569	return input_fmts;
 570}
 571
 572static int dw_mipi_dsi_bridge_atomic_check(struct drm_bridge *bridge,
 573					   struct drm_bridge_state *bridge_state,
 574					   struct drm_crtc_state *crtc_state,
 575					   struct drm_connector_state *conn_state)
 576{
 577	struct dw_mipi_dsi *dsi = bridge_to_dsi(bridge);
 578	const struct dw_mipi_dsi_plat_data *pdata = dsi->plat_data;
 579	bool ret;
 580
 581	bridge_state->input_bus_cfg.flags =
 582		DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE;
 583
 584	if (pdata->mode_fixup) {
 585		ret = pdata->mode_fixup(pdata->priv_data, &crtc_state->mode,
 586					&crtc_state->adjusted_mode);
 587		if (!ret) {
 588			DRM_DEBUG_DRIVER("failed to fixup mode " DRM_MODE_FMT "\n",
 589					 DRM_MODE_ARG(&crtc_state->mode));
 590			return -EINVAL;
 591		}
 592	}
 593
 594	return 0;
 595}
 596
 597static void dw_mipi_dsi_video_mode_config(struct dw_mipi_dsi *dsi)
 598{
 599	u32 val;
 600
 601	/*
 602	 * TODO dw drv improvements
 603	 * enabling low power is panel-dependent, we should use the
 604	 * panel configuration here...
 605	 */
 606	val = ENABLE_LOW_POWER;
 607
 608	if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST)
 609		val |= VID_MODE_TYPE_BURST;
 610	else if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE)
 611		val |= VID_MODE_TYPE_NON_BURST_SYNC_PULSES;
 612	else
 613		val |= VID_MODE_TYPE_NON_BURST_SYNC_EVENTS;
 614
 615#ifdef CONFIG_DEBUG_FS
 616	if (dsi->vpg_defs.vpg) {
 617		val |= VID_MODE_VPG_ENABLE;
 618		val |= dsi->vpg_defs.vpg_horizontal ?
 619		       VID_MODE_VPG_HORIZONTAL : 0;
 620		val |= dsi->vpg_defs.vpg_ber_pattern ? VID_MODE_VPG_MODE : 0;
 621	}
 622#endif /* CONFIG_DEBUG_FS */
 623
 624	dsi_write(dsi, DSI_VID_MODE_CFG, val);
 625}
 626
 627static void dw_mipi_dsi_set_mode(struct dw_mipi_dsi *dsi,
 628				 unsigned long mode_flags)
 629{
 630	u32 val;
 631
 632	dsi_write(dsi, DSI_PWR_UP, RESET);
 633
 634	if (mode_flags & MIPI_DSI_MODE_VIDEO) {
 635		dsi_write(dsi, DSI_MODE_CFG, ENABLE_VIDEO_MODE);
 636		dw_mipi_dsi_video_mode_config(dsi);
 637	} else {
 638		dsi_write(dsi, DSI_MODE_CFG, ENABLE_CMD_MODE);
 639	}
 640
 641	val = PHY_TXREQUESTCLKHS;
 642	if (dsi->mode_flags & MIPI_DSI_CLOCK_NON_CONTINUOUS)
 643		val |= AUTO_CLKLANE_CTRL;
 644	dsi_write(dsi, DSI_LPCLK_CTRL, val);
 645
 646	dsi_write(dsi, DSI_PWR_UP, POWERUP);
 647}
 648
 649static void dw_mipi_dsi_disable(struct dw_mipi_dsi *dsi)
 650{
 651	dsi_write(dsi, DSI_PWR_UP, RESET);
 652	dsi_write(dsi, DSI_PHY_RSTZ, PHY_RSTZ);
 653}
 654
 655static void dw_mipi_dsi_init(struct dw_mipi_dsi *dsi)
 656{
 657	const struct dw_mipi_dsi_phy_ops *phy_ops = dsi->plat_data->phy_ops;
 658	unsigned int esc_rate; /* in MHz */
 659	u32 esc_clk_division;
 660	int ret;
 661
 662	/*
 663	 * The maximum permitted escape clock is 20MHz and it is derived from
 664	 * lanebyteclk, which is running at "lane_mbps / 8".
 665	 */
 666	if (phy_ops->get_esc_clk_rate) {
 667		ret = phy_ops->get_esc_clk_rate(dsi->plat_data->priv_data,
 668						&esc_rate);
 669		if (ret)
 670			DRM_DEBUG_DRIVER("Phy get_esc_clk_rate() failed\n");
 671	} else
 672		esc_rate = 20; /* Default to 20MHz */
 673
 674	/*
 675	 * We want :
 676	 *     (lane_mbps >> 3) / esc_clk_division < X
 677	 * which is:
 678	 *     (lane_mbps >> 3) / X > esc_clk_division
 679	 */
 680	esc_clk_division = (dsi->lane_mbps >> 3) / esc_rate + 1;
 681
 682	dsi_write(dsi, DSI_PWR_UP, RESET);
 683
 684	/*
 685	 * TODO dw drv improvements
 686	 * timeout clock division should be computed with the
 687	 * high speed transmission counter timeout and byte lane...
 688	 */
 689	dsi_write(dsi, DSI_CLKMGR_CFG, TO_CLK_DIVISION(0) |
 690		  TX_ESC_CLK_DIVISION(esc_clk_division));
 691}
 692
 693static void dw_mipi_dsi_dpi_config(struct dw_mipi_dsi *dsi,
 694				   const struct drm_display_mode *mode)
 695{
 696	u32 val = 0, color = 0;
 697
 698	switch (dsi->format) {
 699	case MIPI_DSI_FMT_RGB888:
 700		color = DPI_COLOR_CODING_24BIT;
 701		break;
 702	case MIPI_DSI_FMT_RGB666:
 703		color = DPI_COLOR_CODING_18BIT_2 | LOOSELY18_EN;
 704		break;
 705	case MIPI_DSI_FMT_RGB666_PACKED:
 706		color = DPI_COLOR_CODING_18BIT_1;
 707		break;
 708	case MIPI_DSI_FMT_RGB565:
 709		color = DPI_COLOR_CODING_16BIT_1;
 710		break;
 711	}
 712
 713	if (mode->flags & DRM_MODE_FLAG_NVSYNC)
 714		val |= VSYNC_ACTIVE_LOW;
 715	if (mode->flags & DRM_MODE_FLAG_NHSYNC)
 716		val |= HSYNC_ACTIVE_LOW;
 717
 718	dsi_write(dsi, DSI_DPI_VCID, DPI_VCID(dsi->channel));
 719	dsi_write(dsi, DSI_DPI_COLOR_CODING, color);
 720	dsi_write(dsi, DSI_DPI_CFG_POL, val);
 721}
 722
 723static void dw_mipi_dsi_packet_handler_config(struct dw_mipi_dsi *dsi)
 724{
 725	u32 val = CRC_RX_EN | ECC_RX_EN | BTA_EN | EOTP_TX_EN;
 726
 727	if (dsi->mode_flags & MIPI_DSI_MODE_NO_EOT_PACKET)
 728		val &= ~EOTP_TX_EN;
 729
 730	dsi_write(dsi, DSI_PCKHDL_CFG, val);
 731}
 732
 733static void dw_mipi_dsi_video_packet_config(struct dw_mipi_dsi *dsi,
 734					    const struct drm_display_mode *mode)
 735{
 736	/*
 737	 * TODO dw drv improvements
 738	 * only burst mode is supported here. For non-burst video modes,
 739	 * we should compute DSI_VID_PKT_SIZE, DSI_VCCR.NUMC &
 740	 * DSI_VNPCR.NPSIZE... especially because this driver supports
 741	 * non-burst video modes, see dw_mipi_dsi_video_mode_config()...
 742	 */
 743
 744	dsi_write(dsi, DSI_VID_PKT_SIZE,
 745		       dw_mipi_is_dual_mode(dsi) ?
 746				VID_PKT_SIZE(mode->hdisplay / 2) :
 747				VID_PKT_SIZE(mode->hdisplay));
 748}
 749
 750static void dw_mipi_dsi_command_mode_config(struct dw_mipi_dsi *dsi)
 751{
 752	/*
 753	 * TODO dw drv improvements
 754	 * compute high speed transmission counter timeout according
 755	 * to the timeout clock division (TO_CLK_DIVISION) and byte lane...
 756	 */
 757	dsi_write(dsi, DSI_TO_CNT_CFG, HSTX_TO_CNT(0) | LPRX_TO_CNT(0));
 758	/*
 759	 * TODO dw drv improvements
 760	 * the Bus-Turn-Around Timeout Counter should be computed
 761	 * according to byte lane...
 762	 */
 763	dsi_write(dsi, DSI_BTA_TO_CNT, 0xd00);
 764	dsi_write(dsi, DSI_MODE_CFG, ENABLE_CMD_MODE);
 765}
 766
 767static const u32 minimum_lbccs[] = {10, 5, 4, 3};
 768
 769static inline u32 dw_mipi_dsi_get_minimum_lbcc(struct dw_mipi_dsi *dsi)
 770{
 771	return minimum_lbccs[dsi->lanes - 1];
 772}
 773
 774/* Get lane byte clock cycles. */
 775static u32 dw_mipi_dsi_get_hcomponent_lbcc(struct dw_mipi_dsi *dsi,
 776					   const struct drm_display_mode *mode,
 777					   u32 hcomponent)
 778{
 779	u32 frac, lbcc, minimum_lbcc;
 780	int bpp;
 781
 782	if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST) {
 783		/* lbcc based on lane_mbps */
 784		lbcc = hcomponent * dsi->lane_mbps * MSEC_PER_SEC / 8;
 785	} else {
 786		/* lbcc based on pixel clock rate */
 787		bpp = mipi_dsi_pixel_format_to_bpp(dsi->format);
 788		if (bpp < 0) {
 789			dev_err(dsi->dev, "failed to get bpp\n");
 790			return 0;
 791		}
 792
 793		lbcc = div_u64((u64)hcomponent * mode->clock * bpp, dsi->lanes * 8);
 794	}
 795
 796	frac = lbcc % mode->clock;
 797	lbcc = lbcc / mode->clock;
 798	if (frac)
 799		lbcc++;
 800
 801	minimum_lbcc = dw_mipi_dsi_get_minimum_lbcc(dsi);
 802
 803	if (lbcc < minimum_lbcc)
 804		lbcc = minimum_lbcc;
 805
 806	return lbcc;
 807}
 808
 809static void dw_mipi_dsi_line_timer_config(struct dw_mipi_dsi *dsi,
 810					  const struct drm_display_mode *mode)
 811{
 812	u32 htotal, hsa, hbp, lbcc;
 813
 814	htotal = mode->htotal;
 815	hsa = mode->hsync_end - mode->hsync_start;
 816	hbp = mode->htotal - mode->hsync_end;
 817
 818	/*
 819	 * TODO dw drv improvements
 820	 * computations below may be improved...
 821	 */
 822	lbcc = dw_mipi_dsi_get_hcomponent_lbcc(dsi, mode, htotal);
 823	dsi_write(dsi, DSI_VID_HLINE_TIME, lbcc);
 824
 825	lbcc = dw_mipi_dsi_get_hcomponent_lbcc(dsi, mode, hsa);
 826	dsi_write(dsi, DSI_VID_HSA_TIME, lbcc);
 827
 828	lbcc = dw_mipi_dsi_get_hcomponent_lbcc(dsi, mode, hbp);
 829	dsi_write(dsi, DSI_VID_HBP_TIME, lbcc);
 830}
 831
 832static void dw_mipi_dsi_vertical_timing_config(struct dw_mipi_dsi *dsi,
 833					const struct drm_display_mode *mode)
 834{
 835	u32 vactive, vsa, vfp, vbp;
 836
 837	vactive = mode->vdisplay;
 838	vsa = mode->vsync_end - mode->vsync_start;
 839	vfp = mode->vsync_start - mode->vdisplay;
 840	vbp = mode->vtotal - mode->vsync_end;
 841
 842	dsi_write(dsi, DSI_VID_VACTIVE_LINES, vactive);
 843	dsi_write(dsi, DSI_VID_VSA_LINES, vsa);
 844	dsi_write(dsi, DSI_VID_VFP_LINES, vfp);
 845	dsi_write(dsi, DSI_VID_VBP_LINES, vbp);
 846}
 847
 848static void dw_mipi_dsi_dphy_timing_config(struct dw_mipi_dsi *dsi)
 849{
 850	const struct dw_mipi_dsi_phy_ops *phy_ops = dsi->plat_data->phy_ops;
 851	struct dw_mipi_dsi_dphy_timing timing;
 852	u32 hw_version;
 853	int ret;
 854
 855	ret = phy_ops->get_timing(dsi->plat_data->priv_data,
 856				  dsi->lane_mbps, &timing);
 857	if (ret)
 858		DRM_DEV_ERROR(dsi->dev, "Retrieving phy timings failed\n");
 859
 860	/*
 861	 * TODO dw drv improvements
 862	 * data & clock lane timers should be computed according to panel
 863	 * blankings and to the automatic clock lane control mode...
 864	 * note: DSI_PHY_TMR_CFG.MAX_RD_TIME should be in line with
 865	 * DSI_CMD_MODE_CFG.MAX_RD_PKT_SIZE_LP (see CMD_MODE_ALL_LP)
 866	 */
 867
 868	hw_version = dsi_read(dsi, DSI_VERSION) & VERSION;
 869
 870	if (hw_version >= HWVER_131) {
 871		dsi_write(dsi, DSI_PHY_TMR_CFG,
 872			  PHY_HS2LP_TIME_V131(timing.data_hs2lp) |
 873			  PHY_LP2HS_TIME_V131(timing.data_lp2hs));
 874		dsi_write(dsi, DSI_PHY_TMR_RD_CFG, MAX_RD_TIME_V131(10000));
 875	} else {
 876		dsi_write(dsi, DSI_PHY_TMR_CFG,
 877			  PHY_HS2LP_TIME(timing.data_hs2lp) |
 878			  PHY_LP2HS_TIME(timing.data_lp2hs) |
 879			  MAX_RD_TIME(10000));
 880	}
 881
 882	dsi_write(dsi, DSI_PHY_TMR_LPCLK_CFG,
 883		  PHY_CLKHS2LP_TIME(timing.clk_hs2lp) |
 884		  PHY_CLKLP2HS_TIME(timing.clk_lp2hs));
 885}
 886
 887static void dw_mipi_dsi_dphy_interface_config(struct dw_mipi_dsi *dsi)
 888{
 889	/*
 890	 * TODO dw drv improvements
 891	 * stop wait time should be the maximum between host dsi
 892	 * and panel stop wait times
 893	 */
 894	dsi_write(dsi, DSI_PHY_IF_CFG, PHY_STOP_WAIT_TIME(0x20) |
 895		  N_LANES(dsi->lanes));
 896}
 897
 898static void dw_mipi_dsi_dphy_init(struct dw_mipi_dsi *dsi)
 899{
 900	/* Clear PHY state */
 901	dsi_write(dsi, DSI_PHY_RSTZ, PHY_DISFORCEPLL | PHY_DISABLECLK
 902		  | PHY_RSTZ | PHY_SHUTDOWNZ);
 903	dsi_write(dsi, DSI_PHY_TST_CTRL0, PHY_UNTESTCLR);
 904	dsi_write(dsi, DSI_PHY_TST_CTRL0, PHY_TESTCLR);
 905	dsi_write(dsi, DSI_PHY_TST_CTRL0, PHY_UNTESTCLR);
 906}
 907
 908static void dw_mipi_dsi_dphy_enable(struct dw_mipi_dsi *dsi)
 909{
 910	u32 val;
 911	int ret;
 912
 913	dsi_write(dsi, DSI_PHY_RSTZ, PHY_ENFORCEPLL | PHY_ENABLECLK |
 914		  PHY_UNRSTZ | PHY_UNSHUTDOWNZ);
 915
 916	ret = readl_poll_timeout(dsi->base + DSI_PHY_STATUS, val,
 917				 val & PHY_LOCK, 1000, PHY_STATUS_TIMEOUT_US);
 918	if (ret)
 919		DRM_DEBUG_DRIVER("failed to wait phy lock state\n");
 920
 921	ret = readl_poll_timeout(dsi->base + DSI_PHY_STATUS,
 922				 val, val & PHY_STOP_STATE_CLK_LANE, 1000,
 923				 PHY_STATUS_TIMEOUT_US);
 924	if (ret)
 925		DRM_DEBUG_DRIVER("failed to wait phy clk lane stop state\n");
 926}
 927
 928static void dw_mipi_dsi_clear_err(struct dw_mipi_dsi *dsi)
 929{
 930	dsi_read(dsi, DSI_INT_ST0);
 931	dsi_read(dsi, DSI_INT_ST1);
 932	dsi_write(dsi, DSI_INT_MSK0, 0);
 933	dsi_write(dsi, DSI_INT_MSK1, 0);
 934}
 935
 936static void dw_mipi_dsi_bridge_post_atomic_disable(struct drm_bridge *bridge,
 937						   struct drm_bridge_state *old_bridge_state)
 938{
 939	struct dw_mipi_dsi *dsi = bridge_to_dsi(bridge);
 940	const struct dw_mipi_dsi_phy_ops *phy_ops = dsi->plat_data->phy_ops;
 941
 942	/*
 943	 * Switch to command mode before panel-bridge post_disable &
 944	 * panel unprepare.
 945	 * Note: panel-bridge disable & panel disable has been called
 946	 * before by the drm framework.
 947	 */
 948	dw_mipi_dsi_set_mode(dsi, 0);
 949
 950	if (phy_ops->power_off)
 951		phy_ops->power_off(dsi->plat_data->priv_data);
 952
 953	if (dsi->slave) {
 954		dw_mipi_dsi_disable(dsi->slave);
 955		clk_disable_unprepare(dsi->slave->pclk);
 956		pm_runtime_put(dsi->slave->dev);
 957	}
 958	dw_mipi_dsi_disable(dsi);
 959
 960	clk_disable_unprepare(dsi->pclk);
 961	pm_runtime_put(dsi->dev);
 962}
 963
 964static unsigned int dw_mipi_dsi_get_lanes(struct dw_mipi_dsi *dsi)
 965{
 966	/* this instance is the slave, so add the master's lanes */
 967	if (dsi->master)
 968		return dsi->master->lanes + dsi->lanes;
 969
 970	/* this instance is the master, so add the slave's lanes */
 971	if (dsi->slave)
 972		return dsi->lanes + dsi->slave->lanes;
 973
 974	/* single-dsi, so no other instance to consider */
 975	return dsi->lanes;
 976}
 977
 978static void dw_mipi_dsi_mode_set(struct dw_mipi_dsi *dsi,
 979				 const struct drm_display_mode *adjusted_mode)
 980{
 981	const struct dw_mipi_dsi_phy_ops *phy_ops = dsi->plat_data->phy_ops;
 982	void *priv_data = dsi->plat_data->priv_data;
 983	int ret;
 984	u32 lanes = dw_mipi_dsi_get_lanes(dsi);
 985
 986	clk_prepare_enable(dsi->pclk);
 987
 988	ret = phy_ops->get_lane_mbps(priv_data, adjusted_mode, dsi->mode_flags,
 989				     lanes, dsi->format, &dsi->lane_mbps);
 990	if (ret)
 991		DRM_DEBUG_DRIVER("Phy get_lane_mbps() failed\n");
 992
 993	pm_runtime_get_sync(dsi->dev);
 994	dw_mipi_dsi_init(dsi);
 995	dw_mipi_dsi_dpi_config(dsi, adjusted_mode);
 996	dw_mipi_dsi_packet_handler_config(dsi);
 997	dw_mipi_dsi_video_mode_config(dsi);
 998	dw_mipi_dsi_video_packet_config(dsi, adjusted_mode);
 999	dw_mipi_dsi_command_mode_config(dsi);
1000	dw_mipi_dsi_line_timer_config(dsi, adjusted_mode);
1001	dw_mipi_dsi_vertical_timing_config(dsi, adjusted_mode);
1002
1003	dw_mipi_dsi_dphy_init(dsi);
1004	dw_mipi_dsi_dphy_timing_config(dsi);
1005	dw_mipi_dsi_dphy_interface_config(dsi);
1006
1007	dw_mipi_dsi_clear_err(dsi);
1008
1009	ret = phy_ops->init(priv_data);
1010	if (ret)
1011		DRM_DEBUG_DRIVER("Phy init() failed\n");
1012
1013	dw_mipi_dsi_dphy_enable(dsi);
1014
1015	dw_mipi_dsi_wait_for_two_frames(adjusted_mode);
1016
1017	/* Switch to cmd mode for panel-bridge pre_enable & panel prepare */
1018	dw_mipi_dsi_set_mode(dsi, 0);
1019
1020	if (phy_ops->power_on)
1021		phy_ops->power_on(dsi->plat_data->priv_data);
1022}
1023
1024static void dw_mipi_dsi_bridge_atomic_pre_enable(struct drm_bridge *bridge,
1025						 struct drm_bridge_state *old_bridge_state)
1026{
1027	struct dw_mipi_dsi *dsi = bridge_to_dsi(bridge);
1028
1029	/* Power up the dsi ctl into a command mode */
1030	dw_mipi_dsi_mode_set(dsi, &dsi->mode);
1031	if (dsi->slave)
1032		dw_mipi_dsi_mode_set(dsi->slave, &dsi->mode);
1033}
1034
1035static void dw_mipi_dsi_bridge_mode_set(struct drm_bridge *bridge,
1036					const struct drm_display_mode *mode,
1037					const struct drm_display_mode *adjusted_mode)
1038{
1039	struct dw_mipi_dsi *dsi = bridge_to_dsi(bridge);
1040
1041	/* Store the display mode for later use in pre_enable callback */
1042	drm_mode_copy(&dsi->mode, adjusted_mode);
1043}
1044
1045static void dw_mipi_dsi_bridge_atomic_enable(struct drm_bridge *bridge,
1046					     struct drm_bridge_state *old_bridge_state)
1047{
1048	struct dw_mipi_dsi *dsi = bridge_to_dsi(bridge);
1049
1050	/* Switch to video mode for panel-bridge enable & panel enable */
1051	dw_mipi_dsi_set_mode(dsi, MIPI_DSI_MODE_VIDEO);
1052	if (dsi->slave)
1053		dw_mipi_dsi_set_mode(dsi->slave, MIPI_DSI_MODE_VIDEO);
1054}
1055
1056static enum drm_mode_status
1057dw_mipi_dsi_bridge_mode_valid(struct drm_bridge *bridge,
1058			      const struct drm_display_info *info,
1059			      const struct drm_display_mode *mode)
1060{
1061	struct dw_mipi_dsi *dsi = bridge_to_dsi(bridge);
1062	const struct dw_mipi_dsi_plat_data *pdata = dsi->plat_data;
1063	enum drm_mode_status mode_status = MODE_OK;
1064
1065	if (pdata->mode_valid)
1066		mode_status = pdata->mode_valid(pdata->priv_data, mode,
1067						dsi->mode_flags,
1068						dw_mipi_dsi_get_lanes(dsi),
1069						dsi->format);
1070
1071	return mode_status;
1072}
1073
1074static int dw_mipi_dsi_bridge_attach(struct drm_bridge *bridge,
1075				     enum drm_bridge_attach_flags flags)
1076{
1077	struct dw_mipi_dsi *dsi = bridge_to_dsi(bridge);
1078
1079	/* Set the encoder type as caller does not know it */
1080	bridge->encoder->encoder_type = DRM_MODE_ENCODER_DSI;
1081
1082	/* Attach the panel-bridge to the dsi bridge */
1083	return drm_bridge_attach(bridge->encoder, dsi->panel_bridge, bridge,
1084				 flags);
1085}
1086
1087static const struct drm_bridge_funcs dw_mipi_dsi_bridge_funcs = {
1088	.atomic_duplicate_state	= drm_atomic_helper_bridge_duplicate_state,
1089	.atomic_destroy_state	= drm_atomic_helper_bridge_destroy_state,
1090	.atomic_get_input_bus_fmts = dw_mipi_dsi_bridge_atomic_get_input_bus_fmts,
1091	.atomic_check		= dw_mipi_dsi_bridge_atomic_check,
1092	.atomic_reset		= drm_atomic_helper_bridge_reset,
1093	.atomic_pre_enable	= dw_mipi_dsi_bridge_atomic_pre_enable,
1094	.atomic_enable		= dw_mipi_dsi_bridge_atomic_enable,
1095	.atomic_post_disable	= dw_mipi_dsi_bridge_post_atomic_disable,
1096	.mode_set		= dw_mipi_dsi_bridge_mode_set,
1097	.mode_valid		= dw_mipi_dsi_bridge_mode_valid,
1098	.attach			= dw_mipi_dsi_bridge_attach,
1099};
1100
1101#ifdef CONFIG_DEBUG_FS
1102
1103static int dw_mipi_dsi_debugfs_write(void *data, u64 val)
1104{
1105	struct debugfs_entries *vpg = data;
1106	struct dw_mipi_dsi *dsi;
1107	u32 mode_cfg;
1108
1109	if (!vpg)
1110		return -ENODEV;
1111
1112	dsi = vpg->dsi;
1113
1114	*vpg->reg = (bool)val;
1115
1116	mode_cfg = dsi_read(dsi, DSI_VID_MODE_CFG);
1117
1118	if (*vpg->reg)
1119		mode_cfg |= vpg->mask;
1120	else
1121		mode_cfg &= ~vpg->mask;
1122
1123	dsi_write(dsi, DSI_VID_MODE_CFG, mode_cfg);
1124
1125	return 0;
1126}
1127
1128static int dw_mipi_dsi_debugfs_show(void *data, u64 *val)
1129{
1130	struct debugfs_entries *vpg = data;
1131
1132	if (!vpg)
1133		return -ENODEV;
1134
1135	*val = *vpg->reg;
1136
1137	return 0;
1138}
1139
1140DEFINE_DEBUGFS_ATTRIBUTE(fops_x32, dw_mipi_dsi_debugfs_show,
1141			 dw_mipi_dsi_debugfs_write, "%llu\n");
1142
1143static void debugfs_create_files(void *data)
1144{
1145	struct dw_mipi_dsi *dsi = data;
1146	struct debugfs_entries debugfs[] = {
1147		REGISTER(vpg, VID_MODE_VPG_ENABLE, dsi),
1148		REGISTER(vpg_horizontal, VID_MODE_VPG_HORIZONTAL, dsi),
1149		REGISTER(vpg_ber_pattern, VID_MODE_VPG_MODE, dsi),
1150	};
1151	int i;
1152
1153	dsi->debugfs_vpg = kmemdup(debugfs, sizeof(debugfs), GFP_KERNEL);
1154	if (!dsi->debugfs_vpg)
1155		return;
1156
1157	for (i = 0; i < ARRAY_SIZE(debugfs); i++)
1158		debugfs_create_file(dsi->debugfs_vpg[i].name, 0644,
1159				    dsi->debugfs, &dsi->debugfs_vpg[i],
1160				    &fops_x32);
1161}
1162
1163static void dw_mipi_dsi_debugfs_init(struct dw_mipi_dsi *dsi)
1164{
1165	dsi->debugfs = debugfs_create_dir(dev_name(dsi->dev), NULL);
1166	if (IS_ERR(dsi->debugfs)) {
1167		dev_err(dsi->dev, "failed to create debugfs root\n");
1168		return;
1169	}
1170
1171	debugfs_create_files(dsi);
1172}
1173
1174static void dw_mipi_dsi_debugfs_remove(struct dw_mipi_dsi *dsi)
1175{
1176	debugfs_remove_recursive(dsi->debugfs);
1177	kfree(dsi->debugfs_vpg);
1178}
1179
1180#else
1181
1182static void dw_mipi_dsi_debugfs_init(struct dw_mipi_dsi *dsi) { }
1183static void dw_mipi_dsi_debugfs_remove(struct dw_mipi_dsi *dsi) { }
1184
1185#endif /* CONFIG_DEBUG_FS */
1186
1187static struct dw_mipi_dsi *
1188__dw_mipi_dsi_probe(struct platform_device *pdev,
1189		    const struct dw_mipi_dsi_plat_data *plat_data)
1190{
1191	struct device *dev = &pdev->dev;
1192	struct reset_control *apb_rst;
1193	struct dw_mipi_dsi *dsi;
1194	int ret;
1195
1196	dsi = devm_kzalloc(dev, sizeof(*dsi), GFP_KERNEL);
1197	if (!dsi)
1198		return ERR_PTR(-ENOMEM);
1199
1200	dsi->dev = dev;
1201	dsi->plat_data = plat_data;
1202
1203	if (!plat_data->phy_ops->init || !plat_data->phy_ops->get_lane_mbps ||
1204	    !plat_data->phy_ops->get_timing) {
1205		DRM_ERROR("Phy not properly configured\n");
1206		return ERR_PTR(-ENODEV);
1207	}
1208
1209	if (!plat_data->base) {
1210		dsi->base = devm_platform_ioremap_resource(pdev, 0);
1211		if (IS_ERR(dsi->base))
1212			return ERR_PTR(-ENODEV);
1213
1214	} else {
1215		dsi->base = plat_data->base;
1216	}
1217
1218	dsi->pclk = devm_clk_get(dev, "pclk");
1219	if (IS_ERR(dsi->pclk)) {
1220		ret = PTR_ERR(dsi->pclk);
1221		dev_err(dev, "Unable to get pclk: %d\n", ret);
1222		return ERR_PTR(ret);
1223	}
1224
1225	/*
1226	 * Note that the reset was not defined in the initial device tree, so
1227	 * we have to be prepared for it not being found.
1228	 */
1229	apb_rst = devm_reset_control_get_optional_exclusive(dev, "apb");
1230	if (IS_ERR(apb_rst)) {
1231		ret = PTR_ERR(apb_rst);
1232
1233		if (ret != -EPROBE_DEFER)
1234			dev_err(dev, "Unable to get reset control: %d\n", ret);
1235
1236		return ERR_PTR(ret);
1237	}
1238
1239	if (apb_rst) {
1240		ret = clk_prepare_enable(dsi->pclk);
1241		if (ret) {
1242			dev_err(dev, "%s: Failed to enable pclk\n", __func__);
1243			return ERR_PTR(ret);
1244		}
1245
1246		reset_control_assert(apb_rst);
1247		usleep_range(10, 20);
1248		reset_control_deassert(apb_rst);
1249
1250		clk_disable_unprepare(dsi->pclk);
1251	}
1252
1253	dw_mipi_dsi_debugfs_init(dsi);
1254	pm_runtime_enable(dev);
1255
1256	dsi->dsi_host.ops = &dw_mipi_dsi_host_ops;
1257	dsi->dsi_host.dev = dev;
1258	ret = mipi_dsi_host_register(&dsi->dsi_host);
1259	if (ret) {
1260		dev_err(dev, "Failed to register MIPI host: %d\n", ret);
1261		pm_runtime_disable(dev);
1262		dw_mipi_dsi_debugfs_remove(dsi);
1263		return ERR_PTR(ret);
1264	}
1265
1266	dsi->bridge.driver_private = dsi;
1267	dsi->bridge.funcs = &dw_mipi_dsi_bridge_funcs;
1268	dsi->bridge.of_node = pdev->dev.of_node;
1269
1270	return dsi;
1271}
1272
1273static void __dw_mipi_dsi_remove(struct dw_mipi_dsi *dsi)
1274{
1275	mipi_dsi_host_unregister(&dsi->dsi_host);
1276
1277	pm_runtime_disable(dsi->dev);
1278	dw_mipi_dsi_debugfs_remove(dsi);
1279}
1280
1281void dw_mipi_dsi_set_slave(struct dw_mipi_dsi *dsi, struct dw_mipi_dsi *slave)
1282{
1283	/* introduce controllers to each other */
1284	dsi->slave = slave;
1285	dsi->slave->master = dsi;
1286
1287	/* migrate settings for already attached displays */
1288	dsi->slave->lanes = dsi->lanes;
1289	dsi->slave->channel = dsi->channel;
1290	dsi->slave->format = dsi->format;
1291	dsi->slave->mode_flags = dsi->mode_flags;
1292}
1293EXPORT_SYMBOL_GPL(dw_mipi_dsi_set_slave);
1294
1295struct drm_bridge *dw_mipi_dsi_get_bridge(struct dw_mipi_dsi *dsi)
1296{
1297	return &dsi->bridge;
1298}
1299EXPORT_SYMBOL_GPL(dw_mipi_dsi_get_bridge);
1300
1301/*
1302 * Probe/remove API, used from platforms based on the DRM bridge API.
1303 */
1304struct dw_mipi_dsi *
1305dw_mipi_dsi_probe(struct platform_device *pdev,
1306		  const struct dw_mipi_dsi_plat_data *plat_data)
1307{
1308	return __dw_mipi_dsi_probe(pdev, plat_data);
1309}
1310EXPORT_SYMBOL_GPL(dw_mipi_dsi_probe);
1311
1312void dw_mipi_dsi_remove(struct dw_mipi_dsi *dsi)
1313{
1314	__dw_mipi_dsi_remove(dsi);
1315}
1316EXPORT_SYMBOL_GPL(dw_mipi_dsi_remove);
1317
1318/*
1319 * Bind/unbind API, used from platforms based on the component framework.
1320 */
1321int dw_mipi_dsi_bind(struct dw_mipi_dsi *dsi, struct drm_encoder *encoder)
1322{
1323	return drm_bridge_attach(encoder, &dsi->bridge, NULL, 0);
1324}
1325EXPORT_SYMBOL_GPL(dw_mipi_dsi_bind);
1326
1327void dw_mipi_dsi_unbind(struct dw_mipi_dsi *dsi)
1328{
1329}
1330EXPORT_SYMBOL_GPL(dw_mipi_dsi_unbind);
1331
1332MODULE_AUTHOR("Chris Zhong <zyw@rock-chips.com>");
1333MODULE_AUTHOR("Philippe Cornu <philippe.cornu@st.com>");
1334MODULE_DESCRIPTION("DW MIPI DSI host controller driver");
1335MODULE_LICENSE("GPL");
1336MODULE_ALIAS("platform:dw-mipi-dsi");