2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-04-04 17:05:52 +00:00
|
|
|
|
|
|
|
#ifndef __IMX_VIDEO_H_
|
|
|
|
#define __IMX_VIDEO_H_
|
|
|
|
|
|
|
|
#include <linux/fb.h>
|
|
|
|
#include <ipu_pixfmt.h>
|
|
|
|
|
|
|
|
struct display_info_t {
|
|
|
|
int bus;
|
|
|
|
int addr;
|
|
|
|
int pixfmt;
|
2016-11-01 14:04:21 +00:00
|
|
|
int di;
|
2014-04-04 17:05:52 +00:00
|
|
|
int (*detect)(struct display_info_t const *dev);
|
|
|
|
void (*enable)(struct display_info_t const *dev);
|
|
|
|
struct fb_videomode mode;
|
|
|
|
};
|
|
|
|
|
2014-04-04 17:05:56 +00:00
|
|
|
#ifdef CONFIG_IMX_HDMI
|
|
|
|
extern int detect_hdmi(struct display_info_t const *dev);
|
|
|
|
#endif
|
|
|
|
|
2014-09-30 22:40:04 +00:00
|
|
|
#ifdef CONFIG_IMX_VIDEO_SKIP
|
|
|
|
extern struct display_info_t const displays[];
|
|
|
|
extern size_t display_count;
|
|
|
|
#endif
|
|
|
|
|
2015-04-20 05:53:48 +00:00
|
|
|
int ipu_set_ldb_clock(int rate);
|
2019-03-18 22:29:31 +00:00
|
|
|
int ipu_displays_init(void);
|
2014-04-04 17:05:52 +00:00
|
|
|
#endif
|