* MAC address set in OCOTP but not visible from ETH0 - i.MX6
@ 2021-01-26 17:06 DEMIRDJIAN, Antoine
2021-01-26 17:24 ` Ahmad Fatoum
0 siblings, 1 reply; 3+ messages in thread
From: DEMIRDJIAN, Antoine @ 2021-01-26 17:06 UTC (permalink / raw)
To: barebox
Dear all,
I'm working on a custom board based on an i.MX6 Dual Lite.
I've set a MAC address on OCOTP, and I can see it :
barebox@Main Board:/ devinfo ocotp0
Parameters:
mac_addr: 70:82:0e:12:73:6f (type: MAC)
mac_addr0: 70:82:0e:12:73:6f (type: MAC)
permanent_write_enable: 0 (type: bool)
sense_enable: 0 (type: bool)
The issue is that I can't get it from eth0 :
barebox@Chrysalis Main Board:/ devinfo eth0
Parameters:
ethaddr: 00:00:00:00:00:00 (type: MAC)
gateway: 192.1.1.100 (type: ipv4)
ipaddr: 0.0.0.0 (type: ipv4)
linux.bootargs: ip=0.0.0.0:192.1.1.46:192.1.1.100:255.255.255.0:::
(type: string)
linux.devname: (type: string)
mode: static (type: enum) (values: "dhcp", "static", "disabled")
netmask: 255.255.255.0 (type: ipv4)
serverip: 192.1.1.46 (type: string)
My operating system's driver does not see it neither ...
Am I missing something?
Best Regards,
Antoine
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: MAC address set in OCOTP but not visible from ETH0 - i.MX6
2021-01-26 17:06 MAC address set in OCOTP but not visible from ETH0 - i.MX6 DEMIRDJIAN, Antoine
@ 2021-01-26 17:24 ` Ahmad Fatoum
2021-01-26 18:06 ` DEMIRDJIAN, Antoine
0 siblings, 1 reply; 3+ messages in thread
From: Ahmad Fatoum @ 2021-01-26 17:24 UTC (permalink / raw)
To: barebox
Hi,
On 26.01.21 18:06, DEMIRDJIAN, Antoine wrote:
> Dear all,
>
> I'm working on a custom board based on an i.MX6 Dual Lite.
> I've set a MAC address on OCOTP, and I can see it :
>
> barebox@Main Board:/ devinfo ocotp0
> Parameters:
> mac_addr: 70:82:0e:12:73:6f (type: MAC)
> mac_addr0: 70:82:0e:12:73:6f (type: MAC)
> permanent_write_enable: 0 (type: bool)
> sense_enable: 0 (type: bool)
>
> The issue is that I can't get it from eth0 :
>
> barebox@Chrysalis Main Board:/ devinfo eth0
> Parameters:
> ethaddr: 00:00:00:00:00:00 (type: MAC)
> gateway: 192.1.1.100 (type: ipv4)
> ipaddr: 0.0.0.0 (type: ipv4)
> linux.bootargs: ip=0.0.0.0:192.1.1.46:192.1.1.100:255.255.255.0:::
> (type: string)
> linux.devname: (type: string)
> mode: static (type: enum) (values: "dhcp", "static", "disabled")
> netmask: 255.255.255.0 (type: ipv4)
> serverip: 192.1.1.46 (type: string)
>
> My operating system's driver does not see it neither ...
>
> Am I missing something?
Yes: https://barebox.org/doc/latest/devicetree/bindings/misc/fsl,imx-ocotp.html
Check the other i.MX board in arch/arm/dts for an example.
Cheers,
Ahmad
>
> Best Regards,
> Antoine
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: MAC address set in OCOTP but not visible from ETH0 - i.MX6
2021-01-26 17:24 ` Ahmad Fatoum
@ 2021-01-26 18:06 ` DEMIRDJIAN, Antoine
0 siblings, 0 replies; 3+ messages in thread
From: DEMIRDJIAN, Antoine @ 2021-01-26 18:06 UTC (permalink / raw)
To: Ahmad Fatoum; +Cc: barebox
Hi,
Le mar. 26 janv. 2021 à 18:25, Ahmad Fatoum <a.fatoum@pengutronix.de> a écrit :
>
> Hi,
>
> On 26.01.21 18:06, DEMIRDJIAN, Antoine wrote:
> > Dear all,
> >
> > I'm working on a custom board based on an i.MX6 Dual Lite.
> > I've set a MAC address on OCOTP, and I can see it :
> >
> > barebox@Main Board:/ devinfo ocotp0
> > Parameters:
> > mac_addr: 70:82:0e:12:73:6f (type: MAC)
> > mac_addr0: 70:82:0e:12:73:6f (type: MAC)
> > permanent_write_enable: 0 (type: bool)
> > sense_enable: 0 (type: bool)
> >
> > The issue is that I can't get it from eth0 :
> >
> > barebox@Chrysalis Main Board:/ devinfo eth0
> > Parameters:
> > ethaddr: 00:00:00:00:00:00 (type: MAC)
> > gateway: 192.1.1.100 (type: ipv4)
> > ipaddr: 0.0.0.0 (type: ipv4)
> > linux.bootargs: ip=0.0.0.0:192.1.1.46:192.1.1.100:255.255.255.0:::
> > (type: string)
> > linux.devname: (type: string)
> > mode: static (type: enum) (values: "dhcp", "static", "disabled")
> > netmask: 255.255.255.0 (type: ipv4)
> > serverip: 192.1.1.46 (type: string)
> >
> > My operating system's driver does not see it neither ...
> >
> > Am I missing something?
>
> Yes: https://barebox.org/doc/latest/devicetree/bindings/misc/fsl,imx-ocotp.html
>
> Check the other i.MX board in arch/arm/dts for an example.
Many thanks !
Sorry for the noise...
Best regards,
Antoine
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-01-26 18:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-26 17:06 MAC address set in OCOTP but not visible from ETH0 - i.MX6 DEMIRDJIAN, Antoine
2021-01-26 17:24 ` Ahmad Fatoum
2021-01-26 18:06 ` DEMIRDJIAN, Antoine
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox