dss.h 17.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * linux/drivers/video/omap2/dss/dss.h
 *
 * Copyright (C) 2009 Nokia Corporation
 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
 *
 * Some code and ideas taken from drivers/video/omap/ driver
 * by Imre Deak.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef __OMAP2_DSS_H
#define __OMAP2_DSS_H

26 27
#ifdef pr_fmt
#undef pr_fmt
28 29
#endif

30 31 32 33
#ifdef DSS_SUBSYS_NAME
#define pr_fmt(fmt) DSS_SUBSYS_NAME ": " fmt
#else
#define pr_fmt(fmt) fmt
34 35
#endif

36 37
#define DSSDBG(format, ...) \
	pr_debug(format, ## __VA_ARGS__)
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73

#ifdef DSS_SUBSYS_NAME
#define DSSERR(format, ...) \
	printk(KERN_ERR "omapdss " DSS_SUBSYS_NAME " error: " format, \
	## __VA_ARGS__)
#else
#define DSSERR(format, ...) \
	printk(KERN_ERR "omapdss error: " format, ## __VA_ARGS__)
#endif

#ifdef DSS_SUBSYS_NAME
#define DSSINFO(format, ...) \
	printk(KERN_INFO "omapdss " DSS_SUBSYS_NAME ": " format, \
	## __VA_ARGS__)
#else
#define DSSINFO(format, ...) \
	printk(KERN_INFO "omapdss: " format, ## __VA_ARGS__)
#endif

#ifdef DSS_SUBSYS_NAME
#define DSSWARN(format, ...) \
	printk(KERN_WARNING "omapdss " DSS_SUBSYS_NAME ": " format, \
	## __VA_ARGS__)
#else
#define DSSWARN(format, ...) \
	printk(KERN_WARNING "omapdss: " format, ## __VA_ARGS__)
#endif

/* OMAP TRM gives bitfields as start:end, where start is the higher bit
   number. For example 7:0 */
#define FLD_MASK(start, end)	(((1 << ((start) - (end) + 1)) - 1) << (end))
#define FLD_VAL(val, start, end) (((val) << (end)) & FLD_MASK(start, end))
#define FLD_GET(val, start, end) (((val) & FLD_MASK(start, end)) >> (end))
#define FLD_MOD(orig, val, start, end) \
	(((orig) & ~FLD_MASK(start, end)) | FLD_VAL(val, start, end))

74 75 76 77
enum dss_io_pad_mode {
	DSS_IO_PAD_MODE_RESET,
	DSS_IO_PAD_MODE_RFBI,
	DSS_IO_PAD_MODE_BYPASS,
78 79
};

80 81 82 83 84
enum dss_hdmi_venc_clk_source_select {
	DSS_VENC_TV_CLK = 0,
	DSS_HDMI_M_PCLK = 1,
};

85 86 87 88 89
enum dss_dsi_content_type {
	DSS_DSI_CONTENT_DCS,
	DSS_DSI_CONTENT_GENERIC,
};

90 91 92 93 94 95 96 97 98 99 100
enum dss_writeback_channel {
	DSS_WB_LCD1_MGR =	0,
	DSS_WB_LCD2_MGR =	1,
	DSS_WB_TV_MGR =		2,
	DSS_WB_OVL0 =		3,
	DSS_WB_OVL1 =		4,
	DSS_WB_OVL2 =		5,
	DSS_WB_OVL3 =		6,
	DSS_WB_LCD3_MGR =	7,
};

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
struct dss_clock_info {
	/* rates that we get with dividers below */
	unsigned long fck;

	/* dividers */
	u16 fck_div;
};

struct dispc_clock_info {
	/* rates that we get with dividers below */
	unsigned long lck;
	unsigned long pck;

	/* dividers */
	u16 lck_div;
	u16 pck_div;
};

struct dsi_clock_info {
	/* rates that we get with dividers below */
	unsigned long fint;
	unsigned long clkin4ddr;
	unsigned long clkin;
124 125 126 127
	unsigned long dsi_pll_hsdiv_dispc_clk;	/* OMAP3: DSI1_PLL_CLK
						 * OMAP4: PLLx_CLK1 */
	unsigned long dsi_pll_hsdiv_dsi_clk;	/* OMAP3: DSI2_PLL_CLK
						 * OMAP4: PLLx_CLK2 */
128 129 130 131 132
	unsigned long lp_clk;

	/* dividers */
	u16 regn;
	u16 regm;
133 134 135 136
	u16 regm_dispc;	/* OMAP3: REGM3
			 * OMAP4: REGM4 */
	u16 regm_dsi;	/* OMAP3: REGM4
			 * OMAP4: REGM5 */
137 138 139
	u16 lp_clk_div;
};

140 141 142 143 144 145
struct reg_field {
	u16 reg;
	u8 high;
	u8 low;
};

146 147 148 149 150 151 152 153 154 155 156 157 158
struct dss_lcd_mgr_config {
	enum dss_io_pad_mode io_pad_mode;

	bool stallmode;
	bool fifohandcheck;

	struct dispc_clock_info clock_info;

	int video_port_width;

	int lcden_sig_polarity;
};

159 160 161 162
struct seq_file;
struct platform_device;

/* core */
T
Tomi Valkeinen 已提交
163
struct platform_device *dss_get_core_pdev(void);
164
struct bus_type *dss_get_bus(void);
165 166
struct regulator *dss_get_vdds_dsi(void);
struct regulator *dss_get_vdds_sdi(void);
167 168
int dss_dsi_enable_pads(int dsi_id, unsigned lane_mask);
void dss_dsi_disable_pads(int dsi_id, unsigned lane_mask);
169
int dss_set_min_bus_tput(struct device *dev, unsigned long tput);
170
int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *));
171

172 173 174 175 176 177 178
struct omap_dss_device *dss_alloc_and_init_device(struct device *parent);
int dss_add_device(struct omap_dss_device *dssdev);
void dss_unregister_device(struct omap_dss_device *dssdev);
void dss_unregister_child_devices(struct device *parent);
void dss_put_device(struct omap_dss_device *dssdev);
void dss_copy_device_pdata(struct omap_dss_device *dst,
		const struct omap_dss_device *src);
179

T
Tomi Valkeinen 已提交
180 181
/* apply */
void dss_mgr_start_update(struct omap_overlay_manager *mgr);
182
int dss_mgr_enable(struct omap_overlay_manager *mgr);
183
void dss_mgr_disable(struct omap_overlay_manager *mgr);
184
void dss_mgr_set_timings(struct omap_overlay_manager *mgr,
185
		const struct omap_video_timings *timings);
186 187
void dss_mgr_set_lcd_config(struct omap_overlay_manager *mgr,
		const struct dss_lcd_mgr_config *config);
188 189 190 191
int dss_mgr_register_framedone_handler(struct omap_overlay_manager *mgr,
		void (*handler)(void *), void *data);
void dss_mgr_unregister_framedone_handler(struct omap_overlay_manager *mgr,
		void (*handler)(void *), void *data);
T
Tomi Valkeinen 已提交
192

193 194 195 196
/* output */
void dss_register_output(struct omap_dss_output *out);
void dss_unregister_output(struct omap_dss_output *out);

197 198 199 200 201
/* display */
int dss_suspend_all_devices(void);
int dss_resume_all_devices(void);
void dss_disable_all_devices(void);

202
int dss_init_device(struct platform_device *pdev,
203 204 205
		struct omap_dss_device *dssdev);
void dss_uninit_device(struct platform_device *pdev,
		struct omap_dss_device *dssdev);
T
Tomi Valkeinen 已提交
206 207 208 209 210

int display_init_sysfs(struct platform_device *pdev,
		struct omap_dss_device *dssdev);
void display_uninit_sysfs(struct platform_device *pdev,
		struct omap_dss_device *dssdev);
211 212 213 214

/* manager */
int dss_init_overlay_managers(struct platform_device *pdev);
void dss_uninit_overlay_managers(struct platform_device *pdev);
215 216
int dss_mgr_simple_check(struct omap_overlay_manager *mgr,
		const struct omap_overlay_manager_info *info);
217 218
int dss_mgr_check_timings(struct omap_overlay_manager *mgr,
		const struct omap_video_timings *timings);
219 220
int dss_mgr_check(struct omap_overlay_manager *mgr,
		struct omap_overlay_manager_info *info,
221
		const struct omap_video_timings *mgr_timings,
222
		const struct dss_lcd_mgr_config *config,
223
		struct omap_overlay_info **overlay_infos);
224

225 226 227 228 229 230 231 232 233
static inline bool dss_mgr_is_lcd(enum omap_channel id)
{
	if (id == OMAP_DSS_CHANNEL_LCD || id == OMAP_DSS_CHANNEL_LCD2 ||
			id == OMAP_DSS_CHANNEL_LCD3)
		return true;
	else
		return false;
}

234 235 236 237
int dss_manager_kobj_init(struct omap_overlay_manager *mgr,
		struct platform_device *pdev);
void dss_manager_kobj_uninit(struct omap_overlay_manager *mgr);

238 239 240 241
/* overlay */
void dss_init_overlays(struct platform_device *pdev);
void dss_uninit_overlays(struct platform_device *pdev);
void dss_overlay_setup_dispc_manager(struct omap_overlay_manager *mgr);
242 243
int dss_ovl_simple_check(struct omap_overlay *ovl,
		const struct omap_overlay_info *info);
244 245
int dss_ovl_check(struct omap_overlay *ovl, struct omap_overlay_info *info,
		const struct omap_video_timings *mgr_timings);
246 247
bool dss_ovl_use_replication(struct dss_lcd_mgr_config config,
		enum omap_color_mode mode);
248 249 250
int dss_overlay_kobj_init(struct omap_overlay *ovl,
		struct platform_device *pdev);
void dss_overlay_kobj_uninit(struct omap_overlay *ovl);
251 252

/* DSS */
T
Tomi Valkeinen 已提交
253
int dss_init_platform_driver(void) __init;
254
void dss_uninit_platform_driver(void);
255

256
int dss_dpi_select_source(enum omap_channel channel);
257
void dss_select_hdmi_venc_clk_source(enum dss_hdmi_venc_clk_source_select);
258
enum dss_hdmi_venc_clk_source_select dss_get_hdmi_venc_clk_source(void);
259
const char *dss_get_generic_clk_source_name(enum omap_dss_clk_source clk_src);
260
void dss_dump_clocks(struct seq_file *s);
261

262
#if defined(CONFIG_OMAP2_DSS_DEBUGFS)
263 264
void dss_debug_dump_clocks(struct seq_file *s);
#endif
265

266 267
int dss_get_ctx_loss_count(void);

268
void dss_sdi_init(int datapairs);
269 270 271
int dss_sdi_enable(void);
void dss_sdi_disable(void);

272 273
void dss_select_dsi_clk_source(int dsi_module,
		enum omap_dss_clk_source clk_src);
274
void dss_select_lcd_clk_source(enum omap_channel channel,
275 276
		enum omap_dss_clk_source clk_src);
enum omap_dss_clk_source dss_get_dispc_clk_source(void);
277
enum omap_dss_clk_source dss_get_dsi_clk_source(int dsi_module);
278
enum omap_dss_clk_source dss_get_lcd_clk_source(enum omap_channel channel);
279

280 281 282 283
void dss_set_venc_output(enum omap_dss_venc_type type);
void dss_set_dac_pwrdn_bgz(bool enable);

unsigned long dss_get_dpll4_rate(void);
284
int dss_calc_clock_rates(struct dss_clock_info *cinfo);
285
int dss_set_clock_div(struct dss_clock_info *cinfo);
286
int dss_calc_clock_div(unsigned long req_pck, struct dss_clock_info *dss_cinfo,
287 288 289
		struct dispc_clock_info *dispc_cinfo);

/* SDI */
T
Tomi Valkeinen 已提交
290 291
int sdi_init_platform_driver(void) __init;
void sdi_uninit_platform_driver(void) __exit;
292 293

/* DSI */
294
#ifdef CONFIG_OMAP2_DSS_DSI
295 296 297 298

struct dentry;
struct file_operations;

T
Tomi Valkeinen 已提交
299 300
int dsi_init_platform_driver(void) __init;
void dsi_uninit_platform_driver(void) __exit;
301

302 303 304
int dsi_runtime_get(struct platform_device *dsidev);
void dsi_runtime_put(struct platform_device *dsidev);

305 306 307
void dsi_dump_clocks(struct seq_file *s);

void dsi_irq_handler(void);
308 309
u8 dsi_get_pixel_size(enum omap_dss_dsi_pixel_format fmt);

310 311 312
unsigned long dsi_get_pll_hsdiv_dispc_rate(struct platform_device *dsidev);
int dsi_pll_set_clock_div(struct platform_device *dsidev,
		struct dsi_clock_info *cinfo);
313
int dsi_pll_calc_clock_div_pck(struct platform_device *dsidev,
314
		unsigned long req_pck, struct dsi_clock_info *cinfo,
315
		struct dispc_clock_info *dispc_cinfo);
316 317 318 319 320 321
int dsi_pll_init(struct platform_device *dsidev, bool enable_hsclk,
		bool enable_hsdiv);
void dsi_pll_uninit(struct platform_device *dsidev, bool disconnect_lanes);
void dsi_wait_pll_hsdiv_dispc_active(struct platform_device *dsidev);
void dsi_wait_pll_hsdiv_dsi_active(struct platform_device *dsidev);
struct platform_device *dsi_get_dsidev_from_id(int module);
322
#else
323 324 325 326 327 328 329
static inline int dsi_runtime_get(struct platform_device *dsidev)
{
	return 0;
}
static inline void dsi_runtime_put(struct platform_device *dsidev)
{
}
330 331 332 333 334
static inline u8 dsi_get_pixel_size(enum omap_dss_dsi_pixel_format fmt)
{
	WARN("%s: DSI not compiled in, returning pixel_size as 0\n", __func__);
	return 0;
}
335
static inline unsigned long dsi_get_pll_hsdiv_dispc_rate(struct platform_device *dsidev)
336 337 338 339
{
	WARN("%s: DSI not compiled in, returning rate as 0\n", __func__);
	return 0;
}
340 341 342 343 344 345 346
static inline int dsi_pll_set_clock_div(struct platform_device *dsidev,
		struct dsi_clock_info *cinfo)
{
	WARN("%s: DSI not compiled in\n", __func__);
	return -ENODEV;
}
static inline int dsi_pll_calc_clock_div_pck(struct platform_device *dsidev,
347
		unsigned long req_pck,
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
		struct dsi_clock_info *dsi_cinfo,
		struct dispc_clock_info *dispc_cinfo)
{
	WARN("%s: DSI not compiled in\n", __func__);
	return -ENODEV;
}
static inline int dsi_pll_init(struct platform_device *dsidev,
		bool enable_hsclk, bool enable_hsdiv)
{
	WARN("%s: DSI not compiled in\n", __func__);
	return -ENODEV;
}
static inline void dsi_pll_uninit(struct platform_device *dsidev,
		bool disconnect_lanes)
{
}
364
static inline void dsi_wait_pll_hsdiv_dispc_active(struct platform_device *dsidev)
365 366
{
}
367
static inline void dsi_wait_pll_hsdiv_dsi_active(struct platform_device *dsidev)
368 369
{
}
370 371 372 373
static inline struct platform_device *dsi_get_dsidev_from_id(int module)
{
	return NULL;
}
374
#endif
375 376

/* DPI */
T
Tomi Valkeinen 已提交
377 378
int dpi_init_platform_driver(void) __init;
void dpi_uninit_platform_driver(void) __exit;
379 380

/* DISPC */
T
Tomi Valkeinen 已提交
381 382
int dispc_init_platform_driver(void) __init;
void dispc_uninit_platform_driver(void) __exit;
383
void dispc_dump_clocks(struct seq_file *s);
384 385 386 387
u32 dispc_read_irqstatus(void);
void dispc_clear_irqstatus(u32 mask);
u32 dispc_read_irqenable(void);
void dispc_write_irqenable(u32 mask);
388

389 390
int dispc_runtime_get(void);
void dispc_runtime_put(void);
391 392 393 394 395 396

void dispc_enable_sidle(void);
void dispc_disable_sidle(void);

void dispc_lcd_enable_signal(bool enable);
void dispc_pck_free_enable(bool enable);
397 398 399 400
void dispc_enable_fifomerge(bool enable);
void dispc_enable_gamma_table(bool enable);
void dispc_set_loadmode(enum omap_dss_load_mode mode);

401
bool dispc_mgr_timings_ok(enum omap_channel channel,
402
		const struct omap_video_timings *timings);
403
unsigned long dispc_fclk_rate(void);
404
void dispc_find_clk_divs(unsigned long req_pck, unsigned long fck,
405 406 407 408 409
		struct dispc_clock_info *cinfo);
int dispc_calc_clock_rates(unsigned long dispc_fclk_rate,
		struct dispc_clock_info *cinfo);


410
void dispc_ovl_set_fifo_threshold(enum omap_plane plane, u32 low, u32 high);
411
void dispc_ovl_compute_fifo_thresholds(enum omap_plane plane,
412 413
		u32 *fifo_low, u32 *fifo_high, bool use_fifomerge,
		bool manual_update);
414
int dispc_ovl_setup(enum omap_plane plane, const struct omap_overlay_info *oi,
415 416
		bool replication, const struct omap_video_timings *mgr_timings,
		bool mem_to_mem);
417
int dispc_ovl_enable(enum omap_plane plane, bool enable);
T
Tomi Valkeinen 已提交
418
bool dispc_ovl_enabled(enum omap_plane plane);
419 420
void dispc_ovl_set_channel_out(enum omap_plane plane,
		enum omap_channel channel);
421

422
u32 dispc_mgr_get_vsync_irq(enum omap_channel channel);
423
u32 dispc_mgr_get_framedone_irq(enum omap_channel channel);
424
u32 dispc_mgr_get_sync_lost_irq(enum omap_channel channel);
425 426
bool dispc_mgr_go_busy(enum omap_channel channel);
void dispc_mgr_go(enum omap_channel channel);
427
void dispc_mgr_enable(enum omap_channel channel, bool enable);
428
bool dispc_mgr_is_enabled(enum omap_channel channel);
429 430
void dispc_mgr_set_lcd_config(enum omap_channel channel,
		const struct dss_lcd_mgr_config *config);
431
void dispc_mgr_set_timings(enum omap_channel channel,
432
		const struct omap_video_timings *timings);
433 434
unsigned long dispc_mgr_lclk_rate(enum omap_channel channel);
unsigned long dispc_mgr_pclk_rate(enum omap_channel channel);
435
unsigned long dispc_core_clk_rate(void);
436
void dispc_mgr_set_clock_div(enum omap_channel channel,
437
		const struct dispc_clock_info *cinfo);
438
int dispc_mgr_get_clock_div(enum omap_channel channel,
439
		struct dispc_clock_info *cinfo);
440
void dispc_mgr_setup(enum omap_channel channel,
441
		const struct omap_overlay_manager_info *info);
442

443 444 445 446 447
u32 dispc_wb_get_framedone_irq(void);
bool dispc_wb_go_busy(void);
void dispc_wb_go(void);
void dispc_wb_enable(bool enable);
bool dispc_wb_is_enabled(void);
448
void dispc_wb_set_channel_in(enum dss_writeback_channel channel);
449
int dispc_wb_setup(const struct omap_dss_writeback_info *wi,
450
		bool mem_to_mem, const struct omap_video_timings *timings);
451

452
/* VENC */
453
#ifdef CONFIG_OMAP2_DSS_VENC
T
Tomi Valkeinen 已提交
454 455
int venc_init_platform_driver(void) __init;
void venc_uninit_platform_driver(void) __exit;
456
unsigned long venc_get_pixel_clock(void);
457
#else
458 459 460 461 462
static inline unsigned long venc_get_pixel_clock(void)
{
	WARN("%s: VENC not compiled in, returning pclk as 0\n", __func__);
	return 0;
}
463
#endif
464 465 466 467 468 469 470 471
int omapdss_venc_display_enable(struct omap_dss_device *dssdev);
void omapdss_venc_display_disable(struct omap_dss_device *dssdev);
void omapdss_venc_set_timings(struct omap_dss_device *dssdev,
		struct omap_video_timings *timings);
int omapdss_venc_check_timings(struct omap_dss_device *dssdev,
		struct omap_video_timings *timings);
u32 omapdss_venc_get_wss(struct omap_dss_device *dssdev);
int omapdss_venc_set_wss(struct omap_dss_device *dssdev, u32 wss);
472 473
void omapdss_venc_set_type(struct omap_dss_device *dssdev,
		enum omap_dss_venc_type type);
474 475
void omapdss_venc_invert_vid_out_polarity(struct omap_dss_device *dssdev,
		bool invert_polarity);
476 477
int venc_panel_init(void);
void venc_panel_exit(void);
478

479 480
/* HDMI */
#ifdef CONFIG_OMAP4_DSS_HDMI
T
Tomi Valkeinen 已提交
481 482
int hdmi_init_platform_driver(void) __init;
void hdmi_uninit_platform_driver(void) __exit;
483
unsigned long hdmi_get_pixel_clock(void);
484
#else
485 486 487 488 489
static inline unsigned long hdmi_get_pixel_clock(void)
{
	WARN("%s: HDMI not compiled in, returning pclk as 0\n", __func__);
	return 0;
}
490 491 492
#endif
int omapdss_hdmi_display_enable(struct omap_dss_device *dssdev);
void omapdss_hdmi_display_disable(struct omap_dss_device *dssdev);
493 494
int omapdss_hdmi_core_enable(struct omap_dss_device *dssdev);
void omapdss_hdmi_core_disable(struct omap_dss_device *dssdev);
495 496
void omapdss_hdmi_display_set_timing(struct omap_dss_device *dssdev,
		struct omap_video_timings *timings);
497 498
int omapdss_hdmi_display_check_timing(struct omap_dss_device *dssdev,
					struct omap_video_timings *timings);
499
int omapdss_hdmi_read_edid(u8 *buf, int len);
500
bool omapdss_hdmi_detect(void);
501 502
int hdmi_panel_init(void);
void hdmi_panel_exit(void);
503 504 505 506 507 508 509 510
#ifdef CONFIG_OMAP4_DSS_HDMI_AUDIO
int hdmi_audio_enable(void);
void hdmi_audio_disable(void);
int hdmi_audio_start(void);
void hdmi_audio_stop(void);
bool hdmi_mode_has_audio(void);
int hdmi_audio_config(struct omap_dss_audio *audio);
#endif
511

512
/* RFBI */
T
Tomi Valkeinen 已提交
513 514
int rfbi_init_platform_driver(void) __init;
void rfbi_uninit_platform_driver(void) __exit;
515

516 517 518 519 520 521 522 523 524 525 526 527

#ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
static inline void dss_collect_irq_stats(u32 irqstatus, unsigned *irq_arr)
{
	int b;
	for (b = 0; b < 32; ++b) {
		if (irqstatus & (1 << b))
			irq_arr[b]++;
	}
}
#endif

T
Tomi Valkeinen 已提交
528 529 530 531 532 533 534 535
struct dss_mgr_ops {
	void (*start_update)(struct omap_overlay_manager *mgr);
	int (*enable)(struct omap_overlay_manager *mgr);
	void (*disable)(struct omap_overlay_manager *mgr);
	void (*set_timings)(struct omap_overlay_manager *mgr,
			const struct omap_video_timings *timings);
	void (*set_lcd_config)(struct omap_overlay_manager *mgr,
			const struct dss_lcd_mgr_config *config);
536 537 538 539
	int (*register_framedone_handler)(struct omap_overlay_manager *mgr,
			void (*handler)(void *), void *data);
	void (*unregister_framedone_handler)(struct omap_overlay_manager *mgr,
			void (*handler)(void *), void *data);
T
Tomi Valkeinen 已提交
540 541 542 543 544
};

int dss_install_mgr_ops(const struct dss_mgr_ops *mgr_ops);
void dss_uninstall_mgr_ops(void);

545
#endif