Searched refs:fdt (Results 1 - 25 of 181) sorted by relevance

12345678

/freebsd-10.0-release/sys/amd64/include/
H A Dfdt.h6 #include <x86/fdt.h>
/freebsd-10.0-release/sys/i386/include/
H A Dfdt.h6 #include <x86/fdt.h>
/freebsd-10.0-release/contrib/dtc/libfdt/
H A Dlibfdt_internal.h53 #include <fdt.h>
58 #define FDT_CHECK_HEADER(fdt) \
61 if ((err = fdt_check_header(fdt)) != 0) \
65 int _fdt_check_node_offset(const void *fdt, int offset);
66 int _fdt_check_prop_offset(const void *fdt, int offset);
68 int _fdt_node_end_offset(void *fdt, int nodeoffset);
70 static inline const void *_fdt_offset_ptr(const void *fdt, int offset) argument
72 return (const char *)fdt + fdt_off_dt_struct(fdt) + offset;
75 static inline void *_fdt_offset_ptr_w(void *fdt, in argument
80 _fdt_mem_rsv(const void *fdt, int n) argument
88 _fdt_mem_rsv_w(void *fdt, int n) argument
[all...]
H A Dlibfdt.h55 #include <fdt.h>
125 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int checklen);
126 static inline void *fdt_offset_ptr_w(void *fdt, int offset, int checklen) argument
128 return (void *)(uintptr_t)fdt_offset_ptr(fdt, offset, checklen);
131 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
137 int fdt_next_node(const void *fdt, int offset, int *depth);
143 #define fdt_get_header(fdt, field) \
144 (fdt32_to_cpu(((const struct fdt_header *)(fdt))->field))
145 #define fdt_magic(fdt) (fdt_get_header(fdt, magi
459 fdt_get_property_w(void *fdt, int nodeoffset, const char *name, int *lenp) argument
544 fdt_getprop_w(void *fdt, int nodeoffset, const char *name, int *lenp) argument
882 fdt_setprop_inplace_u32(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
917 fdt_setprop_inplace_u64(void *fdt, int nodeoffset, const char *name, uint64_t val) argument
929 fdt_setprop_inplace_cell(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
994 fdt_property_u32(void *fdt, const char *name, uint32_t val) argument
999 fdt_property_u64(void *fdt, const char *name, uint64_t val) argument
1004 fdt_property_cell(void *fdt, const char *name, uint32_t val) argument
1154 fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
1189 fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, uint64_t val) argument
1201 fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
1296 fdt_appendprop_u32(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
1331 fdt_appendprop_u64(void *fdt, int nodeoffset, const char *name, uint64_t val) argument
1343 fdt_appendprop_cell(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
[all...]
H A Dfdt_rw.c53 #include <fdt.h>
58 static int _fdt_blocks_misordered(const void *fdt, argument
61 return (fdt_off_mem_rsvmap(fdt) < FDT_ALIGN(sizeof(struct fdt_header), 8))
62 || (fdt_off_dt_struct(fdt) <
63 (fdt_off_mem_rsvmap(fdt) + mem_rsv_size))
64 || (fdt_off_dt_strings(fdt) <
65 (fdt_off_dt_struct(fdt) + struct_size))
66 || (fdt_totalsize(fdt) <
67 (fdt_off_dt_strings(fdt) + fdt_size_dt_strings(fdt)));
70 _fdt_rw_check_header(void *fdt) argument
92 _fdt_data_size(void *fdt) argument
97 _fdt_splice(void *fdt, void *splicepoint, int oldlen, int newlen) argument
110 _fdt_splice_mem_rsv(void *fdt, struct fdt_reserve_entry *p, int oldn, int newn) argument
123 _fdt_splice_struct(void *fdt, void *p, int oldlen, int newlen) argument
137 _fdt_splice_string(void *fdt, int newlen) argument
150 _fdt_find_add_string(void *fdt, const char *s) argument
172 fdt_add_mem_rsv(void *fdt, uint64_t address, uint64_t size) argument
189 fdt_del_mem_rsv(void *fdt, int n) argument
205 _fdt_resize_property(void *fdt, int nodeoffset, const char *name, int len, struct fdt_property **prop) argument
223 _fdt_add_property(void *fdt, int nodeoffset, const char *name, int len, struct fdt_property **prop) argument
251 fdt_set_name(void *fdt, int nodeoffset, const char *name) argument
274 fdt_setprop(void *fdt, int nodeoffset, const char *name, const void *val, int len) argument
292 fdt_appendprop(void *fdt, int nodeoffset, const char *name, const void *val, int len) argument
319 fdt_delprop(void *fdt, int nodeoffset, const char *name) argument
334 fdt_add_subnode_namelen(void *fdt, int parentoffset, const char *name, int namelen) argument
375 fdt_add_subnode(void *fdt, int parentoffset, const char *name) argument
380 fdt_del_node(void *fdt, int nodeoffset) argument
416 fdt_open_into(const void *fdt, void *buf, int bufsize) argument
480 fdt_pack(void *fdt) argument
[all...]
H A Dfdt_sw.c53 #include <fdt.h>
58 static int _fdt_sw_check_header(void *fdt) argument
60 if (fdt_magic(fdt) != FDT_SW_MAGIC)
66 #define FDT_SW_CHECK_HEADER(fdt) \
69 if ((err = _fdt_sw_check_header(fdt)) != 0) \
73 static void *_fdt_grab_space(void *fdt, size_t len) argument
75 int offset = fdt_size_dt_struct(fdt);
78 spaceleft = fdt_totalsize(fdt) - fdt_off_dt_struct(fdt)
79 - fdt_size_dt_strings(fdt);
90 void *fdt = buf; local
110 fdt_add_reservemap_entry(void *fdt, uint64_t addr, uint64_t size) argument
133 fdt_finish_reservemap(void *fdt) argument
138 fdt_begin_node(void *fdt, const char *name) argument
154 fdt_end_node(void *fdt) argument
168 _fdt_find_add_string(void *fdt, const char *s) argument
191 fdt_property(void *fdt, const char *name, const void *val, int len) argument
213 fdt_finish(void *fdt) argument
[all...]
H A Dfdt.c53 #include <fdt.h>
58 int fdt_check_header(const void *fdt) argument
60 if (fdt_magic(fdt) == FDT_MAGIC) {
62 if (fdt_version(fdt) < FDT_FIRST_SUPPORTED_VERSION)
64 if (fdt_last_comp_version(fdt) > FDT_LAST_SUPPORTED_VERSION)
66 } else if (fdt_magic(fdt) == FDT_SW_MAGIC) {
68 if (fdt_size_dt_struct(fdt) == 0)
77 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int len) argument
81 if (fdt_version(fdt) >= 0x11)
83 || ((offset + len) > fdt_size_dt_struct(fdt)))
93 fdt_next_tag(const void *fdt, int startoffset, int *nextoffset) argument
143 _fdt_check_node_offset(const void *fdt, int offset) argument
152 _fdt_check_prop_offset(const void *fdt, int offset) argument
161 fdt_next_node(const void *fdt, int offset, int *depth) argument
213 fdt_move(const void *fdt, void *buf, int bufsize) argument
[all...]
H A Dfdt_ro.c53 #include <fdt.h>
58 static int _fdt_nodename_eq(const void *fdt, int offset, argument
61 const char *p = fdt_offset_ptr(fdt, offset + FDT_TAGSIZE, len+1);
78 const char *fdt_string(const void *fdt, int stroffset) argument
80 return (const char *)fdt + fdt_off_dt_strings(fdt) + stroffset;
83 static int _fdt_string_eq(const void *fdt, int stroffset, argument
86 const char *p = fdt_string(fdt, stroffset);
91 int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size) argument
93 FDT_CHECK_HEADER(fdt);
99 fdt_num_mem_rsv(const void *fdt) argument
108 _nextprop(const void *fdt, int offset) argument
132 fdt_subnode_offset_namelen(const void *fdt, int offset, const char *name, int namelen) argument
151 fdt_subnode_offset(const void *fdt, int parentoffset, const char *name) argument
157 fdt_path_offset(const void *fdt, const char *path) argument
201 fdt_get_name(const void *fdt, int nodeoffset, int *len) argument
221 fdt_first_property_offset(const void *fdt, int nodeoffset) argument
231 fdt_next_property_offset(const void *fdt, int offset) argument
239 fdt_get_property_by_offset(const void *fdt, int offset, int *lenp) argument
260 fdt_get_property_namelen(const void *fdt, int offset, const char *name, int namelen, int *lenp) argument
284 fdt_get_property(const void *fdt, int nodeoffset, const char *name, int *lenp) argument
292 fdt_getprop_namelen(const void *fdt, int nodeoffset, const char *name, int namelen, int *lenp) argument
304 fdt_getprop_by_offset(const void *fdt, int offset, const char **namep, int *lenp) argument
317 fdt_getprop(const void *fdt, int nodeoffset, const char *name, int *lenp) argument
323 fdt_get_phandle(const void *fdt, int nodeoffset) argument
340 fdt_get_alias_namelen(const void *fdt, const char *name, int namelen) argument
352 fdt_get_alias(const void *fdt, const char *name) argument
357 fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen) argument
409 fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset, int supernodedepth, int *nodedepth) argument
445 fdt_node_depth(const void *fdt, int nodeoffset) argument
456 fdt_parent_offset(const void *fdt, int nodeoffset) argument
466 fdt_node_offset_by_prop_value(const void *fdt, int startoffset, const char *propname, const void *propval, int proplen) argument
493 fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle) argument
536 fdt_node_check_compatible(const void *fdt, int nodeoffset, const char *compatible) argument
551 fdt_node_offset_by_compatible(const void *fdt, int startoffset, const char *compatible) argument
[all...]
H A Dfdt_wip.c53 #include <fdt.h>
58 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name, argument
64 propval = fdt_getprop_w(fdt, nodeoffset, name, &proplen);
83 int fdt_nop_property(void *fdt, int nodeoffset, const char *name) argument
88 prop = fdt_get_property_w(fdt, nodeoffset, name, &len);
97 int _fdt_node_end_offset(void *fdt, int offset) argument
102 offset = fdt_next_node(fdt, offset, &depth);
107 int fdt_nop_node(void *fdt, int nodeoffset) argument
111 endoffset = _fdt_node_end_offset(fdt, nodeoffset);
115 _fdt_nop_region(fdt_offset_ptr_w(fdt, nodeoffse
[all...]
/freebsd-10.0-release/sys/contrib/libfdt/
H A Dlibfdt_internal.h53 #include <fdt.h>
58 #define FDT_CHECK_HEADER(fdt) \
61 if ((err = fdt_check_header(fdt)) != 0) \
65 int _fdt_check_node_offset(const void *fdt, int offset);
66 int _fdt_check_prop_offset(const void *fdt, int offset);
68 int _fdt_node_end_offset(void *fdt, int nodeoffset);
70 static inline const void *_fdt_offset_ptr(const void *fdt, int offset) argument
72 return (const char *)fdt + fdt_off_dt_struct(fdt) + offset;
75 static inline void *_fdt_offset_ptr_w(void *fdt, in argument
80 _fdt_mem_rsv(const void *fdt, int n) argument
88 _fdt_mem_rsv_w(void *fdt, int n) argument
[all...]
H A Dlibfdt.h55 #include <fdt.h>
125 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int checklen);
126 static inline void *fdt_offset_ptr_w(void *fdt, int offset, int checklen) argument
128 return (void *)(uintptr_t)fdt_offset_ptr(fdt, offset, checklen);
131 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
137 int fdt_next_node(const void *fdt, int offset, int *depth);
143 #define fdt_get_header(fdt, field) \
144 (fdt32_to_cpu(((const struct fdt_header *)(fdt))->field))
145 #define fdt_magic(fdt) (fdt_get_header(fdt, magi
459 fdt_get_property_w(void *fdt, int nodeoffset, const char *name, int *lenp) argument
544 fdt_getprop_w(void *fdt, int nodeoffset, const char *name, int *lenp) argument
882 fdt_setprop_inplace_u32(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
917 fdt_setprop_inplace_u64(void *fdt, int nodeoffset, const char *name, uint64_t val) argument
929 fdt_setprop_inplace_cell(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
994 fdt_property_u32(void *fdt, const char *name, uint32_t val) argument
999 fdt_property_u64(void *fdt, const char *name, uint64_t val) argument
1004 fdt_property_cell(void *fdt, const char *name, uint32_t val) argument
1154 fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
1189 fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, uint64_t val) argument
1201 fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
1296 fdt_appendprop_u32(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
1331 fdt_appendprop_u64(void *fdt, int nodeoffset, const char *name, uint64_t val) argument
1343 fdt_appendprop_cell(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
[all...]
H A Dfdt_rw.c53 #include <fdt.h>
58 static int _fdt_blocks_misordered(const void *fdt, argument
61 return (fdt_off_mem_rsvmap(fdt) < FDT_ALIGN(sizeof(struct fdt_header), 8))
62 || (fdt_off_dt_struct(fdt) <
63 (fdt_off_mem_rsvmap(fdt) + mem_rsv_size))
64 || (fdt_off_dt_strings(fdt) <
65 (fdt_off_dt_struct(fdt) + struct_size))
66 || (fdt_totalsize(fdt) <
67 (fdt_off_dt_strings(fdt) + fdt_size_dt_strings(fdt)));
70 _fdt_rw_check_header(void *fdt) argument
92 _fdt_data_size(void *fdt) argument
97 _fdt_splice(void *fdt, void *splicepoint, int oldlen, int newlen) argument
110 _fdt_splice_mem_rsv(void *fdt, struct fdt_reserve_entry *p, int oldn, int newn) argument
123 _fdt_splice_struct(void *fdt, void *p, int oldlen, int newlen) argument
137 _fdt_splice_string(void *fdt, int newlen) argument
150 _fdt_find_add_string(void *fdt, const char *s) argument
172 fdt_add_mem_rsv(void *fdt, uint64_t address, uint64_t size) argument
189 fdt_del_mem_rsv(void *fdt, int n) argument
205 _fdt_resize_property(void *fdt, int nodeoffset, const char *name, int len, struct fdt_property **prop) argument
223 _fdt_add_property(void *fdt, int nodeoffset, const char *name, int len, struct fdt_property **prop) argument
251 fdt_set_name(void *fdt, int nodeoffset, const char *name) argument
274 fdt_setprop(void *fdt, int nodeoffset, const char *name, const void *val, int len) argument
292 fdt_appendprop(void *fdt, int nodeoffset, const char *name, const void *val, int len) argument
319 fdt_delprop(void *fdt, int nodeoffset, const char *name) argument
334 fdt_add_subnode_namelen(void *fdt, int parentoffset, const char *name, int namelen) argument
375 fdt_add_subnode(void *fdt, int parentoffset, const char *name) argument
380 fdt_del_node(void *fdt, int nodeoffset) argument
416 fdt_open_into(const void *fdt, void *buf, int bufsize) argument
480 fdt_pack(void *fdt) argument
[all...]
H A Dfdt_sw.c53 #include <fdt.h>
58 static int _fdt_sw_check_header(void *fdt) argument
60 if (fdt_magic(fdt) != FDT_SW_MAGIC)
66 #define FDT_SW_CHECK_HEADER(fdt) \
69 if ((err = _fdt_sw_check_header(fdt)) != 0) \
73 static void *_fdt_grab_space(void *fdt, size_t len) argument
75 int offset = fdt_size_dt_struct(fdt);
78 spaceleft = fdt_totalsize(fdt) - fdt_off_dt_struct(fdt)
79 - fdt_size_dt_strings(fdt);
90 void *fdt = buf; local
110 fdt_add_reservemap_entry(void *fdt, uint64_t addr, uint64_t size) argument
133 fdt_finish_reservemap(void *fdt) argument
138 fdt_begin_node(void *fdt, const char *name) argument
154 fdt_end_node(void *fdt) argument
168 _fdt_find_add_string(void *fdt, const char *s) argument
191 fdt_property(void *fdt, const char *name, const void *val, int len) argument
213 fdt_finish(void *fdt) argument
[all...]
H A Dfdt.c53 #include <fdt.h>
58 int fdt_check_header(const void *fdt) argument
60 if (fdt_magic(fdt) == FDT_MAGIC) {
62 if (fdt_version(fdt) < FDT_FIRST_SUPPORTED_VERSION)
64 if (fdt_last_comp_version(fdt) > FDT_LAST_SUPPORTED_VERSION)
66 } else if (fdt_magic(fdt) == FDT_SW_MAGIC) {
68 if (fdt_size_dt_struct(fdt) == 0)
77 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int len) argument
81 if (fdt_version(fdt) >= 0x11)
83 || ((offset + len) > fdt_size_dt_struct(fdt)))
93 fdt_next_tag(const void *fdt, int startoffset, int *nextoffset) argument
143 _fdt_check_node_offset(const void *fdt, int offset) argument
152 _fdt_check_prop_offset(const void *fdt, int offset) argument
161 fdt_next_node(const void *fdt, int offset, int *depth) argument
213 fdt_move(const void *fdt, void *buf, int bufsize) argument
[all...]
H A Dfdt_ro.c53 #include <fdt.h>
58 static int _fdt_nodename_eq(const void *fdt, int offset, argument
61 const char *p = fdt_offset_ptr(fdt, offset + FDT_TAGSIZE, len+1);
78 const char *fdt_string(const void *fdt, int stroffset) argument
80 return (const char *)fdt + fdt_off_dt_strings(fdt) + stroffset;
83 static int _fdt_string_eq(const void *fdt, int stroffset, argument
86 const char *p = fdt_string(fdt, stroffset);
91 int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size) argument
93 FDT_CHECK_HEADER(fdt);
99 fdt_num_mem_rsv(const void *fdt) argument
108 _nextprop(const void *fdt, int offset) argument
132 fdt_subnode_offset_namelen(const void *fdt, int offset, const char *name, int namelen) argument
151 fdt_subnode_offset(const void *fdt, int parentoffset, const char *name) argument
157 fdt_path_offset(const void *fdt, const char *path) argument
201 fdt_get_name(const void *fdt, int nodeoffset, int *len) argument
221 fdt_first_property_offset(const void *fdt, int nodeoffset) argument
231 fdt_next_property_offset(const void *fdt, int offset) argument
239 fdt_get_property_by_offset(const void *fdt, int offset, int *lenp) argument
260 fdt_get_property_namelen(const void *fdt, int offset, const char *name, int namelen, int *lenp) argument
284 fdt_get_property(const void *fdt, int nodeoffset, const char *name, int *lenp) argument
292 fdt_getprop_namelen(const void *fdt, int nodeoffset, const char *name, int namelen, int *lenp) argument
304 fdt_getprop_by_offset(const void *fdt, int offset, const char **namep, int *lenp) argument
317 fdt_getprop(const void *fdt, int nodeoffset, const char *name, int *lenp) argument
323 fdt_get_phandle(const void *fdt, int nodeoffset) argument
340 fdt_get_alias_namelen(const void *fdt, const char *name, int namelen) argument
352 fdt_get_alias(const void *fdt, const char *name) argument
357 fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen) argument
409 fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset, int supernodedepth, int *nodedepth) argument
445 fdt_node_depth(const void *fdt, int nodeoffset) argument
456 fdt_parent_offset(const void *fdt, int nodeoffset) argument
466 fdt_node_offset_by_prop_value(const void *fdt, int startoffset, const char *propname, const void *propval, int proplen) argument
493 fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle) argument
536 fdt_node_check_compatible(const void *fdt, int nodeoffset, const char *compatible) argument
551 fdt_node_offset_by_compatible(const void *fdt, int startoffset, const char *compatible) argument
[all...]
H A Dfdt_wip.c53 #include <fdt.h>
58 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name, argument
64 propval = fdt_getprop_w(fdt, nodeoffset, name, &proplen);
83 int fdt_nop_property(void *fdt, int nodeoffset, const char *name) argument
88 prop = fdt_get_property_w(fdt, nodeoffset, name, &len);
97 int _fdt_node_end_offset(void *fdt, int offset) argument
102 offset = fdt_next_node(fdt, offset, &depth);
107 int fdt_nop_node(void *fdt, int nodeoffset) argument
111 endoffset = _fdt_node_end_offset(fdt, nodeoffset);
115 _fdt_nop_region(fdt_offset_ptr_w(fdt, nodeoffse
[all...]
/freebsd-10.0-release/usr.sbin/fdwrite/
H A Dfdwrite.c72 struct fd_type fdt; local
131 if(ioctl(fd, FD_GTYPE, &fdt) < 0)
134 bpt = fdt.sectrac * (1<<fdt.secsize) * 128;
147 fdt.tracks,fdt.heads,fdt.sectrac,(1<<fdt.secsize) * 128,
148 fdt.tracks*bpt*fdt
[all...]
/freebsd-10.0-release/usr.sbin/fdformat/
H A Dfdformat.c142 struct fd_type fdt, newft, *fdtp; local
248 if(ioctl(fd, FD_GTYPE, &fdt) < 0)
259 fdt = *fdtp;
262 parse_fmt(fmtstring, type, fdt, &newft);
263 fdt = newft;
265 if (ioctl(fd, FD_STYPE, &fdt) < 0)
273 bytes_per_track = fdt.sectrac * (128 << fdt.secsize);
276 tracks_per_dot = (fdt.tracks * fdt
[all...]
/freebsd-10.0-release/sys/boot/fdt/
H A DMakefile5 LIB= fdt
9 SRCS+= fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c
11 # Loader's fdt commands extension sources.
/freebsd-10.0-release/usr.bin/dtc/
H A DMakefile4 SRCS= dtc.cc input_buffer.cc string.cc dtb.cc fdt.cc checking.cc
/freebsd-10.0-release/usr.sbin/fdread/
H A Dfdread.c165 struct fd_type fdt; local
167 if (ioctl(fd, FD_GTYPE, &fdt) == -1)
170 secsize = 128 << fdt.secsize;
171 tracksize = fdt.sectrac * secsize;
172 mediasize = tracksize * fdt.tracks * fdt.heads;
178 fdt.tracks, fdt.heads, fdt.sectrac, secsize, _devname);
304 struct fd_type fdt; local
[all...]
/freebsd-10.0-release/sys/arm/allwinner/
H A Dcommon.c35 #include <dev/fdt/fdt_common.h>
39 #include <machine/fdt.h>
/freebsd-10.0-release/sys/arm/broadcom/bcm2835/
H A Dcommon.c45 #include <dev/fdt/fdt_common.h>
49 #include <machine/fdt.h>
/freebsd-10.0-release/sys/arm/freescale/imx/
H A Dcommon.c49 #include <dev/fdt/fdt_common.h>
53 #include <machine/fdt.h>
/freebsd-10.0-release/sys/arm/samsung/exynos/
H A Dcommon.c35 #include <dev/fdt/fdt_common.h>
39 #include <machine/fdt.h>

Completed in 207 milliseconds

12345678