diff options
| author | Ping Li <pingli@codeaurora.org> | 2014-11-06 14:40:22 -0800 |
|---|---|---|
| committer | David Keitel <dkeitel@codeaurora.org> | 2016-03-23 20:35:43 -0700 |
| commit | ea14d7ee8802ba20a68ada8501b6f537435b88f1 (patch) | |
| tree | db79ac51318139440a9469b4e13e4d6fddb4c0a8 /include/uapi/linux | |
| parent | 2026a16aedc0ff374e78aed8ec9a929e681d37b8 (diff) | |
msm: mdss: Add PA LUT support in DSPP for Thulium
MDP block supports picture adjustment LUTv in the DSPPs
(destination surface processing pipes) which can be enabled
or disabled by driver clients. This change adds the support
in post-processing driver to allows configuration on PA LUTv
in DSPPs.
Change-Id: I7a0d436e7fdd921c55d12fddef33f5ba6c14ba00
Signed-off-by: Ping Li <pingli@codeaurora.org>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/msm_mdp.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/uapi/linux/msm_mdp.h b/include/uapi/linux/msm_mdp.h index 8faaa3bc3a98..e37219d15f55 100644 --- a/include/uapi/linux/msm_mdp.h +++ b/include/uapi/linux/msm_mdp.h @@ -562,6 +562,11 @@ struct mdp_histogram_cfg { uint16_t num_bins; }; +enum { + mdp_hist_lut_v1_7 = 1, + mdp_hist_lut_vmax, +}; + struct mdp_hist_lut_data_v1_7 { uint32_t len; uint32_t *data; @@ -570,6 +575,7 @@ struct mdp_hist_lut_data_v1_7 { struct mdp_hist_lut_data { uint32_t block; uint32_t version; + uint32_t hist_lut_first; uint32_t ops; uint32_t len; uint32_t *data; |
