blob: 910dce623e90d75b6342973ee91c983abe9c9cd1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass64ce0ca2015-07-06 12:54:31 -06002/*
3 * Copyright (c) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass64ce0ca2015-07-06 12:54:31 -06005 */
6
7#include <common.h>
8#include <dm.h>
9#include <errno.h>
10#include <ram.h>
Simon Glass401d1c42020-10-30 21:38:53 -060011#include <asm/global_data.h>
Simon Glass64ce0ca2015-07-06 12:54:31 -060012#include <asm/test.h>
13
14DECLARE_GLOBAL_DATA_PTR;
15
16static int sandbox_get_info(struct udevice *dev, struct ram_info *info)
17{
18 info->base = 0;
19 info->size = gd->ram_size;
20
21 return 0;
22}
23
24static const struct ram_ops sandbox_ram_ops = {
25 .get_info = sandbox_get_info,
26};
27
28static const struct udevice_id sandbox_ram_ids[] = {
29 { .compatible = "sandbox,ram" },
30 { }
31};
32
33U_BOOT_DRIVER(warm_ram_sandbox) = {
34 .name = "ram_sandbox",
35 .id = UCLASS_RAM,
36 .of_match = sandbox_ram_ids,
37 .ops = &sandbox_ram_ops,
38};