exynos_drm_dsi.c 49.7 KB
Newer Older
A
Andrzej Hajda 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * Samsung SoC MIPI DSI Master driver.
 *
 * Copyright (c) 2014 Samsung Electronics Co., Ltd
 *
 * Contacts: Tomasz Figa <t.figa@samsung.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
*/

13 14
#include <asm/unaligned.h>

A
Andrzej Hajda 已提交
15 16 17 18
#include <drm/drmP.h>
#include <drm/drm_crtc_helper.h>
#include <drm/drm_mipi_dsi.h>
#include <drm/drm_panel.h>
19
#include <drm/drm_atomic_helper.h>
A
Andrzej Hajda 已提交
20 21

#include <linux/clk.h>
22
#include <linux/gpio/consumer.h>
A
Andrzej Hajda 已提交
23
#include <linux/irq.h>
24
#include <linux/of_device.h>
25
#include <linux/of_gpio.h>
26
#include <linux/of_graph.h>
A
Andrzej Hajda 已提交
27 28
#include <linux/phy/phy.h>
#include <linux/regulator/consumer.h>
29
#include <linux/component.h>
A
Andrzej Hajda 已提交
30 31 32 33

#include <video/mipi_display.h>
#include <video/videomode.h>

34
#include "exynos_drm_crtc.h"
A
Andrzej Hajda 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
#include "exynos_drm_drv.h"

/* returns true iff both arguments logically differs */
#define NEQV(a, b) (!(a) ^ !(b))

/* DSIM_STATUS */
#define DSIM_STOP_STATE_DAT(x)		(((x) & 0xf) << 0)
#define DSIM_STOP_STATE_CLK		(1 << 8)
#define DSIM_TX_READY_HS_CLK		(1 << 10)
#define DSIM_PLL_STABLE			(1 << 31)

/* DSIM_SWRST */
#define DSIM_FUNCRST			(1 << 16)
#define DSIM_SWRST			(1 << 0)

/* DSIM_TIMEOUT */
#define DSIM_LPDR_TIMEOUT(x)		((x) << 0)
#define DSIM_BTA_TIMEOUT(x)		((x) << 16)

/* DSIM_CLKCTRL */
#define DSIM_ESC_PRESCALER(x)		(((x) & 0xffff) << 0)
#define DSIM_ESC_PRESCALER_MASK		(0xffff << 0)
#define DSIM_LANE_ESC_CLK_EN_CLK	(1 << 19)
#define DSIM_LANE_ESC_CLK_EN_DATA(x)	(((x) & 0xf) << 20)
#define DSIM_LANE_ESC_CLK_EN_DATA_MASK	(0xf << 20)
#define DSIM_BYTE_CLKEN			(1 << 24)
#define DSIM_BYTE_CLK_SRC(x)		(((x) & 0x3) << 25)
#define DSIM_BYTE_CLK_SRC_MASK		(0x3 << 25)
#define DSIM_PLL_BYPASS			(1 << 27)
#define DSIM_ESC_CLKEN			(1 << 28)
#define DSIM_TX_REQUEST_HSCLK		(1 << 31)

/* DSIM_CONFIG */
#define DSIM_LANE_EN_CLK		(1 << 0)
#define DSIM_LANE_EN(x)			(((x) & 0xf) << 1)
#define DSIM_NUM_OF_DATA_LANE(x)	(((x) & 0x3) << 5)
#define DSIM_SUB_PIX_FORMAT(x)		(((x) & 0x7) << 8)
#define DSIM_MAIN_PIX_FORMAT_MASK	(0x7 << 12)
#define DSIM_MAIN_PIX_FORMAT_RGB888	(0x7 << 12)
#define DSIM_MAIN_PIX_FORMAT_RGB666	(0x6 << 12)
#define DSIM_MAIN_PIX_FORMAT_RGB666_P	(0x5 << 12)
#define DSIM_MAIN_PIX_FORMAT_RGB565	(0x4 << 12)
#define DSIM_SUB_VC			(((x) & 0x3) << 16)
#define DSIM_MAIN_VC			(((x) & 0x3) << 18)
#define DSIM_HSA_MODE			(1 << 20)
#define DSIM_HBP_MODE			(1 << 21)
#define DSIM_HFP_MODE			(1 << 22)
#define DSIM_HSE_MODE			(1 << 23)
#define DSIM_AUTO_MODE			(1 << 24)
#define DSIM_VIDEO_MODE			(1 << 25)
#define DSIM_BURST_MODE			(1 << 26)
#define DSIM_SYNC_INFORM		(1 << 27)
#define DSIM_EOT_DISABLE		(1 << 28)
#define DSIM_MFLUSH_VS			(1 << 29)
89 90
/* This flag is valid only for exynos3250/3472/4415/5260/5430 */
#define DSIM_CLKLANE_STOP		(1 << 30)
A
Andrzej Hajda 已提交
91 92 93 94 95 96 97 98 99 100 101 102

/* DSIM_ESCMODE */
#define DSIM_TX_TRIGGER_RST		(1 << 4)
#define DSIM_TX_LPDT_LP			(1 << 6)
#define DSIM_CMD_LPDT_LP		(1 << 7)
#define DSIM_FORCE_BTA			(1 << 16)
#define DSIM_FORCE_STOP_STATE		(1 << 20)
#define DSIM_STOP_STATE_CNT(x)		(((x) & 0x7ff) << 21)
#define DSIM_STOP_STATE_CNT_MASK	(0x7ff << 21)

/* DSIM_MDRESOL */
#define DSIM_MAIN_STAND_BY		(1 << 31)
103 104
#define DSIM_MAIN_VRESOL(x, num_bits)	(((x) & ((1 << (num_bits)) - 1)) << 16)
#define DSIM_MAIN_HRESOL(x, num_bits)	(((x) & ((1 << (num_bits)) - 1)) << 0)
A
Andrzej Hajda 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137

/* DSIM_MVPORCH */
#define DSIM_CMD_ALLOW(x)		((x) << 28)
#define DSIM_STABLE_VFP(x)		((x) << 16)
#define DSIM_MAIN_VBP(x)		((x) << 0)
#define DSIM_CMD_ALLOW_MASK		(0xf << 28)
#define DSIM_STABLE_VFP_MASK		(0x7ff << 16)
#define DSIM_MAIN_VBP_MASK		(0x7ff << 0)

/* DSIM_MHPORCH */
#define DSIM_MAIN_HFP(x)		((x) << 16)
#define DSIM_MAIN_HBP(x)		((x) << 0)
#define DSIM_MAIN_HFP_MASK		((0xffff) << 16)
#define DSIM_MAIN_HBP_MASK		((0xffff) << 0)

/* DSIM_MSYNC */
#define DSIM_MAIN_VSA(x)		((x) << 22)
#define DSIM_MAIN_HSA(x)		((x) << 0)
#define DSIM_MAIN_VSA_MASK		((0x3ff) << 22)
#define DSIM_MAIN_HSA_MASK		((0xffff) << 0)

/* DSIM_SDRESOL */
#define DSIM_SUB_STANDY(x)		((x) << 31)
#define DSIM_SUB_VRESOL(x)		((x) << 16)
#define DSIM_SUB_HRESOL(x)		((x) << 0)
#define DSIM_SUB_STANDY_MASK		((0x1) << 31)
#define DSIM_SUB_VRESOL_MASK		((0x7ff) << 16)
#define DSIM_SUB_HRESOL_MASK		((0x7ff) << 0)

/* DSIM_INTSRC */
#define DSIM_INT_PLL_STABLE		(1 << 31)
#define DSIM_INT_SW_RST_RELEASE		(1 << 30)
#define DSIM_INT_SFR_FIFO_EMPTY		(1 << 29)
138
#define DSIM_INT_SFR_HDR_FIFO_EMPTY	(1 << 28)
A
Andrzej Hajda 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
#define DSIM_INT_BTA			(1 << 25)
#define DSIM_INT_FRAME_DONE		(1 << 24)
#define DSIM_INT_RX_TIMEOUT		(1 << 21)
#define DSIM_INT_BTA_TIMEOUT		(1 << 20)
#define DSIM_INT_RX_DONE		(1 << 18)
#define DSIM_INT_RX_TE			(1 << 17)
#define DSIM_INT_RX_ACK			(1 << 16)
#define DSIM_INT_RX_ECC_ERR		(1 << 15)
#define DSIM_INT_RX_CRC_ERR		(1 << 14)

/* DSIM_FIFOCTRL */
#define DSIM_RX_DATA_FULL		(1 << 25)
#define DSIM_RX_DATA_EMPTY		(1 << 24)
#define DSIM_SFR_HEADER_FULL		(1 << 23)
#define DSIM_SFR_HEADER_EMPTY		(1 << 22)
#define DSIM_SFR_PAYLOAD_FULL		(1 << 21)
#define DSIM_SFR_PAYLOAD_EMPTY		(1 << 20)
#define DSIM_I80_HEADER_FULL		(1 << 19)
#define DSIM_I80_HEADER_EMPTY		(1 << 18)
#define DSIM_I80_PAYLOAD_FULL		(1 << 17)
#define DSIM_I80_PAYLOAD_EMPTY		(1 << 16)
#define DSIM_SD_HEADER_FULL		(1 << 15)
#define DSIM_SD_HEADER_EMPTY		(1 << 14)
#define DSIM_SD_PAYLOAD_FULL		(1 << 13)
#define DSIM_SD_PAYLOAD_EMPTY		(1 << 12)
#define DSIM_MD_HEADER_FULL		(1 << 11)
#define DSIM_MD_HEADER_EMPTY		(1 << 10)
#define DSIM_MD_PAYLOAD_FULL		(1 << 9)
#define DSIM_MD_PAYLOAD_EMPTY		(1 << 8)
#define DSIM_RX_FIFO			(1 << 4)
#define DSIM_SFR_FIFO			(1 << 3)
#define DSIM_I80_FIFO			(1 << 2)
#define DSIM_SD_FIFO			(1 << 1)
#define DSIM_MD_FIFO			(1 << 0)

/* DSIM_PHYACCHR */
#define DSIM_AFC_EN			(1 << 14)
#define DSIM_AFC_CTL(x)			(((x) & 0x7) << 5)

/* DSIM_PLLCTRL */
#define DSIM_FREQ_BAND(x)		((x) << 24)
#define DSIM_PLL_EN			(1 << 23)
#define DSIM_PLL_P(x)			((x) << 13)
#define DSIM_PLL_M(x)			((x) << 4)
#define DSIM_PLL_S(x)			((x) << 1)

185 186
/* DSIM_PHYCTRL */
#define DSIM_PHYCTRL_ULPS_EXIT(x)	(((x) & 0x1ff) << 0)
187 188
#define DSIM_PHYCTRL_B_DPHYCTL_VREG_LP	(1 << 30)
#define DSIM_PHYCTRL_B_DPHYCTL_SLEW_UP	(1 << 14)
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204

/* DSIM_PHYTIMING */
#define DSIM_PHYTIMING_LPX(x)		((x) << 8)
#define DSIM_PHYTIMING_HS_EXIT(x)	((x) << 0)

