upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
2.7 KiB
119 lines
2.7 KiB
/*
|
|
* Copyright (C) 2015 Google, Inc
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <errno.h>
|
|
#include <video_bridge.h>
|
|
|
|
int video_bridge_set_backlight(struct udevice *dev, int percent)
|
|
{
|
|
struct video_bridge_ops *ops = video_bridge_get_ops(dev);
|
|
|
|
if (!ops->set_backlight)
|
|
return -ENOSYS;
|
|
|
|
return ops->set_backlight(dev, percent);
|
|
}
|
|
|
|
int video_bridge_attach(struct udevice *dev)
|
|
{
|
|
struct video_bridge_ops *ops = video_bridge_get_ops(dev);
|
|
|
|
if (!ops->attach)
|
|
return -ENOSYS;
|
|
|
|
return ops->attach(dev);
|
|
}
|
|
|
|
int video_bridge_check_attached(struct udevice *dev)
|
|
{
|
|
struct video_bridge_priv *uc_priv = dev_get_uclass_priv(dev);
|
|
struct video_bridge_ops *ops = video_bridge_get_ops(dev);
|
|
int ret;
|
|
|
|
if (!ops->check_attached) {
|
|
ret = dm_gpio_get_value(&uc_priv->hotplug);
|
|
|
|
return ret > 0 ? 0 : ret == 0 ? -ENOTCONN : ret;
|
|
}
|
|
|
|
return ops->check_attached(dev);
|
|
}
|
|
|
|
static int video_bridge_pre_probe(struct udevice *dev)
|
|
{
|
|
struct video_bridge_priv *uc_priv = dev_get_uclass_priv(dev);
|
|
int ret;
|
|
|
|
debug("%s\n", __func__);
|
|
ret = gpio_request_by_name(dev, "sleep-gpios", 0,
|
|
&uc_priv->sleep, GPIOD_IS_OUT);
|
|
if (ret) {
|
|
debug("%s: Could not decode sleep-gpios (%d)\n", __func__, ret);
|
|
return ret;
|
|
}
|
|
/*
|
|
* Drop this for now as we do not have driver model pinctrl support
|
|
*
|
|
* ret = dm_gpio_set_pull(&uc_priv->sleep, GPIO_PULL_NONE);
|
|
* if (ret) {
|
|
* debug("%s: Could not set sleep pull value\n", __func__);
|
|
* return ret;
|
|
* }
|
|
*/
|
|
ret = gpio_request_by_name(dev, "reset-gpios", 0, &uc_priv->reset,
|
|
GPIOD_IS_OUT);
|
|
if (ret) {
|
|
debug("%s: Could not decode reset-gpios (%d)\n", __func__, ret);
|
|
return ret;
|
|
}
|
|
/*
|
|
* Drop this for now as we do not have driver model pinctrl support
|
|
*
|
|
* ret = dm_gpio_set_pull(&uc_priv->reset, GPIO_PULL_NONE);
|
|
* if (ret) {
|
|
* debug("%s: Could not set reset pull value\n", __func__);
|
|
* return ret;
|
|
* }
|
|
*/
|
|
ret = gpio_request_by_name(dev, "hotplug-gpios", 0, &uc_priv->hotplug,
|
|
GPIOD_IS_IN);
|
|
if (ret && ret != -ENOENT) {
|
|
debug("%s: Could not decode hotplug (%d)\n", __func__, ret);
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int video_bridge_set_active(struct udevice *dev, bool active)
|
|
{
|
|
struct video_bridge_priv *uc_priv = dev_get_uclass_priv(dev);
|
|
int ret;
|
|
|
|
debug("%s: %d\n", __func__, active);
|
|
ret = dm_gpio_set_value(&uc_priv->sleep, !active);
|
|
if (ret)
|
|
return ret;
|
|
if (active) {
|
|
ret = dm_gpio_set_value(&uc_priv->reset, true);
|
|
if (ret)
|
|
return ret;
|
|
udelay(10);
|
|
ret = dm_gpio_set_value(&uc_priv->reset, false);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
UCLASS_DRIVER(video_bridge) = {
|
|
.id = UCLASS_VIDEO_BRIDGE,
|
|
.name = "video_bridge",
|
|
.per_device_auto_alloc_size = sizeof(struct video_bridge_priv),
|
|
.pre_probe = video_bridge_pre_probe,
|
|
};
|
|
|