Home
last modified time | relevance | path

Searched refs:fec (Results 1 – 25 of 259) sorted by relevance

1234567891011

/Linux-v5.15/drivers/net/ethernet/freescale/
Dfec_mpc52xx.c60 struct mpc52xx_fec __iomem *fec; member
105 struct mpc52xx_fec __iomem *fec = priv->fec; in mpc52xx_fec_set_paddr() local
107 out_be32(&fec->paddr1, *(u32 *)(&mac[0])); in mpc52xx_fec_set_paddr()
108 out_be32(&fec->paddr2, (*(u16 *)(&mac[4]) << 16) | FEC_PADDR2_TYPE); in mpc52xx_fec_set_paddr()
172 struct mpc52xx_fec __iomem *fec = priv->fec; in mpc52xx_fec_adjust_link() local
179 rcntrl = in_be32(&fec->r_cntrl); in mpc52xx_fec_adjust_link()
180 tcntrl = in_be32(&fec->x_cntrl); in mpc52xx_fec_adjust_link()
189 out_be32(&fec->r_cntrl, rcntrl); in mpc52xx_fec_adjust_link()
190 out_be32(&fec->x_cntrl, tcntrl); in mpc52xx_fec_adjust_link()
445 struct mpc52xx_fec __iomem *fec = priv->fec; in mpc52xx_fec_interrupt() local
[all …]
Dfec_mpc52xx_phy.c31 struct mpc52xx_fec __iomem *fec = priv->regs; in mpc52xx_fec_mdio_transfer() local
37 out_be32(&fec->ievent, FEC_IEVENT_MII); in mpc52xx_fec_mdio_transfer()
38 out_be32(&fec->mii_data, value); in mpc52xx_fec_mdio_transfer()
41 while (!(in_be32(&fec->ievent) & FEC_IEVENT_MII) && --tries) in mpc52xx_fec_mdio_transfer()
48 in_be32(&fec->mii_data) & FEC_MII_DATA_DATAMSK : 0; in mpc52xx_fec_mdio_transfer()
DMakefile6 obj-$(CONFIG_FEC) += fec.o
7 fec-objs :=fec_main.o fec_ptp.o
/Linux-v5.15/tools/testing/selftests/drivers/net/netdevsim/
Dethtool-fec.sh12 s=$($ETHTOOL --show-fec $NSIM_NETDEV | tail -2)
17 $ETHTOOL --set-fec $NSIM_NETDEV encoding auto
19 s=$($ETHTOOL --show-fec $NSIM_NETDEV | tail -2)
25 $ETHTOOL --set-fec $NSIM_NETDEV encoding $o
27 s=$($ETHTOOL --show-fec $NSIM_NETDEV | tail -2)
33 $ETHTOOL --set-fec $NSIM_NETDEV encoding $o
35 s=$($ETHTOOL --show-fec $NSIM_NETDEV | tail -2)
41 $ETHTOOL --set-fec $NSIM_NETDEV encoding $o
43 s=$($ETHTOOL --show-fec $NSIM_NETDEV | tail -2)
49 $ETHTOOL --set-fec $NSIM_NETDEV encoding rs llrs
[all …]
/Linux-v5.15/drivers/net/ethernet/freescale/fs_enet/
Dmii-fec.c54 struct fec_info* fec = bus->priv; in fs_enet_fec_mii_read() local
55 struct fec __iomem *fecp = fec->fecp; in fs_enet_fec_mii_read()
77 struct fec_info* fec = bus->priv; in fs_enet_fec_mii_write() local
78 struct fec __iomem *fecp = fec->fecp; in fs_enet_fec_mii_write()
104 struct fec_info *fec; in fs_enet_mdio_probe() local
117 fec = kzalloc(sizeof(struct fec_info), GFP_KERNEL); in fs_enet_mdio_probe()
118 if (!fec) in fs_enet_mdio_probe()
121 new_bus->priv = fec; in fs_enet_mdio_probe()
132 fec->fecp = ioremap(res.start, resource_size(&res)); in fs_enet_mdio_probe()
133 if (!fec->fecp) { in fs_enet_mdio_probe()
[all …]
Dmac-fec.c78 static int whack_reset(struct fec __iomem *fecp) in whack_reset()
100 fep->fec.fecp = of_iomap(ofdev->dev.of_node, 0); in do_pd_setup()
119 fep->fec.hthi = 0; in setup_data()
120 fep->fec.htlo = 0; in setup_data()
164 struct fec __iomem *fecp = fep->fec.fecp; in set_promiscuous_mode()
173 fep->fec.hthi = 0; in set_multicast_start()
174 fep->fec.htlo = 0; in set_multicast_start()
193 fep->fec.hthi |= csrVal; in set_multicast_one()
195 fep->fec.htlo |= csrVal; in set_multicast_one()
201 struct fec __iomem *fecp = fep->fec.fecp; in set_multicast_finish()
[all …]
DMakefile9 fs_enet-$(CONFIG_FS_ENET_HAS_FEC) += mac-fec.o
12 obj-$(CONFIG_FS_ENET_MDIO_FEC) += mii-fec.o
/Linux-v5.15/net/ethtool/
Dfec.c32 ethtool_fec_to_link_modes(u32 fec, unsigned long *link_modes, u8 *fec_auto) in ethtool_fec_to_link_modes() argument
35 *fec_auto = !!(fec & ETHTOOL_FEC_AUTO); in ethtool_fec_to_link_modes()
37 if (fec & ETHTOOL_FEC_OFF) in ethtool_fec_to_link_modes()
39 if (fec & ETHTOOL_FEC_RS) in ethtool_fec_to_link_modes()
41 if (fec & ETHTOOL_FEC_BASER) in ethtool_fec_to_link_modes()
43 if (fec & ETHTOOL_FEC_LLRS) in ethtool_fec_to_link_modes()
48 ethtool_link_modes_to_fecparam(struct ethtool_fecparam *fec, in ethtool_link_modes_to_fecparam() argument
51 memset(fec, 0, sizeof(*fec)); in ethtool_link_modes_to_fecparam()
54 fec->fec |= ETHTOOL_FEC_AUTO; in ethtool_link_modes_to_fecparam()
57 fec->fec |= ETHTOOL_FEC_OFF; in ethtool_link_modes_to_fecparam()
[all …]
/Linux-v5.15/drivers/md/
Ddm-verity-fec.c18 return v->fec && v->fec->dev; in verity_fec_is_enabled()
37 mod = do_div(offset, v->fec->rsn); in fec_interleave()
38 return offset + mod * (v->fec->rounds << v->data_dev_block_bits); in fec_interleave()
45 u8 *data, u8 *fec, int neras) in fec_decode_rs8() argument
50 for (i = 0; i < v->fec->roots; i++) in fec_decode_rs8()
51 par[i] = fec[i]; in fec_decode_rs8()
53 return decode_rs8(fio->rs, data, par, v->fec->rsn, NULL, neras, in fec_decode_rs8()
67 position = (index + rsb) * v->fec->roots; in fec_read_parity()
68 block = div64_u64_rem(position, v->fec->io_size, &rem); in fec_read_parity()
71 res = dm_bufio_read(v->fec->bufio, block, buf); in fec_read_parity()
[all …]
/Linux-v5.15/drivers/net/netdevsim/
Dethtool.c91 memcpy(fecparam, &ns->ethtool.fec, sizeof(ns->ethtool.fec)); in nsim_get_fecparam()
99 u32 fec; in nsim_set_fecparam() local
103 memcpy(&ns->ethtool.fec, fecparam, sizeof(ns->ethtool.fec)); in nsim_set_fecparam()
104 fec = fecparam->fec; in nsim_set_fecparam()
105 if (fec == ETHTOOL_FEC_AUTO) in nsim_set_fecparam()
106 fec |= ETHTOOL_FEC_OFF; in nsim_set_fecparam()
107 fec |= ETHTOOL_FEC_NONE; in nsim_set_fecparam()
108 ns->ethtool.fec.active_fec = 1 << (fls(fec) - 1); in nsim_set_fecparam()
141 ns->ethtool.fec.fec = ETHTOOL_FEC_NONE; in nsim_ethtool_init()
142 ns->ethtool.fec.active_fec = ETHTOOL_FEC_NONE; in nsim_ethtool_init()
/Linux-v5.15/arch/arm64/boot/dts/freescale/
Dimx8qxp-ss-conn.dtsi20 compatible = "fsl,imx8qxp-fec", "fsl,imx8qm-fec", "fsl,imx6sx-fec";
24 compatible = "fsl,imx8qxp-fec", "fsl,imx8qm-fec", "fsl,imx6sx-fec";
Dimx8qm-ss-conn.dtsi8 compatible = "fsl,imx8qm-fec", "fsl,imx6sx-fec";
12 compatible = "fsl,imx8qm-fec", "fsl,imx6sx-fec";
/Linux-v5.15/drivers/dma/bestcomm/
DMakefile8 bestcomm-fec-objs := fec.o bcom_fec_rx_task.o bcom_fec_tx_task.o
13 obj-$(CONFIG_PPC_BESTCOMM_FEC) += bestcomm-fec.o
/Linux-v5.15/arch/powerpc/boot/dts/
Dadder875-uboot.dts78 compatible = "fsl,mpc875-fec-mdio", "fsl,pq1-fec-mdio";
94 compatible = "fsl,mpc875-fec-enet",
95 "fsl,pq1-fec-enet";
106 compatible = "fsl,mpc875-fec-enet",
107 "fsl,pq1-fec-enet";
Dadder875-redboot.dts79 compatible = "fsl,mpc875-fec-mdio", "fsl,pq1-fec-mdio";
95 compatible = "fsl,mpc875-fec-enet",
96 "fsl,pq1-fec-enet";
107 compatible = "fsl,mpc875-fec-enet",
108 "fsl,pq1-fec-enet";
Dep88xc.dts77 compatible = "fsl,mpc885-fec-mdio", "fsl,pq1-fec-mdio";
93 compatible = "fsl,mpc885-fec-enet",
94 "fsl,pq1-fec-enet";
105 compatible = "fsl,mpc885-fec-enet",
106 "fsl,pq1-fec-enet";
Dmpc885ads.dts78 compatible = "fsl,mpc885-fec-mdio", "fsl,pq1-fec-mdio";
98 compatible = "fsl,mpc885-fec-enet",
99 "fsl,pq1-fec-enet";
110 compatible = "fsl,mpc885-fec-enet",
111 "fsl,pq1-fec-enet";
Dtqm8xx.dts100 compatible = "fsl,mpc866-fec-mdio", "fsl,pq1-fec-mdio";
111 compatible = "fsl,mpc866-fec-enet",
112 "fsl,pq1-fec-enet";
/Linux-v5.15/drivers/media/dvb-frontends/
Dcx24123.c325 static int cx24123_set_fec(struct cx24123_state *state, enum fe_code_rate fec) in cx24123_set_fec() argument
329 if (((int)fec < FEC_NONE) || (fec > FEC_AUTO)) in cx24123_set_fec()
330 fec = FEC_AUTO; in cx24123_set_fec()
333 if (fec == FEC_1_2) in cx24123_set_fec()
340 switch (fec) { in cx24123_set_fec()
387 static int cx24123_get_fec(struct cx24123_state *state, enum fe_code_rate *fec) in cx24123_get_fec() argument
398 *fec = FEC_1_2; in cx24123_get_fec()
401 *fec = FEC_2_3; in cx24123_get_fec()
404 *fec = FEC_3_4; in cx24123_get_fec()
407 *fec = FEC_4_5; in cx24123_get_fec()
[all …]
Dcx24110.c168 static int cx24110_set_fec(struct cx24110_state *state, enum fe_code_rate fec) in cx24110_set_fec() argument
178 if (fec > FEC_AUTO) in cx24110_set_fec()
179 fec = FEC_AUTO; in cx24110_set_fec()
181 if (fec == FEC_AUTO) { /* (re-)establish AutoAcq behaviour */ in cx24110_set_fec()
197 if (rate[fec] < 0) in cx24110_set_fec()
200 cx24110_writereg(state, 0x05, (cx24110_readreg(state, 0x05) & 0xf0) | rate[fec]); in cx24110_set_fec()
202 cx24110_writereg(state, 0x22, (cx24110_readreg(state, 0x22) & 0xf0) | rate[fec]); in cx24110_set_fec()
204 cx24110_writereg(state, 0x1a, g1[fec]); in cx24110_set_fec()
205 cx24110_writereg(state, 0x1b, g2[fec]); in cx24110_set_fec()
/Linux-v5.15/drivers/net/ethernet/marvell/octeontx2/nic/
Dotx2_ethtool.c228 if (pfvf->linfo.fec == OTX2_FEC_BASER) { in otx2_get_ethtool_stats()
931 const int fec[] = { in otx2_get_fecparam() local
937 if (pfvf->linfo.fec < FEC_MAX_INDEX) in otx2_get_fecparam()
938 fecparam->active_fec = fec[pfvf->linfo.fec]; in otx2_get_fecparam()
946 fecparam->fec = ETHTOOL_FEC_NONE; in otx2_get_fecparam()
948 fecparam->fec = fec[rsp->fwdata.supported_fec]; in otx2_get_fecparam()
959 int err = 0, fec = 0; in otx2_set_fecparam() local
961 switch (fecparam->fec) { in otx2_set_fecparam()
965 fec = OTX2_FEC_OFF; in otx2_set_fecparam()
968 fec = OTX2_FEC_RS; in otx2_set_fecparam()
[all …]
/Linux-v5.15/drivers/net/ethernet/marvell/prestera/
Dprestera_ethtool.c366 u8 fec, u8 type) in prestera_modes_to_eth() argument
382 if ((port_fec_caps[mode].pr_fec & fec) == 0) in prestera_modes_to_eth()
390 u64 *link_modes, u8 *fec, u8 type) in prestera_modes_from_eth() argument
414 *fec = fec_modes; in prestera_modes_from_eth()
675 fecparam->fec = 0; in prestera_ethtool_get_fecparam()
681 fecparam->fec |= port_fec_caps[mode].eth_fec; in prestera_ethtool_get_fecparam()
696 u8 fec, active; in prestera_ethtool_set_fecparam() local
709 fec = PRESTERA_PORT_FEC_MAX; in prestera_ethtool_set_fecparam()
711 if ((port_fec_caps[mode].eth_fec & fecparam->fec) && in prestera_ethtool_set_fecparam()
713 fec = mode; in prestera_ethtool_set_fecparam()
[all …]
/Linux-v5.15/drivers/mtd/ubi/
Dfastmap.c1129 struct ubi_fm_ec *fec; in ubi_write_fastmap() local
1213 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos); in ubi_write_fastmap()
1215 fec->pnum = cpu_to_be32(wl_e->pnum); in ubi_write_fastmap()
1217 fec->ec = cpu_to_be32(wl_e->ec); in ubi_write_fastmap()
1220 fm_pos += sizeof(*fec); in ubi_write_fastmap()
1224 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos); in ubi_write_fastmap()
1226 fec->pnum = cpu_to_be32(ubi->fm_next_anchor->pnum); in ubi_write_fastmap()
1228 fec->ec = cpu_to_be32(ubi->fm_next_anchor->ec); in ubi_write_fastmap()
1231 fm_pos += sizeof(*fec); in ubi_write_fastmap()
1237 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos); in ubi_write_fastmap()
[all …]
/Linux-v5.15/drivers/net/ethernet/sfc/
Dmcdi_port_common.c616 int efx_mcdi_phy_get_fecparam(struct efx_nic *efx, struct ethtool_fecparam *fec) in efx_mcdi_phy_get_fecparam() argument
637 fec->fec = mcdi_fec_caps_to_ethtool(caps, is_25g); in efx_mcdi_phy_get_fecparam()
640 fec->fec &= ~ETHTOOL_FEC_BASER; in efx_mcdi_phy_get_fecparam()
645 fec->active_fec = ETHTOOL_FEC_OFF; in efx_mcdi_phy_get_fecparam()
648 fec->active_fec = ETHTOOL_FEC_BASER; in efx_mcdi_phy_get_fecparam()
651 fec->active_fec = ETHTOOL_FEC_RS; in efx_mcdi_phy_get_fecparam()
660 fec->active_fec = ETHTOOL_FEC_AUTO; in efx_mcdi_phy_get_fecparam()
681 int efx_mcdi_phy_set_fecparam(struct efx_nic *efx, const struct ethtool_fecparam *fec) in efx_mcdi_phy_set_fecparam() argument
687 rc = ethtool_fec_supported(phy_cfg->supported_cap, fec->fec); in efx_mcdi_phy_set_fecparam()
700 caps |= ethtool_fec_caps_to_mcdi(phy_cfg->supported_cap, fec->fec); in efx_mcdi_phy_set_fecparam()
[all …]
/Linux-v5.15/arch/arm/boot/dts/
Dimx53-kp-hsc.dts15 &fec {
38 ethernet = <&fec>;

1234567891011