• Home
  • Raw
  • Download

Lines Matching refs:selected_phys

674 	u32 selected_phys = 0;  in get_selected_phys()  local
677 selected_phys |= MGMT_PHY_BR_1M_1SLOT; in get_selected_phys()
680 selected_phys |= MGMT_PHY_BR_1M_3SLOT; in get_selected_phys()
683 selected_phys |= MGMT_PHY_BR_1M_5SLOT; in get_selected_phys()
687 selected_phys |= MGMT_PHY_EDR_2M_1SLOT; in get_selected_phys()
691 selected_phys |= MGMT_PHY_EDR_2M_3SLOT; in get_selected_phys()
695 selected_phys |= MGMT_PHY_EDR_2M_5SLOT; in get_selected_phys()
699 selected_phys |= MGMT_PHY_EDR_3M_1SLOT; in get_selected_phys()
703 selected_phys |= MGMT_PHY_EDR_3M_3SLOT; in get_selected_phys()
707 selected_phys |= MGMT_PHY_EDR_3M_5SLOT; in get_selected_phys()
714 selected_phys |= MGMT_PHY_LE_1M_TX; in get_selected_phys()
717 selected_phys |= MGMT_PHY_LE_1M_RX; in get_selected_phys()
720 selected_phys |= MGMT_PHY_LE_2M_TX; in get_selected_phys()
723 selected_phys |= MGMT_PHY_LE_2M_RX; in get_selected_phys()
726 selected_phys |= MGMT_PHY_LE_CODED_TX; in get_selected_phys()
729 selected_phys |= MGMT_PHY_LE_CODED_RX; in get_selected_phys()
732 return selected_phys; in get_selected_phys()
3327 rp.selected_phys = cpu_to_le32(get_selected_phys(hdev)); in get_phy_configuration()
3342 ev.selected_phys = cpu_to_le32(get_selected_phys(hdev)); in mgmt_phy_configuration_changed()
3386 u32 selected_phys, configurable_phys, supported_phys, unconfigure_phys; in set_phy_configuration() local
3395 selected_phys = __le32_to_cpu(cp->selected_phys); in set_phy_configuration()
3397 if (selected_phys & ~supported_phys) in set_phy_configuration()
3404 if ((selected_phys & unconfigure_phys) != unconfigure_phys) in set_phy_configuration()
3409 if (selected_phys == get_selected_phys(hdev)) in set_phy_configuration()
3430 if (selected_phys & MGMT_PHY_BR_1M_3SLOT) in set_phy_configuration()
3435 if (selected_phys & MGMT_PHY_BR_1M_5SLOT) in set_phy_configuration()
3440 if (selected_phys & MGMT_PHY_EDR_2M_1SLOT) in set_phy_configuration()
3445 if (selected_phys & MGMT_PHY_EDR_2M_3SLOT) in set_phy_configuration()
3450 if (selected_phys & MGMT_PHY_EDR_2M_5SLOT) in set_phy_configuration()
3455 if (selected_phys & MGMT_PHY_EDR_3M_1SLOT) in set_phy_configuration()
3460 if (selected_phys & MGMT_PHY_EDR_3M_3SLOT) in set_phy_configuration()
3465 if (selected_phys & MGMT_PHY_EDR_3M_5SLOT) in set_phy_configuration()
3475 if ((selected_phys & MGMT_PHY_LE_MASK) == in set_phy_configuration()
3498 if (!(selected_phys & MGMT_PHY_LE_TX_MASK)) in set_phy_configuration()
3501 if (!(selected_phys & MGMT_PHY_LE_RX_MASK)) in set_phy_configuration()
3504 if (selected_phys & MGMT_PHY_LE_1M_TX) in set_phy_configuration()
3507 if (selected_phys & MGMT_PHY_LE_2M_TX) in set_phy_configuration()
3510 if (selected_phys & MGMT_PHY_LE_CODED_TX) in set_phy_configuration()
3513 if (selected_phys & MGMT_PHY_LE_1M_RX) in set_phy_configuration()
3516 if (selected_phys & MGMT_PHY_LE_2M_RX) in set_phy_configuration()
3519 if (selected_phys & MGMT_PHY_LE_CODED_RX) in set_phy_configuration()