/* DSIM_PHYTIMING1 */
#define DSIM_PHYTIMING1_CLK_PREPARE(x)	((x) << 24)
#define DSIM_PHYTIMING1_CLK_ZERO(x)	((x) << 16)
#define DSIM_PHYTIMING1_CLK_POST(x)	((x) << 8)
#define DSIM_PHYTIMING1_CLK_TRAIL(x)	((x) << 0)

/* DSIM_PHYTIMING2 */
#define DSIM_PHYTIMING2_HS_PREPARE(x)	((x) << 16)
#define DSIM_PHYTIMING2_HS_ZERO(x)	((x) << 8)
#define DSIM_PHYTIMING2_HS_TRAIL(x)	((x) << 0)

A
Andrzej Hajda 已提交
205 206 207 208 209 210 211
#define DSI_MAX_BUS_WIDTH		4
#define DSI_NUM_VIRTUAL_CHANNELS	4
#define DSI_TX_FIFO_SIZE		2048
#define DSI_RX_FIFO_SIZE		256
#define DSI_XFER_TIMEOUT_MS		100
#define DSI_RX_FIFO_EMPTY		0x30800002

212 213
#define OLD_SCLK_MIPI_CLK_NAME "pll_clk"

214 215 216
static char *clk_names[5] = { "bus_clk", "sclk_mipi",
	"phyclk_mipidphy0_bitclkdiv8", "phyclk_mipidphy0_rxclkesc0",
	"sclk_rgb_vclk_to_dsim0" };
217

A
Andrzej Hajda 已提交
218 219 220 221 222 223 224 225 226
enum exynos_dsi_transfer_type {
	EXYNOS_DSI_TX,
	EXYNOS_DSI_RX,
};

struct exynos_dsi_transfer {
	struct list_head list;
	struct completion completed;
	int result;
227
	struct mipi_dsi_packet packet;
A
Andrzej Hajda 已提交
228 229 230 231 232 233 234 235 236 237 238
	u16 flags;
	u16 tx_done;

	u8 *rx_payload;
	u16 rx_len;
	u16 rx_done;
};

#define DSIM_STATE_ENABLED		BIT(0)
#define DSIM_STATE_INITIALIZED		BIT(1)
#define DSIM_STATE_CMD_LPM		BIT(2)
239
#define DSIM_STATE_VIDOUT_AVAILABLE	BIT(3)
A
Andrzej Hajda 已提交
240

241
struct exynos_dsi_driver_data {
242
	const unsigned int *reg_ofs;
243 244
	unsigned int plltmr_reg;
	unsigned int has_freqband:1;
245
	unsigned int has_clklane_stop:1;
246 247 248 249
	unsigned int num_clks;
	unsigned int max_freq;
	unsigned int wait_for_reset;
	unsigned int num_bits_resol;
250
	const unsigned int *reg_values;
251 252
};

A
Andrzej Hajda 已提交
253
struct exynos_dsi {
254
	struct drm_encoder encoder;
A
Andrzej Hajda 已提交
255 256 257 258 259 260 261 262
	struct mipi_dsi_host dsi_host;
	struct drm_connector connector;
	struct device_node *panel_node;
	struct drm_panel *panel;
	struct device *dev;

	void __iomem *reg_base;
	struct phy *phy;
263
	struct clk **clks;
A
Andrzej Hajda 已提交
264 265
	struct regulator_bulk_data supplies[2];
	int irq;
266
	int te_gpio;
A
Andrzej Hajda 已提交
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281

	u32 pll_clk_rate;
	u32 burst_clk_rate;
	u32 esc_clk_rate;
	u32 lanes;
	u32 mode_flags;
	u32 format;
	struct videomode vm;

	int state;
	struct drm_property *brightness;
	struct completion completed;

	spinlock_t transfer_lock; /* protects transfer_list */
	struct list_head transfer_list;
282

283
	const struct exynos_dsi_driver_data *driver_data;
284
	struct device_node *bridge_node;
A
Andrzej Hajda 已提交
285 286 287 288 289
};

#define host_to_dsi(host) container_of(host, struct exynos_dsi, dsi_host)
#define connector_to_dsi(c) container_of(c, struct exynos_dsi, connector)

290
static inline struct exynos_dsi *encoder_to_dsi(struct drm_encoder *e)
291
{
292
	return container_of(e, struct exynos_dsi, encoder);
293 294
}

295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
enum reg_idx {
	DSIM_STATUS_REG,	/* Status register */
	DSIM_SWRST_REG,		/* Software reset register */
	DSIM_CLKCTRL_REG,	/* Clock control register */
	DSIM_TIMEOUT_REG,	/* Time out register */
	DSIM_CONFIG_REG,	/* Configuration register */
	DSIM_ESCMODE_REG,	/* Escape mode register */
	DSIM_MDRESOL_REG,
	DSIM_MVPORCH_REG,	/* Main display Vporch register */
	DSIM_MHPORCH_REG,	/* Main display Hporch register */
	DSIM_MSYNC_REG,		/* Main display sync area register */
	DSIM_INTSRC_REG,	/* Interrupt source register */
	DSIM_INTMSK_REG,	/* Interrupt mask register */
	DSIM_PKTHDR_REG,	/* Packet Header FIFO register */
	DSIM_PAYLOAD_REG,	/* Payload FIFO register */
	DSIM_RXFIFO_REG,	/* Read FIFO register */
	DSIM_FIFOCTRL_REG,	/* FIFO status and control register */
	DSIM_PLLCTRL_REG,	/* PLL control register */
	DSIM_PHYCTRL_REG,
	DSIM_PHYTIMING_REG,
	DSIM_PHYTIMING1_REG,
	DSIM_PHYTIMING2_REG,
	NUM_REGS
};
319 320 321 322

static inline void exynos_dsi_write(struct exynos_dsi *dsi, enum reg_idx idx,
				    u32 val)
{
323

324 325 326 327 328 329 330 331
	writel(val, dsi->reg_base + dsi->driver_data->reg_ofs[idx]);
}

static inline u32 exynos_dsi_read(struct exynos_dsi *dsi, enum reg_idx idx)
{
	return readl(dsi->reg_base + dsi->driver_data->reg_ofs[idx]);
}

332
static const unsigned int exynos_reg_ofs[] = {
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
	[DSIM_STATUS_REG] =  0x00,
	[DSIM_SWRST_REG] =  0x04,
	[DSIM_CLKCTRL_REG] =  0x08,
	[DSIM_TIMEOUT_REG] =  0x0c,
	[DSIM_CONFIG_REG] =  0x10,
	[DSIM_ESCMODE_REG] =  0x14,
	[DSIM_MDRESOL_REG] =  0x18,
	[DSIM_MVPORCH_REG] =  0x1c,
	[DSIM_MHPORCH_REG] =  0x20,
	[DSIM_MSYNC_REG] =  0x24,
	[DSIM_INTSRC_REG] =  0x2c,
	[DSIM_INTMSK_REG] =  0x30,
	[DSIM_PKTHDR_REG] =  0x34,
	[DSIM_PAYLOAD_REG] =  0x38,
	[DSIM_RXFIFO_REG] =  0x3c,
	[DSIM_FIFOCTRL_REG] =  0x44,
	[DSIM_PLLCTRL_REG] =  0x4c,
	[DSIM_PHYCTRL_REG] =  0x5c,
	[DSIM_PHYTIMING_REG] =  0x64,
	[DSIM_PHYTIMING1_REG] =  0x68,
	[DSIM_PHYTIMING2_REG] =  0x6c,
};

356
static const unsigned int exynos5433_reg_ofs[] = {
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
	[DSIM_STATUS_REG] = 0x04,
	[DSIM_SWRST_REG] = 0x0C,
	[DSIM_CLKCTRL_REG] = 0x10,
	[DSIM_TIMEOUT_REG] = 0x14,
	[DSIM_CONFIG_REG] = 0x18,
	[DSIM_ESCMODE_REG] = 0x1C,
	[DSIM_MDRESOL_REG] = 0x20,
	[DSIM_MVPORCH_REG] = 0x24,
	[DSIM_MHPORCH_REG] = 0x28,
	[DSIM_MSYNC_REG] = 0x2C,
	[DSIM_INTSRC_REG] = 0x34,
	[DSIM_INTMSK_REG] = 0x38,
	[DSIM_PKTHDR_REG] = 0x3C,
	[DSIM_PAYLOAD_REG] = 0x40,
	[DSIM_RXFIFO_REG] = 0x44,
	[DSIM_FIFOCTRL_REG] = 0x4C,
	[DSIM_PLLCTRL_REG] = 0x94,
	[DSIM_PHYCTRL_REG] = 0xA4,
	[DSIM_PHYTIMING_REG] = 0xB4,
	[DSIM_PHYTIMING1_REG] = 0xB8,
	[DSIM_PHYTIMING2_REG] = 0xBC,
};

380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
enum reg_value_idx {
	RESET_TYPE,
	PLL_TIMER,
	STOP_STATE_CNT,
	PHYCTRL_ULPS_EXIT,
	PHYCTRL_VREG_LP,
	PHYCTRL_SLEW_UP,
	PHYTIMING_LPX,
	PHYTIMING_HS_EXIT,
	PHYTIMING_CLK_PREPARE,
	PHYTIMING_CLK_ZERO,
	PHYTIMING_CLK_POST,
	PHYTIMING_CLK_TRAIL,
	PHYTIMING_HS_PREPARE,
	PHYTIMING_HS_ZERO,
	PHYTIMING_HS_TRAIL
};

398
static const unsigned int reg_values[] = {
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
	[RESET_TYPE] = DSIM_SWRST,
	[PLL_TIMER] = 500,
	[STOP_STATE_CNT] = 0xf,
	[PHYCTRL_ULPS_EXIT] = DSIM_PHYCTRL_ULPS_EXIT(0x0af),
	[PHYCTRL_VREG_LP] = 0,
	[PHYCTRL_SLEW_UP] = 0,
	[PHYTIMING_LPX] = DSIM_PHYTIMING_LPX(0x06),
	[PHYTIMING_HS_EXIT] = DSIM_PHYTIMING_HS_EXIT(0x0b),
	[PHYTIMING_CLK_PREPARE] = DSIM_PHYTIMING1_CLK_PREPARE(0x07),
	[PHYTIMING_CLK_ZERO] = DSIM_PHYTIMING1_CLK_ZERO(0x27),
	[PHYTIMING_CLK_POST] = DSIM_PHYTIMING1_CLK_POST(0x0d),
	[PHYTIMING_CLK_TRAIL] = DSIM_PHYTIMING1_CLK_TRAIL(0x08),
	[PHYTIMING_HS_PREPARE] = DSIM_PHYTIMING2_HS_PREPARE(0x09),
	[PHYTIMING_HS_ZERO] = DSIM_PHYTIMING2_HS_ZERO(0x0d),
	[PHYTIMING_HS_TRAIL] = DSIM_PHYTIMING2_HS_TRAIL(0x0b),
};

