summaryrefslogtreecommitdiffstats
path: root/drivers/of
diff options
context:
space:
mode:
authorSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>2013-06-14 16:36:29 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-06-20 21:20:54 +0200
commita0b6c0d00ac947686de03644d4521ecbc28fff0d (patch)
tree1193c7aa986b912e6f162be4aa847475c28bcd3a /drivers/of
parent511ba46157d88ebb291233d1c4394568884327ae (diff)
downloadbarebox-a0b6c0d00ac947686de03644d4521ecbc28fff0d.tar.gz
barebox-a0b6c0d00ac947686de03644d4521ecbc28fff0d.tar.xz
OF: base: introduce property write for bool, u8, u16, and u64
This adds functions to set an array of or a single value for bool, u8, u16, and u64 properties. Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Diffstat (limited to 'drivers/of')
-rw-r--r--drivers/of/base.c156
1 files changed, 156 insertions, 0 deletions
diff --git a/drivers/of/base.c b/drivers/of/base.c
index b40a5a1375..478de9dd0c 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -798,6 +798,119 @@ int of_property_count_strings(struct device_node *np, const char *propname)
EXPORT_SYMBOL_GPL(of_property_count_strings);
/**
+ * of_property_write_bool - Create/Delete empty (bool) property.
+ *
+ * @np: device node from which the property is to be set.
+ * @propname: name of the property to be set.
+ *
+ * Search for a property in a device node and create or delete the property.
+ * If the property already exists and write value is false, the property is
+ * deleted. If write value is true and the property does not exist, it is
+ * created. Returns 0 on success, -ENOMEM if the property or array
+ * of elements cannot be created.
+ */
+int of_property_write_bool(struct device_node *np, const char *propname,
+ const bool value)
+{
+ struct property *prop = of_find_property(np, propname, NULL);
+
+ if (!value) {
+ if (prop)
+ of_delete_property(prop);
+ return 0;
+ }
+
+ if (!prop)
+ prop = of_new_property(np, propname, NULL, 0);
+ if (!prop)
+ return -ENOMEM;
+
+ return 0;
+}
+
+/**
+ * of_property_write_u8_array - Write an array of u8 to a property. If
+ * the property does not exist, it will be created and appended to the given
+ * device node.
+ *
+ * @np: device node to which the property value is to be written.
+ * @propname: name of the property to be written.
+ * @values: pointer to array elements to write.
+ * @sz: number of array elements to write.
+ *
+ * Search for a property in a device node and write 8-bit value(s) to
+ * it. If the property does not exist, it will be created and appended to
+ * the device node. Returns 0 on success, -ENOMEM if the property or array
+ * of elements cannot be created.
+ */
+int of_property_write_u8_array(struct device_node *np,
+ const char *propname, const u8 *values,
+ size_t sz)
+{
+ struct property *prop = of_find_property(np, propname, NULL);
+ u8 *val;
+
+ if (!prop)
+ prop = of_new_property(np, propname, NULL, 0);
+ if (!prop)
+ return -ENOMEM;
+
+ free(prop->value);
+
+ prop->length = sizeof(*val) * sz;
+ prop->value = malloc(prop->length);
+ if (!prop->value)
+ return -ENOMEM;
+
+ val = prop->value;
+ while (sz--)
+ *val++ = *values++;
+
+ return 0;
+}
+
+/**
+ * of_property_write_u16_array - Write an array of u16 to a property. If
+ * the property does not exist, it will be created and appended to the given
+ * device node.
+ *
+ * @np: device node to which the property value is to be written.
+ * @propname: name of the property to be written.
+ * @values: pointer to array elements to write.
+ * @sz: number of array elements to write.
+ *
+ * Search for a property in a device node and write 16-bit value(s) to
+ * it. If the property does not exist, it will be created and appended to
+ * the device node. Returns 0 on success, -ENOMEM if the property or array
+ * of elements cannot be created.
+ */
+int of_property_write_u16_array(struct device_node *np,
+ const char *propname, const u16 *values,
+ size_t sz)
+{
+ struct property *prop = of_find_property(np, propname, NULL);
+ __be16 *val;
+
+ if (!prop)
+ prop = of_new_property(np, propname, NULL, 0);
+ if (!prop)
+ return -ENOMEM;
+
+ free(prop->value);
+
+ prop->length = sizeof(*val) * sz;
+ prop->value = malloc(prop->length);
+ if (!prop->value)
+ return -ENOMEM;
+
+ val = prop->value;
+ while (sz--)
+ *val++ = cpu_to_be16(*values++);
+
+ return 0;
+}
+
+/**
* of_property_write_u32_array - Write an array of u32 to a property. If
* the property does not exist, it will be created and appended to the given
* device node.
@@ -839,6 +952,49 @@ int of_property_write_u32_array(struct device_node *np,
}
/**
+ * of_property_write_u64_array - Write an array of u64 to a property. If
+ * the property does not exist, it will be created and appended to the given
+ * device node.
+ *
+ * @np: device node to which the property value is to be written.
+ * @propname: name of the property to be written.
+ * @values: pointer to array elements to write.
+ * @sz: number of array elements to write.
+ *
+ * Search for a property in a device node and write 64-bit value(s) to
+ * it. If the property does not exist, it will be created and appended to
+ * the device node. Returns 0 on success, -ENOMEM if the property or array
+ * of elements cannot be created.
+ */
+int of_property_write_u64_array(struct device_node *np,
+ const char *propname, const u64 *values,
+ size_t sz)
+{
+ struct property *prop = of_find_property(np, propname, NULL);
+ __be32 *val;
+
+ if (!prop)
+ prop = of_new_property(np, propname, NULL, 0);
+ if (!prop)
+ return -ENOMEM;
+
+ free(prop->value);
+
+ prop->length = 2 * sizeof(*val) * sz;
+ prop->value = malloc(prop->length);
+ if (!prop->value)
+ return -ENOMEM;
+
+ val = prop->value;
+ while (sz--) {
+ of_write_number(val, *values++, 2);
+ val += 2;
+ }
+
+ return 0;
+}
+
+/**
* of_parse_phandle - Resolve a phandle property to a device_node pointer
* @np: Pointer to device node holding phandle property
* @phandle_name: Name of property holding a phandle value