blob: 007cb8036dd0e668a6af707fefb5833b8021ea21 [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
34 * @border_enable
35 */
36struct sde_hw_stage_cfg {
37 enum sde_sspp stage[SDE_STAGE_MAX][PIPES_PER_STAGE];
38 u8 border_enable;
39};
40
41/**
Lloyd Atkinson5d722782016-05-30 14:09:41 -040042 * struct sde_hw_intf_cfg :Describes how the SDE writes data to output interface
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040043 * @intf : Interface id
Lloyd Atkinson5d722782016-05-30 14:09:41 -040044 * @wb: Writeback id
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040045 * @mode_3d: 3d mux configuration
Lloyd Atkinson5d722782016-05-30 14:09:41 -040046 * @intf_mode_sel: Interface mode, cmd / vid
47 * @stream_sel: Stream selection for multi-stream interfaces
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040048 */
49struct sde_hw_intf_cfg {
50 enum sde_intf intf;
51 enum sde_wb wb;
52 enum sde_3d_blend_mode mode_3d;
Lloyd Atkinson5d722782016-05-30 14:09:41 -040053 enum sde_ctl_mode_sel intf_mode_sel;
54 int stream_sel;
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040055};
56
57/**
Narendra Muppalla1b0b3352015-09-29 10:16:51 -070058 * struct sde_hw_ctl_ops - Interface to the wb Hw driver functions
59 * Assumption is these functions will be called after clocks are enabled
60 */
61struct sde_hw_ctl_ops {
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040062 /**
63 * kickoff hw operation for Sw controlled interfaces
64 * DSI cmd mode and WB interface are SW controlled
65 * @ctx : ctl path ctx pointer
66 */
Lloyd Atkinson5d722782016-05-30 14:09:41 -040067 void (*trigger_start)(struct sde_hw_ctl *ctx);
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040068
69 /**
Lloyd Atkinson5d722782016-05-30 14:09:41 -040070 * Clear the value of the cached pending_flush_mask
71 * No effect on hardware
72 * @ctx : ctl path ctx pointer
73 */
74 void (*clear_pending_flush)(struct sde_hw_ctl *ctx);
75
76 /**
77 * OR in the given flushbits to the cached pending_flush_mask
78 * No effect on hardware
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040079 * @ctx : ctl path ctx pointer
80 * @flushbits : module flushmask
81 */
Lloyd Atkinson5d722782016-05-30 14:09:41 -040082 void (*update_pending_flush)(struct sde_hw_ctl *ctx,
83 u32 flushbits);
84
85 /**
86 * Write the value of the pending_flush_mask to hardware
87 * @ctx : ctl path ctx pointer
88 */
89 void (*trigger_flush)(struct sde_hw_ctl *ctx);
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -040090
91 /**
92 * Setup ctl_path interface config
93 * @ctx
94 * @cfg : interface config structure pointer
95 */
96 void (*setup_intf_cfg)(struct sde_hw_ctl *ctx,
97 struct sde_hw_intf_cfg *cfg);
Narendra Muppalla1b0b3352015-09-29 10:16:51 -070098
99 int (*reset)(struct sde_hw_ctl *c);
100
101 int (*get_bitmask_sspp)(struct sde_hw_ctl *ctx,
102 u32 *flushbits,
103 enum sde_sspp blk);
104
105 int (*get_bitmask_mixer)(struct sde_hw_ctl *ctx,
106 u32 *flushbits,
107 enum sde_lm blk);
108
109 int (*get_bitmask_dspp)(struct sde_hw_ctl *ctx,
110 u32 *flushbits,
111 enum sde_dspp blk);
112
113 int (*get_bitmask_intf)(struct sde_hw_ctl *ctx,
114 u32 *flushbits,
115 enum sde_intf blk);
116
117 int (*get_bitmask_cdm)(struct sde_hw_ctl *ctx,
118 u32 *flushbits,
119 enum sde_cdm blk);
120
Alan Kwong3232ca52016-07-29 02:27:47 -0400121 int (*get_bitmask_wb)(struct sde_hw_ctl *ctx,
122 u32 *flushbits,
123 enum sde_wb blk);
124
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700125 void (*setup_blendstage)(struct sde_hw_ctl *ctx,
126 enum sde_lm lm,
127 struct sde_hw_stage_cfg *cfg);
128};
129
130/**
131 * struct sde_hw_ctl : CTL PATH driver object
Lloyd Atkinson5d722782016-05-30 14:09:41 -0400132 * @hw: block register map object
133 * @idx: control path index
134 * @ctl_hw_caps: control path capabilities
135 * @mixer_count: number of mixers
136 * @mixer_hw_caps: mixer hardware capabilities
137 * @pending_flush_mask: storage for pending ctl_flush managed via ops
138 * @ops: operation list
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700139 */
140struct sde_hw_ctl {
141 /* base */
142 struct sde_hw_blk_reg_map hw;
143
144 /* ctl path */
145 int idx;
146 const struct sde_ctl_cfg *caps;
147 int mixer_count;
148 const struct sde_lm_cfg *mixer_hw_caps;
Lloyd Atkinson5d722782016-05-30 14:09:41 -0400149 u32 pending_flush_mask;
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700150
151 /* ops */
152 struct sde_hw_ctl_ops ops;
153};
154
155/**
156 * sde_hw_ctl_init(): Initializes the ctl_path hw driver object.
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -0400157 * should be called before accessing every ctl path registers.
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700158 * @idx: ctl_path index for which driver object is required
159 * @addr: mapped register io address of MDP
160 * @m : pointer to mdss catalog data
161 */
162struct sde_hw_ctl *sde_hw_ctl_init(enum sde_ctl idx,
163 void __iomem *addr,
164 struct sde_mdss_cfg *m);
165
Abhijit Kulkarni3e3e0d22016-06-24 17:56:13 -0400166/**
167 * sde_hw_ctl_destroy(): Destroys ctl driver context
168 * should be called to free the context
169 */
170void sde_hw_ctl_destroy(struct sde_hw_ctl *ctx);
171
Clarence Ipc475b082016-06-26 09:27:23 -0400172#endif /*_SDE_HW_CTL_H */