halbtc8822bwifionly.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2016-2017 Realtek Corporation.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. *****************************************************************************/
  15. #include "halbt_precomp.h"
  16. void ex_hal8822b_wifi_only_hw_config(struct wifi_only_cfg *wifionlycfg)
  17. {
  18. /*BB control*/
  19. halwifionly_phy_set_bb_reg(wifionlycfg, 0x4c, 0x01800000, 0x2);
  20. /*SW control*/
  21. halwifionly_phy_set_bb_reg(wifionlycfg, 0xcb4, 0xff, 0x77);
  22. /*antenna mux switch */
  23. halwifionly_phy_set_bb_reg(wifionlycfg, 0x974, 0x300, 0x3);
  24. halwifionly_phy_set_bb_reg(wifionlycfg, 0x1990, 0x300, 0x0);
  25. halwifionly_phy_set_bb_reg(wifionlycfg, 0xcbc, 0x80000, 0x0);
  26. /*switch to WL side controller and gnt_wl gnt_bt debug signal */
  27. halwifionly_phy_set_bb_reg(wifionlycfg, 0x70, 0xff000000, 0x0e);
  28. /*gnt_wl=1 , gnt_bt=0*/
  29. halwifionly_phy_set_bb_reg(wifionlycfg, 0x1704, 0xffffffff, 0x7700);
  30. halwifionly_phy_set_bb_reg(wifionlycfg, 0x1700, 0xffffffff, 0xc00f0038);
  31. }
  32. void ex_hal8822b_wifi_only_scannotify(struct wifi_only_cfg *wifionlycfg,
  33. u8 is_5g)
  34. {
  35. hal8822b_wifi_only_switch_antenna(wifionlycfg, is_5g);
  36. }
  37. void ex_hal8822b_wifi_only_switchbandnotify(struct wifi_only_cfg *wifionlycfg,
  38. u8 is_5g)
  39. {
  40. hal8822b_wifi_only_switch_antenna(wifionlycfg, is_5g);
  41. }
  42. void hal8822b_wifi_only_switch_antenna(struct wifi_only_cfg *wifionlycfg,
  43. u8 is_5g)
  44. {
  45. if (is_5g)
  46. halwifionly_phy_set_bb_reg(wifionlycfg, 0xcbc, 0x300, 0x1);
  47. else
  48. halwifionly_phy_set_bb_reg(wifionlycfg, 0xcbc, 0x300, 0x2);
  49. }