X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=carlfw%2Finclude%2Fcarl9170.h;h=a319b2a4cb65069fe4f53d936e347f6d55851a1c;hb=8b944e7f0c1bd11fab1f1ce1862367f5e077bad0;hp=b4a7fe72f2a4a453b7fdb3a246290c4852ced8fc;hpb=03a8cf510dbef554b55403da7547607f7e326368;p=carl9170fw.git diff --git a/carlfw/include/carl9170.h b/carlfw/include/carl9170.h index b4a7fe7..a319b2a 100644 --- a/carlfw/include/carl9170.h +++ b/carlfw/include/carl9170.h @@ -69,6 +69,11 @@ enum carl9170_suspend_mode { CARL9170_AWAKE_HOST, }; +enum carl9170_phy_state { + CARL9170_PHY_OFF = 0, + CARL9170_PHY_ON +}; + typedef void (*fw_desc_callback_t)(void *, const bool); /* @@ -78,7 +83,7 @@ typedef void (*fw_desc_callback_t)(void *, const bool); struct firmware_context_struct { /* timer / clocks */ - unsigned int ticks_per_msec; + unsigned int ticks_per_usec; unsigned int counter; /* main() cycles */ /* misc */ @@ -110,10 +115,6 @@ struct firmware_context_struct { /* rx filter */ unsigned int rx_filter; - /* rx statistics */ - unsigned int rx_total; - unsigned int rx_overruns; - /* tx sequence control counters */ unsigned int sequence[CARL9170_INTF_NUM]; @@ -186,10 +187,25 @@ struct firmware_context_struct { unsigned int frequency; unsigned int ht_settings; + enum carl9170_phy_state state; struct carl9170_psm psm; #endif /* CONFIG_CARL9170FW_RADIO_FUNCTIONS */ } phy; + unsigned int tally_clock; + struct carl9170_tally_rsp tally; + unsigned int tx_time; + +#ifdef CONFIG_CARL9170FW_WOL + struct { + struct carl9170_wol_cmd cmd; + unsigned int last_beacon; + unsigned int lost_null; + unsigned int last_null; + bool wake_up; + } wol; +#endif /* CONFIG_CARL9170FW_WOL */ + #ifdef CONFIG_CARL9170FW_GPIO_INTERRUPT struct carl9170_gpio cached_gpio_state; #endif /*CONFIG_CARL9170FW_GPIO_INTERRUPT */