2 * Copyright 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>
4 * generic videomode description
6 * This file is released under the GPLv2
9 #ifndef __LINUX_VIDEOMODE_H
10 #define __LINUX_VIDEOMODE_H
12 #include <linux/types.h>
13 #include <video/display_timing.h>
16 * Subsystem independent description of a videomode.
17 * Can be generated from struct display_timing.
20 unsigned long pixelclock; /* pixelclock in Hz */
32 enum display_flags flags; /* display flags */
36 * videomode_from_timing - convert display timing to videomode
37 * @dt: display_timing structure
41 * This function converts a struct display_timing to a struct videomode.
43 void videomode_from_timing(const struct display_timing *dt,
44 struct videomode *vm);
47 * videomode_from_timings - convert one display timings entry to videomode
48 * @disp: structure with all possible timing entries
50 * @index: index into the list of display timings in devicetree
53 * This function converts one struct display_timing entry to a struct videomode.
55 int videomode_from_timings(const struct display_timings *disp,
56 struct videomode *vm, unsigned int index);