Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef WIFI_LEGACY_WIFI_HAL_H_ |
| 18 | #define WIFI_LEGACY_WIFI_HAL_H_ |
| 19 | |
| 20 | #include <functional> |
| 21 | #include <thread> |
Roshan Pius | 734fea0 | 2016-10-11 08:30:28 -0700 | [diff] [blame] | 22 | #include <vector> |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 23 | |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 24 | namespace android { |
| 25 | namespace hardware { |
| 26 | namespace wifi { |
| 27 | namespace V1_0 { |
| 28 | namespace implementation { |
Roshan Pius | 955542e | 2016-10-28 09:42:44 -0700 | [diff] [blame] | 29 | // This is in a separate namespace to prevent typename conflicts between |
| 30 | // the legacy HAL types and the HIDL interface types. |
| 31 | namespace legacy_hal { |
| 32 | // Wrap all the types defined inside the legacy HAL header files inside this |
| 33 | // namespace. |
| 34 | #include <hardware_legacy/wifi_hal.h> |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 35 | |
Roshan Pius | 0a47c18 | 2016-10-28 10:23:00 -0700 | [diff] [blame] | 36 | // APF capabilities supported by the iface. |
| 37 | struct PacketFilterCapabilities { |
| 38 | uint32_t version; |
| 39 | uint32_t max_len; |
| 40 | }; |
| 41 | |
Roshan Pius | 7cece41 | 2016-10-28 10:38:21 -0700 | [diff] [blame] | 42 | // WARNING: We don't care about the variable sized members of either |
| 43 | // |wifi_iface_stat|, |wifi_radio_stat| structures. So, using the pragma |
| 44 | // to escape the compiler warnings regarding this. |
| 45 | #pragma GCC diagnostic push |
| 46 | #pragma GCC diagnostic ignored "-Wgnu-variable-sized-type-not-at-end" |
| 47 | // The |wifi_radio_stat.tx_time_per_levels| stats is provided as a pointer in |
| 48 | // |wifi_radio_stat| structure in the legacy HAL API. Separate that out |
| 49 | // into a separate return element to avoid passing pointers around. |
| 50 | struct LinkLayerStats { |
| 51 | wifi_iface_stat iface; |
| 52 | wifi_radio_stat radio; |
| 53 | std::vector<uint32_t> radio_tx_time_per_levels; |
| 54 | }; |
| 55 | #pragma GCC diagnostic pop |
| 56 | |
Roshan Pius | 8714a3e | 2016-10-28 10:43:51 -0700 | [diff] [blame] | 57 | // The |WLAN_DRIVER_WAKE_REASON_CNT.cmd_event_wake_cnt| and |
| 58 | // |WLAN_DRIVER_WAKE_REASON_CNT.driver_fw_local_wake_cnt| stats is provided |
| 59 | // as a pointer in |WLAN_DRIVER_WAKE_REASON_CNT| structure in the legacy HAL |
| 60 | // API. Separate that out into a separate return elements to avoid passing |
| 61 | // pointers around. |
| 62 | struct WakeReasonStats { |
| 63 | WLAN_DRIVER_WAKE_REASON_CNT wake_reason_cnt; |
| 64 | std::vector<uint32_t> cmd_event_wake_cnt; |
| 65 | std::vector<uint32_t> driver_fw_local_wake_cnt; |
| 66 | }; |
| 67 | |
Roshan Pius | 76ff302 | 2016-10-28 10:33:34 -0700 | [diff] [blame] | 68 | // Full scan results contain IE info and are hence passed by reference, to |
| 69 | // preserve the variable length array member |ie_data|. Callee must not retain |
| 70 | // the pointer. |
| 71 | using on_gscan_full_result_callback = |
| 72 | std::function<void(wifi_request_id, const wifi_scan_result*, uint32_t)>; |
| 73 | // These scan results don't contain any IE info, so no need to pass by |
| 74 | // reference. |
| 75 | using on_gscan_results_callback = std::function<void( |
| 76 | wifi_request_id, const std::vector<wifi_cached_scan_results>&)>; |
| 77 | |
Roshan Pius | d8e915a | 2016-10-28 11:23:11 -0700 | [diff] [blame^] | 78 | // Callback for RTT range request results. |
| 79 | // Rtt results contain IE info and are hence passed by reference, to |
| 80 | // preserve the |LCI| and |LCR| pointers. Callee must not retain |
| 81 | // the pointer. |
| 82 | using on_rtt_results_callback = std::function<void( |
| 83 | wifi_request_id, const std::vector<const wifi_rtt_result*>&)>; |
| 84 | |
Roshan Pius | 8714a3e | 2016-10-28 10:43:51 -0700 | [diff] [blame] | 85 | // Callback for ring buffer data. |
| 86 | using on_ring_buffer_data_callback = |
| 87 | std::function<void(const std::string&, |
| 88 | const std::vector<uint8_t>&, |
| 89 | const wifi_ring_buffer_status&)>; |
| 90 | |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 91 | /** |
| 92 | * Class that encapsulates all legacy HAL interactions. |
| 93 | * This class manages the lifetime of the event loop thread used by legacy HAL. |
| 94 | */ |
| 95 | class WifiLegacyHal { |
| 96 | public: |
| 97 | WifiLegacyHal(); |
Roshan Pius | ab5c471 | 2016-10-06 14:37:15 -0700 | [diff] [blame] | 98 | // Names to use for the different types of iface. |
| 99 | std::string getApIfaceName(); |
| 100 | std::string getNanIfaceName(); |
| 101 | std::string getP2pIfaceName(); |
| 102 | std::string getStaIfaceName(); |
| 103 | |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 104 | // Initialize the legacy HAL and start the event looper thread. |
| 105 | wifi_error start(); |
| 106 | // Deinitialize the legacy HAL and stop the event looper thread. |
| 107 | wifi_error stop(const std::function<void()>& on_complete_callback); |
Roshan Pius | 4b26c83 | 2016-10-03 12:49:58 -0700 | [diff] [blame] | 108 | // Wrappers for all the functions in the legacy HAL function table. |
Roshan Pius | ab5c471 | 2016-10-06 14:37:15 -0700 | [diff] [blame] | 109 | std::pair<wifi_error, std::string> getDriverVersion(); |
| 110 | std::pair<wifi_error, std::string> getFirmwareVersion(); |
Roshan Pius | 3c86852 | 2016-10-27 12:43:49 -0700 | [diff] [blame] | 111 | std::pair<wifi_error, std::vector<uint8_t>> requestDriverMemoryDump(); |
| 112 | std::pair<wifi_error, std::vector<uint8_t>> requestFirmwareMemoryDump(); |
Roshan Pius | 0a47c18 | 2016-10-28 10:23:00 -0700 | [diff] [blame] | 113 | std::pair<wifi_error, uint32_t> getSupportedFeatureSet(); |
| 114 | // APF functions. |
| 115 | std::pair<wifi_error, PacketFilterCapabilities> getPacketFilterCapabilities(); |
| 116 | wifi_error setPacketFilter(const std::vector<uint8_t>& program); |
Roshan Pius | 76ff302 | 2016-10-28 10:33:34 -0700 | [diff] [blame] | 117 | // Gscan functions. |
| 118 | std::pair<wifi_error, wifi_gscan_capabilities> getGscanCapabilities(); |
| 119 | // These API's provides a simplified interface over the legacy Gscan API's: |
| 120 | // a) All scan events from the legacy HAL API other than the |
| 121 | // |WIFI_SCAN_FAILED| are treated as notification of results. |
| 122 | // This method then retrieves the cached scan results from the legacy |
| 123 | // HAL API and triggers the externally provided |on_results_user_callback| |
| 124 | // on success. |
| 125 | // b) |WIFI_SCAN_FAILED| scan event or failure to retrieve cached scan results |
| 126 | // triggers the externally provided |on_failure_user_callback|. |
| 127 | // c) Full scan result event triggers the externally provided |
| 128 | // |on_full_result_user_callback|. |
| 129 | wifi_error startGscan( |
| 130 | wifi_request_id id, |
| 131 | const wifi_scan_cmd_params& params, |
| 132 | const std::function<void(wifi_request_id)>& on_failure_callback, |
| 133 | const on_gscan_results_callback& on_results_callback, |
| 134 | const on_gscan_full_result_callback& on_full_result_callback); |
| 135 | wifi_error stopGscan(wifi_request_id id); |
| 136 | std::pair<wifi_error, std::vector<uint32_t>> getValidFrequenciesForGscan( |
| 137 | wifi_band band); |
Roshan Pius | 7cece41 | 2016-10-28 10:38:21 -0700 | [diff] [blame] | 138 | // Link layer stats functions. |
| 139 | wifi_error enableLinkLayerStats(bool debug); |
| 140 | wifi_error disableLinkLayerStats(); |
| 141 | std::pair<wifi_error, LinkLayerStats> getLinkLayerStats(); |
Roshan Pius | 8714a3e | 2016-10-28 10:43:51 -0700 | [diff] [blame] | 142 | // Logger/debug functions. |
| 143 | std::pair<wifi_error, uint32_t> getLoggerSupportedFeatureSet(); |
| 144 | wifi_error startPktFateMonitoring(); |
| 145 | std::pair<wifi_error, std::vector<wifi_tx_report>> getTxPktFates(); |
| 146 | std::pair<wifi_error, std::vector<wifi_rx_report>> getRxPktFates(); |
| 147 | std::pair<wifi_error, WakeReasonStats> getWakeReasonStats(); |
| 148 | wifi_error registerRingBufferCallbackHandler( |
| 149 | const on_ring_buffer_data_callback& on_data_callback); |
| 150 | std::pair<wifi_error, std::vector<wifi_ring_buffer_status>> |
| 151 | getRingBuffersStatus(); |
| 152 | wifi_error startRingBufferLogging(const std::string& ring_name, |
| 153 | uint32_t verbose_level, |
| 154 | uint32_t max_interval_sec, |
| 155 | uint32_t min_data_size); |
| 156 | wifi_error getRingBufferData(const std::string& ring_name); |
Roshan Pius | d8e915a | 2016-10-28 11:23:11 -0700 | [diff] [blame^] | 157 | // RTT functions. |
| 158 | wifi_error startRttRangeRequest( |
| 159 | wifi_request_id id, |
| 160 | const std::vector<wifi_rtt_config>& rtt_configs, |
| 161 | const on_rtt_results_callback& on_results_callback); |
| 162 | wifi_error cancelRttRangeRequest( |
| 163 | wifi_request_id id, const std::vector<std::array<uint8_t, 6>>& mac_addrs); |
| 164 | std::pair<wifi_error, wifi_rtt_capabilities> getRttCapabilities(); |
| 165 | std::pair<wifi_error, wifi_rtt_responder> getRttResponderInfo(); |
| 166 | wifi_error enableRttResponder(wifi_request_id id, |
| 167 | const wifi_channel_info& channel_hint, |
| 168 | uint32_t max_duration_secs, |
| 169 | const wifi_rtt_responder& info); |
| 170 | wifi_error disableRttResponder(wifi_request_id id); |
| 171 | wifi_error setRttLci(wifi_request_id id, const wifi_lci_information& info); |
| 172 | wifi_error setRttLcr(wifi_request_id id, const wifi_lcr_information& info); |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 173 | |
| 174 | private: |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 175 | // Retrieve the interface handle to be used for the "wlan" interface. |
| 176 | wifi_error retrieveWlanInterfaceHandle(); |
| 177 | // Run the legacy HAL event loop thread. |
| 178 | void runEventLoop(); |
Roshan Pius | 76ff302 | 2016-10-28 10:33:34 -0700 | [diff] [blame] | 179 | // Retrieve the cached gscan results to pass the results back to the external |
| 180 | // callbacks. |
| 181 | std::pair<wifi_error, std::vector<wifi_cached_scan_results>> |
| 182 | getGscanCachedResults(); |
Roshan Pius | 511cc49 | 2016-10-28 09:54:26 -0700 | [diff] [blame] | 183 | void invalidate(); |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 184 | |
| 185 | // Event loop thread used by legacy HAL. |
| 186 | std::thread event_loop_thread_; |
| 187 | // Global function table of legacy HAL. |
| 188 | wifi_hal_fn global_func_table_; |
| 189 | // Opaque handle to be used for all global operations. |
| 190 | wifi_handle global_handle_; |
| 191 | // Opaque handle to be used for all wlan0 interface specific operations. |
| 192 | wifi_interface_handle wlan_interface_handle_; |
| 193 | // Flag to indicate if we have initiated the cleanup of legacy HAL. |
| 194 | bool awaiting_event_loop_termination_; |
| 195 | }; |
| 196 | |
Roshan Pius | 955542e | 2016-10-28 09:42:44 -0700 | [diff] [blame] | 197 | } // namespace legacy_hal |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 198 | } // namespace implementation |
| 199 | } // namespace V1_0 |
| 200 | } // namespace wifi |
| 201 | } // namespace hardware |
| 202 | } // namespace android |
| 203 | |
| 204 | #endif // WIFI_LEGACY_WIFI_HAL_H_ |