summaryrefslogtreecommitdiffstats
path: root/include/of.h
blob: 609b3b587b01a45c388aa481c44571143835203a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __OF_H
#define __OF_H

#include <fdt.h>

extern struct fdt_header *barebox_fdt;

int fdt_print(struct fdt_header *working_fdt, const char *pathp);

struct fdt_header *of_get_fixed_tree(void);
int of_fix_tree(struct fdt_header *fdt);
int of_register_fixup(int (*fixup)(struct fdt_header *));

int fdt_find_and_setprop(struct fdt_header *fdt, const char *node, const char *prop,
			 const void *val, int len, int create);
void do_fixup_by_path(struct fdt_header *fdt, const char *path, const char *prop,
		      const void *val, int len, int create);
void do_fixup_by_path_u32(struct fdt_header *fdt, const char *path, const char *prop,
			  u32 val, int create);
int fdt_get_path_or_create(struct fdt_header *fdt, const char *path);

#endif /* __OF_H */