diff options
| author | Gopikrishnaiah Anandan <agopik@codeaurora.org> | 2015-09-18 12:32:38 -0700 |
|---|---|---|
| committer | David Keitel <dkeitel@codeaurora.org> | 2016-03-23 21:20:58 -0700 |
| commit | 41a12ff0ed0f69fd6180b9c8852446d58b5a0c94 (patch) | |
| tree | a45052bca896c4ccec0487590f2de2daea07b5aa /include/uapi/linux | |
| parent | 7833d2e68db90a275475c7f417d07313d3dedd0e (diff) | |
mdss: msm: Update dither driver interface
Post processing driver clients can program the dither table in mdp.
If length of the dither table is set to 0, driver will program the
default table. If driver client would like to program the table it needs
to update the length field as per mdp hardware version.
CRs-fixed: 983164
Change-Id: I5e6aaa3d9376884e5ea1fe153cdf2798e3a52d1e
Signed-off-by: Gopikrishnaiah Anandan <agopik@codeaurora.org>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/msm_mdp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/uapi/linux/msm_mdp.h b/include/uapi/linux/msm_mdp.h index 4ef51ddd86e6..b12e48424412 100644 --- a/include/uapi/linux/msm_mdp.h +++ b/include/uapi/linux/msm_mdp.h @@ -972,10 +972,15 @@ struct mdp_pa_cfg_data { struct mdp_pa_cfg pa_data; }; +#define MDP_DITHER_DATA_V1_7_SZ 16 + struct mdp_dither_data_v1_7 { uint32_t g_y_depth; uint32_t r_cr_depth; uint32_t b_cb_depth; + uint32_t len; + uint32_t data[MDP_DITHER_DATA_V1_7_SZ]; + uint32_t temporal_en; }; struct mdp_dither_cfg_data { |