416
static const unsigned int exynos5422_reg_values[] = {
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
	[RESET_TYPE] = DSIM_SWRST,
	[PLL_TIMER] = 500,
	[STOP_STATE_CNT] = 0xf,
	[PHYCTRL_ULPS_EXIT] = DSIM_PHYCTRL_ULPS_EXIT(0xaf),
	[PHYCTRL_VREG_LP] = 0,
	[PHYCTRL_SLEW_UP] = 0,
	[PHYTIMING_LPX] = DSIM_PHYTIMING_LPX(0x08),
	[PHYTIMING_HS_EXIT] = DSIM_PHYTIMING_HS_EXIT(0x0d),
	[PHYTIMING_CLK_PREPARE] = DSIM_PHYTIMING1_CLK_PREPARE(0x09),
	[PHYTIMING_CLK_ZERO] = DSIM_PHYTIMING1_CLK_ZERO(0x30),
	[PHYTIMING_CLK_POST] = DSIM_PHYTIMING1_CLK_POST(0x0e),
	[PHYTIMING_CLK_TRAIL] = DSIM_PHYTIMING1_CLK_TRAIL(0x0a),
	[PHYTIMING_HS_PREPARE] = DSIM_PHYTIMING2_HS_PREPARE(0x0c),
	[PHYTIMING_HS_ZERO] = DSIM_PHYTIMING2_HS_ZERO(0x11),
	[PHYTIMING_HS_TRAIL] = DSIM_PHYTIMING2_HS_TRAIL(0x0d),
};

434
static const unsigned int exynos5433_reg_values[] = {
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
	[RESET_TYPE] = DSIM_FUNCRST,
	[PLL_TIMER] = 22200,
	[STOP_STATE_CNT] = 0xa,
	[PHYCTRL_ULPS_EXIT] = DSIM_PHYCTRL_ULPS_EXIT(0x190),
	[PHYCTRL_VREG_LP] = DSIM_PHYCTRL_B_DPHYCTL_VREG_LP,
	[PHYCTRL_SLEW_UP] = DSIM_PHYCTRL_B_DPHYCTL_SLEW_UP,
	[PHYTIMING_LPX] = DSIM_PHYTIMING_LPX(0x07),
	[PHYTIMING_HS_EXIT] = DSIM_PHYTIMING_HS_EXIT(0x0c),
	[PHYTIMING_CLK_PREPARE] = DSIM_PHYTIMING1_CLK_PREPARE(0x09),
	[PHYTIMING_CLK_ZERO] = DSIM_PHYTIMING1_CLK_ZERO(0x2d),
	[PHYTIMING_CLK_POST] = DSIM_PHYTIMING1_CLK_POST(0x0e),
	[PHYTIMING_CLK_TRAIL] = DSIM_PHYTIMING1_CLK_TRAIL(0x09),
	[PHYTIMING_HS_PREPARE] = DSIM_PHYTIMING2_HS_PREPARE(0x0b),
	[PHYTIMING_HS_ZERO] = DSIM_PHYTIMING2_HS_ZERO(0x10),
	[PHYTIMING_HS_TRAIL] = DSIM_PHYTIMING2_HS_TRAIL(0x0c),
};

452
static const struct exynos_dsi_driver_data exynos3_dsi_driver_data = {
453
	.reg_ofs = exynos_reg_ofs,
454 455 456
	.plltmr_reg = 0x50,
	.has_freqband = 1,
	.has_clklane_stop = 1,
457 458 459 460 461
	.num_clks = 2,
	.max_freq = 1000,
	.wait_for_reset = 1,
	.num_bits_resol = 11,
	.reg_values = reg_values,
462 463
};

464
static const struct exynos_dsi_driver_data exynos4_dsi_driver_data = {
465
	.reg_ofs = exynos_reg_ofs,
466 467
	.plltmr_reg = 0x50,
	.has_freqband = 1,
468
	.has_clklane_stop = 1,
469 470 471 472 473
	.num_clks = 2,
	.max_freq = 1000,
	.wait_for_reset = 1,
	.num_bits_resol = 11,
	.reg_values = reg_values,
474 475
};

476
static const struct exynos_dsi_driver_data exynos4415_dsi_driver_data = {
477
	.reg_ofs = exynos_reg_ofs,
478 479
	.plltmr_reg = 0x58,
	.has_clklane_stop = 1,
480 481 482 483 484
	.num_clks = 2,
	.max_freq = 1000,
	.wait_for_reset = 1,
	.num_bits_resol = 11,
	.reg_values = reg_values,
485 486
};

487
static const struct exynos_dsi_driver_data exynos5_dsi_driver_data = {
488
	.reg_ofs = exynos_reg_ofs,
489
	.plltmr_reg = 0x58,
490 491 492 493 494
	.num_clks = 2,
	.max_freq = 1000,
	.wait_for_reset = 1,
	.num_bits_resol = 11,
	.reg_values = reg_values,
495 496
};

497
static const struct exynos_dsi_driver_data exynos5433_dsi_driver_data = {
498 499 500 501 502 503 504 505 506 507
	.reg_ofs = exynos5433_reg_ofs,
	.plltmr_reg = 0xa0,
	.has_clklane_stop = 1,
	.num_clks = 5,
	.max_freq = 1500,
	.wait_for_reset = 0,
	.num_bits_resol = 12,
	.reg_values = exynos5433_reg_values,
};

508
static const struct exynos_dsi_driver_data exynos5422_dsi_driver_data = {
509 510 511 512 513 514 515 516 517 518
	.reg_ofs = exynos5433_reg_ofs,
	.plltmr_reg = 0xa0,
	.has_clklane_stop = 1,
	.num_clks = 2,
	.max_freq = 1500,
	.wait_for_reset = 1,
	.num_bits_resol = 12,
	.reg_values = exynos5422_reg_values,
};

519
static const struct of_device_id exynos_dsi_of_match[] = {
520 521
	{ .compatible = "samsung,exynos3250-mipi-dsi",
	  .data = &exynos3_dsi_driver_data },
522 523
	{ .compatible = "samsung,exynos4210-mipi-dsi",
	  .data = &exynos4_dsi_driver_data },
524 525
	{ .compatible = "samsung,exynos4415-mipi-dsi",
	  .data = &exynos4415_dsi_driver_data },
526 527
	{ .compatible = "samsung,exynos5410-mipi-dsi",
	  .data = &exynos5_dsi_driver_data },
528 529
	{ .compatible = "samsung,exynos5422-mipi-dsi",
	  .data = &exynos5422_dsi_driver_data },
530 531
	{ .compatible = "samsung,exynos5433-mipi-dsi",
	  .data = &exynos5433_dsi_driver_data },
532 533 534
	{ }
};

A
Andrzej Hajda 已提交
535 536 537 538 539 540 541 542 543 544
static void exynos_dsi_wait_for_reset(struct exynos_dsi *dsi)
{
	if (wait_for_completion_timeout(&dsi->completed, msecs_to_jiffies(300)))
		return;

	dev_err(dsi->dev, "timeout waiting for reset\n");
}

static void exynos_dsi_reset(struct exynos_dsi *dsi)
{
545
	u32 reset_val = dsi->driver_data->reg_values[RESET_TYPE];
546

A
Andrzej Hajda 已提交
547
	reinit_completion(&dsi->completed);
548
	exynos_dsi_write(dsi, DSIM_SWRST_REG, reset_val);
A
Andrzej Hajda 已提交
549 550 551 552 553 554 555 556 557
}

#ifndef MHZ
#define MHZ	(1000*1000)
#endif

static unsigned long exynos_dsi_pll_find_pms(struct exynos_dsi *dsi,
		unsigned long fin, unsigned long fout, u8 *p, u16 *m, u8 *s)
{
558
	const struct exynos_dsi_driver_data *driver_data = dsi->driver_data;
A
Andrzej Hajda 已提交
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
	unsigned long best_freq = 0;
	u32 min_delta = 0xffffffff;
	u8 p_min, p_max;
	u8 _p, uninitialized_var(best_p);
	u16 _m, uninitialized_var(best_m);
	u8 _s, uninitialized_var(best_s);

	p_min = DIV_ROUND_UP(fin, (12 * MHZ));
	p_max = fin / (6 * MHZ);

	for (_p = p_min; _p <= p_max; ++_p) {
		for (_s = 0; _s <= 5; ++_s) {
			u64 tmp;
			u32 delta;

			tmp = (u64)fout * (_p << _s);
			do_div(tmp, fin);
			_m = tmp;
			if (_m < 41 || _m > 125)
				continue;

			tmp = (u64)_m * fin;
			do_div(tmp, _p);
582 583
			if (tmp < 500 * MHZ ||
					tmp > driver_data->max_freq * MHZ)
A
Andrzej Hajda 已提交
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
				continue;

			tmp = (u64)_m * fin;
			do_div(tmp, _p << _s);

			delta = abs(fout - tmp);
			if (delta < min_delta) {
				best_p = _p;
				best_m = _m;
				best_s = _s;
				min_delta = delta;
				best_freq = tmp;
			}
		}
	}

	if (best_freq) {
		*p = best_p;
		*m = best_m;
		*s = best_s;
	}

	return best_freq;
}

static unsigned long exynos_dsi_set_pll(struct exynos_dsi *dsi,
					unsigned long freq)
{
612
	const struct exynos_dsi_driver_data *driver_data = dsi->driver_data;
A
Andrzej Hajda 已提交
613
	unsigned long fin, fout;
614
	int timeout;
A
Andrzej Hajda 已提交
615 616 617 618
	u8 p, s;
	u16 m;
	u32 reg;

619
	fin = dsi->pll_clk_rate;
A
Andrzej Hajda 已提交
620 621 622 623
	fout = exynos_dsi_pll_find_pms(dsi, fin, freq, &p, &m, &s);
	if (!fout) {
		dev_err(dsi->dev,
			"failed to find PLL PMS for requested frequency\n");
624
		return 0;
A
Andrzej Hajda 已提交
625
	}
626
	dev_dbg(dsi->dev, "PLL freq %lu, (p %d, m %d, s %d)\n", fout, p, m, s);
A
Andrzej Hajda 已提交
627

628 629
	writel(driver_data->reg_values[PLL_TIMER],
			dsi->reg_base + driver_data->plltmr_reg);
630 631 632 633 634 635 636 637 638 639 640

	reg = DSIM_PLL_EN | DSIM_PLL_P(p) | DSIM_PLL_M(m) | DSIM_PLL_S(s);

	if (driver_data->has_freqband) {
		static const unsigned long freq_bands[] = {
			100 * MHZ, 120 * MHZ, 160 * MHZ, 200 * MHZ,
			270 * MHZ, 320 * MHZ, 390 * MHZ, 450 * MHZ,
			510 * MHZ, 560 * MHZ, 640 * MHZ, 690 * MHZ,
			770 * MHZ, 870 * MHZ, 950 * MHZ,
		};
		int band;
A
Andrzej Hajda 已提交
641

642 643 644
		for (band = 0; band < ARRAY_SIZE(freq_bands); ++band)
			if (fout < freq_bands[band])
				break;
A
Andrzej Hajda 已提交
645

646 647 648 649
		dev_dbg(dsi->dev, "band %d\n", band);

		reg |= DSIM_FREQ_BAND(band);
	}
A
Andrzej Hajda 已提交
650

651
	exynos_dsi_write(dsi, DSIM_PLLCTRL_REG, reg);
A
Andrzej Hajda 已提交
652 653 654 655 656

	timeout = 1000;
	do {
		if (timeout-- == 0) {
			dev_err(dsi->dev, "PLL failed to stabilize\n");
657
			return 0;
A
Andrzej Hajda 已提交
658
		}
659
		reg = exynos_dsi_read(dsi, DSIM_STATUS_REG);
A
Andrzej Hajda 已提交
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
	} while ((reg & DSIM_PLL_STABLE) == 0);

	return fout;
}

