aboutsummaryrefslogtreecommitdiff
path: root/common/fdt.c
blob: c554b25e6d2934b25ef9be57c8b6066d36f7810b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <libfdt.h>

struct cell_info_t get_cellinfo(void *fdt, int offset)
{
	return (struct cell_info_t){
		fdt_size_cells(fdt, offset),
		fdt_address_cells(fdt, offset)
	};
}

/* how "reg" is interpreted depends on the parent node */
struct cell_info_t get_reginfo(void *fdt, const char *path)
{
	const char *i = strrchr(path, '/');
	if(!i)
		return (struct cell_info_t){0, 0};

	size_t baselen = i - path;
	if(i == 0)
		/* root node */
		baselen = 1;

	return get_cellinfo(fdt, fdt_path_offset_namelen(fdt, path, baselen));
}