Hi,nxp:
I am currently development the pfe master and slave functions. The configuration is as follows:
m core run autosa, as Pfe master, and A core run linux as pfe slave.
Now I can use an external computer to ping the master and slave. But it's not possible for the slave to ping the master.
Like this:
172.16.1.100(pc) ping 172.16.1.2(master) or 172.16.1.200(slave) OK
172.16.1.200(slave) ping 172.16.1.2(master) Faild
My pfe configuration is as follows:
Run the fci command to configure the bridge, and add master's HIF0, Linux's HIF3, and EMAC1 to a bridge:
libfci_cli bd-update --vlan=1 --uh=FORWARD --um=FLOOD --mh=FORWARD --mm=FLOOD
libfci_cli bd-insif --vlan=1 -i emac1 --tag=OFF
libfci_cli bd-insif --vlan=1 -i hif3 --tag=OFF
libfci_cli bd-insif --vlan=1 -i hif0 --tag=OFF
libfci_cli phyif-update -i emac1 --mode=VLAN_BRIDGE -E --promisc ON
libfci_cli phyif-update -i hif3 --mode=VLAN_BRIDGE -E --promisc ON
libfci_cli phyif-update -i hif0 --mode=VLAN_BRIDGE -E --promisc ON
Can you help me check this problem?