lkml.org 
[lkml]   [2018]   [Aug]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2 01/29] nvmem: add support for cell lookups
On Fri, Aug 24, 2018 at 05:08:48PM +0200, Boris Brezillon wrote:
> Hi Bartosz,
>
> On Fri, 10 Aug 2018 10:04:58 +0200
> Bartosz Golaszewski <brgl@bgdev.pl> wrote:
>
> > +struct nvmem_cell_lookup {
> > + struct nvmem_cell_info info;
> > + struct list_head list;
> > + const char *nvmem_name;
> > +};
>
> Hm, maybe I don't get it right, but this looks suspicious. Usually the
> consumer lookup table is here to attach device specific names to
> external resources.
>
> So what I'd expect here is:
>
> struct nvmem_cell_lookup {
> /* The nvmem device name. */
> const char *nvmem_name;
>
> /* The nvmem cell name */
> const char *nvmem_cell_name;
>
> /*
> * The local resource name. Basically what you have in the
> * nvmem-cell-names prop.
> */
> const char *conid;
> };
>
> struct nvmem_cell_lookup_table {
> struct list_head list;
>
> /* ID of the consumer device. */
> const char *devid;
>
> /* Array of cell lookup entries. */
> unsigned int ncells;
> const struct nvmem_cell_lookup *cells;
> };
>
> Looks like your nvmem_cell_lookup is more something used to attach cells
> to an nvmem device, which is NVMEM provider's responsibility not the
> consumer one.

Hi Boris

There are cases where there is not a clear providier/consumer split. I
have an x86 platform, with a few at24 EEPROMs on it. It uses an off
the shelf Komtron module, placed on a custom carrier board. One of the
EEPROMs contains the hardware variant information. Once i know the
variant, i need to instantiate other I2C, SPI, MDIO devices, all using
platform devices, since this is x86, no DT available.

So the first thing my x86 platform device does is instantiate the
first i2c device for the AT24. Once the EEPROM pops into existence, i
need to add nvmem cells onto it. So at that point, the x86 platform
driver is playing the provider role. Once the cells are added, i can
then use nvmem consumer interfaces to get the contents of the cell,
run a checksum, and instantiate the other devices.

I wish the embedded world was all DT, but the reality is that it is
not :-(

Andrew

\
 
 \ /
  Last update: 2018-08-24 17:29    [W:0.086 / U:0.792 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site