blob: 847c78ade024d5cc8c353372a3ed96b137a7b452 [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 Pinchart50638ae2018-02-13 14:00:42 +020028struct dispc_device;
Laurent Pinchartf33656e2018-02-13 14:00:29 +020029struct dss_debugfs_entry;
30struct platform_device;
31struct seq_file;
32
Laurent Pinchartd874b3a2017-08-05 01:44:19 +030033#define MAX_DSS_LCD_MANAGERS 3
34#define MAX_NUM_DSI 2
35
Chandrabhanu Mahapatra702d2672012-09-24 17:12:58 +053036#ifdef pr_fmt
37#undef pr_fmt
Tomi Valkeinen559d6702009-11-03 11:23:50 +020038#endif
39
40#ifdef DSS_SUBSYS_NAME
Chandrabhanu Mahapatra702d2672012-09-24 17:12:58 +053041#define pr_fmt(fmt) DSS_SUBSYS_NAME ": " fmt
Tomi Valkeinen559d6702009-11-03 11:23:50 +020042#else
Chandrabhanu Mahapatra702d2672012-09-24 17:12:58 +053043#define pr_fmt(fmt) fmt
Tomi Valkeinen559d6702009-11-03 11:23:50 +020044#endif
45
Chandrabhanu Mahapatra702d2672012-09-24 17:12:58 +053046#define DSSDBG(format, ...) \
47 pr_debug(format, ## __VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020048
49#ifdef DSS_SUBSYS_NAME
50#define DSSERR(format, ...) \
Joe Perches8dfe1622017-02-28 04:55:54 -080051 pr_err("omapdss " DSS_SUBSYS_NAME " error: " format, ##__VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020052#else
53#define DSSERR(format, ...) \
Joe Perches8dfe1622017-02-28 04:55:54 -080054 pr_err("omapdss error: " format, ##__VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020055#endif
56
57#ifdef DSS_SUBSYS_NAME
58#define DSSINFO(format, ...) \
Joe Perches8dfe1622017-02-28 04:55:54 -080059 pr_info("omapdss " DSS_SUBSYS_NAME ": " format, ##__VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020060#else
61#define DSSINFO(format, ...) \
Joe Perches8dfe1622017-02-28 04:55:54 -080062 pr_info("omapdss: " format, ## __VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020063#endif
64
65#ifdef DSS_SUBSYS_NAME
66#define DSSWARN(format, ...) \
Joe Perches8dfe1622017-02-28 04:55:54 -080067 pr_warn("omapdss " DSS_SUBSYS_NAME ": " format, ##__VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020068#else
69#define DSSWARN(format, ...) \
Joe Perches8dfe1622017-02-28 04:55:54 -080070 pr_warn("omapdss: " format, ##__VA_ARGS__)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020071#endif
72
73/* OMAP TRM gives bitfields as start:end, where start is the higher bit
74 number. For example 7:0 */
75#define FLD_MASK(start, end) (((1 << ((start) - (end) + 1)) - 1) << (end))
76#define FLD_VAL(val, start, end) (((val) << (end)) & FLD_MASK(start, end))
77#define FLD_GET(val, start, end) (((val) & FLD_MASK(start, end)) >> (end))
78#define FLD_MOD(orig, val, start, end) \
79 (((orig) & ~FLD_MASK(start, end)) | FLD_VAL(val, start, end))
80
Laurent Pinchartb8dab2b2017-08-05 01:43:56 +030081enum dss_model {
82 DSS_MODEL_OMAP2,
83 DSS_MODEL_OMAP3,
84 DSS_MODEL_OMAP4,
85 DSS_MODEL_OMAP5,
86 DSS_MODEL_DRA7,
87};
88
Archit Taneja569969d2011-08-22 17:41:57 +053089enum dss_io_pad_mode {
90 DSS_IO_PAD_MODE_RESET,
91 DSS_IO_PAD_MODE_RFBI,
92 DSS_IO_PAD_MODE_BYPASS,
Tomi Valkeinen559d6702009-11-03 11:23:50 +020093};
94
Mythri P K7ed024a2011-03-09 16:31:38 +053095enum dss_hdmi_venc_clk_source_select {
96 DSS_VENC_TV_CLK = 0,
97 DSS_HDMI_M_PCLK = 1,
98};
99
Archit Taneja6ff8aa32011-08-25 18:35:58 +0530100enum dss_dsi_content_type {
101 DSS_DSI_CONTENT_DCS,
102 DSS_DSI_CONTENT_GENERIC,
103};
104
Tomi Valkeinendc0352d2016-05-17 13:45:09 +0300105enum dss_clk_source {
Tomi Valkeinen3b63ca72016-05-17 14:01:10 +0300106 DSS_CLK_SRC_FCK = 0,
107
108 DSS_CLK_SRC_PLL1_1,
109 DSS_CLK_SRC_PLL1_2,
Tomi Valkeinenb5d8c752016-05-17 14:12:35 +0300110 DSS_CLK_SRC_PLL1_3,
Tomi Valkeinen3b63ca72016-05-17 14:01:10 +0300111
112 DSS_CLK_SRC_PLL2_1,
113 DSS_CLK_SRC_PLL2_2,
Tomi Valkeinenb5d8c752016-05-17 14:12:35 +0300114 DSS_CLK_SRC_PLL2_3,
115
116 DSS_CLK_SRC_HDMI_PLL,
Tomi Valkeinenbe5d7312016-05-17 13:31:14 +0300117};
118
Tomi Valkeinen64e22ff2015-01-02 10:05:33 +0200119enum dss_pll_id {
120 DSS_PLL_DSI1,
121 DSS_PLL_DSI2,
122 DSS_PLL_HDMI,
Tomi Valkeinen6d817882014-12-31 11:23:31 +0200123 DSS_PLL_VIDEO1,
124 DSS_PLL_VIDEO2,
Tomi Valkeinen64e22ff2015-01-02 10:05:33 +0200125};
126
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300127struct dss_pll;
128
129#define DSS_PLL_MAX_HSDIVS 4
130
Tomi Valkeinen06ede3d2016-05-18 10:48:44 +0300131enum dss_pll_type {
132 DSS_PLL_TYPE_A,
133 DSS_PLL_TYPE_B,
134};
135
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300136/*
137 * Type-A PLLs: clkout[]/mX[] refer to hsdiv outputs m4, m5, m6, m7.
138 * Type-B PLLs: clkout[0] refers to m2.
139 */
140struct dss_pll_clock_info {
141 /* rates that we get with dividers below */
142 unsigned long fint;
143 unsigned long clkdco;
144 unsigned long clkout[DSS_PLL_MAX_HSDIVS];
145
146 /* dividers */
147 u16 n;
148 u16 m;
149 u32 mf;
150 u16 mX[DSS_PLL_MAX_HSDIVS];
151 u16 sd;
152};
153
154struct dss_pll_ops {
155 int (*enable)(struct dss_pll *pll);
156 void (*disable)(struct dss_pll *pll);
157 int (*set_config)(struct dss_pll *pll,
158 const struct dss_pll_clock_info *cinfo);
159};
160
161struct dss_pll_hw {
Tomi Valkeinen06ede3d2016-05-18 10:48:44 +0300162 enum dss_pll_type type;
163
Laurent Pinchartd11e5c82018-02-11 15:07:34 +0200164 unsigned int n_max;
165 unsigned int m_min;
166 unsigned int m_max;
167 unsigned int mX_max;
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300168
169 unsigned long fint_min, fint_max;
170 unsigned long clkdco_min, clkdco_low, clkdco_max;
171
172 u8 n_msb, n_lsb;
173 u8 m_msb, m_lsb;
174 u8 mX_msb[DSS_PLL_MAX_HSDIVS], mX_lsb[DSS_PLL_MAX_HSDIVS];
175
176 bool has_stopmode;
177 bool has_freqsel;
178 bool has_selfreqdco;
179 bool has_refsel;
Tomi Valkeinen0c43f1e02017-06-13 12:02:10 +0300180
181 /* DRA7 errata i886: use high N & M to avoid jitter */
182 bool errata_i886;
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300183};
184
185struct dss_pll {
186 const char *name;
Tomi Valkeinen64e22ff2015-01-02 10:05:33 +0200187 enum dss_pll_id id;
Laurent Pinchart7b295252018-02-13 14:00:21 +0200188 struct dss_device *dss;
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300189
190 struct clk *clkin;
191 struct regulator *regulator;
192
193 void __iomem *base;
194
195 const struct dss_pll_hw *hw;
196
197 const struct dss_pll_ops *ops;
198
199 struct dss_pll_clock_info cinfo;
200};
201
Laurent Pinchart6d85d4a2017-08-05 01:44:07 +0300202/* Defines a generic omap register field */
203struct dss_reg_field {
204 u8 start, end;
205};
206
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200207struct dispc_clock_info {
208 /* rates that we get with dividers below */
209 unsigned long lck;
210 unsigned long pck;
211
212 /* dividers */
213 u16 lck_div;
214 u16 pck_div;
215};
216
Archit Tanejac56fb3e2012-06-29 14:03:48 +0530217struct dss_lcd_mgr_config {
218 enum dss_io_pad_mode io_pad_mode;
219
220 bool stallmode;
221 bool fifohandcheck;
222
223 struct dispc_clock_info clock_info;
224
225 int video_port_width;
226
227 int lcden_sig_polarity;
228};
229
Laurent Pinchart0e546df2018-02-13 14:00:20 +0200230#define DSS_SZ_REGS SZ_512
231
232struct dss_device {
233 struct platform_device *pdev;
234 void __iomem *base;
235 struct regmap *syscon_pll_ctrl;
236 u32 syscon_pll_ctrl_offset;
237
238 struct clk *parent_clk;
239 struct clk *dss_clk;
240 unsigned long dss_clk_rate;
241
242 unsigned long cache_req_pck;
243 unsigned long cache_prate;
244 struct dispc_clock_info cache_dispc_cinfo;
245
246 enum dss_clk_source dsi_clk_source[MAX_NUM_DSI];
247 enum dss_clk_source dispc_clk_source;
248 enum dss_clk_source lcd_clk_source[MAX_DSS_LCD_MANAGERS];
249
250 bool ctx_valid;
251 u32 ctx[DSS_SZ_REGS / sizeof(u32)];
252
253 const struct dss_features *feat;
254
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200255 struct {
Laurent Pinchart1c4b92e2018-02-13 14:00:31 +0200256 struct dentry *root;
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200257 struct dss_debugfs_entry *clk;
258 struct dss_debugfs_entry *dss;
259 } debugfs;
260
Laurent Pinchart798957a2018-02-13 14:00:30 +0200261 struct dss_pll *plls[4];
Laurent Pinchart0e546df2018-02-13 14:00:20 +0200262 struct dss_pll *video1_pll;
263 struct dss_pll *video2_pll;
Laurent Pinchartd3541ca2018-02-13 14:00:41 +0200264
Laurent Pinchart50638ae2018-02-13 14:00:42 +0200265 struct dispc_device *dispc;
Laurent Pinchartd3541ca2018-02-13 14:00:41 +0200266 const struct dispc_ops *dispc_ops;
Laurent Pinchart0e546df2018-02-13 14:00:20 +0200267};
268
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200269/* core */
Laurent Pinchart493b6832017-08-05 01:43:54 +0300270static inline int dss_set_min_bus_tput(struct device *dev, unsigned long tput)
271{
272 /* To be implemented when the OMAP platform will provide this feature */
273 return 0;
274}
275
Archit Tanejaf476ae92012-06-29 14:37:03 +0530276static inline bool dss_mgr_is_lcd(enum omap_channel id)
277{
278 if (id == OMAP_DSS_CHANNEL_LCD || id == OMAP_DSS_CHANNEL_LCD2 ||
279 id == OMAP_DSS_CHANNEL_LCD3)
280 return true;
281 else
282 return false;
283}
284
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200285/* DSS */
Laurent Pinchart11765d12017-08-05 01:44:01 +0300286#if defined(CONFIG_OMAP2_DSS_DEBUGFS)
Laurent Pinchart1c4b92e2018-02-13 14:00:31 +0200287struct dss_debugfs_entry *
288dss_debugfs_create_file(struct dss_device *dss, const char *name,
289 int (*show_fn)(struct seq_file *s, void *data),
290 void *data);
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200291void dss_debugfs_remove_file(struct dss_debugfs_entry *entry);
Laurent Pinchart11765d12017-08-05 01:44:01 +0300292#else
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200293static inline struct dss_debugfs_entry *
Laurent Pinchart1c4b92e2018-02-13 14:00:31 +0200294dss_debugfs_create_file(struct dss_device *dss, const char *name,
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200295 int (*show_fn)(struct seq_file *s, void *data),
296 void *data)
Laurent Pinchart11765d12017-08-05 01:44:01 +0300297{
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200298 return NULL;
299}
300
301static inline void dss_debugfs_remove_file(struct dss_debugfs_entry *entry)
302{
Laurent Pinchart11765d12017-08-05 01:44:01 +0300303}
304#endif /* CONFIG_OMAP2_DSS_DEBUGFS */
305
Laurent Pinchart7b295252018-02-13 14:00:21 +0200306struct dss_device *dss_get_device(struct device *dev);
307
308int dss_runtime_get(struct dss_device *dss);
309void dss_runtime_put(struct dss_device *dss);
Tomi Valkeinen99767542014-07-04 13:38:27 +0530310
Laurent Pinchart60f9c592018-02-13 14:00:26 +0200311unsigned long dss_get_dispc_clk_rate(struct dss_device *dss);
312unsigned long dss_get_max_fck_rate(struct dss_device *dss);
Laurent Pinchart1ef904e2018-02-13 14:00:27 +0200313enum omap_dss_output_id dss_get_supported_outputs(struct dss_device *dss,
314 enum omap_channel channel);
Laurent Pinchart8aea8e62018-02-13 14:00:24 +0200315int dss_dpi_select_source(struct dss_device *dss, int port,
316 enum omap_channel channel);
317void dss_select_hdmi_venc_clk_source(struct dss_device *dss,
318 enum dss_hdmi_venc_clk_source_select src);
Tomi Valkeinen407bd562016-05-17 13:50:55 +0300319const char *dss_get_clk_source_name(enum dss_clk_source clk_src);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200320
Tomi Valkeinen99767542014-07-04 13:38:27 +0530321/* DSS VIDEO PLL */
Laurent Pinchart7b295252018-02-13 14:00:21 +0200322struct dss_pll *dss_video_pll_init(struct dss_device *dss,
323 struct platform_device *pdev, int id,
324 struct regulator *regulator);
Tomi Valkeinen99767542014-07-04 13:38:27 +0530325void dss_video_pll_uninit(struct dss_pll *pll);
326
Laurent Pinchart27260992018-02-13 14:00:22 +0200327void dss_ctrl_pll_enable(struct dss_pll *pll, bool enable);
Tomi Valkeinenbe40eec2014-07-04 13:37:15 +0530328
Laurent Pinchartd7157df2018-02-13 14:00:23 +0200329void dss_sdi_init(struct dss_device *dss, int datapairs);
330int dss_sdi_enable(struct dss_device *dss);
331void dss_sdi_disable(struct dss_device *dss);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200332
Laurent Pinchart8aea8e62018-02-13 14:00:24 +0200333void dss_select_dsi_clk_source(struct dss_device *dss, int dsi_module,
334 enum dss_clk_source clk_src);
335void dss_select_lcd_clk_source(struct dss_device *dss,
336 enum omap_channel channel,
337 enum dss_clk_source clk_src);
Laurent Pinchart3cc62aa2018-02-13 14:00:25 +0200338enum dss_clk_source dss_get_dispc_clk_source(struct dss_device *dss);
339enum dss_clk_source dss_get_dsi_clk_source(struct dss_device *dss,
340 int dsi_module);
341enum dss_clk_source dss_get_lcd_clk_source(struct dss_device *dss,
342 enum omap_channel channel);
Tomi Valkeinen2f18c4d2010-01-08 18:00:36 +0200343
Laurent Pinchart1ef904e2018-02-13 14:00:27 +0200344void dss_set_venc_output(struct dss_device *dss, enum omap_dss_venc_type type);
345void dss_set_dac_pwrdn_bgz(struct dss_device *dss, bool enable);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200346
Laurent Pinchart60f9c592018-02-13 14:00:26 +0200347int dss_set_fck_rate(struct dss_device *dss, unsigned long rate);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200348
Tomi Valkeinend0f58bd2013-10-31 14:44:23 +0200349typedef bool (*dss_div_calc_func)(unsigned long fck, void *data);
Laurent Pinchart60f9c592018-02-13 14:00:26 +0200350bool dss_div_calc(struct dss_device *dss, unsigned long pck,
351 unsigned long fck_min, dss_div_calc_func func, void *data);
Tomi Valkeinen43417822013-03-05 16:34:05 +0200352
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200353/* SDI */
Archit Taneja387ce9f2014-05-22 17:01:57 +0530354#ifdef CONFIG_OMAP2_DSS_SDI
Laurent Pinchartd7157df2018-02-13 14:00:23 +0200355int sdi_init_port(struct dss_device *dss, struct platform_device *pdev,
356 struct device_node *port);
Tomi Valkeinenede92692015-06-04 14:12:16 +0300357void sdi_uninit_port(struct device_node *port);
Archit Taneja387ce9f2014-05-22 17:01:57 +0530358#else
Laurent Pinchartd7157df2018-02-13 14:00:23 +0200359static inline int sdi_init_port(struct dss_device *dss,
360 struct platform_device *pdev,
361 struct device_node *port)
Archit Taneja387ce9f2014-05-22 17:01:57 +0530362{
363 return 0;
364}
Tomi Valkeinenede92692015-06-04 14:12:16 +0300365static inline void sdi_uninit_port(struct device_node *port)
Archit Taneja387ce9f2014-05-22 17:01:57 +0530366{
367}
368#endif
Tomi Valkeinen2ecef242013-12-16 15:13:24 +0200369
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200370/* DSI */
Tomi Valkeinen989c79a2013-04-18 12:16:39 +0300371
Jani Nikula368a1482010-05-07 11:58:41 +0200372#ifdef CONFIG_OMAP2_DSS_DSI
Archit Taneja5a8b5722011-05-12 17:26:29 +0530373
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200374void dsi_dump_clocks(struct seq_file *s);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200375
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200376void dsi_irq_handler(void);
Archit Tanejaa3b3cc22011-09-08 18:42:16 +0530377
Jani Nikula368a1482010-05-07 11:58:41 +0200378#endif
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200379
380/* DPI */
Archit Taneja387ce9f2014-05-22 17:01:57 +0530381#ifdef CONFIG_OMAP2_DSS_DPI
Laurent Pinchart8aea8e62018-02-13 14:00:24 +0200382int dpi_init_port(struct dss_device *dss, struct platform_device *pdev,
383 struct device_node *port, enum dss_model dss_model);
Tomi Valkeinenede92692015-06-04 14:12:16 +0300384void dpi_uninit_port(struct device_node *port);
Archit Taneja387ce9f2014-05-22 17:01:57 +0530385#else
Tomi Valkeinen037f0312018-03-14 10:24:43 +0200386static inline int dpi_init_port(struct dss_device *dss,
Laurent Pinchart8aea8e62018-02-13 14:00:24 +0200387 struct platform_device *pdev,
388 struct device_node *port,
389 enum dss_model dss_model)
Archit Taneja387ce9f2014-05-22 17:01:57 +0530390{
391 return 0;
392}
Tomi Valkeinenede92692015-06-04 14:12:16 +0300393static inline void dpi_uninit_port(struct device_node *port)
Archit Taneja387ce9f2014-05-22 17:01:57 +0530394{
395}
396#endif
Tomi Valkeinen2ecef242013-12-16 15:13:24 +0200397
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200398/* DISPC */
Laurent Pinchart8a7eda72018-02-13 14:00:43 +0200399void dispc_dump_clocks(struct dispc_device *dispc, struct seq_file *s);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200400
Laurent Pinchart50638ae2018-02-13 14:00:42 +0200401int dispc_runtime_get(struct dispc_device *dispc);
402void dispc_runtime_put(struct dispc_device *dispc);
Tomi Valkeinen5034b1f2015-11-05 20:06:06 +0200403
Laurent Pinchart8a7eda72018-02-13 14:00:43 +0200404void dispc_enable_sidle(struct dispc_device *dispc);
405void dispc_disable_sidle(struct dispc_device *dispc);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200406
Laurent Pinchart8a7eda72018-02-13 14:00:43 +0200407void dispc_lcd_enable_signal(struct dispc_device *dispc, bool enable);
408void dispc_pck_free_enable(struct dispc_device *dispc, bool enable);
409void dispc_enable_fifomerge(struct dispc_device *dispc, bool enable);
Tomi Valkeinencd295ae2011-08-16 13:49:15 +0300410
Tomi Valkeinen7c284e62013-03-05 16:32:08 +0200411typedef bool (*dispc_div_calc_func)(int lckd, int pckd, unsigned long lck,
412 unsigned long pck, void *data);
Laurent Pinchart8a7eda72018-02-13 14:00:43 +0200413bool dispc_div_calc(struct dispc_device *dispc, unsigned long dispc_freq,
414 unsigned long pck_min, unsigned long pck_max,
415 dispc_div_calc_func func, void *data);
Tomi Valkeinen7c284e62013-03-05 16:32:08 +0200416
Laurent Pinchart8a7eda72018-02-13 14:00:43 +0200417bool dispc_mgr_timings_ok(struct dispc_device *dispc,
418 enum omap_channel channel,
419 const struct videomode *vm);
420int dispc_calc_clock_rates(struct dispc_device *dispc,
421 unsigned long dispc_fclk_rate,
422 struct dispc_clock_info *cinfo);
Tomi Valkeinencd295ae2011-08-16 13:49:15 +0300423
424
Laurent Pinchart8a7eda72018-02-13 14:00:43 +0200425void dispc_ovl_set_fifo_threshold(struct dispc_device *dispc,
426 enum omap_plane_id plane, u32 low, u32 high);
427void dispc_ovl_compute_fifo_thresholds(struct dispc_device *dispc,
428 enum omap_plane_id plane,
429 u32 *fifo_low, u32 *fifo_high,
430 bool use_fifomerge, bool manual_update);
Tomi Valkeinencd295ae2011-08-16 13:49:15 +0300431
Laurent Pinchart8a7eda72018-02-13 14:00:43 +0200432void dispc_mgr_set_clock_div(struct dispc_device *dispc,
433 enum omap_channel channel,
434 const struct dispc_clock_info *cinfo);
435int dispc_mgr_get_clock_div(struct dispc_device *dispc,
436 enum omap_channel channel,
437 struct dispc_clock_info *cinfo);
438void dispc_set_tv_pclk(struct dispc_device *dispc, unsigned long pclk);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200439
Tomi Valkeinendfc0fd82009-12-17 14:35:21 +0200440#ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
Laurent Pinchartd11e5c82018-02-11 15:07:34 +0200441static inline void dss_collect_irq_stats(u32 irqstatus, unsigned int *irq_arr)
Tomi Valkeinendfc0fd82009-12-17 14:35:21 +0200442{
443 int b;
444 for (b = 0; b < 32; ++b) {
445 if (irqstatus & (1 << b))
446 irq_arr[b]++;
447 }
448}
449#endif
450
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300451/* PLL */
452typedef bool (*dss_pll_calc_func)(int n, int m, unsigned long fint,
453 unsigned long clkdco, void *data);
454typedef bool (*dss_hsdiv_calc_func)(int m_dispc, unsigned long dispc,
455 void *data);
456
Laurent Pinchart798957a2018-02-13 14:00:30 +0200457int dss_pll_register(struct dss_device *dss, struct dss_pll *pll);
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300458void dss_pll_unregister(struct dss_pll *pll);
Laurent Pinchart798957a2018-02-13 14:00:30 +0200459struct dss_pll *dss_pll_find(struct dss_device *dss, const char *name);
460struct dss_pll *dss_pll_find_by_src(struct dss_device *dss,
461 enum dss_clk_source src);
Laurent Pinchartd11e5c82018-02-11 15:07:34 +0200462unsigned int dss_pll_get_clkout_idx_for_src(enum dss_clk_source src);
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300463int dss_pll_enable(struct dss_pll *pll);
464void dss_pll_disable(struct dss_pll *pll);
465int dss_pll_set_config(struct dss_pll *pll,
466 const struct dss_pll_clock_info *cinfo);
467
Tomi Valkeinencd0715f2016-05-17 21:23:37 +0300468bool dss_pll_hsdiv_calc_a(const struct dss_pll *pll, unsigned long clkdco,
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300469 unsigned long out_min, unsigned long out_max,
470 dss_hsdiv_calc_func func, void *data);
Tomi Valkeinencd0715f2016-05-17 21:23:37 +0300471bool dss_pll_calc_a(const struct dss_pll *pll, unsigned long clkin,
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300472 unsigned long pll_min, unsigned long pll_max,
473 dss_pll_calc_func func, void *data);
Tomi Valkeinenc17dc0e2016-05-18 10:45:20 +0300474
475bool dss_pll_calc_b(const struct dss_pll *pll, unsigned long clkin,
Tomi Valkeinenc1077512016-05-18 11:15:21 +0300476 unsigned long target_clkout, struct dss_pll_clock_info *cinfo);
Tomi Valkeinenc17dc0e2016-05-18 10:45:20 +0300477
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300478int dss_pll_write_config_type_a(struct dss_pll *pll,
479 const struct dss_pll_clock_info *cinfo);
480int dss_pll_write_config_type_b(struct dss_pll *pll,
481 const struct dss_pll_clock_info *cinfo);
Tomi Valkeineneb301992014-12-31 14:22:42 +0200482int dss_pll_wait_reset_done(struct dss_pll *pll);
Tomi Valkeinen0a201702014-10-22 14:21:59 +0300483
Andrew F. Davisd66c36a2017-12-05 14:29:32 -0600484extern struct platform_driver omap_dsshw_driver;
485extern struct platform_driver omap_dispchw_driver;
486#ifdef CONFIG_OMAP2_DSS_DSI
487extern struct platform_driver omap_dsihw_driver;
488#endif
489#ifdef CONFIG_OMAP2_DSS_VENC
490extern struct platform_driver omap_venchw_driver;
491#endif
492#ifdef CONFIG_OMAP4_DSS_HDMI
493extern struct platform_driver omapdss_hdmi4hw_driver;
494#endif
495#ifdef CONFIG_OMAP5_DSS_HDMI
496extern struct platform_driver omapdss_hdmi5hw_driver;
497#endif
498
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200499#endif