1013 lines
31 KiB
C
1013 lines
31 KiB
C
/* Copyright (c) 2009-2013, The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#ifndef MDP4_H
|
|
#define MDP4_H
|
|
|
|
extern struct mdp_dma_data dma2_data;
|
|
extern struct mdp_dma_data dma_s_data;
|
|
extern struct mdp_dma_data dma_e_data;
|
|
extern struct mdp_dma_data dma_wb_data;
|
|
extern unsigned int mdp_hist_frame_cnt;
|
|
extern struct completion mdp_hist_comp;
|
|
extern boolean mdp_is_in_isr;
|
|
extern uint32 mdp_intr_mask;
|
|
extern spinlock_t mdp_spin_lock;
|
|
extern struct mdp4_statistic mdp4_stat;
|
|
extern uint32 mdp4_extn_disp;
|
|
extern char *mmss_cc_base; /* mutimedia sub system clock control */
|
|
extern spinlock_t dsi_clk_lock;
|
|
extern u32 mdp_max_clk;
|
|
extern u32 dbg_force_ov0_blt;
|
|
extern u32 dbg_force_ov1_blt;
|
|
|
|
extern u64 mdp_max_bw;
|
|
#define MDP4_BW_AB_FACTOR (115) /* 1.15 */
|
|
#define MDP4_BW_IB_FACTOR (125) /* 1.25 */
|
|
#define MDP_BUS_SCALE_AB_STEP (0x4000000)
|
|
#define MDP_BUS_SCALE_INIT (0x10000000)
|
|
|
|
#define MDP4_OVERLAYPROC0_BASE 0x10000
|
|
#define MDP4_OVERLAYPROC1_BASE 0x18000
|
|
#define MDP4_OVERLAYPROC2_BASE 0x88000
|
|
|
|
#define MDP4_VIDEO_BASE 0x20000
|
|
#define MDP4_VIDEO_OFF 0x10000
|
|
#define MDP4_VIDEO_CSC_OFF 0x4000
|
|
|
|
#define MDP4_RGB_BASE 0x40000
|
|
#define MDP4_RGB_OFF 0x10000
|
|
|
|
/* chip select controller */
|
|
#define CS_CONTROLLER_0 0x0707ffff
|
|
#define CS_CONTROLLER_1 0x03073f3f
|
|
|
|
typedef int (*cmd_fxn_t)(struct platform_device *pdev);
|
|
|
|
enum { /* display */
|
|
PRIMARY_INTF_SEL,
|
|
SECONDARY_INTF_SEL,
|
|
EXTERNAL_INTF_SEL
|
|
};
|
|
|
|
enum {
|
|
LCDC_RGB_INTF, /* 0 */
|
|
DTV_INTF = LCDC_RGB_INTF, /* 0 */
|
|
MDDI_LCDC_INTF, /* 1 */
|
|
MDDI_INTF, /* 2 */
|
|
EBI2_INTF, /* 3 */
|
|
TV_INTF = EBI2_INTF, /* 3 */
|
|
DSI_VIDEO_INTF,
|
|
DSI_CMD_INTF
|
|
};
|
|
|
|
enum {
|
|
MDDI_PRIMARY_SET,
|
|
MDDI_SECONDARY_SET,
|
|
MDDI_EXTERNAL_SET
|
|
};
|
|
|
|
enum {
|
|
EBI2_LCD0,
|
|
EBI2_LCD1
|
|
};
|
|
|
|
#define MDP4_3D_NONE 0
|
|
#define MDP4_3D_SIDE_BY_SIDE 1
|
|
#define MDP4_3D_TOP_DOWN 2
|
|
|
|
#define MDP4_PANEL_MDDI BIT(0)
|
|
#define MDP4_PANEL_LCDC BIT(1)
|
|
#define MDP4_PANEL_DTV BIT(2)
|
|
#define MDP4_PANEL_ATV BIT(3)
|
|
#define MDP4_PANEL_DSI_VIDEO BIT(4)
|
|
#define MDP4_PANEL_DSI_CMD BIT(5)
|
|
#define MDP4_PANEL_WRITEBACK BIT(6)
|
|
|
|
enum {
|
|
OVERLAY_REFRESH_ON_DEMAND,
|
|
OVERLAY_REFRESH_VSYNC,
|
|
OVERLAY_REFRESH_VSYNC_HALF,
|
|
OVERLAY_REFRESH_VSYNC_QUARTER
|
|
};
|
|
|
|
enum {
|
|
OVERLAY_FRAMEBUF,
|
|
OVERLAY_DIRECTOUT
|
|
};
|
|
|
|
/* system interrupts */
|
|
/*note histogram interrupts defined in mdp.h*/
|
|
#define INTR_OVERLAY0_DONE BIT(0)
|
|
#define INTR_OVERLAY1_DONE BIT(1)
|
|
#define INTR_DMA_S_DONE BIT(2)
|
|
#define INTR_DMA_E_DONE BIT(3)
|
|
#define INTR_DMA_P_DONE BIT(4)
|
|
#define INTR_PRIMARY_VSYNC BIT(7)
|
|
#define INTR_PRIMARY_INTF_UDERRUN BIT(8)
|
|
#define INTR_EXTERNAL_VSYNC BIT(9)
|
|
#define INTR_EXTERNAL_INTF_UDERRUN BIT(10)
|
|
#define INTR_PRIMARY_RDPTR BIT(11) /* read pointer */
|
|
#define INTR_OVERLAY2_DONE BIT(30)
|
|
|
|
#ifdef CONFIG_FB_MSM_OVERLAY
|
|
#define MDP4_ANY_INTR_MASK (0)
|
|
#else
|
|
#define MDP4_ANY_INTR_MASK (INTR_DMA_P_DONE)
|
|
#endif
|
|
|
|
enum {
|
|
OVERLAY_PIPE_VG1, /* video/graphic */
|
|
OVERLAY_PIPE_VG2,
|
|
OVERLAY_PIPE_RGB1,
|
|
OVERLAY_PIPE_RGB2,
|
|
OVERLAY_PIPE_RGB3,
|
|
OVERLAY_PIPE_VG3,
|
|
OVERLAY_PIPE_VG4,
|
|
OVERLAY_PIPE_MAX
|
|
};
|
|
|
|
enum {
|
|
OVERLAY_TYPE_RGB,
|
|
OVERLAY_TYPE_VIDEO,
|
|
OVERLAY_TYPE_BF
|
|
};
|
|
|
|
enum {
|
|
MDP4_MIXER0,
|
|
MDP4_MIXER1,
|
|
MDP4_MIXER2,
|
|
MDP4_MIXER_MAX
|
|
};
|
|
|
|
enum {
|
|
OVERLAY_PLANE_INTERLEAVED,
|
|
OVERLAY_PLANE_PLANAR,
|
|
OVERLAY_PLANE_PSEUDO_PLANAR
|
|
};
|
|
|
|
enum {
|
|
MDP4_MIXER_STAGE_UNUNSED, /* pipe not used */
|
|
MDP4_MIXER_STAGE_BASE,
|
|
MDP4_MIXER_STAGE0, /* zorder 0 */
|
|
MDP4_MIXER_STAGE1, /* zorder 1 */
|
|
MDP4_MIXER_STAGE2, /* zorder 2 */
|
|
MDP4_MIXER_STAGE3, /* zorder 3 */
|
|
MDP4_MIXER_STAGE_MAX
|
|
};
|
|
|
|
enum {
|
|
MDP4_FRAME_FORMAT_LINEAR,
|
|
MDP4_FRAME_FORMAT_ARGB_TILE,
|
|
MDP4_FRAME_FORMAT_VIDEO_SUPERTILE
|
|
};
|
|
|
|
enum {
|
|
MDP4_CHROMA_RGB,
|
|
MDP4_CHROMA_H2V1,
|
|
MDP4_CHROMA_H1V2,
|
|
MDP4_CHROMA_420
|
|
};
|
|
|
|
#define CSC_MAX_BLOCKS 6
|
|
|
|
#define MDP4_BLEND_BG_TRANSP_EN BIT(9)
|
|
#define MDP4_BLEND_FG_TRANSP_EN BIT(8)
|
|
#define MDP4_BLEND_BG_MOD_ALPHA BIT(7)
|
|
#define MDP4_BLEND_BG_INV_ALPHA BIT(6)
|
|
#define MDP4_BLEND_BG_ALPHA_FG_CONST (0 << 4)
|
|
#define MDP4_BLEND_BG_ALPHA_BG_CONST (1 << 4)
|
|
#define MDP4_BLEND_BG_ALPHA_FG_PIXEL (2 << 4)
|
|
#define MDP4_BLEND_BG_ALPHA_BG_PIXEL (3 << 4)
|
|
#define MDP4_BLEND_FG_MOD_ALPHA BIT(3)
|
|
#define MDP4_BLEND_FG_INV_ALPHA BIT(2)
|
|
#define MDP4_BLEND_FG_ALPHA_FG_CONST (0 << 0)
|
|
#define MDP4_BLEND_FG_ALPHA_BG_CONST (1 << 0)
|
|
#define MDP4_BLEND_FG_ALPHA_FG_PIXEL (2 << 0)
|
|
#define MDP4_BLEND_FG_ALPHA_BG_PIXEL (3 << 0)
|
|
|
|
#define MDP4_FORMAT_SOLID_FILL BIT(22)
|
|
#define MDP4_FORMAT_UNPACK_ALIGN_MSB BIT(18)
|
|
#define MDP4_FORMAT_UNPACK_TIGHT BIT(17)
|
|
#define MDP4_FORMAT_90_ROTATED BIT(12)
|
|
#define MDP4_FORMAT_ALPHA_ENABLE BIT(8)
|
|
|
|
#define MDP4_OP_DEINT_ODD_REF BIT(19)
|
|
#define MDP4_OP_DEINT_EN BIT(18)
|
|
#define MDP4_OP_IGC_LUT_EN BIT(16)
|
|
#define MDP4_OP_DITHER_EN BIT(15)
|
|
#define MDP4_OP_FLIP_UD BIT(14)
|
|
#define MDP4_OP_FLIP_LR BIT(13)
|
|
#define MDP4_OP_CSC_EN BIT(11)
|
|
#define MDP4_OP_DST_DATA_YCBCR BIT(10)
|
|
#define MDP4_OP_SRC_DATA_YCBCR BIT(9)
|
|
#define MDP4_OP_SCALEY_FIR (0 << 4)
|
|
#define MDP4_OP_SCALEY_MN_PHASE (1 << 4)
|
|
#define MDP4_OP_SCALEY_PIXEL_RPT (2 << 4)
|
|
#define MDP4_OP_SCALEX_FIR (0 << 2)
|
|
#define MDP4_OP_SCALEX_MN_PHASE (1 << 2)
|
|
#define MDP4_OP_SCALEX_PIXEL_RPT (2 << 2)
|
|
#define MDP4_OP_SCALE_RGB_ENHANCED (1 << 4)
|
|
#define MDP4_OP_SCALE_RGB_PIXEL_RPT (0 << 3)
|
|
#define MDP4_OP_SCALE_RGB_BILINEAR (1 << 3)
|
|
#define MDP4_OP_SCALE_ALPHA_PIXEL_RPT (0 << 2)
|
|
#define MDP4_OP_SCALE_ALPHA_BILINEAR (1 << 2)
|
|
#define MDP4_OP_SCALEY_EN BIT(1)
|
|
#define MDP4_OP_SCALEX_EN BIT(0)
|
|
|
|
#define MDP4_REV40_UP_SCALING_MAX (8)
|
|
#define MDP4_REV41_OR_LATER_UP_SCALING_MAX (20)
|
|
|
|
#define MDP4_PIPE_PER_MIXER 2
|
|
|
|
#define MDP4_MAX_PLANE 4
|
|
#define VSYNC_PERIOD 16
|
|
|
|
#ifdef BLT_RGB565
|
|
#define BLT_BPP 2
|
|
#else
|
|
#define BLT_BPP 3
|
|
#endif
|
|
|
|
struct mdp4_hsic_regs {
|
|
int32_t params[NUM_HSIC_PARAM];
|
|
int32_t conv_matrix[3][3];
|
|
int32_t pre_limit[6];
|
|
int32_t post_limit[6];
|
|
int32_t pre_bias[3];
|
|
int32_t post_bias[3];
|
|
int32_t dirty;
|
|
};
|
|
|
|
struct mdp4_iommu_pipe_info {
|
|
struct ion_handle *ihdl[MDP4_MAX_PLANE];
|
|
struct ion_handle *prev_ihdl[MDP4_MAX_PLANE];
|
|
u8 mark_unmap;
|
|
};
|
|
|
|
#define IOMMU_FREE_LIST_MAX 32
|
|
|
|
struct iommu_free_list {
|
|
int total;
|
|
int fndx;
|
|
struct ion_handle *ihdl[IOMMU_FREE_LIST_MAX];
|
|
};
|
|
|
|
struct blend_cfg {
|
|
u32 op;
|
|
u32 bg_alpha;
|
|
u32 fg_alpha;
|
|
u32 co3_sel;
|
|
u32 transp_low0;
|
|
u32 transp_low1;
|
|
u32 transp_high0;
|
|
u32 transp_high1;
|
|
int solidfill;
|
|
struct mdp4_overlay_pipe *solidfill_pipe;
|
|
};
|
|
|
|
|
|
struct mdp4_overlay_pipe {
|
|
uint32 pipe_used;
|
|
uint32 pipe_type; /* rgb, video/graphic */
|
|
uint32 pipe_num;
|
|
uint32 pipe_ndx;
|
|
uint32 pipe_share;
|
|
uint32 mixer_num; /* which mixer used */
|
|
uint32 mixer_stage; /* which stage of mixer used */
|
|
uint32 src_format;
|
|
uint32 src_width; /* source img width */
|
|
uint32 src_height; /* source img height */
|
|
uint32 is_3d;
|
|
uint32 src_width_3d; /* source img width */
|
|
uint32 src_height_3d; /* source img height */
|
|
uint32 src_w; /* roi */
|
|
uint32 src_h; /* roi */
|
|
uint32 src_x; /* roi */
|
|
uint32 src_y; /* roi */
|
|
uint32 dst_w; /* roi */
|
|
uint32 dst_h; /* roi */
|
|
uint32 dst_x; /* roi */
|
|
uint32 dst_y; /* roi */
|
|
uint32 flags;
|
|
uint32 op_mode;
|
|
uint32 transp;
|
|
uint32 blend_op;
|
|
uint32 phasex_step;
|
|
uint32 phasey_step;
|
|
uint32 alpha;
|
|
uint32 is_fg; /* control alpha & color key */
|
|
uint32 srcp0_addr; /* interleave, luma */
|
|
uint32 srcp0_ystride;
|
|
struct file *srcp0_file;
|
|
int put0_need;
|
|
uint32 srcp1_addr; /* pseudoplanar, chroma plane */
|
|
uint32 srcp1_ystride;
|
|
struct file *srcp1_file;
|
|
int put1_need;
|
|
uint32 srcp2_addr; /* planar color 2*/
|
|
uint32 srcp2_ystride;
|
|
struct file *srcp2_file;
|
|
int put2_need;
|
|
uint32 srcp3_addr; /* alpha/color 3 */
|
|
uint32 srcp3_ystride;
|
|
uint32 fetch_plane;
|
|
uint32 frame_format; /* video */
|
|
uint32 chroma_site; /* video */
|
|
uint32 chroma_sample; /* video */
|
|
uint32 solid_fill;
|
|
uint32 vc1_reduce; /* video */
|
|
uint32 unpack_align_msb;/* 0 to LSB, 1 to MSB */
|
|
uint32 unpack_tight;/* 0 for loose, 1 for tight */
|
|
uint32 unpack_count;/* 0 = 1 component, 1 = 2 component ... */
|
|
uint32 rotated_90; /* has been rotated 90 degree */
|
|
uint32 bpp; /* byte per pixel */
|
|
uint32 alpha_enable;/* source has alpha */
|
|
/*
|
|
* number of bits for source component,
|
|
* 0 = 1 bit, 1 = 2 bits, 2 = 6 bits, 3 = 8 bits
|
|
*/
|
|
uint32 a_bit; /* component 3, alpha */
|
|
uint32 r_bit; /* component 2, R_Cr */
|
|
uint32 b_bit; /* component 1, B_Cb */
|
|
uint32 g_bit; /* component 0, G_lumz */
|
|
/*
|
|
* unpack pattern
|
|
* A = C3, R = C2, B = C1, G = C0
|
|
*/
|
|
uint32 element3; /* 0 = C0, 1 = C1, 2 = C2, 3 = C3 */
|
|
uint32 element2; /* 0 = C0, 1 = C1, 2 = C2, 3 = C3 */
|
|
uint32 element1; /* 0 = C0, 1 = C1, 2 = C2, 3 = C3 */
|
|
uint32 element0; /* 0 = C0, 1 = C1, 2 = C2, 3 = C3 */
|
|
ulong ov_blt_addr; /* blt mode addr */
|
|
ulong dma_blt_addr; /* blt mode addr */
|
|
ulong blt_base;
|
|
ulong blt_offset;
|
|
uint32 blt_cnt;
|
|
uint32 blt_changed;
|
|
uint32 ov_cnt;
|
|
uint32 dmap_cnt;
|
|
uint32 dmae_cnt;
|
|
uint32 blt_end; /* used by mddi only */
|
|
uint32 blt_ov_koff;
|
|
uint32 blt_ov_done;
|
|
uint32 blt_dmap_koff;
|
|
uint32 blt_dmap_done;
|
|
uint32 req_clk;
|
|
uint64 bw_ab_quota;
|
|
uint64 bw_ib_quota;
|
|
uint32 luma_align_size;
|
|
struct mdp_overlay_pp_params pp_cfg;
|
|
struct mdp_overlay req_data;
|
|
struct completion comp;
|
|
struct completion dmas_comp;
|
|
struct mdp4_iommu_pipe_info iommu;
|
|
};
|
|
|
|
struct mdp4_statistic {
|
|
ulong intr_tot;
|
|
ulong intr_dma_p;
|
|
ulong intr_dma_s;
|
|
ulong intr_dma_e;
|
|
ulong intr_overlay0;
|
|
ulong intr_overlay1;
|
|
ulong intr_overlay2;
|
|
ulong intr_vsync_p; /* Primary interface */
|
|
ulong intr_underrun_p; /* Primary interface */
|
|
ulong intr_vsync_e; /* external interface */
|
|
ulong intr_underrun_e; /* external interface */
|
|
ulong intr_histogram;
|
|
ulong intr_rdptr;
|
|
ulong dsi_mdp_start;
|
|
ulong dsi_clk_on;
|
|
ulong dsi_clk_off;
|
|
ulong intr_dsi;
|
|
ulong intr_dsi_mdp;
|
|
ulong intr_dsi_cmd;
|
|
ulong intr_dsi_err;
|
|
ulong kickoff_ov0;
|
|
ulong kickoff_ov1;
|
|
ulong kickoff_ov2;
|
|
ulong kickoff_dmap;
|
|
ulong kickoff_dmae;
|
|
ulong kickoff_dmas;
|
|
ulong blt_dsi_cmd; /* blt */
|
|
ulong blt_dsi_video; /* blt */
|
|
ulong blt_lcdc; /* blt */
|
|
ulong blt_dtv; /* blt */
|
|
ulong blt_mddi; /* blt */
|
|
ulong overlay_set[MDP4_MIXER_MAX];
|
|
ulong overlay_unset[MDP4_MIXER_MAX];
|
|
ulong overlay_play[MDP4_MIXER_MAX];
|
|
ulong overlay_commit[MDP4_MIXER_MAX];
|
|
ulong pipe[OVERLAY_PIPE_MAX];
|
|
ulong wait4vsync0;
|
|
ulong wait4vsync1;
|
|
ulong iommu_map;
|
|
ulong iommu_unmap;
|
|
ulong iommu_drop;
|
|
ulong dsi_clkoff;
|
|
ulong err_mixer;
|
|
ulong err_zorder;
|
|
ulong err_size;
|
|
ulong err_scale;
|
|
ulong err_format;
|
|
ulong err_stage;
|
|
ulong err_play;
|
|
ulong err_underflow;
|
|
};
|
|
|
|
struct vsync_update {
|
|
int update_cnt; /* pipes to be updated */
|
|
struct completion vsync_comp;
|
|
struct mdp4_overlay_pipe plist[OVERLAY_PIPE_MAX];
|
|
};
|
|
|
|
struct mdp4_overlay_pipe *mdp4_overlay_ndx2pipe(int ndx);
|
|
void mdp4_sw_reset(unsigned long bits);
|
|
void mdp4_display_intf_sel(int output, unsigned long intf);
|
|
void mdp4_overlay_cfg(int layer, int blt_mode, int refresh, int direct_out);
|
|
void mdp4_ebi2_lcd_setup(int lcd, unsigned long base, int ystride);
|
|
void mdp4_mddi_setup(int which, unsigned long id);
|
|
unsigned long mdp4_display_status(void);
|
|
void mdp4_enable_clk_irq(void);
|
|
void mdp4_disable_clk_irq(void);
|
|
void mdp4_dma_p_update(struct msm_fb_data_type *mfd);
|
|
void mdp4_dma_s_update(struct msm_fb_data_type *mfd);
|
|
void mdp_pipe_ctrl(MDP_BLOCK_TYPE block, MDP_BLOCK_POWER_STATE state,
|
|
boolean isr);
|
|
void mdp4_pipe_kickoff(uint32 pipe, struct msm_fb_data_type *mfd);
|
|
int mdp4_lcdc_on(struct platform_device *pdev);
|
|
int mdp4_lcdc_off(struct platform_device *pdev);
|
|
void mdp4_lcdc_update(struct msm_fb_data_type *mfd);
|
|
void mdp4_intr_clear_set(ulong clear, ulong set);
|
|
void mdp4_dma_p_cfg(void);
|
|
unsigned is_mdp4_hw_reset(void);
|
|
void mdp4_hw_init(void);
|
|
void mdp4_isr_read(int);
|
|
void mdp4_clear_lcdc(void);
|
|
void mdp4_mixer_blend_init(int mixer_num);
|
|
void mdp4_vg_qseed_init(int vg_num);
|
|
void mdp4_vg_csc_update(struct mdp_csc *p);
|
|
irqreturn_t mdp4_isr(int irq, void *ptr);
|
|
void mdp4_overlay_format_to_pipe(uint32 format, struct mdp4_overlay_pipe *pipe);
|
|
uint32 mdp4_overlay_format(struct mdp4_overlay_pipe *pipe);
|
|
uint32 mdp4_overlay_unpack_pattern(struct mdp4_overlay_pipe *pipe);
|
|
uint32 mdp4_overlay_op_mode(struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_lcdc_base_swap(int cndx, struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_lcdc_overlay(struct msm_fb_data_type *mfd);
|
|
|
|
|
|
#ifdef CONFIG_FB_MSM_DTV
|
|
void mdp4_overlay_dtv_start(void);
|
|
void mdp4_overlay_dtv_ov_done_push(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_overlay_dtv_wait_for_ov(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
int mdp4_overlay_dtv_set(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
int mdp4_overlay_dtv_unset(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_dmae_done_dtv(void);
|
|
void mdp4_dtv_wait4vsync(int cndx, long long *vtime);
|
|
void mdp4_dtv_vsync_ctrl(struct fb_info *info, int enable);
|
|
void mdp4_dtv_base_swap(int cndx, struct mdp4_overlay_pipe *pipe);
|
|
#else
|
|
static inline void mdp4_overlay_dtv_start(void)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline void mdp4_overlay_dtv_ov_done_push(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline void mdp4_overlay_dtv_wait_for_ov(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline int mdp4_overlay_dtv_set(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int mdp4_overlay_dtv_unset(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void mdp4_dmae_done_dtv(void)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline void mdp4_dtv_wait4vsync(int cndx, long long *vtime)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline void mdp4_dtv_vsync_ctrl(struct fb_info *info, int enable)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline void mdp4_dtv_overlay_blt_start(struct msm_fb_data_type *mfd)
|
|
{
|
|
return;
|
|
}
|
|
static inline void mdp4_dtv_overlay_blt_stop(struct msm_fb_data_type *mfd)
|
|
{
|
|
return;
|
|
}
|
|
static inline void mdp4_dtv_base_swap(struct mdp4_overlay_pipe *pipe)
|
|
{
|
|
/* empty */
|
|
}
|
|
#endif /* CONFIG_FB_MSM_DTV */
|
|
|
|
void mdp4_dtv_set_black_screen(void);
|
|
|
|
int mdp4_overlay_dtv_set(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
int mdp4_overlay_dtv_unset(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_dtv_overlay(struct msm_fb_data_type *mfd);
|
|
int mdp4_dtv_on(struct platform_device *pdev);
|
|
int mdp4_dtv_off(struct platform_device *pdev);
|
|
void mdp4_atv_overlay(struct msm_fb_data_type *mfd);
|
|
int mdp4_atv_on(struct platform_device *pdev);
|
|
int mdp4_atv_off(struct platform_device *pdev);
|
|
void mdp4_dsi_video_fxn_register(cmd_fxn_t fxn);
|
|
void mdp4_dsi_video_overlay(struct msm_fb_data_type *mfd);
|
|
void mdp4_lcdc_vsync_ctrl(struct fb_info *info, int enable);
|
|
void mdp4_overlay0_done_dsi_video(int cndx);
|
|
void mdp4_overlay0_done_dsi_cmd(int cndx);
|
|
void mdp4_primary_rdptr(void);
|
|
void mdp4_dsi_cmd_overlay(struct msm_fb_data_type *mfd);
|
|
int mdp4_lcdc_pipe_commit(int cndx, int wait);
|
|
int mdp4_dtv_pipe_commit(int cndx, int wait);
|
|
int mdp4_dsi_cmd_update_cnt(int cndx);
|
|
void mdp4_dsi_rdptr_init(int cndx);
|
|
void mdp4_dsi_vsync_init(int cndx);
|
|
void mdp4_lcdc_vsync_init(int cndx);
|
|
void mdp4_dtv_vsync_init(int cndx);
|
|
ssize_t mdp4_dsi_cmd_show_event(struct device *dev,
|
|
struct device_attribute *attr, char *buf);
|
|
ssize_t mdp4_dsi_video_show_event(struct device *dev,
|
|
struct device_attribute *attr, char *buf);
|
|
ssize_t mdp4_lcdc_show_event(struct device *dev,
|
|
struct device_attribute *attr, char *buf);
|
|
ssize_t mdp4_dtv_show_event(struct device *dev,
|
|
struct device_attribute *attr, char *buf);
|
|
void mdp4_overlay_dsi_state_set(int state);
|
|
int mdp4_overlay_dsi_state_get(void);
|
|
void mdp4_overlay_rgb_setup(struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_overlay_reg_flush(struct mdp4_overlay_pipe *pipe, int all);
|
|
void mdp4_mixer_blend_setup(int mixer);
|
|
void mdp4_mixer_blend_cfg(int);
|
|
struct mdp4_overlay_pipe *mdp4_overlay_stage_pipe(int mixer, int stage);
|
|
void mdp4_mixer_stage_up(struct mdp4_overlay_pipe *pipe, int commit);
|
|
void mdp4_mixer_stage_down(struct mdp4_overlay_pipe *pipe, int commit);
|
|
void mdp4_mixer_pipe_cleanup(int mixer);
|
|
int mdp4_mixer_stage_can_run(struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_overlayproc_cfg(struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_mddi_overlay(struct msm_fb_data_type *mfd);
|
|
int mdp4_overlay_format2type(uint32 format);
|
|
int mdp4_overlay_format2pipe(struct mdp4_overlay_pipe *pipe);
|
|
int mdp4_overlay_get(struct fb_info *info, struct mdp_overlay *req);
|
|
int mdp4_overlay_set(struct fb_info *info, struct mdp_overlay *req);
|
|
int mdp4_overlay_wait4vsync(struct fb_info *info, long long *vtime);
|
|
int mdp4_overlay_vsync_ctrl(struct fb_info *info, int enable);
|
|
int mdp4_overlay_unset(struct fb_info *info, int ndx);
|
|
int mdp4_overlay_unset_mixer(int mixer);
|
|
int mdp4_overlay_play_wait(struct fb_info *info,
|
|
struct msmfb_overlay_data *req);
|
|
int mdp4_overlay_play(struct fb_info *info, struct msmfb_overlay_data *req);
|
|
int mdp4_overlay_commit(struct fb_info *info);
|
|
struct mdp4_overlay_pipe *mdp4_overlay_pipe_alloc(int ptype, int mixer);
|
|
void mdp4_overlay_dma_commit(int mixer);
|
|
void mdp4_overlay_vsync_commit(struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_solidfill_commit(int mixer);
|
|
void mdp4_mixer_stage_commit(int mixer);
|
|
void mdp4_dsi_cmd_do_update(int cndx, struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_lcdc_pipe_queue(int cndx, struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_dtv_pipe_queue(int cndx, struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_overlay_pipe_free(struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_overlay_dmap_cfg(struct msm_fb_data_type *mfd, int lcdc);
|
|
void mdp4_overlay_dmap_xy(struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_overlay_dmae_cfg(struct msm_fb_data_type *mfd, int atv);
|
|
void mdp4_overlay_dmae_xy(struct mdp4_overlay_pipe *pipe);
|
|
int mdp4_overlay_pipe_staged(struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_lcdc_primary_vsyn(void);
|
|
void mdp4_overlay0_done_lcdc(int cndx);
|
|
void mdp4_overlay0_done_mddi(int cndx);
|
|
void mdp4_dma_p_done_mddi(struct mdp_dma_data *dma);
|
|
void mdp4_dmap_done_dsi_cmd(int cndx);
|
|
void mdp4_dmap_done_mddi(int cndx);
|
|
void mdp4_dmap_done_dsi_video(int cndx);
|
|
void mdp4_dmap_done_lcdc(int cndx);
|
|
void mdp4_overlay1_done_dtv(void);
|
|
void mdp4_overlay1_done_atv(void);
|
|
void mdp4_primary_vsync_lcdc(void);
|
|
void mdp4_external_vsync_dtv(void);
|
|
void mdp4_lcdc_wait4vsync(int cndx, long long *vtime);
|
|
void mdp4_overlay_lcdc_vsync_push(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_mddi_overlay_dmas_restore(void);
|
|
void mdp4_dtv_set_avparams(struct mdp4_overlay_pipe *pipe, int id);
|
|
|
|
#ifndef CONFIG_FB_MSM_MIPI_DSI
|
|
void mdp4_mddi_dma_busy_wait(struct msm_fb_data_type *mfd);
|
|
void mdp4_mddi_overlay_restore(void);
|
|
#else
|
|
static inline void mdp4_mddi_kickoff_video(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline void mdp4_mddi_dma_busy_wait(struct msm_fb_data_type *mfd)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline void mdp4_mddi_blt_dmap_busy_wait(struct msm_fb_data_type *mfd)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline void mdp4_mddi_overlay_restore(void)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline void mdp4_mddi_overlay_blt_start(struct msm_fb_data_type *mfd)
|
|
{
|
|
/*empty*/
|
|
}
|
|
static inline void mdp4_mddi_overlay_blt_stop(struct msm_fb_data_type *mfd)
|
|
{
|
|
/*empty*/
|
|
}
|
|
static inline void mdp4_mddi_overlay_blt_offset(struct msm_fb_data_type *mfd,
|
|
struct msmfb_overlay_blt *req)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline void mdp4_mddi_overlay_blt(struct msm_fb_data_type *mfd,
|
|
struct msmfb_overlay_blt *req)
|
|
{
|
|
/* empty*/
|
|
}
|
|
#endif
|
|
|
|
void mdp4_mddi_overlay_kickoff(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_rgb_igc_lut_setup(int num);
|
|
void mdp4_vg_igc_lut_setup(int num);
|
|
void mdp4_mixer_gc_lut_setup(int mixer_num);
|
|
void mdp4_fetch_cfg(uint32 clk);
|
|
uint32 mdp4_rgb_igc_lut_cvt(uint32 ndx);
|
|
void mdp4_vg_qseed_init(int);
|
|
int mdp4_overlay_blt(struct fb_info *info, struct msmfb_overlay_blt *req);
|
|
|
|
#ifdef CONFIG_FB_MSM_MIPI_DSI
|
|
void mdp4_dsi_cmd_blt_start(struct msm_fb_data_type *mfd);
|
|
void mdp4_dsi_cmd_blt_stop(struct msm_fb_data_type *mfd);
|
|
void mdp4_dsi_video_blt_start(struct msm_fb_data_type *mfd);
|
|
void mdp4_dsi_video_blt_stop(struct msm_fb_data_type *mfd);
|
|
void mdp4_dsi_cmd_overlay_blt(struct msm_fb_data_type *mfd,
|
|
struct msmfb_overlay_blt *req);
|
|
|
|
void mdp4_dsi_video_overlay_blt(struct msm_fb_data_type *mfd,
|
|
struct msmfb_overlay_blt *req);
|
|
void mdp4_dsi_video_base_swap(int cndx, struct mdp4_overlay_pipe *pipe);
|
|
static inline void mdp4_mddi_blt_start(struct msm_fb_data_type *mfd)
|
|
{
|
|
}
|
|
static inline void mdp4_mddi_blt_stop(struct msm_fb_data_type *mfd)
|
|
{
|
|
}
|
|
|
|
#ifdef CONFIG_FB_MSM_MDP40
|
|
static inline void mdp3_dsi_cmd_dma_busy_wait(struct msm_fb_data_type *mfd)
|
|
{
|
|
/* empty */
|
|
}
|
|
#endif
|
|
#else /* CONFIG_FB_MSM_MIPI_DSI */
|
|
void mdp4_mddi_blt_start(struct msm_fb_data_type *mfd);
|
|
void mdp4_mddi_blt_stop(struct msm_fb_data_type *mfd);
|
|
int mdp4_mddi_overlay_blt_offset(struct msm_fb_data_type *mfd,
|
|
struct msmfb_overlay_blt *req);
|
|
void mdp4_mddi_overlay_blt(struct msm_fb_data_type *mfd,
|
|
struct msmfb_overlay_blt *req);
|
|
int mdp4_mddi_overlay_blt_start(struct msm_fb_data_type *mfd);
|
|
int mdp4_mddi_overlay_blt_stop(struct msm_fb_data_type *mfd);
|
|
void mdp4_mddi_blt_dmap_busy_wait(struct msm_fb_data_type *mfd);
|
|
void mdp4_mddi_rdptr_init(int cndx);
|
|
static inline int mdp4_dsi_overlay_blt_start(struct msm_fb_data_type *mfd)
|
|
{
|
|
return -ENODEV;
|
|
}
|
|
static inline int mdp4_dsi_overlay_blt_stop(struct msm_fb_data_type *mfd)
|
|
{
|
|
return -ENODEV;
|
|
}
|
|
static inline void mdp4_dsi_video_blt_start(struct msm_fb_data_type *mfd)
|
|
{
|
|
}
|
|
static inline void mdp4_dsi_video_blt_stop(struct msm_fb_data_type *mfd)
|
|
{
|
|
}
|
|
static inline void mdp4_dsi_overlay_blt(
|
|
struct msm_fb_data_type *mfd, struct msmfb_overlay_blt *req)
|
|
{
|
|
}
|
|
static inline int mdp4_dsi_overlay_blt_offset(
|
|
struct msm_fb_data_type *mfd, struct msmfb_overlay_blt *req)
|
|
{
|
|
return -ENODEV;
|
|
}
|
|
static inline void mdp4_dsi_video_overlay_blt(
|
|
struct msm_fb_data_type *mfd, struct msmfb_overlay_blt *req)
|
|
{
|
|
}
|
|
static inline void mdp4_dsi_cmd_overlay_blt(
|
|
struct msm_fb_data_type *mfd, struct msmfb_overlay_blt *req)
|
|
{
|
|
}
|
|
static inline void mdp4_dsi_video_base_swap(int cndx,
|
|
struct mdp4_overlay_pipe *pipe)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline void mdp4_dsi_cmd_blt_start(struct msm_fb_data_type *mfd)
|
|
{
|
|
}
|
|
static inline void mdp4_dsi_cmd_blt_stop(struct msm_fb_data_type *mfd)
|
|
{
|
|
}
|
|
#endif /* CONFIG_FB_MSM_MIPI_DSI */
|
|
|
|
void mdp4_lcdc_overlay_blt(struct msm_fb_data_type *mfd,
|
|
struct msmfb_overlay_blt *req);
|
|
int mdp4_lcdc_overlay_blt_offset(struct msm_fb_data_type *mfd,
|
|
struct msmfb_overlay_blt *req);
|
|
void mdp4_lcdc_overlay_blt_start(struct msm_fb_data_type *mfd);
|
|
void mdp4_lcdc_overlay_blt_stop(struct msm_fb_data_type *mfd);
|
|
void mdp4_dtv_overlay_blt_start(struct msm_fb_data_type *mfd);
|
|
void mdp4_dtv_overlay_blt_stop(struct msm_fb_data_type *mfd);
|
|
void mdp4_overlay_panel_mode(int mixer_num, uint32 mode);
|
|
void mdp4_overlay_panel_mode_unset(int mixer_num, uint32 mode);
|
|
int mdp4_overlay_mixer_play(int mixer_num);
|
|
uint32 mdp4_overlay_panel_list(void);
|
|
void mdp4_lcdc_overlay_kickoff(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
|
|
void mdp4_mddi_kickoff_video(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
|
|
void mdp4_mddi_read_ptr_intr(void);
|
|
|
|
void mdp4_dsi_cmd_dma_busy_check(void);
|
|
|
|
|
|
|
|
#ifdef CONFIG_FB_MSM_MIPI_DSI
|
|
void mdp_dsi_cmd_overlay_suspend(struct msm_fb_data_type *mfd);
|
|
int mdp4_dsi_cmd_on(struct platform_device *pdev);
|
|
int mdp4_dsi_cmd_off(struct platform_device *pdev);
|
|
int mdp4_dsi_video_off(struct platform_device *pdev);
|
|
int mdp4_dsi_video_on(struct platform_device *pdev);
|
|
void mdp4_primary_vsync_dsi_video(void);
|
|
void mdp4_dsi_cmd_base_swap(int cndx, struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_dsi_cmd_wait4vsync(int cndx, long long *vtime);
|
|
void mdp4_dsi_video_wait4vsync(int cndx, long long *vtime);
|
|
void mdp4_dsi_cmd_pipe_queue(int cndx, struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_dsi_video_pipe_queue(int cndx, struct mdp4_overlay_pipe *pipe);
|
|
int mdp4_dsi_video_pipe_commit(int cndx, int wait);
|
|
int mdp4_dsi_cmd_pipe_commit(int cndx, int wait);
|
|
void mdp4_dsi_cmd_vsync_ctrl(struct fb_info *info, int enable);
|
|
void mdp4_dsi_video_vsync_ctrl(struct fb_info *info, int enable);
|
|
#ifdef CONFIG_FB_MSM_MDP303
|
|
static inline void mdp4_dsi_cmd_del_timer(void)
|
|
{
|
|
/* empty */
|
|
}
|
|
#else /* CONFIG_FB_MSM_MDP303 */
|
|
void mdp4_dsi_cmd_del_timer(void);
|
|
static inline int mdp4_mddi_on(struct platform_device *pdev)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int mdp4_mddi_off(struct platform_device *pdev)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline void mdp4_mddi_wait4vsync(int cndx, long long *vtime)
|
|
{
|
|
}
|
|
static inline void mdp4_mddi_vsync_ctrl(struct fb_info *info,
|
|
int enable)
|
|
{
|
|
}
|
|
static inline void mdp4_mddi_pipe_queue(int cndx,
|
|
struct mdp4_overlay_pipe *pipe)
|
|
{
|
|
}
|
|
#endif
|
|
#else /* CONFIG_FB_MSM_MIPI_DSI */
|
|
|
|
int mdp4_mddi_off(struct platform_device *pdev);
|
|
int mdp4_mddi_on(struct platform_device *pdev);
|
|
void mdp4_mddi_wait4vsync(int cndx, long long *vtime);
|
|
void mdp4_mddi_vsync_ctrl(struct fb_info *info, int enable);
|
|
void mdp4_mddi_pipe_queue(int cndx, struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_overlay_update_mddi(struct msm_fb_data_type *mfd);
|
|
|
|
static inline int mdp4_dsi_cmd_on(struct platform_device *pdev)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int mdp4_dsi_cmd_off(struct platform_device *pdev)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int mdp4_dsi_video_on(struct platform_device *pdev)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int mdp4_dsi_video_off(struct platform_device *pdev)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline void mdp4_primary_vsync_dsi_video(void)
|
|
{
|
|
}
|
|
static inline void mdp4_dsi_cmd_base_swap(int cndx,
|
|
struct mdp4_overlay_pipe *pipe)
|
|
{
|
|
}
|
|
static inline void mdp4_dsi_cmd_wait4vsync(int cndx, long long *vtime)
|
|
{
|
|
}
|
|
static inline void mdp4_dsi_video_wait4vsync(int cndx, long long *vtime)
|
|
{
|
|
}
|
|
static inline void mdp4_dsi_cmd_pipe_queue(int cndx,
|
|
struct mdp4_overlay_pipe *pipe)
|
|
{
|
|
}
|
|
static inline void mdp4_dsi_video_pipe_queue(int cndx,
|
|
struct mdp4_overlay_pipe *pipe)
|
|
{
|
|
}
|
|
static inline int mdp4_dsi_video_pipe_commit(int cndx, int wait)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int mdp4_dsi_cmd_pipe_commit(int cndx, int wait)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline void mdp4_dsi_cmd_vsync_ctrl(struct fb_info *info,
|
|
int enable)
|
|
{
|
|
}
|
|
static inline void mdp4_dsi_video_vsync_ctrl(struct fb_info *info,
|
|
int enable)
|
|
{
|
|
}
|
|
|
|
static inline void mdp4_overlay_dsi_video_start(void)
|
|
{
|
|
/* empty */
|
|
}
|
|
#ifdef CONFIG_FB_MSM_MDP40
|
|
static inline void mdp_dsi_cmd_overlay_suspend(struct msm_fb_data_type *mfd)
|
|
{
|
|
/* empty */
|
|
}
|
|
#endif
|
|
#endif /* CONFIG_FB_MSM_MIPI_DSI */
|
|
|
|
void mdp4_dsi_cmd_kickoff_ui(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_dsi_cmd_kickoff_video(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_dsi_cmd_overlay_kickoff(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_overlay_panel_3d(int mixer_num, uint32 panel_3d);
|
|
int mdp4_overlay_3d_sbys(struct fb_info *info, struct msmfb_overlay_3d *req);
|
|
void mdp4_dsi_cmd_3d_sbys(struct msm_fb_data_type *mfd,
|
|
struct msmfb_overlay_3d *r3d);
|
|
void mdp4_dsi_video_3d_sbys(struct msm_fb_data_type *mfd,
|
|
struct msmfb_overlay_3d *r3d);
|
|
|
|
int mdp4_mixer_info(int mixer_num, struct mdp_mixer_info *info);
|
|
|
|
void mdp_dmap_vsync_set(int enable);
|
|
int mdp_dmap_vsync_get(void);
|
|
void mdp_hw_cursor_done(void);
|
|
void mdp_hw_cursor_init(void);
|
|
int mdp4_mddi_overlay_cursor(struct fb_info *info, struct fb_cursor *cursor);
|
|
int mdp_ppp_blit(struct fb_info *info, struct mdp_blit_req *req);
|
|
void mdp4_overlay_resource_release(void);
|
|
uint32_t mdp4_ss_table_value(int8_t param, int8_t index);
|
|
void mdp4_overlay_borderfill_stage_down(struct mdp4_overlay_pipe *pipe);
|
|
|
|
#ifdef CONFIG_FB_MSM_MDP303
|
|
static inline int mdp4_overlay_borderfill_supported(void)
|
|
{
|
|
return 0;
|
|
}
|
|
#else
|
|
int mdp4_overlay_borderfill_supported(void);
|
|
#endif
|
|
|
|
int mdp4_overlay_writeback_on(struct platform_device *pdev);
|
|
int mdp4_overlay_writeback_off(struct platform_device *pdev);
|
|
void mdp4_writeback_overlay(struct msm_fb_data_type *mfd);
|
|
void mdp4_overlay2_done_wfd(struct mdp_dma_data *dma);
|
|
|
|
int mdp4_writeback_start(struct fb_info *info);
|
|
int mdp4_writeback_stop(struct fb_info *info);
|
|
int mdp4_writeback_dequeue_buffer(struct fb_info *info,
|
|
struct msmfb_data *data);
|
|
int mdp4_writeback_queue_buffer(struct fb_info *info,
|
|
struct msmfb_data *data);
|
|
void mdp4_writeback_dma_stop(struct msm_fb_data_type *mfd);
|
|
int mdp4_writeback_init(struct fb_info *info);
|
|
int mdp4_writeback_terminate(struct fb_info *info);
|
|
int mdp4_writeback_set_mirroring_hint(struct fb_info *info, int hint);
|
|
|
|
uint32_t mdp_block2base(uint32_t block);
|
|
int mdp_hist_lut_config(struct mdp_hist_lut_data *data);
|
|
|
|
void mdp4_hsic_update(struct mdp4_overlay_pipe *pipe);
|
|
int mdp4_csc_config(struct mdp_csc_cfg_data *config);
|
|
void mdp4_csc_write(struct mdp_csc_cfg *data, uint32_t base);
|
|
int mdp4_csc_enable(struct mdp_csc_cfg_data *config);
|
|
int mdp4_pcc_cfg(struct mdp_pcc_cfg_data *cfg_ptr);
|
|
int mdp4_argc_cfg(struct mdp_pgc_lut_data *pgc_ptr);
|
|
int mdp4_qseed_cfg(struct mdp_qseed_cfg_data *cfg);
|
|
int mdp4_calib_config(struct mdp_calib_config_data *cfg);
|
|
int mdp4_qseed_access_cfg(struct mdp_qseed_cfg *cfg, uint32_t base);
|
|
u32 mdp4_allocate_writeback_buf(struct msm_fb_data_type *mfd, u32 mix_num);
|
|
void mdp4_init_writeback_buf(struct msm_fb_data_type *mfd, u32 mix_num);
|
|
void mdp4_free_writeback_buf(struct msm_fb_data_type *mfd, u32 mix_num);
|
|
|
|
int mdp4_igc_lut_config(struct mdp_igc_lut_data *cfg);
|
|
void mdp4_overlay_iommu_pipe_free(int ndx, int all);
|
|
void mdp4_overlay_iommu_free_list(int mixer, struct ion_handle *ihdl);
|
|
void mdp4_overlay_iommu_unmap_freelist(int mixer);
|
|
void mdp4_overlay_iommu_vsync_cnt(void);
|
|
void mdp4_iommu_unmap(struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_iommu_attach(void);
|
|
int mdp4_v4l2_overlay_set(struct fb_info *info, struct mdp_overlay *req,
|
|
struct mdp4_overlay_pipe **ppipe);
|
|
void mdp4_v4l2_overlay_clear(struct mdp4_overlay_pipe *pipe);
|
|
int mdp4_v4l2_overlay_play(struct fb_info *info, struct mdp4_overlay_pipe *pipe,
|
|
unsigned long srcp0_addr, unsigned long srcp1_addr,
|
|
unsigned long srcp2_addr);
|
|
int mdp4_overlay_mdp_pipe_req(struct mdp4_overlay_pipe *pipe,
|
|
struct msm_fb_data_type *mfd);
|
|
int mdp4_calc_blt_mdp_bw(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *pipe);
|
|
int mdp4_overlay_mdp_perf_req(struct msm_fb_data_type *mfd,
|
|
struct mdp4_overlay_pipe *plist);
|
|
void mdp4_overlay_mdp_perf_upd(struct msm_fb_data_type *mfd, int flag);
|
|
int mdp4_update_base_blend(struct msm_fb_data_type *mfd,
|
|
struct mdp_blend_cfg *mdp_blend_cfg);
|
|
int mdp4_update_writeback_format(struct msm_fb_data_type *mfd,
|
|
struct mdp_mixer_cfg *mdp_mixer_cfg);
|
|
u32 mdp4_get_mixer_num(u32 panel_type);
|
|
|
|
#ifndef CONFIG_FB_MSM_WRITEBACK_MSM_PANEL
|
|
static inline void mdp4_wfd_pipe_queue(int cndx, struct mdp4_overlay_pipe *pipe)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline void mdp4_wfd_init(int cndx)
|
|
{
|
|
/* empty */
|
|
}
|
|
static inline int mdp4_wfd_pipe_commit(struct msm_fb_data_type *mfd,
|
|
int cndx, int wait)
|
|
{
|
|
return 0;
|
|
}
|
|
#else
|
|
void mdp4_wfd_pipe_queue(int cndx, struct mdp4_overlay_pipe *pipe);
|
|
void mdp4_wfd_init(int cndx);
|
|
int mdp4_wfd_pipe_commit(struct msm_fb_data_type *mfd, int cndx, int wait);
|
|
#endif
|
|
|
|
#endif /* MDP_H */
|