static int exynos_dsi_enable_clock(struct exynos_dsi *dsi)
{
	unsigned long hs_clk, byte_clk, esc_clk;
	unsigned long esc_div;
	u32 reg;

	hs_clk = exynos_dsi_set_pll(dsi, dsi->burst_clk_rate);
	if (!hs_clk) {
		dev_err(dsi->dev, "failed to configure DSI PLL\n");
		return -EFAULT;
	}

	byte_clk = hs_clk / 8;
	esc_div = DIV_ROUND_UP(byte_clk, dsi->esc_clk_rate);
	esc_clk = byte_clk / esc_div;

	if (esc_clk > 20 * MHZ) {
		++esc_div;
		esc_clk = byte_clk / esc_div;
	}

	dev_dbg(dsi->dev, "hs_clk = %lu, byte_clk = %lu, esc_clk = %lu\n",
		hs_clk, byte_clk, esc_clk);

689
	reg = exynos_dsi_read(dsi, DSIM_CLKCTRL_REG);
A
Andrzej Hajda 已提交
690 691 692 693 694 695 696 697 698
	reg &= ~(DSIM_ESC_PRESCALER_MASK | DSIM_LANE_ESC_CLK_EN_CLK
			| DSIM_LANE_ESC_CLK_EN_DATA_MASK | DSIM_PLL_BYPASS
			| DSIM_BYTE_CLK_SRC_MASK);
	reg |= DSIM_ESC_CLKEN | DSIM_BYTE_CLKEN
			| DSIM_ESC_PRESCALER(esc_div)
			| DSIM_LANE_ESC_CLK_EN_CLK
			| DSIM_LANE_ESC_CLK_EN_DATA(BIT(dsi->lanes) - 1)
			| DSIM_BYTE_CLK_SRC(0)
			| DSIM_TX_REQUEST_HSCLK;
699
	exynos_dsi_write(dsi, DSIM_CLKCTRL_REG, reg);
A
Andrzej Hajda 已提交
700 701 702 703

	return 0;
}

704 705
static void exynos_dsi_set_phy_ctrl(struct exynos_dsi *dsi)
{
706
	const struct exynos_dsi_driver_data *driver_data = dsi->driver_data;
707
	const unsigned int *reg_values = driver_data->reg_values;
708 709 710 711 712 713
	u32 reg;

	if (driver_data->has_freqband)
		return;

	/* B D-PHY: D-PHY Master & Slave Analog Block control */
714 715
	reg = reg_values[PHYCTRL_ULPS_EXIT] | reg_values[PHYCTRL_VREG_LP] |
		reg_values[PHYCTRL_SLEW_UP];
716
	exynos_dsi_write(dsi, DSIM_PHYCTRL_REG, reg);
717 718 719 720 721 722

	/*
	 * T LPX: Transmitted length of any Low-Power state period
	 * T HS-EXIT: Time that the transmitter drives LP-11 following a HS
	 *	burst
	 */
723
	reg = reg_values[PHYTIMING_LPX] | reg_values[PHYTIMING_HS_EXIT];
724
	exynos_dsi_write(dsi, DSIM_PHYTIMING_REG, reg);
725 726 727 728 729 730 731 732 733 734 735 736 737 738

	/*
	 * T CLK-PREPARE: Time that the transmitter drives the Clock Lane LP-00
	 *	Line state immediately before the HS-0 Line state starting the
	 *	HS transmission
	 * T CLK-ZERO: Time that the transmitter drives the HS-0 state prior to
	 *	transmitting the Clock.
	 * T CLK_POST: Time that the transmitter continues to send HS clock
	 *	after the last associated Data Lane has transitioned to LP Mode
	 *	Interval is defined as the period from the end of T HS-TRAIL to
	 *	the beginning of T CLK-TRAIL
	 * T CLK-TRAIL: Time that the transmitter drives the HS-0 state after
	 *	the last payload clock bit of a HS transmission burst
	 */
739 740 741 742 743
	reg = reg_values[PHYTIMING_CLK_PREPARE] |
		reg_values[PHYTIMING_CLK_ZERO] |
		reg_values[PHYTIMING_CLK_POST] |
		reg_values[PHYTIMING_CLK_TRAIL];

744
	exynos_dsi_write(dsi, DSIM_PHYTIMING1_REG, reg);
745 746 747 748 749 750 751 752 753 754

	/*
	 * T HS-PREPARE: Time that the transmitter drives the Data Lane LP-00
	 *	Line state immediately before the HS-0 Line state starting the
	 *	HS transmission
	 * T HS-ZERO: Time that the transmitter drives the HS-0 state prior to
	 *	transmitting the Sync sequence.
	 * T HS-TRAIL: Time that the transmitter drives the flipped differential
	 *	state after last payload data bit of a HS transmission burst
	 */
755 756
	reg = reg_values[PHYTIMING_HS_PREPARE] | reg_values[PHYTIMING_HS_ZERO] |
		reg_values[PHYTIMING_HS_TRAIL];
757
	exynos_dsi_write(dsi, DSIM_PHYTIMING2_REG, reg);
758 759
}

A
Andrzej Hajda 已提交
760 761 762 763
static void exynos_dsi_disable_clock(struct exynos_dsi *dsi)
{
	u32 reg;

764
	reg = exynos_dsi_read(dsi, DSIM_CLKCTRL_REG);
A
Andrzej Hajda 已提交
765 766
	reg &= ~(DSIM_LANE_ESC_CLK_EN_CLK | DSIM_LANE_ESC_CLK_EN_DATA_MASK
			| DSIM_ESC_CLKEN | DSIM_BYTE_CLKEN);
767
	exynos_dsi_write(dsi, DSIM_CLKCTRL_REG, reg);
A
Andrzej Hajda 已提交
768

769
	reg = exynos_dsi_read(dsi, DSIM_PLLCTRL_REG);
A
Andrzej Hajda 已提交
770
	reg &= ~DSIM_PLL_EN;
771
	exynos_dsi_write(dsi, DSIM_PLLCTRL_REG, reg);
A
Andrzej Hajda 已提交
772 773
}

774 775
static void exynos_dsi_enable_lane(struct exynos_dsi *dsi, u32 lane)
{
776
	u32 reg = exynos_dsi_read(dsi, DSIM_CONFIG_REG);
777 778
	reg |= (DSIM_NUM_OF_DATA_LANE(dsi->lanes - 1) | DSIM_LANE_EN_CLK |
			DSIM_LANE_EN(lane));
779
	exynos_dsi_write(dsi, DSIM_CONFIG_REG, reg);
780 781
}

A
Andrzej Hajda 已提交
782 783
static int exynos_dsi_init_link(struct exynos_dsi *dsi)
{
784
	const struct exynos_dsi_driver_data *driver_data = dsi->driver_data;
A
Andrzej Hajda 已提交
785 786 787 788 789
	int timeout;
	u32 reg;
	u32 lanes_mask;

	/* Initialize FIFO pointers */
790
	reg = exynos_dsi_read(dsi, DSIM_FIFOCTRL_REG);
A
Andrzej Hajda 已提交
791
	reg &= ~0x1f;
792
	exynos_dsi_write(dsi, DSIM_FIFOCTRL_REG, reg);
A
Andrzej Hajda 已提交
793 794 795 796

	usleep_range(9000, 11000);

	reg |= 0x1f;
797
	exynos_dsi_write(dsi, DSIM_FIFOCTRL_REG, reg);
A
Andrzej Hajda 已提交
798 799 800 801 802
	usleep_range(9000, 11000);

	/* DSI configuration */
	reg = 0;

803 804 805 806 807
	/*
	 * The first bit of mode_flags specifies display configuration.
	 * If this bit is set[= MIPI_DSI_MODE_VIDEO], dsi will support video
	 * mode, otherwise it will support command mode.
	 */
A
Andrzej Hajda 已提交
808 809 810
	if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO) {
		reg |= DSIM_VIDEO_MODE;

811 812 813 814
		/*
		 * The user manual describes that following bits are ignored in
		 * command mode.
		 */
A
Andrzej Hajda 已提交
815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
		if (!(dsi->mode_flags & MIPI_DSI_MODE_VSYNC_FLUSH))
			reg |= DSIM_MFLUSH_VS;
		if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE)
			reg |= DSIM_SYNC_INFORM;
		if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST)
			reg |= DSIM_BURST_MODE;
		if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_AUTO_VERT)
			reg |= DSIM_AUTO_MODE;
		if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_HSE)
			reg |= DSIM_HSE_MODE;
		if (!(dsi->mode_flags & MIPI_DSI_MODE_VIDEO_HFP))
			reg |= DSIM_HFP_MODE;
		if (!(dsi->mode_flags & MIPI_DSI_MODE_VIDEO_HBP))
			reg |= DSIM_HBP_MODE;
		if (!(dsi->mode_flags & MIPI_DSI_MODE_VIDEO_HSA))
			reg |= DSIM_HSA_MODE;
	}

833 834 835
	if (!(dsi->mode_flags & MIPI_DSI_MODE_EOT_PACKET))
		reg |= DSIM_EOT_DISABLE;

A
Andrzej Hajda 已提交
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853
	switch (dsi->format) {
	case MIPI_DSI_FMT_RGB888:
		reg |= DSIM_MAIN_PIX_FORMAT_RGB888;
		break;
	case MIPI_DSI_FMT_RGB666:
		reg |= DSIM_MAIN_PIX_FORMAT_RGB666;
		break;
	case MIPI_DSI_FMT_RGB666_PACKED:
		reg |= DSIM_MAIN_PIX_FORMAT_RGB666_P;
		break;
	case MIPI_DSI_FMT_RGB565:
		reg |= DSIM_MAIN_PIX_FORMAT_RGB565;
		break;
	default:
		dev_err(dsi->dev, "invalid pixel format\n");
		return -EINVAL;
	}

854 855 856 857 858 859 860 861 862 863 864 865
	/*
	 * Use non-continuous clock mode if the periparal wants and
	 * host controller supports
	 *
	 * In non-continous clock mode, host controller will turn off
	 * the HS clock between high-speed transmissions to reduce
	 * power consumption.
	 */
	if (driver_data->has_clklane_stop &&
			dsi->mode_flags & MIPI_DSI_CLOCK_NON_CONTINUOUS) {
		reg |= DSIM_CLKLANE_STOP;
	}
866
	exynos_dsi_write(dsi, DSIM_CONFIG_REG, reg);
867 868 869

	lanes_mask = BIT(dsi->lanes) - 1;
	exynos_dsi_enable_lane(dsi, lanes_mask);
