blob: 4e21240fd4cb8f95415320afad68e8c5faf7f482 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass6c51df62015-06-23 15:39:04 -06002/*
3 * Copyright (C) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass6c51df62015-06-23 15:39:04 -06005 */
6
Patrick Delaunayb953ec22021-04-27 11:02:19 +02007#define LOG_CATEGORY UCLASS_RAM
8
Simon Glass6c51df62015-06-23 15:39:04 -06009#include <common.h>
10#include <ram.h>
11#include <dm.h>
12#include <errno.h>
13#include <dm/lists.h>
14#include <dm/root.h>
15
16int ram_get_info(struct udevice *dev, struct ram_info *info)
17{
18 struct ram_ops *ops = ram_get_ops(dev);
19
20 if (!ops->get_info)
21 return -ENOSYS;
22
23 return ops->get_info(dev, info);
24}
25
26UCLASS_DRIVER(ram) = {
27 .id = UCLASS_RAM,
28 .name = "ram",
29};