2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-03-26 15:29:27 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Google, Inc
|
|
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
2016-01-19 03:19:17 +00:00
|
|
|
#include <pch.h>
|
2015-03-26 15:29:27 +00:00
|
|
|
|
2016-02-01 09:40:42 +00:00
|
|
|
int pch_get_spi_base(struct udevice *dev, ulong *sbasep)
|
2016-01-19 03:19:17 +00:00
|
|
|
{
|
|
|
|
struct pch_ops *ops = pch_get_ops(dev);
|
|
|
|
|
|
|
|
*sbasep = 0;
|
2016-02-01 09:40:42 +00:00
|
|
|
if (!ops->get_spi_base)
|
2016-01-19 03:19:17 +00:00
|
|
|
return -ENOSYS;
|
|
|
|
|
2016-02-01 09:40:42 +00:00
|
|
|
return ops->get_spi_base(dev, sbasep);
|
2016-01-19 03:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int pch_set_spi_protect(struct udevice *dev, bool protect)
|
|
|
|
{
|
|
|
|
struct pch_ops *ops = pch_get_ops(dev);
|
|
|
|
|
|
|
|
if (!ops->set_spi_protect)
|
|
|
|
return -ENOSYS;
|
|
|
|
|
|
|
|
return ops->set_spi_protect(dev, protect);
|
|
|
|
}
|
|
|
|
|
2016-02-01 09:40:43 +00:00
|
|
|
int pch_get_gpio_base(struct udevice *dev, u32 *gbasep)
|
|
|
|
{
|
|
|
|
struct pch_ops *ops = pch_get_ops(dev);
|
|
|
|
|
|
|
|
*gbasep = 0;
|
|
|
|
if (!ops->get_gpio_base)
|
|
|
|
return -ENOSYS;
|
|
|
|
|
|
|
|
return ops->get_gpio_base(dev, gbasep);
|
|
|
|
}
|
|
|
|
|
2016-02-01 09:40:45 +00:00
|
|
|
int pch_get_io_base(struct udevice *dev, u32 *iobasep)
|
|
|
|
{
|
|
|
|
struct pch_ops *ops = pch_get_ops(dev);
|
|
|
|
|
|
|
|
*iobasep = 0;
|
|
|
|
if (!ops->get_io_base)
|
|
|
|
return -ENOSYS;
|
|
|
|
|
|
|
|
return ops->get_io_base(dev, iobasep);
|
|
|
|
}
|
|
|
|
|
2019-02-17 03:24:51 +00:00
|
|
|
int pch_ioctl(struct udevice *dev, ulong req, void *data, int size)
|
|
|
|
{
|
|
|
|
struct pch_ops *ops = pch_get_ops(dev);
|
|
|
|
|
|
|
|
if (!ops->ioctl)
|
|
|
|
return -ENOSYS;
|
|
|
|
|
|
|
|
return ops->ioctl(dev, req, data, size);
|
|
|
|
}
|
|
|
|
|
2015-03-26 15:29:27 +00:00
|
|
|
UCLASS_DRIVER(pch) = {
|
|
|
|
.id = UCLASS_PCH,
|
|
|
|
.name = "pch",
|
2016-07-05 23:10:10 +00:00
|
|
|
.post_bind = dm_scan_fdt_dev,
|
2015-03-26 15:29:27 +00:00
|
|
|
};
|