intel_dsi.h 3.6 KB
Newer Older
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
/*
 * Copyright © 2013 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

#ifndef _INTEL_DSI_H
#define _INTEL_DSI_H

#include <drm/drmP.h>
#include <drm/drm_crtc.h>
29
#include <drm/drm_mipi_dsi.h>
30 31
#include "intel_drv.h"

32 33 34 35 36
/* Dual Link support */
#define DSI_DUAL_LINK_NONE		0
#define DSI_DUAL_LINK_FRONT_BACK	1
#define DSI_DUAL_LINK_PIXEL_ALT		2

37 38
struct intel_dsi_host;

39 40 41
struct intel_dsi {
	struct intel_encoder base;

42
	struct drm_panel *panel;
43
	struct intel_dsi_host *dsi_hosts[I915_MAX_PORTS];
44

45 46 47
	/* GPIO Desc for CRC based Panel control */
	struct gpio_desc *gpio_panel;

48 49
	struct intel_connector *attached_connector;

50 51 52
	/* bit mask of ports being driven */
	u16 ports;

53 54 55 56 57 58
	/* if true, use HS mode, otherwise LP */
	bool hs;

	/* virtual channel */
	int channel;

59 60 61
	/* Video mode or command mode */
	u16 operation_mode;

62 63 64 65 66 67 68 69 70 71
	/* number of DSI lanes */
	unsigned int lane_count;

	/* video mode pixel format for MIPI_DSI_FUNC_PRG register */
	u32 pixel_format;

	/* video mode format for MIPI_VIDEO_MODE_FORMAT register */
	u32 video_mode_format;

	/* eot for MIPI_EOT_DISABLE register */
72 73
	u8 eotp_pkt;
	u8 clock_stop;
74

75
	u8 escape_clk_div;
76
	u8 dual_link;
77
	u8 pixel_overlap;
78 79 80 81 82 83 84 85 86 87 88 89 90
	u32 port_bits;
	u32 bw_timer;
	u32 dphy_reg;
	u32 video_frmt_cfg_bits;
	u16 lp_byte_clk;

	/* timeouts in byte clocks */
	u16 lp_rx_timeout;
	u16 turn_arnd_val;
	u16 rst_timer_val;
	u16 hs_to_lp_count;
	u16 clk_lp_to_hs_count;
	u16 clk_hs_to_lp_count;
91 92

	u16 init_count;
93 94
	u32 pclk;
	u16 burst_mode_ratio;
S
Shobhit Kumar 已提交
95 96 97 98 99 100 101

	/* all delays in ms */
	u16 backlight_off_delay;
	u16 backlight_on_delay;
	u16 panel_on_delay;
	u16 panel_off_delay;
	u16 panel_pwr_cycle_delay;
102 103
};

104 105 106 107 108 109 110 111 112 113 114 115 116 117
struct intel_dsi_host {
	struct mipi_dsi_host base;
	struct intel_dsi *intel_dsi;
	enum port port;

	/* our little hack */
	struct mipi_dsi_device *device;
};

static inline struct intel_dsi_host *to_intel_dsi_host(struct mipi_dsi_host *h)
{
	return container_of(h, struct intel_dsi_host, base);
}

118 119
#define for_each_dsi_port(__port, __ports_mask) \
	for ((__port) = PORT_A; (__port) < I915_MAX_PORTS; (__port)++)	\
120
		for_each_if ((__ports_mask) & (1 << (__port)))
121

122 123 124 125 126
static inline struct intel_dsi *enc_to_intel_dsi(struct drm_encoder *encoder)
{
	return container_of(encoder, struct intel_dsi, base.base);
}

127
extern void intel_enable_dsi_pll(struct intel_encoder *encoder);
128
extern void intel_disable_dsi_pll(struct intel_encoder *encoder);
129
extern u32 intel_dsi_get_pclk(struct intel_encoder *encoder, int pipe_bpp);
130 131
extern void intel_dsi_reset_clocks(struct intel_encoder *encoder,
							enum port port);
132

133
struct drm_panel *vbt_panel_init(struct intel_dsi *intel_dsi, u16 panel_id);
134

135
#endif /* _INTEL_DSI_H */