summaryrefslogtreecommitdiffstats
path: root/drivers/nvmem/partition.c
blob: 3f0bdc58de40edf59134d219efe62e6d862b7d71 (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
// SPDX-License-Identifier: GPL-2.0
#include <common.h>
#include <driver.h>
#include <malloc.h>
#include <xfuncs.h>
#include <errno.h>
#include <init.h>
#include <io.h>
#include <linux/nvmem-provider.h>

static int nvmem_cdev_write(void *ctx, unsigned offset, const void *val, size_t bytes)
{
	return cdev_write(ctx, val, bytes, offset, 0);
}

static int nvmem_cdev_read(void *ctx, unsigned offset, void *buf, size_t bytes)
{
	return cdev_read(ctx, buf, bytes, offset, 0);
}

static struct nvmem_bus nvmem_cdev_bus = {
	.read = nvmem_cdev_read,
	.write = nvmem_cdev_write,
};

struct nvmem_device *nvmem_partition_register(struct cdev *cdev)
{
	struct nvmem_config config = {};

	config.name = cdev->name;
	config.dev = cdev->dev;
	config.cdev = cdev;
	config.priv = cdev;
	config.stride = 1;
	config.word_size = 1;
	config.size = cdev->size;
	config.bus = &nvmem_cdev_bus;

	return nvmem_register(&config);
}