blob: aeb2218d892f826f92cea4a9871f30cf72f5fca5 [file] [log] [blame]
Naseer Ahmed29a26812012-06-14 00:56:20 -07001/*
Sushil Chauhan07a2c762013-03-06 15:36:49 -08002 * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
Naseer Ahmed29a26812012-06-14 00:56:20 -07003
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above
10 * copyright notice, this list of conditions and the following
11 * disclaimer in the documentation and/or other materials provided
12 * with the distribution.
Duy Truong73d36df2013-02-09 20:33:23 -080013 * * Neither the name of The Linux Foundation nor the names of its
Naseer Ahmed29a26812012-06-14 00:56:20 -070014 * contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
21 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
24 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
26 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
Naseer Ahmeda87da602012-07-01 23:54:19 -070030#ifndef INCLUDE_LIBQCOMUTILS_MDPVER
31#define INCLUDE_LIBQCOMUTILS_MDPVER
Naseer Ahmed29a26812012-06-14 00:56:20 -070032
Naseer Ahmeda87da602012-07-01 23:54:19 -070033#include <stdint.h>
34#include <utils/Singleton.h>
35#include <cutils/properties.h>
Naseer Ahmed29a26812012-06-14 00:56:20 -070036
Naseer Ahmeda87da602012-07-01 23:54:19 -070037/* This class gets the MSM type from the soc info
38*/
39using namespace android;
40namespace qdutils {
Manoj Kumar AVMc65ec612013-11-21 09:20:29 -080041// These panel definitions are available at mdss_mdp.h which is internal header
42// file and is not available at <linux/mdss_mdp.h>.
43// ToDo: once it is available at linux/mdss_mdp.h, these below definitions can
44// be removed.
Naseer Ahmeda87da602012-07-01 23:54:19 -070045enum mdp_version {
46 MDP_V_UNKNOWN = 0,
47 MDP_V2_2 = 220,
48 MDP_V3_0 = 300,
49 MDP_V3_0_3 = 303,
Xiaoming Zhou530f8612013-05-01 20:53:06 -040050 MDP_V3_0_4 = 304,
Shivaraj Shetty9a3288f2014-09-08 14:48:11 +053051 MDP_V3_0_5 = 305,
Naseer Ahmeda87da602012-07-01 23:54:19 -070052 MDP_V3_1 = 310,
53 MDP_V4_0 = 400,
54 MDP_V4_1 = 410,
55 MDP_V4_2 = 420,
56 MDP_V4_3 = 430,
57 MDP_V4_4 = 440,
58 MDSS_V5 = 500,
Naseer Ahmed29a26812012-06-14 00:56:20 -070059};
60
Manoj Kumar AVMc65ec612013-11-21 09:20:29 -080061#define NO_PANEL '0'
Naseer Ahmed96c4c952012-07-25 18:27:14 -070062#define MDDI_PANEL '1'
63#define EBI2_PANEL '2'
64#define LCDC_PANEL '3'
65#define EXT_MDDI_PANEL '4'
66#define TV_PANEL '5'
67#define DTV_PANEL '7'
68#define MIPI_VIDEO_PANEL '8'
69#define MIPI_CMD_PANEL '9'
70#define WRITEBACK_PANEL 'a'
71#define LVDS_PANEL 'b'
Manoj Kumar AVMc65ec612013-11-21 09:20:29 -080072#define EDP_PANEL 'c'
Naseer Ahmed96c4c952012-07-25 18:27:14 -070073
Saurabh Shah67a38c32013-06-10 16:23:15 -070074class MDPVersion;
75
76struct Split {
77 int mLeft;
78 int mRight;
79 Split() : mLeft(0), mRight(0){}
80 int left() { return mLeft; }
81 int right() { return mRight; }
82 friend class MDPVersion;
83};
Naseer Ahmed96c4c952012-07-25 18:27:14 -070084
Jeykumar Sankaran3e308322014-03-06 10:17:38 -080085struct PanelInfo {
86 char mType; // Smart or Dumb
87 int mPartialUpdateEnable; // Partial update feature
88 int mLeftAlign; // ROI left alignment restriction
89 int mWidthAlign; // ROI width alignment restriction
90 int mTopAlign; // ROI top alignment restriction
91 int mHeightAlign; // ROI height alignment restriction
Jeykumar Sankaranbeb0bc02014-04-04 15:13:01 -070092 int mMinROIWidth; // Min width needed for ROI
93 int mMinROIHeight; // Min height needed for ROI
Jeykumar Sankarana40a9342014-04-25 09:37:10 -070094 bool mNeedsROIMerge; // Merge ROI's of both the DSI's
Arun Kumar K.Ra727a882014-08-20 17:14:26 -070095 bool mDynFpsSupported; // Panel Supports dyn fps
96 uint32_t mMinFps; // Min fps supported by panel
97 uint32_t mMaxFps; // Max fps supported by panel
Jeykumar Sankaran3e308322014-03-06 10:17:38 -080098 PanelInfo() : mType(NO_PANEL), mPartialUpdateEnable(0),
Jeykumar Sankaranbeb0bc02014-04-04 15:13:01 -070099 mLeftAlign(0), mWidthAlign(0), mTopAlign(0), mHeightAlign(0),
Arun Kumar K.Ra727a882014-08-20 17:14:26 -0700100 mMinROIWidth(0), mMinROIHeight(0), mNeedsROIMerge(false),
101 mDynFpsSupported(0), mMinFps(0), mMaxFps(0) {}
Jeykumar Sankaran3e308322014-03-06 10:17:38 -0800102 friend class MDPVersion;
103};
104
Naseer Ahmeda87da602012-07-01 23:54:19 -0700105class MDPVersion : public Singleton <MDPVersion>
106{
107public:
108 MDPVersion();
Xiaoming Zhou3da712a2013-07-04 14:37:45 -0400109 ~MDPVersion();
Naseer Ahmeda87da602012-07-01 23:54:19 -0700110 int getMDPVersion() {return mMDPVersion;}
Jeykumar Sankaran3e308322014-03-06 10:17:38 -0800111 char getPanelType() {return mPanelInfo.mType;}
Naseer Ahmeda87da602012-07-01 23:54:19 -0700112 bool hasOverlay() {return mHasOverlay;}
Dileep Kumar Reddibf333c72014-02-25 14:32:51 +0530113 uint8_t getTotalPipes() {
114 return (uint8_t)(mRGBPipes + mVGPipes + mDMAPipes);
115 }
Sushil Chauhan07a2c762013-03-06 15:36:49 -0800116 uint8_t getRGBPipes() { return mRGBPipes; }
117 uint8_t getVGPipes() { return mVGPipes; }
118 uint8_t getDMAPipes() { return mDMAPipes; }
Jeykumar Sankaranbe93e272014-06-19 18:15:57 -0700119 uint8_t getBlendStages() { return mBlendStages; }
Saurabh Shahbd2d0832013-04-04 14:33:08 -0700120 bool supportsDecimation();
121 uint32_t getMaxMDPDownscale();
Jeykumar Sankaran6cd8e7e2014-01-13 16:01:05 -0800122 uint32_t getMaxMDPUpscale();
Sushil Chauhanbab187a2013-01-30 17:44:15 -0800123 bool supportsBWC();
Manoj Kumar AVM8a220812013-10-10 11:46:06 -0700124 bool supportsMacroTile();
Saurabh Shah67a38c32013-06-10 16:23:15 -0700125 int getLeftSplit() { return mSplit.left(); }
126 int getRightSplit() { return mSplit.right(); }
Jeykumar Sankaran6c7eeac2013-11-18 11:19:45 -0800127 bool isPartialUpdateEnabled() { return mPanelInfo.mPartialUpdateEnable; }
Jeykumar Sankaran3e308322014-03-06 10:17:38 -0800128 int getLeftAlign() { return mPanelInfo.mLeftAlign; }
129 int getWidthAlign() { return mPanelInfo.mWidthAlign; }
130 int getTopAlign() { return mPanelInfo.mTopAlign; }
131 int getHeightAlign() { return mPanelInfo.mHeightAlign; }
Jeykumar Sankaranbeb0bc02014-04-04 15:13:01 -0700132 int getMinROIWidth() { return mPanelInfo.mMinROIWidth; }
133 int getMinROIHeight() { return mPanelInfo.mMinROIHeight; }
Jeykumar Sankarana40a9342014-04-25 09:37:10 -0700134 bool needsROIMerge() { return mPanelInfo.mNeedsROIMerge; }
Saurabh Shah8ee5e892013-11-25 10:51:40 -0800135 unsigned long getLowBw() { return mLowBw; }
136 unsigned long getHighBw() { return mHighBw; }
Saurabh Shah65b710c2014-07-03 15:30:16 -0700137 bool isRotDownscaleEnabled() { return mRotDownscale; }
Arun Kumar K.Ra727a882014-08-20 17:14:26 -0700138 bool isDynFpsSupported() { return mPanelInfo.mDynFpsSupported; }
139 uint32_t getMinFpsSupported() { return mPanelInfo.mMinFps; }
140 uint32_t getMaxFpsSupported() { return mPanelInfo.mMaxFps; }
Naseer Ahmed9eb5e092014-09-25 13:24:44 -0400141 uint32_t getMaxMixerWidth() const { return mMaxMixerWidth; }
Jeykumar Sankaran39305802014-12-12 17:55:57 -0800142 uint32_t getMaxPipeWidth() const { return mMaxPipeWidth; }
Saurabh Shah189f23d2014-09-26 17:21:00 -0700143 bool hasMinCropWidthLimitation() const;
Saurabh Shahab47c692014-02-12 18:45:57 -0800144 bool isSrcSplit() const;
Saurabh Shahea7a01d2014-05-22 17:45:36 -0700145 bool isSrcSplitAlways() const;
radhakrishna2e792f92014-03-13 11:39:33 +0530146 bool isRGBScalarSupported() const;
Saurabh Shahd3877632014-01-07 09:29:03 -0800147 bool is8x26();
148 bool is8x74v2();
149 bool is8084();
150 bool is8092();
Saurabh Shah5a0a9ce2014-07-02 10:45:42 -0700151 bool is8994();
radhakrishna2e792f92014-03-13 11:39:33 +0530152 bool is8x16();
Prabhanjan Kandula15a87372014-05-12 14:49:03 +0530153 bool is8x39();
Ramkumar Radhakrishnan87a1cd12015-02-25 17:47:29 -0800154 bool is8992();
Saurabh Shah173ec332013-12-03 15:34:58 -0800155
Naseer Ahmeda87da602012-07-01 23:54:19 -0700156private:
manoj kumar amara venkata mastanbc05ef02013-09-17 19:29:32 -0700157 bool updateSysFsInfo();
Jeykumar Sankaran3e308322014-03-06 10:17:38 -0800158 void updatePanelInfo();
Manoj Kumar AVMc65ec612013-11-21 09:20:29 -0800159 bool updateSplitInfo();
manoj kumar amara venkata mastanbc05ef02013-09-17 19:29:32 -0700160 int tokenizeParams(char *inputParams, const char *delim,
161 char* tokenStr[], int *idx);
Xiaoming Zhou3da712a2013-07-04 14:37:45 -0400162 int mFd;
Naseer Ahmeda87da602012-07-01 23:54:19 -0700163 int mMDPVersion;
164 bool mHasOverlay;
Sushil Chauhan07a2c762013-03-06 15:36:49 -0800165 uint32_t mMdpRev;
166 uint8_t mRGBPipes;
167 uint8_t mVGPipes;
168 uint8_t mDMAPipes;
Jeykumar Sankaranbe93e272014-06-19 18:15:57 -0700169 uint8_t mBlendStages;
Saurabh Shahbd2d0832013-04-04 14:33:08 -0700170 uint32_t mFeatures;
171 uint32_t mMDPDownscale;
manoj kumar amara venkata mastanbc05ef02013-09-17 19:29:32 -0700172 uint32_t mMDPUpscale;
Manoj Kumar AVM8a220812013-10-10 11:46:06 -0700173 bool mMacroTileEnabled;
Saurabh Shah67a38c32013-06-10 16:23:15 -0700174 Split mSplit;
Jeykumar Sankaran3e308322014-03-06 10:17:38 -0800175 PanelInfo mPanelInfo;
Saurabh Shah8ee5e892013-11-25 10:51:40 -0800176 unsigned long mLowBw; //kbps
177 unsigned long mHighBw; //kbps
Saurabh Shahab47c692014-02-12 18:45:57 -0800178 bool mSourceSplit;
Saurabh Shahea7a01d2014-05-22 17:45:36 -0700179 //Additional property on top of source split
180 bool mSourceSplitAlways;
radhakrishna2e792f92014-03-13 11:39:33 +0530181 bool mRGBHasNoScalar;
Saurabh Shah65b710c2014-07-03 15:30:16 -0700182 bool mRotDownscale;
Prabhanjan Kandula5bae9f52014-05-15 16:48:18 +0530183 uint32_t mMaxMixerWidth; //maximum x-res of a given mdss mixer.
Jeykumar Sankaran39305802014-12-12 17:55:57 -0800184 uint32_t mMaxPipeWidth; //maximum x-res of the mdp pipe.
Naseer Ahmeda87da602012-07-01 23:54:19 -0700185};
186}; //namespace qdutils
187#endif //INCLUDE_LIBQCOMUTILS_MDPVER