Lines Matching refs:nodeoffset
563 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
583 int fdt_first_property_offset(const void *fdt, int nodeoffset);
687 int nodeoffset,
720 const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
722 static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset, in fdt_get_property_w() argument
727 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
780 const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
782 static inline void *fdt_getprop_namelen_w(void *fdt, int nodeoffset, in fdt_getprop_namelen_w() argument
786 return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, in fdt_getprop_namelen_w()
819 const void *fdt_getprop(const void *fdt, int nodeoffset,
821 static inline void *fdt_getprop_w(void *fdt, int nodeoffset, in fdt_getprop_w() argument
824 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
839 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
897 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);
929 int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
951 int fdt_node_depth(const void *fdt, int nodeoffset);
974 int fdt_parent_offset(const void *fdt, int nodeoffset);
1060 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
1125 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property);
1146 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property,
1173 const char *fdt_stringlist_get(const void *fdt, int nodeoffset,
1210 int fdt_address_cells(const void *fdt, int nodeoffset);
1231 int fdt_size_cells(const void *fdt, int nodeoffset);
1257 int fdt_setprop_inplace_namelen_partial(void *fdt, int nodeoffset,
1292 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1324 static inline int fdt_setprop_inplace_u32(void *fdt, int nodeoffset, in fdt_setprop_inplace_u32() argument
1328 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1359 static inline int fdt_setprop_inplace_u64(void *fdt, int nodeoffset, in fdt_setprop_inplace_u64() argument
1363 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1376 static inline int fdt_setprop_inplace_cell(void *fdt, int nodeoffset, in fdt_setprop_inplace_cell() argument
1379 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1406 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1430 int fdt_nop_node(void *fdt, int nodeoffset);
1599 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1629 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1660 int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name,
1691 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1695 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1726 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1730 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1744 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1747 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1778 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1779 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1808 #define fdt_setprop_empty(fdt, nodeoffset, name) \ argument
1809 fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1838 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1869 static inline int fdt_appendprop_u32(void *fdt, int nodeoffset, in fdt_appendprop_u32() argument
1873 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1904 static inline int fdt_appendprop_u64(void *fdt, int nodeoffset, in fdt_appendprop_u64() argument
1908 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1922 static inline int fdt_appendprop_cell(void *fdt, int nodeoffset, in fdt_appendprop_cell() argument
1925 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1955 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1956 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1992 int fdt_appendprop_addrrange(void *fdt, int parent, int nodeoffset,
2017 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
2093 int fdt_del_node(void *fdt, int nodeoffset);