870

A
Andrzej Hajda 已提交
871 872 873 874 875 876 877 878
	/* Check clock and data lane state are stop state */
	timeout = 100;
	do {
		if (timeout-- == 0) {
			dev_err(dsi->dev, "waiting for bus lanes timed out\n");
			return -EFAULT;
		}

879
		reg = exynos_dsi_read(dsi, DSIM_STATUS_REG);
A
Andrzej Hajda 已提交
880 881 882 883 884
		if ((reg & DSIM_STOP_STATE_DAT(lanes_mask))
		    != DSIM_STOP_STATE_DAT(lanes_mask))
			continue;
	} while (!(reg & (DSIM_STOP_STATE_CLK | DSIM_TX_READY_HS_CLK)));

885
	reg = exynos_dsi_read(dsi, DSIM_ESCMODE_REG);
A
Andrzej Hajda 已提交
886
	reg &= ~DSIM_STOP_STATE_CNT_MASK;
887
	reg |= DSIM_STOP_STATE_CNT(driver_data->reg_values[STOP_STATE_CNT]);
888
	exynos_dsi_write(dsi, DSIM_ESCMODE_REG, reg);
A
Andrzej Hajda 已提交
889 890

	reg = DSIM_BTA_TIMEOUT(0xff) | DSIM_LPDR_TIMEOUT(0xffff);
891
	exynos_dsi_write(dsi, DSIM_TIMEOUT_REG, reg);
A
Andrzej Hajda 已提交
892 893 894 895 896 897 898

	return 0;
}

static void exynos_dsi_set_display_mode(struct exynos_dsi *dsi)
{
	struct videomode *vm = &dsi->vm;
899
	unsigned int num_bits_resol = dsi->driver_data->num_bits_resol;
A
Andrzej Hajda 已提交
900 901 902 903 904 905
	u32 reg;

	if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO) {
		reg = DSIM_CMD_ALLOW(0xf)
			| DSIM_STABLE_VFP(vm->vfront_porch)
			| DSIM_MAIN_VBP(vm->vback_porch);
906
		exynos_dsi_write(dsi, DSIM_MVPORCH_REG, reg);
A
Andrzej Hajda 已提交
907 908 909

		reg = DSIM_MAIN_HFP(vm->hfront_porch)
			| DSIM_MAIN_HBP(vm->hback_porch);
910
		exynos_dsi_write(dsi, DSIM_MHPORCH_REG, reg);
A
Andrzej Hajda 已提交
911 912 913

		reg = DSIM_MAIN_VSA(vm->vsync_len)
			| DSIM_MAIN_HSA(vm->hsync_len);
914
		exynos_dsi_write(dsi, DSIM_MSYNC_REG, reg);
A
Andrzej Hajda 已提交
915
	}
916 917
	reg =  DSIM_MAIN_HRESOL(vm->hactive, num_bits_resol) |
		DSIM_MAIN_VRESOL(vm->vactive, num_bits_resol);
A
Andrzej Hajda 已提交
918

919
	exynos_dsi_write(dsi, DSIM_MDRESOL_REG, reg);
A
Andrzej Hajda 已提交
920 921 922 923 924 925 926 927

	dev_dbg(dsi->dev, "LCD size = %dx%d\n", vm->hactive, vm->vactive);
}

static void exynos_dsi_set_display_enable(struct exynos_dsi *dsi, bool enable)
{
	u32 reg;

928
	reg = exynos_dsi_read(dsi, DSIM_MDRESOL_REG);
A
Andrzej Hajda 已提交
929 930 931 932
	if (enable)
		reg |= DSIM_MAIN_STAND_BY;
	else
		reg &= ~DSIM_MAIN_STAND_BY;
933
	exynos_dsi_write(dsi, DSIM_MDRESOL_REG, reg);
A
Andrzej Hajda 已提交
934 935 936 937 938 939 940
}

static int exynos_dsi_wait_for_hdr_fifo(struct exynos_dsi *dsi)
{
	int timeout = 2000;

	do {
941
		u32 reg = exynos_dsi_read(dsi, DSIM_FIFOCTRL_REG);
A
Andrzej Hajda 已提交
942 943 944 945 946 947 948 949 950 951 952 953 954

		if (!(reg & DSIM_SFR_HEADER_FULL))
			return 0;

		if (!cond_resched())
			usleep_range(950, 1050);
	} while (--timeout);

	return -ETIMEDOUT;
}

static void exynos_dsi_set_cmd_lpm(struct exynos_dsi *dsi, bool lpm)
{
955
	u32 v = exynos_dsi_read(dsi, DSIM_ESCMODE_REG);
A
Andrzej Hajda 已提交
956 957 958 959 960 961

	if (lpm)
		v |= DSIM_CMD_LPDT_LP;
	else
		v &= ~DSIM_CMD_LPDT_LP;

962
	exynos_dsi_write(dsi, DSIM_ESCMODE_REG, v);
A
Andrzej Hajda 已提交
963 964 965 966
}

static void exynos_dsi_force_bta(struct exynos_dsi *dsi)
{
967
	u32 v = exynos_dsi_read(dsi, DSIM_ESCMODE_REG);
A
Andrzej Hajda 已提交
968
	v |= DSIM_FORCE_BTA;
969
	exynos_dsi_write(dsi, DSIM_ESCMODE_REG, v);
A
Andrzej Hajda 已提交
970 971 972 973 974 975
}

static void exynos_dsi_send_to_fifo(struct exynos_dsi *dsi,
					struct exynos_dsi_transfer *xfer)
{
	struct device *dev = dsi->dev;
976 977 978
	struct mipi_dsi_packet *pkt = &xfer->packet;
	const u8 *payload = pkt->payload + xfer->tx_done;
	u16 length = pkt->payload_length - xfer->tx_done;
A
Andrzej Hajda 已提交
979 980 981 982
	bool first = !xfer->tx_done;
	u32 reg;

	dev_dbg(dev, "< xfer %p: tx len %u, done %u, rx len %u, done %u\n",
983
		xfer, length, xfer->tx_done, xfer->rx_len, xfer->rx_done);
A
Andrzej Hajda 已提交
984 985 986 987 988 989 990 991

	if (length > DSI_TX_FIFO_SIZE)
		length = DSI_TX_FIFO_SIZE;

	xfer->tx_done += length;

	/* Send payload */
	while (length >= 4) {
992
		reg = get_unaligned_le32(payload);
993
		exynos_dsi_write(dsi, DSIM_PAYLOAD_REG, reg);
A
Andrzej Hajda 已提交
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
		payload += 4;
		length -= 4;
	}

	reg = 0;
	switch (length) {
	case 3:
		reg |= payload[2] << 16;
		/* Fall through */
	case 2:
		reg |= payload[1] << 8;
		/* Fall through */
	case 1:
		reg |= payload[0];
1008
		exynos_dsi_write(dsi, DSIM_PAYLOAD_REG, reg);
A
Andrzej Hajda 已提交
1009 1010 1011 1012 1013 1014 1015
		break;
	}

	/* Send packet header */
	if (!first)
		return;

1016
	reg = get_unaligned_le32(pkt->header);
A
Andrzej Hajda 已提交
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
	if (exynos_dsi_wait_for_hdr_fifo(dsi)) {
		dev_err(dev, "waiting for header FIFO timed out\n");
		return;
	}

	if (NEQV(xfer->flags & MIPI_DSI_MSG_USE_LPM,
		 dsi->state & DSIM_STATE_CMD_LPM)) {
		exynos_dsi_set_cmd_lpm(dsi, xfer->flags & MIPI_DSI_MSG_USE_LPM);
		dsi->state ^= DSIM_STATE_CMD_LPM;
	}

1028
	exynos_dsi_write(dsi, DSIM_PKTHDR_REG, reg);
A
Andrzej Hajda 已提交
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043

	if (xfer->flags & MIPI_DSI_MSG_REQ_ACK)
		exynos_dsi_force_bta(dsi);
}

static void exynos_dsi_read_from_fifo(struct exynos_dsi *dsi,
					struct exynos_dsi_transfer *xfer)
{
	u8 *payload = xfer->rx_payload + xfer->rx_done;
	bool first = !xfer->rx_done;
	struct device *dev = dsi->dev;
	u16 length;
	u32 reg;

	if (first) {
1044
		reg = exynos_dsi_read(dsi, DSIM_RXFIFO_REG);
A
Andrzej Hajda 已提交
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082

		switch (reg & 0x3f) {
		case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_2BYTE:
		case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE:
			if (xfer->rx_len >= 2) {
				payload[1] = reg >> 16;
				++xfer->rx_done;
			}
			/* Fall through */
		case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_1BYTE:
		case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE:
			payload[0] = reg >> 8;
			++xfer->rx_done;
			xfer->rx_len = xfer->rx_done;
			xfer->result = 0;
			goto clear_fifo;
		case MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT:
			dev_err(dev, "DSI Error Report: 0x%04x\n",
				(reg >> 8) & 0xffff);
			xfer->result = 0;
			goto clear_fifo;
		}

		length = (reg >> 8) & 0xffff;
		if (length > xfer->rx_len) {
			dev_err(dev,
				"response too long (%u > %u bytes), stripping\n",
				xfer->rx_len, length);
			length = xfer->rx_len;
		} else if (length < xfer->rx_len)
			xfer->rx_len = length;
	}

	length = xfer->rx_len - xfer->rx_done;
	xfer->rx_done += length;

	/* Receive payload */
	while (length >= 4) {
1083
		reg = exynos_dsi_read(dsi, DSIM_RXFIFO_REG);
A
Andrzej Hajda 已提交
1084 1085 1086 1087 1088 1089 1090 1091 1092
		payload[0] = (reg >>  0) & 0xff;
		payload[1] = (reg >>  8) & 0xff;
		payload[2] = (reg >> 16) & 0xff;
		payload[3] = (reg >> 24) & 0xff;
		payload += 4;
		length -= 4;
	}

	if (length) {
1093
		reg = exynos_dsi_read(dsi, DSIM_RXFIFO_REG);
A
Andrzej Hajda 已提交
1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
		switch (length) {
		case 3:
			payload[2] = (reg >> 16) & 0xff;
			/* Fall through */
		case 2:
			payload[1] = (reg >> 8) & 0xff;
			/* Fall through */
		case 1:
			payload[0] = reg & 0xff;
		}
	}

	if (xfer->rx_done == xfer->rx_len)
		xfer->result = 0;

clear_fifo:
	length = DSI_RX_FIFO_SIZE / 4;
	do {
1112
		reg = exynos_dsi_read(dsi, DSIM_RXFIFO_REG);
A
Andrzej Hajda 已提交
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
		if (reg == DSI_RX_FIFO_EMPTY)
			break;
	} while (--length);
}

