blob: 2d948508d574f51f18d4f0071d159874083f05e9 [file] [log] [blame]
Eric Benard93ad66c2014-04-04 19:05:52 +02001/*
2 * SPDX-License-Identifier: GPL-2.0+
3 */
4
5#ifndef __IMX_VIDEO_H_
6#define __IMX_VIDEO_H_
7
8#include <linux/fb.h>
9#include <ipu_pixfmt.h>
10
11struct display_info_t {
12 int bus;
13 int addr;
14 int pixfmt;
15 int (*detect)(struct display_info_t const *dev);
16 void (*enable)(struct display_info_t const *dev);
17 struct fb_videomode mode;
18};
19
Eric Benarde688a992014-04-04 19:05:56 +020020#ifdef CONFIG_IMX_HDMI
21extern int detect_hdmi(struct display_info_t const *dev);
22#endif
23
Eric Benard93ad66c2014-04-04 19:05:52 +020024#endif