DART-6UL Ethernet: Difference between revisions
(Use template COMPAT_DEBIAN_LST_MODEL) |
|||
(10 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{PageHeader|DART-6UL - Ethernet}} {{DocImage|category1= | <!-- Set release according to "release" parameter in URL and use RELEASE_THUD_V1.1_DART-6UL as default | ||
--> {{INIT_RELEASE_PARAM|RELEASE_THUD_V1.1_DART-6UL}} <!-- | |||
--> {{#lst:Yocto_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!-- | |||
--> {{#lst:B2QT_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!-- | |||
--> {{#lst:Debian_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!-- | |||
--> {{COMPAT_DEBIAN_LST_MODEL}}<!-- | |||
--> {{PageHeader|DART-6UL - Ethernet}} {{DocImage|category1=Yocto|category2=Debian}}[[category:DART-6UL]] __toc__ | |||
= Testing = | = Testing = | ||
There are two 100MB/s ports on the kit, eth0 & eth1.<br> | There are two 100MB/s ports on the kit, eth0 & eth1.<br> | ||
Line 14: | Line 21: | ||
= Using only one Ethernet port = | = Using only one Ethernet port = | ||
{{#lst:Yocto_Platform_Customization|{{#var:MX6UL_USING_ONE_ETH_PORT}}}} | |||
Latest revision as of 20:53, 6 June 2023
This page is using the default release RELEASE_THUD_V1.1_DART-6UL.
To view this page for a specific Variscite SoM and software release, please follow these steps:
- Visit variwiki.com
- Select your SoM
- Select the software release
Testing
There are two 100MB/s ports on the kit, eth0 & eth1.
On Host:
$ ifconfig (to get the IP address) $ iperf3 -s
On Client:
$ iperf3 -c <IP_ADDRESS_OF_IPERF_SERVER> -u -b 100M
Using only one Ethernet port
To remove the second Ethernet port, in case your own custom carrier board only has one and doesn't have the second Ethernet phy:
Edit the dtsi file of the reference carrier board in the Linux kernel source and remove the &fec1 and &fec2 nodes from it.
In case of the VAR-6ULCustomBoard (DART-6UL carrier), the file is arch/arm/boot/dts/imx6ul-imx6ull-var-dart-6ulcustomboard.dtsi.
In case of the Concerto-Board (VAR-SOM-6UL carrier), the file is arch/arm/boot/dts/imx6ul-imx6ull-var-som-concerto-board.dtsi.
The above will result in using the &fec1 node from the dtsi file of the SOM, as is (as the phy of the first Ethernet port is on the SOM), without adding the second port (which its phy is on the reference carrier board).
Notes:
- You can follow the "Build Linux from source code" guide to get the Linux kernel source, apply the above patch, build only the device trees and copy them to your SD card.