RE: [PATCH net-next 1/2] arm64: dts: imx8mp-evk: configure multiple queues on eqos

From: Joakim Zhang
Date: Tue Nov 30 2021 - 20:43:38 EST



Hi Xiaoliang,

After enable multiple queues in dts by default, eqos can't boot with NFS, NFS can't be mounted at the end. Can this reproduce at your side?

Best Regards,
Joakim Zhang

> -----Original Message-----
> From: Xiaoliang Yang <xiaoliang.yang_1@xxxxxxx>
> Sent: 2021年12月1日 9:47
> To: davem@xxxxxxxxxxxxx; netdev@xxxxxxxxxxxxxxx;
> linux-kernel@xxxxxxxxxxxxxxx
> Cc: kuba@xxxxxxxxxx; Joakim Zhang <qiangqing.zhang@xxxxxxx>;
> peppe.cavallaro@xxxxxx; alexandre.torgue@xxxxxxxxxxx;
> joabreu@xxxxxxxxxxxx; Yannick Vignon <yannick.vignon@xxxxxxx>;
> boon.leong.ong@xxxxxxxxx; Jose.Abreu@xxxxxxxxxxxx; mst@xxxxxxxxxx;
> Joao.Pinto@xxxxxxxxxxxx; Mingkai Hu <mingkai.hu@xxxxxxx>; Leo Li
> <leoyang.li@xxxxxxx>; Xiaoliang Yang <xiaoliang.yang_1@xxxxxxx>
> Subject: [PATCH net-next 1/2] arm64: dts: imx8mp-evk: configure multiple
> queues on eqos
>
> Eqos ethernet support five queues on hardware, enable these queues and
> configure the priority of each queue. Uses Strict Priority as scheduling
> algorithms to ensure that the TSN function works.
>
> Signed-off-by: Xiaoliang Yang <xiaoliang.yang_1@xxxxxxx>
> ---
> arch/arm64/boot/dts/freescale/imx8mp-evk.dts | 41
> ++++++++++++++++++++
> 1 file changed, 41 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/freescale/imx8mp-evk.dts
> b/arch/arm64/boot/dts/freescale/imx8mp-evk.dts
> index 7b99fad6e4d6..1e523b3d122b 100644
> --- a/arch/arm64/boot/dts/freescale/imx8mp-evk.dts
> +++ b/arch/arm64/boot/dts/freescale/imx8mp-evk.dts
> @@ -86,6 +86,9 @@
> pinctrl-0 = <&pinctrl_eqos>;
> phy-mode = "rgmii-id";
> phy-handle = <&ethphy0>;
> + snps,force_thresh_dma_mode;
> + snps,mtl-tx-config = <&mtl_tx_setup>;
> + snps,mtl-rx-config = <&mtl_rx_setup>;
> status = "okay";
>
> mdio {
> @@ -99,6 +102,44 @@
> eee-broken-1000t;
> };
> };
> +
> + mtl_tx_setup: tx-queues-config {
> + snps,tx-queues-to-use = <5>;
> + queue0 {
> + snps,priority = <0x0>;
> + };
> + queue1 {
> + snps,priority = <0x1>;
> + };
> + queue2 {
> + snps,priority = <0x2>;
> + };
> + queue3 {
> + snps,priority = <0x3>;
> + };
> + queue4 {
> + snps,priority = <0x4>;
> + };
> + };
> +
> + mtl_rx_setup: rx-queues-config {
> + snps,rx-queues-to-use = <5>;
> + queue0 {
> + snps,priority = <0x0>;
> + };
> + queue1 {
> + snps,priority = <0x1>;
> + };
> + queue2 {
> + snps,priority = <0x2>;
> + };
> + queue3 {
> + snps,priority = <0x3>;
> + };
> + queue4 {
> + snps,priority = <0x4>;
> + };
> + };
> };
>
> &fec {
> --
> 2.17.1