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);
688 const char *name,
721 const char *name, int *lenp);
723 const char *name, in fdt_get_property_w() argument
727 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
781 const char *name, int namelen, int *lenp);
783 const char *name, int namelen, in fdt_getprop_namelen_w() argument
786 return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, in fdt_getprop_namelen_w()
820 const char *name, int *lenp);
822 const char *name, int *lenp) in fdt_getprop_w() argument
824 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
855 const char *name, int namelen);
870 const char *fdt_get_alias(const void *fdt, const char *name);
1258 const char *name, int namelen,
1292 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1325 const char *name, uint32_t val) in fdt_setprop_inplace_u32() argument
1328 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1360 const char *name, uint64_t val) in fdt_setprop_inplace_u64() argument
1363 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1377 const char *name, uint32_t val) 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);
1478 int fdt_begin_node(void *fdt, const char *name);
1479 int fdt_property(void *fdt, const char *name, const void *val, int len);
1480 static inline int fdt_property_u32(void *fdt, const char *name, uint32_t val) in fdt_property_u32() argument
1483 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32()
1485 static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val) in fdt_property_u64() argument
1488 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64()
1492 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val) in fdt_property_cell() argument
1494 return fdt_property_u32(fdt, name, val); in fdt_property_cell()
1511 int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp);
1513 #define fdt_property_string(fdt, name, str) \ argument
1514 fdt_property(fdt, name, str, strlen(str)+1)
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,
1870 const char *name, uint32_t val) in fdt_appendprop_u32() argument
1873 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1905 const char *name, uint64_t val) in fdt_appendprop_u64() argument
1908 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1923 const char *name, uint32_t val) 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)
1993 const char *name, uint64_t addr, uint64_t size);
2017 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
2036 const char *name, int namelen);
2070 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);