Searched refs:phy_config (Results 1 - 22 of 22) sorted by relevance

/linux-master/drivers/net/wireless/realtek/rtl818x/rtl8180/
H A Dmax2820.c45 u32 phy_config; local
47 phy_config = 0x90 + (data & 0xf);
48 phy_config <<= 16;
49 phy_config += addr;
50 phy_config <<= 8;
51 phy_config += (data >> 4) & 0xff;
54 (__le32 __iomem *) &priv->map->RFPinsOutput, phy_config); local
H A Dgrf5101.c36 u32 phy_config; local
38 phy_config = grf5101_encode[(data >> 8) & 0xF];
39 phy_config |= grf5101_encode[(data >> 4) & 0xF] << 4;
40 phy_config |= grf5101_encode[data & 0xF] << 8;
41 phy_config |= grf5101_encode[(addr >> 1) & 0xF] << 12;
42 phy_config |= (addr & 1) << 16;
43 phy_config |= grf5101_encode[(data & 0xf000) >> 12] << 24;
46 phy_config |= 0x90000000;
49 (__le32 __iomem *) &priv->map->RFPinsOutput, phy_config); local
H A Dsa2400.c46 u32 phy_config; local
49 phy_config = 0xb0000000;
51 phy_config |= ((u32)(addr & 0xf)) << 24;
52 phy_config |= data & 0xffffff;
55 (__le32 __iomem *) &priv->map->RFPinsOutput, phy_config); local
/linux-master/drivers/gpu/drm/ingenic/
H A Dingenic-dw-hdmi.c63 .phy_config = ingenic_phy_config,
/linux-master/drivers/gpu/drm/imx/ipuv3/
H A Ddw_hdmi-imx.c169 .phy_config = imx_phy_config,
176 .phy_config = imx_phy_config,
/linux-master/drivers/gpu/drm/rockchip/
H A Ddw_hdmi-rockchip.c455 .phy_config = rockchip_phy_config,
472 .phy_config = rockchip_phy_config,
492 .phy_config = rockchip_phy_config,
510 .phy_config = rockchip_phy_config,
523 .phy_config = rockchip_phy_config,
H A Dinno_hdmi.c216 struct inno_hdmi_phy_config *phy_config; local
220 phy_config = hdmi->variant->default_phy_config;
225 phy_config = &hdmi->variant->phy_configs[ret];
230 hdmi_writeb(hdmi, HDMI_PHY_PRE_EMPHASIS, phy_config->pre_emphasis);
231 hdmi_writeb(hdmi, HDMI_PHY_DRIVER, phy_config->voltage_level_control);
/linux-master/tools/firewire/
H A Dnosy-dump.c767 if (!pp->phy_config.set_root && !pp->phy_config.set_gap_count) {
768 printf("ext phy config: phy_id=%02x", pp->phy_config.root_id);
771 if (pp->phy_config.set_root)
772 printf(" set_root_id=%02x", pp->phy_config.root_id);
773 if (pp->phy_config.set_gap_count)
774 printf(" set_gap_count=%d", pp->phy_config.gap_count);
H A Dnosy-dump.h30 } phy_config; member in union:phy_packet::__anon14851
/linux-master/include/drm/bridge/
H A Ddw_hdmi.h160 const struct dw_hdmi_phy_config *phy_config; member in struct:dw_hdmi_plat_data
/linux-master/drivers/net/wireless/intel/iwlwifi/fw/
H A Dimg.h215 u32 phy_config; member in struct:iwl_fw
/linux-master/drivers/phy/rockchip/
H A Dphy-rockchip-inno-hdmi.c274 struct phy_config { struct
283 const struct phy_config *phy_cfg);
290 const struct phy_config *phy_cfg_table;
482 static const struct phy_config rk3228_phy_cfg[] = {
501 static const struct phy_config rk3328_phy_cfg[] = {
609 const struct phy_config *phy_cfg = inno->plat_data->phy_cfg_table;
1057 const struct phy_config *phy_cfg)
1172 const struct phy_config *phy_cfg)
H A Dphy-rockchip-samsung-hdptx.c271 struct phy_config *phy_cfg;
/linux-master/drivers/net/ethernet/marvell/prestera/
H A Dprestera_main.c400 port->phy_config.dev = &port->dev->dev;
401 port->phy_config.type = PHYLINK_NETDEV;
406 port->phy_config.supported_interfaces);
408 port->phy_config.supported_interfaces);
410 port->phy_config.supported_interfaces);
412 port->phy_config.supported_interfaces);
414 port->phy_config.mac_capabilities =
417 phy_link = phylink_create(&port->phy_config, fwnode,
H A Dprestera.h157 struct phylink_config phy_config; member in struct:prestera_port
/linux-master/drivers/net/wireless/intel/iwlwifi/mvm/
H A Dops.c87 u32 phy_config = iwl_mvm_get_phy_config(mvm); local
89 radio_cfg_type = (phy_config & FW_PHY_CFG_RADIO_TYPE) >>
91 radio_cfg_step = (phy_config & FW_PHY_CFG_RADIO_STEP) >>
93 radio_cfg_dash = (phy_config & FW_PHY_CFG_RADIO_DASH) >>
H A Dmvm.h1881 u32 phy_config = ~(FW_PHY_CFG_TX_CHAIN | local
1886 phy_config |= valid_tx_ant << FW_PHY_CFG_TX_CHAIN_POS |
1889 return mvm->fw->phy_config & phy_config;
/linux-master/drivers/gpu/drm/bridge/synopsys/
H A Ddw-hdmi.c1578 const struct dw_hdmi_phy_config *phy_config = pdata->phy_config; local
1591 for (; phy_config->mpixelclock != ~0UL; phy_config++)
1592 if (mpixelclock <= phy_config->mpixelclock)
1597 phy_config->mpixelclock == ~0UL)
1611 dw_hdmi_phy_i2c_write(hdmi, phy_config->term, HDMI_3D_TX_PHY_TXTERM);
1612 dw_hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr,
1614 dw_hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr,
/linux-master/drivers/net/wireless/intel/iwlwifi/
H A Diwl-drv.c926 drv->fw.phy_config = le32_to_cpup((const __le32 *)tlv_data);
927 drv->fw.valid_tx_ant = (drv->fw.phy_config &
930 drv->fw.valid_rx_ant = (drv->fw.phy_config &
/linux-master/drivers/gpu/drm/sun4i/
H A Dsun8i_hdmi_phy.c586 plat_data->phy_config = variant->phy_cfg;
/linux-master/drivers/net/ethernet/intel/ice/
H A Dice_type.h510 u8 phy_config; member in struct:ice_link_default_override_tlv
H A Dice_common.c5783 ldo->phy_config = (buf & ICE_LINK_OVERRIDE_PHY_CFG_M) >>

Completed in 325 milliseconds