Hi Rob, Thanks for the review! On 05/22/17 17:22, Rob Herring wrote: > On Mon, May 22, 2017 at 3:11 AM, Sakari Ailus > <sakari.ailus@xxxxxxxxxxxxxxx> wrote: >> base.c contains both core OF functions and increasingly other >> functionality such as accessing properties and graphs, including >> convenience functions. In the near future this would also include OF >> specific implementation of the fwnode property and graph APIs. >> >> Create driver/of/property.c to contain procedures for accessing and >> interpreting device tree properties. The procedures are moved from >> drivers/of/base.c, with no changes other than copying only the includes >> required by the moved procedures. >> >> Signed-off-by: Sakari Ailus <sakari.ailus@xxxxxxxxxxxxxxx> >> --- >> drivers/of/Makefile | 2 +- >> drivers/of/base.c | 733 ------------------------------------------------ >> drivers/of/property.c | 763 ++++++++++++++++++++++++++++++++++++++++++++++++++ > > Please put graph functions in graph.c unless there is some reason not to. There will be a single fwnode ops struct which will contain both property and graph API primitives. The functions implementing the operations will be private, albeit the corresponding OF functions they will use are global. If I split current properties.c, which of these should the fwnode ops struct and the function callbacks be put? The patch is here (and the previous one; both were submitted earlier today): <URL:https://git.linuxtv.org/sailus/media_tree.git/commit/?h=acpi-graph-cleaned&id=b8cb45afa52a892d9ec62530b5f882c56533b30d> > > [...] > >> diff --git a/drivers/of/property.c b/drivers/of/property.c >> new file mode 100644 >> index 0000000..e5d3e1f >> --- /dev/null >> +++ b/drivers/of/property.c >> @@ -0,0 +1,763 @@ >> +/* >> + * drivers/of/property.c - Procedures for accessing and interpreting >> + * Devicetree properties and graphs. >> + * >> + * Initially created by copying procedures from drivers/of/base.c. This >> + * file contains the OF property as well as the OF graph interface >> + * functions. >> + * >> + * Paul Mackerras August 1996. >> + * Copyright (C) 1996-2005 Paul Mackerras. >> + * >> + * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner. >> + * {engebret|bergner}@us.ibm.com >> + * >> + * Adapted for sparc and sparc64 by David S. Miller davem@xxxxxxxxxxxxx >> + * >> + * Reconsolidated from arch/x/kernel/prom.c by Stephen Rothwell and >> + * Grant Likely. >> + * >> + * This program is free software; you can redistribute it and/or >> + * modify it under the terms of the GNU General Public License >> + * as published by the Free Software Foundation; either version >> + * 2 of the License, or (at your option) any later version. >> + */ >> + > > Need a pr_fmt here. Indeed. I'll address that in v6. > >> +#include <linux/of.h> >> +#include <linux/of_device.h> >> +#include <linux/of_graph.h> >> +#include <linux/string.h> >> + >> +#include "of_private.h" > > A blank line needed here. Oops! > >> +/** >> + * of_property_count_elems_of_size - Count the number of elements in a property >> + * >> + * @np: device node from which the property value is to be read. >> + * @propname: name of the property to be searched. >> + * @elem_size: size of the individual element >> + * >> + * Search for a property in a device node and count the number of elements of >> + * size elem_size in it. Returns number of elements on sucess, -EINVAL if the >> + * property does not exist or its length does not match a multiple of elem_size >> + * and -ENODATA if the property does not have a value. >> + */ -- Kind regards, Sakari Ailus sakari.ailus@xxxxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html