Home
last modified time | relevance | path

Searched refs:secy (Results 1 – 13 of 13) sorted by relevance

/Linux-v6.1/drivers/net/
Dmacsec.c53 #define for_each_rxsc(secy, sc) \ argument
54 for (sc = rcu_dereference_bh(secy->rx_sc); \
57 #define for_each_rxsc_rtnl(secy, sc) \ argument
58 for (sc = rtnl_dereference(secy->rx_sc); \
98 struct macsec_secy secy; member
289 const struct macsec_secy *secy, u32 pn, in macsec_fill_sectag() argument
292 const struct macsec_tx_sc *tx_sc = &secy->tx_sc; in macsec_fill_sectag()
299 memcpy(&h->secure_channel_id, &secy->sci, in macsec_fill_sectag()
313 else if (secy->icv_len != MACSEC_DEFAULT_ICV_LEN) in macsec_fill_sectag()
445 static void __macsec_pn_wrapped(struct macsec_secy *secy, in __macsec_pn_wrapped() argument
[all …]
/Linux-v6.1/drivers/net/ethernet/marvell/octeontx2/nic/
Dcn10k_macsec.c46 struct macsec_secy *secy) in cn10k_mcs_get_txsc() argument
51 if (txsc->sw_secy == secy) in cn10k_mcs_get_txsc()
59 struct macsec_secy *secy, in cn10k_mcs_get_rxsc() argument
65 if (rxsc->sw_rxsc == rx_sc && rxsc->sw_secy == secy) in cn10k_mcs_get_rxsc()
200 struct macsec_secy *secy, u8 hw_secy_id) in cn10k_mcs_write_rx_secy() argument
215 policy = FIELD_PREP(MCS_RX_SECY_PLCY_RW_MASK, secy->replay_window); in cn10k_mcs_write_rx_secy()
216 if (secy->replay_protect) in cn10k_mcs_write_rx_secy()
221 policy |= FIELD_PREP(MCS_RX_SECY_PLCY_VAL, secy->validate_frames); in cn10k_mcs_write_rx_secy()
303 struct macsec_secy *secy, in cn10k_mcs_write_rx_sa_plcy() argument
329 for (reg = 0, key_len = 0; key_len < secy->key_len; key_len += 8) { in cn10k_mcs_write_rx_sa_plcy()
[all …]
/Linux-v6.1/drivers/net/ethernet/aquantia/atlantic/
Daq_macsec.c32 static int aq_clear_secy(struct aq_nic_s *nic, const struct macsec_secy *secy,
36 const struct macsec_secy *secy);
50 const struct macsec_secy *secy) in aq_get_txsc_idx_from_secy() argument
54 if (unlikely(!secy)) in aq_get_txsc_idx_from_secy()
58 if (macsec_cfg->aq_txsc[i].sw_secy == secy) in aq_get_txsc_idx_from_secy()
296 ret = aq_apply_secy_cfg(nic, ctx->secy); in aq_mdo_dev_open()
319 const struct macsec_secy *secy = aq_txsc->sw_secy; in aq_set_txsc() local
325 aq_ether_addr_to_mac(tx_class_rec.mac_sa, secy->netdev->dev_addr); in aq_set_txsc()
327 put_unaligned_be64((__force u64)secy->sci, tx_class_rec.sci); in aq_set_txsc()
343 sc_rec.protect = secy->protect_frames; in aq_set_txsc()
[all …]
/Linux-v6.1/drivers/net/phy/mscc/
Dmscc_macsec.c429 if (priv->secy->replay_protect) in vsc8584_macsec_flow()
431 if (priv->secy->validate_frames == MACSEC_VALIDATE_STRICT) in vsc8584_macsec_flow()
433 else if (priv->secy->validate_frames == MACSEC_VALIDATE_CHECK) in vsc8584_macsec_flow()
436 if (priv->secy->protect_frames) in vsc8584_macsec_flow()
438 if (priv->secy->tx_sc.encrypt) in vsc8584_macsec_flow()
440 if (priv->secy->tx_sc.send_sci) in vsc8584_macsec_flow()
530 ret = vsc8584_macsec_derive_key(flow->key, priv->secy->key_len, hkey); in vsc8584_macsec_transformation()
534 switch (priv->secy->key_len) { in vsc8584_macsec_transformation()
546 (CONTROL_TYPE_EGRESS | CONTROL_AN(priv->secy->tx_sc.encoding_sa)) : in vsc8584_macsec_transformation()
563 for (i = 0; i < priv->secy->key_len / sizeof(u32); i++) in vsc8584_macsec_transformation()
[all …]
Dmscc.h384 struct macsec_secy *secy; member
/Linux-v6.1/include/net/
Dmacsec.h257 struct macsec_secy *secy; member
306 void macsec_pn_wrapped(struct macsec_secy *secy, struct macsec_tx_sa *tx_sa);
307 static inline bool macsec_send_sci(const struct macsec_secy *secy) in macsec_send_sci() argument
309 const struct macsec_tx_sc *tx_sc = &secy->tx_sc; in macsec_send_sci()
312 (secy->n_rx_sc > 1 && !tx_sc->end_station && !tx_sc->scb); in macsec_send_sci()
/Linux-v6.1/drivers/net/ethernet/mellanox/mlx5/core/en_accel/
Dmacsec.c380 obj_attrs.replay_window = ctx->secy->replay_window; in mlx5e_macsec_init_sa()
381 obj_attrs.replay_protect = ctx->secy->replay_protect; in mlx5e_macsec_init_sa()
457 const struct macsec_secy *secy = ctx->secy; in mlx5e_macsec_secy_features_validate() local
459 if (secy->validate_frames != MACSEC_VALIDATE_STRICT) { in mlx5e_macsec_secy_features_validate()
465 if (secy->icv_len != MACSEC_DEFAULT_ICV_LEN) { in mlx5e_macsec_secy_features_validate()
471 if (!secy->protect_frames) { in mlx5e_macsec_secy_features_validate()
477 if (!ctx->secy->tx_sc.encrypt) { in mlx5e_macsec_secy_features_validate()
494 if (iter->netdev == ctx->secy->netdev) in mlx5e_macsec_get_macsec_device_context()
514 const struct macsec_tx_sc *tx_sc = &ctx->secy->tx_sc; in mlx5e_macsec_add_txsa()
517 const struct macsec_secy *secy = ctx->secy; in mlx5e_macsec_add_txsa() local
[all …]
Dmacsec_fs.c458 const struct macsec_secy *secy = ctx->secy; in macsec_fs_tx_create_sectag_header() local
459 bool sci_present = macsec_send_sci(secy); in macsec_fs_tx_create_sectag_header()
463 tx_sc = &secy->tx_sc; in macsec_fs_tx_create_sectag_header()
468 memcpy(&sectag.sci, &secy->sci, in macsec_fs_tx_create_sectag_header()
480 else if (secy->icv_len != MACSEC_DEFAULT_ICV_LEN) in macsec_fs_tx_create_sectag_header()
/Linux-v6.1/drivers/net/ethernet/marvell/octeontx2/af/
Dmcs.h111 u8 secy; member
125 struct rsrc_bmap secy; member
196 void mcs_rx_sc_cam_write(struct mcs *mcs, u64 sci, u64 secy, int sc_id);
Dmcs.c310 for (id = 0; id < map->secy.max; id++) { in mcs_clear_all_stats()
317 for (id = 0; id < map->secy.max; id++) { in mcs_clear_all_stats()
406 void mcs_rx_sc_cam_write(struct mcs *mcs, u64 sci, u64 secy, int sc_id) in mcs_rx_sc_cam_write() argument
409 mcs_reg_write(mcs, MCSX_CPM_RX_SLAVE_SC_CAMX(1, sc_id), secy); in mcs_rx_sc_cam_write()
433 val = (map->secy & 0x7F) | (map->ctrl_pkt & 0x1) << 8; in cn10kb_mcs_flowid_secy_map()
521 map.secy = secy_id; in mcs_install_flowid_bypass_entry()
722 for (id = 0; id < map->secy.max; id++) { in mcs_free_all_rsrc()
725 mcs_free_rsrc(&map->secy, map->secy2pf_map, in mcs_free_all_rsrc()
731 for (id = 0; id < map->secy.max; id++) { in mcs_free_all_rsrc()
777 id = mcs_alloc_rsrc(&map->secy, map->secy2pf_map, pcifunc); in mcs_alloc_all_rsrc()
[all …]
Dmcs_cnf10kb.c74 val = (map->secy & 0x3F) | (map->ctrl_pkt & 0x1) << 6; in cnf10kb_mcs_flowid_secy_map()
Dmcs_rvu_if.c573 map.secy = req->secy_id; in rvu_mbox_handler_mcs_flowid_entry_write()
617 rc = mcs_free_rsrc(&map->secy, map->secy2pf_map, req->rsrc_id, pcifunc); in rvu_mbox_handler_mcs_free_resources()
678 rsrc_id = mcs_alloc_rsrc(&map->secy, map->secy2pf_map, pcifunc); in rvu_mbox_handler_mcs_alloc_resources()
Drvu_debugfs.c433 map = &mcs->tx.secy; in rvu_dbg_mcs_tx_secy_stats_display()
476 map = &mcs->rx.secy; in rvu_dbg_mcs_rx_secy_stats_display()