static void exynos_dsi_transfer_start(struct exynos_dsi *dsi)
{
	unsigned long flags;
	struct exynos_dsi_transfer *xfer;
	bool start = false;

again:
	spin_lock_irqsave(&dsi->transfer_lock, flags);

	if (list_empty(&dsi->transfer_list)) {
		spin_unlock_irqrestore(&dsi->transfer_lock, flags);
		return;
	}

	xfer = list_first_entry(&dsi->transfer_list,
					struct exynos_dsi_transfer, list);

	spin_unlock_irqrestore(&dsi->transfer_lock, flags);

1137 1138
	if (xfer->packet.payload_length &&
	    xfer->tx_done == xfer->packet.payload_length)
A
Andrzej Hajda 已提交
1139 1140 1141 1142 1143
		/* waiting for RX */
		return;

	exynos_dsi_send_to_fifo(dsi, xfer);

1144
	if (xfer->packet.payload_length || xfer->rx_len)
A
Andrzej Hajda 已提交
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
		return;

	xfer->result = 0;
	complete(&xfer->completed);

	spin_lock_irqsave(&dsi->transfer_lock, flags);

	list_del_init(&xfer->list);
	start = !list_empty(&dsi->transfer_list);

	spin_unlock_irqrestore(&dsi->transfer_lock, flags);

	if (start)
		goto again;
}

static bool exynos_dsi_transfer_finish(struct exynos_dsi *dsi)
{
	struct exynos_dsi_transfer *xfer;
	unsigned long flags;
	bool start = true;

	spin_lock_irqsave(&dsi->transfer_lock, flags);

	if (list_empty(&dsi->transfer_list)) {
		spin_unlock_irqrestore(&dsi->transfer_lock, flags);
		return false;
	}

	xfer = list_first_entry(&dsi->transfer_list,
					struct exynos_dsi_transfer, list);

	spin_unlock_irqrestore(&dsi->transfer_lock, flags);

	dev_dbg(dsi->dev,
1180 1181 1182
		"> xfer %p, tx_len %zu, tx_done %u, rx_len %u, rx_done %u\n",
		xfer, xfer->packet.payload_length, xfer->tx_done, xfer->rx_len,
		xfer->rx_done);
A
Andrzej Hajda 已提交
1183

1184
	if (xfer->tx_done != xfer->packet.payload_length)
A
Andrzej Hajda 已提交
1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254
		return true;

	if (xfer->rx_done != xfer->rx_len)
		exynos_dsi_read_from_fifo(dsi, xfer);

	if (xfer->rx_done != xfer->rx_len)
		return true;

	spin_lock_irqsave(&dsi->transfer_lock, flags);

	list_del_init(&xfer->list);
	start = !list_empty(&dsi->transfer_list);

	spin_unlock_irqrestore(&dsi->transfer_lock, flags);

	if (!xfer->rx_len)
		xfer->result = 0;
	complete(&xfer->completed);

	return start;
}

static void exynos_dsi_remove_transfer(struct exynos_dsi *dsi,
					struct exynos_dsi_transfer *xfer)
{
	unsigned long flags;
	bool start;

	spin_lock_irqsave(&dsi->transfer_lock, flags);

	if (!list_empty(&dsi->transfer_list) &&
	    xfer == list_first_entry(&dsi->transfer_list,
				     struct exynos_dsi_transfer, list)) {
		list_del_init(&xfer->list);
		start = !list_empty(&dsi->transfer_list);
		spin_unlock_irqrestore(&dsi->transfer_lock, flags);
		if (start)
			exynos_dsi_transfer_start(dsi);
		return;
	}

	list_del_init(&xfer->list);

	spin_unlock_irqrestore(&dsi->transfer_lock, flags);
}

static int exynos_dsi_transfer(struct exynos_dsi *dsi,
					struct exynos_dsi_transfer *xfer)
{
	unsigned long flags;
	bool stopped;

	xfer->tx_done = 0;
	xfer->rx_done = 0;
	xfer->result = -ETIMEDOUT;
	init_completion(&xfer->completed);

	spin_lock_irqsave(&dsi->transfer_lock, flags);

	stopped = list_empty(&dsi->transfer_list);
	list_add_tail(&xfer->list, &dsi->transfer_list);

	spin_unlock_irqrestore(&dsi->transfer_lock, flags);

	if (stopped)
		exynos_dsi_transfer_start(dsi);

	wait_for_completion_timeout(&xfer->completed,
				    msecs_to_jiffies(DSI_XFER_TIMEOUT_MS));
	if (xfer->result == -ETIMEDOUT) {
1255
		struct mipi_dsi_packet *pkt = &xfer->packet;
A
Andrzej Hajda 已提交
1256
		exynos_dsi_remove_transfer(dsi, xfer);
1257 1258
		dev_err(dsi->dev, "xfer timed out: %*ph %*ph\n", 4, pkt->header,
			(int)pkt->payload_length, pkt->payload);
A
Andrzej Hajda 已提交
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270
		return -ETIMEDOUT;
	}

	/* Also covers hardware timeout condition */
	return xfer->result;
}

static irqreturn_t exynos_dsi_irq(int irq, void *dev_id)
{
	struct exynos_dsi *dsi = dev_id;
	u32 status;

1271
	status = exynos_dsi_read(dsi, DSIM_INTSRC_REG);
A
Andrzej Hajda 已提交
1272 1273 1274 1275 1276 1277
	if (!status) {
		static unsigned long int j;
		if (printk_timed_ratelimit(&j, 500))
			dev_warn(dsi->dev, "spurious interrupt\n");
		return IRQ_HANDLED;
	}
1278
	exynos_dsi_write(dsi, DSIM_INTSRC_REG, status);
A
Andrzej Hajda 已提交
1279 1280

	if (status & DSIM_INT_SW_RST_RELEASE) {
1281 1282 1283
		u32 mask = ~(DSIM_INT_RX_DONE | DSIM_INT_SFR_FIFO_EMPTY |
			DSIM_INT_SFR_HDR_FIFO_EMPTY | DSIM_INT_FRAME_DONE |
			DSIM_INT_RX_ECC_ERR | DSIM_INT_SW_RST_RELEASE);
1284
		exynos_dsi_write(dsi, DSIM_INTMSK_REG, mask);
A
Andrzej Hajda 已提交
1285 1286 1287 1288
		complete(&dsi->completed);
		return IRQ_HANDLED;
	}

1289 1290
	if (!(status & (DSIM_INT_RX_DONE | DSIM_INT_SFR_FIFO_EMPTY |
			DSIM_INT_FRAME_DONE | DSIM_INT_PLL_STABLE)))
A
Andrzej Hajda 已提交
1291 1292 1293 1294 1295 1296 1297 1298
		return IRQ_HANDLED;

	if (exynos_dsi_transfer_finish(dsi))
		exynos_dsi_transfer_start(dsi);

	return IRQ_HANDLED;
}

1299 1300 1301
static irqreturn_t exynos_dsi_te_irq_handler(int irq, void *dev_id)
{
	struct exynos_dsi *dsi = (struct exynos_dsi *)dev_id;
1302
	struct drm_encoder *encoder = &dsi->encoder;
1303

1304
	if (dsi->state & DSIM_STATE_VIDOUT_AVAILABLE)
1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325
		exynos_drm_crtc_te_handler(encoder->crtc);

	return IRQ_HANDLED;
}

static void exynos_dsi_enable_irq(struct exynos_dsi *dsi)
{
	enable_irq(dsi->irq);

	if (gpio_is_valid(dsi->te_gpio))
		enable_irq(gpio_to_irq(dsi->te_gpio));
}

static void exynos_dsi_disable_irq(struct exynos_dsi *dsi)
{
	if (gpio_is_valid(dsi->te_gpio))
		disable_irq(gpio_to_irq(dsi->te_gpio));

	disable_irq(dsi->irq);
}

A
Andrzej Hajda 已提交
1326 1327
static int exynos_dsi_init(struct exynos_dsi *dsi)
{
1328
	const struct exynos_dsi_driver_data *driver_data = dsi->driver_data;
1329

A
Andrzej Hajda 已提交
1330
	exynos_dsi_reset(dsi);
1331
	exynos_dsi_enable_irq(dsi);
1332 1333 1334 1335

	if (driver_data->reg_values[RESET_TYPE] == DSIM_FUNCRST)
		exynos_dsi_enable_lane(dsi, BIT(dsi->lanes) - 1);

1336
	exynos_dsi_enable_clock(dsi);
1337 1338
	if (driver_data->wait_for_reset)
		exynos_dsi_wait_for_reset(dsi);
1339
	exynos_dsi_set_phy_ctrl(dsi);
A
Andrzej Hajda 已提交
1340 1341 1342 1343 1344
	exynos_dsi_init_link(dsi);

	return 0;
}

1345 1346 1347
static int exynos_dsi_register_te_irq(struct exynos_dsi *dsi)
{
	int ret;
1348
	int te_gpio_irq;
1349 1350 1351 1352 1353 1354 1355 1356

	dsi->te_gpio = of_get_named_gpio(dsi->panel_node, "te-gpios", 0);
	if (!gpio_is_valid(dsi->te_gpio)) {
		dev_err(dsi->dev, "no te-gpios specified\n");
		ret = dsi->te_gpio;
		goto out;
	}

1357
	ret = gpio_request(dsi->te_gpio, "te_gpio");
1358 1359 1360 1361 1362
	if (ret) {
		dev_err(dsi->dev, "gpio request failed with %d\n", ret);
		goto out;
	}

1363 1364
	te_gpio_irq = gpio_to_irq(dsi->te_gpio);
	irq_set_status_flags(te_gpio_irq, IRQ_NOAUTOEN);
1365

1366
	ret = request_threaded_irq(te_gpio_irq, exynos_dsi_te_irq_handler, NULL,
1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386
					IRQF_TRIGGER_RISING, "TE", dsi);
	if (ret) {
		dev_err(dsi->dev, "request interrupt failed with %d\n", ret);
		gpio_free(dsi->te_gpio);
		goto out;
	}

out:
	return ret;
}

static void exynos_dsi_unregister_te_irq(struct exynos_dsi *dsi)
{
	if (gpio_is_valid(dsi->te_gpio)) {
		free_irq(gpio_to_irq(dsi->te_gpio), dsi);
		gpio_free(dsi->te_gpio);
		dsi->te_gpio = -ENOENT;
	}
}

A
Andrzej Hajda 已提交
1387 1388 1389 1390 1391 1392 1393 1394 1395 1396
static int exynos_dsi_host_attach(struct mipi_dsi_host *host,
				  struct mipi_dsi_device *device)
{
	struct exynos_dsi *dsi = host_to_dsi(host);

	dsi->lanes = device->lanes;
	dsi->format = device->format;
	dsi->mode_flags = device->mode_flags;
	dsi->panel_node = device->dev.of_node;

1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
	/*
	 * This is a temporary solution and should be made by more generic way.
	 *
	 * If attached panel device is for command mode one, dsi should register
	 * TE interrupt handler.
	 */
	if (!(dsi->mode_flags & MIPI_DSI_MODE_VIDEO)) {
		int ret = exynos_dsi_register_te_irq(dsi);

		if (ret)
			return ret;
	}

1410 1411 1412
	if (dsi->connector.dev)
		drm_helper_hpd_irq_event(dsi->connector.dev);

A
Andrzej Hajda 已提交
1413 1414 1415 1416 1417 1418 1419 1420
	return 0;
}

