lkml.org 
[lkml]   [2016]   [Feb]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH] of: add pre-operation notifications
On Wed, Feb 24, 2016 at 4:28 PM, Alan Tull <atull@opensource.altera.com> wrote:
> Add pre-apply and pre-remove notifications.
>
> For pre-apply notifications that result from creating an overlay,
> include a device node to the overlay fragment in of_reconfig_data.
>
> If a pre-apply notifier return error, reject the changeset.

A couple of high level comments.

>
> Signed-off-by: Alan Tull <atull@opensource.altera.com>
> ---
> drivers/of/base.c | 20 +++++++++++++
> drivers/of/dynamic.c | 79 +++++++++++++++++++++++++++++++++++++++++++++-----
> drivers/of/overlay.c | 46 +++++++++++++++++++++++++----
> include/linux/of.h | 7 +++++
> 4 files changed, 138 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/of/base.c b/drivers/of/base.c
> index 017dd94..6d170e0 100644
> --- a/drivers/of/base.c
> +++ b/drivers/of/base.c
> @@ -1719,6 +1719,12 @@ int of_add_property(struct device_node *np, struct property *prop)
>
> mutex_lock(&of_mutex);
>
> + rc = of_property_notify(OF_RECONFIG_PRE_ADD_PROPERTY, np, prop, NULL);

Do we really need these for properties too? I thought nodes would be enough.

[...]

> diff --git a/drivers/of/overlay.c b/drivers/of/overlay.c
> index 8225081..9d0c0d9 100644
> --- a/drivers/of/overlay.c
> +++ b/drivers/of/overlay.c
> @@ -53,13 +53,30 @@ struct of_overlay {
> struct of_changeset cset;
> };
>
> +static int of_overlay_notify(unsigned long action, struct device_node *np,
> + struct property *prop, struct property *old_prop,
> + struct device_node *overlay)
> +{
> + struct of_reconfig_data rd;
> +
> + memset(&rd, 0, sizeof(rd));
> + rd.dn = np;
> + rd.prop = prop;
> + rd.old_prop = old_prop;
> + rd.overlay = overlay;
> + return of_reconfig_notify(action, &rd);
> +}
> +
> static int of_overlay_apply_one(struct of_overlay *ov,
> - struct device_node *target, const struct device_node *overlay);
> + struct device_node *target, struct device_node *overlay);
>
> static int of_overlay_apply_single_property(struct of_overlay *ov,
> - struct device_node *target, struct property *prop)
> + struct device_node *target, struct property *prop,
> + struct device_node *overlay)
> {
> struct property *propn, *tprop;
> + unsigned long action;
> + int ret;
>
> /* NOTE: Multiple changes of single properties not supported */
> tprop = of_find_property(target, prop->name, NULL);
> @@ -74,6 +91,15 @@ static int of_overlay_apply_single_property(struct of_overlay *ov,
> if (propn == NULL)
> return -ENOMEM;
>
> + if (!tprop)
> + action = OF_RECONFIG_PRE_ADD_PROPERTY;
> + else
> + action = OF_RECONFIG_PRE_UPDATE_PROPERTY;
> +
> + ret = of_overlay_notify(action, target, propn, tprop, overlay);
> + if (ret)
> + return ret;
> +
I don't understand why the notifier is in the overlay code. All the
notifiers should be contained within the changeset code. Or if we do
need changeset and overlay notifiers, they should be distinct.

> /* not found? add */
> if (tprop == NULL)
> return of_changeset_add_property(&ov->cset, target, propn);

\
 
 \ /
  Last update: 2016-02-25 05:21    [W:0.132 / U:0.016 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site