On Tue, Apr 13, 2021 at 1:03 PM <Claudiu.Beznea@xxxxxxxxxxxxx> wrote: > > On 12.04.2021 21:29, Bartosz Golaszewski wrote: > > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > > > > On Mon, Apr 12, 2021 at 9:42 AM <Claudiu.Beznea@xxxxxxxxxxxxx> wrote: > >> > >> On 07.04.2021 21:37, Bartosz Golaszewski wrote: > >>> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > >>> > >>> On Fri, Apr 2, 2021 at 3:24 PM Claudiu Beznea > >>> <claudiu.beznea@xxxxxxxxxxxxx> wrote: > >>>> > >>>> Some EEPROMs could be used only for MAC storage. In this case the > >>>> EEPROM areas where MACs resides could be modeled as NVMEM cells > >>>> (directly via DT bindings) such that the already available networking > >>>> infrastructure to read properly the MAC addresses (via > >>>> of_get_mac_address()). Add "atmel,24mac02e4", "atmel,24mac02e4" > >>>> compatible for the usage w/ 24AA025E{48, 64} type of EEPROMs and adapt > >>>> the driver to not do offset adjustments. > >>>> > >>>> Signed-off-by: Claudiu Beznea <claudiu.beznea@xxxxxxxxxxxxx> > >>>> --- > >>>> > >>>> Hi Bartosz, > >>>> > >>>> For the previously available compatibles the offset adjustment is done > >>>> (probably for compatibility w/ old DT bindings?). In my scenario 24AA025E48 > >>>> is used in setup with macb driver which is calling of_get_mac_address() > >>>> to get the proper NVMEM cell in EEPROM where the MAC resides and read > >>>> directly from there. We modeled the EEPROM and NVMEM cell in DT as > >>>> follows: > >>>> > >>>> &i2cnode { > >>>> // ... > >>>> eeprom0: eeprom0@52 { > >>>> compatible = "atmel,24mac02e4"; > > > > Can you point me to the datasheet for this model, google only directs > > me to this very email. > > This is the datasheet: > https://ww1.microchip.com/downloads/en/DeviceDoc/24AA02E48-24AA025E48-24AA02E64-24AA025E64-Data-Sheet-20002124H.pdf > > > > >>From the device tree it looks as if it was just a regular 24c02 EEPROM > > with MAC hard-coded at 250-255 bytes, is that right? > > Yes, the MAC is hard-coded at 250. But using "24c02" compatible will > involve the offset adjustment in the driver (let me know if I missed > something). > > > Something seems to be wrong. There's no offset adjustment for "24c02". > Have you tried running i2cdump on the EEPROM's address? Do you see the > MAC? > Hi, I'm trying to revive this thread. Yes, I see the MAC using i2cdump for both: eeprom0@52 and eeprom1@53 from 0xfa. PS: I will send a new series to include these new compatible into DT binding document, all rebased on the current rc. Best Regards, Andrei Simion > Bartosz