1
0
Fork 0
mirror of https://github.com/u-boot/u-boot.git synced 2025-04-24 06:24:17 +00:00
u-boot/drivers/smem/sandbox_smem.c
Tom Rini 03de305ec4 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"
As part of bringing the master branch back in to next, we need to allow
for all of these changes to exist here.

Reported-by: Jonas Karlman <jonas@kwiboo.se>
Signed-off-by: Tom Rini <trini@konsulko.com>
2024-05-20 13:35:03 -06:00

44 lines
852 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (c) 2018 Ramon Fried <ramon.fried@gmail.com>
*/
#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,
};