Hi
I am using QorIQ FRWY-LS1012A reference design board with LSDK v20.04. In order to run sdk I download `flex-installer`
$ wget https://www.nxp.com/lgfiles/sdk/lsdk2004/flex-installer && chmod +x flex-installer && sudo mv flex-installer /usr/bin
and flash sd card
$ flex-installer -i auto -m ls1012afrwy -d /dev/sdc
I stopped pfe in U-Boot (to use interfaces in Linux) and run bootcmd
=> pfe stop
Stopping PFE...
=> run bootcmd
switch to partitions #0, OK
mmc0 is current device
Scanning mmc 0:1...
Scanning mmc 0:2...
Found U-Boot script /ls1012afrwy_boot.scr
964 bytes read in 321 ms (2.9 KiB/s)
## Executing script at 80000000
36745728 bytes read in 2183 ms (16.1 MiB/s)
15316 bytes read in 106 ms (140.6 KiB/s)
## Flattened Device Tree blob at 90000000
Booting using the fdt blob at 0x90000000
Using Device Tree in place at 0000000090000000, end 0000000090006bd3
WARNING: fdt_fixup_stdout: could not read serial0 alias: FDT_ERR_NOTFOUND
PCIe0: pcie@3400000 Root Complex: no link
Starting kernel ...
To use eth1 interface I connect ethernet cable and run `dhclient` on that interface
root@localhost:~# dhclient -i eth0
According to the documentation frwy-ls1012a should be able to receive ~1Gbps data. I run some tests using `iperf3` and I get only ~600mbps.
[ ID] Interval Transfer Bandwidth
[ 5] 0.00-1.00 sec 72.1 MBytes 602 Mbits/sec
[ 5] 1.00-2.00 sec 73.9 MBytes 619 Mbits/sec
[ 5] 2.00-3.00 sec 73.8 MBytes 620 Mbits/sec
[ 5] 3.00-4.00 sec 73.4 MBytes 616 Mbits/sec
[ 5] 4.00-5.00 sec 73.6 MBytes 618 Mbits/sec
[ 5] 5.00-6.00 sec 73.2 MBytes 615 Mbits/sec
[ 5] 6.00-7.00 sec 73.2 MBytes 615 Mbits/sec
[ 5] 7.00-8.00 sec 73.2 MBytes 614 Mbits/sec
[ 5] 8.00-9.00 sec 73.0 MBytes 613 Mbits/sec
[ 5] 9.00-10.00 sec 72.9 MBytes 611 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval Transfer Bandwidth
[ 5] 0.00-10.00 sec 0.00 Bytes 0.00 bits/sec sender
[ 5] 0.00-10.00 sec 732 MBytes 614 Mbits/sec receiver
-----------------------------------------------------------
Is there any way to improve this performance?
Best regards,
Tom