Olimex Support Forum

OLinuXino Android / Linux boards and System On Modules => A13 => Topic started by: meo on April 12, 2023, 01:10:29 PM

Title: A13-SOM-512 driver for Wiznet W5500
Post by: meo on April 12, 2023, 01:10:29 PM
Hello,

we use firmware 5.10.105 debian linux bullseye on A13-SOM-512
what are the right drivers for ethernet chip wiznet W5500?


Thank you and best regards,
Wolfgang
Title: Re: A13-SOM-512 driver for Wiznet W5500
Post by: LubOlimex on April 12, 2023, 03:08:41 PM
There should be in the kernel but it is not clear if it they are enabled or built in. You might need to rebuild the kernel.

Check for anything WIZNET, type something like

grep -i wiznet /proc/config.gz

and see if it is enabled (y), not enabled (not set), or set as module (m).
Title: Re: A13-SOM-512 driver for Wiznet W5500
Post by: meo on April 12, 2023, 03:28:23 PM
Thank you for your answer.

I can see this via
zgrep -i wiznet /proc/config.gz
CONFIG_NET_VENDOR_WIZNET=y
CONFIG_WIZNET_W5100=m
# CONFIG_WIZNET_W5300 is not set
# CONFIG_WIZNET_BUS_DIRECT is not set
# CONFIG_WIZNET_BUS_INDIRECT is not set
CONFIG_WIZNET_BUS_ANY=y
# CONFIG_WIZNET_W5100_SPI is not set

There is no W5500?
Title: Re: A13-SOM-512 driver for Wiznet W5500
Post by: LubOlimex on April 12, 2023, 03:32:09 PM
https://github.com/torvalds/linux/blob/master/Documentation/devicetree/bindings/net/wiznet%2Cw5x00.txt
Title: Re: A13-SOM-512 driver for Wiznet W5500
Post by: meo on September 27, 2023, 03:09:26 PM
Thank you