static int exynos_dsi_host_detach(struct mipi_dsi_host *host,
				  struct mipi_dsi_device *device)
{
	struct exynos_dsi *dsi = host_to_dsi(host);

1421 1422
	exynos_dsi_unregister_te_irq(dsi);

A
Andrzej Hajda 已提交
1423 1424 1425 1426 1427 1428 1429 1430 1431
	dsi->panel_node = NULL;

	if (dsi->connector.dev)
		drm_helper_hpd_irq_event(dsi->connector.dev);

	return 0;
}

static ssize_t exynos_dsi_host_transfer(struct mipi_dsi_host *host,
T
Thierry Reding 已提交
1432
				        const struct mipi_dsi_msg *msg)
A
Andrzej Hajda 已提交
1433 1434 1435 1436 1437
{
	struct exynos_dsi *dsi = host_to_dsi(host);
	struct exynos_dsi_transfer xfer;
	int ret;

1438 1439 1440
	if (!(dsi->state & DSIM_STATE_ENABLED))
		return -EINVAL;

A
Andrzej Hajda 已提交
1441 1442 1443 1444 1445 1446 1447
	if (!(dsi->state & DSIM_STATE_INITIALIZED)) {
		ret = exynos_dsi_init(dsi);
		if (ret)
			return ret;
		dsi->state |= DSIM_STATE_INITIALIZED;
	}

1448 1449 1450
	ret = mipi_dsi_create_packet(&xfer.packet, msg);
	if (ret < 0)
		return ret;
A
Andrzej Hajda 已提交
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465

	xfer.rx_len = msg->rx_len;
	xfer.rx_payload = msg->rx_buf;
	xfer.flags = msg->flags;

	ret = exynos_dsi_transfer(dsi, &xfer);
	return (ret < 0) ? ret : xfer.rx_done;
}

static const struct mipi_dsi_host_ops exynos_dsi_ops = {
	.attach = exynos_dsi_host_attach,
	.detach = exynos_dsi_host_detach,
	.transfer = exynos_dsi_host_transfer,
};

1466
static void exynos_dsi_enable(struct drm_encoder *encoder)
A
Andrzej Hajda 已提交
1467
{
1468
	struct exynos_dsi *dsi = encoder_to_dsi(encoder);
A
Andrzej Hajda 已提交
1469 1470 1471
	int ret;

	if (dsi->state & DSIM_STATE_ENABLED)
1472
		return;
A
Andrzej Hajda 已提交
1473

I
Inki Dae 已提交
1474
	pm_runtime_get_sync(dsi->dev);
A
Andrzej Hajda 已提交
1475

1476 1477
	dsi->state |= DSIM_STATE_ENABLED;

1478
	ret = drm_panel_prepare(dsi->panel);
A
Andrzej Hajda 已提交
1479
	if (ret < 0) {
1480
		dsi->state &= ~DSIM_STATE_ENABLED;
I
Inki Dae 已提交
1481
		pm_runtime_put_sync(dsi->dev);
1482
		return;
A
Andrzej Hajda 已提交
1483 1484 1485 1486 1487
	}

	exynos_dsi_set_display_mode(dsi);
	exynos_dsi_set_display_enable(dsi, true);

1488 1489
	ret = drm_panel_enable(dsi->panel);
	if (ret < 0) {
1490
		dsi->state &= ~DSIM_STATE_ENABLED;
1491 1492
		exynos_dsi_set_display_enable(dsi, false);
		drm_panel_unprepare(dsi->panel);
I
Inki Dae 已提交
1493
		pm_runtime_put_sync(dsi->dev);
1494
		return;
1495 1496
	}

1497
	dsi->state |= DSIM_STATE_VIDOUT_AVAILABLE;
A
Andrzej Hajda 已提交
1498 1499
}

1500
static void exynos_dsi_disable(struct drm_encoder *encoder)
A
Andrzej Hajda 已提交
1501
{
1502
	struct exynos_dsi *dsi = encoder_to_dsi(encoder);
1503

A
Andrzej Hajda 已提交
1504 1505 1506
	if (!(dsi->state & DSIM_STATE_ENABLED))
		return;

1507 1508
	dsi->state &= ~DSIM_STATE_VIDOUT_AVAILABLE;

A
Andrzej Hajda 已提交
1509
	drm_panel_disable(dsi->panel);
1510 1511
	exynos_dsi_set_display_enable(dsi, false);
	drm_panel_unprepare(dsi->panel);
A
Andrzej Hajda 已提交
1512 1513

	dsi->state &= ~DSIM_STATE_ENABLED;
1514

I
Inki Dae 已提交
1515
	pm_runtime_put_sync(dsi->dev);
A
Andrzej Hajda 已提交
1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527
}

static enum drm_connector_status
exynos_dsi_detect(struct drm_connector *connector, bool force)
{
	struct exynos_dsi *dsi = connector_to_dsi(connector);

	if (!dsi->panel) {
		dsi->panel = of_drm_find_panel(dsi->panel_node);
		if (dsi->panel)
			drm_panel_attach(dsi->panel, &dsi->connector);
	} else if (!dsi->panel_node) {
1528
		struct drm_encoder *encoder;
A
Andrzej Hajda 已提交
1529

1530 1531
		encoder = platform_get_drvdata(to_platform_device(dsi->dev));
		exynos_dsi_disable(encoder);
A
Andrzej Hajda 已提交
1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543
		drm_panel_detach(dsi->panel);
		dsi->panel = NULL;
	}

	if (dsi->panel)
		return connector_status_connected;

	return connector_status_disconnected;
}

static void exynos_dsi_connector_destroy(struct drm_connector *connector)
{
1544 1545 1546
	drm_connector_unregister(connector);
	drm_connector_cleanup(connector);
	connector->dev = NULL;
A
Andrzej Hajda 已提交
1547 1548
}

1549
static const struct drm_connector_funcs exynos_dsi_connector_funcs = {
1550
	.dpms = drm_atomic_helper_connector_dpms,
A
Andrzej Hajda 已提交
1551 1552 1553
	.detect = exynos_dsi_detect,
	.fill_modes = drm_helper_probe_single_connector_modes,
	.destroy = exynos_dsi_connector_destroy,
1554 1555 1556
	.reset = drm_atomic_helper_connector_reset,
	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
A
Andrzej Hajda 已提交
1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568
};

static int exynos_dsi_get_modes(struct drm_connector *connector)
{
	struct exynos_dsi *dsi = connector_to_dsi(connector);

	if (dsi->panel)
		return dsi->panel->funcs->get_modes(dsi->panel);

	return 0;
}

1569
static const struct drm_connector_helper_funcs exynos_dsi_connector_helper_funcs = {
A
Andrzej Hajda 已提交
1570 1571 1572
	.get_modes = exynos_dsi_get_modes,
};

1573
static int exynos_dsi_create_connector(struct drm_encoder *encoder)
A
Andrzej Hajda 已提交
1574
{
1575
	struct exynos_dsi *dsi = encoder_to_dsi(encoder);
A
Andrzej Hajda 已提交
1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589
	struct drm_connector *connector = &dsi->connector;
	int ret;

	connector->polled = DRM_CONNECTOR_POLL_HPD;

	ret = drm_connector_init(encoder->dev, connector,
				 &exynos_dsi_connector_funcs,
				 DRM_MODE_CONNECTOR_DSI);
	if (ret) {
		DRM_ERROR("Failed to initialize connector with drm\n");
		return ret;
	}

	drm_connector_helper_add(connector, &exynos_dsi_connector_helper_funcs);
1590
	drm_connector_register(connector);
A
Andrzej Hajda 已提交
1591 1592 1593 1594 1595
	drm_mode_connector_attach_encoder(connector, encoder);

	return 0;
}

1596 1597 1598
static void exynos_dsi_mode_set(struct drm_encoder *encoder,
				struct drm_display_mode *mode,
				struct drm_display_mode *adjusted_mode)
A
Andrzej Hajda 已提交
1599
{
1600
	struct exynos_dsi *dsi = encoder_to_dsi(encoder);
A
Andrzej Hajda 已提交
1601
	struct videomode *vm = &dsi->vm;
1602 1603 1604 1605 1606 1607 1608 1609 1610 1611
	struct drm_display_mode *m = adjusted_mode;

	vm->hactive = m->hdisplay;
	vm->vactive = m->vdisplay;
	vm->vfront_porch = m->vsync_start - m->vdisplay;
	vm->vback_porch = m->vtotal - m->vsync_end;
	vm->vsync_len = m->vsync_end - m->vsync_start;
	vm->hfront_porch = m->hsync_start - m->hdisplay;
	vm->hback_porch = m->htotal - m->hsync_end;
	vm->hsync_len = m->hsync_end - m->hsync_start;
A
Andrzej Hajda 已提交
1612 1613
}

1614
static const struct drm_encoder_helper_funcs exynos_dsi_encoder_helper_funcs = {
A
Andrzej Hajda 已提交
1615
	.mode_set = exynos_dsi_mode_set,
1616 1617
	.enable = exynos_dsi_enable,
	.disable = exynos_dsi_disable,
A
Andrzej Hajda 已提交
1618 1619
};

1620
static const struct drm_encoder_funcs exynos_dsi_encoder_funcs = {
1621 1622 1623
	.destroy = drm_encoder_cleanup,
};

1624
MODULE_DEVICE_TABLE(of, exynos_dsi_of_match);
A
Andrzej Hajda 已提交
1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646

static int exynos_dsi_of_read_u32(const struct device_node *np,
				  const char *propname, u32 *out_value)
{
	int ret = of_property_read_u32(np, propname, out_value);

	if (ret < 0)
		pr_err("%s: failed to get '%s' property\n", np->full_name,
		       propname);

	return ret;
}

enum {
	DSI_PORT_IN,
	DSI_PORT_OUT
};

static int exynos_dsi_parse_dt(struct exynos_dsi *dsi)
{
	struct device *dev = dsi->dev;
	struct device_node *node = dev->of_node;
1647
	struct device_node *ep;
A
Andrzej Hajda 已提交
1648 1649 1650 1651 1652 1653 1654
	int ret;

	ret = exynos_dsi_of_read_u32(node, "samsung,pll-clock-frequency",
				     &dsi->pll_clk_rate);
	if (ret < 0)
		return ret;

1655
	ep = of_graph_get_endpoint_by_regs(node, DSI_PORT_OUT, 0);
A
Andrzej Hajda 已提交
1656
	if (!ep) {
1657
		dev_err(dev, "no output port with endpoint specified\n");
A
Andrzej Hajda 已提交
1658 1659 1660 1661 1662 1663 1664 1665 1666 1667
		return -EINVAL;
	}

	ret = exynos_dsi_of_read_u32(ep, "samsung,burst-clock-frequency",
				     &dsi->burst_clk_rate);
	if (ret < 0)
		goto end;

	ret = exynos_dsi_of_read_u32(ep, "samsung,esc-clock-frequency",
				     &dsi->esc_clk_rate);
1668 1669 1670 1671 1672 1673 1674
	if (ret < 0)
		goto end;

	of_node_put(ep);

	ep = of_graph_get_next_endpoint(node, NULL);
	if (!ep) {
1675
		ret = -EINVAL;
1676 1677
		goto end;
	}
A
Andrzej Hajda 已提交
1678

1679 1680
	dsi->bridge_node = of_graph_get_remote_port_parent(ep);
	if (!dsi->bridge_node) {
1681
		ret = -EINVAL;
1682 1683
		goto end;
	}
A
Andrzej Hajda 已提交
1684 1685 1686 1687 1688 1689
end:
	of_node_put(ep);

	return ret;
}

