Lines Matching refs:name
216 #define fdt_set_hdr_(name) \ argument
217 static inline void fdt_set_##name(void *fdt, uint32_t val) \
220 fdth->name = cpu_to_fdt32(val); \
421 const char *name, int namelen);
447 int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
625 const char *name,
658 const char *name, int *lenp);
660 const char *name, in fdt_get_property_w() argument
664 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
716 const char *name, int namelen, int *lenp);
718 const char *name, int namelen, in fdt_getprop_namelen_w() argument
721 return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, in fdt_getprop_namelen_w()
755 const char *name, int *lenp);
757 const char *name, int *lenp) in fdt_getprop_w() argument
759 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
787 const char *name, int namelen);
802 const char *fdt_get_alias(const void *fdt, const char *name);
1187 const char *name, int namelen,
1221 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1254 const char *name, uint32_t val) in fdt_setprop_inplace_u32() argument
1257 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1289 const char *name, uint64_t val) in fdt_setprop_inplace_u64() argument
1292 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1301 const char *name, uint32_t val) in fdt_setprop_inplace_cell() argument
1303 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1330 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1402 int fdt_begin_node(void *fdt, const char *name);
1403 int fdt_property(void *fdt, const char *name, const void *val, int len);
1404 static inline int fdt_property_u32(void *fdt, const char *name, uint32_t val) in fdt_property_u32() argument
1407 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32()
1409 static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val) in fdt_property_u64() argument
1412 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64()
1416 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val) in fdt_property_cell() argument
1418 return fdt_property_u32(fdt, name, val); in fdt_property_cell()
1435 int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp);
1437 #define fdt_property_string(fdt, name, str) \ argument
1438 fdt_property(fdt, name, str, strlen(str)+1)
1522 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1552 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1583 int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name,
1614 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1618 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1649 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1653 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1661 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1664 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1695 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1696 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1724 #define fdt_setprop_empty(fdt, nodeoffset, name) \ argument
1725 fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1754 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1786 const char *name, uint32_t val) in fdt_appendprop_u32() argument
1789 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1821 const char *name, uint64_t val) in fdt_appendprop_u64() argument
1824 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1833 const char *name, uint32_t val) in fdt_appendprop_cell() argument
1835 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1865 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1866 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1903 const char *name, uint64_t addr, uint64_t size);
1927 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1943 const char *name, int namelen);
1977 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);