blob: 2ecf80c082e4a90bf348378d37788dc7a9679608 [file] [log] [blame]
Thomas Gleixner55716d22019-06-01 10:08:42 +02001// SPDX-License-Identifier: GPL-2.0-only
Steffen Trumtrar8714c0c2012-12-17 14:20:17 +01002/*
3 * generic display timing functions
4 *
5 * Copyright (c) 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>, Pengutronix
Steffen Trumtrar8714c0c2012-12-17 14:20:17 +01006 */
7
8#include <linux/errno.h>
9#include <linux/export.h>
10#include <video/display_timing.h>
11#include <video/videomode.h>
12
Tomi Valkeinen6cd2c7d2013-03-21 14:20:12 +020013void videomode_from_timing(const struct display_timing *dt,
14 struct videomode *vm)
Steffen Trumtrar8714c0c2012-12-17 14:20:17 +010015{
Tomi Valkeinen694f0502013-03-12 10:35:16 +020016 vm->pixelclock = dt->pixelclock.typ;
17 vm->hactive = dt->hactive.typ;
18 vm->hfront_porch = dt->hfront_porch.typ;
19 vm->hback_porch = dt->hback_porch.typ;
20 vm->hsync_len = dt->hsync_len.typ;
Steffen Trumtrar8714c0c2012-12-17 14:20:17 +010021
Tomi Valkeinen694f0502013-03-12 10:35:16 +020022 vm->vactive = dt->vactive.typ;
23 vm->vfront_porch = dt->vfront_porch.typ;
24 vm->vback_porch = dt->vback_porch.typ;
25 vm->vsync_len = dt->vsync_len.typ;
Steffen Trumtrar8714c0c2012-12-17 14:20:17 +010026
Tomi Valkeinen06a33072013-03-12 10:26:45 +020027 vm->flags = dt->flags;
Tomi Valkeinen6cd2c7d2013-03-21 14:20:12 +020028}
29EXPORT_SYMBOL_GPL(videomode_from_timing);
30
31int videomode_from_timings(const struct display_timings *disp,
32 struct videomode *vm, unsigned int index)
33{
34 struct display_timing *dt;
35
36 dt = display_timings_get(disp, index);
37 if (!dt)
38 return -EINVAL;
39
40 videomode_from_timing(dt, vm);
Steffen Trumtrar8714c0c2012-12-17 14:20:17 +010041
42 return 0;
43}
Tomi Valkeinen6cd2c7d2013-03-21 14:20:12 +020044EXPORT_SYMBOL_GPL(videomode_from_timings);