123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998 |
- /*
- * Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
- * Copyright (C) 2013 Red Hat
- * Author: Rob Clark <[email protected]>
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License 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.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef __MSM_DRV_H__
- #define __MSM_DRV_H__
- #include <linux/kernel.h>
- #include <linux/clk.h>
- #include <linux/cpufreq.h>
- #include <linux/module.h>
- #include <linux/component.h>
- #include <linux/platform_device.h>
- #include <linux/pm.h>
- #include <linux/pm_runtime.h>
- #include <linux/slab.h>
- #include <linux/list.h>
- #include <linux/iommu.h>
- #include <linux/types.h>
- #include <linux/of_graph.h>
- #include <linux/of_device.h>
- #include <linux/sde_io_util.h>
- #include <asm/sizes.h>
- #include <linux/kthread.h>
- #include <drm/drmP.h>
- #include <drm/drm_atomic.h>
- #include <drm/drm_atomic_helper.h>
- #include <drm/drm_crtc_helper.h>
- #include <drm/drm_plane_helper.h>
- #include <drm/drm_fb_helper.h>
- #include <drm/msm_drm.h>
- #include <drm/drm_gem.h>
- #include "sde_power_handle.h"
- #define GET_MAJOR_REV(rev) ((rev) >> 28)
- #define GET_MINOR_REV(rev) (((rev) >> 16) & 0xFFF)
- #define GET_STEP_REV(rev) ((rev) & 0xFFFF)
- struct msm_kms;
- struct msm_gpu;
- struct msm_mmu;
- struct msm_mdss;
- struct msm_rd_state;
- struct msm_perf_state;
- struct msm_gem_submit;
- struct msm_fence_context;
- struct msm_fence_cb;
- struct msm_gem_address_space;
- struct msm_gem_vma;
- #define NUM_DOMAINS 4 /* one for KMS, then one per gpu core (?) */
- #define MAX_CRTCS 8
- #define MAX_PLANES 20
- #define MAX_ENCODERS 8
- #define MAX_BRIDGES 8
- #define MAX_CONNECTORS 8
- #define TEARDOWN_DEADLOCK_RETRY_MAX 5
- struct msm_file_private {
- rwlock_t queuelock;
- struct list_head submitqueues;
- int queueid;
- /* update the refcount when user driver calls power_ctrl IOCTL */
- unsigned short enable_refcnt;
- /* protects enable_refcnt */
- struct mutex power_lock;
- };
- enum msm_mdp_plane_property {
- /* blob properties, always put these first */
- PLANE_PROP_CSC_V1,
- PLANE_PROP_CSC_DMA_V1,
- PLANE_PROP_INFO,
- PLANE_PROP_SCALER_LUT_ED,
- PLANE_PROP_SCALER_LUT_CIR,
- PLANE_PROP_SCALER_LUT_SEP,
- PLANE_PROP_SKIN_COLOR,
- PLANE_PROP_SKY_COLOR,
- PLANE_PROP_FOLIAGE_COLOR,
- PLANE_PROP_VIG_GAMUT,
- PLANE_PROP_VIG_IGC,
- PLANE_PROP_DMA_IGC,
- PLANE_PROP_DMA_GC,
- /* # of blob properties */
- PLANE_PROP_BLOBCOUNT,
- /* range properties */
- PLANE_PROP_ZPOS = PLANE_PROP_BLOBCOUNT,
- PLANE_PROP_ALPHA,
- PLANE_PROP_COLOR_FILL,
- PLANE_PROP_H_DECIMATE,
- PLANE_PROP_V_DECIMATE,
- PLANE_PROP_INPUT_FENCE,
- PLANE_PROP_HUE_ADJUST,
- PLANE_PROP_SATURATION_ADJUST,
- PLANE_PROP_VALUE_ADJUST,
- PLANE_PROP_CONTRAST_ADJUST,
- PLANE_PROP_EXCL_RECT_V1,
- PLANE_PROP_PREFILL_SIZE,
- PLANE_PROP_PREFILL_TIME,
- PLANE_PROP_SCALER_V1,
- PLANE_PROP_SCALER_V2,
- PLANE_PROP_INVERSE_PMA,
- /* enum/bitmask properties */
- PLANE_PROP_BLEND_OP,
- PLANE_PROP_SRC_CONFIG,
- PLANE_PROP_FB_TRANSLATION_MODE,
- PLANE_PROP_MULTIRECT_MODE,
- /* total # of properties */
- PLANE_PROP_COUNT
- };
- enum msm_mdp_crtc_property {
- CRTC_PROP_INFO,
- CRTC_PROP_DEST_SCALER_LUT_ED,
- CRTC_PROP_DEST_SCALER_LUT_CIR,
- CRTC_PROP_DEST_SCALER_LUT_SEP,
- /* # of blob properties */
- CRTC_PROP_BLOBCOUNT,
- /* range properties */
- CRTC_PROP_INPUT_FENCE_TIMEOUT = CRTC_PROP_BLOBCOUNT,
- CRTC_PROP_OUTPUT_FENCE,
- CRTC_PROP_OUTPUT_FENCE_OFFSET,
- CRTC_PROP_DIM_LAYER_V1,
- CRTC_PROP_CORE_CLK,
- CRTC_PROP_CORE_AB,
- CRTC_PROP_CORE_IB,
- CRTC_PROP_LLCC_AB,
- CRTC_PROP_LLCC_IB,
- CRTC_PROP_DRAM_AB,
- CRTC_PROP_DRAM_IB,
- CRTC_PROP_ROT_PREFILL_BW,
- CRTC_PROP_ROT_CLK,
- CRTC_PROP_ROI_V1,
- CRTC_PROP_SECURITY_LEVEL,
- CRTC_PROP_IDLE_TIMEOUT,
- CRTC_PROP_DEST_SCALER,
- CRTC_PROP_CAPTURE_OUTPUT,
- CRTC_PROP_IDLE_PC_STATE,
- /* total # of properties */
- CRTC_PROP_COUNT
- };
- enum msm_mdp_conn_property {
- /* blob properties, always put these first */
- CONNECTOR_PROP_SDE_INFO,
- CONNECTOR_PROP_MODE_INFO,
- CONNECTOR_PROP_HDR_INFO,
- CONNECTOR_PROP_EXT_HDR_INFO,
- CONNECTOR_PROP_PP_DITHER,
- CONNECTOR_PROP_HDR_METADATA,
- /* # of blob properties */
- CONNECTOR_PROP_BLOBCOUNT,
- /* range properties */
- CONNECTOR_PROP_OUT_FB = CONNECTOR_PROP_BLOBCOUNT,
- CONNECTOR_PROP_RETIRE_FENCE,
- CONNECTOR_PROP_DST_X,
- CONNECTOR_PROP_DST_Y,
- CONNECTOR_PROP_DST_W,
- CONNECTOR_PROP_DST_H,
- CONNECTOR_PROP_ROI_V1,
- CONNECTOR_PROP_BL_SCALE,
- CONNECTOR_PROP_SV_BL_SCALE,
- /* enum/bitmask properties */
- CONNECTOR_PROP_TOPOLOGY_NAME,
- CONNECTOR_PROP_TOPOLOGY_CONTROL,
- CONNECTOR_PROP_AUTOREFRESH,
- CONNECTOR_PROP_LP,
- CONNECTOR_PROP_FB_TRANSLATION_MODE,
- CONNECTOR_PROP_QSYNC_MODE,
- CONNECTOR_PROP_CMD_FRAME_TRIGGER_MODE,
- /* total # of properties */
- CONNECTOR_PROP_COUNT
- };
- #define MSM_GPU_MAX_RINGS 4
- #define MAX_H_TILES_PER_DISPLAY 2
- /**
- * enum msm_display_compression_type - compression method used for pixel stream
- * @MSM_DISPLAY_COMPRESSION_NONE: Pixel data is not compressed
- * @MSM_DISPLAY_COMPRESSION_DSC: DSC compresison is used
- */
- enum msm_display_compression_type {
- MSM_DISPLAY_COMPRESSION_NONE,
- MSM_DISPLAY_COMPRESSION_DSC,
- };
- /**
- * enum msm_display_compression_ratio - compression ratio
- * @MSM_DISPLAY_COMPRESSION_NONE: no compression
- * @MSM_DISPLAY_COMPRESSION_RATIO_2_TO_1: 2 to 1 compression
- * @MSM_DISPLAY_COMPRESSION_RATIO_3_TO_1: 3 to 1 compression
- */
- enum msm_display_compression_ratio {
- MSM_DISPLAY_COMPRESSION_RATIO_NONE,
- MSM_DISPLAY_COMPRESSION_RATIO_2_TO_1,
- MSM_DISPLAY_COMPRESSION_RATIO_3_TO_1,
- MSM_DISPLAY_COMPRESSION_RATIO_MAX,
- };
- /**
- * enum msm_display_caps - features/capabilities supported by displays
- * @MSM_DISPLAY_CAP_VID_MODE: Video or "active" mode supported
- * @MSM_DISPLAY_CAP_CMD_MODE: Command mode supported
- * @MSM_DISPLAY_CAP_HOT_PLUG: Hot plug detection supported
- * @MSM_DISPLAY_CAP_EDID: EDID supported
- * @MSM_DISPLAY_ESD_ENABLED: ESD feature enabled
- * @MSM_DISPLAY_CAP_MST_MODE: Display with MST support
- */
- enum msm_display_caps {
- MSM_DISPLAY_CAP_VID_MODE = BIT(0),
- MSM_DISPLAY_CAP_CMD_MODE = BIT(1),
- MSM_DISPLAY_CAP_HOT_PLUG = BIT(2),
- MSM_DISPLAY_CAP_EDID = BIT(3),
- MSM_DISPLAY_ESD_ENABLED = BIT(4),
- MSM_DISPLAY_CAP_MST_MODE = BIT(5),
- };
- /**
- * enum msm_event_wait - type of HW events to wait for
- * @MSM_ENC_COMMIT_DONE - wait for the driver to flush the registers to HW
- * @MSM_ENC_TX_COMPLETE - wait for the HW to transfer the frame to panel
- * @MSM_ENC_VBLANK - wait for the HW VBLANK event (for driver-internal waiters)
- * @MSM_ENC_ACTIVE_REGION - wait for the TG to be in active pixel region
- */
- enum msm_event_wait {
- MSM_ENC_COMMIT_DONE = 0,
- MSM_ENC_TX_COMPLETE,
- MSM_ENC_VBLANK,
- MSM_ENC_ACTIVE_REGION,
- };
- /**
- * struct msm_roi_alignment - region of interest alignment restrictions
- * @xstart_pix_align: left x offset alignment restriction
- * @width_pix_align: width alignment restriction
- * @ystart_pix_align: top y offset alignment restriction
- * @height_pix_align: height alignment restriction
- * @min_width: minimum width restriction
- * @min_height: minimum height restriction
- */
- struct msm_roi_alignment {
- uint32_t xstart_pix_align;
- uint32_t width_pix_align;
- uint32_t ystart_pix_align;
- uint32_t height_pix_align;
- uint32_t min_width;
- uint32_t min_height;
- };
- /**
- * struct msm_roi_caps - display's region of interest capabilities
- * @enabled: true if some region of interest is supported
- * @merge_rois: merge rois before sending to display
- * @num_roi: maximum number of rois supported
- * @align: roi alignment restrictions
- */
- struct msm_roi_caps {
- bool enabled;
- bool merge_rois;
- uint32_t num_roi;
- struct msm_roi_alignment align;
- };
- /**
- * struct msm_display_dsc_info - defines dsc configuration
- * @version: DSC version.
- * @scr_rev: DSC revision.
- * @pic_height: Picture height in pixels.
- * @pic_width: Picture width in pixels.
- * @initial_lines: Number of initial lines stored in encoder.
- * @pkt_per_line: Number of packets per line.
- * @bytes_in_slice: Number of bytes in slice.
- * @eol_byte_num: Valid bytes at the end of line.
- * @pclk_per_line: Compressed width.
- * @full_frame_slices: Number of slice per interface.
- * @slice_height: Slice height in pixels.
- * @slice_width: Slice width in pixels.
- * @chunk_size: Chunk size in bytes for slice multiplexing.
- * @slice_last_group_size: Size of last group in pixels.
- * @bpp: Target bits per pixel.
- * @bpc: Number of bits per component.
- * @line_buf_depth: Line buffer bit depth.
- * @block_pred_enable: Block prediction enabled/disabled.
- * @vbr_enable: VBR mode.
- * @enable_422: Indicates if input uses 4:2:2 sampling.
- * @convert_rgb: DSC color space conversion.
- * @input_10_bits: 10 bit per component input.
- * @slice_per_pkt: Number of slices per packet.
- * @initial_dec_delay: Initial decoding delay.
- * @initial_xmit_delay: Initial transmission delay.
- * @initial_scale_value: Scale factor value at the beginning of a slice.
- * @scale_decrement_interval: Scale set up at the beginning of a slice.
- * @scale_increment_interval: Scale set up at the end of a slice.
- * @first_line_bpg_offset: Extra bits allocated on the first line of a slice.
- * @nfl_bpg_offset: Slice specific settings.
- * @slice_bpg_offset: Slice specific settings.
- * @initial_offset: Initial offset at the start of a slice.
- * @final_offset: Maximum end-of-slice value.
- * @rc_model_size: Number of bits in RC model.
- * @det_thresh_flatness: Flatness threshold.
- * @max_qp_flatness: Maximum QP for flatness adjustment.
- * @min_qp_flatness: Minimum QP for flatness adjustment.
- * @edge_factor: Ratio to detect presence of edge.
- * @quant_incr_limit0: QP threshold.
- * @quant_incr_limit1: QP threshold.
- * @tgt_offset_hi: Upper end of variability range.
- * @tgt_offset_lo: Lower end of variability range.
- * @buf_thresh: Thresholds in RC model
- * @range_min_qp: Min QP allowed.
- * @range_max_qp: Max QP allowed.
- * @range_bpg_offset: Bits per group adjustment.
- * @extra_width: Extra width required in timing calculations.
- */
- struct msm_display_dsc_info {
- u8 version;
- u8 scr_rev;
- int pic_height;
- int pic_width;
- int slice_height;
- int slice_width;
- int initial_lines;
- int pkt_per_line;
- int bytes_in_slice;
- int bytes_per_pkt;
- int eol_byte_num;
- int pclk_per_line;
- int full_frame_slices;
- int slice_last_group_size;
- int bpp;
- int bpc;
- int line_buf_depth;
- int slice_per_pkt;
- int chunk_size;
- bool block_pred_enable;
- int vbr_enable;
- int enable_422;
- int convert_rgb;
- int input_10_bits;
- int initial_dec_delay;
- int initial_xmit_delay;
- int initial_scale_value;
- int scale_decrement_interval;
- int scale_increment_interval;
- int first_line_bpg_offset;
- int nfl_bpg_offset;
- int slice_bpg_offset;
- int initial_offset;
- int final_offset;
- int rc_model_size;
- int det_thresh_flatness;
- int max_qp_flatness;
- int min_qp_flatness;
- int edge_factor;
- int quant_incr_limit0;
- int quant_incr_limit1;
- int tgt_offset_hi;
- int tgt_offset_lo;
- u32 *buf_thresh;
- char *range_min_qp;
- char *range_max_qp;
- char *range_bpg_offset;
- u32 extra_width;
- };
- /**
- * struct msm_compression_info - defined panel compression
- * @comp_type: type of compression supported
- * @comp_ratio: compression ratio
- * @dsc_info: dsc configuration if the compression
- * supported is DSC
- */
- struct msm_compression_info {
- enum msm_display_compression_type comp_type;
- enum msm_display_compression_ratio comp_ratio;
- union{
- struct msm_display_dsc_info dsc_info;
- };
- };
- /**
- * struct msm_display_topology - defines a display topology pipeline
- * @num_lm: number of layer mixers used
- * @num_enc: number of compression encoder blocks used
- * @num_intf: number of interfaces the panel is mounted on
- */
- struct msm_display_topology {
- u32 num_lm;
- u32 num_enc;
- u32 num_intf;
- };
- /**
- * struct msm_mode_info - defines all msm custom mode info
- * @frame_rate: frame_rate of the mode
- * @vtotal: vtotal calculated for the mode
- * @prefill_lines: prefill lines based on porches.
- * @jitter_numer: display panel jitter numerator configuration
- * @jitter_denom: display panel jitter denominator configuration
- * @clk_rate: DSI bit clock per lane in HZ.
- * @topology: supported topology for the mode
- * @comp_info: compression info supported
- * @roi_caps: panel roi capabilities
- * @wide_bus_en: wide-bus mode cfg for interface module
- * @mdp_transfer_time_us Specifies the mdp transfer time for command mode
- * panels in microseconds.
- */
- struct msm_mode_info {
- uint32_t frame_rate;
- uint32_t vtotal;
- uint32_t prefill_lines;
- uint32_t jitter_numer;
- uint32_t jitter_denom;
- uint64_t clk_rate;
- struct msm_display_topology topology;
- struct msm_compression_info comp_info;
- struct msm_roi_caps roi_caps;
- bool wide_bus_en;
- u32 mdp_transfer_time_us;
- };
- /**
- * struct msm_display_info - defines display properties
- * @intf_type: DRM_MODE_CONNECTOR_ display type
- * @capabilities: Bitmask of display flags
- * @num_of_h_tiles: Number of horizontal tiles in case of split interface
- * @h_tile_instance: Controller instance used per tile. Number of elements is
- * based on num_of_h_tiles
- * @is_connected: Set to true if display is connected
- * @width_mm: Physical width
- * @height_mm: Physical height
- * @max_width: Max width of display. In case of hot pluggable display
- * this is max width supported by controller
- * @max_height: Max height of display. In case of hot pluggable display
- * this is max height supported by controller
- * @clk_rate: DSI bit clock per lane in HZ.
- * @is_primary: Set to true if display is primary display
- * @is_te_using_watchdog_timer: Boolean to indicate watchdog TE is
- * used instead of panel TE in cmd mode panels
- * @roi_caps: Region of interest capability info
- * @qsync_min_fps Minimum fps supported by Qsync feature
- * @te_source vsync source pin information
- */
- struct msm_display_info {
- int intf_type;
- uint32_t capabilities;
- uint32_t num_of_h_tiles;
- uint32_t h_tile_instance[MAX_H_TILES_PER_DISPLAY];
- bool is_connected;
- unsigned int width_mm;
- unsigned int height_mm;
- uint32_t max_width;
- uint32_t max_height;
- uint64_t clk_rate;
- bool is_primary;
- bool is_te_using_watchdog_timer;
- struct msm_roi_caps roi_caps;
- uint32_t qsync_min_fps;
- uint32_t te_source;
- };
- #define MSM_MAX_ROI 4
- /**
- * struct msm_roi_list - list of regions of interest for a drm object
- * @num_rects: number of valid rectangles in the roi array
- * @roi: list of roi rectangles
- */
- struct msm_roi_list {
- uint32_t num_rects;
- struct drm_clip_rect roi[MSM_MAX_ROI];
- };
- /**
- * struct - msm_display_kickoff_params - info for display features at kickoff
- * @rois: Regions of interest structure for mapping CRTC to Connector output
- * @qsync_mode: Qsync mode, where 0: disabled 1: continuous mode
- * @qsync_update: Qsync settings were changed/updated
- */
- struct msm_display_kickoff_params {
- struct msm_roi_list *rois;
- struct drm_msm_ext_hdr_metadata *hdr_meta;
- uint32_t qsync_mode;
- bool qsync_update;
- };
- /**
- * struct msm_drm_event - defines custom event notification struct
- * @base: base object required for event notification by DRM framework.
- * @event: event object required for event notification by DRM framework.
- * @info: contains information of DRM object for which events has been
- * requested.
- * @data: memory location which contains response payload for event.
- */
- struct msm_drm_event {
- struct drm_pending_event base;
- struct drm_event event;
- struct drm_msm_event_req info;
- u8 data[];
- };
- /* Commit/Event thread specific structure */
- struct msm_drm_thread {
- struct drm_device *dev;
- struct task_struct *thread;
- unsigned int crtc_id;
- struct kthread_worker worker;
- };
- struct msm_drm_private {
- struct drm_device *dev;
- struct msm_kms *kms;
- struct sde_power_handle phandle;
- /* subordinate devices, if present: */
- struct platform_device *gpu_pdev;
- /* top level MDSS wrapper device (for MDP5 only) */
- struct msm_mdss *mdss;
- /* possibly this should be in the kms component, but it is
- * shared by both mdp4 and mdp5..
- */
- struct hdmi *hdmi;
- /* eDP is for mdp5 only, but kms has not been created
- * when edp_bind() and edp_init() are called. Here is the only
- * place to keep the edp instance.
- */
- struct msm_edp *edp;
- /* DSI is shared by mdp4 and mdp5 */
- struct msm_dsi *dsi[2];
- /* when we have more than one 'msm_gpu' these need to be an array: */
- struct msm_gpu *gpu;
- struct msm_file_private *lastctx;
- struct drm_fb_helper *fbdev;
- struct msm_rd_state *rd; /* debugfs to dump all submits */
- struct msm_rd_state *hangrd; /* debugfs to dump hanging submits */
- struct msm_perf_state *perf;
- /* list of GEM objects: */
- struct list_head inactive_list;
- struct workqueue_struct *wq;
- /* crtcs pending async atomic updates: */
- uint32_t pending_crtcs;
- wait_queue_head_t pending_crtcs_event;
- unsigned int num_planes;
- struct drm_plane *planes[MAX_PLANES];
- unsigned int num_crtcs;
- struct drm_crtc *crtcs[MAX_CRTCS];
- struct msm_drm_thread disp_thread[MAX_CRTCS];
- struct msm_drm_thread event_thread[MAX_CRTCS];
- struct task_struct *pp_event_thread;
- struct kthread_worker pp_event_worker;
- unsigned int num_encoders;
- struct drm_encoder *encoders[MAX_ENCODERS];
- unsigned int num_bridges;
- struct drm_bridge *bridges[MAX_BRIDGES];
- unsigned int num_connectors;
- struct drm_connector *connectors[MAX_CONNECTORS];
- /* Properties */
- struct drm_property *plane_property[PLANE_PROP_COUNT];
- struct drm_property *crtc_property[CRTC_PROP_COUNT];
- struct drm_property *conn_property[CONNECTOR_PROP_COUNT];
- /* Color processing properties for the crtc */
- struct drm_property **cp_property;
- /* VRAM carveout, used when no IOMMU: */
- struct {
- unsigned long size;
- dma_addr_t paddr;
- /* NOTE: mm managed at the page level, size is in # of pages
- * and position mm_node->start is in # of pages:
- */
- struct drm_mm mm;
- spinlock_t lock; /* Protects drm_mm node allocation/removal */
- } vram;
- struct notifier_block vmap_notifier;
- struct shrinker shrinker;
- struct drm_atomic_state *pm_state;
- /* task holding struct_mutex.. currently only used in submit path
- * to detect and reject faults from copy_from_user() for submit
- * ioctl.
- */
- struct task_struct *struct_mutex_task;
- /* list of clients waiting for events */
- struct list_head client_event_list;
- /* whether registered and drm_dev_unregister should be called */
- bool registered;
- /* msm drv debug root node */
- struct dentry *debug_root;
- /* update the flag when msm driver receives shutdown notification */
- bool shutdown_in_progress;
- };
- /* get struct msm_kms * from drm_device * */
- #define ddev_to_msm_kms(D) ((D) && (D)->dev_private ? \
- ((struct msm_drm_private *)((D)->dev_private))->kms : NULL)
- struct msm_format {
- uint32_t pixel_format;
- };
- int msm_atomic_prepare_fb(struct drm_plane *plane,
- struct drm_plane_state *new_state);
- void msm_atomic_commit_tail(struct drm_atomic_state *state);
- int msm_atomic_commit(struct drm_device *dev,
- struct drm_atomic_state *state, bool nonblock);
- /* callback from wq once fence has passed: */
- struct msm_fence_cb {
- struct work_struct work;
- uint32_t fence;
- void (*func)(struct msm_fence_cb *cb);
- };
- void __msm_fence_worker(struct work_struct *work);
- #define INIT_FENCE_CB(_cb, _func) do { \
- INIT_WORK(&(_cb)->work, __msm_fence_worker); \
- (_cb)->func = _func; \
- } while (0)
- struct drm_atomic_state *msm_atomic_state_alloc(struct drm_device *dev);
- void msm_atomic_state_clear(struct drm_atomic_state *state);
- void msm_atomic_state_free(struct drm_atomic_state *state);
- void msm_gem_unmap_vma(struct msm_gem_address_space *aspace,
- struct msm_gem_vma *vma, struct sg_table *sgt,
- unsigned int flags);
- int msm_gem_map_vma(struct msm_gem_address_space *aspace,
- struct msm_gem_vma *vma, struct sg_table *sgt, int npages,
- unsigned int flags);
- struct device *msm_gem_get_aspace_device(struct msm_gem_address_space *aspace);
- void msm_gem_address_space_put(struct msm_gem_address_space *aspace);
- struct msm_gem_address_space *
- msm_gem_address_space_create(struct device *dev, struct iommu_domain *domain,
- const char *name);
- /* For SDE display */
- struct msm_gem_address_space *
- msm_gem_smmu_address_space_create(struct drm_device *dev, struct msm_mmu *mmu,
- const char *name);
- /**
- * msm_gem_add_obj_to_aspace_active_list: adds obj to active obj list in aspace
- */
- void msm_gem_add_obj_to_aspace_active_list(
- struct msm_gem_address_space *aspace,
- struct drm_gem_object *obj);
- /**
- * msm_gem_remove_obj_from_aspace_active_list: removes obj from active obj
- * list in aspace
- */
- void msm_gem_remove_obj_from_aspace_active_list(
- struct msm_gem_address_space *aspace,
- struct drm_gem_object *obj);
- /**
- * msm_gem_smmu_address_space_get: returns the aspace pointer for the requested
- * domain
- */
- struct msm_gem_address_space *
- msm_gem_smmu_address_space_get(struct drm_device *dev,
- unsigned int domain);
- int msm_register_mmu(struct drm_device *dev, struct msm_mmu *mmu);
- void msm_unregister_mmu(struct drm_device *dev, struct msm_mmu *mmu);
- /**
- * msm_gem_aspace_domain_attach_detach: function to inform the attach/detach
- * of the domain for this aspace
- */
- void msm_gem_aspace_domain_attach_detach_update(
- struct msm_gem_address_space *aspace,
- bool is_detach);
- /**
- * msm_gem_address_space_register_cb: function to register callback for attach
- * and detach of the domain
- */
- int msm_gem_address_space_register_cb(
- struct msm_gem_address_space *aspace,
- void (*cb)(void *, bool),
- void *cb_data);
- /**
- * msm_gem_address_space_register_cb: function to unregister callback
- */
- int msm_gem_address_space_unregister_cb(
- struct msm_gem_address_space *aspace,
- void (*cb)(void *, bool),
- void *cb_data);
- void msm_gem_submit_free(struct msm_gem_submit *submit);
- int msm_ioctl_gem_submit(struct drm_device *dev, void *data,
- struct drm_file *file);
- void msm_gem_shrinker_init(struct drm_device *dev);
- void msm_gem_shrinker_cleanup(struct drm_device *dev);
- void msm_gem_sync(struct drm_gem_object *obj);
- int msm_gem_mmap_obj(struct drm_gem_object *obj,
- struct vm_area_struct *vma);
- int msm_gem_mmap(struct file *filp, struct vm_area_struct *vma);
- vm_fault_t msm_gem_fault(struct vm_fault *vmf);
- uint64_t msm_gem_mmap_offset(struct drm_gem_object *obj);
- int msm_gem_get_iova(struct drm_gem_object *obj,
- struct msm_gem_address_space *aspace, uint64_t *iova);
- uint64_t msm_gem_iova(struct drm_gem_object *obj,
- struct msm_gem_address_space *aspace);
- struct page **msm_gem_get_pages(struct drm_gem_object *obj);
- void msm_gem_put_pages(struct drm_gem_object *obj);
- void msm_gem_put_iova(struct drm_gem_object *obj,
- struct msm_gem_address_space *aspace);
- dma_addr_t msm_gem_get_dma_addr(struct drm_gem_object *obj);
- int msm_gem_dumb_create(struct drm_file *file, struct drm_device *dev,
- struct drm_mode_create_dumb *args);
- int msm_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
- uint32_t handle, uint64_t *offset);
- struct sg_table *msm_gem_prime_get_sg_table(struct drm_gem_object *obj);
- void *msm_gem_prime_vmap(struct drm_gem_object *obj);
- void msm_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
- int msm_gem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma);
- struct reservation_object *msm_gem_prime_res_obj(struct drm_gem_object *obj);
- struct drm_gem_object *msm_gem_prime_import_sg_table(struct drm_device *dev,
- struct dma_buf_attachment *attach, struct sg_table *sg);
- int msm_gem_prime_pin(struct drm_gem_object *obj);
- void msm_gem_prime_unpin(struct drm_gem_object *obj);
- struct drm_gem_object *msm_gem_prime_import(struct drm_device *dev,
- struct dma_buf *dma_buf);
- void *msm_gem_get_vaddr(struct drm_gem_object *obj);
- void *msm_gem_get_vaddr_active(struct drm_gem_object *obj);
- void msm_gem_put_vaddr(struct drm_gem_object *obj);
- int msm_gem_madvise(struct drm_gem_object *obj, unsigned madv);
- int msm_gem_cpu_prep(struct drm_gem_object *obj, uint32_t op, ktime_t *timeout);
- int msm_gem_cpu_fini(struct drm_gem_object *obj);
- void msm_gem_free_object(struct drm_gem_object *obj);
- int msm_gem_new_handle(struct drm_device *dev, struct drm_file *file,
- uint32_t size, uint32_t flags, uint32_t *handle);
- struct drm_gem_object *msm_gem_new(struct drm_device *dev,
- uint32_t size, uint32_t flags);
- struct drm_gem_object *msm_gem_new_locked(struct drm_device *dev,
- uint32_t size, uint32_t flags);
- void *msm_gem_kernel_new(struct drm_device *dev, uint32_t size,
- uint32_t flags, struct msm_gem_address_space *aspace,
- struct drm_gem_object **bo, uint64_t *iova);
- void *msm_gem_kernel_new_locked(struct drm_device *dev, uint32_t size,
- uint32_t flags, struct msm_gem_address_space *aspace,
- struct drm_gem_object **bo, uint64_t *iova);
- struct drm_gem_object *msm_gem_import(struct drm_device *dev,
- struct dma_buf *dmabuf, struct sg_table *sgt);
- int msm_gem_delayed_import(struct drm_gem_object *obj);
- void msm_framebuffer_set_kmap(struct drm_framebuffer *fb, bool enable);
- void msm_framebuffer_set_keepattrs(struct drm_framebuffer *fb, bool enable);
- int msm_framebuffer_prepare(struct drm_framebuffer *fb,
- struct msm_gem_address_space *aspace);
- void msm_framebuffer_cleanup(struct drm_framebuffer *fb,
- struct msm_gem_address_space *aspace);
- uint32_t msm_framebuffer_iova(struct drm_framebuffer *fb,
- struct msm_gem_address_space *aspace, int plane);
- uint32_t msm_framebuffer_phys(struct drm_framebuffer *fb, int plane);
- struct drm_gem_object *msm_framebuffer_bo(struct drm_framebuffer *fb, int plane);
- const struct msm_format *msm_framebuffer_format(struct drm_framebuffer *fb);
- struct drm_framebuffer *msm_framebuffer_init(struct drm_device *dev,
- const struct drm_mode_fb_cmd2 *mode_cmd,
- struct drm_gem_object **bos);
- struct drm_framebuffer *msm_framebuffer_create(struct drm_device *dev,
- struct drm_file *file, const struct drm_mode_fb_cmd2 *mode_cmd);
- struct drm_framebuffer * msm_alloc_stolen_fb(struct drm_device *dev,
- int w, int h, int p, uint32_t format);
- struct drm_fb_helper *msm_fbdev_init(struct drm_device *dev);
- void msm_fbdev_free(struct drm_device *dev);
- struct hdmi;
- #ifdef CONFIG_DRM_MSM_HDMI
- int msm_hdmi_modeset_init(struct hdmi *hdmi, struct drm_device *dev,
- struct drm_encoder *encoder);
- void __init msm_hdmi_register(void);
- void __exit msm_hdmi_unregister(void);
- #else
- static inline void __init msm_hdmi_register(void)
- {
- }
- static inline void __exit msm_hdmi_unregister(void)
- {
- }
- #endif
- struct msm_edp;
- #ifdef CONFIG_DRM_MSM_EDP
- void __init msm_edp_register(void);
- void __exit msm_edp_unregister(void);
- int msm_edp_modeset_init(struct msm_edp *edp, struct drm_device *dev,
- struct drm_encoder *encoder);
- #else
- static inline void __init msm_edp_register(void)
- {
- }
- static inline void __exit msm_edp_unregister(void)
- {
- }
- static inline int msm_edp_modeset_init(struct msm_edp *edp,
- struct drm_device *dev, struct drm_encoder *encoder)
- {
- return -EINVAL;
- }
- #endif
- struct msm_dsi;
- /* *
- * msm_mode_object_event_notify - notify user-space clients of drm object
- * events.
- * @obj: mode object (crtc/connector) that is generating the event.
- * @event: event that needs to be notified.
- * @payload: payload for the event.
- */
- void msm_mode_object_event_notify(struct drm_mode_object *obj,
- struct drm_device *dev, struct drm_event *event, u8 *payload);
- #ifndef CONFIG_DRM_MSM_DSI
- void __init msm_dsi_register(void);
- void __exit msm_dsi_unregister(void);
- int msm_dsi_modeset_init(struct msm_dsi *msm_dsi, struct drm_device *dev,
- struct drm_encoder *encoder);
- #else
- static inline void __init msm_dsi_register(void)
- {
- }
- static inline void __exit msm_dsi_unregister(void)
- {
- }
- static inline int msm_dsi_modeset_init(struct msm_dsi *msm_dsi,
- struct drm_device *dev,
- struct drm_encoder *encoder)
- {
- return -EINVAL;
- }
- #endif
- #ifdef CONFIG_DRM_MSM_MDP5
- void __init msm_mdp_register(void);
- void __exit msm_mdp_unregister(void);
- #else
- static inline void __init msm_mdp_register(void)
- {
- }
- static inline void __exit msm_mdp_unregister(void)
- {
- }
- #endif
- #ifdef CONFIG_DEBUG_FS
- void msm_gem_describe(struct drm_gem_object *obj, struct seq_file *m);
- void msm_gem_describe_objects(struct list_head *list, struct seq_file *m);
- void msm_framebuffer_describe(struct drm_framebuffer *fb, struct seq_file *m);
- int msm_debugfs_late_init(struct drm_device *dev);
- int msm_rd_debugfs_init(struct drm_minor *minor);
- void msm_rd_debugfs_cleanup(struct msm_drm_private *priv);
- void msm_rd_dump_submit(struct msm_rd_state *rd, struct msm_gem_submit *submit,
- const char *fmt, ...);
- int msm_perf_debugfs_init(struct drm_minor *minor);
- void msm_perf_debugfs_cleanup(struct msm_drm_private *priv);
- #else
- static inline int msm_debugfs_late_init(struct drm_device *dev) { return 0; }
- static inline void msm_rd_dump_submit(struct msm_rd_state *rd, struct msm_gem_submit *submit,
- const char *fmt, ...) {}
- static inline void msm_rd_debugfs_cleanup(struct msm_drm_private *priv) {}
- static inline void msm_perf_debugfs_cleanup(struct msm_drm_private *priv) {}
- #endif
- struct clk *msm_clk_get(struct platform_device *pdev, const char *name);
- int msm_clk_bulk_get(struct device *dev, struct clk_bulk_data **bulk);
- struct clk *msm_clk_bulk_get_clock(struct clk_bulk_data *bulk, int count,
- const char *name);
- void __iomem *msm_ioremap(struct platform_device *pdev, const char *name,
- const char *dbgname);
- unsigned long msm_iomap_size(struct platform_device *pdev, const char *name);
- void msm_iounmap(struct platform_device *dev, void __iomem *addr);
- void msm_writel(u32 data, void __iomem *addr);
- u32 msm_readl(const void __iomem *addr);
- #define DBG(fmt, ...) DRM_DEBUG_DRIVER(fmt"\n", ##__VA_ARGS__)
- #define VERB(fmt, ...) if (0) DRM_DEBUG_DRIVER(fmt"\n", ##__VA_ARGS__)
- static inline int align_pitch(int width, int bpp)
- {
- int bytespp = (bpp + 7) / 8;
- /* adreno needs pitch aligned to 32 pixels: */
- return bytespp * ALIGN(width, 32);
- }
- /* for the generated headers: */
- #define INVALID_IDX(idx) ({BUG(); 0;})
- #define fui(x) ({BUG(); 0;})
- #define util_float_to_half(x) ({BUG(); 0;})
- #define FIELD(val, name) (((val) & name ## __MASK) >> name ## __SHIFT)
- /* for conditionally setting boolean flag(s): */
- #define COND(bool, val) ((bool) ? (val) : 0)
- static inline unsigned long timeout_to_jiffies(const ktime_t *timeout)
- {
- ktime_t now = ktime_get();
- unsigned long remaining_jiffies;
- if (ktime_compare(*timeout, now) < 0) {
- remaining_jiffies = 0;
- } else {
- ktime_t rem = ktime_sub(*timeout, now);
- struct timespec ts = ktime_to_timespec(rem);
- remaining_jiffies = timespec_to_jiffies(&ts);
- }
- return remaining_jiffies;
- }
- #endif /* __MSM_DRV_H__ */
|