123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- /* 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.
- */
- #include "dpu_kms.h"
- #include "dpu_hw_catalog.h"
- #include "dpu_hwio.h"
- #include "dpu_hw_lm.h"
- #include "dpu_hw_mdss.h"
- #include "dpu_dbg.h"
- #include "dpu_kms.h"
- #define LM_OP_MODE 0x00
- #define LM_OUT_SIZE 0x04
- #define LM_BORDER_COLOR_0 0x08
- #define LM_BORDER_COLOR_1 0x010
- /* These register are offset to mixer base + stage base */
- #define LM_BLEND0_OP 0x00
- #define LM_BLEND0_CONST_ALPHA 0x04
- #define LM_FG_COLOR_FILL_COLOR_0 0x08
- #define LM_FG_COLOR_FILL_COLOR_1 0x0C
- #define LM_FG_COLOR_FILL_SIZE 0x10
- #define LM_FG_COLOR_FILL_XY 0x14
- #define LM_BLEND0_FG_ALPHA 0x04
- #define LM_BLEND0_BG_ALPHA 0x08
- static struct dpu_lm_cfg *_lm_offset(enum dpu_lm mixer,
- struct dpu_mdss_cfg *m,
- void __iomem *addr,
- struct dpu_hw_blk_reg_map *b)
- {
- int i;
- for (i = 0; i < m->mixer_count; i++) {
- if (mixer == m->mixer[i].id) {
- b->base_off = addr;
- b->blk_off = m->mixer[i].base;
- b->length = m->mixer[i].len;
- b->hwversion = m->hwversion;
- b->log_mask = DPU_DBG_MASK_LM;
- return &m->mixer[i];
- }
- }
- return ERR_PTR(-ENOMEM);
- }
- /**
- * _stage_offset(): returns the relative offset of the blend registers
- * for the stage to be setup
- * @c: mixer ctx contains the mixer to be programmed
- * @stage: stage index to setup
- */
- static inline int _stage_offset(struct dpu_hw_mixer *ctx, enum dpu_stage stage)
- {
- const struct dpu_lm_sub_blks *sblk = ctx->cap->sblk;
- int rc;
- if (stage == DPU_STAGE_BASE)
- rc = -EINVAL;
- else if (stage <= sblk->maxblendstages)
- rc = sblk->blendstage_base[stage - DPU_STAGE_0];
- else
- rc = -EINVAL;
- return rc;
- }
- static void dpu_hw_lm_setup_out(struct dpu_hw_mixer *ctx,
- struct dpu_hw_mixer_cfg *mixer)
- {
- struct dpu_hw_blk_reg_map *c = &ctx->hw;
- u32 outsize;
- u32 op_mode;
- op_mode = DPU_REG_READ(c, LM_OP_MODE);
- outsize = mixer->out_height << 16 | mixer->out_width;
- DPU_REG_WRITE(c, LM_OUT_SIZE, outsize);
- /* SPLIT_LEFT_RIGHT */
- if (mixer->right_mixer)
- op_mode |= BIT(31);
- else
- op_mode &= ~BIT(31);
- DPU_REG_WRITE(c, LM_OP_MODE, op_mode);
- }
- static void dpu_hw_lm_setup_border_color(struct dpu_hw_mixer *ctx,
- struct dpu_mdss_color *color,
- u8 border_en)
- {
- struct dpu_hw_blk_reg_map *c = &ctx->hw;
- if (border_en) {
- DPU_REG_WRITE(c, LM_BORDER_COLOR_0,
- (color->color_0 & 0xFFF) |
- ((color->color_1 & 0xFFF) << 0x10));
- DPU_REG_WRITE(c, LM_BORDER_COLOR_1,
- (color->color_2 & 0xFFF) |
- ((color->color_3 & 0xFFF) << 0x10));
- }
- }
- static void dpu_hw_lm_setup_blend_config_sdm845(struct dpu_hw_mixer *ctx,
- u32 stage, u32 fg_alpha, u32 bg_alpha, u32 blend_op)
- {
- struct dpu_hw_blk_reg_map *c = &ctx->hw;
- int stage_off;
- u32 const_alpha;
- if (stage == DPU_STAGE_BASE)
- return;
- stage_off = _stage_offset(ctx, stage);
- if (WARN_ON(stage_off < 0))
- return;
- const_alpha = (bg_alpha & 0xFF) | ((fg_alpha & 0xFF) << 16);
- DPU_REG_WRITE(c, LM_BLEND0_CONST_ALPHA + stage_off, const_alpha);
- DPU_REG_WRITE(c, LM_BLEND0_OP + stage_off, blend_op);
- }
- static void dpu_hw_lm_setup_blend_config(struct dpu_hw_mixer *ctx,
- u32 stage, u32 fg_alpha, u32 bg_alpha, u32 blend_op)
- {
- struct dpu_hw_blk_reg_map *c = &ctx->hw;
- int stage_off;
- if (stage == DPU_STAGE_BASE)
- return;
- stage_off = _stage_offset(ctx, stage);
- if (WARN_ON(stage_off < 0))
- return;
- DPU_REG_WRITE(c, LM_BLEND0_FG_ALPHA + stage_off, fg_alpha);
- DPU_REG_WRITE(c, LM_BLEND0_BG_ALPHA + stage_off, bg_alpha);
- DPU_REG_WRITE(c, LM_BLEND0_OP + stage_off, blend_op);
- }
- static void dpu_hw_lm_setup_color3(struct dpu_hw_mixer *ctx,
- uint32_t mixer_op_mode)
- {
- struct dpu_hw_blk_reg_map *c = &ctx->hw;
- int op_mode;
- /* read the existing op_mode configuration */
- op_mode = DPU_REG_READ(c, LM_OP_MODE);
- op_mode = (op_mode & (BIT(31) | BIT(30))) | mixer_op_mode;
- DPU_REG_WRITE(c, LM_OP_MODE, op_mode);
- }
- static void dpu_hw_lm_gc(struct dpu_hw_mixer *mixer,
- void *cfg)
- {
- }
- static void _setup_mixer_ops(struct dpu_mdss_cfg *m,
- struct dpu_hw_lm_ops *ops,
- unsigned long features)
- {
- ops->setup_mixer_out = dpu_hw_lm_setup_out;
- if (IS_SDM845_TARGET(m->hwversion) || IS_SDM670_TARGET(m->hwversion))
- ops->setup_blend_config = dpu_hw_lm_setup_blend_config_sdm845;
- else
- ops->setup_blend_config = dpu_hw_lm_setup_blend_config;
- ops->setup_alpha_out = dpu_hw_lm_setup_color3;
- ops->setup_border_color = dpu_hw_lm_setup_border_color;
- ops->setup_gc = dpu_hw_lm_gc;
- };
- static struct dpu_hw_blk_ops dpu_hw_ops = {
- .start = NULL,
- .stop = NULL,
- };
- struct dpu_hw_mixer *dpu_hw_lm_init(enum dpu_lm idx,
- void __iomem *addr,
- struct dpu_mdss_cfg *m)
- {
- struct dpu_hw_mixer *c;
- struct dpu_lm_cfg *cfg;
- int rc;
- c = kzalloc(sizeof(*c), GFP_KERNEL);
- if (!c)
- return ERR_PTR(-ENOMEM);
- cfg = _lm_offset(idx, m, addr, &c->hw);
- if (IS_ERR_OR_NULL(cfg)) {
- kfree(c);
- return ERR_PTR(-EINVAL);
- }
- /* Assign ops */
- c->idx = idx;
- c->cap = cfg;
- _setup_mixer_ops(m, &c->ops, c->cap->features);
- rc = dpu_hw_blk_init(&c->base, DPU_HW_BLK_LM, idx, &dpu_hw_ops);
- if (rc) {
- DPU_ERROR("failed to init hw blk %d\n", rc);
- goto blk_init_error;
- }
- return c;
- blk_init_error:
- kzfree(c);
- return ERR_PTR(rc);
- }
- void dpu_hw_lm_destroy(struct dpu_hw_mixer *lm)
- {
- if (lm)
- dpu_hw_blk_destroy(&lm->base);
- kfree(lm);
- }
|