mirror of
https://github.com/torvalds/linux.git
synced 2026-04-27 19:12:29 -04:00
SDM845 SoC includes the Mobile Display Sub System (MDSS) which is a
top level wrapper consisting of Display Processing Unit (DPU) and
display peripheral modules such as Display Serial Interface (DSI)
and DisplayPort (DP).
MDSS functions essentially as a back-end composition engine. It blends
video and graphic images stored in the frame buffers and scans out the
composed image to a display sink (over DSI/DP).
The following diagram represents hardware blocks for a simple pipeline
(two planes are present on a given crtc which is connected to a DSI
connector):
MDSS
+---------------------------------+
| +-----------------------------+ |
| | DPU | |
| | +--------+ +--------+ | |
| | | SSPP | | SSPP | | |
| | +----+---+ +----+---+ | |
| | | | | |
| | +----v-----------v---+ | |
| | | Layer Mixer (LM) | | |
| | +--------------------+ | |
| | +--------------------+ | |
| | | PingPong (PP) | | |
| | +--------------------+ | |
| | +--------------------+ | |
| | | INTERFACE (VIDEO) | | |
| | +---+----------------+ | |
| +------|----------------------+ |
| | |
| +------|---------------------+ |
| | | DISPLAY PERIPHERALS | |
| | +---v-+ +-----+ | |
| | | DSI | | DP | | |
| | +-----+ +-----+ | |
| +----------------------------+ |
+---------------------------------+
The number of DPU sub-blocks (i.e. SSPPs, LMs, PP blocks and INTFs)
depends on SoC capabilities.
Overview of DPU sub-blocks:
---------------------------
* Source Surface Processor (SSPP):
Refers to any of hardware pipes like ViG, DMA etc. Only ViG pipes are
capable of performing format conversion, scaling and quality improvement
for source surfaces.
* Layer Mixer (LM):
Blend source surfaces together (in requested zorder)
* PingPong (PP):
This block controls frame done interrupt output, EOL and EOF generation,
overflow/underflow control.
* Display interface (INTF):
Timing generator and interface connecting the display peripherals.
DRM components mapping to DPU architecture:
------------------------------------------
PLANEs maps to SSPPs
CRTC maps to LMs
Encoder maps to PPs, INTFs
Data flow setup:
---------------
MDSS hardware can support various data flows (e.g.):
- Dual pipe: Output from two LMs combined to single display.
- Split display: Output from two LMs connected to two separate
interfaces.
The hardware capabilities determine the number of concurrent data paths
possible. Any control path (i.e. pipeline w/i DPU) can be routed to any
of the hardware data paths. A given control path can be triggered,
flushed and controlled independently.
Changes in v3:
- Move msm_media_info.h from uapi to dpu/ subdir
- Remove preclose callback dpu (it's handled in core)
- Fix kbuild warnings with parent_ops
- Remove unused functions from dpu_core_irq
- Rename mdss_phys to mdss
- Rename mdp_phys address space to mdp
- Drop _phys from vbif and regdma binding names
Signed-off-by: Abhinav Kumar <abhinavk@codeaurora.org>
Signed-off-by: Archit Taneja <architt@codeaurora.org>
Signed-off-by: Chandan Uddaraju <chandanu@codeaurora.org>
Signed-off-by: Jeykumar Sankaran <jsanka@codeaurora.org>
Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
Signed-off-by: Rajesh Yadav <ryadav@codeaurora.org>
Signed-off-by: Sravanthi Kollukuduru <skolluku@codeaurora.org>
Signed-off-by: Sean Paul <seanpaul@chromium.org>
[robclark minor rebase]
Signed-off-by: Rob Clark <robdclark@gmail.com>
140 lines
3.7 KiB
C
140 lines
3.7 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_CDM_H
|
|
#define _DPU_HW_CDM_H
|
|
|
|
#include "dpu_hw_mdss.h"
|
|
#include "dpu_hw_top.h"
|
|
#include "dpu_hw_blk.h"
|
|
|
|
struct dpu_hw_cdm;
|
|
|
|
struct dpu_hw_cdm_cfg {
|
|
u32 output_width;
|
|
u32 output_height;
|
|
u32 output_bit_depth;
|
|
u32 h_cdwn_type;
|
|
u32 v_cdwn_type;
|
|
const struct dpu_format *output_fmt;
|
|
u32 output_type;
|
|
int flags;
|
|
};
|
|
|
|
enum dpu_hw_cdwn_type {
|
|
CDM_CDWN_DISABLE,
|
|
CDM_CDWN_PIXEL_DROP,
|
|
CDM_CDWN_AVG,
|
|
CDM_CDWN_COSITE,
|
|
CDM_CDWN_OFFSITE,
|
|
};
|
|
|
|
enum dpu_hw_cdwn_output_type {
|
|
CDM_CDWN_OUTPUT_HDMI,
|
|
CDM_CDWN_OUTPUT_WB,
|
|
};
|
|
|
|
enum dpu_hw_cdwn_output_bit_depth {
|
|
CDM_CDWN_OUTPUT_8BIT,
|
|
CDM_CDWN_OUTPUT_10BIT,
|
|
};
|
|
|
|
/**
|
|
* struct dpu_hw_cdm_ops : Interface to the chroma down Hw driver functions
|
|
* Assumption is these functions will be called after
|
|
* clocks are enabled
|
|
* @setup_csc: Programs the csc matrix
|
|
* @setup_cdwn: Sets up the chroma down sub module
|
|
* @enable: Enables the output to interface and programs the
|
|
* output packer
|
|
* @disable: Puts the cdm in bypass mode
|
|
*/
|
|
struct dpu_hw_cdm_ops {
|
|
/**
|
|
* Programs the CSC matrix for conversion from RGB space to YUV space,
|
|
* it is optional to call this function as this matrix is automatically
|
|
* set during initialization, user should call this if it wants
|
|
* to program a different matrix than default matrix.
|
|
* @cdm: Pointer to the chroma down context structure
|
|
* @data Pointer to CSC configuration data
|
|
* return: 0 if success; error code otherwise
|
|
*/
|
|
int (*setup_csc_data)(struct dpu_hw_cdm *cdm,
|
|
struct dpu_csc_cfg *data);
|
|
|
|
/**
|
|
* Programs the Chroma downsample part.
|
|
* @cdm Pointer to chroma down context
|
|
*/
|
|
int (*setup_cdwn)(struct dpu_hw_cdm *cdm,
|
|
struct dpu_hw_cdm_cfg *cfg);
|
|
|
|
/**
|
|
* Enable the CDM module
|
|
* @cdm Pointer to chroma down context
|
|
*/
|
|
int (*enable)(struct dpu_hw_cdm *cdm,
|
|
struct dpu_hw_cdm_cfg *cfg);
|
|
|
|
/**
|
|
* Disable the CDM module
|
|
* @cdm Pointer to chroma down context
|
|
*/
|
|
void (*disable)(struct dpu_hw_cdm *cdm);
|
|
};
|
|
|
|
struct dpu_hw_cdm {
|
|
struct dpu_hw_blk base;
|
|
struct dpu_hw_blk_reg_map hw;
|
|
|
|
/* chroma down */
|
|
const struct dpu_cdm_cfg *caps;
|
|
enum dpu_cdm idx;
|
|
|
|
/* mdp top hw driver */
|
|
struct dpu_hw_mdp *hw_mdp;
|
|
|
|
/* ops */
|
|
struct dpu_hw_cdm_ops ops;
|
|
};
|
|
|
|
/**
|
|
* dpu_hw_cdm - 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_cdm *to_dpu_hw_cdm(struct dpu_hw_blk *hw)
|
|
{
|
|
return container_of(hw, struct dpu_hw_cdm, base);
|
|
}
|
|
|
|
/**
|
|
* dpu_hw_cdm_init - initializes the cdm hw driver object.
|
|
* should be called once before accessing every cdm.
|
|
* @idx: cdm index for which driver object is required
|
|
* @addr: mapped register io address of MDP
|
|
* @m : pointer to mdss catalog data
|
|
* @hw_mdp: pointer to mdp top hw driver object
|
|
*/
|
|
struct dpu_hw_cdm *dpu_hw_cdm_init(enum dpu_cdm idx,
|
|
void __iomem *addr,
|
|
struct dpu_mdss_cfg *m,
|
|
struct dpu_hw_mdp *hw_mdp);
|
|
|
|
/**
|
|
* dpu_hw_cdm_destroy - destroys CDM driver context
|
|
* @cdm: pointer to CDM driver context
|
|
*/
|
|
void dpu_hw_cdm_destroy(struct dpu_hw_cdm *cdm);
|
|
|
|
#endif /*_DPU_HW_CDM_H */
|