Lines Matching refs:name
251 #define fdt_set_hdr_(name) \ argument
252 static inline void fdt_set_##name(void *fdt, uint32_t val) \
255 fdth->name = cpu_to_fdt32(val); \
456 const char *name, int namelen);
482 int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
660 const char *name,
693 const char *name, int *lenp);
695 const char *name, in fdt_get_property_w() argument
699 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
751 const char *name, int namelen, int *lenp);
753 const char *name, int namelen, in fdt_getprop_namelen_w() argument
756 return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, in fdt_getprop_namelen_w()
790 const char *name, int *lenp);
792 const char *name, int *lenp) in fdt_getprop_w() argument
794 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
822 const char *name, int namelen);
837 const char *fdt_get_alias(const void *fdt, const char *name);
1223 const char *name, int namelen,
1257 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1290 const char *name, uint32_t val) in fdt_setprop_inplace_u32() argument
1293 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1325 const char *name, uint64_t val) in fdt_setprop_inplace_u64() argument
1328 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1337 const char *name, uint32_t val) in fdt_setprop_inplace_cell() argument
1339 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1366 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1438 int fdt_begin_node(void *fdt, const char *name);
1439 int fdt_property(void *fdt, const char *name, const void *val, int len);
1440 static inline int fdt_property_u32(void *fdt, const char *name, uint32_t val) in fdt_property_u32() argument
1443 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32()
1445 static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val) in fdt_property_u64() argument
1448 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64()
1452 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val) in fdt_property_cell() argument
1454 return fdt_property_u32(fdt, name, val); in fdt_property_cell()
1471 int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp);
1473 #define fdt_property_string(fdt, name, str) \ argument
1474 fdt_property(fdt, name, str, strlen(str)+1)
1558 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1588 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1619 int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name,
1650 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1654 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1685 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1689 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1697 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1700 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1731 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1732 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1761 #define fdt_setprop_empty(fdt, nodeoffset, name) \ argument
1762 fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1791 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1823 const char *name, uint32_t val) in fdt_appendprop_u32() argument
1826 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1858 const char *name, uint64_t val) in fdt_appendprop_u64() argument
1861 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1870 const char *name, uint32_t val) in fdt_appendprop_cell() argument
1872 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1902 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1903 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1940 const char *name, uint64_t addr, uint64_t size);
1964 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1980 const char *name, int namelen);
2014 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);