linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Vadym Kochan <vadym.kochan@plvision.eu>
To: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Cc: Vadym Kochan <vadym.kochan@plvision.eu>,
	Rob Herring <robh+dt@kernel.org>,
	linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
	Robert Marko <robert.marko@sartura.hr>
Subject: Re: [PATCH v2 1/3] nvmem: core: introduce cells parser
Date: Wed, 08 Sep 2021 12:44:59 +0300	[thread overview]
Message-ID: <vrcxh2y287l7tw.fsf@plvision.eu> (raw)
In-Reply-To: <43023500-dd6a-5180-057e-cecc1f1b6500@linaro.org>


Srinivas Kandagatla <srinivas.kandagatla@linaro.org> writes:

> On 08/06/2021 20:03, Vadym Kochan wrote:
>> Current implementation does not allow to register cells for already
>> registered nvmem device and requires that this should be done before. But
>> there might a driver which needs to parse the nvmem device and after
>> register a cells table.
>> 
>> Introduce nvmem_parser API which allows to register cells parser which
>> is called during nvmem device registration. During this stage the parser
>> can read the nvmem device and register the cells table.
>> 
>> Signed-off-by: Vadym Kochan <vadym.kochan@plvision.eu>
>> ---
>> v2:
>>      1) Added nvmem_parser_data so parser implementation
>>         should fill it with cells table and lookups which
>>         will be registered by core.c after cells_parse was
>>         succeed.
>> 
>>      2) Removed cells_remove callback from nvmem_parser_config which
>>         is not needed because cells table & lookups are
>>         registered/unregistered automatically by core.
>> 
>>      3) Use new device property to read cells parser name during nvmem
>>         registration. Removed of_node usage.
>> 
>>      4) parser's module refcount is incremented/decremented on each parser
>>         bind/unbind to nvmem device.
>> 
>>   drivers/nvmem/core.c           | 178 +++++++++++++++++++++++++++++++++
>>   include/linux/nvmem-provider.h |  31 ++++++
>>   2 files changed, 209 insertions(+)
>> 
>> diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
>> index bca671ff4e54..648373ced6d4 100644
>> --- a/drivers/nvmem/core.c
>> +++ b/drivers/nvmem/core.c
>> @@ -39,6 +39,7 @@ struct nvmem_device {
>>   	nvmem_reg_read_t	reg_read;
>>   	nvmem_reg_write_t	reg_write;
>>   	struct gpio_desc	*wp_gpio;
>> +	struct nvmem_parser_data *parser_data;
>
> This should be renamed to nvmem_cell_info_parser or something on those 
> lines to avoid any misunderstanding on what exactly this parser is about.
>
> May be can totally avoid this by using parser name only during register.
>
>>   	void *priv;
>>   };
>>   
>> @@ -57,6 +58,13 @@ struct nvmem_cell {
>>   	struct list_head	node;
>>   };
>>   
>> +struct nvmem_parser {
>> +	struct list_head	head;
>> +	nvmem_parse_t		cells_parse;
>> +	const char		*name;
>> +	struct module		*owner;
>> +};
>> +
>>   static DEFINE_MUTEX(nvmem_mutex);
>>   static DEFINE_IDA(nvmem_ida);
>>   
>> @@ -66,6 +74,9 @@ static LIST_HEAD(nvmem_cell_tables);
>>   static DEFINE_MUTEX(nvmem_lookup_mutex);
>>   static LIST_HEAD(nvmem_lookup_list);
>>   
>> +static DEFINE_MUTEX(nvmem_parser_mutex);
>> +static LIST_HEAD(nvmem_parser_list);
>> +
>>   static BLOCKING_NOTIFIER_HEAD(nvmem_notifier);
>>   
>>   static int __nvmem_reg_read(struct nvmem_device *nvmem, unsigned int offset,
>> @@ -418,6 +429,118 @@ static struct bus_type nvmem_bus_type = {
>>   	.name		= "nvmem",
>>   };
>>   
>> +static struct nvmem_parser *__nvmem_parser_get(const char *name)
>> +{
>> +	struct nvmem_parser *tmp, *parser = NULL;
>> +
>> +	list_for_each_entry(tmp, &nvmem_parser_list, head) {
>> +		if (strcmp(name, tmp->name) == 0) {
>> +			parser = tmp;
>> +			break;
>> +		}
>> +	}
>> +
>> +	if (!parser)
>> +		return ERR_PTR(-EPROBE_DEFER);
>> +
>> +	if (!try_module_get(parser->owner)) {
>> +		pr_err("could not increase module refcount for parser %s\n",
>> +		       parser->name);
>> +		return ERR_PTR(-EINVAL);
>> +
>> +	}
>> +
>> +	return parser;
>> +}
>> +
>> +static void nvmem_parser_put(const struct nvmem_parser *parser)
>> +{
>> +	module_put(parser->owner);
>> +}
>> +
>> +static int nvmem_parser_bind(struct nvmem_device *nvmem, const char *name)
>> +{
> Do we really need parser bind/unbind mechanisms for what we are trying 
> to do here.
>
> It's just simply parsing cell info during nvmem register, do we really 
> care if parser is there or not after that?
>
> code can be probably made much simpler by just doing this in nvmem_register
>
> parser_get()
> parse_get_cell_info()
> parser_put()
>
> AFAIU, that is all we need.
>

bind/unbind is just for connecting parser instance with a nvmem device,
but the real reason is because of need of these cell lookups info,
and then freeing them.

If it would be possible to lookup parser's cell without these lookups
(I tried to explain the issue with this in other reply in this series)
then yes, just adding cell info would be enough.

>> +	struct nvmem_parser_data *data;
>> +	struct nvmem_parser *parser;
>> +	int err;
>> +
>> +	mutex_lock(&nvmem_parser_mutex);
>> +
>> +	parser = __nvmem_parser_get(name);
>> +	err = PTR_ERR_OR_ZERO(parser);
>> +	if (!err) { > +		data = kzalloc(sizeof(*data), GFP_KERNEL);
>> +		if (data) {
>> +			data->parser = parser;
>> +			nvmem->parser_data = data;
>> +		} else {
>> +			nvmem_parser_put(parser);
>> +			err = -ENOMEM;
>> +		}
>> +	}
>> +
>> +	mutex_unlock(&nvmem_parser_mutex);
>> +
>> +	return err;
>> +}
>> +
>> +static void nvmem_parser_unbind(const struct nvmem_device *nvmem)
>> +{
>> +	struct nvmem_parser_data *data = nvmem->parser_data;
>> +
>> +	if (data->table.cells) {
>> +		nvmem_del_cell_table(&data->table);
>> +		kfree(data->table.cells);
> who has allocated memory for this, its confusing for this to be freed in 
> core.
>> +	}
>> +	if (data->lookup) { > +		nvmem_del_cell_lookups(data->lookup, data->nlookups);
>> +		kfree(data->lookup);
>> +	}
>> +
>> +	nvmem_parser_put(data->parser);
>> +}
>> +
>> +static void nvmem_parser_data_register(struct nvmem_device *nvmem,
>> +				       struct nvmem_parser_data *data)
>> +{
>> +	if (data->table.cells) {
>> +		if (!data->table.nvmem_name)
>> +			data->table.nvmem_name = nvmem_dev_name(nvmem);
>> +
>> +		nvmem_add_cell_table(&data->table);
>> +	}
>> +
>> +	if (data->lookup) {
> Why do we need lookups?
> the cells are already associated with provider. lookups are normally 
> used for associating devices with nvmemcell more for old non-dt machine 
> code.
>
> you can remove this.
>> +		struct nvmem_cell_lookup *lookup = &data->lookup[0];
>> +		int i = 0;
>> +
>> +		for (i = 0; i < data->nlookups; i++, lookup++) {
>> +			if (!lookup->nvmem_name)
>> +				lookup->nvmem_name = nvmem_dev_name(nvmem);
>> +
>> +			if (!lookup->dev_id)
>> +				lookup->dev_id = data->parser->name;
>> +		}
>> +
>> +		nvmem_add_cell_lookups(data->lookup, data->nlookups);
>> +	}
>> +}
>> +
>
> --srini


  parent reply	other threads:[~2021-09-08  9:45 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-08 19:03 [PATCH v2 0/3] nvmem: add ONIE NVMEM cells parser Vadym Kochan
2021-06-08 19:03 ` [PATCH v2 1/3] nvmem: core: introduce " Vadym Kochan
2021-06-08 22:49   ` kernel test robot
2021-06-09  3:05   ` kernel test robot
2021-06-14 10:44   ` Srinivas Kandagatla
2021-06-16 12:33     ` Vadym Kochan
2021-06-21 11:00       ` Srinivas Kandagatla
2021-09-08  9:38         ` Vadym Kochan
2021-09-13 14:19           ` Srinivas Kandagatla
2021-09-20 10:24             ` Vadym Kochan
2021-09-20 10:36               ` Srinivas Kandagatla
2021-09-20 11:25                 ` Vadym Kochan
2021-09-20 11:32                   ` Srinivas Kandagatla
2021-09-20 12:29                     ` Vadym Kochan
2021-09-20 12:34                       ` Srinivas Kandagatla
2021-09-20 13:29                         ` Vadym Kochan
2021-09-20 13:40                           ` Srinivas Kandagatla
2021-09-21  5:50                             ` John Thomson
2021-09-27  7:50                               ` Vadym Kochan
2021-09-27 10:12                                 ` Srinivas Kandagatla
2021-09-28 13:31                                   ` Vadym Kochan
2021-09-28 13:51                                     ` Srinivas Kandagatla
2021-09-28 14:11                                       ` Vadym Kochan
2021-09-28 14:39                                         ` Srinivas Kandagatla
2021-09-27 10:12                               ` Srinivas Kandagatla
2021-09-27 12:38                                 ` John Thomson
2021-09-08  9:44     ` Vadym Kochan [this message]
2021-06-08 19:03 ` [PATCH v2 2/3] dt-bindings: nvmem: document nvmem-cells-parser-name property Vadym Kochan
2021-06-18 20:59   ` Rob Herring
2021-06-08 19:03 ` [PATCH v2 3/3] nvmem: add ONIE nvmem cells parser Vadym Kochan
2021-08-06 15:39   ` Jan Lübbe
2021-09-08  9:56     ` Vadym Kochan
2021-09-12 21:06       ` John Thomson
2021-09-13 14:20         ` Srinivas Kandagatla

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=vrcxh2y287l7tw.fsf@plvision.eu \
    --to=vadym.kochan@plvision.eu \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robert.marko@sartura.hr \
    --cc=robh+dt@kernel.org \
    --cc=srinivas.kandagatla@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).