Home
last modified time | relevance | path

Searched refs:ghtx (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/contrib/ncsw/Peripherals/FM/MAC/
H A Dfman_dtsec.c382 void fman_dtsec_set_hash_table(struct dtsec_regs *regs, uint32_t crc, bool mcast, bool ghtx) in fman_dtsec_set_hash_table() argument
385 if (ghtx) in fman_dtsec_set_hash_table()
417 bool ghtx; in fman_dtsec_reset_filter_table() local
419 ghtx = (bool)((ioread32be(&regs->rctrl) & RCTRL_GHTX) ? TRUE : FALSE); in fman_dtsec_reset_filter_table()
421 if (ucast || (ghtx && mcast)) { in fman_dtsec_reset_filter_table()
H A Ddtsec.c897 bool mcast, ghtx; in DtsecAddHashMacAddress() local
904 ghtx = (bool)((fman_dtsec_get_rctrl(p_Dtsec->p_MemMap) & RCTRL_GHTX) ? TRUE : FALSE); in DtsecAddHashMacAddress()
907 if (ghtx && !mcast) /* Cannot handle unicast mac addr when GHTX is on */ in DtsecAddHashMacAddress()
922 if (ghtx) in DtsecAddHashMacAddress()
957 bool mcast, ghtx; in DtsecDelHashMacAddress() local
964 ghtx = (bool)((fman_dtsec_get_rctrl(p_Dtsec->p_MemMap) & RCTRL_GHTX) ? TRUE : FALSE); in DtsecDelHashMacAddress()
967 if (ghtx && !mcast) /* Cannot handle unicast mac addr when GHTX is on */ in DtsecDelHashMacAddress()
972 if (ghtx) in DtsecDelHashMacAddress()
/freebsd/sys/contrib/ncsw/inc/flib/
H A Dfsl_fman_dtsec.h1018 bool mcast, bool ghtx);