2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-06-23 21:39:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Google, Inc
|
|
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
|
|
*/
|
|
|
|
|
2021-04-27 09:02:19 +00:00
|
|
|
#define LOG_CATEGORY UCLASS_RAM
|
|
|
|
|
2015-06-23 21:39:04 +00:00
|
|
|
#include <common.h>
|
|
|
|
#include <ram.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <dm/lists.h>
|
|
|
|
#include <dm/root.h>
|
|
|
|
|
|
|
|
int ram_get_info(struct udevice *dev, struct ram_info *info)
|
|
|
|
{
|
|
|
|
struct ram_ops *ops = ram_get_ops(dev);
|
|
|
|
|
|
|
|
if (!ops->get_info)
|
|
|
|
return -ENOSYS;
|
|
|
|
|
|
|
|
return ops->get_info(dev, info);
|
|
|
|
}
|
|
|
|
|
|
|
|
UCLASS_DRIVER(ram) = {
|
|
|
|
.id = UCLASS_RAM,
|
|
|
|
.name = "ram",
|
|
|
|
};
|