Lines Matching +full:dt +full:- +full:property

22  * /proc/device-tree directory and return the corresponding binary blob
31 * @fdt: pointer to the dt blob
36 * returns a newly allocated NULL-terminated array of node paths.
51 * node-name, ie. node-name and node-name@unit-address
52 * @fdt: pointer to the dt blob
56 * returns a newly allocated NULL-terminated array of node paths.
66 const char *property, const void *val, int size);
68 const char *property, uint32_t val);
70 const char *property, uint64_t val);
72 const char *property, const char *string);
75 * qemu_fdt_setprop_string_array: set a string array property
77 * @fdt: pointer to the dt blob
79 * @prop: property array
83 * assigns a string array to a property. This function converts and
85 * setting the property.
91 const char *property,
94 * qemu_fdt_getprop: retrieve the value of a given property
97 * @property: name of the property to find
98 * @lenp: fdt error if any or length of the property on success
101 * returns a pointer to the property on success and NULL on failure
104 const char *property, int *lenp,
107 * qemu_fdt_getprop_cell: retrieve the value of a given 4 byte property
110 * @property: name of the property to find
111 * @lenp: fdt error if any or -EINVAL if the property size is different from
112 * 4 bytes, or 4 (expected length of the property) upon success.
115 * returns the property value on success
118 const char *property, int *lenp,
126 #define qemu_fdt_setprop_cells(fdt, node_path, property, ...) \ argument
132 qemu_fdt_setprop(fdt, node_path, property, qdt_tmp, \
141 * @node_path: node to set property on
142 * @property: property to set
144 * @values: array of number-of-cells, value pairs
146 * Set the specified property on the specified node in the device tree
150 * number-of-cells must be either 1 or 2 (other values will result in
157 * #address-cells and #size-cells properties of their parent node.
167 const char *property,
174 * @node_path: node to set property on
175 * @property: property to set
176 * @...: list of number-of-cells, value pairs
178 * Set the specified property on the specified node in the device tree
188 #define qemu_fdt_setprop_sized_cells(fdt, node_path, property, ...) \ argument
192 property, \
202 * Re-randomize all "rng-seed" properties with new seeds.