1690 1691 1692
static int exynos_dsi_bind(struct device *dev, struct device *master,
				void *data)
{
1693 1694
	struct drm_encoder *encoder = dev_get_drvdata(dev);
	struct exynos_dsi *dsi = encoder_to_dsi(encoder);
1695
	struct drm_device *drm_dev = data;
1696
	struct drm_bridge *bridge;
1697 1698
	int ret;

1699 1700 1701
	ret = exynos_drm_crtc_get_pipe_from_type(drm_dev,
						  EXYNOS_DISPLAY_TYPE_LCD);
	if (ret < 0)
1702 1703
		return ret;

1704 1705 1706 1707 1708
	encoder->possible_crtcs = 1 << ret;

	DRM_DEBUG_KMS("possible_crtcs = 0x%x\n", encoder->possible_crtcs);

	drm_encoder_init(drm_dev, encoder, &exynos_dsi_encoder_funcs,
1709
			 DRM_MODE_ENCODER_TMDS, NULL);
1710 1711 1712 1713

	drm_encoder_helper_add(encoder, &exynos_dsi_encoder_helper_funcs);

	ret = exynos_dsi_create_connector(encoder);
1714
	if (ret) {
1715
		DRM_ERROR("failed to create connector ret = %d\n", ret);
1716
		drm_encoder_cleanup(encoder);
1717 1718 1719
		return ret;
	}

1720
	bridge = of_drm_find_bridge(dsi->bridge_node);
1721 1722
	if (bridge)
		drm_bridge_attach(encoder, bridge, NULL);
1723

1724 1725 1726 1727 1728 1729
	return mipi_dsi_host_register(&dsi->dsi_host);
}

static void exynos_dsi_unbind(struct device *dev, struct device *master,
				void *data)
{
1730
	struct drm_encoder *encoder = dev_get_drvdata(dev);
1731
	struct exynos_dsi *dsi = encoder_to_dsi(encoder);
1732

1733
	exynos_dsi_disable(encoder);
1734

1735
	mipi_dsi_host_unregister(&dsi->dsi_host);
1736 1737 1738 1739 1740 1741 1742
}

static const struct component_ops exynos_dsi_component_ops = {
	.bind	= exynos_dsi_bind,
	.unbind	= exynos_dsi_unbind,
};

A
Andrzej Hajda 已提交
1743 1744
static int exynos_dsi_probe(struct platform_device *pdev)
{
1745
	struct device *dev = &pdev->dev;
A
Andrzej Hajda 已提交
1746 1747
	struct resource *res;
	struct exynos_dsi *dsi;
1748
	int ret, i;
A
Andrzej Hajda 已提交
1749

1750 1751 1752 1753
	dsi = devm_kzalloc(dev, sizeof(*dsi), GFP_KERNEL);
	if (!dsi)
		return -ENOMEM;

1754 1755 1756
	/* To be checked as invalid one */
	dsi->te_gpio = -ENOENT;

A
Andrzej Hajda 已提交
1757 1758 1759 1760 1761
	init_completion(&dsi->completed);
	spin_lock_init(&dsi->transfer_lock);
	INIT_LIST_HEAD(&dsi->transfer_list);

	dsi->dsi_host.ops = &exynos_dsi_ops;
1762
	dsi->dsi_host.dev = dev;
A
Andrzej Hajda 已提交
1763

1764
	dsi->dev = dev;
1765
	dsi->driver_data = of_device_get_match_data(dev);
A
Andrzej Hajda 已提交
1766 1767 1768

	ret = exynos_dsi_parse_dt(dsi);
	if (ret)
1769
		return ret;
A
Andrzej Hajda 已提交
1770 1771 1772

	dsi->supplies[0].supply = "vddcore";
	dsi->supplies[1].supply = "vddio";
1773
	ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(dsi->supplies),
A
Andrzej Hajda 已提交
1774 1775
				      dsi->supplies);
	if (ret) {
1776
		dev_info(dev, "failed to get regulators: %d\n", ret);
A
Andrzej Hajda 已提交
1777 1778 1779
		return -EPROBE_DEFER;
	}

1780 1781 1782
	dsi->clks = devm_kzalloc(dev,
			sizeof(*dsi->clks) * dsi->driver_data->num_clks,
			GFP_KERNEL);
1783 1784 1785
	if (!dsi->clks)
		return -ENOMEM;

1786 1787 1788 1789 1790 1791 1792 1793
	for (i = 0; i < dsi->driver_data->num_clks; i++) {
		dsi->clks[i] = devm_clk_get(dev, clk_names[i]);
		if (IS_ERR(dsi->clks[i])) {
			if (strcmp(clk_names[i], "sclk_mipi") == 0) {
				strcpy(clk_names[i], OLD_SCLK_MIPI_CLK_NAME);
				i--;
				continue;
			}
A
Andrzej Hajda 已提交
1794

1795 1796 1797 1798
			dev_info(dev, "failed to get the clock: %s\n",
					clk_names[i]);
			return PTR_ERR(dsi->clks[i]);
		}
A
Andrzej Hajda 已提交
1799 1800 1801
	}

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1802
	dsi->reg_base = devm_ioremap_resource(dev, res);
1803
	if (IS_ERR(dsi->reg_base)) {
1804
		dev_err(dev, "failed to remap io region\n");
1805
		return PTR_ERR(dsi->reg_base);
A
Andrzej Hajda 已提交
1806 1807
	}

1808
	dsi->phy = devm_phy_get(dev, "dsim");
A
Andrzej Hajda 已提交
1809
	if (IS_ERR(dsi->phy)) {
1810
		dev_info(dev, "failed to get dsim phy\n");
1811
		return PTR_ERR(dsi->phy);
A
Andrzej Hajda 已提交
1812 1813 1814 1815
	}

	dsi->irq = platform_get_irq(pdev, 0);
	if (dsi->irq < 0) {
1816
		dev_err(dev, "failed to request dsi irq resource\n");
1817
		return dsi->irq;
A
Andrzej Hajda 已提交
1818 1819 1820
	}

	irq_set_status_flags(dsi->irq, IRQ_NOAUTOEN);
1821
	ret = devm_request_threaded_irq(dev, dsi->irq, NULL,
A
Andrzej Hajda 已提交
1822
					exynos_dsi_irq, IRQF_ONESHOT,
1823
					dev_name(dev), dsi);
A
Andrzej Hajda 已提交
1824
	if (ret) {
1825
		dev_err(dev, "failed to request dsi irq\n");
1826
		return ret;
A
Andrzej Hajda 已提交
1827 1828
	}

1829
	platform_set_drvdata(pdev, &dsi->encoder);
A
Andrzej Hajda 已提交
1830

I
Inki Dae 已提交
1831 1832
	pm_runtime_enable(dev);

1833
	return component_add(dev, &exynos_dsi_component_ops);
A
Andrzej Hajda 已提交
1834 1835 1836 1837
}

static int exynos_dsi_remove(struct platform_device *pdev)
{
I
Inki Dae 已提交
1838 1839
	pm_runtime_disable(&pdev->dev);

1840 1841
	component_del(&pdev->dev, &exynos_dsi_component_ops);

A
Andrzej Hajda 已提交
1842 1843 1844
	return 0;
}

1845
static int __maybe_unused exynos_dsi_suspend(struct device *dev)
I
Inki Dae 已提交
1846 1847 1848
{
	struct drm_encoder *encoder = dev_get_drvdata(dev);
	struct exynos_dsi *dsi = encoder_to_dsi(encoder);
1849
	const struct exynos_dsi_driver_data *driver_data = dsi->driver_data;
I
Inki Dae 已提交
1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875
	int ret, i;

	usleep_range(10000, 20000);

	if (dsi->state & DSIM_STATE_INITIALIZED) {
		dsi->state &= ~DSIM_STATE_INITIALIZED;

		exynos_dsi_disable_clock(dsi);

		exynos_dsi_disable_irq(dsi);
	}

	dsi->state &= ~DSIM_STATE_CMD_LPM;

	phy_power_off(dsi->phy);

	for (i = driver_data->num_clks - 1; i > -1; i--)
		clk_disable_unprepare(dsi->clks[i]);

	ret = regulator_bulk_disable(ARRAY_SIZE(dsi->supplies), dsi->supplies);
	if (ret < 0)
		dev_err(dsi->dev, "cannot disable regulators %d\n", ret);

	return 0;
}

1876
static int __maybe_unused exynos_dsi_resume(struct device *dev)
I
Inki Dae 已提交
1877 1878 1879
{
	struct drm_encoder *encoder = dev_get_drvdata(dev);
	struct exynos_dsi *dsi = encoder_to_dsi(encoder);
1880
	const struct exynos_dsi_driver_data *driver_data = dsi->driver_data;
I
Inki Dae 已提交
1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914
	int ret, i;

	ret = regulator_bulk_enable(ARRAY_SIZE(dsi->supplies), dsi->supplies);
	if (ret < 0) {
		dev_err(dsi->dev, "cannot enable regulators %d\n", ret);
		return ret;
	}

	for (i = 0; i < driver_data->num_clks; i++) {
		ret = clk_prepare_enable(dsi->clks[i]);
		if (ret < 0)
			goto err_clk;
	}

	ret = phy_power_on(dsi->phy);
	if (ret < 0) {
		dev_err(dsi->dev, "cannot enable phy %d\n", ret);
		goto err_clk;
	}

	return 0;

err_clk:
	while (--i > -1)
		clk_disable_unprepare(dsi->clks[i]);
	regulator_bulk_disable(ARRAY_SIZE(dsi->supplies), dsi->supplies);

	return ret;
}

static const struct dev_pm_ops exynos_dsi_pm_ops = {
	SET_RUNTIME_PM_OPS(exynos_dsi_suspend, exynos_dsi_resume, NULL)
};

A
Andrzej Hajda 已提交
1915 1916 1917 1918 1919 1920
struct platform_driver dsi_driver = {
	.probe = exynos_dsi_probe,
	.remove = exynos_dsi_remove,
	.driver = {
		   .name = "exynos-dsi",
		   .owner = THIS_MODULE,
I
Inki Dae 已提交
1921
		   .pm = &exynos_dsi_pm_ops,
A
Andrzej Hajda 已提交
1922 1923 1924 1925 1926 1927 1928 1929
		   .of_match_table = exynos_dsi_of_match,
	},
};

MODULE_AUTHOR("Tomasz Figa <t.figa@samsung.com>");
MODULE_AUTHOR("Andrzej Hajda <a.hajda@samsung.com>");
MODULE_DESCRIPTION("Samsung SoC MIPI DSI Master");
MODULE_LICENSE("GPL v2");