Home
last modified time | relevance | path

Searched full:tsa (Results 1 – 25 of 53) sorted by relevance

123

/linux-6.14.4/drivers/soc/fsl/qe/
Dtsa.c3 * TSA driver
10 #include "tsa.h"
11 #include <dt-bindings/soc/cpm1-fsl,tsa.h>
12 #include <dt-bindings/soc/qe-fsl,tsa.h>
23 /* TSA SI RAM routing tables entry (CPM1) */
36 /* TSA SI RAM routing tables entry (QE) */
157 struct tsa { struct
180 static inline struct tsa *tsa_serial_get_tsa(struct tsa_serial *tsa_serial) in tsa_serial_get_tsa() argument
183 return container_of(tsa_serial, struct tsa, serials[tsa_serial->id]); in tsa_serial_get_tsa()
226 static bool tsa_is_qe(const struct tsa *tsa) in tsa_is_qe() argument
[all …]
Dtsa.h3 * TSA management
25 /* Connect and disconnect the TSA serial */
DKconfig37 tristate "CPM/QE TSA support"
42 Freescale CPM/QE Time Slot Assigner (TSA)
Dqmc.c26 #include "tsa.h"
98 /* TSA entry (16bit entry in TSATRX and TSATTX) */
333 /* Retrieve info from the TSA related serial */ in qmc_chan_get_info()
810 /* Retrieve info from the TSA related serial */ in qmc_chan_setup_tsa_tx()
827 /* Retrieve info from the TSA related serial */ in qmc_chan_setup_tsa_rx()
879 dev_err(chan->qmc->dev, "chan %u: Disable tsa entries failed (%d)\n", in qmc_chan_stop_rx()
918 dev_err(chan->qmc->dev, "chan %u: Disable tsa entries failed (%d)\n", in qmc_chan_stop_tx()
970 /* Retrieve info from the TSA related serial */ in qmc_setup_chan_trnsync()
1021 dev_err(chan->qmc->dev, "chan %u: Enable tsa entries failed (%d)\n", in qmc_chan_start_rx()
1066 dev_err(chan->qmc->dev, "chan %u: Enable tsa entries failed (%d)\n", in qmc_chan_start_tx()
[all …]
Ducc_slow.c297 /* Set Tsa or NMSI mode. */ in ucc_slow_init()
298 ucc_set_qe_mux_tsa(us_info->ucc_num, us_info->tsa); in ucc_slow_init()
299 /* If NMSI (not Tsa), set Tx and Rx clock. */ in ucc_slow_init()
300 if (!us_info->tsa) { in ucc_slow_init()
Ducc_fast.c307 /* Set Tsa or NMSI mode. */ in ucc_fast_init()
308 ucc_set_qe_mux_tsa(uf_info->ucc_num, uf_info->tsa); in ucc_fast_init()
309 /* If NMSI (not Tsa), set Tx and Rx clock. */ in ucc_fast_init()
310 if (!uf_info->tsa) { in ucc_fast_init()
DMakefile7 obj-$(CONFIG_CPM_TSA) += tsa.o
/linux-6.14.4/Documentation/devicetree/bindings/soc/fsl/cpm_qe/
Dfsl,cpm1-scc-qmc.yaml14 serial controller using the same TDM physical interface routed from TSA.
40 fsl,tsa-serial:
44 - description: phandle to TSA node
47 TSA serial interface (dt-bindings/soc/cpm1-fsl,tsa.h defines these
53 Should be a phandle/number pair. The phandle to TSA node and the TSA
96 TSA to this cell.
102 TSA to this cell.
140 - fsl,tsa-serial
148 #include <dt-bindings/soc/cpm1-fsl,tsa.h>
162 fsl,tsa-serial = <&tsa FSL_CPM_TSA_SCC4>;
[all …]
Dfsl,qe-ucc-qmc.yaml14 serial controller using the same TDM physical interface routed from TSA.
37 fsl,tsa-serial:
41 - description: phandle to TSA node
44 TSA serial interface (dt-bindings/soc/qe-fsl,tsa.h defines these
52 Should be a phandle/number pair. The phandle to TSA node and the TSA
108 TSA to this cell.
114 TSA to this cell.
144 - fsl,tsa-serial
152 #include <dt-bindings/soc/qe-fsl,tsa.h>
166 fsl,tsa-serial = <&tsa FSL_QE_TSA_UCC4>;
[all …]
Dfsl,cpm1-tsa.yaml4 $id: http://devicetree.org/schemas/soc/fsl/cpm_qe/fsl,cpm1-tsa.yaml#
7 title: PowerQUICC CPM Time-slot assigner (TSA) controller
13 The TSA is the time-slot assigner that can be found on some PowerQUICC SoC.
21 - fsl,mpc885-tsa
22 - fsl,mpc866-tsa
23 - const: fsl,cpm1-tsa
128 (dt-bindings/soc/cpm1-fsl,tsa.h defines these values)
174 #include <dt-bindings/soc/cpm1-fsl,tsa.h>
176 tsa@ae0 {
177 compatible = "fsl,mpc885-tsa", "fsl,cpm1-tsa";
Dfsl,qe-tsa.yaml4 $id: http://devicetree.org/schemas/soc/fsl/cpm_qe/fsl,qe-tsa.yaml#
7 title: PowerQUICC QE Time-slot assigner (TSA) controller
13 The TSA is the time-slot assigner that can be found on some PowerQUICC SoC.
21 - fsl,mpc8321-tsa
22 - const: fsl,qe-tsa
133 (dt-bindings/soc/qe-fsl,tsa.h defines these values)
179 #include <dt-bindings/soc/qe-fsl,tsa.h>
181 tsa@ae0 {
182 compatible = "fsl,mpc8321-tsa", "fsl,qe-tsa";
/linux-6.14.4/drivers/net/ethernet/intel/ixgbevf/
Dipsec.c349 struct tx_sa tsa; in ixgbevf_ipsec_add_sa() local
359 memset(&tsa, 0, sizeof(tsa)); in ixgbevf_ipsec_add_sa()
360 tsa.used = true; in ixgbevf_ipsec_add_sa()
361 tsa.xs = xs; in ixgbevf_ipsec_add_sa()
364 tsa.encrypt = xs->ealg || xs->aead; in ixgbevf_ipsec_add_sa()
366 ret = ixgbevf_ipsec_parse_proto_keys(xs, tsa.key, &tsa.salt); in ixgbevf_ipsec_add_sa()
369 memset(&tsa, 0, sizeof(tsa)); in ixgbevf_ipsec_add_sa()
376 tsa.pfsa = ret; in ixgbevf_ipsec_add_sa()
379 memcpy(&ipsec->tx_tbl[sa_idx], &tsa, sizeof(tsa)); in ixgbevf_ipsec_add_sa()
471 struct tx_sa *tsa; in ixgbevf_ipsec_tx() local
[all …]
/linux-6.14.4/drivers/net/ethernet/intel/ixgbe/
Dixgbe_ipsec.c706 struct tx_sa tsa; in ixgbe_ipsec_add_sa() local
720 memset(&tsa, 0, sizeof(tsa)); in ixgbe_ipsec_add_sa()
721 tsa.used = true; in ixgbe_ipsec_add_sa()
722 tsa.xs = xs; in ixgbe_ipsec_add_sa()
725 tsa.encrypt = xs->ealg || xs->aead; in ixgbe_ipsec_add_sa()
727 ret = ixgbe_ipsec_parse_proto_keys(xs, tsa.key, &tsa.salt); in ixgbe_ipsec_add_sa()
730 memset(&tsa, 0, sizeof(tsa)); in ixgbe_ipsec_add_sa()
735 memcpy(&ipsec->tx_tbl[sa_idx], &tsa, sizeof(tsa)); in ixgbe_ipsec_add_sa()
737 ixgbe_ipsec_set_tx_sa(hw, sa_idx, tsa.key, tsa.salt); in ixgbe_ipsec_add_sa()
1035 struct tx_sa *tsa; in ixgbe_ipsec_vf_del_sa() local
[all …]
/linux-6.14.4/arch/s390/include/asm/
Dfcx.h81 * struct tsa_iostat - I/O-Status Transport-Status Area (IO-Stat TSA)
99 * struct tsa_ddpcs - Device-Detected-Program-Check Transport-Status Area (DDPC TSA)
116 * struct tsa_intrg - Interrogate Transport-Status Area (Intrg. TSA)
160 * @tsa: Transport-Status-Area
172 } __attribute__ ((packed)) tsa; member
/linux-6.14.4/drivers/net/wan/
Dfsl_ucc_hdlc.c41 .tsa = 0,
96 if (priv->tsa) { in uhdlc_init()
97 uf_info->tsa = 1; in uhdlc_init()
139 if (priv->tsa) in uhdlc_init()
729 if (priv->tsa) in uhdlc_open()
823 if (priv->tsa) in uhdlc_close()
973 if (priv->tsa) in uhdlc_resume()
1030 if (priv->tsa) in uhdlc_resume()
1188 uhdlc_priv->tsa = of_property_read_bool(np, "fsl,tdm-interface"); in ucc_hdlc_probe()
1192 if (uhdlc_priv->tsa == 1) { in ucc_hdlc_probe()
[all …]
Dfsl_ucc_hdlc.h74 u16 tsa; member
/linux-6.14.4/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_dcb.h112 u8 tsa[8]; /* TSA Algorithm[0..7] */ member
/linux-6.14.4/drivers/net/netdevsim/
Dipsec.c241 struct nsim_sa *tsa; in nsim_ipsec_tx() local
267 tsa = &ipsec->sa[sa_idx]; in nsim_ipsec_tx()
268 if (unlikely(!tsa->used)) { in nsim_ipsec_tx()
/linux-6.14.4/drivers/net/ethernet/broadcom/bnxt/
Dbnxt_dcb.c117 cos2bw.tsa = in bnxt_hwrm_queue_cos2bw_cfg()
121 cos2bw.tsa = in bnxt_hwrm_queue_cos2bw_cfg()
135 req->queue_id0_tsa_assign = cos2bw.tsa; in bnxt_hwrm_queue_cos2bw_cfg()
170 cos2bw.tsa = resp->queue_id0_tsa_assign; in bnxt_hwrm_queue_cos2bw_qcfg()
181 if (cos2bw.tsa == in bnxt_hwrm_queue_cos2bw_qcfg()
Dbnxt_dcb.h30 u8 tsa;
/linux-6.14.4/drivers/net/ethernet/amd/xgbe/
Dxgbe-dcb.c155 "TC%u: tx_bw=%hhu, rx_bw=%hhu, tsa=%hhu\n", i, in xgbe_dcb_ieee_setets()
174 "unsupported TSA algorithm (%hhu)\n", in xgbe_dcb_ieee_setets()
/linux-6.14.4/Documentation/devicetree/bindings/media/
Dstih407-c8sectpfe.txt72 /* tsin0 is TSA on NIMA */
/linux-6.14.4/drivers/net/ethernet/qlogic/qlcnic/
Dqlcnic_dcb.c690 u8 i, tsa, bw_per; in qlcnic_dcb_fill_cee_pg_params() local
698 tsa = QLC_DCB_GET_TSA_PG(each->pg_tsa_map[0], i); in qlcnic_dcb_fill_cee_pg_params()
701 tsa = QLC_DCB_GET_TSA_PG(each->pg_tsa_map[1], i); in qlcnic_dcb_fill_cee_pg_params()
705 pg_cfg->tsa_type = tsa; in qlcnic_dcb_fill_cee_pg_params()
/linux-6.14.4/drivers/net/ethernet/intel/ice/
Dice_dcb.h65 /* Defines for IEEE TSA types */
/linux-6.14.4/arch/arm/boot/dts/st/
Dstihxxx-b2120.dtsi176 /* tsin0 is TSA on NIMA */

123