Home
last modified time | relevance | path

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

/linux/drivers/net/wireless/realtek/rtl818x/rtl8180/
H A Dgrf5101.c36 u32 phy_config; in write_grf5101() local
38 phy_config = grf5101_encode[(data >> 8) & 0xF]; in write_grf5101()
39 phy_config |= grf5101_encode[(data >> 4) & 0xF] << 4; in write_grf5101()
40 phy_config |= grf5101_encode[data & 0xF] << 8; in write_grf5101()
41 phy_config |= grf5101_encode[(addr >> 1) & 0xF] << 12; in write_grf5101()
42 phy_config |= (addr & 1) << 16; in write_grf5101()
43 phy_config |= grf5101_encode[(data & 0xf000) >> 12] << 24; in write_grf5101()
46 phy_config |= 0x90000000; in write_grf5101()
49 (__le32 __iomem *) &priv->map->RFPinsOutput, phy_config); in write_grf5101()
H A Dmax2820.c45 u32 phy_config; in write_max2820() local
47 phy_config = 0x90 + (data & 0xf); in write_max2820()
48 phy_config <<= 16; in write_max2820()
49 phy_config += addr; in write_max2820()
50 phy_config <<= 8; in write_max2820()
51 phy_config += (data >> 4) & 0xff; in write_max2820()
54 (__le32 __iomem *) &priv->map->RFPinsOutput, phy_config); in write_max2820()
H A Dsa2400.c46 u32 phy_config; in write_sa2400() local
49 phy_config = 0xb0000000; in write_sa2400()
51 phy_config |= ((u32)(addr & 0xf)) << 24; in write_sa2400()
52 phy_config |= data & 0xffffff; in write_sa2400()
55 (__le32 __iomem *) &priv->map->RFPinsOutput, phy_config); in write_sa2400()
/linux/drivers/phy/freescale/
H A Dphy-fsl-samsung-hdmi.c49 struct phy_config { struct
59 static struct phy_config calculated_phy_pll_cfg = { argument
65 static const struct phy_config phy_pll_cfg[] = {
319 const struct phy_config *cur_cfg;
330 const struct phy_config *cfg) in fsl_samsung_hdmi_phy_configure_pll_lock_det()
454 const struct phy_config *cfg) in fsl_samsung_hdmi_phy_configure()
504 static const struct phy_config *fsl_samsung_hdmi_phy_lookup_rate(unsigned long rate) in fsl_samsung_hdmi_phy_lookup_rate()
523 static void fsl_samsung_hdmi_calculate_phy(struct phy_config *cal_phy, unsigned long rate, in fsl_samsung_hdmi_calculate_phy()
534 const struct phy_config *fsl_samsung_hdmi_phy_find_settings(struct fsl_samsung_hdmi_phy *phy, in fsl_samsung_hdmi_phy_find_settings()
537 const struct phy_config *fract_div_phy; in fsl_samsung_hdmi_phy_find_settings()
[all …]
/linux/drivers/net/wireless/intel/iwlwifi/mld/
H A Dphy.c162 u32 phy_config = ~(FW_PHY_CFG_TX_CHAIN | in iwl_mld_get_phy_config() local
167 phy_config |= valid_tx_ant << FW_PHY_CFG_TX_CHAIN_POS | in iwl_mld_get_phy_config()
170 return mld->fw->phy_config & phy_config; in iwl_mld_get_phy_config()
/linux/tools/firewire/
H A Dnosy-dump.c767 if (!pp->phy_config.set_root && !pp->phy_config.set_gap_count) { in print_packet()
768 printf("ext phy config: phy_id=%02x", pp->phy_config.root_id); in print_packet()
771 if (pp->phy_config.set_root) in print_packet()
772 printf(" set_root_id=%02x", pp->phy_config.root_id); in print_packet()
773 if (pp->phy_config.set_gap_count) in print_packet()
774 printf(" set_gap_count=%u", pp->phy_config.gap_count); in print_packet()
H A Dnosy-dump.h30 } phy_config; member
/linux/drivers/gpu/drm/ingenic/
H A Dingenic-dw-hdmi.c63 .phy_config = ingenic_phy_config,
/linux/drivers/gpu/drm/rockchip/
H A Ddw_hdmi-rockchip.c444 .phy_config = rockchip_phy_config,
481 .phy_config = rockchip_phy_config,
495 .phy_config = rockchip_phy_config,
/linux/drivers/net/ethernet/marvell/prestera/
H A Dprestera.h157 struct phylink_config phy_config; member
/linux/drivers/gpu/drm/sun4i/
H A Dsun8i_hdmi_phy.c586 plat_data->phy_config = variant->phy_cfg; in sun8i_hdmi_phy_set_ops()
/linux/drivers/net/wireless/intel/iwlwifi/
H A Diwl-drv.c1023 drv->fw.phy_config = le32_to_cpup((const __le32 *)tlv_data); in iwl_parse_tlv_firmware()
1024 drv->fw.valid_tx_ant = (drv->fw.phy_config & in iwl_parse_tlv_firmware()
1027 drv->fw.valid_rx_ant = (drv->fw.phy_config & in iwl_parse_tlv_firmware()
/linux/drivers/net/ethernet/intel/ice/
H A Dice_common.c6277 ldo->phy_config = (buf & ICE_LINK_OVERRIDE_PHY_CFG_M) >> in ice_get_link_default_override()