2019-06-01 08:08:42 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2012-10-04 13:32:52 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>
|
|
|
|
*
|
|
|
|
* display timings of helpers
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_OF_DISPLAY_TIMING_H
|
|
|
|
#define __LINUX_OF_DISPLAY_TIMING_H
|
|
|
|
|
|
|
|
struct device_node;
|
2013-06-26 13:34:25 +00:00
|
|
|
struct display_timing;
|
2012-10-04 13:32:52 +00:00
|
|
|
struct display_timings;
|
|
|
|
|
|
|
|
#define OF_USE_NATIVE_MODE -1
|
|
|
|
|
2014-10-06 12:03:57 +00:00
|
|
|
#ifdef CONFIG_OF
|
2016-10-03 13:55:48 +00:00
|
|
|
int of_get_display_timing(const struct device_node *np, const char *name,
|
2013-05-16 12:36:38 +00:00
|
|
|
struct display_timing *dt);
|
2016-10-03 13:55:48 +00:00
|
|
|
struct display_timings *of_get_display_timings(const struct device_node *np);
|
2014-10-06 12:03:57 +00:00
|
|
|
#else
|
2016-10-03 13:55:48 +00:00
|
|
|
static inline int of_get_display_timing(const struct device_node *np,
|
|
|
|
const char *name, struct display_timing *dt)
|
2014-10-06 12:03:57 +00:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2016-10-03 13:55:48 +00:00
|
|
|
static inline struct display_timings *
|
|
|
|
of_get_display_timings(const struct device_node *np)
|
2014-10-06 12:03:57 +00:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
2012-10-04 13:32:52 +00:00
|
|
|
|
|
|
|
#endif
|