1 | /*
|
---|
2 | * Copyright (c) 2014 Jan Kolarik
|
---|
3 | * All rights reserved.
|
---|
4 | *
|
---|
5 | * Redistribution and use in source and binary forms, with or without
|
---|
6 | * modification, are permitted provided that the following conditions
|
---|
7 | * are met:
|
---|
8 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | /** @file ar9271.c
|
---|
30 | *
|
---|
31 | * Driver for AR9271 USB WiFi dongle.
|
---|
32 | *
|
---|
33 | */
|
---|
34 |
|
---|
35 | #include <ieee80211.h>
|
---|
36 | #include <usb/classes/classes.h>
|
---|
37 | #include <usb/dev/request.h>
|
---|
38 | #include <usb/dev/poll.h>
|
---|
39 | #include <usb/debug.h>
|
---|
40 | #include <stdio.h>
|
---|
41 | #include <ddf/interrupt.h>
|
---|
42 | #include <nic.h>
|
---|
43 | #include <macros.h>
|
---|
44 | #include "ath_usb.h"
|
---|
45 | #include "wmi.h"
|
---|
46 | #include "hw.h"
|
---|
47 | #include "ar9271.h"
|
---|
48 |
|
---|
49 | #define NAME "ar9271"
|
---|
50 | #define FIRMWARE_FILENAME "/drv/ar9271/ar9271.fw"
|
---|
51 |
|
---|
52 | const usb_endpoint_description_t usb_ar9271_out_bulk_endpoint_description = {
|
---|
53 | .transfer_type = USB_TRANSFER_BULK,
|
---|
54 | .direction = USB_DIRECTION_OUT,
|
---|
55 | .interface_class = USB_CLASS_VENDOR_SPECIFIC,
|
---|
56 | .interface_subclass = 0x0,
|
---|
57 | .interface_protocol = 0x0,
|
---|
58 | .flags = 0
|
---|
59 | };
|
---|
60 |
|
---|
61 | const usb_endpoint_description_t usb_ar9271_in_bulk_endpoint_description = {
|
---|
62 | .transfer_type = USB_TRANSFER_BULK,
|
---|
63 | .direction = USB_DIRECTION_IN,
|
---|
64 | .interface_class = USB_CLASS_VENDOR_SPECIFIC,
|
---|
65 | .interface_subclass = 0x0,
|
---|
66 | .interface_protocol = 0x0,
|
---|
67 | .flags = 0
|
---|
68 | };
|
---|
69 |
|
---|
70 | const usb_endpoint_description_t usb_ar9271_in_int_endpoint_description = {
|
---|
71 | .transfer_type = USB_TRANSFER_INTERRUPT,
|
---|
72 | .direction = USB_DIRECTION_IN,
|
---|
73 | .interface_class = USB_CLASS_VENDOR_SPECIFIC,
|
---|
74 | .interface_subclass = 0x0,
|
---|
75 | .interface_protocol = 0x0,
|
---|
76 | .flags = 0
|
---|
77 | };
|
---|
78 |
|
---|
79 | const usb_endpoint_description_t usb_ar9271_out_int_endpoint_description = {
|
---|
80 | .transfer_type = USB_TRANSFER_INTERRUPT,
|
---|
81 | .direction = USB_DIRECTION_OUT,
|
---|
82 | .interface_class = USB_CLASS_VENDOR_SPECIFIC,
|
---|
83 | .interface_subclass = 0x0,
|
---|
84 | .interface_protocol = 0x0,
|
---|
85 | .flags = 0
|
---|
86 | };
|
---|
87 |
|
---|
88 | /* Array of endpoints expected on the device, NULL terminated. */
|
---|
89 | const usb_endpoint_description_t *endpoints[] = {
|
---|
90 | &usb_ar9271_out_bulk_endpoint_description,
|
---|
91 | &usb_ar9271_in_bulk_endpoint_description,
|
---|
92 | &usb_ar9271_in_int_endpoint_description,
|
---|
93 | &usb_ar9271_out_int_endpoint_description,
|
---|
94 | NULL
|
---|
95 | };
|
---|
96 |
|
---|
97 | /* Callback when new device is to be controlled by this driver. */
|
---|
98 | static int ar9271_add_device(ddf_dev_t *);
|
---|
99 |
|
---|
100 | /* IEEE 802.11 callbacks */
|
---|
101 | static int ar9271_ieee80211_start(ieee80211_dev_t *);
|
---|
102 | static int ar9271_ieee80211_tx_handler(ieee80211_dev_t *, void *, size_t);
|
---|
103 | static int ar9271_ieee80211_set_freq(ieee80211_dev_t *, uint16_t);
|
---|
104 | static int ar9271_ieee80211_bssid_change(ieee80211_dev_t *, bool);
|
---|
105 | static int ar9271_ieee80211_key_config(ieee80211_dev_t *, ieee80211_key_config_t *,
|
---|
106 | bool);
|
---|
107 |
|
---|
108 | static driver_ops_t ar9271_driver_ops = {
|
---|
109 | .dev_add = ar9271_add_device
|
---|
110 | };
|
---|
111 |
|
---|
112 | static driver_t ar9271_driver = {
|
---|
113 | .name = NAME,
|
---|
114 | .driver_ops = &ar9271_driver_ops
|
---|
115 | };
|
---|
116 |
|
---|
117 | static ieee80211_ops_t ar9271_ieee80211_ops = {
|
---|
118 | .start = ar9271_ieee80211_start,
|
---|
119 | .tx_handler = ar9271_ieee80211_tx_handler,
|
---|
120 | .set_freq = ar9271_ieee80211_set_freq,
|
---|
121 | .bssid_change = ar9271_ieee80211_bssid_change,
|
---|
122 | .key_config = ar9271_ieee80211_key_config
|
---|
123 | };
|
---|
124 |
|
---|
125 | static ieee80211_iface_t ar9271_ieee80211_iface;
|
---|
126 |
|
---|
127 | static int ar9271_get_device_info(ddf_fun_t *, nic_device_info_t *);
|
---|
128 | static int ar9271_get_cable_state(ddf_fun_t *, nic_cable_state_t *);
|
---|
129 | static int ar9271_get_operation_mode(ddf_fun_t *, int *, nic_channel_mode_t *,
|
---|
130 | nic_role_t *);
|
---|
131 |
|
---|
132 | static nic_iface_t ar9271_ieee80211_nic_iface = {
|
---|
133 | .get_device_info = &ar9271_get_device_info,
|
---|
134 | .get_cable_state = &ar9271_get_cable_state,
|
---|
135 | .get_operation_mode = &ar9271_get_operation_mode
|
---|
136 | };
|
---|
137 |
|
---|
138 | static ddf_dev_ops_t ar9271_ieee80211_dev_ops;
|
---|
139 |
|
---|
140 | /** Get device information.
|
---|
141 | *
|
---|
142 | */
|
---|
143 | static int ar9271_get_device_info(ddf_fun_t *dev, nic_device_info_t *info)
|
---|
144 | {
|
---|
145 | assert(dev);
|
---|
146 | assert(info);
|
---|
147 |
|
---|
148 | memset(info, 0, sizeof(nic_device_info_t));
|
---|
149 |
|
---|
150 | info->vendor_id = 0x0cf3;
|
---|
151 | info->device_id = 0x9271;
|
---|
152 | str_cpy(info->vendor_name, NIC_VENDOR_MAX_LENGTH,
|
---|
153 | "Atheros Communications, Inc.");
|
---|
154 | str_cpy(info->model_name, NIC_MODEL_MAX_LENGTH,
|
---|
155 | "AR9271");
|
---|
156 |
|
---|
157 | return EOK;
|
---|
158 | }
|
---|
159 |
|
---|
160 | /** Get cable state.
|
---|
161 | *
|
---|
162 | */
|
---|
163 | static int ar9271_get_cable_state(ddf_fun_t *fun, nic_cable_state_t *state)
|
---|
164 | {
|
---|
165 | *state = NIC_CS_PLUGGED;
|
---|
166 |
|
---|
167 | return EOK;
|
---|
168 | }
|
---|
169 |
|
---|
170 | /** Get operation mode of the device.
|
---|
171 | *
|
---|
172 | */
|
---|
173 | static int ar9271_get_operation_mode(ddf_fun_t *fun, int *speed,
|
---|
174 | nic_channel_mode_t *duplex, nic_role_t *role)
|
---|
175 | {
|
---|
176 | *duplex = NIC_CM_FULL_DUPLEX;
|
---|
177 | *speed = 10;
|
---|
178 | *role = NIC_ROLE_UNKNOWN;
|
---|
179 |
|
---|
180 | return EOK;
|
---|
181 | }
|
---|
182 |
|
---|
183 | /** Set multicast frames acceptance mode.
|
---|
184 | *
|
---|
185 | */
|
---|
186 | static int ar9271_on_multicast_mode_change(nic_t *nic,
|
---|
187 | nic_multicast_mode_t mode, const nic_address_t *addr, size_t addr_cnt)
|
---|
188 | {
|
---|
189 | switch (mode) {
|
---|
190 | case NIC_MULTICAST_BLOCKED:
|
---|
191 | /* TODO */
|
---|
192 | break;
|
---|
193 | case NIC_MULTICAST_LIST:
|
---|
194 | /* TODO */
|
---|
195 | break;
|
---|
196 | case NIC_MULTICAST_PROMISC:
|
---|
197 | /* TODO */
|
---|
198 | break;
|
---|
199 | default:
|
---|
200 | return ENOTSUP;
|
---|
201 | }
|
---|
202 |
|
---|
203 | return EOK;
|
---|
204 | }
|
---|
205 |
|
---|
206 | /** Set unicast frames acceptance mode.
|
---|
207 | *
|
---|
208 | */
|
---|
209 | static int ar9271_on_unicast_mode_change(nic_t *nic, nic_unicast_mode_t mode,
|
---|
210 | const nic_address_t *addr, size_t addr_cnt)
|
---|
211 | {
|
---|
212 | switch (mode) {
|
---|
213 | case NIC_UNICAST_BLOCKED:
|
---|
214 | /* TODO */
|
---|
215 | break;
|
---|
216 | case NIC_UNICAST_DEFAULT:
|
---|
217 | /* TODO */
|
---|
218 | break;
|
---|
219 | case NIC_UNICAST_LIST:
|
---|
220 | /* TODO */
|
---|
221 | break;
|
---|
222 | case NIC_UNICAST_PROMISC:
|
---|
223 | /* TODO */
|
---|
224 | break;
|
---|
225 | default:
|
---|
226 | return ENOTSUP;
|
---|
227 | }
|
---|
228 |
|
---|
229 | return EOK;
|
---|
230 | }
|
---|
231 |
|
---|
232 | /** Set broadcast frames acceptance mode.
|
---|
233 | *
|
---|
234 | */
|
---|
235 | static int ar9271_on_broadcast_mode_change(nic_t *nic,
|
---|
236 | nic_broadcast_mode_t mode)
|
---|
237 | {
|
---|
238 | switch (mode) {
|
---|
239 | case NIC_BROADCAST_BLOCKED:
|
---|
240 | /* TODO */
|
---|
241 | break;
|
---|
242 | case NIC_BROADCAST_ACCEPTED:
|
---|
243 | /* TODO */
|
---|
244 | break;
|
---|
245 | default:
|
---|
246 | return ENOTSUP;
|
---|
247 | }
|
---|
248 |
|
---|
249 | return EOK;
|
---|
250 | }
|
---|
251 |
|
---|
252 | static bool ar9271_rx_status_error(uint8_t status)
|
---|
253 | {
|
---|
254 | return (status & AR9271_RX_ERROR_PHY) || (status & AR9271_RX_ERROR_CRC);
|
---|
255 | }
|
---|
256 |
|
---|
257 | static int ar9271_data_polling(void *arg)
|
---|
258 | {
|
---|
259 | assert(arg);
|
---|
260 |
|
---|
261 | ar9271_t *ar9271 = (ar9271_t *) arg;
|
---|
262 |
|
---|
263 | size_t buffer_size = ar9271->ath_device->data_response_length;
|
---|
264 | void *buffer = malloc(buffer_size);
|
---|
265 |
|
---|
266 | while (true) {
|
---|
267 | size_t transferred_size;
|
---|
268 | if (htc_read_data_message(ar9271->htc_device,
|
---|
269 | buffer, buffer_size, &transferred_size) == EOK) {
|
---|
270 | size_t strip_length =
|
---|
271 | sizeof(ath_usb_data_header_t) +
|
---|
272 | sizeof(htc_frame_header_t) +
|
---|
273 | sizeof(htc_rx_status_t);
|
---|
274 |
|
---|
275 | if (transferred_size < strip_length)
|
---|
276 | continue;
|
---|
277 |
|
---|
278 | ath_usb_data_header_t *data_header =
|
---|
279 | (ath_usb_data_header_t *) buffer;
|
---|
280 |
|
---|
281 | /* Invalid packet. */
|
---|
282 | if (data_header->tag != uint16_t_le2host(RX_TAG))
|
---|
283 | continue;
|
---|
284 |
|
---|
285 | htc_rx_status_t *rx_status =
|
---|
286 | (htc_rx_status_t *) ((void *) buffer +
|
---|
287 | sizeof(ath_usb_data_header_t) +
|
---|
288 | sizeof(htc_frame_header_t));
|
---|
289 |
|
---|
290 | uint16_t data_length =
|
---|
291 | uint16_t_be2host(rx_status->data_length);
|
---|
292 |
|
---|
293 | int16_t payload_length =
|
---|
294 | transferred_size - strip_length;
|
---|
295 |
|
---|
296 | if (payload_length - data_length < 0)
|
---|
297 | continue;
|
---|
298 |
|
---|
299 | if (ar9271_rx_status_error(rx_status->status))
|
---|
300 | continue;
|
---|
301 |
|
---|
302 | void *strip_buffer = buffer + strip_length;
|
---|
303 |
|
---|
304 | ieee80211_rx_handler(ar9271->ieee80211_dev,
|
---|
305 | strip_buffer,
|
---|
306 | payload_length);
|
---|
307 | }
|
---|
308 | }
|
---|
309 |
|
---|
310 | free(buffer);
|
---|
311 |
|
---|
312 | return EOK;
|
---|
313 | }
|
---|
314 |
|
---|
315 | /** IEEE 802.11 handlers.
|
---|
316 | *
|
---|
317 | */
|
---|
318 | static int ar9271_ieee80211_set_freq(ieee80211_dev_t *ieee80211_dev,
|
---|
319 | uint16_t freq)
|
---|
320 | {
|
---|
321 | assert(ieee80211_dev);
|
---|
322 |
|
---|
323 | ar9271_t *ar9271 = (ar9271_t *) ieee80211_get_specific(ieee80211_dev);
|
---|
324 |
|
---|
325 | wmi_send_command(ar9271->htc_device, WMI_DISABLE_INTR, NULL, 0, NULL);
|
---|
326 | wmi_send_command(ar9271->htc_device, WMI_DRAIN_TXQ_ALL, NULL, 0, NULL);
|
---|
327 | wmi_send_command(ar9271->htc_device, WMI_STOP_RECV, NULL, 0, NULL);
|
---|
328 |
|
---|
329 | int rc = hw_freq_switch(ar9271, freq);
|
---|
330 | if (rc != EOK) {
|
---|
331 | usb_log_error("Failed to HW switch frequency.\n");
|
---|
332 | return rc;
|
---|
333 | }
|
---|
334 |
|
---|
335 | wmi_send_command(ar9271->htc_device, WMI_START_RECV, NULL, 0, NULL);
|
---|
336 |
|
---|
337 | rc = hw_rx_init(ar9271);
|
---|
338 | if (rc != EOK) {
|
---|
339 | usb_log_error("Failed to initialize RX.\n");
|
---|
340 | return rc;
|
---|
341 | }
|
---|
342 |
|
---|
343 | uint16_t htc_mode = host2uint16_t_be(1);
|
---|
344 | wmi_send_command(ar9271->htc_device, WMI_SET_MODE,
|
---|
345 | (uint8_t *) &htc_mode, sizeof(htc_mode), NULL);
|
---|
346 | wmi_send_command(ar9271->htc_device, WMI_ENABLE_INTR, NULL, 0, NULL);
|
---|
347 |
|
---|
348 | return EOK;
|
---|
349 | }
|
---|
350 |
|
---|
351 | static int ar9271_ieee80211_bssid_change(ieee80211_dev_t *ieee80211_dev,
|
---|
352 | bool connected)
|
---|
353 | {
|
---|
354 | assert(ieee80211_dev);
|
---|
355 |
|
---|
356 | ar9271_t *ar9271 = (ar9271_t *) ieee80211_get_specific(ieee80211_dev);
|
---|
357 |
|
---|
358 | if (connected) {
|
---|
359 | nic_address_t bssid;
|
---|
360 | ieee80211_query_bssid(ieee80211_dev, &bssid);
|
---|
361 |
|
---|
362 | htc_sta_msg_t sta_msg;
|
---|
363 | memset(&sta_msg, 0, sizeof(htc_sta_msg_t));
|
---|
364 | sta_msg.is_vif_sta = 0;
|
---|
365 | sta_msg.max_ampdu =
|
---|
366 | host2uint16_t_be(1 << IEEE80211_MAX_AMPDU_FACTOR);
|
---|
367 | sta_msg.sta_index = 1;
|
---|
368 | sta_msg.vif_index = 0;
|
---|
369 | memcpy(&sta_msg.addr, bssid.address, ETH_ADDR);
|
---|
370 |
|
---|
371 | wmi_send_command(ar9271->htc_device, WMI_NODE_CREATE,
|
---|
372 | (uint8_t *) &sta_msg, sizeof(sta_msg), NULL);
|
---|
373 |
|
---|
374 | htc_rate_msg_t rate_msg;
|
---|
375 | memset(&rate_msg, 0, sizeof(htc_rate_msg_t));
|
---|
376 | rate_msg.sta_index = 1;
|
---|
377 | rate_msg.is_new = 1;
|
---|
378 | rate_msg.legacy_rates_count = ARRAY_SIZE(ieee80211bg_data_rates);
|
---|
379 | memcpy(&rate_msg.legacy_rates,
|
---|
380 | ieee80211bg_data_rates,
|
---|
381 | ARRAY_SIZE(ieee80211bg_data_rates));
|
---|
382 |
|
---|
383 | wmi_send_command(ar9271->htc_device, WMI_RC_RATE_UPDATE,
|
---|
384 | (uint8_t *) &rate_msg, sizeof(rate_msg), NULL);
|
---|
385 |
|
---|
386 | hw_set_rx_filter(ar9271, true);
|
---|
387 | } else {
|
---|
388 | uint8_t station_id = 1;
|
---|
389 | wmi_send_command(ar9271->htc_device, WMI_NODE_REMOVE,
|
---|
390 | &station_id, sizeof(station_id), NULL);
|
---|
391 |
|
---|
392 | hw_set_rx_filter(ar9271, false);
|
---|
393 | }
|
---|
394 |
|
---|
395 | hw_set_bssid(ar9271);
|
---|
396 |
|
---|
397 | return EOK;
|
---|
398 | }
|
---|
399 |
|
---|
400 | static int ar9271_ieee80211_key_config(ieee80211_dev_t *ieee80211_dev,
|
---|
401 | ieee80211_key_config_t *key_conf, bool insert)
|
---|
402 | {
|
---|
403 | assert(ieee80211_dev);
|
---|
404 |
|
---|
405 | ar9271_t *ar9271 = (ar9271_t *) ieee80211_get_specific(ieee80211_dev);
|
---|
406 |
|
---|
407 | if(insert) {
|
---|
408 | assert(key_conf);
|
---|
409 |
|
---|
410 | uint32_t key[5];
|
---|
411 | uint32_t key_type;
|
---|
412 | uint32_t reg_ptr, mic_reg_ptr;
|
---|
413 | void *data_start;
|
---|
414 |
|
---|
415 | nic_address_t bssid;
|
---|
416 | ieee80211_query_bssid(ieee80211_dev, &bssid);
|
---|
417 |
|
---|
418 | switch (key_conf->suite) {
|
---|
419 | case IEEE80211_SECURITY_SUITE_WEP40:
|
---|
420 | key_type = AR9271_KEY_TABLE_TYPE_WEP40;
|
---|
421 | break;
|
---|
422 | case IEEE80211_SECURITY_SUITE_WEP104:
|
---|
423 | key_type = AR9271_KEY_TABLE_TYPE_WEP104;
|
---|
424 | break;
|
---|
425 | case IEEE80211_SECURITY_SUITE_TKIP:
|
---|
426 | key_type = AR9271_KEY_TABLE_TYPE_TKIP;
|
---|
427 | break;
|
---|
428 | case IEEE80211_SECURITY_SUITE_CCMP:
|
---|
429 | key_type = AR9271_KEY_TABLE_TYPE_CCMP;
|
---|
430 | break;
|
---|
431 | default:
|
---|
432 | key_type = -1;
|
---|
433 | }
|
---|
434 |
|
---|
435 | uint8_t key_id =
|
---|
436 | (key_conf->flags & IEEE80211_KEY_FLAG_TYPE_PAIRWISE) ?
|
---|
437 | AR9271_STA_KEY_INDEX : key_conf->id;
|
---|
438 |
|
---|
439 | reg_ptr = AR9271_KEY_TABLE(key_id);
|
---|
440 | mic_reg_ptr = AR9271_KEY_TABLE(key_id + 64);
|
---|
441 | data_start = (void *) key_conf->data;
|
---|
442 |
|
---|
443 | key[0] = uint32_t_le2host(*((uint32_t *) data_start));
|
---|
444 | key[1] = uint16_t_le2host(*((uint16_t *) (data_start + 4)));
|
---|
445 | key[2] = uint32_t_le2host(*((uint32_t *) (data_start + 6)));
|
---|
446 | key[3] = uint16_t_le2host(*((uint16_t *) (data_start + 10)));
|
---|
447 | key[4] = uint32_t_le2host(*((uint32_t *) (data_start + 12)));
|
---|
448 |
|
---|
449 | if ((key_conf->suite == IEEE80211_SECURITY_SUITE_WEP40) ||
|
---|
450 | (key_conf->suite == IEEE80211_SECURITY_SUITE_WEP104))
|
---|
451 | key[4] &= 0xFF;
|
---|
452 |
|
---|
453 | wmi_reg_write(ar9271->htc_device, reg_ptr + 0, key[0]);
|
---|
454 | wmi_reg_write(ar9271->htc_device, reg_ptr + 4, key[1]);
|
---|
455 | wmi_reg_write(ar9271->htc_device, reg_ptr + 8, key[2]);
|
---|
456 | wmi_reg_write(ar9271->htc_device, reg_ptr + 12, key[3]);
|
---|
457 | wmi_reg_write(ar9271->htc_device, reg_ptr + 16, key[4]);
|
---|
458 | wmi_reg_write(ar9271->htc_device, reg_ptr + 20, key_type);
|
---|
459 |
|
---|
460 | uint32_t macl;
|
---|
461 | uint32_t mach;
|
---|
462 | if (key_conf->flags & IEEE80211_KEY_FLAG_TYPE_PAIRWISE) {
|
---|
463 | data_start = (void *) bssid.address;
|
---|
464 | macl = uint32_t_le2host(*((uint32_t *) data_start));
|
---|
465 | mach = uint16_t_le2host(*((uint16_t *) (data_start + 4)));
|
---|
466 | } else {
|
---|
467 | macl = 0;
|
---|
468 | mach = 0;
|
---|
469 | }
|
---|
470 |
|
---|
471 | macl >>= 1;
|
---|
472 | macl |= (mach & 1) << 31;
|
---|
473 | mach >>= 1;
|
---|
474 | mach |= 0x8000;
|
---|
475 |
|
---|
476 | wmi_reg_write(ar9271->htc_device, reg_ptr + 24, macl);
|
---|
477 | wmi_reg_write(ar9271->htc_device, reg_ptr + 28, mach);
|
---|
478 |
|
---|
479 | /* Setup MIC keys for TKIP. */
|
---|
480 | if (key_conf->suite == IEEE80211_SECURITY_SUITE_TKIP) {
|
---|
481 | uint32_t mic[5];
|
---|
482 | uint8_t *gen_mic = data_start + IEEE80211_TKIP_RX_MIC_OFFSET;
|
---|
483 | uint8_t *tx_mic;
|
---|
484 |
|
---|
485 | if (key_conf->flags & IEEE80211_KEY_FLAG_TYPE_GROUP)
|
---|
486 | tx_mic = gen_mic;
|
---|
487 | else
|
---|
488 | tx_mic = data_start + IEEE80211_TKIP_TX_MIC_OFFSET;
|
---|
489 |
|
---|
490 | mic[0] = uint32_t_le2host(*((uint32_t *) gen_mic));
|
---|
491 | mic[1] = uint16_t_le2host(*((uint16_t *) (tx_mic + 2))) & 0xFFFF;
|
---|
492 | mic[2] = uint32_t_le2host(*((uint32_t *) (gen_mic + 4)));
|
---|
493 | mic[3] = uint16_t_le2host(*((uint16_t *) tx_mic)) & 0xFFFF;
|
---|
494 | mic[4] = uint32_t_le2host(*((uint32_t *) (tx_mic + 4)));
|
---|
495 |
|
---|
496 | wmi_reg_write(ar9271->htc_device, mic_reg_ptr + 0, mic[0]);
|
---|
497 | wmi_reg_write(ar9271->htc_device, mic_reg_ptr + 4, mic[1]);
|
---|
498 | wmi_reg_write(ar9271->htc_device, mic_reg_ptr + 8, mic[2]);
|
---|
499 | wmi_reg_write(ar9271->htc_device, mic_reg_ptr + 12, mic[3]);
|
---|
500 | wmi_reg_write(ar9271->htc_device, mic_reg_ptr + 16, mic[4]);
|
---|
501 | wmi_reg_write(ar9271->htc_device, mic_reg_ptr + 20,
|
---|
502 | AR9271_KEY_TABLE_TYPE_CLR);
|
---|
503 |
|
---|
504 | wmi_reg_write(ar9271->htc_device, mic_reg_ptr + 24, 0);
|
---|
505 | wmi_reg_write(ar9271->htc_device, mic_reg_ptr + 28, 0);
|
---|
506 | }
|
---|
507 |
|
---|
508 | if (key_conf->flags & IEEE80211_KEY_FLAG_TYPE_GROUP)
|
---|
509 | ieee80211_setup_key_confirm(ieee80211_dev, true);
|
---|
510 | } else {
|
---|
511 | /* TODO: Delete keys from device */
|
---|
512 | ieee80211_setup_key_confirm(ieee80211_dev, false);
|
---|
513 | }
|
---|
514 |
|
---|
515 | return EOK;
|
---|
516 | }
|
---|
517 |
|
---|
518 | static int ar9271_ieee80211_tx_handler(ieee80211_dev_t *ieee80211_dev,
|
---|
519 | void *buffer, size_t buffer_size)
|
---|
520 | {
|
---|
521 | assert(ieee80211_dev);
|
---|
522 |
|
---|
523 | size_t complete_size;
|
---|
524 | size_t offset;
|
---|
525 | void *complete_buffer;
|
---|
526 | int endpoint;
|
---|
527 |
|
---|
528 | ar9271_t *ar9271 = (ar9271_t *) ieee80211_get_specific(ieee80211_dev);
|
---|
529 |
|
---|
530 | uint16_t frame_ctrl = *((uint16_t *) buffer);
|
---|
531 | if (ieee80211_is_data_frame(frame_ctrl)) {
|
---|
532 | offset = sizeof(htc_tx_data_header_t) +
|
---|
533 | sizeof(htc_frame_header_t);
|
---|
534 | complete_size = buffer_size + offset;
|
---|
535 | complete_buffer = malloc(complete_size);
|
---|
536 | memset(complete_buffer, 0, complete_size);
|
---|
537 |
|
---|
538 | /*
|
---|
539 | * Because we handle just station mode yet, node ID and VIF ID
|
---|
540 | * are fixed.
|
---|
541 | */
|
---|
542 | htc_tx_data_header_t *data_header =
|
---|
543 | (htc_tx_data_header_t *)
|
---|
544 | (complete_buffer + sizeof(htc_frame_header_t));
|
---|
545 | data_header->data_type = HTC_DATA_NORMAL;
|
---|
546 | data_header->node_idx = 1;
|
---|
547 | data_header->vif_idx = 0;
|
---|
548 | data_header->cookie = 0;
|
---|
549 |
|
---|
550 | if (ieee80211_query_using_key(ieee80211_dev)) {
|
---|
551 | data_header->keyix = AR9271_STA_KEY_INDEX;
|
---|
552 |
|
---|
553 | int sec_suite =
|
---|
554 | ieee80211_get_pairwise_security(ieee80211_dev);
|
---|
555 |
|
---|
556 | switch (sec_suite) {
|
---|
557 | case IEEE80211_SECURITY_SUITE_WEP40:
|
---|
558 | case IEEE80211_SECURITY_SUITE_WEP104:
|
---|
559 | data_header->key_type = AR9271_KEY_TYPE_WEP;
|
---|
560 | break;
|
---|
561 | case IEEE80211_SECURITY_SUITE_TKIP:
|
---|
562 | data_header->key_type = AR9271_KEY_TYPE_TKIP;
|
---|
563 | break;
|
---|
564 | case IEEE80211_SECURITY_SUITE_CCMP:
|
---|
565 | data_header->key_type = AR9271_KEY_TYPE_AES;
|
---|
566 | break;
|
---|
567 | }
|
---|
568 | } else {
|
---|
569 | data_header->key_type = 0;
|
---|
570 | data_header->keyix = 0xFF;
|
---|
571 | }
|
---|
572 |
|
---|
573 | endpoint = ar9271->htc_device->endpoints.data_be_endpoint;
|
---|
574 | } else {
|
---|
575 | offset = sizeof(htc_tx_management_header_t) +
|
---|
576 | sizeof(htc_frame_header_t);
|
---|
577 | complete_size = buffer_size + offset;
|
---|
578 | complete_buffer = malloc(complete_size);
|
---|
579 | memset(complete_buffer, 0, complete_size);
|
---|
580 |
|
---|
581 | /*
|
---|
582 | * Because we handle just station mode yet, node ID and VIF ID
|
---|
583 | * are fixed.
|
---|
584 | */
|
---|
585 | htc_tx_management_header_t *mgmt_header =
|
---|
586 | (htc_tx_management_header_t *)
|
---|
587 | (complete_buffer + sizeof(htc_frame_header_t));
|
---|
588 | mgmt_header->node_idx = 0;
|
---|
589 | mgmt_header->vif_idx = 0;
|
---|
590 | mgmt_header->cookie = 0;
|
---|
591 | mgmt_header->keyix = 0xFF;
|
---|
592 |
|
---|
593 | endpoint = ar9271->htc_device->endpoints.mgmt_endpoint;
|
---|
594 | }
|
---|
595 |
|
---|
596 | /* Copy IEEE802.11 data to new allocated buffer with HTC headers. */
|
---|
597 | memcpy(complete_buffer + offset, buffer, buffer_size);
|
---|
598 |
|
---|
599 | htc_send_data_message(ar9271->htc_device, complete_buffer,
|
---|
600 | complete_size, endpoint);
|
---|
601 |
|
---|
602 | free(complete_buffer);
|
---|
603 |
|
---|
604 | return EOK;
|
---|
605 | }
|
---|
606 |
|
---|
607 | static int ar9271_ieee80211_start(ieee80211_dev_t *ieee80211_dev)
|
---|
608 | {
|
---|
609 | assert(ieee80211_dev);
|
---|
610 |
|
---|
611 | ar9271_t *ar9271 = (ar9271_t *) ieee80211_get_specific(ieee80211_dev);
|
---|
612 |
|
---|
613 | wmi_send_command(ar9271->htc_device, WMI_FLUSH_RECV, NULL, 0, NULL);
|
---|
614 |
|
---|
615 | int rc = hw_reset(ar9271);
|
---|
616 | if (rc != EOK) {
|
---|
617 | usb_log_error("Failed to do HW reset.\n");
|
---|
618 | return rc;
|
---|
619 | }
|
---|
620 |
|
---|
621 | uint16_t htc_mode = host2uint16_t_be(1);
|
---|
622 | wmi_send_command(ar9271->htc_device, WMI_SET_MODE,
|
---|
623 | (uint8_t *) &htc_mode, sizeof(htc_mode), NULL);
|
---|
624 | wmi_send_command(ar9271->htc_device, WMI_ATH_INIT, NULL, 0, NULL);
|
---|
625 | wmi_send_command(ar9271->htc_device, WMI_START_RECV, NULL, 0, NULL);
|
---|
626 | wmi_send_command(ar9271->htc_device, WMI_ENABLE_INTR, NULL, 0, NULL);
|
---|
627 |
|
---|
628 | rc = hw_rx_init(ar9271);
|
---|
629 | if (rc != EOK) {
|
---|
630 | usb_log_error("Failed to initialize RX.\n");
|
---|
631 | return rc;
|
---|
632 | }
|
---|
633 |
|
---|
634 | /* Send capability message to target. */
|
---|
635 | htc_cap_msg_t cap_msg;
|
---|
636 | cap_msg.ampdu_limit = host2uint32_t_be(0xffff);
|
---|
637 | cap_msg.ampdu_subframes = 0xff;
|
---|
638 | cap_msg.enable_coex = 0;
|
---|
639 | cap_msg.tx_chainmask = 0x1;
|
---|
640 |
|
---|
641 | wmi_send_command(ar9271->htc_device, WMI_TARGET_IC_UPDATE,
|
---|
642 | (uint8_t *) &cap_msg, sizeof(cap_msg), NULL);
|
---|
643 |
|
---|
644 | rc = htc_init_new_vif(ar9271->htc_device);
|
---|
645 | if (rc != EOK) {
|
---|
646 | usb_log_error("Failed to initialize new VIF.\n");
|
---|
647 | return rc;
|
---|
648 | }
|
---|
649 |
|
---|
650 | /* Add data polling fibril. */
|
---|
651 | fid_t fibril = fibril_create(ar9271_data_polling, ar9271);
|
---|
652 | if (fibril == 0)
|
---|
653 | return ENOMEM;
|
---|
654 |
|
---|
655 | fibril_add_ready(fibril);
|
---|
656 |
|
---|
657 | ar9271->starting_up = false;
|
---|
658 | ieee80211_set_ready(ieee80211_dev, true);
|
---|
659 |
|
---|
660 | usb_log_info("Device fully initialized.\n");
|
---|
661 |
|
---|
662 | return EOK;
|
---|
663 | }
|
---|
664 |
|
---|
665 | static int ar9271_init(ar9271_t *ar9271, usb_device_t *usb_device)
|
---|
666 | {
|
---|
667 | ar9271->starting_up = true;
|
---|
668 | ar9271->usb_device = usb_device;
|
---|
669 |
|
---|
670 | fibril_mutex_initialize(&ar9271->ar9271_lock);
|
---|
671 |
|
---|
672 | ar9271->ath_device = calloc(1, sizeof(ath_t));
|
---|
673 | if (!ar9271->ath_device) {
|
---|
674 | usb_log_error("Failed to allocate memory for ath device "
|
---|
675 | "structure.\n");
|
---|
676 | return ENOMEM;
|
---|
677 | }
|
---|
678 |
|
---|
679 | int rc = ath_usb_init(ar9271->ath_device, usb_device);
|
---|
680 | if (rc != EOK) {
|
---|
681 | free(ar9271->ath_device);
|
---|
682 | usb_log_error("Failed to initialize ath device.\n");
|
---|
683 | return rc;
|
---|
684 | }
|
---|
685 |
|
---|
686 | /* IEEE 802.11 framework structure initialization. */
|
---|
687 | ar9271->ieee80211_dev = ieee80211_device_create();
|
---|
688 | if (!ar9271->ieee80211_dev) {
|
---|
689 | free(ar9271->ath_device);
|
---|
690 | usb_log_error("Failed to allocate memory for IEEE80211 device "
|
---|
691 | "structure.\n");
|
---|
692 | return ENOMEM;
|
---|
693 | }
|
---|
694 |
|
---|
695 | rc = ieee80211_device_init(ar9271->ieee80211_dev, ar9271->ddf_dev);
|
---|
696 | if (rc != EOK) {
|
---|
697 | free(ar9271->ieee80211_dev);
|
---|
698 | free(ar9271->ath_device);
|
---|
699 | usb_log_error("Failed to initialize IEEE80211 device structure."
|
---|
700 | "\n");
|
---|
701 | return rc;
|
---|
702 | }
|
---|
703 |
|
---|
704 | ieee80211_set_specific(ar9271->ieee80211_dev, ar9271);
|
---|
705 |
|
---|
706 | /* HTC device structure initialization. */
|
---|
707 | ar9271->htc_device = calloc(1, sizeof(htc_device_t));
|
---|
708 | if (!ar9271->htc_device) {
|
---|
709 | free(ar9271->ieee80211_dev);
|
---|
710 | free(ar9271->ath_device);
|
---|
711 | usb_log_error("Failed to allocate memory for HTC device "
|
---|
712 | "structure.\n");
|
---|
713 | return ENOMEM;
|
---|
714 | }
|
---|
715 |
|
---|
716 | rc = htc_device_init(ar9271->ath_device, ar9271->ieee80211_dev,
|
---|
717 | ar9271->htc_device);
|
---|
718 | if (rc != EOK) {
|
---|
719 | free(ar9271->htc_device);
|
---|
720 | free(ar9271->ieee80211_dev);
|
---|
721 | free(ar9271->ath_device);
|
---|
722 | usb_log_error("Failed to initialize HTC device structure.\n");
|
---|
723 | return rc;
|
---|
724 | }
|
---|
725 |
|
---|
726 | return EOK;
|
---|
727 | }
|
---|
728 |
|
---|
729 | /** Upload firmware to WiFi device.
|
---|
730 | *
|
---|
731 | * @param ar9271 AR9271 device structure
|
---|
732 | *
|
---|
733 | * @return EOK if succeed, negative error code otherwise
|
---|
734 | *
|
---|
735 | */
|
---|
736 | static int ar9271_upload_fw(ar9271_t *ar9271)
|
---|
737 | {
|
---|
738 | usb_device_t *usb_device = ar9271->usb_device;
|
---|
739 |
|
---|
740 | /* TODO: Set by maximum packet size in pipe. */
|
---|
741 | static const size_t MAX_TRANSFER_SIZE = 512;
|
---|
742 |
|
---|
743 | /* Load FW from file. */
|
---|
744 | FILE *fw_file = fopen(FIRMWARE_FILENAME, "rb");
|
---|
745 | if (fw_file == NULL) {
|
---|
746 | usb_log_error("Failed opening file with firmware.\n");
|
---|
747 | return ENOENT;
|
---|
748 | }
|
---|
749 |
|
---|
750 | fseek(fw_file, 0, SEEK_END);
|
---|
751 | uint64_t file_size = ftell(fw_file);
|
---|
752 | fseek(fw_file, 0, SEEK_SET);
|
---|
753 |
|
---|
754 | void *fw_data = malloc(file_size);
|
---|
755 | if (fw_data == NULL) {
|
---|
756 | fclose(fw_file);
|
---|
757 | usb_log_error("Failed allocating memory for firmware.\n");
|
---|
758 | return ENOMEM;
|
---|
759 | }
|
---|
760 |
|
---|
761 | fread(fw_data, file_size, 1, fw_file);
|
---|
762 | fclose(fw_file);
|
---|
763 |
|
---|
764 | /* Upload FW to device. */
|
---|
765 | uint64_t remain_size = file_size;
|
---|
766 | uint32_t current_addr = AR9271_FW_ADDRESS;
|
---|
767 | uint8_t *current_data = fw_data;
|
---|
768 | uint8_t *buffer = malloc(MAX_TRANSFER_SIZE);
|
---|
769 |
|
---|
770 | while (remain_size > 0) {
|
---|
771 | size_t chunk_size = min(remain_size, MAX_TRANSFER_SIZE);
|
---|
772 | memcpy(buffer, current_data, chunk_size);
|
---|
773 | int rc = usb_control_request_set(&usb_device->ctrl_pipe,
|
---|
774 | USB_REQUEST_TYPE_VENDOR,
|
---|
775 | USB_REQUEST_RECIPIENT_DEVICE,
|
---|
776 | AR9271_FW_DOWNLOAD,
|
---|
777 | uint16_host2usb(current_addr >> 8),
|
---|
778 | 0, buffer, chunk_size);
|
---|
779 | if (rc != EOK) {
|
---|
780 | free(fw_data);
|
---|
781 | free(buffer);
|
---|
782 | usb_log_error("Error while uploading firmware. "
|
---|
783 | "Error: %d\n", rc);
|
---|
784 | return rc;
|
---|
785 | }
|
---|
786 |
|
---|
787 | remain_size -= chunk_size;
|
---|
788 | current_addr += chunk_size;
|
---|
789 | current_data += chunk_size;
|
---|
790 | }
|
---|
791 |
|
---|
792 | free(fw_data);
|
---|
793 | free(buffer);
|
---|
794 |
|
---|
795 | /*
|
---|
796 | * Send command that firmware is successfully uploaded.
|
---|
797 | * This should initiate creating confirmation message in
|
---|
798 | * device side buffer which we will check in htc_check_ready function.
|
---|
799 | */
|
---|
800 | int rc = usb_control_request_set(&usb_device->ctrl_pipe,
|
---|
801 | USB_REQUEST_TYPE_VENDOR,
|
---|
802 | USB_REQUEST_RECIPIENT_DEVICE,
|
---|
803 | AR9271_FW_DOWNLOAD_COMP,
|
---|
804 | uint16_host2usb(AR9271_FW_OFFSET >> 8),
|
---|
805 | 0, NULL, 0);
|
---|
806 |
|
---|
807 | if (rc != EOK) {
|
---|
808 | usb_log_error("IO error when sending fw upload confirmation "
|
---|
809 | "message.\n");
|
---|
810 | return rc;
|
---|
811 | }
|
---|
812 |
|
---|
813 | usb_log_info("Firmware uploaded successfully.\n");
|
---|
814 |
|
---|
815 | /* Wait until firmware is ready - wait for 1 second to be sure. */
|
---|
816 | sleep(1);
|
---|
817 |
|
---|
818 | return rc;
|
---|
819 | }
|
---|
820 |
|
---|
821 | /** Create driver data structure.
|
---|
822 | *
|
---|
823 | * @param dev The device structure
|
---|
824 | *
|
---|
825 | * @return Intialized device data structure or NULL if error occured
|
---|
826 | */
|
---|
827 | static ar9271_t *ar9271_create_dev_data(ddf_dev_t *dev)
|
---|
828 | {
|
---|
829 | /* USB framework initialization. */
|
---|
830 | usb_device_t *usb_device = calloc(1, sizeof(usb_device_t));
|
---|
831 | if (usb_device == NULL) {
|
---|
832 | usb_log_error("USB device structure allocation failed.\n");
|
---|
833 | return NULL;
|
---|
834 | }
|
---|
835 |
|
---|
836 | const char *err_msg = NULL;
|
---|
837 | int rc = usb_device_init(usb_device, dev, endpoints, &err_msg);
|
---|
838 | if (rc != EOK) {
|
---|
839 | free(usb_device);
|
---|
840 | usb_log_error("Failed to create USB device: %s, "
|
---|
841 | "ERR_NUM = %d\n", err_msg, rc);
|
---|
842 | return NULL;
|
---|
843 | }
|
---|
844 |
|
---|
845 | /* AR9271 structure initialization. */
|
---|
846 | ar9271_t *ar9271 = calloc(1, sizeof(ar9271_t));
|
---|
847 | if (!ar9271) {
|
---|
848 | free(usb_device);
|
---|
849 | usb_log_error("Failed to allocate memory for device "
|
---|
850 | "structure.\n");
|
---|
851 | return NULL;
|
---|
852 | }
|
---|
853 |
|
---|
854 | ar9271->ddf_dev = dev;
|
---|
855 |
|
---|
856 | rc = ar9271_init(ar9271, usb_device);
|
---|
857 | if (rc != EOK) {
|
---|
858 | free(ar9271);
|
---|
859 | free(usb_device);
|
---|
860 | usb_log_error("Failed to initialize AR9271 structure: %d\n",
|
---|
861 | rc);
|
---|
862 | return NULL;
|
---|
863 | }
|
---|
864 |
|
---|
865 | return ar9271;
|
---|
866 | }
|
---|
867 |
|
---|
868 | /** Clean up the ar9271 device structure.
|
---|
869 | *
|
---|
870 | * @param dev The device structure.
|
---|
871 | */
|
---|
872 | static void ar9271_delete_dev_data(ar9271_t *ar9271)
|
---|
873 | {
|
---|
874 | assert(ar9271);
|
---|
875 |
|
---|
876 | // TODO
|
---|
877 | }
|
---|
878 |
|
---|
879 | /** Probe and initialize the newly added device.
|
---|
880 | *
|
---|
881 | * @param dev The device structure.
|
---|
882 | *
|
---|
883 | * @return EOK if succeed, negative error code otherwise
|
---|
884 | */
|
---|
885 | static int ar9271_add_device(ddf_dev_t *dev)
|
---|
886 | {
|
---|
887 | assert(dev);
|
---|
888 |
|
---|
889 | /* Allocate driver data for the device. */
|
---|
890 | ar9271_t *ar9271 = ar9271_create_dev_data(dev);
|
---|
891 | if (ar9271 == NULL) {
|
---|
892 | usb_log_error("Unable to allocate device softstate.\n");
|
---|
893 | return ENOMEM;
|
---|
894 | }
|
---|
895 |
|
---|
896 | usb_log_info("HelenOS AR9271 device initialized.\n");
|
---|
897 |
|
---|
898 | /* Upload AR9271 firmware. */
|
---|
899 | ar9271_upload_fw(ar9271);
|
---|
900 |
|
---|
901 | /* Initialize AR9271 HTC services. */
|
---|
902 | int rc = htc_init(ar9271->htc_device);
|
---|
903 | if (rc != EOK) {
|
---|
904 | ar9271_delete_dev_data(ar9271);
|
---|
905 | usb_log_error("HTC initialization failed.\n");
|
---|
906 | return rc;
|
---|
907 | }
|
---|
908 |
|
---|
909 | /* Initialize AR9271 HW. */
|
---|
910 | rc = hw_init(ar9271);
|
---|
911 | if (rc != EOK) {
|
---|
912 | ar9271_delete_dev_data(ar9271);
|
---|
913 | usb_log_error("HW initialization failed.\n");
|
---|
914 | return rc;
|
---|
915 | }
|
---|
916 |
|
---|
917 | /* Initialize AR9271 IEEE 802.11 framework. */
|
---|
918 | rc = ieee80211_init(ar9271->ieee80211_dev, &ar9271_ieee80211_ops,
|
---|
919 | &ar9271_ieee80211_iface, &ar9271_ieee80211_nic_iface,
|
---|
920 | &ar9271_ieee80211_dev_ops);
|
---|
921 | if (rc != EOK) {
|
---|
922 | ar9271_delete_dev_data(ar9271);
|
---|
923 | usb_log_error("Failed to initialize IEEE80211 framework.\n");
|
---|
924 | return rc;
|
---|
925 | }
|
---|
926 |
|
---|
927 | nic_set_filtering_change_handlers(nic_get_from_ddf_dev(dev),
|
---|
928 | ar9271_on_unicast_mode_change, ar9271_on_multicast_mode_change,
|
---|
929 | ar9271_on_broadcast_mode_change, NULL, NULL);
|
---|
930 |
|
---|
931 | usb_log_info("HelenOS AR9271 added device.\n");
|
---|
932 |
|
---|
933 | return EOK;
|
---|
934 | }
|
---|
935 |
|
---|
936 | int main(void)
|
---|
937 | {
|
---|
938 | log_init(NAME);
|
---|
939 |
|
---|
940 | if (nic_driver_init(NAME) != EOK)
|
---|
941 | return 1;
|
---|
942 |
|
---|
943 | usb_log_info("HelenOS AR9271 driver started.\n");
|
---|
944 |
|
---|
945 | return ddf_driver_main(&ar9271_driver);
|
---|
946 | }
|
---|