summaryrefslogtreecommitdiffstats
path: root/drivers/of/mem_generic.c
blob: 9094243c0400808bcb13f34c9d50cb8b8a44d458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <common.h>
#include <of.h>
#include <memory.h>

void of_add_memory_bank(struct device_node *node, bool dump, int r,
		u64 base, u64 size)
{
	static char str[6];

	sprintf(str, "ram%d", r);
	barebox_add_memory_bank(str, base, size);

	if (dump)
		pr_info("%s: %s: 0x%llx@0x%llx\n", node->name, str, size, base);
}