mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
28576f8182
Get timings from panel instead of read device tree. Signed-off-by: Yannick Fertré <yannick.fertre@st.com> Reviewed-by: Simon Glass <sjg@chromium.org>
35 lines
670 B
C
35 lines
670 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2016 Google, Inc
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <panel.h>
|
|
|
|
int panel_enable_backlight(struct udevice *dev)
|
|
{
|
|
struct panel_ops *ops = panel_get_ops(dev);
|
|
|
|
if (!ops->enable_backlight)
|
|
return -ENOSYS;
|
|
|
|
return ops->enable_backlight(dev);
|
|
}
|
|
|
|
int panel_get_display_timing(struct udevice *dev,
|
|
struct display_timing *timings)
|
|
{
|
|
struct panel_ops *ops = panel_get_ops(dev);
|
|
|
|
if (!ops->get_display_timing)
|
|
return -ENOSYS;
|
|
|
|
return ops->get_display_timing(dev, timings);
|
|
}
|
|
|
|
UCLASS_DRIVER(panel) = {
|
|
.id = UCLASS_PANEL,
|
|
.name = "panel",
|
|
};
|