Lines Matching refs:name
260 #define fdt_set_hdr_(name) \ argument
261 static inline void fdt_set_##name(void *fdt, uint32_t val) \
264 fdth->name = cpu_to_fdt32(val); \
472 const char *name, int namelen);
498 int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
713 const char *name,
746 const char *name, int *lenp);
748 const char *name, in fdt_get_property_w() argument
752 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
806 const char *name, int namelen, int *lenp);
808 const char *name, int namelen, in fdt_getprop_namelen_w() argument
811 return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, in fdt_getprop_namelen_w()
845 const char *name, int *lenp);
847 const char *name, int *lenp) in fdt_getprop_w() argument
849 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
880 const char *name, int namelen);
895 const char *fdt_get_alias(const void *fdt, const char *name);
911 const char *name, int namelen);
931 const char *fdt_get_symbol(const void *fdt, const char *name);
1319 const char *name, int namelen,
1353 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1386 const char *name, uint32_t val) in fdt_setprop_inplace_u32() argument
1389 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1421 const char *name, uint64_t val) in fdt_setprop_inplace_u64() argument
1424 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1438 const char *name, uint32_t val) in fdt_setprop_inplace_cell() argument
1440 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1467 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1539 int fdt_begin_node(void *fdt, const char *name);
1540 int fdt_property(void *fdt, const char *name, const void *val, int len);
1541 static inline int fdt_property_u32(void *fdt, const char *name, uint32_t val) in fdt_property_u32() argument
1544 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32()
1546 static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val) in fdt_property_u64() argument
1549 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64()
1553 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val) in fdt_property_cell() argument
1555 return fdt_property_u32(fdt, name, val); in fdt_property_cell()
1572 int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp);
1574 #define fdt_property_string(fdt, name, str) \ argument
1575 fdt_property(fdt, name, str, strlen(str)+1)
1660 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1690 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1721 int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name,
1752 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1756 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1787 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1791 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1805 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1808 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1839 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1840 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1869 #define fdt_setprop_empty(fdt, nodeoffset, name) \ argument
1870 fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1899 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1931 const char *name, uint32_t val) in fdt_appendprop_u32() argument
1934 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1966 const char *name, uint64_t val) in fdt_appendprop_u64() argument
1969 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1984 const char *name, uint32_t val) in fdt_appendprop_cell() argument
1986 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
2016 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
2017 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
2054 const char *name, uint64_t addr, uint64_t size);
2078 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
2097 const char *name, int namelen);
2131 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);