blob: 3f20d72a69640aed1d7ce41f972365503bdcdb1d (
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
25
26
27
28
29
30
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
/**
* @file fdt.c
* Helper functions for handling the global FDT.
*/
#include <libfdt.h>
struct cell_info get_cellinfo(const void *fdt, const int offset)
{
return (struct cell_info){ fdt_size_cells(fdt, offset),
fdt_address_cells(fdt, offset) };
}
/* how "reg" is interpreted depends on the parent node */
struct cell_info get_reginfo(const void *fdt, const char *path)
{
const char *i = strrchr(path, '/');
if (!i)
return (struct cell_info){ 0, 0 };
size_t baselen = i - path;
if (baselen == 0)
/* root node */
baselen = 1;
return get_cellinfo(fdt, fdt_path_offset_namelen(fdt, path, baselen));
}
|