blob: 348378f1b5a53653a89a7459b5c2291cef71859e [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;
Laurent Pinchartd3541ca2018-02-13 14:00:41 +0200274
275 const struct dispc_ops *dispc_ops;
Laurent Pinchart0e546df2018-02-13 14:00:20 +0200276};
277
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200278/* core */
Laurent Pinchart493b6832017-08-05 01:43:54 +0300279static inline int dss_set_min_bus_tput(struct device *dev, unsigned long tput)
280{
281 /* To be implemented when the OMAP platform will provide this feature */
282 return 0;
283}
284
Archit Tanejaf476ae92012-06-29 14:37:03 +0530285static inline bool dss_mgr_is_lcd(enum omap_channel id)
286{
287 if (id == OMAP_DSS_CHANNEL_LCD || id == OMAP_DSS_CHANNEL_LCD2 ||
288 id == OMAP_DSS_CHANNEL_LCD3)
289 return true;
290 else
291 return false;
292}
293
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200294/* DSS */
Laurent Pinchart11765d12017-08-05 01:44:01 +0300295#if defined(CONFIG_OMAP2_DSS_DEBUGFS)
Laurent Pinchart1c4b92e2018-02-13 14:00:31 +0200296struct dss_debugfs_entry *
297dss_debugfs_create_file(struct dss_device *dss, const char *name,
298 int (*show_fn)(struct seq_file *s, void *data),
299 void *data);
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200300void dss_debugfs_remove_file(struct dss_debugfs_entry *entry);
Laurent Pinchart11765d12017-08-05 01:44:01 +0300301#else
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200302static inline struct dss_debugfs_entry *
Laurent Pinchart1c4b92e2018-02-13 14:00:31 +0200303dss_debugfs_create_file(struct dss_device *dss, const char *name,
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200304 int (*show_fn)(struct seq_file *s, void *data),
305 void *data)
Laurent Pinchart11765d12017-08-05 01:44:01 +0300306{
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200307 return NULL;
308}
309
310static inline void dss_debugfs_remove_file(struct dss_debugfs_entry *entry)
311{
Laurent Pinchart11765d12017-08-05 01:44:01 +0300312}
313#endif /* CONFIG_OMAP2_DSS_DEBUGFS */
314
Laurent Pinchart7b295252018-02-13 14:00:21 +0200315struct dss_device *dss_get_device(struct device *dev);
316
317int dss_runtime_get(struct dss_device *dss);
318void dss_runtime_put(struct dss_device *dss);
Tomi Valkeinen99767542014-07-04 13:38:27 +0530319
Laurent Pinchart60f9c592018-02-13 14:00:26 +0200320unsigned long dss_get_dispc_clk_rate(struct dss_device *dss);
321unsigned long dss_get_max_fck_rate(struct dss_device *dss);
Laurent Pinchart1ef904e2018-02-13 14:00:27 +0200322enum omap_dss_output_id dss_get_supported_outputs(struct dss_device *dss,
323 enum omap_channel channel);
Laurent Pinchart8aea8e62018-02-13 14:00:24 +0200324int dss_dpi_select_source(struct dss_device *dss, int port,
325 enum omap_channel channel);
326void dss_select_hdmi_venc_clk_source(struct dss_device *dss,
327 enum dss_hdmi_venc_clk_source_select src);
Tomi Valkeinen407bd562016-05-17 13:50:55 +0300328const char *dss_get_clk_source_name(enum dss_clk_source clk_src);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200329
Tomi Valkeinen99767542014-07-04 13:38:27 +0530330/* DSS VIDEO PLL */
Laurent Pinchart7b295252018-02-13 14:00:21 +0200331struct dss_pll *dss_video_pll_init(struct dss_device *dss,
332 struct platform_device *pdev, int id,
333 struct regulator *regulator);
Tomi Valkeinen99767542014-07-04 13:38:27 +0530334void dss_video_pll_uninit(struct dss_pll *pll);
335
Laurent Pinchart27260992018-02-13 14:00:22 +0200336void dss_ctrl_pll_enable(struct dss_pll *pll, bool enable);
Tomi Valkeinenbe40eec2014-07-04 13:37:15 +0530337
Laurent Pinchartd7157df2018-02-13 14:00:23 +0200338void dss_sdi_init(struct dss_device *dss, int datapairs);
339int dss_sdi_enable(struct dss_device *dss);
340void dss_sdi_disable(struct dss_device *dss);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200341
Laurent Pinchart8aea8e62018-02-13 14:00:24 +0200342void dss_select_dsi_clk_source(struct dss_device *dss, int dsi_module,
343 enum dss_clk_source clk_src);
344void dss_select_lcd_clk_source(struct dss_device *dss,
345 enum omap_channel channel,
346 enum dss_clk_source clk_src);
Laurent Pinchart3cc62aa2018-02-13 14:00:25 +0200347enum dss_clk_source dss_get_dispc_clk_source(struct dss_device *dss);
348enum dss_clk_source dss_get_dsi_clk_source(struct dss_device *dss,
349 int dsi_module);
350enum dss_clk_source dss_get_lcd_clk_source(struct dss_device *dss,
351 enum omap_channel channel);
Tomi Valkeinen2f18c4d2010-01-08 18:00:36 +0200352
Laurent Pinchart1ef904e2018-02-13 14:00:27 +0200353void dss_set_venc_output(struct dss_device *dss, enum omap_dss_venc_type type);
354void dss_set_dac_pwrdn_bgz(struct dss_device *dss, bool enable);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200355
Laurent Pinchart60f9c592018-02-13 14:00:26 +0200356int dss_set_fck_rate(struct dss_device *dss, unsigned long rate);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200357
Tomi Valkeinend0f58bd2013-10-31 14:44:23 +0200358typedef bool (*dss_div_calc_func)(unsigned long fck, void *data);
Laurent Pinchart60f9c592018-02-13 14:00:26 +0200359bool dss_div_calc(struct dss_device *dss, unsigned long pck,
360 unsigned long fck_min, dss_div_calc_func func, void *data);
Tomi Valkeinen43417822013-03-05 16:34:05 +0200361
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200362/* SDI */
Archit Taneja387ce9f2014-05-22 17:01:57 +0530363#ifdef CONFIG_OMAP2_DSS_SDI
Laurent Pinchartd7157df2018-02-13 14:00:23 +0200364int sdi_init_port(struct dss_device *dss, struct platform_device *pdev,
365 struct device_node *port);
Tomi Valkeinenede92692015-06-04 14:12:16 +0300366void sdi_uninit_port(struct device_node *port);
Archit Taneja387ce9f2014-05-22 17:01:57 +0530367#else
Laurent Pinchartd7157df2018-02-13 14:00:23 +0200368static inline int sdi_init_port(struct dss_device *dss,
369 struct platform_device *pdev,
370 struct device_node *port)
Archit Taneja387ce9f2014-05-22 17:01:57 +0530371{
372 return 0;
373}
Tomi Valkeinenede92692015-06-04 14:12:16 +0300374static inline void sdi_uninit_port(struct device_node *port)
Archit Taneja387ce9f2014-05-22 17:01:57 +0530375{
376}
377#endif
Tomi Valkeinen2ecef242013-12-16 15:13:24 +0200378
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200379/* DSI */
Tomi Valkeinen989c79a2013-04-18 12:16:39 +0300380
Jani Nikula368a1482010-05-07 11:58:41 +0200381#ifdef CONFIG_OMAP2_DSS_DSI
Archit Taneja5a8b5722011-05-12 17:26:29 +0530382
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200383void dsi_dump_clocks(struct seq_file *s);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200384
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200385void dsi_irq_handler(void);
Archit Tanejaa3b3cc22011-09-08 18:42:16 +0530386
Jani Nikula368a1482010-05-07 11:58:41 +0200387#endif
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200388
389/* DPI */
Archit Taneja387ce9f2014-05-22 17:01:57 +0530390#ifdef CONFIG_OMAP2_DSS_DPI
Laurent Pinchart8aea8e62018-02-13 14:00:24 +0200391int dpi_init_port(struct dss_device *dss, struct platform_device *pdev,
392 struct device_node *port, enum dss_model dss_model);
Tomi Valkeinenede92692015-06-04 14:12:16 +0300393void dpi_uninit_port(struct device_node *port);
Archit Taneja387ce9f2014-05-22 17:01:57 +0530394#else
Laurent Pinchart8aea8e62018-02-13 14:00:24 +0200395static inline int dpi_init_port(struct dss_device *port,
396 struct platform_device *pdev,
397 struct device_node *port,
398 enum dss_model dss_model)
Archit Taneja387ce9f2014-05-22 17:01:57 +0530399{
400 return 0;
401}
Tomi Valkeinenede92692015-06-04 14:12:16 +0300402static inline void dpi_uninit_port(struct device_node *port)
Archit Taneja387ce9f2014-05-22 17:01:57 +0530403{
404}
405#endif
Tomi Valkeinen2ecef242013-12-16 15:13:24 +0200406
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200407/* DISPC */
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200408void dispc_dump_clocks(struct seq_file *s);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200409
Tomi Valkeinen5034b1f2015-11-05 20:06:06 +0200410int dispc_runtime_get(void);
411void dispc_runtime_put(void);
412
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200413void dispc_enable_sidle(void);
414void dispc_disable_sidle(void);
415
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200416void dispc_lcd_enable_signal(bool enable);
417void dispc_pck_free_enable(bool enable);
Tomi Valkeinencd295ae2011-08-16 13:49:15 +0300418void dispc_enable_fifomerge(bool enable);
Tomi Valkeinencd295ae2011-08-16 13:49:15 +0300419
Tomi Valkeinen7c284e62013-03-05 16:32:08 +0200420typedef bool (*dispc_div_calc_func)(int lckd, int pckd, unsigned long lck,
421 unsigned long pck, void *data);
422bool dispc_div_calc(unsigned long dispc,
423 unsigned long pck_min, unsigned long pck_max,
424 dispc_div_calc_func func, void *data);
425
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300426bool dispc_mgr_timings_ok(enum omap_channel channel, const struct videomode *vm);
Tomi Valkeinencd295ae2011-08-16 13:49:15 +0300427int dispc_calc_clock_rates(unsigned long dispc_fclk_rate,
428 struct dispc_clock_info *cinfo);
429
430
Jyri Sarha864050c2017-03-24 16:47:52 +0200431void dispc_ovl_set_fifo_threshold(enum omap_plane_id plane, u32 low,
432 u32 high);
433void dispc_ovl_compute_fifo_thresholds(enum omap_plane_id plane,
Tomi Valkeinen3568f2a2012-05-15 15:31:01 +0300434 u32 *fifo_low, u32 *fifo_high, bool use_fifomerge,
435 bool manual_update);
Tomi Valkeinencd295ae2011-08-16 13:49:15 +0300436
Archit Tanejaf0d08f82012-06-29 14:00:54 +0530437void dispc_mgr_set_clock_div(enum omap_channel channel,
Tomi Valkeinena8f3fcd2012-10-03 09:09:11 +0200438 const struct dispc_clock_info *cinfo);
Tomi Valkeinen26d9dd02011-08-16 13:45:15 +0300439int dispc_mgr_get_clock_div(enum omap_channel channel,
Sumit Semwalff1b2cd2010-12-02 11:27:11 +0000440 struct dispc_clock_info *cinfo);
Tomi Valkeinen5391e872013-05-16 10:44:13 +0300441void dispc_set_tv_pclk(unsigned long pclk);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200442
Archit Taneja0b23e5b2012-09-22 12:39:33 +0530443u32 dispc_wb_get_framedone_irq(void);
444bool dispc_wb_go_busy(void);
445void dispc_wb_go(void);
Archit Tanejad9ac7732012-09-22 12:38:19 +0530446void dispc_wb_set_channel_in(enum dss_writeback_channel channel);
Archit Taneja749feff2012-08-31 12:32:52 +0530447int dispc_wb_setup(const struct omap_dss_writeback_info *wi,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300448 bool mem_to_mem, const struct videomode *vm);
Archit Tanejad9ac7732012-09-22 12:38:19 +0530449
Tomi Valkeinendfc0fd82009-12-17 14:35:21 +0200450#ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
Laurent Pinchartd11e5c82018-02-11 15:07:34 +0200451static inline void dss_collect_irq_stats(u32 irqstatus, unsigned int *irq_arr)
Tomi Valkeinendfc0fd82009-12-17 14:35:21 +0200452{
453 int b;
454 for (b = 0; b < 32; ++b) {
455 if (irqstatus & (1 << b))
456 irq_arr[b]++;
457 }
458}
459#endif
460
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300461/* PLL */
462typedef bool (*dss_pll_calc_func)(int n, int m, unsigned long fint,
463 unsigned long clkdco, void *data);
464typedef bool (*dss_hsdiv_calc_func)(int m_dispc, unsigned long dispc,
465 void *data);
466
Laurent Pinchart798957a2018-02-13 14:00:30 +0200467int dss_pll_register(struct dss_device *dss, struct dss_pll *pll);
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300468void dss_pll_unregister(struct dss_pll *pll);
Laurent Pinchart798957a2018-02-13 14:00:30 +0200469struct dss_pll *dss_pll_find(struct dss_device *dss, const char *name);
470struct dss_pll *dss_pll_find_by_src(struct dss_device *dss,
471 enum dss_clk_source src);
Laurent Pinchartd11e5c82018-02-11 15:07:34 +0200472unsigned int dss_pll_get_clkout_idx_for_src(enum dss_clk_source src);
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300473int dss_pll_enable(struct dss_pll *pll);
474void dss_pll_disable(struct dss_pll *pll);
475int dss_pll_set_config(struct dss_pll *pll,
476 const struct dss_pll_clock_info *cinfo);
477
Tomi Valkeinencd0715f2016-05-17 21:23:37 +0300478bool dss_pll_hsdiv_calc_a(const struct dss_pll *pll, unsigned long clkdco,
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300479 unsigned long out_min, unsigned long out_max,
480 dss_hsdiv_calc_func func, void *data);
Tomi Valkeinencd0715f2016-05-17 21:23:37 +0300481bool dss_pll_calc_a(const struct dss_pll *pll, unsigned long clkin,
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300482 unsigned long pll_min, unsigned long pll_max,
483 dss_pll_calc_func func, void *data);
Tomi Valkeinenc17dc0e2016-05-18 10:45:20 +0300484
485bool dss_pll_calc_b(const struct dss_pll *pll, unsigned long clkin,
Tomi Valkeinenc1077512016-05-18 11:15:21 +0300486 unsigned long target_clkout, struct dss_pll_clock_info *cinfo);
Tomi Valkeinenc17dc0e2016-05-18 10:45:20 +0300487
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300488int dss_pll_write_config_type_a(struct dss_pll *pll,
489 const struct dss_pll_clock_info *cinfo);
490int dss_pll_write_config_type_b(struct dss_pll *pll,
491 const struct dss_pll_clock_info *cinfo);
Tomi Valkeineneb301992014-12-31 14:22:42 +0200492int dss_pll_wait_reset_done(struct dss_pll *pll);
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300493
Andrew F. Davisd66c36a2017-12-05 14:29:32 -0600494extern struct platform_driver omap_dsshw_driver;
495extern struct platform_driver omap_dispchw_driver;
496#ifdef CONFIG_OMAP2_DSS_DSI
497extern struct platform_driver omap_dsihw_driver;
498#endif
499#ifdef CONFIG_OMAP2_DSS_VENC
500extern struct platform_driver omap_venchw_driver;
501#endif
502#ifdef CONFIG_OMAP4_DSS_HDMI
503extern struct platform_driver omapdss_hdmi4hw_driver;
504#endif
505#ifdef CONFIG_OMAP5_DSS_HDMI
506extern struct platform_driver omapdss_hdmi5hw_driver;
507#endif
508
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200509#endif