mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-24 11:02:51 +00:00
MISR support is the debug feature present in Snapdragon chipsets. At the layer mixer and interfaces, MISR algorithm can generate CRC signatures of the pixel data which can be used for validating the frames generated. Since there are no clients for this feature, strip down the support from the driver. changes in v4: - changed introduced in the series changes in v5: - update commit text with the need for the change(Sean) Signed-off-by: Jeykumar Sankaran <jsanka@codeaurora.org> Signed-off-by: Sean Paul <seanpaul@chromium.org> Signed-off-by: Rob Clark <robdclark@gmail.com>
116 lines
2.9 KiB
C
116 lines
2.9 KiB
C
/* Copyright (c) 2015-2018, 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 _DPU_HW_LM_H
|
|
#define _DPU_HW_LM_H
|
|
|
|
#include "dpu_hw_mdss.h"
|
|
#include "dpu_hw_util.h"
|
|
#include "dpu_hw_blk.h"
|
|
|
|
struct dpu_hw_mixer;
|
|
|
|
struct dpu_hw_mixer_cfg {
|
|
u32 out_width;
|
|
u32 out_height;
|
|
bool right_mixer;
|
|
int flags;
|
|
};
|
|
|
|
struct dpu_hw_color3_cfg {
|
|
u8 keep_fg[DPU_STAGE_MAX];
|
|
};
|
|
|
|
/**
|
|
*
|
|
* struct dpu_hw_lm_ops : Interface to the mixer Hw driver functions
|
|
* Assumption is these functions will be called after clocks are enabled
|
|
*/
|
|
struct dpu_hw_lm_ops {
|
|
/*
|
|
* Sets up mixer output width and height
|
|
* and border color if enabled
|
|
*/
|
|
void (*setup_mixer_out)(struct dpu_hw_mixer *ctx,
|
|
struct dpu_hw_mixer_cfg *cfg);
|
|
|
|
/*
|
|
* Alpha blending configuration
|
|
* for the specified stage
|
|
*/
|
|
void (*setup_blend_config)(struct dpu_hw_mixer *ctx, uint32_t stage,
|
|
uint32_t fg_alpha, uint32_t bg_alpha, uint32_t blend_op);
|
|
|
|
/*
|
|
* Alpha color component selection from either fg or bg
|
|
*/
|
|
void (*setup_alpha_out)(struct dpu_hw_mixer *ctx, uint32_t mixer_op);
|
|
|
|
/**
|
|
* setup_border_color : enable/disable border color
|
|
*/
|
|
void (*setup_border_color)(struct dpu_hw_mixer *ctx,
|
|
struct dpu_mdss_color *color,
|
|
u8 border_en);
|
|
/**
|
|
* setup_gc : enable/disable gamma correction feature
|
|
*/
|
|
void (*setup_gc)(struct dpu_hw_mixer *mixer,
|
|
void *cfg);
|
|
};
|
|
|
|
struct dpu_hw_mixer {
|
|
struct dpu_hw_blk base;
|
|
struct dpu_hw_blk_reg_map hw;
|
|
|
|
/* lm */
|
|
enum dpu_lm idx;
|
|
const struct dpu_lm_cfg *cap;
|
|
const struct dpu_mdp_cfg *mdp;
|
|
const struct dpu_ctl_cfg *ctl;
|
|
|
|
/* ops */
|
|
struct dpu_hw_lm_ops ops;
|
|
|
|
/* store mixer info specific to display */
|
|
struct dpu_hw_mixer_cfg cfg;
|
|
};
|
|
|
|
/**
|
|
* to_dpu_hw_mixer - convert base object dpu_hw_base to container
|
|
* @hw: Pointer to base hardware block
|
|
* return: Pointer to hardware block container
|
|
*/
|
|
static inline struct dpu_hw_mixer *to_dpu_hw_mixer(struct dpu_hw_blk *hw)
|
|
{
|
|
return container_of(hw, struct dpu_hw_mixer, base);
|
|
}
|
|
|
|
/**
|
|
* dpu_hw_lm_init(): Initializes the mixer hw driver object.
|
|
* should be called once before accessing every mixer.
|
|
* @idx: mixer index for which driver object is required
|
|
* @addr: mapped register io address of MDP
|
|
* @m : pointer to mdss catalog data
|
|
*/
|
|
struct dpu_hw_mixer *dpu_hw_lm_init(enum dpu_lm idx,
|
|
void __iomem *addr,
|
|
struct dpu_mdss_cfg *m);
|
|
|
|
/**
|
|
* dpu_hw_lm_destroy(): Destroys layer mixer driver context
|
|
* @lm: Pointer to LM driver context
|
|
*/
|
|
void dpu_hw_lm_destroy(struct dpu_hw_mixer *lm);
|
|
|
|
#endif /*_DPU_HW_LM_H */
|