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);
1188 const char *name, int namelen,
1222 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1255 const char *name, uint32_t val) in fdt_setprop_inplace_u32() argument
1258 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1290 const char *name, uint64_t val) in fdt_setprop_inplace_u64() argument
1293 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1302 const char *name, uint32_t val) in fdt_setprop_inplace_cell() argument
1304 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1331 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1403 int fdt_begin_node(void *fdt, const char *name);
1404 int fdt_property(void *fdt, const char *name, const void *val, int len);
1405 static inline int fdt_property_u32(void *fdt, const char *name, uint32_t val) in fdt_property_u32() argument
1408 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32()
1410 static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val) in fdt_property_u64() argument
1413 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64()
1417 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val) in fdt_property_cell() argument
1419 return fdt_property_u32(fdt, name, val); in fdt_property_cell()
1436 int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp);
1438 #define fdt_property_string(fdt, name, str) \ argument
1439 fdt_property(fdt, name, str, strlen(str)+1)
1523 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1553 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1584 int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name,
1615 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1619 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1650 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1654 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1662 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1665 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1696 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1697 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1726 #define fdt_setprop_empty(fdt, nodeoffset, name) \ argument
1727 fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1756 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1788 const char *name, uint32_t val) in fdt_appendprop_u32() argument
1791 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1823 const char *name, uint64_t val) in fdt_appendprop_u64() argument
1826 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1835 const char *name, uint32_t val) in fdt_appendprop_cell() argument
1837 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1867 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1868 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1905 const char *name, uint64_t addr, uint64_t size);
1929 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1945 const char *name, int namelen);
1979 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);