1. The Ethernet port enetc0 or enetc1 cannot be added onto the bridge, enetc0 is the external port, enetc2 is the internal port connecting to the switch.
You could use the latest LSDK 20.04, please refer to the following configuration for bridge mode.
#!/bin/bash
#
# bring up master interface before the slave ports
ip link set eno2 up
# create bridge
ip link add name br0 type bridge
# add the external switch ports to the bridge
ip link set dev swp0 master br0
ip link set dev swp1 master br0
ip link set dev swp2 master br0
ip link set dev swp3 master br0
# bring up the slave interfaces
ip link set swp0 up
ip link set swp1 up
ip link set swp2 up
ip link set swp3 up
# configure and bring up the bridge
ip addr add 192.168.2.1/24
2. Yes, adding and bringing up enetc2 is required to move data to swpx.