summaryrefslogtreecommitdiff
path: root/drivers/smem/sandbox_smem.c
blob: 7397e4407ad473c266f7c207fe21d177ef8571d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (c) 2018 Ramon Fried <ramon.fried@gmail.com>
 */

#include <common.h>
#include <dm.h>
#include <errno.h>
#include <smem.h>
#include <asm/test.h>

static int sandbox_smem_alloc(unsigned int host,
		unsigned int item, size_t size)
{
	return 0;
}

static void *sandbox_smem_get(unsigned int host,
		unsigned int item, size_t *size)
{
	return NULL;
}

static int sandbox_smem_get_free_space(unsigned int host)
{
	return 0;
}

static const struct smem_ops sandbox_smem_ops = {
	.alloc	= sandbox_smem_alloc,
	.get	= sandbox_smem_get,
	.get_free_space	= sandbox_smem_get_free_space,
};

static const struct udevice_id sandbox_smem_ids[] = {
	{ .compatible = "sandbox,smem" },
	{ }
};

U_BOOT_DRIVER(smem_sandbox) = {
	.name		= "smem_sandbox",
	.id		= UCLASS_SMEM,
	.of_match	= sandbox_smem_ids,
	.ops		= &sandbox_smem_ops,
};