blob: 764c52025a2744bed10efabac1c3204689151179 [file] [log] [blame]
Tomi Valkeinen559d6702009-11-03 11:23:50 +02001/*
Tomi Valkeinen559d6702009-11-03 11:23:50 +02002 * Copyright (C) 2009 Nokia Corporation
3 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
4 *
5 * Some code and ideas taken from drivers/video/omap/ driver
6 * by Imre Deak.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published by
10 * the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef __OMAP2_DSS_H
22#define __OMAP2_DSS_H
23
Tomi Valkeinen96e2e632012-10-10 15:55:19 +030024#include <linux/interrupt.h>
25
Tomi Valkeinen35a339a2016-02-19 16:54:36 +020026#include "omapdss.h"
27
Laurent Pinchartf33656e2018-02-13 14:00:29 +020028struct dss_debugfs_entry;
29struct platform_device;
30struct seq_file;
31
Laurent Pinchartd874b3a2017-08-05 01:44:19 +030032#define MAX_DSS_LCD_MANAGERS 3
33#define MAX_NUM_DSI 2
34
Chandrabhanu Mahapatra702d2672012-09-24 17:12:58 +053035#ifdef pr_fmt
36#undef pr_fmt
Tomi Valkeinen559d6702009-11-03 11:23:50 +020037#endif
38
39#ifdef DSS_SUBSYS_NAME
Chandrabhanu Mahapatra702d2672012-09-24 17:12:58 +053040#define pr_fmt(fmt) DSS_SUBSYS_NAME ": " fmt
Tomi Valkeinen559d6702009-11-03 11:23:50 +020041#else
Chandrabhanu Mahapatra702d2672012-09-24 17:12:58 +053042#define pr_fmt(fmt) fmt
Tomi Valkeinen559d6702009-11-03 11:23:50 +020043#endif
44
Chandrabhanu Mahapatra702d2672012-09-24 17:12:58 +053045#define DSSDBG(format, ...) \
46 pr_debug(format, ## __VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020047
48#ifdef DSS_SUBSYS_NAME
49#define DSSERR(format, ...) \
Joe Perches8dfe1622017-02-28 04:55:54 -080050 pr_err("omapdss " DSS_SUBSYS_NAME " error: " format, ##__VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020051#else
52#define DSSERR(format, ...) \
Joe Perches8dfe1622017-02-28 04:55:54 -080053 pr_err("omapdss error: " format, ##__VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020054#endif
55
56#ifdef DSS_SUBSYS_NAME
57#define DSSINFO(format, ...) \
Joe Perches8dfe1622017-02-28 04:55:54 -080058 pr_info("omapdss " DSS_SUBSYS_NAME ": " format, ##__VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020059#else
60#define DSSINFO(format, ...) \
Joe Perches8dfe1622017-02-28 04:55:54 -080061 pr_info("omapdss: " format, ## __VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020062#endif
63
64#ifdef DSS_SUBSYS_NAME
65#define DSSWARN(format, ...) \
Joe Perches8dfe1622017-02-28 04:55:54 -080066 pr_warn("omapdss " DSS_SUBSYS_NAME ": " format, ##__VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020067#else
68#define DSSWARN(format, ...) \
Joe Perches8dfe1622017-02-28 04:55:54 -080069 pr_warn("omapdss: " format, ##__VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020070#endif
71
72/* OMAP TRM gives bitfields as start:end, where start is the higher bit
73 number. For example 7:0 */
74#define FLD_MASK(start, end) (((1 << ((start) - (end) + 1)) - 1) << (end))
75#define FLD_VAL(val, start, end) (((val) << (end)) & FLD_MASK(start, end))
76#define FLD_GET(val, start, end) (((val) & FLD_MASK(start, end)) >> (end))
77#define FLD_MOD(orig, val, start, end) \
78 (((orig) & ~FLD_MASK(start, end)) | FLD_VAL(val, start, end))
79
Laurent Pinchartb8dab2b2017-08-05 01:43:56 +030080enum dss_model {
81 DSS_MODEL_OMAP2,
82 DSS_MODEL_OMAP3,
83 DSS_MODEL_OMAP4,
84 DSS_MODEL_OMAP5,
85 DSS_MODEL_DRA7,
86};
87
Archit Taneja569969d2011-08-22 17:41:57 +053088enum dss_io_pad_mode {
89 DSS_IO_PAD_MODE_RESET,
90 DSS_IO_PAD_MODE_RFBI,
91 DSS_IO_PAD_MODE_BYPASS,
Tomi Valkeinen559d6702009-11-03 11:23:50 +020092};
93
Mythri P K7ed024a2011-03-09 16:31:38 +053094enum dss_hdmi_venc_clk_source_select {
95 DSS_VENC_TV_CLK = 0,
96 DSS_HDMI_M_PCLK = 1,
97};
98
Archit Taneja6ff8aa32011-08-25 18:35:58 +053099enum dss_dsi_content_type {
100 DSS_DSI_CONTENT_DCS,
101 DSS_DSI_CONTENT_GENERIC,
102};
103
Archit Tanejad9ac7732012-09-22 12:38:19 +0530104enum dss_writeback_channel {
105 DSS_WB_LCD1_MGR = 0,
106 DSS_WB_LCD2_MGR = 1,
107 DSS_WB_TV_MGR = 2,
108 DSS_WB_OVL0 = 3,
109 DSS_WB_OVL1 = 4,
110 DSS_WB_OVL2 = 5,
111 DSS_WB_OVL3 = 6,
112 DSS_WB_LCD3_MGR = 7,
113};
114
Tomi Valkeinendc0352d2016-05-17 13:45:09 +0300115enum dss_clk_source {
Tomi Valkeinen3b63ca72016-05-17 14:01:10 +0300116 DSS_CLK_SRC_FCK = 0,
117
118 DSS_CLK_SRC_PLL1_1,
119 DSS_CLK_SRC_PLL1_2,
Tomi Valkeinenb5d8c752016-05-17 14:12:35 +0300120 DSS_CLK_SRC_PLL1_3,
Tomi Valkeinen3b63ca72016-05-17 14:01:10 +0300121
122 DSS_CLK_SRC_PLL2_1,
123 DSS_CLK_SRC_PLL2_2,
Tomi Valkeinenb5d8c752016-05-17 14:12:35 +0300124 DSS_CLK_SRC_PLL2_3,
125
126 DSS_CLK_SRC_HDMI_PLL,
Tomi Valkeinenbe5d7312016-05-17 13:31:14 +0300127};
128
Tomi Valkeinen64e22ff2015-01-02 10:05:33 +0200129enum dss_pll_id {
130 DSS_PLL_DSI1,
131 DSS_PLL_DSI2,
132 DSS_PLL_HDMI,
Tomi Valkeinen6d817882014-12-31 11:23:31 +0200133 DSS_PLL_VIDEO1,
134 DSS_PLL_VIDEO2,
Tomi Valkeinen64e22ff2015-01-02 10:05:33 +0200135};
136
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300137struct dss_pll;
138
139#define DSS_PLL_MAX_HSDIVS 4
140
Tomi Valkeinen06ede3d2016-05-18 10:48:44 +0300141enum dss_pll_type {
142 DSS_PLL_TYPE_A,
143 DSS_PLL_TYPE_B,
144};
145
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300146/*
147 * Type-A PLLs: clkout[]/mX[] refer to hsdiv outputs m4, m5, m6, m7.
148 * Type-B PLLs: clkout[0] refers to m2.
149 */
150struct dss_pll_clock_info {
151 /* rates that we get with dividers below */
152 unsigned long fint;
153 unsigned long clkdco;
154 unsigned long clkout[DSS_PLL_MAX_HSDIVS];
155
156 /* dividers */
157 u16 n;
158 u16 m;
159 u32 mf;
160 u16 mX[DSS_PLL_MAX_HSDIVS];
161 u16 sd;
162};
163
164struct dss_pll_ops {
165 int (*enable)(struct dss_pll *pll);
166 void (*disable)(struct dss_pll *pll);
167 int (*set_config)(struct dss_pll *pll,
168 const struct dss_pll_clock_info *cinfo);
169};
170
171struct dss_pll_hw {
Tomi Valkeinen06ede3d2016-05-18 10:48:44 +0300172 enum dss_pll_type type;
173
Laurent Pinchartd11e5c82018-02-11 15:07:34 +0200174 unsigned int n_max;
175 unsigned int m_min;
176 unsigned int m_max;
177 unsigned int mX_max;
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300178
179 unsigned long fint_min, fint_max;
180 unsigned long clkdco_min, clkdco_low, clkdco_max;
181
182 u8 n_msb, n_lsb;
183 u8 m_msb, m_lsb;
184 u8 mX_msb[DSS_PLL_MAX_HSDIVS], mX_lsb[DSS_PLL_MAX_HSDIVS];
185
186 bool has_stopmode;
187 bool has_freqsel;
188 bool has_selfreqdco;
189 bool has_refsel;
Tomi Valkeinen0c43f1e02017-06-13 12:02:10 +0300190
191 /* DRA7 errata i886: use high N & M to avoid jitter */
192 bool errata_i886;
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300193};
194
195struct dss_pll {
196 const char *name;
Tomi Valkeinen64e22ff2015-01-02 10:05:33 +0200197 enum dss_pll_id id;
Laurent Pinchart7b295252018-02-13 14:00:21 +0200198 struct dss_device *dss;
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300199
200 struct clk *clkin;
201 struct regulator *regulator;
202
203 void __iomem *base;
204
205 const struct dss_pll_hw *hw;
206
207 const struct dss_pll_ops *ops;
208
209 struct dss_pll_clock_info cinfo;
210};
211
Laurent Pinchart6d85d4a2017-08-05 01:44:07 +0300212/* Defines a generic omap register field */
213struct dss_reg_field {
214 u8 start, end;
215};
216
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200217struct dispc_clock_info {
218 /* rates that we get with dividers below */
219 unsigned long lck;
220 unsigned long pck;
221
222 /* dividers */
223 u16 lck_div;
224 u16 pck_div;
225};
226
Archit Tanejac56fb3e2012-06-29 14:03:48 +0530227struct dss_lcd_mgr_config {
228 enum dss_io_pad_mode io_pad_mode;
229
230 bool stallmode;
231 bool fifohandcheck;
232
233 struct dispc_clock_info clock_info;
234
235 int video_port_width;
236
237 int lcden_sig_polarity;
238};
239
Laurent Pinchart0e546df2018-02-13 14:00:20 +0200240#define DSS_SZ_REGS SZ_512
241
242struct dss_device {
243 struct platform_device *pdev;
244 void __iomem *base;
245 struct regmap *syscon_pll_ctrl;
246 u32 syscon_pll_ctrl_offset;
247
248 struct clk *parent_clk;
249 struct clk *dss_clk;
250 unsigned long dss_clk_rate;
251
252 unsigned long cache_req_pck;
253 unsigned long cache_prate;
254 struct dispc_clock_info cache_dispc_cinfo;
255
256 enum dss_clk_source dsi_clk_source[MAX_NUM_DSI];
257 enum dss_clk_source dispc_clk_source;
258 enum dss_clk_source lcd_clk_source[MAX_DSS_LCD_MANAGERS];
259
260 bool ctx_valid;
261 u32 ctx[DSS_SZ_REGS / sizeof(u32)];
262
263 const struct dss_features *feat;
264
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200265 struct {
Laurent Pinchart1c4b92e2018-02-13 14:00:31 +0200266 struct dentry *root;
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200267 struct dss_debugfs_entry *clk;
268 struct dss_debugfs_entry *dss;
269 } debugfs;
270
Laurent Pinchart798957a2018-02-13 14:00:30 +0200271 struct dss_pll *plls[4];
Laurent Pinchart0e546df2018-02-13 14:00:20 +0200272 struct dss_pll *video1_pll;
273 struct dss_pll *video2_pll;
274};
275
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200276/* core */
Laurent Pinchart493b6832017-08-05 01:43:54 +0300277static inline int dss_set_min_bus_tput(struct device *dev, unsigned long tput)
278{
279 /* To be implemented when the OMAP platform will provide this feature */
280 return 0;
281}
282
Archit Tanejaf476ae92012-06-29 14:37:03 +0530283static inline bool dss_mgr_is_lcd(enum omap_channel id)
284{
285 if (id == OMAP_DSS_CHANNEL_LCD || id == OMAP_DSS_CHANNEL_LCD2 ||
286 id == OMAP_DSS_CHANNEL_LCD3)
287 return true;
288 else
289 return false;
290}
291
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200292/* DSS */
Laurent Pinchart11765d12017-08-05 01:44:01 +0300293#if defined(CONFIG_OMAP2_DSS_DEBUGFS)
Laurent Pinchart1c4b92e2018-02-13 14:00:31 +0200294struct dss_debugfs_entry *
295dss_debugfs_create_file(struct dss_device *dss, const char *name,
296 int (*show_fn)(struct seq_file *s, void *data),
297 void *data);
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200298void dss_debugfs_remove_file(struct dss_debugfs_entry *entry);
Laurent Pinchart11765d12017-08-05 01:44:01 +0300299#else
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200300static inline struct dss_debugfs_entry *
Laurent Pinchart1c4b92e2018-02-13 14:00:31 +0200301dss_debugfs_create_file(struct dss_device *dss, const char *name,
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200302 int (*show_fn)(struct seq_file *s, void *data),
303 void *data)
Laurent Pinchart11765d12017-08-05 01:44:01 +0300304{
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200305 return NULL;
306}
307
308static inline void dss_debugfs_remove_file(struct dss_debugfs_entry *entry)
309{
Laurent Pinchart11765d12017-08-05 01:44:01 +0300310}
311#endif /* CONFIG_OMAP2_DSS_DEBUGFS */
312
Laurent Pinchart7b295252018-02-13 14:00:21 +0200313struct dss_device *dss_get_device(struct device *dev);
314
315int dss_runtime_get(struct dss_device *dss);
316void dss_runtime_put(struct dss_device *dss);
Tomi Valkeinen99767542014-07-04 13:38:27 +0530317
Laurent Pinchart60f9c592018-02-13 14:00:26 +0200318unsigned long dss_get_dispc_clk_rate(struct dss_device *dss);
319unsigned long dss_get_max_fck_rate(struct dss_device *dss);
Laurent Pinchart1ef904e2018-02-13 14:00:27 +0200320enum omap_dss_output_id dss_get_supported_outputs(struct dss_device *dss,
321 enum omap_channel channel);
Laurent Pinchart8aea8e62018-02-13 14:00:24 +0200322int dss_dpi_select_source(struct dss_device *dss, int port,
323 enum omap_channel channel);
324void dss_select_hdmi_venc_clk_source(struct dss_device *dss,
325 enum dss_hdmi_venc_clk_source_select src);
Tomi Valkeinen407bd562016-05-17 13:50:55 +0300326const char *dss_get_clk_source_name(enum dss_clk_source clk_src);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200327
Tomi Valkeinen99767542014-07-04 13:38:27 +0530328/* DSS VIDEO PLL */
Laurent Pinchart7b295252018-02-13 14:00:21 +0200329struct dss_pll *dss_video_pll_init(struct dss_device *dss,
330 struct platform_device *pdev, int id,
331 struct regulator *regulator);
Tomi Valkeinen99767542014-07-04 13:38:27 +0530332void dss_video_pll_uninit(struct dss_pll *pll);
333
Laurent Pinchart27260992018-02-13 14:00:22 +0200334void dss_ctrl_pll_enable(struct dss_pll *pll, bool enable);
Tomi Valkeinenbe40eec2014-07-04 13:37:15 +0530335
Laurent Pinchartd7157df2018-02-13 14:00:23 +0200336void dss_sdi_init(struct dss_device *dss, int datapairs);
337int dss_sdi_enable(struct dss_device *dss);
338void dss_sdi_disable(struct dss_device *dss);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200339
Laurent Pinchart8aea8e62018-02-13 14:00:24 +0200340void dss_select_dsi_clk_source(struct dss_device *dss, int dsi_module,
341 enum dss_clk_source clk_src);
342void dss_select_lcd_clk_source(struct dss_device *dss,
343 enum omap_channel channel,
344 enum dss_clk_source clk_src);
Laurent Pinchart3cc62aa2018-02-13 14:00:25 +0200345enum dss_clk_source dss_get_dispc_clk_source(struct dss_device *dss);
346enum dss_clk_source dss_get_dsi_clk_source(struct dss_device *dss,
347 int dsi_module);
348enum dss_clk_source dss_get_lcd_clk_source(struct dss_device *dss,
349 enum omap_channel channel);
Tomi Valkeinen2f18c4d2010-01-08 18:00:36 +0200350
Laurent Pinchart1ef904e2018-02-13 14:00:27 +0200351void dss_set_venc_output(struct dss_device *dss, enum omap_dss_venc_type type);
352void dss_set_dac_pwrdn_bgz(struct dss_device *dss, bool enable);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200353
Laurent Pinchart60f9c592018-02-13 14:00:26 +0200354int dss_set_fck_rate(struct dss_device *dss, unsigned long rate);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200355
Tomi Valkeinend0f58bd2013-10-31 14:44:23 +0200356typedef bool (*dss_div_calc_func)(unsigned long fck, void *data);
Laurent Pinchart60f9c592018-02-13 14:00:26 +0200357bool dss_div_calc(struct dss_device *dss, unsigned long pck,
358 unsigned long fck_min, dss_div_calc_func func, void *data);
Tomi Valkeinen43417822013-03-05 16:34:05 +0200359
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200360/* SDI */
Archit Taneja387ce9f2014-05-22 17:01:57 +0530361#ifdef CONFIG_OMAP2_DSS_SDI
Laurent Pinchartd7157df2018-02-13 14:00:23 +0200362int sdi_init_port(struct dss_device *dss, struct platform_device *pdev,
363 struct device_node *port);
Tomi Valkeinenede92692015-06-04 14:12:16 +0300364void sdi_uninit_port(struct device_node *port);
Archit Taneja387ce9f2014-05-22 17:01:57 +0530365#else
Laurent Pinchartd7157df2018-02-13 14:00:23 +0200366static inline int sdi_init_port(struct dss_device *dss,
367 struct platform_device *pdev,
368 struct device_node *port)
Archit Taneja387ce9f2014-05-22 17:01:57 +0530369{
370 return 0;
371}
Tomi Valkeinenede92692015-06-04 14:12:16 +0300372static inline void sdi_uninit_port(struct device_node *port)
Archit Taneja387ce9f2014-05-22 17:01:57 +0530373{
374}
375#endif
Tomi Valkeinen2ecef242013-12-16 15:13:24 +0200376
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200377/* DSI */
Tomi Valkeinen989c79a2013-04-18 12:16:39 +0300378
Jani Nikula368a1482010-05-07 11:58:41 +0200379#ifdef CONFIG_OMAP2_DSS_DSI
Archit Taneja5a8b5722011-05-12 17:26:29 +0530380
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200381void dsi_dump_clocks(struct seq_file *s);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200382
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200383void dsi_irq_handler(void);
Archit Tanejaa3b3cc22011-09-08 18:42:16 +0530384
Jani Nikula368a1482010-05-07 11:58:41 +0200385#endif
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200386
387/* DPI */
Archit Taneja387ce9f2014-05-22 17:01:57 +0530388#ifdef CONFIG_OMAP2_DSS_DPI
Laurent Pinchart8aea8e62018-02-13 14:00:24 +0200389int dpi_init_port(struct dss_device *dss, struct platform_device *pdev,
390 struct device_node *port, enum dss_model dss_model);
Tomi Valkeinenede92692015-06-04 14:12:16 +0300391void dpi_uninit_port(struct device_node *port);
Archit Taneja387ce9f2014-05-22 17:01:57 +0530392#else
Laurent Pinchart8aea8e62018-02-13 14:00:24 +0200393static inline int dpi_init_port(struct dss_device *port,
394 struct platform_device *pdev,
395 struct device_node *port,
396 enum dss_model dss_model)
Archit Taneja387ce9f2014-05-22 17:01:57 +0530397{
398 return 0;
399}
Tomi Valkeinenede92692015-06-04 14:12:16 +0300400static inline void dpi_uninit_port(struct device_node *port)
Archit Taneja387ce9f2014-05-22 17:01:57 +0530401{
402}
403#endif
Tomi Valkeinen2ecef242013-12-16 15:13:24 +0200404
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200405/* DISPC */
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200406void dispc_dump_clocks(struct seq_file *s);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200407
Tomi Valkeinen5034b1f2015-11-05 20:06:06 +0200408int dispc_runtime_get(void);
409void dispc_runtime_put(void);
410
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200411void dispc_enable_sidle(void);
412void dispc_disable_sidle(void);
413
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200414void dispc_lcd_enable_signal(bool enable);
415void dispc_pck_free_enable(bool enable);
Tomi Valkeinencd295ae2011-08-16 13:49:15 +0300416void dispc_enable_fifomerge(bool enable);
Tomi Valkeinencd295ae2011-08-16 13:49:15 +0300417
Tomi Valkeinen7c284e62013-03-05 16:32:08 +0200418typedef bool (*dispc_div_calc_func)(int lckd, int pckd, unsigned long lck,
419 unsigned long pck, void *data);
420bool dispc_div_calc(unsigned long dispc,
421 unsigned long pck_min, unsigned long pck_max,
422 dispc_div_calc_func func, void *data);
423
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300424bool dispc_mgr_timings_ok(enum omap_channel channel, const struct videomode *vm);
Tomi Valkeinencd295ae2011-08-16 13:49:15 +0300425int dispc_calc_clock_rates(unsigned long dispc_fclk_rate,
426 struct dispc_clock_info *cinfo);
427
428
Jyri Sarha864050c2017-03-24 16:47:52 +0200429void dispc_ovl_set_fifo_threshold(enum omap_plane_id plane, u32 low,
430 u32 high);
431void dispc_ovl_compute_fifo_thresholds(enum omap_plane_id plane,
Tomi Valkeinen3568f2a2012-05-15 15:31:01 +0300432 u32 *fifo_low, u32 *fifo_high, bool use_fifomerge,
433 bool manual_update);
Tomi Valkeinencd295ae2011-08-16 13:49:15 +0300434
Archit Tanejaf0d08f82012-06-29 14:00:54 +0530435void dispc_mgr_set_clock_div(enum omap_channel channel,
Tomi Valkeinena8f3fcd2012-10-03 09:09:11 +0200436 const struct dispc_clock_info *cinfo);
Tomi Valkeinen26d9dd02011-08-16 13:45:15 +0300437int dispc_mgr_get_clock_div(enum omap_channel channel,
Sumit Semwalff1b2cd2010-12-02 11:27:11 +0000438 struct dispc_clock_info *cinfo);
Tomi Valkeinen5391e872013-05-16 10:44:13 +0300439void dispc_set_tv_pclk(unsigned long pclk);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200440
Archit Taneja0b23e5b2012-09-22 12:39:33 +0530441u32 dispc_wb_get_framedone_irq(void);
442bool dispc_wb_go_busy(void);
443void dispc_wb_go(void);
Archit Tanejad9ac7732012-09-22 12:38:19 +0530444void dispc_wb_set_channel_in(enum dss_writeback_channel channel);
Archit Taneja749feff2012-08-31 12:32:52 +0530445int dispc_wb_setup(const struct omap_dss_writeback_info *wi,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300446 bool mem_to_mem, const struct videomode *vm);
Archit Tanejad9ac7732012-09-22 12:38:19 +0530447
Tomi Valkeinendfc0fd82009-12-17 14:35:21 +0200448#ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
Laurent Pinchartd11e5c82018-02-11 15:07:34 +0200449static inline void dss_collect_irq_stats(u32 irqstatus, unsigned int *irq_arr)
Tomi Valkeinendfc0fd82009-12-17 14:35:21 +0200450{
451 int b;
452 for (b = 0; b < 32; ++b) {
453 if (irqstatus & (1 << b))
454 irq_arr[b]++;
455 }
456}
457#endif
458
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300459/* PLL */
460typedef bool (*dss_pll_calc_func)(int n, int m, unsigned long fint,
461 unsigned long clkdco, void *data);
462typedef bool (*dss_hsdiv_calc_func)(int m_dispc, unsigned long dispc,
463 void *data);
464
Laurent Pinchart798957a2018-02-13 14:00:30 +0200465int dss_pll_register(struct dss_device *dss, struct dss_pll *pll);
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300466void dss_pll_unregister(struct dss_pll *pll);
Laurent Pinchart798957a2018-02-13 14:00:30 +0200467struct dss_pll *dss_pll_find(struct dss_device *dss, const char *name);
468struct dss_pll *dss_pll_find_by_src(struct dss_device *dss,
469 enum dss_clk_source src);
Laurent Pinchartd11e5c82018-02-11 15:07:34 +0200470unsigned int dss_pll_get_clkout_idx_for_src(enum dss_clk_source src);
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300471int dss_pll_enable(struct dss_pll *pll);
472void dss_pll_disable(struct dss_pll *pll);
473int dss_pll_set_config(struct dss_pll *pll,
474 const struct dss_pll_clock_info *cinfo);
475
Tomi Valkeinencd0715f2016-05-17 21:23:37 +0300476bool dss_pll_hsdiv_calc_a(const struct dss_pll *pll, unsigned long clkdco,
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300477 unsigned long out_min, unsigned long out_max,
478 dss_hsdiv_calc_func func, void *data);
Tomi Valkeinencd0715f2016-05-17 21:23:37 +0300479bool dss_pll_calc_a(const struct dss_pll *pll, unsigned long clkin,
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300480 unsigned long pll_min, unsigned long pll_max,
481 dss_pll_calc_func func, void *data);
Tomi Valkeinenc17dc0e2016-05-18 10:45:20 +0300482
483bool dss_pll_calc_b(const struct dss_pll *pll, unsigned long clkin,
Tomi Valkeinenc1077512016-05-18 11:15:21 +0300484 unsigned long target_clkout, struct dss_pll_clock_info *cinfo);
Tomi Valkeinenc17dc0e2016-05-18 10:45:20 +0300485
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300486int dss_pll_write_config_type_a(struct dss_pll *pll,
487 const struct dss_pll_clock_info *cinfo);
488int dss_pll_write_config_type_b(struct dss_pll *pll,
489 const struct dss_pll_clock_info *cinfo);
Tomi Valkeineneb301992014-12-31 14:22:42 +0200490int dss_pll_wait_reset_done(struct dss_pll *pll);
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300491
Andrew F. Davisd66c36a2017-12-05 14:29:32 -0600492extern struct platform_driver omap_dsshw_driver;
493extern struct platform_driver omap_dispchw_driver;
494#ifdef CONFIG_OMAP2_DSS_DSI
495extern struct platform_driver omap_dsihw_driver;
496#endif
497#ifdef CONFIG_OMAP2_DSS_VENC
498extern struct platform_driver omap_venchw_driver;
499#endif
500#ifdef CONFIG_OMAP4_DSS_HDMI
501extern struct platform_driver omapdss_hdmi4hw_driver;
502#endif
503#ifdef CONFIG_OMAP5_DSS_HDMI
504extern struct platform_driver omapdss_hdmi5hw_driver;
505#endif
506
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200507#endif