In some of our products we need to disable reception of broadcast.
I have tried to remode BC bit in am65xIcssgAddrFilterSet(). But iit does not work.O am still receiving broadcast frames.
The modification:
/* match on Broadcast or MAC_PRU address */
regVal = RX_CLASS_FT_BC | RX_CLASS_FT_DA_P;
if (akNetEmacBroadcastDisabled[pDrvCtrl->emacUnit] == 1) {
regVal = RX_CLASS_FT_DA_P;
}
How can I disable broadcast?