aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-exynos/include/mach/mipi_ddi.h
blob: 17fae16bdb98ee013065c5ea61e7ab5b60bae557 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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
/* linux/arm/arch/mach-exynos/include/mach/mipi_ddi.h
 *
 * definitions for DDI based MIPI-DSI.
 *
 * Copyright (c) 2009 Samsung Electronics
 * InKi Dae <inki.dae@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.
*/

#ifndef _MIPI_DDI_H
#define _MIPI_DDI_H

enum mipi_ddi_interface {
	RGB_IF = 0x4000,
	I80_IF = 0x8000,
	YUV_601 = 0x10000,
	YUV_656 = 0x20000,
	MIPI_VIDEO = 0x1000,
	MIPI_COMMAND = 0x2000,
};

enum mipi_ddi_panel_select {
	DDI_MAIN_LCD = 0,
	DDI_SUB_LCD = 1,
};

enum mipi_ddi_model {
	S6DR117 = 0,
};

enum mipi_ddi_parameter {
	/* DSIM video interface parameter */
	DSI_VIRTUAL_CH_ID = 0,
	DSI_FORMAT = 1,
	DSI_VIDEO_MODE_SEL = 2,
};

struct mipi_ddi_spec {
	unsigned int parameter[3];
};

struct mipi_ddi_platform_data {
	unsigned int dsim_base;
	unsigned int te_irq;
	unsigned int resume_complete;

	int (*lcd_reset) (void);
	int (*lcd_power_on) (void *pdev, int enable);
	int (*backlight_on) (int enable);

	unsigned char (*cmd_write) (unsigned int dsim_base, unsigned int data0,
		unsigned int data1, unsigned int data2);
	int (*cmd_read) (unsigned int reg_base, u8 addr, u16 count, u8 *buf);

	unsigned int reset_delay;
	unsigned int power_on_delay;
	unsigned int power_off_delay;
};

#endif /* _MIPI_DDI_H */