WILC1000 is an IEEE 802.11 b/g/n IoT link controller module. The WILC1000 connects to Microchip AVR/SMART MCUs, SMART MPUs, and other processors with minimal resource requirements with a simple SPI/SDIO-to-Wi-Fi interface. WILC1000 driver has been part of staging for few years. With contributions from the community, it has improved significantly. Full driver review has helped in achieving the current state. The details for those reviews are captured in 1 & 2. [1]. https://lore.kernel.org/linux-wireless/1537957525-11467-1-git-send-email-ajay.kathat@microchip.com/ [2]. https://lore.kernel.org/linux-wireless/1562896697-8002-1-git-send-email-ajay.kathat@microchip.com/ Signed-off-by: Ajay Singh <ajay.kathat@microchip.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
30 lines
1.2 KiB
C
30 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2012 - 2018 Microchip Technology Inc., and its subsidiaries.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef WILC_CFG80211_H
|
|
#define WILC_CFG80211_H
|
|
#include "netdev.h"
|
|
|
|
struct wiphy *wilc_cfg_alloc(void);
|
|
int wilc_cfg80211_init(struct wilc **wilc, struct device *dev, int io_type,
|
|
const struct wilc_hif_func *ops);
|
|
struct wilc *wilc_create_wiphy(struct device *dev);
|
|
void wilc_deinit_host_int(struct net_device *net);
|
|
int wilc_init_host_int(struct net_device *net);
|
|
void wilc_wfi_monitor_rx(struct net_device *mon_dev, u8 *buff, u32 size);
|
|
struct wilc_vif *wilc_netdev_interface(struct wilc *wl, const char *name,
|
|
enum nl80211_iftype type);
|
|
void wilc_wfi_deinit_mon_interface(struct wilc *wl, bool rtnl_locked);
|
|
struct net_device *wilc_wfi_init_mon_interface(struct wilc *wl,
|
|
const char *name,
|
|
struct net_device *real_dev);
|
|
void wilc_update_mgmt_frame_registrations(struct wiphy *wiphy,
|
|
struct wireless_dev *wdev,
|
|
struct mgmt_frame_regs *upd);
|
|
struct wilc_vif *wilc_get_interface(struct wilc *wl);
|
|
struct wilc_vif *wilc_get_wl_to_vif(struct wilc *wl);
|
|
void wlan_deinit_locks(struct wilc *wilc);
|
|
#endif
|