blob: 43e2c0e14261a7e1b30e9e791542d8c79e508cee [file] [log] [blame]
Jeevan Shriramf0a98482015-01-14 14:40:08 -08001/* Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -08002 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions
5 * are met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above copyright
9 * notice, this list of conditions and the following disclaimer in
10 * the documentation and/or other materials provided with the
11 * distribution.
12 * * Neither the name of The Linux Foundation nor the names of its
13 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
19 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
22 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
23 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#ifndef _PLATFORM_MSM_SHARED_MDP_5_H_
31#define _PLATFORM_MSM_SHARED_MDP_5_H_
32
33#include <msm_panel.h>
34
Siddhartha Agrawald3893392013-06-11 15:32:19 -070035#define PIPE_SSPP_SRC0_ADDR 0x14
36#define PIPE_SSPP_SRC_YSTRIDE 0x24
37#define PIPE_SSPP_SRC_IMG_SIZE 0x04
38#define PIPE_SSPP_SRC_SIZE 0x00
39#define PIPE_SSPP_SRC_OUT_SIZE 0x0C
40#define PIPE_SSPP_SRC_XY 0x08
41#define PIPE_SSPP_OUT_XY 0x10
42#define PIPE_SSPP_SRC_FORMAT 0x30
43#define PIPE_SSPP_SRC_UNPACK_PATTERN 0x34
44#define PIPE_SSPP_SRC_OP_MODE 0x38
Dhaval Patel142daad2013-10-18 18:58:09 -070045#define REQPRIORITY_FIFO_WATERMARK0 0x50
46#define REQPRIORITY_FIFO_WATERMARK1 0x54
47#define REQPRIORITY_FIFO_WATERMARK2 0x58
Dhaval Patel44014672015-03-26 10:58:32 -070048#define PIPE_SW_PIXEL_EXT_C0_REQ 0x108
49#define PIPE_SW_PIXEL_EXT_C1C2_REQ 0x118
50#define PIPE_SW_PIXEL_EXT_C3_REQ 0x128
51#define PIPE_COMP0_3_PHASE_STEP_X 0x210
52#define PIPE_COMP0_3_PHASE_STEP_Y 0x214
53#define PIPE_COMP1_2_PHASE_STEP_X 0x218
54#define PIPE_COMP1_2_PHASE_STEP_Y 0x21c
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -080055
Siddhartha Agrawald32ba682013-06-18 12:37:41 -070056#define LAYER_0_OUT_SIZE 0x04
57#define LAYER_0_OP_MODE 0x00
58#define LAYER_0_BORDER_COLOR_0 0x08
59#define LAYER_0_BLEND_OP 0x20
60#define LAYER_0_BLEND0_FG_ALPHA 0x24
61#define LAYER_1_BLEND_OP 0x50
62#define LAYER_1_BLEND0_FG_ALPHA 0x54
63#define LAYER_2_BLEND_OP 0x80
64#define LAYER_2_BLEND0_FG_ALPHA 0x84
65#define LAYER_3_BLEND_OP 0xB0
66#define LAYER_3_BLEND0_FG_ALPHA 0xB4
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -080067
Ujwal Patel00e19852013-12-18 20:40:38 -080068/* HW Revisions for different MDSS targets */
69#define MDSS_GET_MAJOR(rev) ((rev) >> 28)
70#define MDSS_GET_MINOR(rev) (((rev) >> 16) & 0xFFF)
71#define MDSS_GET_STEP(rev) ((rev) & 0xFFFF)
72#define MDSS_GET_MAJOR_MINOR(rev) ((rev) >> 16)
Siddhartha Agrawal1a87c5d2013-03-06 19:07:53 -080073
Ujwal Patel00e19852013-12-18 20:40:38 -080074#define MDSS_IS_MAJOR_MINOR_MATCHING(a, b) \
75 (MDSS_GET_MAJOR_MINOR((a)) == MDSS_GET_MAJOR_MINOR((b)))
76
77#define MDSS_MDP_REV(major, minor, step) \
78 ((((major) & 0x000F) << 28) | \
79 (((minor) & 0x0FFF) << 16) | \
80 ((step) & 0xFFFF))
81
82#define MDSS_MDP_HW_REV_100 MDSS_MDP_REV(1, 0, 0) /* 8974 v1.0 */
83#define MDSS_MDP_HW_REV_101 MDSS_MDP_REV(1, 1, 0) /* 8x26 v1.0 */
84#define MDSS_MDP_HW_REV_101_1 MDSS_MDP_REV(1, 1, 1) /* 8x26 v2.0, 8926 v1.0 */
85#define MDSS_MDP_HW_REV_102 MDSS_MDP_REV(1, 2, 0) /* 8974 v2.0 */
86#define MDSS_MDP_HW_REV_102_1 MDSS_MDP_REV(1, 2, 1) /* 8974 v3.0 (Pro) */
87#define MDSS_MDP_HW_REV_103 MDSS_MDP_REV(1, 3, 0) /* 8084 v1.0 */
Dhaval Patelddce3012014-08-12 14:08:31 -070088#define MDSS_MDP_HW_REV_105 MDSS_MDP_REV(1, 5, 0) /* 8994 v1.0 */
Padmanabhan Komanduru6f0e83d2014-03-22 01:12:28 +053089#define MDSS_MDP_HW_REV_106 MDSS_MDP_REV(1, 6, 0) /* 8916 v1.0 */
Dhaval Patel44014672015-03-26 10:58:32 -070090#define MDSS_MDP_HW_REV_107 MDSS_MDP_REV(1, 7, 0) /* 8996 v1.0 */
Padmanabhan Komanduru3908d172014-06-04 18:00:56 +053091#define MDSS_MDP_HW_REV_108 MDSS_MDP_REV(1, 8, 0) /* 8939 v1.0 */
Chandan Uddaraju18a50372014-10-01 18:45:30 -070092#define MDSS_MDP_HW_REV_109 MDSS_MDP_REV(1, 9, 0) /* 8994 v2.0 */
Jeevan Shriramf0a98482015-01-14 14:40:08 -080093#define MDSS_MDP_HW_REV_110 MDSS_MDP_REV(1, 10, 0) /* 8992 v1.0 */
Padmanabhan Komanduruf912cfb2015-06-08 16:36:58 +053094#define MDSS_MDP_HW_REV_111 MDSS_MDP_REV(1, 11, 0) /* 8956 v1.0 */
Padmanabhan Komandurufdb56832015-04-09 21:08:28 -070095#define MDSS_MDP_HW_REV_112 MDSS_MDP_REV(1, 12, 0) /* 8952 v1.0 */
Ujwal Patel00e19852013-12-18 20:40:38 -080096#define MDSS_MDP_HW_REV_200 MDSS_MDP_REV(2, 0, 0) /* 8092 v1.0 */
Siddhartha Agrawal1a87c5d2013-03-06 19:07:53 -080097
Ujwal Patel1b52ca42013-12-18 23:32:36 -080098#define MDSS_MAX_LINE_BUF_WIDTH 2048
99
Siddhartha Agrawal1a87c5d2013-03-06 19:07:53 -0800100#define MDP_HW_REV REG_MDP(0x0100)
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -0800101#define MDP_INTR_EN REG_MDP(0x0110)
102#define MDP_INTR_CLEAR REG_MDP(0x0118)
103#define MDP_HIST_INTR_EN REG_MDP(0x011C)
104
105#define MDP_DISP_INTF_SEL REG_MDP(0x0104)
106#define MDP_VIDEO_INTF_UNDERFLOW_CTL REG_MDP(0x03E0)
107#define MDP_UPPER_NEW_ROI_PRIOR_RO_START REG_MDP(0x02EC)
108#define MDP_LOWER_NEW_ROI_PRIOR_TO_START REG_MDP(0x04F8)
109
Asaf Pensoafb8eb72013-07-07 18:17:59 +0300110#define MDP_INTF_0_TIMING_ENGINE_EN REG_MDP(0x12500)
Siddhartha Agrawal1a87c5d2013-03-06 19:07:53 -0800111#define MDP_INTF_1_TIMING_ENGINE_EN REG_MDP(0x12700)
Aravind Venkateswaran982bdd82014-12-08 12:03:11 -0800112#define MDP_INTF_2_TIMING_ENGINE_EN REG_MDP(0x12900)
Ajay Singh Parmar63c18502014-07-23 23:37:19 -0700113#define MDP_INTF_3_TIMING_ENGINE_EN REG_MDP(0x12B00)
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -0800114
Siddhartha Agrawald32ba682013-06-18 12:37:41 -0700115#define MDP_CTL_0_BASE REG_MDP(0x600)
116#define MDP_CTL_1_BASE REG_MDP(0x700)
117
Siddhartha Agrawal869809e2014-09-25 10:18:59 -0700118#define MDP_PP_0_BASE REG_MDP(0x12D00)
119#define MDP_PP_1_BASE REG_MDP(0x12E00)
120
Siddhartha Agrawald32ba682013-06-18 12:37:41 -0700121#define CTL_LAYER_0 0x00
122#define CTL_LAYER_1 0x04
123#define CTL_TOP 0x14
124#define CTL_FLUSH 0x18
125#define CTL_START 0x1C
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -0800126
Siddhartha Agrawalf0b41a22013-05-23 20:32:20 -0700127#define MDP_REG_SPLIT_DISPLAY_EN REG_MDP(0x3F4)
128#define MDP_REG_SPLIT_DISPLAY_UPPER_PIPE_CTL REG_MDP(0x3F8)
Dhaval Patelfab2ec02014-01-03 17:33:39 -0800129#define MDP_REG_SPLIT_DISPLAY_LOWER_PIPE_CTL REG_MDP(0x4F0)
Siddhartha Agrawalf0b41a22013-05-23 20:32:20 -0700130
Asaf Pensoafb8eb72013-07-07 18:17:59 +0300131#define MDP_INTF_0_BASE REG_MDP(0x12500)
Siddhartha Agrawalf0b41a22013-05-23 20:32:20 -0700132#define MDP_INTF_1_BASE REG_MDP(0x12700)
133#define MDP_INTF_2_BASE REG_MDP(0x12900)
Ajay Singh Parmar63c18502014-07-23 23:37:19 -0700134#define MDP_INTF_3_BASE REG_MDP(0x12B00)
Siddhartha Agrawalf0b41a22013-05-23 20:32:20 -0700135
Padmanabhan Komanduru9f546ab2014-09-10 19:56:30 +0530136#define MDP_INTF_CONFIG 0x04
Siddhartha Agrawalf0b41a22013-05-23 20:32:20 -0700137#define MDP_HSYNC_CTL 0x08
138#define MDP_VSYNC_PERIOD_F0 0x0C
139#define MDP_VSYNC_PERIOD_F1 0x10
140#define MDP_VSYNC_PULSE_WIDTH_F0 0x14
141#define MDP_VSYNC_PULSE_WIDTH_F1 0x18
142#define MDP_DISPLAY_HCTL 0x3C
143#define MDP_DISPLAY_V_START_F0 0x1C
144#define MDP_DISPLAY_V_START_F1 0x20
145#define MDP_DISPLAY_V_END_F0 0x24
146#define MDP_DISPLAY_V_END_F1 0x28
147#define MDP_ACTIVE_HCTL 0x40
148#define MDP_ACTIVE_V_START_F0 0x2C
149#define MDP_ACTIVE_V_START_F1 0x30
150#define MDP_ACTIVE_V_END_F0 0x34
151#define MDP_ACTIVE_V_END_F1 0x38
152#define MDP_UNDERFFLOW_COLOR 0x48
153#define MDP_PANEL_FORMAT 0x90
Padmanabhan Komanduru9f546ab2014-09-10 19:56:30 +0530154#define MDP_PROG_FETCH_START 0x170
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -0800155
156#define MDP_CLK_CTRL0 REG_MDP(0x03AC)
157#define MDP_CLK_CTRL1 REG_MDP(0x03B4)
158#define MDP_CLK_CTRL2 REG_MDP(0x03BC)
159#define MDP_CLK_CTRL3 REG_MDP(0x04A8)
160#define MDP_CLK_CTRL4 REG_MDP(0x04B0)
Siddhartha Agrawal7dc3aa92013-04-21 16:04:26 -0700161#define MDP_CLK_CTRL5 REG_MDP(0x04B8)
Dhaval Patel7e39ae02013-10-25 10:30:48 -0700162#define MDP_CLK_CTRL6 REG_MDP(0x03C4)
163#define MDP_CLK_CTRL7 REG_MDP(0x04D0)
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -0800164
Ujwal Patel1b52ca42013-12-18 23:32:36 -0800165#define MMSS_MDP_SMP_ALLOC_W_BASE REG_MDP(0x0180)
166#define MMSS_MDP_SMP_ALLOC_R_BASE REG_MDP(0x0230)
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -0800167
Prashant Nukala64eeff92014-07-11 07:35:34 +0530168/* source pipe opmode bits for flip */
169#define MDSS_MDP_OP_MODE_FLIP_UD BIT(14)
170#define MDSS_MDP_OP_MODE_FLIP_LR BIT(13)
171
Siddhartha Agrawalb1b5a1f2013-04-17 19:53:41 -0700172#define MDP_QOS_REMAPPER_CLASS_0 REG_MDP(0x02E0)
Dhaval Patel7e39ae02013-10-25 10:30:48 -0700173#define MDP_QOS_REMAPPER_CLASS_1 REG_MDP(0x02E4)
Siddhartha Agrawalb1b5a1f2013-04-17 19:53:41 -0700174
Siddhartha Agrawal8d690822013-01-28 12:18:58 -0800175#define VBIF_VBIF_DDR_FORCE_CLK_ON REG_MDP(0x24004)
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -0800176#define VBIF_VBIF_DDR_OUT_MAX_BURST REG_MDP(0x240D8)
Siddhartha Agrawalf058d622013-01-28 16:21:03 -0800177#define VBIF_VBIF_DDR_ARB_CTRL REG_MDP(0x240F0)
178#define VBIF_VBIF_DDR_RND_RBN_QOS_ARB REG_MDP(0x24124)
179#define VBIF_VBIF_DDR_AXI_AMEMTYPE_CONF0 REG_MDP(0x24160)
180#define VBIF_VBIF_DDR_AXI_AMEMTYPE_CONF1 REG_MDP(0x24164)
181#define VBIF_VBIF_DDR_OUT_AOOO_AXI_EN REG_MDP(0x24178)
182#define VBIF_VBIF_DDR_OUT_AX_AOOO REG_MDP(0x2417C)
Dhaval Patel7e39ae02013-10-25 10:30:48 -0700183#define VBIF_VBIF_IN_RD_LIM_CONF0 REG_MDP(0x240B0)
184#define VBIF_VBIF_IN_RD_LIM_CONF1 REG_MDP(0x240B4)
185#define VBIF_VBIF_IN_RD_LIM_CONF2 REG_MDP(0x240B8)
186#define VBIF_VBIF_IN_RD_LIM_CONF3 REG_MDP(0x240BC)
187#define VBIF_VBIF_IN_WR_LIM_CONF0 REG_MDP(0x240C0)
188#define VBIF_VBIF_IN_WR_LIM_CONF1 REG_MDP(0x240C4)
189#define VBIF_VBIF_IN_WR_LIM_CONF2 REG_MDP(0x240C8)
190#define VBIF_VBIF_IN_WR_LIM_CONF3 REG_MDP(0x240CC)
191#define VBIF_VBIF_ABIT_SHORT REG_MDP(0x24070)
192#define VBIF_VBIF_ABIT_SHORT_CONF REG_MDP(0x24074)
193#define VBIF_VBIF_GATE_OFF_WRREQ_EN REG_MDP(0x240A8)
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -0800194
Siddhartha Agrawal869809e2014-09-25 10:18:59 -0700195#define MDSS_MDP_REG_PP_FBC_MODE 0x034
196#define MDSS_MDP_REG_PP_FBC_BUDGET_CTL 0x038
197#define MDSS_MDP_REG_PP_FBC_LOSSY_MODE 0x03C
198
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -0800199void mdp_set_revision(int rev);
200int mdp_get_revision();
201int mdp_dsi_video_config(struct msm_panel_info *pinfo, struct fbcon_config *fb);
Veera Sundaram Sankarandb0b2bf2014-12-16 18:09:27 -0800202int mdp_dsi_cmd_config(struct msm_panel_info *pinfo, struct fbcon_config *fb);
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -0800203int mipi_dsi_cmd_config(struct fbcon_config mipi_fb_cfg,
204 unsigned short num_of_lanes);
Jayant Shekhar32397f92014-03-27 13:30:41 +0530205int mdp_dsi_video_on(struct msm_panel_info *pinfo);
206int mdp_dma_on(struct msm_panel_info *pinfo);
Asaf Pensoafb8eb72013-07-07 18:17:59 +0300207int mdp_edp_config(struct msm_panel_info *pinfo, struct fbcon_config *fb);
Jayant Shekhar32397f92014-03-27 13:30:41 +0530208int mdp_edp_on(struct msm_panel_info *pinfo);
Asaf Pensoafb8eb72013-07-07 18:17:59 +0300209int mdp_edp_off(void);
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -0800210void mdp_disable(void);
Veera Sundaram Sankarandb0b2bf2014-12-16 18:09:27 -0800211void mdp_gdsc_ctrl(uint8_t enable);
212int mdp_get_revision();
213uint8_t target_is_edp();
214void target_edp_panel_init(struct msm_panel_info *pinfo);
215int target_edp_panel_clock(uint8_t enable, struct msm_panel_info *pinfo);
216int target_edp_panel_enable(void);
217int target_edp_panel_disable(void);
218int target_edp_bl_ctrl(int enable);
219int mdss_hdmi_init(void);
220int mdss_hdmi_on(struct msm_panel_info *pinfo);
221int mdss_hdmi_config(struct msm_panel_info *pinfo, struct fbcon_config *fb);
Ajay Singh Parmar392f07a2014-11-19 15:06:19 -0800222void mdss_hdmi_get_vic(char *buf);
Veera Sundaram Sankarandb0b2bf2014-12-16 18:09:27 -0800223int msm_display_off();
224void display_shutdown(void);
Siddhartha Agrawal7e2e2152013-01-23 17:06:58 -0800225#endif