blob: 2f9ff5b76c3bb8b8f285d583978ce8c756da5177 [file] [log] [blame]
Narendra Muppalla1b0b3352015-09-29 10:16:51 -07001/* Copyright (c) 2015-2016, The Linux Foundation. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12
Clarence Ipc475b082016-06-26 09:27:23 -040013#ifndef _SDE_HW_CTL_H
14#define _SDE_HW_CTL_H
Narendra Muppalla1b0b3352015-09-29 10:16:51 -070015
16#include "sde_hw_mdss.h"
Clarence Ipc475b082016-06-26 09:27:23 -040017#include "sde_hw_util.h"
Narendra Muppalla1b0b3352015-09-29 10:16:51 -070018#include "sde_hw_catalog.h"
19
Lloyd Atkinson5d722782016-05-30 14:09:41 -040020/**
21 * sde_ctl_mode_sel: Interface mode selection
22 * SDE_CTL_MODE_SEL_VID: Video mode interface
23 * SDE_CTL_MODE_SEL_CMD: Command mode interface
24 */
25enum sde_ctl_mode_sel {
26 SDE_CTL_MODE_SEL_VID = 0,
27 SDE_CTL_MODE_SEL_CMD
28};
29
Narendra Muppalla1b0b3352015-09-29 10:16:51 -070030struct sde_hw_ctl;
31/**
32 * struct sde_hw_stage_cfg - blending stage cfg
33 * @stage
Narendra Muppalla1b0b3352015-09-29 10:16:51 -070034 */
35struct sde_hw_stage_cfg {
Dhaval Patel48c76022016-09-01 17:51:23 -070036 enum sde_sspp stage[CRTC_DUAL_MIXERS][SDE_STAGE_MAX][PIPES_PER_STAGE];
Narendra Muppalla1b0b3352015-09-29 10:16:51 -070037};
38
39/**
Lloyd Atkinson5d722782016-05-30 14:09:41 -040040 * struct sde_hw_intf_cfg :Describes how the SDE writes data to output interface
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040041 * @intf : Interface id
Lloyd Atkinson5d722782016-05-30 14:09:41 -040042 * @wb: Writeback id
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040043 * @mode_3d: 3d mux configuration
Lloyd Atkinson5d722782016-05-30 14:09:41 -040044 * @intf_mode_sel: Interface mode, cmd / vid
45 * @stream_sel: Stream selection for multi-stream interfaces
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040046 */
47struct sde_hw_intf_cfg {
48 enum sde_intf intf;
49 enum sde_wb wb;
50 enum sde_3d_blend_mode mode_3d;
Lloyd Atkinson5d722782016-05-30 14:09:41 -040051 enum sde_ctl_mode_sel intf_mode_sel;
52 int stream_sel;
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040053};
54
55/**
Narendra Muppalla1b0b3352015-09-29 10:16:51 -070056 * struct sde_hw_ctl_ops - Interface to the wb Hw driver functions
57 * Assumption is these functions will be called after clocks are enabled
58 */
59struct sde_hw_ctl_ops {
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040060 /**
61 * kickoff hw operation for Sw controlled interfaces
62 * DSI cmd mode and WB interface are SW controlled
63 * @ctx : ctl path ctx pointer
64 */
Lloyd Atkinson5d722782016-05-30 14:09:41 -040065 void (*trigger_start)(struct sde_hw_ctl *ctx);
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040066
67 /**
Lloyd Atkinson5d722782016-05-30 14:09:41 -040068 * Clear the value of the cached pending_flush_mask
69 * No effect on hardware
70 * @ctx : ctl path ctx pointer
71 */
72 void (*clear_pending_flush)(struct sde_hw_ctl *ctx);
73
74 /**
Clarence Ip110d15c2016-08-16 14:44:41 -040075 * Query the value of the cached pending_flush_mask
76 * No effect on hardware
77 * @ctx : ctl path ctx pointer
78 */
79 u32 (*get_pending_flush)(struct sde_hw_ctl *ctx);
80
81 /**
Lloyd Atkinson5d722782016-05-30 14:09:41 -040082 * OR in the given flushbits to the cached pending_flush_mask
83 * No effect on hardware
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040084 * @ctx : ctl path ctx pointer
85 * @flushbits : module flushmask
86 */
Lloyd Atkinson5d722782016-05-30 14:09:41 -040087 void (*update_pending_flush)(struct sde_hw_ctl *ctx,
88 u32 flushbits);
89
90 /**
91 * Write the value of the pending_flush_mask to hardware
92 * @ctx : ctl path ctx pointer
93 */
94 void (*trigger_flush)(struct sde_hw_ctl *ctx);
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040095
96 /**
97 * Setup ctl_path interface config
98 * @ctx
99 * @cfg : interface config structure pointer
100 */
101 void (*setup_intf_cfg)(struct sde_hw_ctl *ctx,
102 struct sde_hw_intf_cfg *cfg);
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700103
104 int (*reset)(struct sde_hw_ctl *c);
105
Dhaval Patel48c76022016-09-01 17:51:23 -0700106 uint32_t (*get_bitmask_sspp)(struct sde_hw_ctl *ctx,
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700107 enum sde_sspp blk);
108
Dhaval Patel48c76022016-09-01 17:51:23 -0700109 uint32_t (*get_bitmask_mixer)(struct sde_hw_ctl *ctx,
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700110 enum sde_lm blk);
111
112 int (*get_bitmask_dspp)(struct sde_hw_ctl *ctx,
113 u32 *flushbits,
114 enum sde_dspp blk);
115
116 int (*get_bitmask_intf)(struct sde_hw_ctl *ctx,
117 u32 *flushbits,
118 enum sde_intf blk);
119
120 int (*get_bitmask_cdm)(struct sde_hw_ctl *ctx,
121 u32 *flushbits,
122 enum sde_cdm blk);
123
Alan Kwong3232ca52016-07-29 02:27:47 -0400124 int (*get_bitmask_wb)(struct sde_hw_ctl *ctx,
125 u32 *flushbits,
126 enum sde_wb blk);
127
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700128 void (*setup_blendstage)(struct sde_hw_ctl *ctx,
Dhaval Patel44f12472016-08-29 12:19:47 -0700129 enum sde_lm lm, struct sde_hw_stage_cfg *cfg, u32 index);
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700130};
131
132/**
133 * struct sde_hw_ctl : CTL PATH driver object
Lloyd Atkinson5d722782016-05-30 14:09:41 -0400134 * @hw: block register map object
135 * @idx: control path index
136 * @ctl_hw_caps: control path capabilities
137 * @mixer_count: number of mixers
138 * @mixer_hw_caps: mixer hardware capabilities
139 * @pending_flush_mask: storage for pending ctl_flush managed via ops
140 * @ops: operation list
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700141 */
142struct sde_hw_ctl {
143 /* base */
144 struct sde_hw_blk_reg_map hw;
145
146 /* ctl path */
147 int idx;
148 const struct sde_ctl_cfg *caps;
149 int mixer_count;
150 const struct sde_lm_cfg *mixer_hw_caps;
Lloyd Atkinson5d722782016-05-30 14:09:41 -0400151 u32 pending_flush_mask;
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700152
153 /* ops */
154 struct sde_hw_ctl_ops ops;
155};
156
157/**
158 * sde_hw_ctl_init(): Initializes the ctl_path hw driver object.
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -0400159 * should be called before accessing every ctl path registers.
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700160 * @idx: ctl_path index for which driver object is required
161 * @addr: mapped register io address of MDP
162 * @m : pointer to mdss catalog data
163 */
164struct sde_hw_ctl *sde_hw_ctl_init(enum sde_ctl idx,
165 void __iomem *addr,
166 struct sde_mdss_cfg *m);
167
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -0400168/**
169 * sde_hw_ctl_destroy(): Destroys ctl driver context
170 * should be called to free the context
171 */
172void sde_hw_ctl_destroy(struct sde_hw_ctl *ctx);
173
Clarence Ipc475b082016-06-26 09:27:23 -0400174#endif /*_SDE_HW_CTL_H */