From 297b60346df8beafee954a0fd7c2d64f33f3b9bc Mon Sep 17 00:00:00 2001
From: hc <hc@nodka.com>
Date: Sat, 11 May 2024 01:44:05 +0000
Subject: [PATCH] rtl8211F_led_control
---
kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/dhd_linux.c | 19232 ++++++++++++++++++++++++++++++++++++++++++-----------------
1 files changed, 13,757 insertions(+), 5,475 deletions(-)
diff --git a/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/dhd_linux.c b/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/dhd_linux.c
index 0779e21..84a0f79 100644
--- a/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/dhd_linux.c
+++ b/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/dhd_linux.c
@@ -1,16 +1,17 @@
-/* SPDX-License-Identifier: GPL-2.0 */
/*
* Broadcom Dongle Host Driver (DHD), Linux-specific network interface
* Basically selected code segments from usb-cdc.c and usb-rndis.c
*
- * Copyright (C) 1999-2019, Broadcom Corporation
- *
+ * Portions of this code are copyright (c) 2022 Cypress Semiconductor Corporation
+ *
+ * Copyright (C) 1999-2017, Broadcom Corporation
+ *
* Unless you and Broadcom execute a separate written software license
* agreement governing use of this software, this software is licensed to you
* under the terms of the GNU General Public License version 2 (the "GPL"),
* available at http://www.broadcom.com/licenses/GPLv2.php, with the
* following added to such license:
- *
+ *
* As a special exception, the copyright holders of this software give you
* permission to link this software with independent modules, and to copy and
* distribute the resulting executable under terms of your choice, provided that
@@ -18,7 +19,7 @@
* the license of that module. An independent module is a module which is not
* derived from this software. The special exception does not apply to any
* modifications of the software.
- *
+ *
* Notwithstanding the above, under no circumstances may you combine this
* software in any way with any other Broadcom software provided under a license
* other than the GPL, without Broadcom's express prior written consent.
@@ -26,17 +27,21 @@
*
* <<Broadcom-WL-IPTag/Open:>>
*
- * $Id: dhd_linux.c 715966 2019-05-30 02:36:59Z $
+ * $Id: dhd_linux.c 702611 2017-06-02 06:40:15Z $
*/
#include <typedefs.h>
#include <linuxver.h>
#include <osl.h>
+#include <bcmstdlib_s.h>
#ifdef SHOW_LOGTRACE
#include <linux/syscalls.h>
#include <event_log.h>
#endif /* SHOW_LOGTRACE */
+#ifdef PCIE_FULL_DONGLE
+#include <bcmmsgbuf.h>
+#endif /* PCIE_FULL_DONGLE */
#include <linux/init.h>
#include <linux/kernel.h>
@@ -54,65 +59,70 @@
#include <linux/ip.h>
#include <linux/reboot.h>
#include <linux/notifier.h>
+#include <linux/irq.h>
#include <net/addrconf.h>
#ifdef ENABLE_ADAPTIVE_SCHED
#include <linux/cpufreq.h>
#endif /* ENABLE_ADAPTIVE_SCHED */
-
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0))
-#include <uapi/linux/sched/types.h>
-#include <linux/sched/signal.h>
-#endif
-#include <linux/uaccess.h>
+#include <linux/rtc.h>
+#include <linux/namei.h>
+#include <asm/uaccess.h>
#include <asm/unaligned.h>
+#include <dhd_linux_priv.h>
+
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0))
+#include <uapi/linux/sched/types.h>
+#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0) */
#include <epivers.h>
#include <bcmutils.h>
#include <bcmendian.h>
#include <bcmdevs.h>
+#include <bcmiov.h>
-#include <proto/ethernet.h>
-#include <proto/bcmevent.h>
-#include <proto/vlan.h>
-#include <proto/802.3.h>
+#include <ethernet.h>
+#include <bcmevent.h>
+#include <vlan.h>
+#include <802.3.h>
-#include <dngl_stats.h>
#include <dhd_linux_wq.h>
#include <dhd.h>
-#include <dhd_debug.h>
#include <dhd_linux.h>
+#include <dhd_linux_pktdump.h>
#ifdef DHD_WET
#include <dhd_wet.h>
#endif /* DHD_WET */
#ifdef PCIE_FULL_DONGLE
#include <dhd_flowring.h>
-#endif
+#endif // endif
#include <dhd_bus.h>
#include <dhd_proto.h>
#include <dhd_dbg.h>
-#ifdef CONFIG_HAS_WAKELOCK
+#include <dhd_dbg_ring.h>
+#include <dhd_debug.h>
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
#include <linux/wakelock.h>
-#endif
-#ifdef WL_CFG80211
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
+#if defined(WL_CFG80211)
#include <wl_cfg80211.h>
-#endif
+#ifdef WL_BAM
+#include <wl_bam.h>
+#endif /* WL_BAM */
+#endif /* WL_CFG80211 */
#ifdef PNO_SUPPORT
#include <dhd_pno.h>
-#endif
+#endif // endif
#ifdef RTT_SUPPORT
#include <dhd_rtt.h>
-#endif
+#endif // endif
-#ifdef CONFIG_COMPAT
-#include <linux/compat.h>
-#endif
-
-#ifdef DHD_WMF
-#include <dhd_wmf_linux.h>
-#endif /* DHD_WMF */
+#if defined(CONFIG_SOC_EXYNOS8895) || defined(CONFIG_SOC_EXYNOS9810) || \
+ defined(CONFIG_SOC_EXYNOS9820)
+#include <linux/exynos-pci-ctrl.h>
+#endif /* CONFIG_SOC_EXYNOS8895 || CONFIG_SOC_EXYNOS9810 || CONFIG_SOC_EXYNOS9820 */
#ifdef DHD_L2_FILTER
-#include <proto/bcmicmp.h>
+#include <bcmicmp.h>
#include <bcm_l2_filter.h>
#include <dhd_l2_filter.h>
#endif /* DHD_L2_FILTER */
@@ -121,102 +131,63 @@
#include <dhd_psta.h>
#endif /* DHD_PSTA */
+#ifdef AMPDU_VO_ENABLE
+#include <802.1d.h>
+#endif /* AMPDU_VO_ENABLE */
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0))
+#include <uapi/linux/sched/types.h>
+#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0) */
-#ifdef DHDTCPACK_SUPPRESS
+#if defined(DHDTCPACK_SUPPRESS) || defined(DHDTCPSYNC_FLOOD_BLK)
#include <dhd_ip.h>
-#endif /* DHDTCPACK_SUPPRESS */
+#endif /* DHDTCPACK_SUPPRESS || DHDTCPSYNC_FLOOD_BLK */
+#include <dhd_daemon.h>
+#ifdef DHD_PKT_LOGGING
+#include <dhd_pktlog.h>
+#endif /* DHD_PKT_LOGGING */
+#ifdef DHD_4WAYM4_FAIL_DISCONNECT
+#include <eapol.h>
+#endif /* DHD_4WAYM4_FAIL_DISCONNECT */
+#ifdef DHD_BANDSTEER
+#include <dhd_bandsteer.h>
+#endif /* DHD_BANDSTEER */
#ifdef DHD_DEBUG_PAGEALLOC
typedef void (*page_corrupt_cb_t)(void *handle, void *addr_corrupt, size_t len);
void dhd_page_corrupt_cb(void *handle, void *addr_corrupt, size_t len);
extern void register_page_corrupt_cb(page_corrupt_cb_t cb, void* handle);
#endif /* DHD_DEBUG_PAGEALLOC */
-static void dhd_tcp_dump(char *ifname, uint8 *pktdata, bool tx);
+#define IP_PROT_RESERVED 0xFF
-#if defined(DHD_LB)
-/* Dynamic CPU selection for load balancing */
-#include <linux/cpu.h>
-#include <linux/cpumask.h>
-#include <linux/notifier.h>
-#include <linux/workqueue.h>
-#include <asm/atomic.h>
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 10, 0))
-#include <linux/cpuhotplug.h>
-#endif
+#ifdef DHD_4WAYM4_FAIL_DISCONNECT
+static void dhd_m4_state_handler(struct work_struct * work);
+#endif /* DHD_4WAYM4_FAIL_DISCONNECT */
-#if !defined(DHD_LB_PRIMARY_CPUS)
-#define DHD_LB_PRIMARY_CPUS 0x0 /* Big CPU coreids mask */
-#endif
+#ifdef DHDTCPSYNC_FLOOD_BLK
+static void dhd_blk_tsfl_handler(struct work_struct * work);
+#endif /* DHDTCPSYNC_FLOOD_BLK */
-#if !defined(DHD_LB_SECONDARY_CPUS)
-#define DHD_LB_SECONDARY_CPUS 0xFE /* Little CPU coreids mask */
-#endif
+#ifdef WL_NATOE
+#include <dhd_linux_nfct.h>
+#endif /* WL_NATOE */
-#if (NR_CPUS > 8)
-#undef NR_CPUS
-#define NR_CPUS 8
-#endif
-#define HIST_BIN_SIZE 8
-
-#if defined(DHD_LB_RXP)
-static void dhd_rx_napi_dispatcher_fn(struct work_struct * work);
-#endif /* DHD_LB_RXP */
-
-#endif /* DHD_LB */
-
-#ifdef WLMEDIA_HTSF
-#include <linux/time.h>
-#include <htsf.h>
-
-#define HTSF_MINLEN 200 /* min. packet length to timestamp */
-#define HTSF_BUS_DELAY 150 /* assume a fix propagation in us */
-#define TSMAX 1000 /* max no. of timing record kept */
-#define NUMBIN 34
-
-static uint32 tsidx = 0;
-static uint32 htsf_seqnum = 0;
-uint32 tsfsync;
-struct timeval tsync;
-static uint32 tsport = 5010;
-
-typedef struct histo_ {
- uint32 bin[NUMBIN];
-} histo_t;
-
-#if !ISPOWEROF2(DHD_SDALIGN)
-#error DHD_SDALIGN is not a power of 2!
-#endif
-
-static histo_t vi_d1, vi_d2, vi_d3, vi_d4;
-#endif /* WLMEDIA_HTSF */
-
-#ifdef STBLINUX
-#ifdef quote_str
-#undef quote_str
-#endif /* quote_str */
-#ifdef to_str
-#undef to_str
-#endif /* quote_str */
-#define to_str(s) #s
-#define quote_str(s) to_str(s)
-
-static char *driver_target = "driver_target: "quote_str(BRCM_DRIVER_TARGET);
-#endif /* STBLINUX */
-
-
-
-#if defined(SOFTAP)
+#if defined(OEM_ANDROID) && defined(SOFTAP)
extern bool ap_cfg_running;
extern bool ap_fw_loaded;
-#endif
+#endif // endif
+
+#ifdef FIX_CPU_MIN_CLOCK
+#include <linux/pm_qos.h>
+#endif /* FIX_CPU_MIN_CLOCK */
#ifdef SET_RANDOM_MAC_SOFTAP
#ifndef CONFIG_DHD_SET_RANDOM_MAC_VAL
#define CONFIG_DHD_SET_RANDOM_MAC_VAL 0x001A11
-#endif
+#endif // endif
static u32 vendor_oui = CONFIG_DHD_SET_RANDOM_MAC_VAL;
#endif /* SET_RANDOM_MAC_SOFTAP */
+
#ifdef ENABLE_ADAPTIVE_SCHED
#define DEFAULT_CPUFREQ_THRESH 1000000 /* threshold frequency : 1000000 = 1GHz */
#ifndef CUSTOM_CPUFREQ_THRESH
@@ -227,26 +198,21 @@
/* enable HOSTIP cache update from the host side when an eth0:N is up */
#define AOE_IP_ALIAS_SUPPORT 1
-#ifdef BCM_FD_AGGR
-#include <bcm_rpc.h>
-#include <bcm_rpc_tp.h>
-#endif
#ifdef PROP_TXSTATUS
#include <wlfc_proto.h>
#include <dhd_wlfc.h>
-#endif
+#endif // endif
+#if defined(OEM_ANDROID)
#include <wl_android.h>
+#endif // endif
/* Maximum STA per radio */
#define DHD_MAX_STA 32
-
-
-
-#ifdef HOST_FLAG
-int hostsleep = 0;
-#endif
+#ifdef DHD_EVENT_LOG_FILTER
+#include <dhd_event_log_filter.h>
+#endif /* DHD_EVENT_LOG_FILTER */
const uint8 wme_fifo2ac[] = { 0, 1, 2, 3, 1, 1 };
const uint8 prio2fifo[8] = { 1, 0, 0, 1, 2, 2, 3, 3 };
@@ -265,8 +231,8 @@
static bool dhd_inetaddr_notifier_registered = FALSE;
#endif /* ARP_OFFLOAD_SUPPORT */
-#if defined(CONFIG_IPV6)
-static int dhd_inet6addr_notifier_call(struct notifier_block *this,
+#if defined(CONFIG_IPV6) && defined(IPV6_NDO_SUPPORT)
+int dhd_inet6addr_notifier_call(struct notifier_block *this,
unsigned long event, void *ptr);
static struct notifier_block dhd_inet6addr_notifier = {
.notifier_call = dhd_inet6addr_notifier_call
@@ -275,64 +241,48 @@
* created in kernel notifier link list (with 'next' pointing to itself)
*/
static bool dhd_inet6addr_notifier_registered = FALSE;
-#endif /* OEM_ANDROID && CONFIG_IPV6 */
+#endif /* CONFIG_IPV6 && IPV6_NDO_SUPPORT */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)) && defined(CONFIG_PM_SLEEP)
+#if defined(CONFIG_PM_SLEEP)
#include <linux/suspend.h>
volatile bool dhd_mmc_suspend = FALSE;
DECLARE_WAIT_QUEUE_HEAD(dhd_dpc_wait);
-#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)) && defined(CONFIG_PM_SLEEP) */
+#endif /* defined(CONFIG_PM_SLEEP) */
-#if defined(OOB_INTR_ONLY)
+#if defined(OOB_INTR_ONLY) || defined(BCMSPI_ANDROID)
extern void dhd_enable_oob_intr(struct dhd_bus *bus, bool enable);
-#endif
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27))
-static void dhd_hang_process(void *dhd_info, void *event_data, u8 event);
-#endif
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0))
+#endif /* defined(OOB_INTR_ONLY) || defined(BCMSPI_ANDROID) */
+#if defined(OEM_ANDROID)
+static void dhd_hang_process(struct work_struct *work_data);
+#endif /* #OEM_ANDROID */
MODULE_LICENSE("GPL and additional rights");
-#endif /* LinuxVer */
+MODULE_IMPORT_NS(VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver);
-#ifdef BCMDBUS
-#include <dbus.h>
-extern int dhd_bus_init(dhd_pub_t *dhdp, bool enforce_mutex);
-extern void dhd_bus_stop(struct dhd_bus *bus, bool enforce_mutex);
-extern void dhd_bus_unregister(void);
+#ifdef CONFIG_BCM_DETECT_CONSECUTIVE_HANG
+#define MAX_CONSECUTIVE_HANG_COUNTS 5
+#endif /* CONFIG_BCM_DETECT_CONSECUTIVE_HANG */
-#ifdef BCMSDIO
-extern bool dhd_bus_dpc(struct dhd_bus *bus);
-#endif /* BCMSDIO */
-#else
#include <dhd_bus.h>
-#endif /* BCMDBUS */
#ifdef DHD_ULP
#include <dhd_ulp.h>
#endif /* DHD_ULP */
-#ifdef BCM_FD_AGGR
-#define DBUS_RX_BUFFER_SIZE_DHD(net) (BCM_RPC_TP_DNGL_AGG_MAX_BYTE)
-#else
#ifndef PROP_TXSTATUS
#define DBUS_RX_BUFFER_SIZE_DHD(net) (net->mtu + net->hard_header_len + dhd->pub.hdrlen)
#else
#define DBUS_RX_BUFFER_SIZE_DHD(net) (net->mtu + net->hard_header_len + dhd->pub.hdrlen + 128)
-#endif
-#endif /* BCM_FD_AGGR */
+#endif // endif
#ifdef PROP_TXSTATUS
-extern bool dhd_wlfc_skip_fc(void);
+extern bool dhd_wlfc_skip_fc(void * dhdp, uint8 idx);
extern void dhd_wlfc_plat_init(void *dhd);
extern void dhd_wlfc_plat_deinit(void *dhd);
#endif /* PROP_TXSTATUS */
-
-#if LINUX_VERSION_CODE == KERNEL_VERSION(2, 6, 15)
-const char *
-print_tainted()
-{
- return "";
-}
-#endif /* LINUX_VERSION_CODE == KERNEL_VERSION(2, 6, 15) */
+#ifdef USE_DYNAMIC_F2_BLKSIZE
+extern uint sd_f2_blocksize;
+extern int dhdsdio_func_blocksize(dhd_pub_t *dhd, int function_num, int block_size);
+#endif /* USE_DYNAMIC_F2_BLKSIZE */
/* Linux wireless extension support */
#if defined(WL_WIRELESS_EXT)
@@ -340,45 +290,91 @@
extern wl_iw_extra_params_t g_wl_iw_params;
#endif /* defined(WL_WIRELESS_EXT) */
+#ifdef CONFIG_PARTIALSUSPEND_SLP
+#include <linux/partialsuspend_slp.h>
+#define CONFIG_HAS_EARLYSUSPEND
+#define DHD_USE_EARLYSUSPEND
+#define register_early_suspend register_pre_suspend
+#define unregister_early_suspend unregister_pre_suspend
+#define early_suspend pre_suspend
+#define EARLY_SUSPEND_LEVEL_BLANK_SCREEN 50
+#else
#if defined(CONFIG_HAS_EARLYSUSPEND) && defined(DHD_USE_EARLYSUSPEND)
#include <linux/earlysuspend.h>
#endif /* defined(CONFIG_HAS_EARLYSUSPEND) && defined(DHD_USE_EARLYSUSPEND) */
+#endif /* CONFIG_PARTIALSUSPEND_SLP */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
+#if defined(OEM_ANDROID) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
#include <linux/nl80211.h>
#endif /* OEM_ANDROID && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0)) */
-extern int dhd_get_suspend_bcn_li_dtim(dhd_pub_t *dhd);
+#if defined(PKT_FILTER_SUPPORT) && defined(APF)
+static int __dhd_apf_add_filter(struct net_device *ndev, uint32 filter_id,
+ u8* program, uint32 program_len);
+static int __dhd_apf_config_filter(struct net_device *ndev, uint32 filter_id,
+ uint32 mode, uint32 enable);
+static int __dhd_apf_delete_filter(struct net_device *ndev, uint32 filter_id);
+#endif /* PKT_FILTER_SUPPORT && APF */
-#ifdef PKT_FILTER_SUPPORT
-extern void dhd_pktfilter_offload_set(dhd_pub_t * dhd, char *arg);
-extern void dhd_pktfilter_offload_enable(dhd_pub_t * dhd, char *arg, int enable, int master_mode);
-extern void dhd_pktfilter_offload_delete(dhd_pub_t *dhd, int id);
-#endif
+#if defined(WL_CFG80211) && defined(DHD_FILE_DUMP_EVENT) && defined(DHD_FW_COREDUMP)
+static int dhd_wait_for_file_dump(dhd_pub_t *dhdp);
+#endif /* WL_CFG80211 && DHD_FILE_DUMP_EVENT && DHD_FW_COREDUMP */
-
-#ifdef READ_MACADDR
-extern int dhd_read_macaddr(struct dhd_info *dhd);
-#else
-static inline int dhd_read_macaddr(struct dhd_info *dhd) { return 0; }
-#endif
-#ifdef WRITE_MACADDR
-extern int dhd_write_macaddr(struct ether_addr *mac);
-#else
-static inline int dhd_write_macaddr(struct ether_addr *mac) { return 0; }
-#endif
-
-
-
-
-#if defined(TRAFFIC_MGMT_DWM)
-void traffic_mgmt_pkt_set_prio(dhd_pub_t *dhdp, void * pktbuf);
-#endif
+#if defined(ARGOS_NOTIFY_CB)
+/* ARGOS notifer data */
+static struct notifier_block argos_wifi; /* STA */
+static struct notifier_block argos_p2p; /* P2P */
+argos_rps_ctrl argos_rps_ctrl_data;
+#endif // endif
#ifdef DHD_FW_COREDUMP
static void dhd_mem_dump(void *dhd_info, void *event_info, u8 event);
-int dhd_os_socram_dump(struct net_device *dev, uint32 *dump_size);
#endif /* DHD_FW_COREDUMP */
+
+#ifdef DHD_LOG_DUMP
+
+struct dhd_log_dump_buf g_dld_buf[DLD_BUFFER_NUM];
+
+/* Only header for log dump buffers is stored in array
+ * header for sections like 'dhd dump', 'ext trap'
+ * etc, is not in the array, because they are not log
+ * ring buffers
+ */
+dld_hdr_t dld_hdrs[DLD_BUFFER_NUM] = {
+ {GENERAL_LOG_HDR, LOG_DUMP_SECTION_GENERAL},
+ {PRESERVE_LOG_HDR, LOG_DUMP_SECTION_PRESERVE},
+ {SPECIAL_LOG_HDR, LOG_DUMP_SECTION_SPECIAL}
+};
+
+static int dld_buf_size[DLD_BUFFER_NUM] = {
+ LOG_DUMP_GENERAL_MAX_BUFSIZE, /* DLD_BUF_TYPE_GENERAL */
+ LOG_DUMP_PRESERVE_MAX_BUFSIZE, /* DLD_BUF_TYPE_PRESERVE */
+ LOG_DUMP_SPECIAL_MAX_BUFSIZE, /* DLD_BUF_TYPE_SPECIAL */
+};
+
+static void dhd_log_dump_init(dhd_pub_t *dhd);
+static void dhd_log_dump_deinit(dhd_pub_t *dhd);
+static void dhd_log_dump(void *handle, void *event_info, u8 event);
+static int do_dhd_log_dump(dhd_pub_t *dhdp, log_dump_type_t *type);
+static int dhd_log_flush(dhd_pub_t *dhdp, log_dump_type_t *type);
+static void dhd_get_time_str(dhd_pub_t *dhdp, char *time_str, int size);
+void dhd_get_debug_dump_len(void *handle, struct sk_buff *skb, void *event_info, u8 event);
+void cfgvendor_log_dump_len(dhd_pub_t *dhdp, log_dump_type_t *type, struct sk_buff *skb);
+static void dhd_print_buf_addr(dhd_pub_t *dhdp, char *name, void *buf, unsigned int size);
+static void dhd_log_dump_buf_addr(dhd_pub_t *dhdp, log_dump_type_t *type);
+#endif /* DHD_LOG_DUMP */
+
+#ifdef DHD_PCIE_NATIVE_RUNTIMEPM
+#include <linux/workqueue.h>
+#include <linux/pm_runtime.h>
+#endif /* DHD_PCIE_NATIVE_RUNTIMEPM */
+
+#ifdef DHD_DEBUG_UART
+#include <linux/kmod.h>
+#define DHD_DEBUG_UART_EXEC_PATH "/system/bin/wldu"
+static void dhd_debug_uart_exec_rd(void *handle, void *event_info, u8 event);
+static void dhd_debug_uart_exec(dhd_pub_t *dhdp, char *cmd);
+#endif /* DHD_DEBUG_UART */
static int dhd_reboot_callback(struct notifier_block *this, unsigned long code, void *unused);
static struct notifier_block dhd_reboot_notifier = {
@@ -386,355 +382,62 @@
.priority = 1,
};
+#ifdef OEM_ANDROID
#ifdef BCMPCIE
static int is_reboot = 0;
#endif /* BCMPCIE */
+#endif /* OEM_ANDROID */
-typedef struct dhd_if_event {
- struct list_head list;
- wl_event_data_if_t event;
- char name[IFNAMSIZ+1];
- uint8 mac[ETHER_ADDR_LEN];
-} dhd_if_event_t;
+dhd_pub_t *g_dhd_pub = NULL;
-/* Interface control information */
-typedef struct dhd_if {
- struct dhd_info *info; /* back pointer to dhd_info */
- /* OS/stack specifics */
- struct net_device *net;
- int idx; /* iface idx in dongle */
- uint subunit; /* subunit */
- uint8 mac_addr[ETHER_ADDR_LEN]; /* assigned MAC address */
- bool set_macaddress;
- bool set_multicast;
- uint8 bssidx; /* bsscfg index for the interface */
- bool attached; /* Delayed attachment when unset */
- bool txflowcontrol; /* Per interface flow control indicator */
- char name[IFNAMSIZ+1]; /* linux interface name */
- char dngl_name[IFNAMSIZ+1]; /* corresponding dongle interface name */
- struct net_device_stats stats;
-#ifdef DHD_WMF
- dhd_wmf_t wmf; /* per bsscfg wmf setting */
- bool wmf_psta_disable; /* enable/disable MC pkt to each mac
- * of MC group behind PSTA
- */
-#endif /* DHD_WMF */
-#ifdef PCIE_FULL_DONGLE
- struct list_head sta_list; /* sll of associated stations */
-#if !defined(BCM_GMAC3)
- spinlock_t sta_list_lock; /* lock for manipulating sll */
-#endif /* ! BCM_GMAC3 */
-#endif /* PCIE_FULL_DONGLE */
- uint32 ap_isolate; /* ap-isolation settings */
-#ifdef DHD_L2_FILTER
- bool parp_enable;
- bool parp_discard;
- bool parp_allnode;
- arp_table_t *phnd_arp_table;
-/* for Per BSS modification */
- bool dhcp_unicast;
- bool block_ping;
- bool grat_arp;
-#endif /* DHD_L2_FILTER */
-#ifdef DHD_MCAST_REGEN
- bool mcast_regen_bss_enable;
-#endif
- bool rx_pkt_chainable; /* set all rx packet to chainable config by default */
- cumm_ctr_t cumm_ctr; /* cummulative queue length of child flowrings */
-} dhd_if_t;
+#if defined(BT_OVER_SDIO)
+#include "dhd_bt_interface.h"
+#endif /* defined (BT_OVER_SDIO) */
-#ifdef WLMEDIA_HTSF
-typedef struct {
- uint32 low;
- uint32 high;
-} tsf_t;
+#ifdef WL_STATIC_IF
+bool dhd_is_static_ndev(dhd_pub_t *dhdp, struct net_device *ndev);
+#endif /* WL_STATIC_IF */
-typedef struct {
- uint32 last_cycle;
- uint32 last_sec;
- uint32 last_tsf;
- uint32 coef; /* scaling factor */
- uint32 coefdec1; /* first decimal */
- uint32 coefdec2; /* second decimal */
-} htsf_t;
+atomic_t exit_in_progress = ATOMIC_INIT(0);
-typedef struct {
- uint32 t1;
- uint32 t2;
- uint32 t3;
- uint32 t4;
-} tstamp_t;
+static void dhd_process_daemon_msg(struct sk_buff *skb);
+static void dhd_destroy_to_notifier_skt(void);
+static int dhd_create_to_notifier_skt(void);
+static struct sock *nl_to_event_sk = NULL;
+int sender_pid = 0;
-static tstamp_t ts[TSMAX];
-static tstamp_t maxdelayts;
-static uint32 maxdelay = 0, tspktcnt = 0, maxdelaypktno = 0;
-
-#endif /* WLMEDIA_HTSF */
-
-struct ipv6_work_info_t {
- uint8 if_idx;
- char ipv6_addr[16];
- unsigned long event;
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
+struct netlink_kernel_cfg dhd_netlink_cfg = {
+ .groups = 1,
+ .input = dhd_process_daemon_msg,
};
+#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)) */
-#ifdef DHD_DEBUG
-typedef struct dhd_dump {
- uint8 *buf;
- int bufsize;
-} dhd_dump_t;
-#endif /* DHD_DEBUG */
-
-
-/* When Perimeter locks are deployed, any blocking calls must be preceeded
- * with a PERIM UNLOCK and followed by a PERIM LOCK.
- * Examples of blocking calls are: schedule_timeout(), down_interruptible(),
- * wait_event_timeout().
- */
-
-/* Local private structure (extension of pub) */
-typedef struct dhd_info {
-#if defined(WL_WIRELESS_EXT)
- wl_iw_t iw; /* wireless extensions state (must be first) */
-#endif /* defined(WL_WIRELESS_EXT) */
- dhd_pub_t pub;
- dhd_if_t *iflist[DHD_MAX_IFS]; /* for supporting multiple interfaces */
-
- void *adapter; /* adapter information, interrupt, fw path etc. */
- char fw_path[PATH_MAX]; /* path to firmware image */
- char nv_path[PATH_MAX]; /* path to nvram vars file */
-
- struct semaphore proto_sem;
-#ifdef PROP_TXSTATUS
- spinlock_t wlfc_spinlock;
-
-#ifdef BCMDBUS
- ulong wlfc_lock_flags;
- ulong wlfc_pub_lock_flags;
-#endif
-#endif /* PROP_TXSTATUS */
-#ifdef WLMEDIA_HTSF
- htsf_t htsf;
-#endif
- wait_queue_head_t ioctl_resp_wait;
- wait_queue_head_t d3ack_wait;
- wait_queue_head_t dhd_bus_busy_state_wait;
- uint32 default_wd_interval;
-
- struct timer_list timer;
- bool wd_timer_valid;
- struct tasklet_struct tasklet;
- spinlock_t sdlock;
- spinlock_t txqlock;
- spinlock_t dhd_lock;
-#ifdef BCMDBUS
- ulong txqlock_flags;
+#if defined(BT_OVER_SDIO)
+/* Flag to indicate if driver is initialized */
+uint dhd_driver_init_done = TRUE;
#else
-
- struct semaphore sdsem;
- tsk_ctl_t thr_dpc_ctl;
- tsk_ctl_t thr_wdt_ctl;
-#endif /* BCMDBUS */
-
- tsk_ctl_t thr_rxf_ctl;
- spinlock_t rxf_lock;
- bool rxthread_enabled;
-
- /* Wakelocks */
-#if defined(CONFIG_HAS_WAKELOCK) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27))
- struct wake_lock wl_wifi; /* Wifi wakelock */
- struct wake_lock wl_rxwake; /* Wifi rx wakelock */
- struct wake_lock wl_ctrlwake; /* Wifi ctrl wakelock */
- struct wake_lock wl_wdwake; /* Wifi wd wakelock */
- struct wake_lock wl_evtwake; /* Wifi event wakelock */
- struct wake_lock wl_txflwake; /* Wifi tx flow wakelock*/
-#ifdef BCMPCIE_OOB_HOST_WAKE
- struct wake_lock wl_intrwake; /* Host wakeup wakelock */
-#endif /* BCMPCIE_OOB_HOST_WAKE */
-#ifdef DHD_USE_SCAN_WAKELOCK
- struct wake_lock wl_scanwake; /* Wifi scan wakelock */
-#endif /* DHD_USE_SCAN_WAKELOCK */
-#endif /* CONFIG_HAS_WAKELOCK && LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27) */
-
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25))
- /* net_device interface lock, prevent race conditions among net_dev interface
- * calls and wifi_on or wifi_off
- */
- struct mutex dhd_net_if_mutex;
- struct mutex dhd_suspend_mutex;
-#endif
- spinlock_t wakelock_spinlock;
- uint32 wakelock_counter;
- int wakelock_wd_counter;
- int wakelock_rx_timeout_enable;
- int wakelock_ctrl_timeout_enable;
- bool waive_wakelock;
- uint32 wakelock_before_waive;
-
- /* Thread to issue ioctl for multicast */
- wait_queue_head_t ctrl_wait;
- atomic_t pend_8021x_cnt;
- dhd_attach_states_t dhd_state;
-#ifdef SHOW_LOGTRACE
- dhd_event_log_t event_data;
-#endif /* SHOW_LOGTRACE */
-
-#if defined(CONFIG_HAS_EARLYSUSPEND) && defined(DHD_USE_EARLYSUSPEND)
- struct early_suspend early_suspend;
-#endif /* CONFIG_HAS_EARLYSUSPEND && DHD_USE_EARLYSUSPEND */
-
-#ifdef ARP_OFFLOAD_SUPPORT
- u32 pend_ipaddr;
-#endif /* ARP_OFFLOAD_SUPPORT */
-#ifdef BCM_FD_AGGR
- void *rpc_th;
- void *rpc_osh;
- struct timer_list rpcth_timer;
- bool rpcth_timer_active;
- uint8 fdaggr;
-#endif
-#ifdef DHDTCPACK_SUPPRESS
- spinlock_t tcpack_lock;
-#endif /* DHDTCPACK_SUPPRESS */
- void *dhd_deferred_wq;
-#ifdef DEBUG_CPU_FREQ
- struct notifier_block freq_trans;
- int __percpu *new_freq;
-#endif
- unsigned int unit;
- struct notifier_block pm_notifier;
-#ifdef DHD_PSTA
- uint32 psta_mode; /* PSTA or PSR */
-#endif /* DHD_PSTA */
-#ifdef DHD_WET
- uint32 wet_mode;
-#endif /* DHD_PSTA */
-#ifdef DHD_DEBUG
- dhd_dump_t *dump;
- struct timer_list join_timer;
- u32 join_timeout_val;
- bool join_timer_active;
- uint scan_time_count;
- struct timer_list scan_timer;
- bool scan_timer_active;
-#endif
-
-#if defined(DHD_LB)
- /* CPU Load Balance dynamic CPU selection */
-
- /* Variable that tracks the currect CPUs available for candidacy */
- cpumask_var_t cpumask_curr_avail;
-
- /* Primary and secondary CPU mask */
- cpumask_var_t cpumask_primary, cpumask_secondary; /* configuration */
- cpumask_var_t cpumask_primary_new, cpumask_secondary_new; /* temp */
-
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 10, 0))
- struct hlist_node node_online;
-#else
- struct notifier_block cpu_notifier;
-#endif
-
- /* Tasklet to handle Tx Completion packet freeing */
- struct tasklet_struct tx_compl_tasklet;
- atomic_t tx_compl_cpu;
-
-
- /* Tasklet to handle RxBuf Post during Rx completion */
- struct tasklet_struct rx_compl_tasklet;
- atomic_t rx_compl_cpu;
-
- /* Napi struct for handling rx packet sendup. Packets are removed from
- * H2D RxCompl ring and placed into rx_pend_queue. rx_pend_queue is then
- * appended to rx_napi_queue (w/ lock) and the rx_napi_struct is scheduled
- * to run to rx_napi_cpu.
- */
- struct sk_buff_head rx_pend_queue ____cacheline_aligned;
- struct sk_buff_head rx_napi_queue ____cacheline_aligned;
- struct napi_struct rx_napi_struct ____cacheline_aligned;
- atomic_t rx_napi_cpu; /* cpu on which the napi is dispatched */
- struct net_device *rx_napi_netdev; /* netdev of primary interface */
-
- struct work_struct rx_napi_dispatcher_work;
- struct work_struct tx_compl_dispatcher_work;
- struct work_struct rx_compl_dispatcher_work;
- /* Number of times DPC Tasklet ran */
- uint32 dhd_dpc_cnt;
-
- /* Number of times NAPI processing got scheduled */
- uint32 napi_sched_cnt;
-
- /* Number of times NAPI processing ran on each available core */
- uint32 napi_percpu_run_cnt[NR_CPUS];
-
- /* Number of times RX Completions got scheduled */
- uint32 rxc_sched_cnt;
- /* Number of times RX Completion ran on each available core */
- uint32 rxc_percpu_run_cnt[NR_CPUS];
-
- /* Number of times TX Completions got scheduled */
- uint32 txc_sched_cnt;
- /* Number of times TX Completions ran on each available core */
- uint32 txc_percpu_run_cnt[NR_CPUS];
-
- /* CPU status */
- /* Number of times each CPU came online */
- uint32 cpu_online_cnt[NR_CPUS];
-
- /* Number of times each CPU went offline */
- uint32 cpu_offline_cnt[NR_CPUS];
-
- /*
- * Consumer Histogram - NAPI RX Packet processing
- * -----------------------------------------------
- * On Each CPU, when the NAPI RX Packet processing call back was invoked
- * how many packets were processed is captured in this data structure.
- * Now its difficult to capture the "exact" number of packets processed.
- * So considering the packet counter to be a 32 bit one, we have a
- * bucket with 8 bins (2^1, 2^2 ... 2^8). The "number" of packets
- * processed is rounded off to the next power of 2 and put in the
- * approriate "bin" the value in the bin gets incremented.
- * For example, assume that in CPU 1 if NAPI Rx runs 3 times
- * and the packet count processed is as follows (assume the bin counters are 0)
- * iteration 1 - 10 (the bin counter 2^4 increments to 1)
- * iteration 2 - 30 (the bin counter 2^5 increments to 1)
- * iteration 3 - 15 (the bin counter 2^4 increments by 1 to become 2)
- */
- uint32 napi_rx_hist[NR_CPUS][HIST_BIN_SIZE];
- uint32 txc_hist[NR_CPUS][HIST_BIN_SIZE];
- uint32 rxc_hist[NR_CPUS][HIST_BIN_SIZE];
-#endif /* DHD_LB */
-
-#if defined(BCM_DNGL_EMBEDIMAGE) || defined(BCM_REQUEST_FW)
-#if defined(BCMDBUS)
- struct task_struct *fw_download_task;
- struct semaphore fw_download_lock;
-#endif /* BCMDBUS */
-#endif /* defined(BCM_DNGL_EMBEDIMAGE) || defined(BCM_REQUEST_FW) */
- struct net_device *monitor_dev; /* monitor pseudo device */
- uint monitor_type; /* monitor pseudo device */
-} dhd_info_t;
-
-#define DHDIF_FWDER(dhdif) FALSE
-
-/* Flag to indicate if we should download firmware on driver load */
-uint dhd_download_fw_on_driverload = TRUE;
-
/* Flag to indicate if driver is initialized */
uint dhd_driver_init_done = FALSE;
+#endif // endif
+/* Flag to indicate if we should download firmware on driver load */
+uint dhd_download_fw_on_driverload = TRUE;
/* Definitions to provide path to the firmware and nvram
* example nvram_path[MOD_PARAM_PATHLEN]="/projects/wlan/nvram.txt"
*/
char firmware_path[MOD_PARAM_PATHLEN];
char nvram_path[MOD_PARAM_PATHLEN];
+char clm_path[MOD_PARAM_PATHLEN] = "/vendor/etc/firmware/cyfmac4373-sdio.clm_blob";
+#ifdef DHD_UCODE_DOWNLOAD
+char ucode_path[MOD_PARAM_PATHLEN];
+#endif /* DHD_UCODE_DOWNLOAD */
+
+module_param_string(clm_path, clm_path, MOD_PARAM_PATHLEN, 0660);
/* backup buffer for firmware and nvram path */
char fw_bak_path[MOD_PARAM_PATHLEN];
char nv_bak_path[MOD_PARAM_PATHLEN];
-
-char clm_path[MOD_PARAM_PATHLEN];
-
-module_param_string(clm_path, clm_path, MOD_PARAM_PATHLEN, 0660);
/* information string to keep firmware, chio, cheip version info visiable from log */
char info_string[MOD_PARAM_INFOLEN];
@@ -742,28 +445,58 @@
int op_mode = 0;
int disable_proptx = 0;
module_param(op_mode, int, 0644);
-
-#if defined(DHD_LB_RXP)
-static int dhd_napi_weight = 32;
-module_param(dhd_napi_weight, int, 0644);
-#endif /* DHD_LB_RXP */
-
+#if defined(OEM_ANDROID)
extern int wl_control_wl_start(struct net_device *dev);
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)) && defined(BCMLXSDMMC)
+#if defined(BCMLXSDMMC)
struct semaphore dhd_registration_sem;
-#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)) */
+#endif /* BCMXSDMMC */
+#endif /* defined(OEM_ANDROID) */
+
+#ifdef DHD_LOG_DUMP
+int logdump_max_filesize = LOG_DUMP_MAX_FILESIZE;
+module_param(logdump_max_filesize, int, 0644);
+int logdump_max_bufsize = LOG_DUMP_GENERAL_MAX_BUFSIZE;
+module_param(logdump_max_bufsize, int, 0644);
+int logdump_prsrv_tailsize = DHD_LOG_DUMP_MAX_TAIL_FLUSH_SIZE;
+int logdump_periodic_flush = FALSE;
+module_param(logdump_periodic_flush, int, 0644);
+#ifdef EWP_ECNTRS_LOGGING
+int logdump_ecntr_enable = TRUE;
+#else
+int logdump_ecntr_enable = FALSE;
+#endif /* EWP_ECNTRS_LOGGING */
+module_param(logdump_ecntr_enable, int, 0644);
+#ifdef EWP_RTT_LOGGING
+int logdump_rtt_enable = TRUE;
+#else
+int logdump_rtt_enable = FALSE;
+#endif /* EWP_RTT_LOGGING */
+module_param(logdump_rtt_enable, int, 0644);
+#endif /* DHD_LOG_DUMP */
+#ifdef EWP_EDL
+int host_edl_support = TRUE;
+module_param(host_edl_support, int, 0644);
+#endif // endif
/* deferred handlers */
static void dhd_ifadd_event_handler(void *handle, void *event_info, u8 event);
static void dhd_ifdel_event_handler(void *handle, void *event_info, u8 event);
+#ifndef DHD_DIRECT_SET_MAC
static void dhd_set_mac_addr_handler(void *handle, void *event_info, u8 event);
+#endif // endif
static void dhd_set_mcast_list_handler(void *handle, void *event_info, u8 event);
-#if defined(CONFIG_IPV6)
+#ifdef WL_NATOE
+static void dhd_natoe_ct_event_hanlder(void *handle, void *event_info, u8 event);
+static void dhd_natoe_ct_ioctl_handler(void *handle, void *event_info, uint8 event);
+#endif /* WL_NATOE */
+
+#if defined(CONFIG_IPV6) && defined(IPV6_NDO_SUPPORT)
static void dhd_inet6_work_handler(void *dhd_info, void *event_data, u8 event);
-#endif /* OEM_ANDROID && CONFIG_IPV6 */
+#endif /* CONFIG_IPV6 && IPV6_NDO_SUPPORT */
#ifdef WL_CFG80211
extern void dhd_netdev_free(struct net_device *ndev);
#endif /* WL_CFG80211 */
+static dhd_if_t * dhd_get_ifp_by_ndev(dhd_pub_t *dhdp, struct net_device *ndev);
#if (defined(DHD_WET) || defined(DHD_MCAST_REGEN) || defined(DHD_L2_FILTER))
/* update rx_pkt_chainable state of dhd interface */
@@ -771,7 +504,7 @@
#endif /* DHD_WET || DHD_MCAST_REGEN || DHD_L2_FILTER */
/* Error bits */
-module_param(dhd_msg_level, int, 0664);
+module_param(dhd_msg_level, int, 0);
#ifdef ARP_OFFLOAD_SUPPORT
/* ARP offload enable */
@@ -780,7 +513,12 @@
/* ARP offload agent mode : Enable ARP Host Auto-Reply and ARP Peer Auto-Reply */
-uint dhd_arp_mode = ARP_OL_AGENT | ARP_OL_PEER_AUTO_REPLY;
+#ifdef ENABLE_ARP_SNOOP_MODE
+uint dhd_arp_mode = (ARP_OL_AGENT | ARP_OL_PEER_AUTO_REPLY | ARP_OL_SNOOP | ARP_OL_HOST_AUTO_REPLY |
+ ARP_OL_UPDATE_HOST_CACHE);
+#else
+uint dhd_arp_mode = ARP_OL_AGENT | ARP_OL_PEER_AUTO_REPLY | ARP_OL_UPDATE_HOST_CACHE;
+#endif /* ENABLE_ARP_SNOOP_MODE */
module_param(dhd_arp_mode, uint, 0);
#endif /* ARP_OFFLOAD_SUPPORT */
@@ -790,20 +528,47 @@
/* load firmware and/or nvram values from the filesystem */
module_param_string(firmware_path, firmware_path, MOD_PARAM_PATHLEN, 0660);
module_param_string(nvram_path, nvram_path, MOD_PARAM_PATHLEN, 0660);
+#ifdef DHD_UCODE_DOWNLOAD
+module_param_string(ucode_path, ucode_path, MOD_PARAM_PATHLEN, 0660);
+#endif /* DHD_UCODE_DOWNLOAD */
+
+/* wl event forwarding */
+#ifdef WL_EVENT_ENAB
+uint wl_event_enable = true;
+#else
+uint wl_event_enable = false;
+#endif /* WL_EVENT_ENAB */
+module_param(wl_event_enable, uint, 0660);
+
+/* wl event forwarding */
+#ifdef LOGTRACE_PKT_SENDUP
+uint logtrace_pkt_sendup = true;
+#else
+uint logtrace_pkt_sendup = false;
+#endif /* LOGTRACE_PKT_SENDUP */
+module_param(logtrace_pkt_sendup, uint, 0660);
/* Watchdog interval */
-
/* extend watchdog expiration to 2 seconds when DPC is running */
#define WATCHDOG_EXTEND_INTERVAL (2000)
uint dhd_watchdog_ms = CUSTOM_DHD_WATCHDOG_MS;
module_param(dhd_watchdog_ms, uint, 0);
+#ifdef DHD_PCIE_RUNTIMEPM
+uint dhd_runtimepm_ms = CUSTOM_DHD_RUNTIME_MS;
+#endif /* DHD_PCIE_RUNTIMEPMT */
#if defined(DHD_DEBUG)
/* Console poll interval */
+#if defined(OEM_ANDROID)
uint dhd_console_ms = 0;
+#else
+uint dhd_console_ms = 250;
+#endif /* OEM_ANDROID */
module_param(dhd_console_ms, uint, 0644);
-#endif /* defined(DHD_DEBUG) */
+#else
+uint dhd_console_ms = 0;
+#endif /* DHD_DEBUG */
uint dhd_slpauto = TRUE;
module_param(dhd_slpauto, uint, 0);
@@ -812,14 +577,18 @@
/* Global Pkt filter enable control */
uint dhd_pkt_filter_enable = TRUE;
module_param(dhd_pkt_filter_enable, uint, 0);
-#endif
+#endif // endif
/* Pkt filter init setup */
uint dhd_pkt_filter_init = 0;
module_param(dhd_pkt_filter_init, uint, 0);
/* Pkt filter mode control */
+#ifdef GAN_LITE_NAT_KEEPALIVE_FILTER
+uint dhd_master_mode = FALSE;
+#else
uint dhd_master_mode = TRUE;
+#endif /* GAN_LITE_NAT_KEEPALIVE_FILTER */
module_param(dhd_master_mode, uint, 0);
int dhd_watchdog_prio = 0;
@@ -843,477 +612,119 @@
module_param(passive_channel_skip, int, (S_IRUSR|S_IWUSR));
#endif /* WL_CFG80211 */
+#ifdef DHD_MSI_SUPPORT
+uint enable_msi = TRUE;
+module_param(enable_msi, uint, 0);
+#endif /* PCIE_FULL_DONGLE */
+
+#ifdef DHD_SSSR_DUMP
+int dhdpcie_sssr_dump_get_before_after_len(dhd_pub_t *dhd, uint32 *arr_len);
+extern uint support_sssr_dump;
+module_param(support_sssr_dump, uint, 0);
+#endif /* DHD_SSSR_DUMP */
+
/* Keep track of number of instances */
static int dhd_found = 0;
static int instance_base = 0; /* Starting instance number */
module_param(instance_base, int, 0644);
-#ifdef DHD_DHCP_DUMP
-struct bootp_fmt {
- struct iphdr ip_header;
- struct udphdr udp_header;
- uint8 op;
- uint8 htype;
- uint8 hlen;
- uint8 hops;
- uint32 transaction_id;
- uint16 secs;
- uint16 flags;
- uint32 client_ip;
- uint32 assigned_ip;
- uint32 server_ip;
- uint32 relay_ip;
- uint8 hw_address[16];
- uint8 server_name[64];
- uint8 file_name[128];
- uint8 options[312];
-};
-
-static const uint8 bootp_magic_cookie[4] = { 99, 130, 83, 99 };
-static const char dhcp_ops[][10] = {
- "NA", "REQUEST", "REPLY"
-};
-static const char dhcp_types[][10] = {
- "NA", "DISCOVER", "OFFER", "REQUEST", "DECLINE", "ACK", "NAK", "RELEASE", "INFORM"
-};
-static void dhd_dhcp_dump(uint8 *pktdata, bool tx);
-#endif /* DHD_DHCP_DUMP */
-
-#if defined(DHD_LB)
-
-static void
-dhd_lb_set_default_cpus(dhd_info_t *dhd)
-{
- /* Default CPU allocation for the jobs */
- atomic_set(&dhd->rx_napi_cpu, 1);
- atomic_set(&dhd->rx_compl_cpu, 2);
- atomic_set(&dhd->tx_compl_cpu, 2);
-}
-
-static void
-dhd_cpumasks_deinit(dhd_info_t *dhd)
-{
- free_cpumask_var(dhd->cpumask_curr_avail);
- free_cpumask_var(dhd->cpumask_primary);
- free_cpumask_var(dhd->cpumask_primary_new);
- free_cpumask_var(dhd->cpumask_secondary);
- free_cpumask_var(dhd->cpumask_secondary_new);
-}
-
-static int
-dhd_cpumasks_init(dhd_info_t *dhd)
-{
- int id;
- uint32 cpus;
- int ret = 0;
-
- if (!alloc_cpumask_var(&dhd->cpumask_curr_avail, GFP_KERNEL) ||
- !alloc_cpumask_var(&dhd->cpumask_primary, GFP_KERNEL) ||
- !alloc_cpumask_var(&dhd->cpumask_primary_new, GFP_KERNEL) ||
- !alloc_cpumask_var(&dhd->cpumask_secondary, GFP_KERNEL) ||
- !alloc_cpumask_var(&dhd->cpumask_secondary_new, GFP_KERNEL)) {
- DHD_ERROR(("%s Failed to init cpumasks\n", __FUNCTION__));
- ret = -ENOMEM;
- goto fail;
- }
-
- cpumask_copy(dhd->cpumask_curr_avail, cpu_online_mask);
- cpumask_clear(dhd->cpumask_primary);
- cpumask_clear(dhd->cpumask_secondary);
-
- cpus = DHD_LB_PRIMARY_CPUS;
- for (id = 0; id < NR_CPUS; id++) {
- if (isset(&cpus, id))
- cpumask_set_cpu(id, dhd->cpumask_primary);
- }
-
- cpus = DHD_LB_SECONDARY_CPUS;
- for (id = 0; id < NR_CPUS; id++) {
- if (isset(&cpus, id))
- cpumask_set_cpu(id, dhd->cpumask_secondary);
- }
-
- return ret;
-fail:
- dhd_cpumasks_deinit(dhd);
- return ret;
-}
-
-/*
- * The CPU Candidacy Algorithm
- * ~~~~~~~~~~~~~~~~~~~~~~~~~~~
- * The available CPUs for selection are divided into two groups
- * Primary Set - A CPU mask that carries the First Choice CPUs
- * Secondary Set - A CPU mask that carries the Second Choice CPUs.
- *
- * There are two types of Job, that needs to be assigned to
- * the CPUs, from one of the above mentioned CPU group. The Jobs are
- * 1) Rx Packet Processing - napi_cpu
- * 2) Completion Processiong (Tx, RX) - compl_cpu
- *
- * To begin with both napi_cpu and compl_cpu are on CPU0. Whenever a CPU goes
- * on-line/off-line the CPU candidacy algorithm is triggerd. The candidacy
- * algo tries to pickup the first available non boot CPU (CPU0) for napi_cpu.
- * If there are more processors free, it assigns one to compl_cpu.
- * It also tries to ensure that both napi_cpu and compl_cpu are not on the same
- * CPU, as much as possible.
- *
- * By design, both Tx and Rx completion jobs are run on the same CPU core, as it
- * would allow Tx completion skb's to be released into a local free pool from
- * which the rx buffer posts could have been serviced. it is important to note
- * that a Tx packet may not have a large enough buffer for rx posting.
+/* Takes value of LL of OTP param customvar2=0xKKLLMMNN.
+ * LL is module variant
*/
-void dhd_select_cpu_candidacy(dhd_info_t *dhd)
-{
- uint32 primary_available_cpus; /* count of primary available cpus */
- uint32 secondary_available_cpus; /* count of secondary available cpus */
- uint32 napi_cpu = 0; /* cpu selected for napi rx processing */
- uint32 compl_cpu = 0; /* cpu selected for completion jobs */
+uint32 hw_module_variant = 0;
+module_param(hw_module_variant, uint, 0644);
- cpumask_clear(dhd->cpumask_primary_new);
- cpumask_clear(dhd->cpumask_secondary_new);
-
- /*
- * Now select from the primary mask. Even if a Job is
- * already running on a CPU in secondary group, we still move
- * to primary CPU. So no conditional checks.
- */
- cpumask_and(dhd->cpumask_primary_new, dhd->cpumask_primary,
- dhd->cpumask_curr_avail);
-
- cpumask_and(dhd->cpumask_secondary_new, dhd->cpumask_secondary,
- dhd->cpumask_curr_avail);
-
- primary_available_cpus = cpumask_weight(dhd->cpumask_primary_new);
-
- if (primary_available_cpus > 0) {
- napi_cpu = cpumask_first(dhd->cpumask_primary_new);
-
- /* If no further CPU is available,
- * cpumask_next returns >= nr_cpu_ids
- */
- compl_cpu = cpumask_next(napi_cpu, dhd->cpumask_primary_new);
- if (compl_cpu >= nr_cpu_ids)
- compl_cpu = 0;
- }
-
- DHD_INFO(("%s After primary CPU check napi_cpu %d compl_cpu %d\n",
- __FUNCTION__, napi_cpu, compl_cpu));
-
- /* -- Now check for the CPUs from the secondary mask -- */
- secondary_available_cpus = cpumask_weight(dhd->cpumask_secondary_new);
-
- DHD_INFO(("%s Available secondary cpus %d nr_cpu_ids %d\n",
- __FUNCTION__, secondary_available_cpus, nr_cpu_ids));
-
- if (secondary_available_cpus > 0) {
- /* At this point if napi_cpu is unassigned it means no CPU
- * is online from Primary Group
- */
- if (napi_cpu == 0) {
- napi_cpu = cpumask_first(dhd->cpumask_secondary_new);
- compl_cpu = cpumask_next(napi_cpu, dhd->cpumask_secondary_new);
- } else if (compl_cpu == 0) {
- compl_cpu = cpumask_first(dhd->cpumask_secondary_new);
- }
-
- /* If no CPU was available for completion, choose CPU 0 */
- if (compl_cpu >= nr_cpu_ids)
- compl_cpu = 0;
- }
- if ((primary_available_cpus == 0) &&
- (secondary_available_cpus == 0)) {
- /* No CPUs available from primary or secondary mask */
- napi_cpu = 0;
- compl_cpu = 0;
- }
-
- DHD_INFO(("%s After secondary CPU check napi_cpu %d compl_cpu %d\n",
- __FUNCTION__, napi_cpu, compl_cpu));
- ASSERT(napi_cpu < nr_cpu_ids);
- ASSERT(compl_cpu < nr_cpu_ids);
-
- atomic_set(&dhd->rx_napi_cpu, napi_cpu);
- atomic_set(&dhd->tx_compl_cpu, compl_cpu);
- atomic_set(&dhd->rx_compl_cpu, compl_cpu);
- return;
-}
-
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 10, 0))
-int dhd_cpuhp_online(unsigned int cpu, struct hlist_node *node)
-{
- dhd_info_t *dhd = hlist_entry_safe(node, dhd_info_t,
- node_online);
-
- DHD_INFO(("%s: cpu=%d\n", __func__, cpu));
- DHD_LB_STATS_INCR(dhd->cpu_online_cnt[cpu]);
- cpumask_set_cpu(cpu, dhd->cpumask_curr_avail);
- dhd_select_cpu_candidacy(dhd);
- return 0;
-}
-
-int dhd_cpuhp_dead(unsigned int cpu, struct hlist_node *node)
-{
- dhd_info_t *dhd = hlist_entry_safe(node, dhd_info_t,
- node_online);
-
- DHD_INFO(("%s: cpu=%d\n", __func__, cpu));
- DHD_LB_STATS_INCR(dhd->cpu_offline_cnt[cpu]);
- cpumask_clear_cpu(cpu, dhd->cpumask_curr_avail);
- dhd_select_cpu_candidacy(dhd);
- return 0;
-}
-#else
-/*
- * Function to handle CPU Hotplug notifications.
- * One of the task it does is to trigger the CPU Candidacy algorithm
- * for load balancing.
- */
-int
-dhd_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
-{
- unsigned int cpu = (unsigned int)(long)hcpu;
-
- dhd_info_t *dhd = container_of(nfb, dhd_info_t, cpu_notifier);
-
- switch (action)
- {
- case CPU_ONLINE:
- DHD_LB_STATS_INCR(dhd->cpu_online_cnt[cpu]);
- cpumask_set_cpu(cpu, dhd->cpumask_curr_avail);
- dhd_select_cpu_candidacy(dhd);
- break;
-
- case CPU_DOWN_PREPARE:
- case CPU_DOWN_PREPARE_FROZEN:
- DHD_LB_STATS_INCR(dhd->cpu_offline_cnt[cpu]);
- cpumask_clear_cpu(cpu, dhd->cpumask_curr_avail);
- dhd_select_cpu_candidacy(dhd);
- break;
- default:
- break;
- }
-
- return NOTIFY_OK;
-}
-#endif
-
-#if defined(DHD_LB_STATS)
-void dhd_lb_stats_init(dhd_pub_t *dhdp)
-{
- dhd_info_t *dhd;
- int i, j;
-
- if (dhdp == NULL) {
- DHD_ERROR(("%s(): Invalid argument dhdp is NULL \n",
- __FUNCTION__));
- return;
- }
-
- dhd = dhdp->info;
- if (dhd == NULL) {
- DHD_ERROR(("%s(): DHD pointer is NULL \n", __FUNCTION__));
- return;
- }
-
- DHD_LB_STATS_CLR(dhd->dhd_dpc_cnt);
- DHD_LB_STATS_CLR(dhd->napi_sched_cnt);
- DHD_LB_STATS_CLR(dhd->rxc_sched_cnt);
- DHD_LB_STATS_CLR(dhd->txc_sched_cnt);
-
- for (i = 0; i < NR_CPUS; i++) {
- DHD_LB_STATS_CLR(dhd->napi_percpu_run_cnt[i]);
- DHD_LB_STATS_CLR(dhd->rxc_percpu_run_cnt[i]);
- DHD_LB_STATS_CLR(dhd->txc_percpu_run_cnt[i]);
-
- DHD_LB_STATS_CLR(dhd->cpu_online_cnt[i]);
- DHD_LB_STATS_CLR(dhd->cpu_offline_cnt[i]);
- }
-
- for (i = 0; i < NR_CPUS; i++) {
- for (j = 0; j < HIST_BIN_SIZE; j++) {
- DHD_LB_STATS_CLR(dhd->napi_rx_hist[i][j]);
- DHD_LB_STATS_CLR(dhd->txc_hist[i][j]);
- DHD_LB_STATS_CLR(dhd->rxc_hist[i][j]);
- }
- }
-
- return;
-}
-
-static void dhd_lb_stats_dump_histo(
- struct bcmstrbuf *strbuf, uint32 (*hist)[HIST_BIN_SIZE])
-{
- int i, j;
- uint32 per_cpu_total[NR_CPUS] = {0};
- uint32 total = 0;
-
- bcm_bprintf(strbuf, "CPU: \t\t");
- for (i = 0; i < num_possible_cpus(); i++)
- bcm_bprintf(strbuf, "%d\t", i);
- bcm_bprintf(strbuf, "\nBin\n");
-
- for (i = 0; i < HIST_BIN_SIZE; i++) {
- bcm_bprintf(strbuf, "%d:\t\t", 1<<(i+1));
- for (j = 0; j < num_possible_cpus(); j++) {
- bcm_bprintf(strbuf, "%d\t", hist[j][i]);
- }
- bcm_bprintf(strbuf, "\n");
- }
- bcm_bprintf(strbuf, "Per CPU Total \t");
- total = 0;
- for (i = 0; i < num_possible_cpus(); i++) {
- for (j = 0; j < HIST_BIN_SIZE; j++) {
- per_cpu_total[i] += (hist[i][j] * (1<<(j+1)));
- }
- bcm_bprintf(strbuf, "%d\t", per_cpu_total[i]);
- total += per_cpu_total[i];
- }
- bcm_bprintf(strbuf, "\nTotal\t\t%d \n", total);
-
- return;
-}
-
-static inline void dhd_lb_stats_dump_cpu_array(struct bcmstrbuf *strbuf, uint32 *p)
-{
- int i;
-
- bcm_bprintf(strbuf, "CPU: \t");
- for (i = 0; i < num_possible_cpus(); i++)
- bcm_bprintf(strbuf, "%d\t", i);
- bcm_bprintf(strbuf, "\n");
-
- bcm_bprintf(strbuf, "Val: \t");
- for (i = 0; i < num_possible_cpus(); i++)
- bcm_bprintf(strbuf, "%u\t", *(p+i));
- bcm_bprintf(strbuf, "\n");
- return;
-}
-
-void dhd_lb_stats_dump(dhd_pub_t *dhdp, struct bcmstrbuf *strbuf)
-{
- dhd_info_t *dhd;
-
- if (dhdp == NULL || strbuf == NULL) {
- DHD_ERROR(("%s(): Invalid argument dhdp %p strbuf %p \n",
- __FUNCTION__, dhdp, strbuf));
- return;
- }
-
- dhd = dhdp->info;
- if (dhd == NULL) {
- DHD_ERROR(("%s(): DHD pointer is NULL \n", __FUNCTION__));
- return;
- }
-
- bcm_bprintf(strbuf, "\ncpu_online_cnt:\n");
- dhd_lb_stats_dump_cpu_array(strbuf, dhd->cpu_online_cnt);
-
- bcm_bprintf(strbuf, "cpu_offline_cnt:\n");
- dhd_lb_stats_dump_cpu_array(strbuf, dhd->cpu_offline_cnt);
-
- bcm_bprintf(strbuf, "\nsched_cnt: dhd_dpc %u napi %u rxc %u txc %u\n",
- dhd->dhd_dpc_cnt, dhd->napi_sched_cnt, dhd->rxc_sched_cnt,
- dhd->txc_sched_cnt);
-#ifdef DHD_LB_RXP
- bcm_bprintf(strbuf, "napi_percpu_run_cnt:\n");
- dhd_lb_stats_dump_cpu_array(strbuf, dhd->napi_percpu_run_cnt);
- bcm_bprintf(strbuf, "\nNAPI Packets Received Histogram:\n");
- dhd_lb_stats_dump_histo(strbuf, dhd->napi_rx_hist);
+#if defined(DHD_LB_RXP)
+static int dhd_napi_weight = 32;
+module_param(dhd_napi_weight, int, 0644);
#endif /* DHD_LB_RXP */
-#ifdef DHD_LB_RXC
- bcm_bprintf(strbuf, "rxc_percpu_run_cnt:\n");
- dhd_lb_stats_dump_cpu_array(strbuf, dhd->rxc_percpu_run_cnt);
- bcm_bprintf(strbuf, "\nRX Completions (Buffer Post) Histogram:\n");
- dhd_lb_stats_dump_histo(strbuf, dhd->rxc_hist);
-#endif /* DHD_LB_RXC */
+#ifdef PCIE_FULL_DONGLE
+extern int h2d_max_txpost;
+module_param(h2d_max_txpost, int, 0644);
+extern uint dma_ring_indices;
+module_param(dma_ring_indices, uint, 0644);
-#ifdef DHD_LB_TXC
- bcm_bprintf(strbuf, "txc_percpu_run_cnt:\n");
- dhd_lb_stats_dump_cpu_array(strbuf, dhd->txc_percpu_run_cnt);
- bcm_bprintf(strbuf, "\nTX Completions (Buffer Free) Histogram:\n");
- dhd_lb_stats_dump_histo(strbuf, dhd->txc_hist);
-#endif /* DHD_LB_TXC */
-}
+extern bool h2d_phase;
+module_param(h2d_phase, bool, 0644);
+extern bool force_trap_bad_h2d_phase;
+module_param(force_trap_bad_h2d_phase, bool, 0644);
+#endif /* PCIE_FULL_DONGLE */
-static void dhd_lb_stats_update_histo(uint32 *bin, uint32 count)
+#ifdef FORCE_TPOWERON
+/*
+ * On Fire's reference platform, coming out of L1.2,
+ * there is a constant delay of 45us between CLKREQ# and stable REFCLK
+ * Due to this delay, with tPowerOn < 50
+ * there is a chance of the refclk sense to trigger on noise.
+ *
+ * 0x29 when written to L1SSControl2 translates to 50us.
+ */
+#define FORCE_TPOWERON_50US 0x29
+uint32 tpoweron_scale = FORCE_TPOWERON_50US; /* default 50us */
+module_param(tpoweron_scale, uint, 0644);
+#endif /* FORCE_TPOWERON */
+
+#ifdef SHOW_LOGTRACE
+#if defined(CUSTOMER_HW4_DEBUG)
+static char *logstrs_path = PLATFORM_PATH"logstrs.bin";
+char *st_str_file_path = PLATFORM_PATH"rtecdc.bin";
+static char *map_file_path = PLATFORM_PATH"rtecdc.map";
+static char *rom_st_str_file_path = PLATFORM_PATH"roml.bin";
+static char *rom_map_file_path = PLATFORM_PATH"roml.map";
+#elif defined(CUSTOMER_HW2) || defined(BOARD_HIKEY)
+static char *logstrs_path = "/data/misc/wifi/logstrs.bin";
+char *st_str_file_path = "/data/misc/wifi/rtecdc.bin";
+static char *map_file_path = "/data/misc/wifi/rtecdc.map";
+static char *rom_st_str_file_path = "/data/misc/wifi/roml.bin";
+static char *rom_map_file_path = "/data/misc/wifi/roml.map";
+#elif defined(OEM_ANDROID) /* For Brix KK Live Image */
+static char *logstrs_path = "/installmedia/logstrs.bin";
+char *st_str_file_path = "/installmedia/rtecdc.bin";
+static char *map_file_path = "/installmedia/rtecdc.map";
+static char *rom_st_str_file_path = "/installmedia/roml.bin";
+static char *rom_map_file_path = "/installmedia/roml.map";
+#else /* For Linux platforms */
+static char *logstrs_path = "/root/logstrs.bin";
+char *st_str_file_path = "/root/rtecdc.bin";
+static char *map_file_path = "/root/rtecdc.map";
+static char *rom_st_str_file_path = "/root/roml.bin";
+static char *rom_map_file_path = "/root/roml.map";
+#endif /* CUSTOMER_HW4_DEBUG || CUSTOMER_HW2 || BOARD_HIKEY */
+static char *ram_file_str = "rtecdc";
+static char *rom_file_str = "roml";
+
+module_param(logstrs_path, charp, S_IRUGO);
+module_param(st_str_file_path, charp, S_IRUGO);
+module_param(map_file_path, charp, S_IRUGO);
+module_param(rom_st_str_file_path, charp, S_IRUGO);
+module_param(rom_map_file_path, charp, S_IRUGO);
+
+static int dhd_init_logstrs_array(osl_t *osh, dhd_event_log_t *temp);
+static int dhd_read_map(osl_t *osh, char *fname, uint32 *ramstart, uint32 *rodata_start,
+ uint32 *rodata_end);
+static int dhd_init_static_strs_array(osl_t *osh, dhd_event_log_t *temp, char *str_file,
+ char *map_file);
+#endif /* SHOW_LOGTRACE */
+
+#ifdef BCMSDIO
+#define DHD_IF_ROLE(pub, idx) ((pub)->info->iflist[idx]->role)
+#define DHD_IF_ROLE_AP(pub, idx) (DHD_IF_ROLE(pub, idx) == WLC_E_IF_ROLE_AP)
+#define DHD_IF_ROLE_STA(pub, idx) (DHD_IF_ROLE(pub, idx) == WLC_E_IF_ROLE_STA)
+#define DHD_IF_ROLE_P2PGO(pub, idx) (DHD_IF_ROLE(pub, idx) == WLC_E_IF_ROLE_P2P_GO)
+
+void dhd_set_role(dhd_pub_t *dhdp, int role, int bssidx)
{
- uint32 bin_power;
- uint32 *p = NULL;
-
- bin_power = next_larger_power2(count);
-
- switch (bin_power) {
- case 0: break;
- case 1: /* Fall through intentionally */
- case 2: p = bin + 0; break;
- case 4: p = bin + 1; break;
- case 8: p = bin + 2; break;
- case 16: p = bin + 3; break;
- case 32: p = bin + 4; break;
- case 64: p = bin + 5; break;
- case 128: p = bin + 6; break;
- default : p = bin + 7; break;
- }
- if (p)
- *p = *p + 1;
- return;
+ int ifidx = dhd_bssidx2idx(dhdp, bssidx);
+ DHD_TRACE(("dhd_set_role ifidx %d role %d\n", ifidx, role));
+ dhdp->info->iflist[ifidx]->role = role;
}
+#endif /* BCMSDIO */
-extern void dhd_lb_stats_update_napi_histo(dhd_pub_t *dhdp, uint32 count)
-{
- int cpu;
- dhd_info_t *dhd = dhdp->info;
-
- cpu = get_cpu();
- put_cpu();
- dhd_lb_stats_update_histo(&dhd->napi_rx_hist[cpu][0], count);
-
- return;
-}
-
-extern void dhd_lb_stats_update_txc_histo(dhd_pub_t *dhdp, uint32 count)
-{
- int cpu;
- dhd_info_t *dhd = dhdp->info;
-
- cpu = get_cpu();
- put_cpu();
- dhd_lb_stats_update_histo(&dhd->txc_hist[cpu][0], count);
-
- return;
-}
-
-extern void dhd_lb_stats_update_rxc_histo(dhd_pub_t *dhdp, uint32 count)
-{
- int cpu;
- dhd_info_t *dhd = dhdp->info;
-
- cpu = get_cpu();
- put_cpu();
- dhd_lb_stats_update_histo(&dhd->rxc_hist[cpu][0], count);
-
- return;
-}
-
-extern void dhd_lb_stats_txc_percpu_cnt_incr(dhd_pub_t *dhdp)
-{
- dhd_info_t *dhd = dhdp->info;
- DHD_LB_STATS_PERCPU_ARR_INCR(dhd->txc_percpu_run_cnt);
-}
-
-extern void dhd_lb_stats_rxc_percpu_cnt_incr(dhd_pub_t *dhdp)
-{
- dhd_info_t *dhd = dhdp->info;
- DHD_LB_STATS_PERCPU_ARR_INCR(dhd->rxc_percpu_run_cnt);
-}
-
-#endif /* DHD_LB_STATS */
-#endif /* DHD_LB */
-
-
+#ifdef USE_WFA_CERT_CONF
+int g_frameburst = 1;
+#endif /* USE_WFA_CERT_CONF */
static int dhd_get_pend_8021x_cnt(dhd_info_t *dhd);
@@ -1322,18 +733,6 @@
#define DHD_PERIM_LOCK_TRY(unit, flag) do { /* noop */ } while (0)
#define DHD_PERIM_UNLOCK_TRY(unit, flag) do { /* noop */ } while (0)
-#ifdef PCIE_FULL_DONGLE
-#if defined(BCM_GMAC3)
-#define DHD_IF_STA_LIST_LOCK_INIT(ifp) do { /* noop */ } while (0)
-#define DHD_IF_STA_LIST_LOCK(ifp, flags) ({ BCM_REFERENCE(flags); })
-#define DHD_IF_STA_LIST_UNLOCK(ifp, flags) ({ BCM_REFERENCE(flags); })
-
-#if defined(DHD_IGMP_UCQUERY) || defined(DHD_UCAST_UPNP)
-#define DHD_IF_WMF_UCFORWARD_LOCK(dhd, ifp, slist) ({ BCM_REFERENCE(slist); &(ifp)->sta_list; })
-#define DHD_IF_WMF_UCFORWARD_UNLOCK(dhd, slist) ({ BCM_REFERENCE(slist); })
-#endif /* DHD_IGMP_UCQUERY || DHD_UCAST_UPNP */
-
-#else /* ! BCM_GMAC3 */
#define DHD_IF_STA_LIST_LOCK_INIT(ifp) spin_lock_init(&(ifp)->sta_list_lock)
#define DHD_IF_STA_LIST_LOCK(ifp, flags) \
spin_lock_irqsave(&(ifp)->sta_list_lock, (flags))
@@ -1348,16 +747,24 @@
#define DHD_IF_WMF_UCFORWARD_UNLOCK(dhd, slist) ({ dhd_sta_list_snapshot_free(dhd, slist); })
#endif /* DHD_IGMP_UCQUERY || DHD_UCAST_UPNP */
-#endif /* ! BCM_GMAC3 */
-#endif /* PCIE_FULL_DONGLE */
-
/* Control fw roaming */
+#ifdef BCMCCX
uint dhd_roam_disable = 0;
+#else
+#ifdef OEM_ANDROID
+uint dhd_roam_disable = 0;
+#else
+uint dhd_roam_disable = 1;
+#endif // endif
+#endif /* BCMCCX */
#ifdef BCMDBGFS
-extern int dhd_dbg_init(dhd_pub_t *dhdp);
-extern void dhd_dbg_remove(void);
-#endif
+extern void dhd_dbgfs_init(dhd_pub_t *dhdp);
+extern void dhd_dbgfs_remove(void);
+#endif // endif
+
+static uint pcie_txs_metadata_enable = 0; /* Enable TX status metadta report */
+module_param(pcie_txs_metadata_enable, int, 0);
/* Control radio state */
uint dhd_radio_up = 1;
@@ -1366,10 +773,22 @@
char iface_name[IFNAMSIZ] = {'\0'};
module_param_string(iface_name, iface_name, IFNAMSIZ, 0);
+#ifdef WL_VIF_SUPPORT
+/* Virtual inteface name */
+char vif_name[IFNAMSIZ] = "wlan";
+module_param_string(vif_name, vif_name, IFNAMSIZ, 0);
+
+int vif_num = 0;
+module_param(vif_num, int, 0);
+#endif /* WL_VIF_SUPPORT */
+
/* The following are specific to the SDIO dongle */
/* IOCTL response timeout */
int dhd_ioctl_timeout_msec = IOCTL_RESP_TIMEOUT;
+
+/* DS Exit response timeout */
+int ds_exit_timeout_msec = DS_EXIT_TIMEOUT;
/* Idle timeout for backplane clock */
int dhd_idletime = DHD_IDLETIME_TICKS;
@@ -1400,7 +819,6 @@
#endif /* BCMSDIO */
-
#ifdef SDTEST
/* Echo packet generator (pkts/s) */
uint dhd_pktgen = 0;
@@ -1411,18 +829,45 @@
module_param(dhd_pktgen_len, uint, 0);
#endif /* SDTEST */
+#if defined(BCMSUP_4WAY_HANDSHAKE)
+/* Use in dongle supplicant for 4-way handshake */
+#if defined(WLFBT) || defined(WL_ENABLE_IDSUP)
+/* Enable idsup by default (if supported in fw) */
+uint dhd_use_idsup = 1;
+#else
+uint dhd_use_idsup = 0;
+#endif /* WLFBT || WL_ENABLE_IDSUP */
+module_param(dhd_use_idsup, uint, 0);
+#endif /* BCMSUP_4WAY_HANDSHAKE */
-
-#ifndef BCMDBUS
+#if (defined(OEM_ANDROID) && !defined(BCMQT))
/* Allow delayed firmware download for debug purpose */
int allow_delay_fwdl = FALSE;
+#else
+int allow_delay_fwdl = TRUE;
+#endif // endif
module_param(allow_delay_fwdl, int, 0);
-#endif /* !BCMDBUS */
-/* Flag to indicate whether FW download has succeeded */
-bool dhd_fw_downloaded = FALSE;
+#ifdef ECOUNTER_PERIODIC_DISABLE
+uint enable_ecounter = FALSE;
+#else
+uint enable_ecounter = TRUE;
+#endif // endif
+module_param(enable_ecounter, uint, 0);
+
+/* TCM verification flag */
+uint dhd_tcm_test_enable = FALSE;
+module_param(dhd_tcm_test_enable, uint, 0644);
+
+/* WAR to avoid system hang during FW trap */
+#ifdef DHD_FW_COREDUMP
+uint disable_bug_on = FALSE;
+module_param(disable_bug_on, uint, 0);
+#endif /* DHD_FW_COREDUMP */
extern char dhd_version[];
+extern char fw_version[];
+extern char clm_version[];
int dhd_net_bus_devreset(struct net_device *dev, uint8 flag);
static void dhd_net_if_lock_local(dhd_info_t *dhd);
@@ -1430,30 +875,25 @@
static void dhd_suspend_lock(dhd_pub_t *dhdp);
static void dhd_suspend_unlock(dhd_pub_t *dhdp);
-#ifdef WLMEDIA_HTSF
-void htsf_update(dhd_info_t *dhd, void *data);
-tsf_t prev_tsf, cur_tsf;
-
-uint32 dhd_get_htsf(dhd_info_t *dhd, int ifidx);
-static int dhd_ioctl_htsf_get(dhd_info_t *dhd, int ifidx);
-static void dhd_dump_latency(void);
-static void dhd_htsf_addtxts(dhd_pub_t *dhdp, void *pktbuf);
-static void dhd_htsf_addrxts(dhd_pub_t *dhdp, void *pktbuf);
-static void dhd_dump_htsfhisto(histo_t *his, char *s);
-#endif /* WLMEDIA_HTSF */
-
+#ifdef DHD_MONITOR_INTERFACE
/* Monitor interface */
int dhd_monitor_init(void *dhd_pub);
int dhd_monitor_uninit(void);
+#endif /* DHD_MONITOR_INTERFACE */
+#ifdef DHD_PM_CONTROL_FROM_FILE
+bool g_pm_control;
+#ifdef DHD_EXPORT_CNTL_FILE
+int pmmode_val;
+#endif /* DHD_EXPORT_CNTL_FILE */
+void sec_control_pm(dhd_pub_t *dhd, uint *);
+#endif /* DHD_PM_CONTROL_FROM_FILE */
#if defined(WL_WIRELESS_EXT)
struct iw_statistics *dhd_get_wireless_stats(struct net_device *dev);
#endif /* defined(WL_WIRELESS_EXT) */
-#ifndef BCMDBUS
static void dhd_dpc(ulong data);
-#endif
/* forward decl */
extern int dhd_wait_pend8021x(struct net_device *dev);
void dhd_os_wd_timer_extend(void *bus, bool extend);
@@ -1465,21 +905,27 @@
static int dhd_toe_get(dhd_info_t *dhd, int idx, uint32 *toe_ol);
static int dhd_toe_set(dhd_info_t *dhd, int idx, uint32 toe_ol);
#endif /* TOE */
-#ifdef BCMDBUS
-int dhd_dbus_txdata(dhd_pub_t *dhdp, void *pktbuf);
-#endif
-static int dhd_wl_host_event(dhd_info_t *dhd, int *ifidx, void *pktdata, uint16 pktlen,
- wl_event_msg_t *event_ptr, void **data_ptr);
+static int dhd_wl_host_event(dhd_info_t *dhd, int ifidx, void *pktdata, uint16 pktlen,
+ wl_event_msg_t *event_ptr, void **data_ptr);
#if defined(CONFIG_PM_SLEEP)
static int dhd_pm_callback(struct notifier_block *nfb, unsigned long action, void *ignored)
{
int ret = NOTIFY_DONE;
bool suspend = FALSE;
+
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
+#endif // endif
dhd_info_t *dhdinfo = (dhd_info_t*)container_of(nfb, struct dhd_info, pm_notifier);
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic pop
+#endif // endif
BCM_REFERENCE(dhdinfo);
+ BCM_REFERENCE(suspend);
switch (action) {
case PM_HIBERNATION_PREPARE:
@@ -1493,22 +939,18 @@
break;
}
-#if defined(SUPPORT_P2P_GO_PS)
-#ifdef PROP_TXSTATUS
+#if defined(SUPPORT_P2P_GO_PS) && defined(PROP_TXSTATUS)
if (suspend) {
DHD_OS_WAKE_LOCK_WAIVE(&dhdinfo->pub);
dhd_wlfc_suspend(&dhdinfo->pub);
DHD_OS_WAKE_LOCK_RESTORE(&dhdinfo->pub);
- } else
+ } else {
dhd_wlfc_resume(&dhdinfo->pub);
-#endif
-#endif /* defined(SUPPORT_P2P_GO_PS) */
+ }
+#endif /* defined(SUPPORT_P2P_GO_PS) && defined(PROP_TXSTATUS) */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)) && (LINUX_VERSION_CODE <= \
- KERNEL_VERSION(2, 6, 39))
dhd_mmc_suspend = suspend;
smp_mb();
-#endif
return ret;
}
@@ -1527,6 +969,11 @@
static void dhd_os_rxflock(dhd_pub_t *pub);
static void dhd_os_rxfunlock(dhd_pub_t *pub);
+#if defined(DHD_H2D_LOG_TIME_SYNC)
+static void
+dhd_deferred_work_rte_log_time_sync(void *handle, void *event_info, u8 event);
+#endif /* DHD_H2D_LOG_TIME_SYNC */
+
/** priv_link is the link between netdev and the dhdif and dhd_info structs. */
typedef struct dhd_dev_priv {
dhd_info_t * dhd; /* cached pointer to dhd_info in netdevice priv */
@@ -1542,6 +989,9 @@
#define DHD_DEV_IFIDX(dev) (((dhd_dev_priv_t *)DEV_PRIV(dev))->ifidx)
#define DHD_DEV_LKUP(dev) (((dhd_dev_priv_t *)DEV_PRIV(dev))->lkup)
+#if defined(DHD_OF_SUPPORT)
+extern int dhd_wlan_init(void);
+#endif /* defined(DHD_OF_SUPPORT) */
/** Clear the dhd net_device's private structure. */
static inline void
dhd_dev_priv_clear(struct net_device * dev)
@@ -1568,7 +1018,16 @@
dev_priv->ifidx = ifidx;
}
-#ifdef PCIE_FULL_DONGLE
+/* Return interface pointer */
+struct dhd_if * dhd_get_ifp(dhd_pub_t *dhdp, uint32 ifidx)
+{
+ ASSERT(ifidx < DHD_MAX_IFS);
+
+ if (!dhdp || !dhdp->info || ifidx >= DHD_MAX_IFS)
+ return NULL;
+
+ return dhdp->info->iflist[ifidx];
+}
/** Dummy objects are defined with state representing bad|down.
* Performance gains from reducing branch conditionals, instruction parallelism,
@@ -1579,17 +1038,11 @@
/* Dummy dhd_info object */
dhd_info_t dhd_info_null = {
-#if defined(BCM_GMAC3)
- .fwdh = FWDER_NULL,
-#endif
.pub = {
.info = &dhd_info_null,
#ifdef DHDTCPACK_SUPPRESS
.tcpack_sup_mode = TCPACK_SUP_REPLACE,
#endif /* DHDTCPACK_SUPPRESS */
-#if defined(TRAFFIC_MGMT_DWM)
- .dhd_tm_dwm_tbl = { .dhd_dwm_enabled = TRUE },
-#endif
.up = FALSE,
.busstate = DHD_BUS_DOWN
}
@@ -1605,12 +1058,9 @@
/* Dummy dhd_if object */
dhd_if_t dhd_if_null = {
-#if defined(BCM_GMAC3)
- .fwdh = FWDER_NULL,
-#endif
#ifdef WMF
.wmf = { .wmf_enable = TRUE },
-#endif
+#endif // endif
.info = DHD_INFO_NULL,
.net = DHD_NET_DEV_NULL,
.idx = DHD_BAD_IF
@@ -1620,9 +1070,6 @@
#define DHD_STA_NULL ((dhd_sta_t *)NULL)
/** Interface STA list management. */
-
-/** Fetch the dhd_if object, given the interface index in the dhd. */
-static inline dhd_if_t *dhd_get_ifp(dhd_pub_t *dhdp, uint32 ifidx);
/** Alloc/Free a dhd_sta object from the dhd instances' sta_pool. */
static void dhd_sta_free(dhd_pub_t *pub, dhd_sta_t *sta);
@@ -1638,28 +1085,19 @@
/* Clear the pool of dhd_sta_t objects for built-in type driver */
static void dhd_sta_pool_clear(dhd_pub_t *dhdp, int max_sta);
-
-/* Return interface pointer */
-static inline dhd_if_t *dhd_get_ifp(dhd_pub_t *dhdp, uint32 ifidx)
-{
- ASSERT(ifidx < DHD_MAX_IFS);
-
- if (ifidx >= DHD_MAX_IFS)
- return NULL;
-
- return dhdp->info->iflist[ifidx];
-}
-
/** Reset a dhd_sta object and free into the dhd pool. */
static void
dhd_sta_free(dhd_pub_t * dhdp, dhd_sta_t * sta)
{
+#ifdef PCIE_FULL_DONGLE
int prio;
+#endif // endif
ASSERT((sta != DHD_STA_NULL) && (sta->idx != ID16_INVALID));
ASSERT((dhdp->staid_allocator != NULL) && (dhdp->sta_pool != NULL));
+#ifdef PCIE_FULL_DONGLE
/*
* Flush and free all packets in all flowring's queues belonging to sta.
* Packets in flow ring will be flushed later.
@@ -1669,7 +1107,6 @@
if (flowid != FLOWID_INVALID) {
unsigned long flags;
- flow_queue_t * queue = dhd_flow_queue(dhdp, flowid);
flow_ring_node_t * flow_ring_node;
#ifdef DHDTCPACK_SUPPRESS
@@ -1680,22 +1117,28 @@
#endif /* DHDTCPACK_SUPPRESS */
flow_ring_node = dhd_flow_ring_node(dhdp, flowid);
- DHD_FLOWRING_LOCK(flow_ring_node->lock, flags);
- flow_ring_node->status = FLOW_RING_STATUS_STA_FREEING;
+ if (flow_ring_node) {
+ flow_queue_t *queue = &flow_ring_node->queue;
- if (!DHD_FLOW_QUEUE_EMPTY(queue)) {
- void * pkt;
- while ((pkt = dhd_flow_queue_dequeue(dhdp, queue)) != NULL) {
- PKTFREE(dhdp->osh, pkt, TRUE);
+ DHD_FLOWRING_LOCK(flow_ring_node->lock, flags);
+ flow_ring_node->status = FLOW_RING_STATUS_STA_FREEING;
+
+ if (!DHD_FLOW_QUEUE_EMPTY(queue)) {
+ void * pkt;
+ while ((pkt = dhd_flow_queue_dequeue(dhdp, queue)) !=
+ NULL) {
+ PKTFREE(dhdp->osh, pkt, TRUE);
+ }
}
- }
- DHD_FLOWRING_UNLOCK(flow_ring_node->lock, flags);
- ASSERT(DHD_FLOW_QUEUE_EMPTY(queue));
+ DHD_FLOWRING_UNLOCK(flow_ring_node->lock, flags);
+ ASSERT(DHD_FLOW_QUEUE_EMPTY(queue));
+ }
}
sta->flowid[prio] = FLOWID_INVALID;
}
+#endif /* PCIE_FULL_DONGLE */
id16_map_free(dhdp->staid_allocator, sta->idx);
DHD_CUMM_CTR_INIT(&sta->cumm_ctr);
@@ -1743,18 +1186,17 @@
unsigned long flags;
DHD_IF_STA_LIST_LOCK(ifp, flags);
-
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
+#endif // endif
list_for_each_entry_safe(sta, next, &ifp->sta_list, list) {
-#if defined(BCM_GMAC3)
- if (ifp->fwdh) {
- /* Remove sta from WOFA forwarder. */
- fwder_deassoc(ifp->fwdh, (uint16 *)(sta->ea.octet), (uintptr_t)sta);
- }
-#endif /* BCM_GMAC3 */
list_del(&sta->list);
dhd_sta_free(&ifp->info->pub, sta);
}
-
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic pop
+#endif // endif
DHD_IF_STA_LIST_UNLOCK(ifp, flags);
return;
@@ -1764,29 +1206,16 @@
static void
dhd_if_flush_sta(dhd_if_t * ifp)
{
-#if defined(BCM_GMAC3)
-
- if (ifp && (ifp->fwdh != FWDER_NULL)) {
- dhd_sta_t *sta, *next;
- unsigned long flags;
-
- DHD_IF_STA_LIST_LOCK(ifp, flags);
-
- list_for_each_entry_safe(sta, next, &ifp->sta_list, list) {
- /* Remove any sta entry from WOFA forwarder. */
- fwder_flush(ifp->fwdh, (uintptr_t)sta);
- }
-
- DHD_IF_STA_LIST_UNLOCK(ifp, flags);
- }
-#endif /* BCM_GMAC3 */
}
/** Construct a pool of dhd_sta_t objects to be used by interfaces. */
static int
dhd_sta_pool_init(dhd_pub_t *dhdp, int max_sta)
{
- int idx, prio, sta_pool_memsz;
+ int idx, sta_pool_memsz;
+#ifdef PCIE_FULL_DONGLE
+ int prio;
+#endif /* PCIE_FULL_DONGLE */
dhd_sta_t * sta;
dhd_sta_pool_t * sta_pool;
void * staid_allocator;
@@ -1820,12 +1249,15 @@
sta->idx = id16_map_alloc(staid_allocator);
ASSERT(sta->idx <= max_sta);
}
+
/* Now place them into the pre-allocated free pool. */
for (idx = 1; idx <= max_sta; idx++) {
sta = &sta_pool[idx];
+#ifdef PCIE_FULL_DONGLE
for (prio = 0; prio < (int)NUMPRIO; prio++) {
sta->flowid[prio] = FLOWID_INVALID; /* Flow rings do not exist */
}
+#endif /* PCIE_FULL_DONGLE */
dhd_sta_free(dhdp, sta);
}
@@ -1859,7 +1291,10 @@
static void
dhd_sta_pool_clear(dhd_pub_t *dhdp, int max_sta)
{
- int idx, prio, sta_pool_memsz;
+ int idx, sta_pool_memsz;
+#ifdef PCIE_FULL_DONGLE
+ int prio;
+#endif /* PCIE_FULL_DONGLE */
dhd_sta_t * sta;
dhd_sta_pool_t * sta_pool;
void *staid_allocator;
@@ -1898,9 +1333,11 @@
/* Now place them into the pre-allocated free pool. */
for (idx = 1; idx <= max_sta; idx++) {
sta = &sta_pool[idx];
+#ifdef PCIE_FULL_DONGLE
for (prio = 0; prio < (int)NUMPRIO; prio++) {
sta->flowid[prio] = FLOWID_INVALID; /* Flow rings do not exist */
}
+#endif /* PCIE_FULL_DONGLE */
dhd_sta_free(dhdp, sta);
}
}
@@ -1919,14 +1356,21 @@
return DHD_STA_NULL;
DHD_IF_STA_LIST_LOCK(ifp, flags);
-
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
+#endif // endif
list_for_each_entry(sta, &ifp->sta_list, list) {
if (!memcmp(sta->ea.octet, ea, ETHER_ADDR_LEN)) {
+ DHD_INFO(("%s: Found STA " MACDBG "\n",
+ __FUNCTION__, MAC2STRDBG((char *)ea)));
DHD_IF_STA_LIST_UNLOCK(ifp, flags);
return sta;
}
}
-
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic pop
+#endif // endif
DHD_IF_STA_LIST_UNLOCK(ifp, flags);
return DHD_STA_NULL;
@@ -1945,6 +1389,11 @@
if (ifp == NULL)
return DHD_STA_NULL;
+ if (!memcmp(ifp->net->dev_addr, ea, ETHER_ADDR_LEN)) {
+ DHD_ERROR(("%s: Serious FAILURE, receive own MAC %pM !!\n", __FUNCTION__, ea));
+ return DHD_STA_NULL;
+ }
+
sta = dhd_sta_alloc((dhd_pub_t *)pub);
if (sta == DHD_STA_NULL) {
DHD_ERROR(("%s: Alloc failed\n", __FUNCTION__));
@@ -1956,26 +1405,56 @@
/* link the sta and the dhd interface */
sta->ifp = ifp;
sta->ifidx = ifidx;
-#ifdef DHD_WMF
- sta->psta_prim = NULL;
-#endif
INIT_LIST_HEAD(&sta->list);
DHD_IF_STA_LIST_LOCK(ifp, flags);
list_add_tail(&sta->list, &ifp->sta_list);
-#if defined(BCM_GMAC3)
- if (ifp->fwdh) {
- ASSERT(ISALIGNED(ea, 2));
- /* Add sta to WOFA forwarder. */
- fwder_reassoc(ifp->fwdh, (uint16 *)ea, (uintptr_t)sta);
- }
-#endif /* BCM_GMAC3 */
+ DHD_ERROR(("%s: Adding STA " MACDBG "\n",
+ __FUNCTION__, MAC2STRDBG((char *)ea)));
DHD_IF_STA_LIST_UNLOCK(ifp, flags);
return sta;
+}
+
+/** Delete all STAs from the interface's STA list. */
+void
+dhd_del_all_sta(void *pub, int ifidx)
+{
+ dhd_sta_t *sta, *next;
+ dhd_if_t *ifp;
+ unsigned long flags;
+
+ ifp = dhd_get_ifp((dhd_pub_t *)pub, ifidx);
+ if (ifp == NULL)
+ return;
+
+ DHD_IF_STA_LIST_LOCK(ifp, flags);
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
+#endif // endif
+ list_for_each_entry_safe(sta, next, &ifp->sta_list, list) {
+
+ list_del(&sta->list);
+ dhd_sta_free(&ifp->info->pub, sta);
+#ifdef DHD_L2_FILTER
+ if (ifp->parp_enable) {
+ /* clear Proxy ARP cache of specific Ethernet Address */
+ bcm_l2_filter_arp_table_update(((dhd_pub_t*)pub)->osh,
+ ifp->phnd_arp_table, FALSE,
+ sta->ea.octet, FALSE, ((dhd_pub_t*)pub)->tickcnt);
+ }
+#endif /* DHD_L2_FILTER */
+ }
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic pop
+#endif // endif
+ DHD_IF_STA_LIST_UNLOCK(ifp, flags);
+
+ return;
}
/** Delete STA from the interface's STA list. */
@@ -1992,20 +1471,21 @@
return;
DHD_IF_STA_LIST_LOCK(ifp, flags);
-
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
+#endif // endif
list_for_each_entry_safe(sta, next, &ifp->sta_list, list) {
if (!memcmp(sta->ea.octet, ea, ETHER_ADDR_LEN)) {
-#if defined(BCM_GMAC3)
- if (ifp->fwdh) { /* Found a sta, remove from WOFA forwarder. */
- ASSERT(ISALIGNED(ea, 2));
- fwder_deassoc(ifp->fwdh, (uint16 *)ea, (uintptr_t)sta);
- }
-#endif /* BCM_GMAC3 */
+ DHD_ERROR(("%s: Deleting STA " MACDBG "\n",
+ __FUNCTION__, MAC2STRDBG(sta->ea.octet)));
list_del(&sta->list);
dhd_sta_free(&ifp->info->pub, sta);
}
}
-
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic pop
+#endif // endif
DHD_IF_STA_LIST_UNLOCK(ifp, flags);
#ifdef DHD_L2_FILTER
if (ifp->parp_enable) {
@@ -2034,7 +1514,6 @@
}
#if defined(DHD_IGMP_UCQUERY) || defined(DHD_UCAST_UPNP)
-#if !defined(BCM_GMAC3)
static struct list_head *
dhd_sta_list_snapshot(dhd_info_t *dhd, dhd_if_t *ifp, struct list_head *snapshot_list)
{
@@ -2074,375 +1553,23 @@
MFREE(dhd->pub.osh, sta, sizeof(dhd_sta_t));
}
}
-#endif /* !BCM_GMAC3 */
#endif /* DHD_IGMP_UCQUERY || DHD_UCAST_UPNP */
-#else
-static inline void dhd_if_flush_sta(dhd_if_t * ifp) { }
-static inline void dhd_if_del_sta_list(dhd_if_t *ifp) {}
-static inline int dhd_sta_pool_init(dhd_pub_t *dhdp, int max_sta) { return BCME_OK; }
-static inline void dhd_sta_pool_fini(dhd_pub_t *dhdp, int max_sta) {}
-static inline void dhd_sta_pool_clear(dhd_pub_t *dhdp, int max_sta) {}
-dhd_sta_t *dhd_findadd_sta(void *pub, int ifidx, void *ea) { return NULL; }
-void dhd_del_sta(void *pub, int ifidx, void *ea) {}
-#endif /* PCIE_FULL_DONGLE */
-
-
-#if defined(DHD_LB)
-
-#if defined(DHD_LB_TXC) || defined(DHD_LB_RXC)
-/**
- * dhd_tasklet_schedule - Function that runs in IPI context of the destination
- * CPU and schedules a tasklet.
- * @tasklet: opaque pointer to the tasklet
- */
-static INLINE void
-dhd_tasklet_schedule(void *tasklet)
-{
- tasklet_schedule((struct tasklet_struct *)tasklet);
-}
-
-/**
- * dhd_tasklet_schedule_on - Executes the passed takslet in a given CPU
- * @tasklet: tasklet to be scheduled
- * @on_cpu: cpu core id
- *
- * If the requested cpu is online, then an IPI is sent to this cpu via the
- * smp_call_function_single with no wait and the tasklet_schedule function
- * will be invoked to schedule the specified tasklet on the requested CPU.
- */
-static void
-dhd_tasklet_schedule_on(struct tasklet_struct *tasklet, int on_cpu)
-{
- const int wait = 0;
- smp_call_function_single(on_cpu,
- dhd_tasklet_schedule, (void *)tasklet, wait);
-}
-#endif /* DHD_LB_TXC || DHD_LB_RXC */
-
-
-#if defined(DHD_LB_TXC)
-/**
- * dhd_lb_tx_compl_dispatch - load balance by dispatching the tx_compl_tasklet
- * on another cpu. The tx_compl_tasklet will take care of DMA unmapping and
- * freeing the packets placed in the tx_compl workq
- */
+#if defined(DNGL_AXI_ERROR_LOGGING) && defined(DHD_USE_WQ_FOR_DNGL_AXI_ERROR)
void
-dhd_lb_tx_compl_dispatch(dhd_pub_t *dhdp)
+dhd_axi_error_dispatch(dhd_pub_t *dhdp)
{
dhd_info_t *dhd = dhdp->info;
- int curr_cpu, on_cpu;
-
- if (dhd->rx_napi_netdev == NULL) {
- DHD_ERROR(("%s: dhd->rx_napi_netdev is NULL\n", __FUNCTION__));
- return;
- }
-
- DHD_LB_STATS_INCR(dhd->txc_sched_cnt);
- /*
- * If the destination CPU is NOT online or is same as current CPU
- * no need to schedule the work
- */
- curr_cpu = get_cpu();
- put_cpu();
-
- on_cpu = atomic_read(&dhd->tx_compl_cpu);
-
- if ((on_cpu == curr_cpu) || (!cpu_online(on_cpu))) {
- dhd_tasklet_schedule(&dhd->tx_compl_tasklet);
- } else {
- schedule_work(&dhd->tx_compl_dispatcher_work);
- }
+ schedule_work(&dhd->axi_error_dispatcher_work);
}
-static void dhd_tx_compl_dispatcher_fn(struct work_struct * work)
+static void dhd_axi_error_dispatcher_fn(struct work_struct * work)
{
struct dhd_info *dhd =
- container_of(work, struct dhd_info, tx_compl_dispatcher_work);
- int cpu;
-
- get_online_cpus();
- cpu = atomic_read(&dhd->tx_compl_cpu);
- if (!cpu_online(cpu))
- dhd_tasklet_schedule(&dhd->tx_compl_tasklet);
- else
- dhd_tasklet_schedule_on(&dhd->tx_compl_tasklet, cpu);
- put_online_cpus();
+ container_of(work, struct dhd_info, axi_error_dispatcher_work);
+ dhd_axi_error(&dhd->pub);
}
-
-#endif /* DHD_LB_TXC */
-
-
-#if defined(DHD_LB_RXC)
-/**
- * dhd_lb_rx_compl_dispatch - load balance by dispatching the rx_compl_tasklet
- * on another cpu. The rx_compl_tasklet will take care of reposting rx buffers
- * in the H2D RxBuffer Post common ring, by using the recycled pktids that were
- * placed in the rx_compl workq.
- *
- * @dhdp: pointer to dhd_pub object
- */
-void
-dhd_lb_rx_compl_dispatch(dhd_pub_t *dhdp)
-{
- dhd_info_t *dhd = dhdp->info;
- int curr_cpu, on_cpu;
-
- if (dhd->rx_napi_netdev == NULL) {
- DHD_ERROR(("%s: dhd->rx_napi_netdev is NULL\n", __FUNCTION__));
- return;
- }
-
- DHD_LB_STATS_INCR(dhd->rxc_sched_cnt);
- /*
- * If the destination CPU is NOT online or is same as current CPU
- * no need to schedule the work
- */
- curr_cpu = get_cpu();
- put_cpu();
-
- on_cpu = atomic_read(&dhd->rx_compl_cpu);
-
- if ((on_cpu == curr_cpu) || (!cpu_online(on_cpu))) {
- dhd_tasklet_schedule(&dhd->rx_compl_tasklet);
- } else {
- schedule_work(&dhd->rx_compl_dispatcher_work);
- }
-}
-
-static void dhd_rx_compl_dispatcher_fn(struct work_struct * work)
-{
- struct dhd_info *dhd =
- container_of(work, struct dhd_info, rx_compl_dispatcher_work);
- int cpu;
-
- get_online_cpus();
- cpu = atomic_read(&dhd->tx_compl_cpu);
- if (!cpu_online(cpu))
- dhd_tasklet_schedule(&dhd->rx_compl_tasklet);
- else
- dhd_tasklet_schedule_on(&dhd->rx_compl_tasklet, cpu);
- put_online_cpus();
-}
-
-#endif /* DHD_LB_RXC */
-
-
-#if defined(DHD_LB_RXP)
-/**
- * dhd_napi_poll - Load balance napi poll function to process received
- * packets and send up the network stack using netif_receive_skb()
- *
- * @napi: napi object in which context this poll function is invoked
- * @budget: number of packets to be processed.
- *
- * Fetch the dhd_info given the rx_napi_struct. Move all packets from the
- * rx_napi_queue into a local rx_process_queue (lock and queue move and unlock).
- * Dequeue each packet from head of rx_process_queue, fetch the ifid from the
- * packet tag and sendup.
- */
-static int
-dhd_napi_poll(struct napi_struct *napi, int budget)
-{
- int ifid;
- const int pkt_count = 1;
- const int chan = 0;
- struct sk_buff * skb;
- unsigned long flags;
- struct dhd_info *dhd;
- int processed = 0;
- struct sk_buff_head rx_process_queue;
-
- dhd = container_of(napi, struct dhd_info, rx_napi_struct);
- DHD_INFO(("%s napi_queue<%d> budget<%d>\n",
- __FUNCTION__, skb_queue_len(&dhd->rx_napi_queue), budget));
-
- __skb_queue_head_init(&rx_process_queue);
-
- /* extract the entire rx_napi_queue into local rx_process_queue */
- spin_lock_irqsave(&dhd->rx_napi_queue.lock, flags);
- skb_queue_splice_tail_init(&dhd->rx_napi_queue, &rx_process_queue);
- spin_unlock_irqrestore(&dhd->rx_napi_queue.lock, flags);
-
- while ((skb = __skb_dequeue(&rx_process_queue)) != NULL) {
- OSL_PREFETCH(skb->data);
-
- ifid = DHD_PKTTAG_IFID((dhd_pkttag_fr_t *)PKTTAG(skb));
-
- DHD_INFO(("%s dhd_rx_frame pkt<%p> ifid<%d>\n",
- __FUNCTION__, skb, ifid));
-
- dhd_rx_frame(&dhd->pub, ifid, skb, pkt_count, chan);
- processed++;
- }
-
- DHD_LB_STATS_UPDATE_NAPI_HISTO(&dhd->pub, processed);
-
- DHD_INFO(("%s processed %d\n", __FUNCTION__, processed));
- napi_complete(napi);
-
- return budget - 1;
-}
-
-/**
- * dhd_napi_schedule - Place the napi struct into the current cpus softnet napi
- * poll list. This function may be invoked via the smp_call_function_single
- * from a remote CPU.
- *
- * This function will essentially invoke __raise_softirq_irqoff(NET_RX_SOFTIRQ)
- * after the napi_struct is added to the softnet data's poll_list
- *
- * @info: pointer to a dhd_info struct
- */
-static void
-dhd_napi_schedule(void *info)
-{
- dhd_info_t *dhd = (dhd_info_t *)info;
-
- DHD_INFO(("%s rx_napi_struct<%p> on cpu<%d>\n",
- __FUNCTION__, &dhd->rx_napi_struct, atomic_read(&dhd->rx_napi_cpu)));
-
- /* add napi_struct to softnet data poll list and raise NET_RX_SOFTIRQ */
- if (napi_schedule_prep(&dhd->rx_napi_struct)) {
- __napi_schedule(&dhd->rx_napi_struct);
- DHD_LB_STATS_PERCPU_ARR_INCR(dhd->napi_percpu_run_cnt);
- }
-
- /*
- * If the rx_napi_struct was already running, then we let it complete
- * processing all its packets. The rx_napi_struct may only run on one
- * core at a time, to avoid out-of-order handling.
- */
-}
-
-/**
- * dhd_napi_schedule_on - API to schedule on a desired CPU core a NET_RX_SOFTIRQ
- * action after placing the dhd's rx_process napi object in the the remote CPU's
- * softnet data's poll_list.
- *
- * @dhd: dhd_info which has the rx_process napi object
- * @on_cpu: desired remote CPU id
- */
-static INLINE int
-dhd_napi_schedule_on(dhd_info_t *dhd, int on_cpu)
-{
- int wait = 0; /* asynchronous IPI */
-
- DHD_INFO(("%s dhd<%p> napi<%p> on_cpu<%d>\n",
- __FUNCTION__, dhd, &dhd->rx_napi_struct, on_cpu));
-
- if (smp_call_function_single(on_cpu, dhd_napi_schedule, dhd, wait)) {
- DHD_ERROR(("%s smp_call_function_single on_cpu<%d> failed\n",
- __FUNCTION__, on_cpu));
- }
-
- DHD_LB_STATS_INCR(dhd->napi_sched_cnt);
-
- return 0;
-}
-
-/*
- * Call get_online_cpus/put_online_cpus around dhd_napi_schedule_on
- * Why should we do this?
- * The candidacy algorithm is run from the call back function
- * registered to CPU hotplug notifier. This call back happens from Worker
- * context. The dhd_napi_schedule_on is also from worker context.
- * Note that both of this can run on two different CPUs at the same time.
- * So we can possibly have a window where a given CPUn is being brought
- * down from CPUm while we try to run a function on CPUn.
- * To prevent this its better have the whole code to execute an SMP
- * function under get_online_cpus.
- * This function call ensures that hotplug mechanism does not kick-in
- * until we are done dealing with online CPUs
- * If the hotplug worker is already running, no worries because the
- * candidacy algo would then reflect the same in dhd->rx_napi_cpu.
- *
- * The below mentioned code structure is proposed in
- * https://www.kernel.org/doc/Documentation/cpu-hotplug.txt
- * for the question
- * Q: I need to ensure that a particular cpu is not removed when there is some
- * work specific to this cpu is in progress
- *
- * According to the documentation calling get_online_cpus is NOT required, if
- * we are running from tasklet context. Since dhd_rx_napi_dispatcher_fn can
- * run from Work Queue context we have to call these functions
- */
-static void dhd_rx_napi_dispatcher_fn(struct work_struct * work)
-{
- struct dhd_info *dhd =
- container_of(work, struct dhd_info, rx_napi_dispatcher_work);
- int cpu;
-
- get_online_cpus();
- cpu = atomic_read(&dhd->rx_napi_cpu);
- if (!cpu_online(cpu))
- dhd_napi_schedule(dhd);
- else
- dhd_napi_schedule_on(dhd, cpu);
- put_online_cpus();
-}
-
-/**
- * dhd_lb_rx_napi_dispatch - load balance by dispatching the rx_napi_struct
- * to run on another CPU. The rx_napi_struct's poll function will retrieve all
- * the packets enqueued into the rx_napi_queue and sendup.
- * The producer's rx packet queue is appended to the rx_napi_queue before
- * dispatching the rx_napi_struct.
- */
-void
-dhd_lb_rx_napi_dispatch(dhd_pub_t *dhdp)
-{
- unsigned long flags;
- dhd_info_t *dhd = dhdp->info;
- int curr_cpu;
- int on_cpu;
-
- if (dhd->rx_napi_netdev == NULL) {
- DHD_ERROR(("%s: dhd->rx_napi_netdev is NULL\n", __FUNCTION__));
- return;
- }
-
- DHD_INFO(("%s append napi_queue<%d> pend_queue<%d>\n", __FUNCTION__,
- skb_queue_len(&dhd->rx_napi_queue), skb_queue_len(&dhd->rx_pend_queue)));
-
- /* append the producer's queue of packets to the napi's rx process queue */
- spin_lock_irqsave(&dhd->rx_napi_queue.lock, flags);
- skb_queue_splice_tail_init(&dhd->rx_pend_queue, &dhd->rx_napi_queue);
- spin_unlock_irqrestore(&dhd->rx_napi_queue.lock, flags);
-
- /*
- * If the destination CPU is NOT online or is same as current CPU
- * no need to schedule the work
- */
- curr_cpu = get_cpu();
- put_cpu();
-
- on_cpu = atomic_read(&dhd->rx_napi_cpu);
-
- if ((on_cpu == curr_cpu) || (!cpu_online(on_cpu))) {
- dhd_napi_schedule(dhd);
- } else {
- schedule_work(&dhd->rx_napi_dispatcher_work);
- }
-}
-
-/**
- * dhd_lb_rx_pkt_enqueue - Enqueue the packet into the producer's queue
- */
-void
-dhd_lb_rx_pkt_enqueue(dhd_pub_t *dhdp, void *pkt, int ifidx)
-{
- dhd_info_t *dhd = dhdp->info;
-
- DHD_INFO(("%s enqueue pkt<%p> ifidx<%d> pend_queue<%d>\n", __FUNCTION__,
- pkt, ifidx, skb_queue_len(&dhd->rx_pend_queue)));
- DHD_PKTTAG_SET_IFID((dhd_pkttag_fr_t *)PKTTAG(pkt), ifidx);
- __skb_queue_tail(&dhd->rx_pend_queue, pkt);
-}
-#endif /* DHD_LB_RXP */
-
-#endif /* DHD_LB */
-
+#endif /* DNGL_AXI_ERROR_LOGGING && DHD_USE_WQ_FOR_DNGL_AXI_ERROR */
/** Returns dhd iflist index corresponding the the bssidx provided by apps */
int dhd_bssidx2idx(dhd_pub_t *dhdp, uint32 bssidx)
@@ -2481,11 +1608,6 @@
if (dhdp->skbbuf[store_idx] != NULL) {
/* Make sure the previous packets are processed */
dhd_os_rxfunlock(dhdp);
-#ifdef RXF_DEQUEUE_ON_BUSY
- DHD_TRACE(("dhd_rxf_enqueue: pktbuf not consumed %p, store idx %d sent idx %d\n",
- skb, store_idx, sent_idx));
- return BCME_BUSY;
-#else /* RXF_DEQUEUE_ON_BUSY */
DHD_ERROR(("dhd_rxf_enqueue: pktbuf not consumed %p, store idx %d sent idx %d\n",
skb, store_idx, sent_idx));
/* removed msleep here, should use wait_event_timeout if we
@@ -2493,9 +1615,8 @@
*/
#if defined(WAIT_DEQUEUE)
OSL_SLEEP(1);
-#endif
+#endif // endif
return BCME_ERROR;
-#endif /* RXF_DEQUEUE_ON_BUSY */
}
DHD_TRACE(("dhd_rxf_enqueue: Store SKB %p. idx %d -> %d\n",
skb, store_idx, (store_idx + 1) & (MAXSKBPEND - 1)));
@@ -2538,43 +1659,106 @@
int dhd_process_cid_mac(dhd_pub_t *dhdp, bool prepost)
{
- dhd_info_t *dhd = (dhd_info_t *)dhdp->info;
-
if (prepost) { /* pre process */
- dhd_read_macaddr(dhd);
+ dhd_read_cis(dhdp);
+ dhd_check_module_cid(dhdp);
+ dhd_check_module_mac(dhdp);
+ dhd_set_macaddr_from_file(dhdp);
} else { /* post process */
- dhd_write_macaddr(&dhd->pub.mac);
+ dhd_write_macaddr(&dhdp->mac);
+ dhd_clear_cis(dhdp);
}
return 0;
}
-#if defined(PKT_FILTER_SUPPORT) && !defined(GAN_LITE_NAT_KEEPALIVE_FILTER)
+#if defined(WL_CFG80211) && defined(DHD_FILE_DUMP_EVENT) && defined(DHD_FW_COREDUMP)
+static int dhd_wait_for_file_dump(dhd_pub_t *dhdp)
+{
+ struct net_device *primary_ndev;
+ struct bcm_cfg80211 *cfg;
+ unsigned long flags = 0;
+ primary_ndev = dhd_linux_get_primary_netdev(dhdp);
+
+ if (!primary_ndev) {
+ DHD_ERROR(("%s: Cannot find primary netdev\n", __FUNCTION__));
+ return BCME_ERROR;
+ }
+ cfg = wl_get_cfg(primary_ndev);
+
+ if (!cfg) {
+ DHD_ERROR(("%s: Cannot find cfg\n", __FUNCTION__));
+ return BCME_ERROR;
+ }
+
+ DHD_GENERAL_LOCK(dhdp, flags);
+ if (DHD_BUS_CHECK_DOWN_OR_DOWN_IN_PROGRESS(dhdp)) {
+ DHD_BUS_BUSY_CLEAR_IN_HALDUMP(dhdp);
+ dhd_os_busbusy_wake(dhdp);
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+ DHD_ERROR(("%s: bus is down! can't collect log dump. \n", __FUNCTION__));
+ return BCME_ERROR;
+ }
+ DHD_BUS_BUSY_SET_IN_HALDUMP(dhdp);
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+
+ DHD_OS_WAKE_LOCK(dhdp);
+ /* check for hal started and only then send event if not clear dump state here */
+ if (wl_cfg80211_is_hal_started(cfg)) {
+ int timeleft = 0;
+
+ DHD_ERROR(("[DUMP] %s: HAL started. send urgent event\n", __FUNCTION__));
+ dhd_dbg_send_urgent_evt(dhdp, NULL, 0);
+
+ DHD_ERROR(("%s: wait to clear dhd_bus_busy_state: 0x%x\n",
+ __FUNCTION__, dhdp->dhd_bus_busy_state));
+ timeleft = dhd_os_busbusy_wait_bitmask(dhdp,
+ &dhdp->dhd_bus_busy_state, DHD_BUS_BUSY_IN_HALDUMP, 0);
+ if ((dhdp->dhd_bus_busy_state & DHD_BUS_BUSY_IN_HALDUMP) != 0) {
+ DHD_ERROR(("%s: Timed out dhd_bus_busy_state=0x%x\n",
+ __FUNCTION__, dhdp->dhd_bus_busy_state));
+ }
+ } else {
+ DHD_ERROR(("[DUMP] %s: HAL Not started. skip urgent event\n", __FUNCTION__));
+ }
+ DHD_OS_WAKE_UNLOCK(dhdp);
+ /* In case of dhd_os_busbusy_wait_bitmask() timeout,
+ * hal dump bit will not be cleared. Hence clearing it here.
+ */
+ DHD_GENERAL_LOCK(dhdp, flags);
+ DHD_BUS_BUSY_CLEAR_IN_HALDUMP(dhdp);
+ dhd_os_busbusy_wake(dhdp);
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+
+ return BCME_OK;
+}
+#endif /* WL_CFG80211 && DHD_FILE_DUMP_EVENT && DHD_FW_CORE_DUMP */
+
+#ifdef PKT_FILTER_SUPPORT
+#ifndef GAN_LITE_NAT_KEEPALIVE_FILTER
static bool
-_turn_on_arp_filter(dhd_pub_t *dhd, int op_mode)
+_turn_on_arp_filter(dhd_pub_t *dhd, int op_mode_param)
{
bool _apply = FALSE;
/* In case of IBSS mode, apply arp pkt filter */
- if (op_mode & DHD_FLAG_IBSS_MODE) {
+ if (op_mode_param & DHD_FLAG_IBSS_MODE) {
_apply = TRUE;
goto exit;
}
-#ifndef STBLINUX
/* In case of P2P GO or GC, apply pkt filter to pass arp pkt to host */
- if ((dhd->arp_version == 1) &&
- (op_mode & (DHD_FLAG_P2P_GC_MODE | DHD_FLAG_P2P_GO_MODE))) {
+ if (op_mode_param & (DHD_FLAG_P2P_GC_MODE | DHD_FLAG_P2P_GO_MODE)) {
_apply = TRUE;
goto exit;
}
-#endif /* STBLINUX */
+
exit:
return _apply;
}
-#endif /* PKT_FILTER_SUPPORT && !GAN_LITE_NAT_KEEPALIVE_FILTER */
+#endif /* !GAN_LITE_NAT_KEEPALIVE_FILTER */
-void dhd_set_packet_filter(dhd_pub_t *dhd)
+void
+dhd_set_packet_filter(dhd_pub_t *dhd)
{
-#ifdef PKT_FILTER_SUPPORT
int i;
DHD_TRACE(("%s: enter\n", __FUNCTION__));
@@ -2583,15 +1767,18 @@
dhd_pktfilter_offload_set(dhd, dhd->pktfilter[i]);
}
}
-#endif /* PKT_FILTER_SUPPORT */
}
-void dhd_enable_packet_filter(int value, dhd_pub_t *dhd)
+void
+dhd_enable_packet_filter(int value, dhd_pub_t *dhd)
{
-#ifdef PKT_FILTER_SUPPORT
int i;
- DHD_TRACE(("%s: enter, value = %d\n", __FUNCTION__, value));
+ DHD_ERROR(("%s: enter, value = %d\n", __FUNCTION__, value));
+ if ((dhd->op_mode & DHD_FLAG_HOSTAP_MODE) && value) {
+ DHD_ERROR(("%s: DHD_FLAG_HOSTAP_MODE\n", __FUNCTION__));
+ return;
+ }
/* 1 - Enable packet filter, only allow unicast packet to send up */
/* 0 - Disable packet filter */
if (dhd_pkt_filter_enable && (!value ||
@@ -2611,8 +1798,80 @@
value, dhd_master_mode);
}
}
-#endif /* PKT_FILTER_SUPPORT */
}
+
+int
+dhd_packet_filter_add_remove(dhd_pub_t *dhdp, int add_remove, int num)
+{
+ char *filterp = NULL;
+ int filter_id = 0;
+
+ switch (num) {
+ case DHD_BROADCAST_FILTER_NUM:
+ filterp = "101 0 0 0 0xFFFFFFFFFFFF 0xFFFFFFFFFFFF";
+ filter_id = 101;
+ break;
+ case DHD_MULTICAST4_FILTER_NUM:
+ filter_id = 102;
+ if (FW_SUPPORTED((dhdp), pf6)) {
+ if (dhdp->pktfilter[num] != NULL) {
+ dhd_pktfilter_offload_delete(dhdp, filter_id);
+ dhdp->pktfilter[num] = NULL;
+ }
+ if (!add_remove) {
+ filterp = DISCARD_IPV4_MCAST;
+ add_remove = 1;
+ break;
+ }
+ }
+ filterp = "102 0 0 0 0xFFFFFF 0x01005E";
+ break;
+ case DHD_MULTICAST6_FILTER_NUM:
+ filter_id = 103;
+ if (FW_SUPPORTED((dhdp), pf6)) {
+ if (dhdp->pktfilter[num] != NULL) {
+ dhd_pktfilter_offload_delete(dhdp, filter_id);
+ dhdp->pktfilter[num] = NULL;
+ }
+ if (!add_remove) {
+ filterp = DISCARD_IPV6_MCAST;
+ add_remove = 1;
+ break;
+ }
+ }
+ filterp = "103 0 0 0 0xFFFF 0x3333";
+ break;
+ case DHD_MDNS_FILTER_NUM:
+ filterp = "104 0 0 0 0xFFFFFFFFFFFF 0x01005E0000FB";
+ filter_id = 104;
+ break;
+ case DHD_ARP_FILTER_NUM:
+ filterp = "105 0 0 12 0xFFFF 0x0806";
+ filter_id = 105;
+ break;
+ case DHD_BROADCAST_ARP_FILTER_NUM:
+ filterp = "106 0 0 0 0xFFFFFFFFFFFF0000000000000806"
+ " 0xFFFFFFFFFFFF0000000000000806";
+ filter_id = 106;
+ break;
+ default:
+ return -EINVAL;
+ }
+
+ /* Add filter */
+ if (add_remove) {
+ dhdp->pktfilter[num] = filterp;
+ dhd_pktfilter_offload_set(dhdp, dhdp->pktfilter[num]);
+ } else { /* Delete filter */
+ if (dhdp->pktfilter[num]) {
+ dhd_pktfilter_offload_delete(dhdp, filter_id);
+ dhdp->pktfilter[num] = NULL;
+ }
+ }
+
+ return 0;
+}
+#endif /* PKT_FILTER_SUPPORT */
static int dhd_set_suspend(int value, dhd_pub_t *dhd)
{
@@ -2621,27 +1880,58 @@
#endif /* SUPPORT_PM2_ONLY */
/* wl_pkt_filter_enable_t enable_parm; */
int bcn_li_dtim = 0; /* Default bcn_li_dtim in resume mode is 0 */
+ int ret = 0;
+#ifdef DHD_USE_EARLYSUSPEND
#ifdef CUSTOM_BCN_TIMEOUT_IN_SUSPEND
int bcn_timeout = 0;
#endif /* CUSTOM_BCN_TIMEOUT_IN_SUSPEND */
#ifdef CUSTOM_ROAM_TIME_THRESH_IN_SUSPEND
- int roam_time_thresh = 0; /* (ms) */
+ int roam_time_thresh = 0; /* (ms) */
#endif /* CUSTOM_ROAM_TIME_THRESH_IN_SUSPEND */
#ifndef ENABLE_FW_ROAM_SUSPEND
uint roamvar = 1;
#endif /* ENABLE_FW_ROAM_SUSPEND */
+#ifdef ENABLE_BCN_LI_BCN_WAKEUP
+ int bcn_li_bcn = 1;
+#endif /* ENABLE_BCN_LI_BCN_WAKEUP */
uint nd_ra_filter = 0;
- int ret = 0;
-
+#ifdef ENABLE_IPMCAST_FILTER
+ int ipmcast_l2filter;
+#endif /* ENABLE_IPMCAST_FILTER */
+#ifdef CUSTOM_EVENT_PM_WAKE
+ uint32 pm_awake_thresh = CUSTOM_EVENT_PM_WAKE;
+#endif /* CUSTOM_EVENT_PM_WAKE */
+#endif /* DHD_USE_EARLYSUSPEND */
+#ifdef PASS_ALL_MCAST_PKTS
+ struct dhd_info *dhdinfo;
+ uint32 allmulti;
+ uint i;
+#endif /* PASS_ALL_MCAST_PKTS */
#ifdef DYNAMIC_SWOOB_DURATION
#ifndef CUSTOM_INTR_WIDTH
#define CUSTOM_INTR_WIDTH 100
int intr_width = 0;
#endif /* CUSTOM_INTR_WIDTH */
#endif /* DYNAMIC_SWOOB_DURATION */
+
+#if defined(OEM_ANDROID) && defined(BCMPCIE)
+ int lpas = 0;
+ int dtim_period = 0;
+ int bcn_interval = 0;
+ int bcn_to_dly = 0;
+#if defined(CUSTOM_BCN_TIMEOUT_IN_SUSPEND) && defined(DHD_USE_EARLYSUSPEND)
+ bcn_timeout = CUSTOM_BCN_TIMEOUT_SETTING;
+#else
+ int bcn_timeout = CUSTOM_BCN_TIMEOUT_SETTING;
+#endif /* CUSTOM_BCN_TIMEOUT_IN_SUSPEND && DHD_USE_EARLYSUSPEND */
+#endif /* OEM_ANDROID && BCMPCIE */
+
if (!dhd)
return -ENODEV;
+#ifdef PASS_ALL_MCAST_PKTS
+ dhdinfo = dhd->info;
+#endif /* PASS_ALL_MCAST_PKTS */
DHD_TRACE(("%s: enter, value = %d in_suspend=%d\n",
__FUNCTION__, value, dhd->in_suspend));
@@ -2657,7 +1947,7 @@
if (value && dhd->in_suspend) {
#ifdef PKT_FILTER_SUPPORT
dhd->early_suspended = 1;
-#endif
+#endif // endif
/* Kernel suspended */
DHD_ERROR(("%s: force extra Suspend setting \n", __FUNCTION__));
@@ -2666,16 +1956,34 @@
sizeof(power_mode), TRUE, 0);
#endif /* SUPPORT_PM2_ONLY */
-#ifdef WL_VIRTUAL_APSTA
- /* Softap shouldn't enable packet filter in STA+SoftAP mode */
- if (!(dhd->op_mode & DHD_FLAG_HOSTAP_MODE))
-#endif /* WL_VIRTUAL_APSTA */
- {
- /* Enable packet filter,
- * only allow unicast packet to send up
- */
- dhd_enable_packet_filter(1, dhd);
+#ifdef PKT_FILTER_SUPPORT
+ /* Enable packet filter,
+ * only allow unicast packet to send up
+ */
+ dhd_enable_packet_filter(1, dhd);
+#ifdef APF
+ dhd_dev_apf_enable_filter(dhd_linux_get_primary_netdev(dhd));
+#endif /* APF */
+#endif /* PKT_FILTER_SUPPORT */
+#ifdef ARP_OFFLOAD_SUPPORT
+ dhd_arp_offload_enable(dhd, TRUE);
+#endif /* ARP_OFFLOAD_SUPPORT */
+
+#ifdef PASS_ALL_MCAST_PKTS
+ allmulti = 0;
+ for (i = 0; i < DHD_MAX_IFS; i++) {
+ if (dhdinfo->iflist[i] && dhdinfo->iflist[i]->net) {
+ ret = dhd_iovar(dhd, i, "allmulti",
+ (char *)&allmulti,
+ sizeof(allmulti),
+ NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s allmulti failed %d\n",
+ __FUNCTION__, ret));
+ }
+ }
}
+#endif /* PASS_ALL_MCAST_PKTS */
/* If DTIM skip is set up as default, force it to wake
* each third DTIM for better power savings. Note that
@@ -2687,26 +1995,131 @@
bcn_li_dtim = 0;
} else
#endif /* WLTDLS */
+#if defined(OEM_ANDROID) && defined(BCMPCIE)
+ bcn_li_dtim = dhd_get_suspend_bcn_li_dtim(dhd, &dtim_period,
+ &bcn_interval);
+ ret = dhd_iovar(dhd, 0, "bcn_li_dtim", (char *)&bcn_li_dtim,
+ sizeof(bcn_li_dtim), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s bcn_li_dtim failed %d\n",
+ __FUNCTION__, ret));
+ }
+ if ((bcn_li_dtim * dtim_period * bcn_interval) >=
+ MIN_DTIM_FOR_ROAM_THRES_EXTEND) {
+ /*
+ * Increase max roaming threshold from 2 secs to 8 secs
+ * the real roam threshold is MIN(max_roam_threshold,
+ * bcn_timeout/2)
+ */
+ lpas = 1;
+ ret = dhd_iovar(dhd, 0, "lpas", (char *)&lpas, sizeof(lpas),
+ NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s lpas failed %d\n", __FUNCTION__,
+ ret));
+ }
+ bcn_to_dly = 1;
+ /*
+ * if bcn_to_dly is 1, the real roam threshold is
+ * MIN(max_roam_threshold, bcn_timeout -1);
+ * notify link down event after roaming procedure complete
+ * if we hit bcn_timeout while we are in roaming progress.
+ */
+ ret = dhd_iovar(dhd, 0, "bcn_to_dly", (char *)&bcn_to_dly,
+ sizeof(bcn_to_dly), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s bcn_to_dly failed %d\n",
+ __FUNCTION__, ret));
+ }
+ /* Increase beacon timeout to 6 secs or use bigger one */
+ bcn_timeout = max(bcn_timeout, BCN_TIMEOUT_IN_SUSPEND);
+ ret = dhd_iovar(dhd, 0, "bcn_timeout", (char *)&bcn_timeout,
+ sizeof(bcn_timeout), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s bcn_timeout failed %d\n",
+ __FUNCTION__, ret));
+ }
+ }
+#else
bcn_li_dtim = dhd_get_suspend_bcn_li_dtim(dhd);
if (dhd_iovar(dhd, 0, "bcn_li_dtim", (char *)&bcn_li_dtim,
sizeof(bcn_li_dtim), NULL, 0, TRUE) < 0)
- DHD_ERROR(("%s: set dtim failed\n", __FUNCTION__));
+ DHD_ERROR(("%s: set dtim failed\n", __FUNCTION__));
+#endif /* OEM_ANDROID && BCMPCIE */
+#ifdef WL_CFG80211
+ /* Disable cfg80211 feature events during suspend */
+ ret = wl_cfg80211_config_suspend_events(
+ dhd_linux_get_primary_netdev(dhd), FALSE);
+ if (ret < 0) {
+ DHD_ERROR(("failed to disable events (%d)\n", ret));
+ }
+#endif /* WL_CFG80211 */
+#ifdef DHD_USE_EARLYSUSPEND
#ifdef CUSTOM_BCN_TIMEOUT_IN_SUSPEND
bcn_timeout = CUSTOM_BCN_TIMEOUT_IN_SUSPEND;
- dhd_iovar(dhd, 0, "bcn_timeout", (char *)&bcn_timeout,
+ ret = dhd_iovar(dhd, 0, "bcn_timeout", (char *)&bcn_timeout,
sizeof(bcn_timeout), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s bcn_timeout failed %d\n", __FUNCTION__,
+ ret));
+ }
#endif /* CUSTOM_BCN_TIMEOUT_IN_SUSPEND */
#ifdef CUSTOM_ROAM_TIME_THRESH_IN_SUSPEND
roam_time_thresh = CUSTOM_ROAM_TIME_THRESH_IN_SUSPEND;
- dhd_iovar(dhd, 0, "roam_time_thresh", (char *)&roam_time_thresh,
+ ret = dhd_iovar(dhd, 0, "roam_time_thresh",
+ (char *)&roam_time_thresh,
sizeof(roam_time_thresh), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s roam_time_thresh failed %d\n",
+ __FUNCTION__, ret));
+ }
#endif /* CUSTOM_ROAM_TIME_THRESH_IN_SUSPEND */
#ifndef ENABLE_FW_ROAM_SUSPEND
/* Disable firmware roaming during suspend */
- dhd_iovar(dhd, 0, "roam_off", (char *)&roamvar, sizeof(roamvar),
- NULL, 0, TRUE);
+ ret = dhd_iovar(dhd, 0, "roam_off", (char *)&roamvar,
+ sizeof(roamvar), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s roam_off failed %d\n",
+ __FUNCTION__, ret));
+ }
#endif /* ENABLE_FW_ROAM_SUSPEND */
+#ifdef ENABLE_BCN_LI_BCN_WAKEUP
+ if (bcn_li_dtim) {
+ bcn_li_bcn = 0;
+ }
+ ret = dhd_iovar(dhd, 0, "bcn_li_bcn", (char *)&bcn_li_bcn,
+ sizeof(bcn_li_bcn), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s bcn_li_bcn failed %d\n", __FUNCTION__, ret));
+ }
+#endif /* ENABLE_BCN_LI_BCN_WAKEUP */
+#if defined(WL_CFG80211) && defined(WL_BCNRECV)
+ ret = wl_android_bcnrecv_suspend(dhd_linux_get_primary_netdev(dhd));
+ if (ret != BCME_OK) {
+ DHD_ERROR(("failed to stop beacon recv event on"
+ " suspend state (%d)\n", ret));
+ }
+#endif /* WL_CFG80211 && WL_BCNRECV */
+#ifdef NDO_CONFIG_SUPPORT
+ if (dhd->ndo_enable) {
+ if (!dhd->ndo_host_ip_overflow) {
+ /* enable ND offload on suspend */
+ ret = dhd_ndo_enable(dhd, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: failed to enable NDO\n",
+ __FUNCTION__));
+ }
+ } else {
+ DHD_INFO(("%s: NDO disabled on suspend due to"
+ "HW capacity\n", __FUNCTION__));
+ }
+ }
+#endif /* NDO_CONFIG_SUPPORT */
+#ifndef APF
if (FW_SUPPORTED(dhd, ndoe)) {
+#else
+ if (FW_SUPPORTED(dhd, ndoe) && !FW_SUPPORTED(dhd, apf)) {
+#endif /* APF */
/* enable IPv6 RA filter in firmware during suspend */
nd_ra_filter = 1;
ret = dhd_iovar(dhd, 0, "nd_ra_filter_enable",
@@ -2717,6 +2130,15 @@
ret));
}
dhd_os_suppress_logging(dhd, TRUE);
+#ifdef ENABLE_IPMCAST_FILTER
+ ipmcast_l2filter = 1;
+ ret = dhd_iovar(dhd, 0, "ipmcast_l2filter",
+ (char *)&ipmcast_l2filter, sizeof(ipmcast_l2filter),
+ NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("failed to set ipmcast_l2filter (%d)\n", ret));
+ }
+#endif /* ENABLE_IPMCAST_FILTER */
#ifdef DYNAMIC_SWOOB_DURATION
intr_width = CUSTOM_INTR_WIDTH;
ret = dhd_iovar(dhd, 0, "bus:intr_width", (char *)&intr_width,
@@ -2725,10 +2147,31 @@
DHD_ERROR(("failed to set intr_width (%d)\n", ret));
}
#endif /* DYNAMIC_SWOOB_DURATION */
+#ifdef CUSTOM_EVENT_PM_WAKE
+ pm_awake_thresh = CUSTOM_EVENT_PM_WAKE * 4;
+ ret = dhd_iovar(dhd, 0, "const_awake_thresh",
+ (char *)&pm_awake_thresh,
+ sizeof(pm_awake_thresh), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s set const_awake_thresh failed %d\n",
+ __FUNCTION__, ret));
+ }
+#endif /* CUSTOM_EVENT_PM_WAKE */
+#ifdef CONFIG_SILENT_ROAM
+ if (!dhd->sroamed) {
+ ret = dhd_sroam_set_mon(dhd, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s set sroam failed %d\n",
+ __FUNCTION__, ret));
+ }
+ }
+ dhd->sroamed = FALSE;
+#endif /* CONFIG_SILENT_ROAM */
+#endif /* DHD_USE_EARLYSUSPEND */
} else {
#ifdef PKT_FILTER_SUPPORT
dhd->early_suspended = 0;
-#endif
+#endif // endif
/* Kernel resumed */
DHD_ERROR(("%s: Remove extra suspend setting \n", __FUNCTION__));
#ifdef DYNAMIC_SWOOB_DURATION
@@ -2744,39 +2187,168 @@
dhd_wl_ioctl_cmd(dhd, WLC_SET_PM, (char *)&power_mode,
sizeof(power_mode), TRUE, 0);
#endif /* SUPPORT_PM2_ONLY */
+#if defined(WL_CFG80211) && defined(WL_BCNRECV)
+ ret = wl_android_bcnrecv_resume(dhd_linux_get_primary_netdev(dhd));
+ if (ret != BCME_OK) {
+ DHD_ERROR(("failed to resume beacon recv state (%d)\n",
+ ret));
+ }
+#endif /* WL_CF80211 && WL_BCNRECV */
+#ifdef ARP_OFFLOAD_SUPPORT
+ dhd_arp_offload_enable(dhd, FALSE);
+#endif /* ARP_OFFLOAD_SUPPORT */
#ifdef PKT_FILTER_SUPPORT
/* disable pkt filter */
dhd_enable_packet_filter(0, dhd);
+#ifdef APF
+ dhd_dev_apf_disable_filter(dhd_linux_get_primary_netdev(dhd));
+#endif /* APF */
#endif /* PKT_FILTER_SUPPORT */
-
- /* restore pre-suspend setting for dtim_skip */
- dhd_iovar(dhd, 0, "bcn_li_dtim", (char *)&bcn_li_dtim,
+#ifdef PASS_ALL_MCAST_PKTS
+ allmulti = 1;
+ for (i = 0; i < DHD_MAX_IFS; i++) {
+ if (dhdinfo->iflist[i] && dhdinfo->iflist[i]->net)
+ ret = dhd_iovar(dhd, i, "allmulti",
+ (char *)&allmulti,
+ sizeof(allmulti), NULL,
+ 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: allmulti failed:%d\n",
+ __FUNCTION__, ret));
+ }
+ }
+#endif /* PASS_ALL_MCAST_PKTS */
+#if defined(OEM_ANDROID) && defined(BCMPCIE)
+ /* restore pre-suspend setting */
+ ret = dhd_iovar(dhd, 0, "bcn_li_dtim", (char *)&bcn_li_dtim,
sizeof(bcn_li_dtim), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s:bcn_li_ditm failed:%d\n",
+ __FUNCTION__, ret));
+ }
+ ret = dhd_iovar(dhd, 0, "lpas", (char *)&lpas, sizeof(lpas), NULL,
+ 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s:lpas failed:%d\n", __FUNCTION__, ret));
+ }
+ ret = dhd_iovar(dhd, 0, "bcn_to_dly", (char *)&bcn_to_dly,
+ sizeof(bcn_to_dly), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s:bcn_to_dly failed:%d\n", __FUNCTION__, ret));
+ }
+ ret = dhd_iovar(dhd, 0, "bcn_timeout", (char *)&bcn_timeout,
+ sizeof(bcn_timeout), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s:bcn_timeout failed:%d\n",
+ __FUNCTION__, ret));
+ }
+#else
+ /* restore pre-suspend setting for dtim_skip */
+ ret = dhd_iovar(dhd, 0, "bcn_li_dtim", (char *)&bcn_li_dtim,
+ sizeof(bcn_li_dtim), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s:bcn_li_ditm fail:%d\n", __FUNCTION__, ret));
+ }
+#endif /* OEM_ANDROID && BCMPCIE */
+#ifdef DHD_USE_EARLYSUSPEND
#ifdef CUSTOM_BCN_TIMEOUT_IN_SUSPEND
bcn_timeout = CUSTOM_BCN_TIMEOUT;
- dhd_iovar(dhd, 0, "bcn_timeout", (char *)&bcn_timeout,
+ ret = dhd_iovar(dhd, 0, "bcn_timeout", (char *)&bcn_timeout,
sizeof(bcn_timeout), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s:bcn_timeout failed:%d\n",
+ __FUNCTION__, ret));
+ }
#endif /* CUSTOM_BCN_TIMEOUT_IN_SUSPEND */
#ifdef CUSTOM_ROAM_TIME_THRESH_IN_SUSPEND
roam_time_thresh = 2000;
- dhd_iovar(dhd, 0, "roam_time_thresh", (char *)&roam_time_thresh,
+ ret = dhd_iovar(dhd, 0, "roam_time_thresh",
+ (char *)&roam_time_thresh,
sizeof(roam_time_thresh), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s:roam_time_thresh failed:%d\n",
+ __FUNCTION__, ret));
+ }
+
#endif /* CUSTOM_ROAM_TIME_THRESH_IN_SUSPEND */
#ifndef ENABLE_FW_ROAM_SUSPEND
roamvar = dhd_roam_disable;
- dhd_iovar(dhd, 0, "roam_off", (char *)&roamvar, sizeof(roamvar),
- NULL, 0, TRUE);
+ ret = dhd_iovar(dhd, 0, "roam_off", (char *)&roamvar,
+ sizeof(roamvar), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: roam_off fail:%d\n", __FUNCTION__, ret));
+ }
#endif /* ENABLE_FW_ROAM_SUSPEND */
+#ifdef ENABLE_BCN_LI_BCN_WAKEUP
+ ret = dhd_iovar(dhd, 0, "bcn_li_bcn", (char *)&bcn_li_bcn,
+ sizeof(bcn_li_bcn), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: bcn_li_bcn failed:%d\n",
+ __FUNCTION__, ret));
+ }
+#endif /* ENABLE_BCN_LI_BCN_WAKEUP */
+#ifdef NDO_CONFIG_SUPPORT
+ if (dhd->ndo_enable) {
+ /* Disable ND offload on resume */
+ ret = dhd_ndo_enable(dhd, FALSE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: failed to disable NDO\n",
+ __FUNCTION__));
+ }
+ }
+#endif /* NDO_CONFIG_SUPPORT */
+#ifndef APF
if (FW_SUPPORTED(dhd, ndoe)) {
+#else
+ if (FW_SUPPORTED(dhd, ndoe) && !FW_SUPPORTED(dhd, apf)) {
+#endif /* APF */
/* disable IPv6 RA filter in firmware during suspend */
nd_ra_filter = 0;
ret = dhd_iovar(dhd, 0, "nd_ra_filter_enable",
(char *)&nd_ra_filter, sizeof(nd_ra_filter),
NULL, 0, TRUE);
- if (ret < 0)
- DHD_ERROR(("nd_ra_filter: %d\n", ret));
+ if (ret < 0) {
+ DHD_ERROR(("failed to set nd_ra_filter (%d)\n",
+ ret));
+ }
}
dhd_os_suppress_logging(dhd, FALSE);
+#ifdef ENABLE_IPMCAST_FILTER
+ ipmcast_l2filter = 0;
+ ret = dhd_iovar(dhd, 0, "ipmcast_l2filter",
+ (char *)&ipmcast_l2filter, sizeof(ipmcast_l2filter),
+ NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("failed to clear ipmcast_l2filter ret:%d", ret));
+ }
+#endif /* ENABLE_IPMCAST_FILTER */
+#ifdef CUSTOM_EVENT_PM_WAKE
+ ret = dhd_iovar(dhd, 0, "const_awake_thresh",
+ (char *)&pm_awake_thresh,
+ sizeof(pm_awake_thresh), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s set const_awake_thresh failed %d\n",
+ __FUNCTION__, ret));
+ }
+#endif /* CUSTOM_EVENT_PM_WAKE */
+#ifdef CONFIG_SILENT_ROAM
+ ret = dhd_sroam_set_mon(dhd, FALSE);
+ if (ret < 0) {
+ DHD_ERROR(("%s set sroam failed %d\n", __FUNCTION__, ret));
+ }
+#endif /* CONFIG_SILENT_ROAM */
+#endif /* DHD_USE_EARLYSUSPEND */
+#ifdef WL_CFG80211
+ /* Enable cfg80211 feature events during resume */
+ ret = wl_cfg80211_config_suspend_events(
+ dhd_linux_get_primary_netdev(dhd), TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("failed to enable events (%d)\n", ret));
+ }
+#endif /* WL_CFG80211 */
+#ifdef DHD_LB_IRQSET
+ dhd_irq_set_affinity(dhd, dhd->info->cpumask_primary);
+#endif /* DHD_LB_IRQSET */
}
}
dhd_suspend_unlock(dhd);
@@ -2867,14 +2439,13 @@
if (tmo->increment > tmo->tick)
tmo->increment = tmo->tick;
} else {
- wait_queue_head_t delay_wait;
- DECLARE_WAITQUEUE(wait, current);
- init_waitqueue_head(&delay_wait);
- add_wait_queue(&delay_wait, &wait);
- set_current_state(TASK_INTERRUPTIBLE);
- (void)schedule_timeout(1);
- remove_wait_queue(&delay_wait, &wait);
- set_current_state(TASK_RUNNING);
+ /*
+ * OSL_SLEEP() is corresponding to usleep_range(). In non-atomic
+ * context where the exact wakeup time is flexible, it would be good
+ * to use usleep_range() instead of udelay(). It takes a few advantages
+ * such as improving responsiveness and reducing power.
+ */
+ OSL_SLEEP(jiffies_to_msecs(1));
}
return 0;
@@ -2968,425 +2539,11 @@
return NULL;
}
-#ifdef BCMDBUS
-#define DBUS_NRXQ 50
-#define DBUS_NTXQ 100
-
-static void
-dhd_dbus_send_complete(void *handle, void *info, int status)
-{
- dhd_info_t *dhd = (dhd_info_t *)handle;
- void *pkt = info;
-
- if ((dhd == NULL) || (pkt == NULL))
- return;
-
- if (status == DBUS_OK) {
- dhd->pub.dstats.tx_packets++;
- } else {
- DHD_ERROR(("TX error=%d\n", status));
- dhd->pub.dstats.tx_errors++;
- }
-#ifdef PROP_TXSTATUS
- if (DHD_PKTTAG_WLFCPKT(PKTTAG(pkt)) &&
- (dhd_wlfc_txcomplete(&dhd->pub, pkt, status == 0) != WLFC_UNSUPPORTED)) {
- return;
- }
-#endif /* PROP_TXSTATUS */
- PKTFREE(dhd->pub.osh, pkt, TRUE);
-}
-
-static void
-dhd_dbus_recv_pkt(void *handle, void *pkt)
-{
- uchar reorder_info_buf[WLHOST_REORDERDATA_TOTLEN];
- uint reorder_info_len;
- uint pkt_count;
- dhd_info_t *dhd = (dhd_info_t *)handle;
- int ifidx = 0;
-
- if (dhd == NULL)
- return;
-
- /* If the protocol uses a data header, check and remove it */
- if (dhd_prot_hdrpull(&dhd->pub, &ifidx, pkt, reorder_info_buf,
- &reorder_info_len) != 0) {
- DHD_ERROR(("rx protocol error\n"));
- PKTFREE(dhd->pub.osh, pkt, FALSE);
- dhd->pub.rx_errors++;
- return;
- }
-
- if (reorder_info_len) {
- /* Reordering info from the firmware */
- dhd_process_pkt_reorder_info(&dhd->pub, reorder_info_buf, reorder_info_len,
- &pkt, &pkt_count);
- if (pkt_count == 0)
- return;
- }
- else {
- pkt_count = 1;
- }
- dhd_rx_frame(&dhd->pub, ifidx, pkt, pkt_count, 0);
-}
-
-static void
-dhd_dbus_recv_buf(void *handle, uint8 *buf, int len)
-{
- dhd_info_t *dhd = (dhd_info_t *)handle;
- void *pkt;
-
- if (dhd == NULL)
- return;
-
- if ((pkt = PKTGET(dhd->pub.osh, len, FALSE)) == NULL) {
- DHD_ERROR(("PKTGET (rx) failed=%d\n", len));
- return;
- }
-
- bcopy(buf, PKTDATA(dhd->pub.osh, pkt), len);
- dhd_dbus_recv_pkt(dhd, pkt);
-}
-
-static void
-dhd_dbus_txflowcontrol(void *handle, bool onoff)
-{
- dhd_info_t *dhd = (dhd_info_t *)handle;
- bool wlfc_enabled = FALSE;
-
- if (dhd == NULL)
- return;
-
-#ifdef PROP_TXSTATUS
- wlfc_enabled = (dhd_wlfc_flowcontrol(&dhd->pub, onoff, !onoff) != WLFC_UNSUPPORTED);
-#endif
-
- if (!wlfc_enabled) {
- dhd_txflowcontrol(&dhd->pub, ALL_INTERFACES, onoff);
- }
-}
-
-static void
-dhd_dbus_errhandler(void *handle, int err)
-{
-}
-
-static void
-dhd_dbus_ctl_complete(void *handle, int type, int status)
-{
- dhd_info_t *dhd = (dhd_info_t *)handle;
-
- if (dhd == NULL)
- return;
-
- if (type == DBUS_CBCTL_READ) {
- if (status == DBUS_OK)
- dhd->pub.rx_ctlpkts++;
- else
- dhd->pub.rx_ctlerrs++;
- } else if (type == DBUS_CBCTL_WRITE) {
- if (status == DBUS_OK)
- dhd->pub.tx_ctlpkts++;
- else
- dhd->pub.tx_ctlerrs++;
- }
-
- dhd_prot_ctl_complete(&dhd->pub);
-}
-
-static void
-dhd_dbus_state_change(void *handle, int state)
-{
- dhd_info_t *dhd = (dhd_info_t *)handle;
-
- if (dhd == NULL)
- return;
-
- switch (state) {
-
- case DBUS_STATE_DL_NEEDED:
-#if defined(BCM_DNGL_EMBEDIMAGE) || defined(BCM_REQUEST_FW)
-#if defined(BCMDBUS)
- DHD_TRACE(("%s: firmware request\n", __FUNCTION__));
- up(&dhd->fw_download_lock);
-#endif /* BCMDBUS */
-#else
- DHD_ERROR(("%s: firmware request cannot be handled\n", __FUNCTION__));
-#endif /* defined(BCM_DNGL_EMBEDIMAGE) || defined(BCM_REQUEST_FW) */
- break;
- case DBUS_STATE_DOWN:
- DHD_TRACE(("%s: DBUS is down\n", __FUNCTION__));
- dhd->pub.busstate = DHD_BUS_DOWN;
- break;
- case DBUS_STATE_UP:
- DHD_TRACE(("%s: DBUS is up\n", __FUNCTION__));
- dhd->pub.busstate = DHD_BUS_DATA;
- break;
- default:
- break;
- }
-
- DHD_TRACE(("%s: DBUS current state=%d\n", __FUNCTION__, state));
-}
-
-static void *
-dhd_dbus_pktget(void *handle, uint len, bool send)
-{
- dhd_info_t *dhd = (dhd_info_t *)handle;
- void *p = NULL;
-
- if (dhd == NULL)
- return NULL;
-
- if (send == TRUE) {
- dhd_os_sdlock_txq(&dhd->pub);
- p = PKTGET(dhd->pub.osh, len, TRUE);
- dhd_os_sdunlock_txq(&dhd->pub);
- } else {
- dhd_os_sdlock_rxq(&dhd->pub);
- p = PKTGET(dhd->pub.osh, len, FALSE);
- dhd_os_sdunlock_rxq(&dhd->pub);
- }
-
- return p;
-}
-
-static void
-dhd_dbus_pktfree(void *handle, void *p, bool send)
-{
- dhd_info_t *dhd = (dhd_info_t *)handle;
-
- if (dhd == NULL)
- return;
-
- if (send == TRUE) {
-#ifdef PROP_TXSTATUS
- if (DHD_PKTTAG_WLFCPKT(PKTTAG(p)) &&
- (dhd_wlfc_txcomplete(&dhd->pub, p, FALSE) != WLFC_UNSUPPORTED)) {
- return;
- }
-#endif /* PROP_TXSTATUS */
-
- dhd_os_sdlock_txq(&dhd->pub);
- PKTFREE(dhd->pub.osh, p, TRUE);
- dhd_os_sdunlock_txq(&dhd->pub);
- } else {
- dhd_os_sdlock_rxq(&dhd->pub);
- PKTFREE(dhd->pub.osh, p, FALSE);
- dhd_os_sdunlock_rxq(&dhd->pub);
- }
-}
-
-#ifdef BCM_FD_AGGR
-
-static void
-dbus_rpcth_tx_complete(void *ctx, void *pktbuf, int status)
-{
- dhd_info_t *dhd = (dhd_info_t *)ctx;
- void *tmp;
-
- while (pktbuf && dhd) {
- tmp = PKTNEXT(dhd->pub.osh, pktbuf);
- PKTSETNEXT(dhd->pub.osh, pktbuf, NULL);
- dhd_dbus_send_complete(ctx, pktbuf, status);
- pktbuf = tmp;
- }
-}
-static void
-dbus_rpcth_rx_pkt(void *context, rpc_buf_t *rpc_buf)
-{
- dhd_dbus_recv_pkt(context, rpc_buf);
-}
-
-static void
-dbus_rpcth_rx_aggrpkt(void *context, void *rpc_buf)
-{
- dhd_info_t *dhd = (dhd_info_t *)context;
-
- if (dhd == NULL)
- return;
-
- /* all the de-aggregated packets are delivered back to function dbus_rpcth_rx_pkt()
- * as cloned packets
- */
- bcm_rpc_dbus_recv_aggrpkt(dhd->rpc_th, rpc_buf,
- bcm_rpc_buf_len_get(dhd->rpc_th, rpc_buf));
-
- /* free the original packet */
- dhd_dbus_pktfree(context, rpc_buf, FALSE);
-}
-
-static void
-dbus_rpcth_rx_aggrbuf(void *context, uint8 *buf, int len)
-{
- dhd_info_t *dhd = (dhd_info_t *)context;
-
- if (dhd == NULL)
- return;
-
- if (dhd->fdaggr & BCM_FDAGGR_D2H_ENABLED) {
- bcm_rpc_dbus_recv_aggrbuf(dhd->rpc_th, buf, len);
- }
- else {
- dhd_dbus_recv_buf(context, buf, len);
- }
-
-}
-
-static void
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
-dhd_rpcth_watchdog(struct timer_list *t)
-{
- dhd_info_t *dhd = from_timer(dhd, t, rpcth_timer);
-#else
-dhd_rpcth_watchdog(ulong data)
-{
- dhd_info_t *dhd = (dhd_info_t *)data;
-#endif
-
- if (dhd->pub.dongle_reset) {
- return;
- }
-
- dhd->rpcth_timer_active = FALSE;
- /* release packets in the aggregation queue */
- bcm_rpc_tp_watchdog(dhd->rpc_th);
-}
-
-static int
-dhd_fdaggr_ioctl(dhd_pub_t *dhd_pub, int ifindex, wl_ioctl_t *ioc, void *buf, int len)
-{
- int bcmerror = 0;
- void *rpc_th;
-
- rpc_th = dhd_pub->info->rpc_th;
-
- if (!strcmp("rpc_agg", ioc->buf)) {
- uint32 rpc_agg;
- uint32 rpc_agg_host;
- uint32 rpc_agg_dngl;
-
- if (ioc->set) {
- memcpy(&rpc_agg, ioc->buf + strlen("rpc_agg") + 1, sizeof(uint32));
- rpc_agg_host = rpc_agg & BCM_RPC_TP_HOST_AGG_MASK;
- if (rpc_agg_host)
- bcm_rpc_tp_agg_set(rpc_th, rpc_agg_host, TRUE);
- else
- bcm_rpc_tp_agg_set(rpc_th, BCM_RPC_TP_HOST_AGG_MASK, FALSE);
- bcmerror = dhd_wl_ioctl(dhd_pub, ifindex, ioc, buf, len);
- if (bcmerror < 0) {
- DHD_ERROR(("usb aggregation not supported\n"));
- } else {
- dhd_pub->info->fdaggr = 0;
- if (rpc_agg & BCM_RPC_TP_HOST_AGG_MASK)
- dhd_pub->info->fdaggr |= BCM_FDAGGR_H2D_ENABLED;
- if (rpc_agg & BCM_RPC_TP_DNGL_AGG_MASK)
- dhd_pub->info->fdaggr |= BCM_FDAGGR_D2H_ENABLED;
- }
- } else {
- rpc_agg_host = bcm_rpc_tp_agg_get(rpc_th);
- bcmerror = dhd_wl_ioctl(dhd_pub, ifindex, ioc, buf, len);
- if (!bcmerror) {
- memcpy(&rpc_agg_dngl, buf, sizeof(uint32));
- rpc_agg = (rpc_agg_host & BCM_RPC_TP_HOST_AGG_MASK) |
- (rpc_agg_dngl & BCM_RPC_TP_DNGL_AGG_MASK);
- memcpy(buf, &rpc_agg, sizeof(uint32));
- }
- }
- } else if (!strcmp("rpc_host_agglimit", ioc->buf)) {
- uint8 sf;
- uint16 bytes;
- uint32 agglimit;
-
- if (ioc->set) {
- memcpy(&agglimit, ioc->buf + strlen("rpc_host_agglimit") + 1,
- sizeof(uint32));
- sf = agglimit >> 16;
- bytes = agglimit & 0xFFFF;
- bcm_rpc_tp_agg_limit_set(rpc_th, sf, bytes);
- } else {
- bcm_rpc_tp_agg_limit_get(rpc_th, &sf, &bytes);
- agglimit = (uint32)((sf << 16) + bytes);
- memcpy(buf, &agglimit, sizeof(uint32));
- }
-
- } else {
- bcmerror = dhd_wl_ioctl(dhd_pub, ifindex, ioc, buf, len);
- }
- return bcmerror;
-}
-#endif /* BCM_FD_AGGR */
-
-static dbus_callbacks_t dhd_dbus_cbs = {
-#ifdef BCM_FD_AGGR
- dbus_rpcth_tx_complete,
- dbus_rpcth_rx_aggrbuf,
- dbus_rpcth_rx_aggrpkt,
-#else
- dhd_dbus_send_complete,
- dhd_dbus_recv_buf,
- dhd_dbus_recv_pkt,
-#endif
- dhd_dbus_txflowcontrol,
- dhd_dbus_errhandler,
- dhd_dbus_ctl_complete,
- dhd_dbus_state_change,
- dhd_dbus_pktget,
- dhd_dbus_pktfree
-};
-
-void
-dhd_bus_dump(dhd_pub_t *dhdp, struct bcmstrbuf *strbuf)
-{
- bcm_bprintf(strbuf, "Bus USB\n");
-}
-
-void
-dhd_bus_clearcounts(dhd_pub_t *dhdp)
-{
-}
-
-bool
-dhd_bus_dpc(struct dhd_bus *bus)
-{
- return FALSE;
-}
-
-int
-dhd_dbus_txdata(dhd_pub_t *dhdp, void *pktbuf)
-{
-
- if (dhdp->txoff)
- return BCME_EPERM;
-#ifdef BCM_FD_AGGR
- if (((dhd_info_t *)(dhdp->info))->fdaggr & BCM_FDAGGR_H2D_ENABLED)
-
- {
- dhd_info_t *dhd;
- int ret;
- dhd = (dhd_info_t *)(dhdp->info);
- ret = bcm_rpc_tp_buf_send(dhd->rpc_th, pktbuf);
- if (dhd->rpcth_timer_active == FALSE) {
- dhd->rpcth_timer_active = TRUE;
- mod_timer(&dhd->rpcth_timer, jiffies + BCM_RPC_TP_HOST_TMOUT * HZ / 1000);
- }
- return ret;
- } else
-#endif /* BCM_FD_AGGR */
- return dbus_send_txdata(dhdp->dbus, pktbuf);
-}
-
-#endif /* BCMDBUS */
-
static void
_dhd_set_multicast_list(dhd_info_t *dhd, int ifidx)
{
struct net_device *dev;
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 35)
struct netdev_hw_addr *ha;
-#else
- struct dev_mc_list *mclist;
-#endif
uint32 allmulti, cnt;
wl_ioctl_t ioc;
@@ -3394,6 +2551,27 @@
uint buflen;
int ret;
+#ifdef MCAST_LIST_ACCUMULATION
+ int i;
+ uint32 cnt_iface[DHD_MAX_IFS];
+ cnt = 0;
+ allmulti = 0;
+
+ for (i = 0; i < DHD_MAX_IFS; i++) {
+ if (dhd->iflist[i]) {
+ dev = dhd->iflist[i]->net;
+ if (!dev)
+ continue;
+ netif_addr_lock_bh(dev);
+ cnt_iface[i] = netdev_mc_count(dev);
+ cnt += cnt_iface[i];
+ netif_addr_unlock_bh(dev);
+
+ /* Determine initial value of allmulti flag */
+ allmulti |= (dev->flags & IFF_ALLMULTI) ? TRUE : FALSE;
+ }
+ }
+#else /* !MCAST_LIST_ACCUMULATION */
if (!dhd->iflist[ifidx]) {
DHD_ERROR(("%s : dhd->iflist[%d] was NULL\n", __FUNCTION__, ifidx));
return;
@@ -3401,24 +2579,22 @@
dev = dhd->iflist[ifidx]->net;
if (!dev)
return;
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
netif_addr_lock_bh(dev);
-#endif /* LINUX >= 2.6.27 */
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 35)
cnt = netdev_mc_count(dev);
-#else
- cnt = dev->mc_count;
-#endif /* LINUX >= 2.6.35 */
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
netif_addr_unlock_bh(dev);
-#endif /* LINUX >= 2.6.27 */
/* Determine initial value of allmulti flag */
allmulti = (dev->flags & IFF_ALLMULTI) ? TRUE : FALSE;
+#endif /* MCAST_LIST_ACCUMULATION */
+#ifdef PASS_ALL_MCAST_PKTS
+#ifdef PKT_FILTER_SUPPORT
+ if (!dhd->pub.early_suspended)
+#endif /* PKT_FILTER_SUPPORT */
+ allmulti = TRUE;
+#endif /* PASS_ALL_MCAST_PKTS */
/* Send down the multicast list first. */
-
buflen = sizeof("mcast_list") + sizeof(cnt) + (cnt * ETHER_ADDR_LEN);
if (!(bufp = buf = MALLOC(dhd->pub.osh, buflen))) {
@@ -3435,10 +2611,39 @@
memcpy(bufp, &cnt, sizeof(cnt));
bufp += sizeof(cnt);
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
+#ifdef MCAST_LIST_ACCUMULATION
+ for (i = 0; i < DHD_MAX_IFS; i++) {
+ if (dhd->iflist[i]) {
+ DHD_TRACE(("_dhd_set_multicast_list: ifidx %d\n", i));
+ dev = dhd->iflist[i]->net;
+
+ netif_addr_lock_bh(dev);
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
+#endif // endif
+ netdev_for_each_mc_addr(ha, dev) {
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic pop
+#endif // endif
+ if (!cnt_iface[i])
+ break;
+ memcpy(bufp, ha->addr, ETHER_ADDR_LEN);
+ bufp += ETHER_ADDR_LEN;
+ DHD_TRACE(("_dhd_set_multicast_list: cnt "
+ "%d " MACDBG "\n",
+ cnt_iface[i], MAC2STRDBG(ha->addr)));
+ cnt_iface[i]--;
+ }
+ netif_addr_unlock_bh(dev);
+ }
+ }
+#else /* !MCAST_LIST_ACCUMULATION */
netif_addr_lock_bh(dev);
-#endif /* LINUX >= 2.6.27 */
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 35)
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
+#endif // endif
netdev_for_each_mc_addr(ha, dev) {
if (!cnt)
break;
@@ -3446,16 +2651,11 @@
bufp += ETHER_ADDR_LEN;
cnt--;
}
-#else /* LINUX < 2.6.35 */
- for (mclist = dev->mc_list; (mclist && (cnt > 0));
- cnt--, mclist = mclist->next) {
- memcpy(bufp, (void *)mclist->dmi_addr, ETHER_ADDR_LEN);
- bufp += ETHER_ADDR_LEN;
- }
-#endif /* LINUX >= 2.6.35 */
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic pop
+#endif // endif
netif_addr_unlock_bh(dev);
-#endif /* LINUX >= 2.6.27 */
+#endif /* MCAST_LIST_ACCUMULATION */
memset(&ioc, 0, sizeof(ioc));
ioc.cmd = WLC_SET_VAR;
@@ -3487,7 +2687,17 @@
/* Finally, pick up the PROMISC flag as well, like the NIC driver does */
+#ifdef MCAST_LIST_ACCUMULATION
+ allmulti = 0;
+ for (i = 0; i < DHD_MAX_IFS; i++) {
+ if (dhd->iflist[i]) {
+ dev = dhd->iflist[i]->net;
+ allmulti |= (dev->flags & IFF_PROMISC) ? TRUE : FALSE;
+ }
+ }
+#else
allmulti = (dev->flags & IFF_PROMISC) ? TRUE : FALSE;
+#endif /* MCAST_LIST_ACCUMULATION */
allmulti = htol32(allmulti);
@@ -3525,53 +2735,7 @@
#ifdef SOFTAP
extern struct net_device *ap_net_dev;
extern tsk_ctl_t ap_eth_ctl; /* ap netdev heper thread ctl */
-#endif
-
-#ifdef DHD_WMF
-void dhd_update_psta_interface_for_sta(dhd_pub_t* dhdp, char* ifname, void* ea,
- void* event_data)
-{
- struct wl_psta_primary_intf_event *psta_prim_event =
- (struct wl_psta_primary_intf_event*)event_data;
- dhd_sta_t *psta_interface = NULL;
- dhd_sta_t *sta = NULL;
- uint8 ifindex;
- ASSERT(ifname);
- ASSERT(psta_prim_event);
- ASSERT(ea);
-
- ifindex = (uint8)dhd_ifname2idx(dhdp->info, ifname);
- sta = dhd_find_sta(dhdp, ifindex, ea);
- if (sta != NULL) {
- psta_interface = dhd_find_sta(dhdp, ifindex,
- (void *)(psta_prim_event->prim_ea.octet));
- if (psta_interface != NULL) {
- sta->psta_prim = psta_interface;
- }
- }
-}
-
-/* Get wmf_psta_disable configuration configuration */
-int dhd_get_wmf_psta_disable(dhd_pub_t *dhdp, uint32 idx)
-{
- dhd_info_t *dhd = dhdp->info;
- dhd_if_t *ifp;
- ASSERT(idx < DHD_MAX_IFS);
- ifp = dhd->iflist[idx];
- return ifp->wmf_psta_disable;
-}
-
-/* Set wmf_psta_disable configuration configuration */
-int dhd_set_wmf_psta_disable(dhd_pub_t *dhdp, uint32 idx, int val)
-{
- dhd_info_t *dhd = dhdp->info;
- dhd_if_t *ifp;
- ASSERT(idx < DHD_MAX_IFS);
- ifp = dhd->iflist[idx];
- ifp->wmf_psta_disable = val;
- return 0;
-}
-#endif /* DHD_WMF */
+#endif // endif
#ifdef DHD_PSTA
/* Get psta/psr configuration configuration */
@@ -3603,13 +2767,13 @@
if (
#ifdef DHD_L2_FILTER
(ifp->block_ping) ||
-#endif
+#endif // endif
#ifdef DHD_WET
(dhd->wet_mode) ||
-#endif
+#endif // endif
#ifdef DHD_MCAST_REGEN
(ifp->mcast_regen_bss_enable) ||
-#endif
+#endif // endif
FALSE) {
ifp->rx_pkt_chainable = FALSE;
}
@@ -3629,14 +2793,12 @@
{
dhd_info_t *dhd = dhdp->info;
dhd->wet_mode = val;
-
- /* disable rx_pkt_chainable stae for dhd interface, if WET is enabled */
dhd_update_rx_pkt_chainable_state(dhdp, 0);
return 0;
}
#endif /* DHD_WET */
-#if (LINUX_VERSION_CODE > KERNEL_VERSION(3, 11, 0))
+#if defined(WL_CFG80211) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
int32 dhd_role_to_nl80211_iftype(int32 role)
{
switch (role) {
@@ -3651,26 +2813,28 @@
case WLC_E_IF_ROLE_P2P_CLIENT:
return NL80211_IFTYPE_P2P_CLIENT;
case WLC_E_IF_ROLE_IBSS:
+ case WLC_E_IF_ROLE_NAN:
return NL80211_IFTYPE_ADHOC;
default:
return NL80211_IFTYPE_UNSPECIFIED;
}
}
-#endif /* OEM_ANDROID && (LINUX_VERSION_CODE > KERNEL_VERSION(3, 11, 0)) */
+#endif /* WL_CFG80211 && LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0) */
static void
dhd_ifadd_event_handler(void *handle, void *event_info, u8 event)
{
dhd_info_t *dhd = handle;
dhd_if_event_t *if_event = event_info;
- struct net_device *ndev;
int ifidx, bssidx;
int ret;
-#if (LINUX_VERSION_CODE > KERNEL_VERSION(3, 11, 0))
- struct wireless_dev *vwdev, *primary_wdev;
- struct net_device *primary_ndev;
-#endif /* OEM_ANDROID && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0)) */
+#if defined(WL_CFG80211) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
+ struct wl_if_event_info info;
+#else
+ struct net_device *ndev;
+#endif /* WL_CFG80211 && LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0) */
+ BCM_REFERENCE(ret);
if (event != DHD_WQ_WORK_IF_ADD) {
DHD_ERROR(("%s: unexpected event \n", __FUNCTION__));
return;
@@ -3694,6 +2858,28 @@
bssidx = if_event->event.bssidx;
DHD_TRACE(("%s: registering if with ifidx %d\n", __FUNCTION__, ifidx));
+#if defined(WL_CFG80211) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
+ if (if_event->event.ifidx > 0) {
+ u8 *mac_addr;
+ bzero(&info, sizeof(info));
+ info.ifidx = ifidx;
+ info.bssidx = bssidx;
+ info.role = if_event->event.role;
+ strncpy(info.name, if_event->name, IFNAMSIZ);
+ if (is_valid_ether_addr(if_event->mac)) {
+ mac_addr = if_event->mac;
+ } else {
+ mac_addr = NULL;
+ }
+
+ if (wl_cfg80211_post_ifcreate(dhd->pub.info->iflist[0]->net,
+ &info, mac_addr, NULL, true) == NULL) {
+ /* Do the post interface create ops */
+ DHD_ERROR(("Post ifcreate ops failed. Returning \n"));
+ goto done;
+ }
+ }
+#else
/* This path is for non-android case */
/* The interface name in host and in event msg are same */
/* if name in event msg is used to create dongle if list on host */
@@ -3704,22 +2890,6 @@
goto done;
}
-#if (LINUX_VERSION_CODE > KERNEL_VERSION(3, 11, 0))
- vwdev = kzalloc(sizeof(*vwdev), GFP_KERNEL);
- if (unlikely(!vwdev)) {
- DHD_ERROR(("Could not allocate wireless device\n"));
- goto done;
- }
- primary_ndev = dhd->pub.info->iflist[0]->net;
- primary_wdev = ndev_to_wdev(primary_ndev);
- vwdev->wiphy = primary_wdev->wiphy;
- vwdev->iftype = dhd_role_to_nl80211_iftype(if_event->event.role);
- vwdev->netdev = ndev;
- ndev->ieee80211_ptr = vwdev;
- SET_NETDEV_DEV(ndev, wiphy_dev(vwdev->wiphy));
- DHD_ERROR(("virtual interface(%s) is created\n", if_event->name));
-#endif /* OEM_ANDROID && (LINUX_VERSION_CODE > KERNEL_VERSION(3, 11, 0)) */
-
DHD_PERIM_UNLOCK(&dhd->pub);
ret = dhd_register_if(&dhd->pub, ifidx, TRUE);
DHD_PERIM_LOCK(&dhd->pub);
@@ -3728,6 +2898,8 @@
dhd_remove_if(&dhd->pub, ifidx, TRUE);
goto done;
}
+#endif /* WL_CFG80211 && LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0) */
+
#ifndef PCIE_FULL_DONGLE
/* Turn on AP isolation in the firmware for interfaces operating in AP mode */
if (FW_SUPPORTED((&dhd->pub), ap) && (if_event->event.role != WLC_E_IF_ROLE_STA)) {
@@ -3756,7 +2928,6 @@
int ifidx;
dhd_if_event_t *if_event = event_info;
-
if (event != DHD_WQ_WORK_IF_DEL) {
DHD_ERROR(("%s: unexpected event \n", __FUNCTION__));
return;
@@ -3780,16 +2951,34 @@
DHD_TRACE(("Removing interface with idx %d\n", ifidx));
DHD_PERIM_UNLOCK(&dhd->pub);
+ if (!dhd->pub.info->iflist[ifidx]) {
+ /* No matching netdev found */
+ DHD_ERROR(("Netdev not found! Do nothing.\n"));
+ goto done;
+ }
+#if defined(WL_CFG80211) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
+ if (if_event->event.ifidx > 0) {
+ /* Do the post interface del ops */
+ if (wl_cfg80211_post_ifdel(dhd->pub.info->iflist[ifidx]->net,
+ true, if_event->event.ifidx) != 0) {
+ DHD_TRACE(("Post ifdel ops failed. Returning \n"));
+ goto done;
+ }
+ }
+#else
+ /* For non-cfg80211 drivers */
dhd_remove_if(&dhd->pub, ifidx, TRUE);
+#endif /* WL_CFG80211 && LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0) */
+
+done:
DHD_PERIM_LOCK(&dhd->pub);
-
MFREE(dhd->pub.osh, if_event, sizeof(dhd_if_event_t));
-
DHD_PERIM_UNLOCK(&dhd->pub);
DHD_OS_WAKE_UNLOCK(&dhd->pub);
dhd_net_if_unlock_local(dhd);
}
+#ifndef DHD_DIRECT_SET_MAC
static void
dhd_set_mac_addr_handler(void *handle, void *event_info, u8 event)
{
@@ -3842,13 +3031,14 @@
DHD_OS_WAKE_UNLOCK(&dhd->pub);
dhd_net_if_unlock_local(dhd);
}
+#endif /* DHD_DIRECT_SET_MAC */
static void
dhd_set_mcast_list_handler(void *handle, void *event_info, u8 event)
{
dhd_info_t *dhd = handle;
- dhd_if_t *ifp = event_info;
- int ifidx;
+ int ifidx = (int)((long int)event_info);
+ dhd_if_t *ifp = NULL;
if (event != DHD_WQ_WORK_SET_MCAST_LIST) {
DHD_ERROR(("%s: unexpected event \n", __FUNCTION__));
@@ -3863,6 +3053,13 @@
dhd_net_if_lock_local(dhd);
DHD_OS_WAKE_LOCK(&dhd->pub);
DHD_PERIM_LOCK(&dhd->pub);
+
+ ifp = dhd->iflist[ifidx];
+
+ if (ifp == NULL || !dhd->pub.up) {
+ DHD_ERROR(("%s: interface info not available/down \n", __FUNCTION__));
+ goto done;
+ }
#ifdef SOFTAP
{
@@ -3881,13 +3078,11 @@
}
#endif /* SOFTAP */
- if (ifp == NULL || !dhd->pub.up) {
- DHD_ERROR(("%s: interface info not available/down \n", __FUNCTION__));
- goto done;
- }
-
ifidx = ifp->idx;
+#ifdef MCAST_LIST_ACCUMULATION
+ ifidx = 0;
+#endif /* MCAST_LIST_ACCUMULATION */
_dhd_set_multicast_list(dhd, ifidx);
DHD_INFO(("%s: set multicast list for if %d\n", __FUNCTION__, ifidx));
@@ -3918,8 +3113,14 @@
memcpy(dhdif->mac_addr, sa->sa_data, ETHER_ADDR_LEN);
dhdif->set_macaddress = TRUE;
dhd_net_if_unlock_local(dhd);
+#ifdef DHD_DIRECT_SET_MAC
+ /* It needs to update new mac address on this context */
+ ret = _dhd_set_mac_address(dhd, ifidx, dhdif->mac_addr);
+ dhdif->set_macaddress = FALSE;
+#else
dhd_deferred_schedule_work(dhd->dhd_deferred_wq, (void *)dhdif, DHD_WQ_WORK_SET_MAC,
- dhd_set_mac_addr_handler, DHD_WORK_PRIORITY_LOW);
+ dhd_set_mac_addr_handler, DHD_WQ_WORK_PRIORITY_LOW);
+#endif // endif
return ret;
}
@@ -3934,9 +3135,19 @@
return;
dhd->iflist[ifidx]->set_multicast = TRUE;
- dhd_deferred_schedule_work(dhd->dhd_deferred_wq, (void *)dhd->iflist[ifidx],
- DHD_WQ_WORK_SET_MCAST_LIST, dhd_set_mcast_list_handler, DHD_WORK_PRIORITY_LOW);
+ dhd_deferred_schedule_work(dhd->dhd_deferred_wq, (void *)((long int)ifidx),
+ DHD_WQ_WORK_SET_MCAST_LIST, dhd_set_mcast_list_handler, DHD_WQ_WORK_PRIORITY_LOW);
}
+
+#ifdef DHD_UCODE_DOWNLOAD
+/* Get ucode path */
+char *
+dhd_get_ucode_path(dhd_pub_t *dhdp)
+{
+ dhd_info_t *dhd = dhdp->info;
+ return dhd->uc_path;
+}
+#endif /* DHD_UCODE_DOWNLOAD */
#ifdef PROP_TXSTATUS
int
@@ -3944,11 +3155,7 @@
{
dhd_info_t *di = (dhd_info_t *)(pub->info);
ASSERT(di != NULL);
-#ifdef BCMDBUS
- spin_lock_irqsave(&di->wlfc_spinlock, di->wlfc_lock_flags);
-#else
spin_lock_bh(&di->wlfc_spinlock);
-#endif
return 1;
}
@@ -3958,32 +3165,11 @@
dhd_info_t *di = (dhd_info_t *)(pub->info);
ASSERT(di != NULL);
-#ifdef BCMDBUS
- spin_unlock_irqrestore(&di->wlfc_spinlock, di->wlfc_lock_flags);
-#else
spin_unlock_bh(&di->wlfc_spinlock);
-#endif
return 1;
}
#endif /* PROP_TXSTATUS */
-
-#if defined(DHD_8021X_DUMP)
-void
-dhd_tx_dump(osl_t *osh, void *pkt)
-{
- uint8 *dump_data;
- uint16 protocol;
-
- dump_data = PKTDATA(osh, pkt);
- protocol = (dump_data[12] << 8) | dump_data[13];
-
- if (protocol == ETHER_TYPE_802_1X) {
- DHD_ERROR(("ETHER_TYPE_802_1X [TX]: ver %d, type %d, replay %d\n",
- dump_data[14], dump_data[15], dump_data[30]));
- }
-}
-#endif /* DHD_8021X_DUMP */
/* This routine do not support Packet chain feature, Currently tested for
* proxy arp feature
@@ -3999,25 +3185,6 @@
ifp = dhdp->info->iflist[ifidx];
skb->dev = ifp->net;
-#if defined(BCM_GMAC3)
- /* Forwarder capable interfaces use WOFA based forwarding */
- if (ifp->fwdh) {
- struct ether_header *eh = (struct ether_header *)PKTDATA(dhdp->osh, p);
- uint16 * da = (uint16 *)(eh->ether_dhost);
- uintptr_t wofa_data;
- ASSERT(ISALIGNED(da, 2));
-
- wofa_data = fwder_lookup(ifp->fwdh->mate, da, ifp->idx);
- if (wofa_data == WOFA_DATA_INVALID) { /* Unknown MAC address */
- if (fwder_transmit(ifp->fwdh, skb, 1, skb->dev) == FWDER_SUCCESS) {
- return BCME_OK;
- }
- }
- PKTFRMNATIVE(dhdp->osh, p);
- PKTFREE(dhdp->osh, p, FALSE);
- return BCME_OK;
- }
-#endif /* BCM_GMAC3 */
skb->protocol = eth_type_trans(skb, skb->dev);
@@ -4042,15 +3209,7 @@
*/
bcm_object_trace_opr(skb, BCM_OBJDBG_REMOVE,
__FUNCTION__, __LINE__);
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
netif_rx_ni(skb);
-#else
- ulong flags;
- netif_rx(skb);
- local_irq_save(flags);
- RAISE_RX_SOFTIRQ();
- local_irq_restore(flags);
-#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) */
}
}
@@ -4066,9 +3225,12 @@
int ret = BCME_OK;
dhd_info_t *dhd = (dhd_info_t *)(dhdp->info);
struct ether_header *eh = NULL;
+ bool pkt_ether_type_802_1x = FALSE;
+ uint8 pkt_flow_prio;
+
#if defined(DHD_L2_FILTER)
dhd_if_t *ifp = dhd_get_ifp(dhdp, ifidx);
-#endif
+#endif // endif
/* Reject if down */
if (!dhdp->up || (dhdp->busstate == DHD_BUS_DOWN)) {
@@ -4080,10 +3242,18 @@
#ifdef PCIE_FULL_DONGLE
if (dhdp->busstate == DHD_BUS_SUSPEND) {
DHD_ERROR(("%s : pcie is still in suspend state!!\n", __FUNCTION__));
- PKTFREE(dhdp->osh, pktbuf, TRUE);
- return -EBUSY;
+ PKTCFREE(dhdp->osh, pktbuf, TRUE);
+ return NETDEV_TX_BUSY;
}
#endif /* PCIE_FULL_DONGLE */
+
+ /* Reject if pktlen > MAX_MTU_SZ */
+ if (PKTLEN(dhdp->osh, pktbuf) > MAX_MTU_SZ) {
+ /* free the packet here since the caller won't */
+ dhdp->tx_big_packets++;
+ PKTCFREE(dhdp->osh, pktbuf, TRUE);
+ return BCME_ERROR;
+ }
#ifdef DHD_L2_FILTER
/* if dhcp_unicast is enabled, we need to convert the */
@@ -4131,42 +3301,56 @@
if (ETHER_ISMULTI(eh->ether_dhost))
dhdp->tx_multicast++;
if (ntoh16(eh->ether_type) == ETHER_TYPE_802_1X) {
+#ifdef DHD_LOSSLESS_ROAMING
+ uint8 prio = (uint8)PKTPRIO(pktbuf);
+
+ /* back up 802.1x's priority */
+ dhdp->prio_8021x = prio;
+#endif /* DHD_LOSSLESS_ROAMING */
+ pkt_ether_type_802_1x = TRUE;
DBG_EVENT_LOG(dhdp, WIFI_EVENT_DRIVER_EAPOL_FRAME_TRANSMIT_REQUESTED);
atomic_inc(&dhd->pend_8021x_cnt);
+#if defined(WL_CFG80211) && defined(WL_WPS_SYNC)
+ wl_handle_wps_states(dhd_idx2net(dhdp, ifidx),
+ pktdata, PKTLEN(dhdp->osh, pktbuf), TRUE);
+#endif /* WL_CFG80211 && WL_WPS_SYNC */
}
-#ifdef DHD_DHCP_DUMP
- if (ntoh16(eh->ether_type) == ETHER_TYPE_IP) {
- dhd_dhcp_dump(pktdata, TRUE);
- dhd_tcp_dump(dhd_ifname(dhdp, ifidx), pktdata, TRUE);
- }
-#endif /* DHD_DHCP_DUMP */
+ dhd_dump_pkt(dhdp, ifidx, pktdata,
+ (uint32)PKTLEN(dhdp->osh, pktbuf), TRUE, NULL, NULL);
} else {
- PKTCFREE(dhdp->osh, pktbuf, TRUE);
- return BCME_ERROR;
+ PKTCFREE(dhdp->osh, pktbuf, TRUE);
+ return BCME_ERROR;
}
{
/* Look into the packet and update the packet priority */
#ifndef PKTPRIO_OVERRIDE
if (PKTPRIO(pktbuf) == 0)
-#endif
+#endif /* !PKTPRIO_OVERRIDE */
{
#if defined(QOS_MAP_SET)
- pktsetprio_qms(pktbuf, wl_get_up_table(), FALSE);
+ pktsetprio_qms(pktbuf, wl_get_up_table(dhdp, ifidx), FALSE);
#else
pktsetprio(pktbuf, FALSE);
#endif /* QOS_MAP_SET */
}
+#ifndef PKTPRIO_OVERRIDE
+ else {
+ /* Some protocols like OZMO use priority values from 256..263.
+ * these are magic values to indicate a specific 802.1d priority.
+ * make sure that priority field is in range of 0..7
+ */
+ PKTSETPRIO(pktbuf, PKTPRIO(pktbuf) & 0x7);
+ }
+#endif /* !PKTPRIO_OVERRIDE */
}
+ BCM_REFERENCE(pkt_ether_type_802_1x);
+ BCM_REFERENCE(pkt_flow_prio);
-#if defined(TRAFFIC_MGMT_DWM)
- traffic_mgmt_pkt_set_prio(dhdp, pktbuf);
-
-#ifdef BCM_GMAC3
- DHD_PKT_SET_DATAOFF(pktbuf, 0);
-#endif /* BCM_GMAC3 */
-#endif
+#ifdef SUPPORT_SET_TID
+ dhd_set_tid_based_on_uid(dhdp, pktbuf);
+#endif /* SUPPORT_SET_TID */
#ifdef PCIE_FULL_DONGLE
/*
@@ -4174,12 +3358,26 @@
* available, allocate a unique flowid and add a flowring entry.
* The found or newly created flowid is placed into the pktbuf's tag.
*/
- ret = dhd_flowid_update(dhdp, ifidx, dhdp->flow_prio_map[(PKTPRIO(pktbuf))], pktbuf);
+
+#ifdef DHD_LOSSLESS_ROAMING
+ /* For LLR override and use flowring with prio 7 for 802.1x packets */
+ if (pkt_ether_type_802_1x) {
+ pkt_flow_prio = PRIO_8021D_NC;
+ } else
+#endif /* DHD_LOSSLESS_ROAMING */
+ {
+ pkt_flow_prio = dhdp->flow_prio_map[(PKTPRIO(pktbuf))];
+ }
+
+ ret = dhd_flowid_update(dhdp, ifidx, pkt_flow_prio, pktbuf);
if (ret != BCME_OK) {
+ if (ntoh16(eh->ether_type) == ETHER_TYPE_802_1X) {
+ atomic_dec(&dhd->pend_8021x_cnt);
+ }
PKTCFREE(dhd->pub.osh, pktbuf, TRUE);
return ret;
}
-#endif
+#endif /* PCIE_FULL_DONGLE */
#ifdef PROP_TXSTATUS
if (dhd_wlfc_is_supported(dhdp)) {
@@ -4203,25 +3401,6 @@
}
/* Use bus module to send data frame */
-#ifdef WLMEDIA_HTSF
- dhd_htsf_addtxts(dhdp, pktbuf);
-#endif
-#if defined(DHD_8021X_DUMP)
- dhd_tx_dump(dhdp->osh, pktbuf);
-#endif
-#ifdef BCMDBUS
-#ifdef PROP_TXSTATUS
- if (dhd_wlfc_commit_packets(dhdp, (f_commitpkt_t)dhd_dbus_txdata,
- dhdp, pktbuf, TRUE) == WLFC_UNSUPPORTED) {
- /* non-proptxstatus way */
- ret = dhd_dbus_txdata(dhdp, pktbuf);
- }
-#else
- ret = dhd_dbus_txdata(dhdp, pktbuf);
-#endif /* PROP_TXSTATUS */
- if (ret)
- PKTCFREE(dhdp->osh, pktbuf, TRUE);
-#else
#ifdef PROP_TXSTATUS
{
if (dhd_wlfc_commit_packets(dhdp, (f_commitpkt_t)dhd_bus_txdata,
@@ -4242,8 +3421,6 @@
#endif /* BCMPCIE */
#endif /* PROP_TXSTATUS */
-#endif /* BCMDBUS */
-
return ret;
}
@@ -4252,28 +3429,73 @@
{
int ret = 0;
unsigned long flags;
+ dhd_if_t *ifp;
DHD_GENERAL_LOCK(dhdp, flags);
- if (dhdp->busstate == DHD_BUS_DOWN ||
- dhdp->busstate == DHD_BUS_DOWN_IN_PROGRESS) {
+ ifp = dhd_get_ifp(dhdp, ifidx);
+ if (!ifp || ifp->del_in_progress) {
+ DHD_ERROR(("%s: ifp:%p del_in_progress:%d\n",
+ __FUNCTION__, ifp, ifp ? ifp->del_in_progress : 0));
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+ PKTCFREE(dhdp->osh, pktbuf, TRUE);
+ return -ENODEV;
+ }
+ if (DHD_BUS_CHECK_DOWN_OR_DOWN_IN_PROGRESS(dhdp)) {
DHD_ERROR(("%s: returning as busstate=%d\n",
__FUNCTION__, dhdp->busstate));
DHD_GENERAL_UNLOCK(dhdp, flags);
PKTCFREE(dhdp->osh, pktbuf, TRUE);
return -ENODEV;
}
- dhdp->dhd_bus_busy_state |= DHD_BUS_BUSY_IN_SEND_PKT;
+ DHD_IF_SET_TX_ACTIVE(ifp, DHD_TX_SEND_PKT);
+ DHD_BUS_BUSY_SET_IN_SEND_PKT(dhdp);
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+
+#ifdef DHD_PCIE_RUNTIMEPM
+ if (dhdpcie_runtime_bus_wake(dhdp, FALSE, __builtin_return_address(0))) {
+ DHD_ERROR(("%s : pcie is still in suspend state!!\n", __FUNCTION__));
+ PKTCFREE(dhdp->osh, pktbuf, TRUE);
+ ret = -EBUSY;
+ goto exit;
+ }
+#endif /* DHD_PCIE_RUNTIMEPM */
+
+ DHD_GENERAL_LOCK(dhdp, flags);
+ if (DHD_BUS_CHECK_SUSPEND_OR_SUSPEND_IN_PROGRESS(dhdp)) {
+ DHD_ERROR(("%s: bus is in suspend(%d) or suspending(0x%x) state!!\n",
+ __FUNCTION__, dhdp->busstate, dhdp->dhd_bus_busy_state));
+ DHD_BUS_BUSY_CLEAR_IN_SEND_PKT(dhdp);
+ DHD_IF_CLR_TX_ACTIVE(ifp, DHD_TX_SEND_PKT);
+ dhd_os_tx_completion_wake(dhdp);
+ dhd_os_busbusy_wake(dhdp);
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+ PKTCFREE(dhdp->osh, pktbuf, TRUE);
+ return -ENODEV;
+ }
DHD_GENERAL_UNLOCK(dhdp, flags);
ret = __dhd_sendpkt(dhdp, ifidx, pktbuf);
+#ifdef DHD_PCIE_RUNTIMEPM
+exit:
+#endif // endif
DHD_GENERAL_LOCK(dhdp, flags);
- dhdp->dhd_bus_busy_state &= ~DHD_BUS_BUSY_IN_SEND_PKT;
+ DHD_BUS_BUSY_CLEAR_IN_SEND_PKT(dhdp);
+ DHD_IF_CLR_TX_ACTIVE(ifp, DHD_TX_SEND_PKT);
+ dhd_os_tx_completion_wake(dhdp);
+ dhd_os_busbusy_wake(dhdp);
DHD_GENERAL_UNLOCK(dhdp, flags);
return ret;
}
+#ifndef DHD_MONITOR_INTERFACE
+static
+#endif /* DHD_MONITOR_INTERFACE */
+#ifdef CFI_CHECK
+netdev_tx_t BCMFASTPATH
+#else /* CFI_CHECK */
int BCMFASTPATH
+#endif /* CFI_CHECK */
dhd_start_xmit(struct sk_buff *skb, struct net_device *net)
{
int ret;
@@ -4283,71 +3505,100 @@
dhd_if_t *ifp = NULL;
int ifidx;
unsigned long flags;
-#ifdef WLMEDIA_HTSF
- uint8 htsfdlystat_sz = dhd->pub.htsfdlystat_sz;
-#else
uint8 htsfdlystat_sz = 0;
-#endif
-#ifdef DHD_WMF
- struct ether_header *eh;
- uint8 *iph;
-#endif /* DHD_WMF */
DHD_TRACE(("%s: Enter\n", __FUNCTION__));
- DHD_GENERAL_LOCK(&dhd->pub, flags);
+ if (dhd_query_bus_erros(&dhd->pub)) {
+#ifdef CFI_CHECK
+ return NETDEV_TX_BUSY;
+#else
+ return -ENODEV;
+#endif /* CFI_CHECK */
+ }
- if (dhd->pub.busstate == DHD_BUS_SUSPEND) {
- DHD_ERROR(("%s : pcie is still in suspend state!!\n", __FUNCTION__));
- dev_kfree_skb(skb);
- ifp = DHD_DEV_IFP(net);
- ifp->stats.tx_dropped++;
- dhd->pub.tx_dropped++;
+ DHD_GENERAL_LOCK(&dhd->pub, flags);
+ DHD_BUS_BUSY_SET_IN_TX(&dhd->pub);
+ DHD_GENERAL_UNLOCK(&dhd->pub, flags);
+
+#ifdef DHD_PCIE_RUNTIMEPM
+ if (dhdpcie_runtime_bus_wake(&dhd->pub, FALSE, dhd_start_xmit)) {
+ /* In order to avoid pkt loss. Return NETDEV_TX_BUSY until run-time resumed. */
+ /* stop the network queue temporarily until resume done */
+ DHD_GENERAL_LOCK(&dhd->pub, flags);
+ if (!dhdpcie_is_resume_done(&dhd->pub)) {
+ dhd_bus_stop_queue(dhd->pub.bus);
+ }
+ DHD_BUS_BUSY_CLEAR_IN_TX(&dhd->pub);
+ dhd_os_busbusy_wake(&dhd->pub);
DHD_GENERAL_UNLOCK(&dhd->pub, flags);
- return -EBUSY;
+ return NETDEV_TX_BUSY;
+ }
+#endif /* DHD_PCIE_RUNTIMEPM */
+
+ DHD_GENERAL_LOCK(&dhd->pub, flags);
+ if (DHD_BUS_CHECK_SUSPEND_OR_SUSPEND_IN_PROGRESS(&dhd->pub)) {
+ DHD_ERROR(("%s: bus is in suspend(%d) or suspending(0x%x) state!!\n",
+ __FUNCTION__, dhd->pub.busstate, dhd->pub.dhd_bus_busy_state));
+ DHD_BUS_BUSY_CLEAR_IN_TX(&dhd->pub);
+#ifdef PCIE_FULL_DONGLE
+ /* Stop tx queues if suspend is in progress */
+ if (DHD_BUS_CHECK_ANY_SUSPEND_IN_PROGRESS(&dhd->pub)) {
+ dhd_bus_stop_queue(dhd->pub.bus);
+ }
+#endif /* PCIE_FULL_DONGLE */
+ dhd_os_busbusy_wake(&dhd->pub);
+ DHD_GENERAL_UNLOCK(&dhd->pub, flags);
+ return NETDEV_TX_BUSY;
}
DHD_OS_WAKE_LOCK(&dhd->pub);
DHD_PERIM_LOCK_TRY(DHD_FWDER_UNIT(dhd), lock_taken);
+#if defined(DHD_HANG_SEND_UP_TEST)
+ if (dhd->pub.req_hang_type == HANG_REASON_BUS_DOWN) {
+ DHD_ERROR(("%s: making DHD_BUS_DOWN\n", __FUNCTION__));
+ dhd->pub.busstate = DHD_BUS_DOWN;
+ }
+#endif /* DHD_HANG_SEND_UP_TEST */
+
/* Reject if down */
- if (dhd->pub.hang_was_sent || dhd->pub.busstate == DHD_BUS_DOWN ||
- dhd->pub.busstate == DHD_BUS_DOWN_IN_PROGRESS) {
+ if (dhd->pub.hang_was_sent || DHD_BUS_CHECK_DOWN_OR_DOWN_IN_PROGRESS(&dhd->pub)) {
DHD_ERROR(("%s: xmit rejected pub.up=%d busstate=%d \n",
__FUNCTION__, dhd->pub.up, dhd->pub.busstate));
netif_stop_queue(net);
+#if defined(OEM_ANDROID)
/* Send Event when bus down detected during data session */
- if (dhd->pub.up) {
+ if (dhd->pub.up && !dhd->pub.hang_was_sent) {
DHD_ERROR(("%s: Event HANG sent up\n", __FUNCTION__));
+ dhd->pub.hang_reason = HANG_REASON_BUS_DOWN;
net_os_send_hang_message(net);
}
+#endif /* OEM_ANDROID */
+ DHD_BUS_BUSY_CLEAR_IN_TX(&dhd->pub);
+ dhd_os_busbusy_wake(&dhd->pub);
DHD_GENERAL_UNLOCK(&dhd->pub, flags);
DHD_PERIM_UNLOCK_TRY(DHD_FWDER_UNIT(dhd), lock_taken);
DHD_OS_WAKE_UNLOCK(&dhd->pub);
-#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20))
- return -ENODEV;
-#else
return NETDEV_TX_BUSY;
-#endif
}
ifp = DHD_DEV_IFP(net);
ifidx = DHD_DEV_IFIDX(net);
- BUZZZ_LOG(START_XMIT_BGN, 2, (uint32)ifidx, (uintptr)skb);
-
- if (ifidx == DHD_BAD_IF) {
- DHD_ERROR(("%s: bad ifidx %d\n", __FUNCTION__, ifidx));
+ if (!ifp || (ifidx == DHD_BAD_IF) ||
+ ifp->del_in_progress) {
+ DHD_ERROR(("%s: ifidx %d ifp:%p del_in_progress:%d\n",
+ __FUNCTION__, ifidx, ifp, (ifp ? ifp->del_in_progress : 0)));
netif_stop_queue(net);
+ DHD_BUS_BUSY_CLEAR_IN_TX(&dhd->pub);
+ dhd_os_busbusy_wake(&dhd->pub);
+ DHD_GENERAL_UNLOCK(&dhd->pub, flags);
DHD_PERIM_UNLOCK_TRY(DHD_FWDER_UNIT(dhd), lock_taken);
DHD_OS_WAKE_UNLOCK(&dhd->pub);
-#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20))
- return -ENODEV;
-#else
return NETDEV_TX_BUSY;
-#endif
}
- dhd->pub.dhd_bus_busy_state |= DHD_BUS_BUSY_IN_TX;
+ DHD_IF_SET_TX_ACTIVE(ifp, DHD_TX_START_XMIT);
DHD_GENERAL_UNLOCK(&dhd->pub, flags);
ASSERT(ifidx == dhd_net2idx(dhd, net));
@@ -4397,20 +3648,9 @@
goto done;
}
-#if defined(WLMEDIA_HTSF)
- if (htsfdlystat_sz && PKTLEN(dhd->pub.osh, pktbuf) >= ETHER_ADDR_LEN) {
- uint8 *pktdata = (uint8 *)PKTDATA(dhd->pub.osh, pktbuf);
- struct ether_header *eh = (struct ether_header *)pktdata;
-
- if (!ETHER_ISMULTI(eh->ether_dhost) &&
- (ntoh16(eh->ether_type) == ETHER_TYPE_IP)) {
- eh->ether_type = hton16(ETHER_TYPE_BRCM_PKTDLYSTATS);
- }
- }
-#endif
#ifdef DHD_WET
/* wet related packet proto manipulation should be done in DHD
- * since dongle doesn't have complete payload
+ since dongle doesn't have complete payload
*/
if (WET_ENABLED(&dhd->pub) &&
(dhd_wet_send_proc(dhd->pub.wet_info, pktbuf, &pktbuf) < 0)) {
@@ -4422,106 +3662,29 @@
}
#endif /* DHD_WET */
-#ifdef DHD_WMF
- eh = (struct ether_header *)PKTDATA(dhd->pub.osh, pktbuf);
- iph = (uint8 *)eh + ETHER_HDR_LEN;
-
- /* WMF processing for multicast packets
- * Only IPv4 packets are handled
- */
- if (ifp->wmf.wmf_enable && (ntoh16(eh->ether_type) == ETHER_TYPE_IP) &&
- (IP_VER(iph) == IP_VER_4) && (ETHER_ISMULTI(eh->ether_dhost) ||
- ((IPV4_PROT(iph) == IP_PROT_IGMP) && dhd->pub.wmf_ucast_igmp))) {
-#if defined(DHD_IGMP_UCQUERY) || defined(DHD_UCAST_UPNP)
- void *sdu_clone;
- bool ucast_convert = FALSE;
-#ifdef DHD_UCAST_UPNP
- uint32 dest_ip;
-
- dest_ip = ntoh32(*((uint32 *)(iph + IPV4_DEST_IP_OFFSET)));
- ucast_convert = dhd->pub.wmf_ucast_upnp && MCAST_ADDR_UPNP_SSDP(dest_ip);
-#endif /* DHD_UCAST_UPNP */
-#ifdef DHD_IGMP_UCQUERY
- ucast_convert |= dhd->pub.wmf_ucast_igmp_query &&
- (IPV4_PROT(iph) == IP_PROT_IGMP) &&
- (*(iph + IPV4_HLEN(iph)) == IGMPV2_HOST_MEMBERSHIP_QUERY);
-#endif /* DHD_IGMP_UCQUERY */
- if (ucast_convert) {
- dhd_sta_t *sta;
- unsigned long flags;
- struct list_head snapshot_list;
- struct list_head *wmf_ucforward_list;
-
- ret = NETDEV_TX_OK;
-
- /* For non BCM_GMAC3 platform we need a snapshot sta_list to
- * resolve double DHD_IF_STA_LIST_LOCK call deadlock issue.
- */
- wmf_ucforward_list = DHD_IF_WMF_UCFORWARD_LOCK(dhd, ifp, &snapshot_list);
-
- /* Convert upnp/igmp query to unicast for each assoc STA */
- list_for_each_entry(sta, wmf_ucforward_list, list) {
- /* Skip sending to proxy interfaces of proxySTA */
- if (sta->psta_prim != NULL && !ifp->wmf_psta_disable) {
- continue;
- }
- if ((sdu_clone = PKTDUP(dhd->pub.osh, pktbuf)) == NULL) {
- ret = WMF_NOP;
- break;
- }
- dhd_wmf_forward(ifp->wmf.wmfh, sdu_clone, 0, sta, 1);
- }
- DHD_IF_WMF_UCFORWARD_UNLOCK(dhd, wmf_ucforward_list);
-
- DHD_GENERAL_LOCK(&dhd->pub, flags);
- dhd->pub.dhd_bus_busy_state &= ~DHD_BUS_BUSY_IN_TX;
- dhd_os_busbusy_wake(&dhd->pub);
- DHD_GENERAL_UNLOCK(&dhd->pub, flags);
- DHD_PERIM_UNLOCK_TRY(DHD_FWDER_UNIT(dhd), lock_taken);
- DHD_OS_WAKE_UNLOCK(&dhd->pub);
-
- if (ret == NETDEV_TX_OK)
- PKTFREE(dhd->pub.osh, pktbuf, TRUE);
-
- return ret;
- } else
-#endif /* defined(DHD_IGMP_UCQUERY) || defined(DHD_UCAST_UPNP) */
- {
- /* There will be no STA info if the packet is coming from LAN host
- * Pass as NULL
- */
- ret = dhd_wmf_packets_handle(&dhd->pub, pktbuf, NULL, ifidx, 0);
- switch (ret) {
- case WMF_TAKEN:
- case WMF_DROP:
- /* Either taken by WMF or we should drop it.
- * Exiting send path
- */
-
- DHD_GENERAL_LOCK(&dhd->pub, flags);
- dhd->pub.dhd_bus_busy_state &= ~DHD_BUS_BUSY_IN_TX;
- dhd_os_busbusy_wake(&dhd->pub);
- DHD_GENERAL_UNLOCK(&dhd->pub, flags);
- DHD_PERIM_UNLOCK_TRY(DHD_FWDER_UNIT(dhd), lock_taken);
- DHD_OS_WAKE_UNLOCK(&dhd->pub);
- return NETDEV_TX_OK;
- default:
- /* Continue the transmit path */
- break;
- }
- }
- }
-#endif /* DHD_WMF */
#ifdef DHD_PSTA
/* PSR related packet proto manipulation should be done in DHD
* since dongle doesn't have complete payload
*/
- if (PSR_ENABLED(&dhd->pub) && (dhd_psta_proc(&dhd->pub,
- ifidx, &pktbuf, TRUE) < 0)) {
+ if (PSR_ENABLED(&dhd->pub) &&
+ (dhd_psta_proc(&dhd->pub, ifidx, &pktbuf, TRUE) < 0)) {
+
DHD_ERROR(("%s:%s: psta send proc failed\n", __FUNCTION__,
dhd_ifname(&dhd->pub, ifidx)));
}
#endif /* DHD_PSTA */
+#ifdef CONFIG_ARCH_MSM
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 16, 0)
+ if (skb->sk) {
+ sk_pacing_shift_update(skb->sk, 8);
+ }
+#endif /* LINUX_VERSION_CODE >= 4.16.0 */
+#endif /* CONFIG_ARCH_MSM */
+#ifdef DHDTCPSYNC_FLOOD_BLK
+ if (dhd_tcpdata_get_flag(&dhd->pub, pktbuf) == FLAG_SYNCACK) {
+ ifp->tsyncack_txed ++;
+ }
+#endif /* DHDTCPSYNC_FLOOD_BLK */
#ifdef DHDTCPACK_SUPPRESS
if (dhd->pub.tcpack_sup_mode == TCPACK_SUP_HOLD) {
@@ -4538,28 +3701,26 @@
}
}
#endif /* DHDTCPACK_SUPPRESS */
-#ifdef HOST_FLAG
- if (hostsleep) {
- printf("%s (%d): hostsleep = %d, tx_dropped = %lu\n",__FUNCTION__, __LINE__,
- hostsleep, ifp->stats.tx_dropped);
- PKTFREE(dhd->pub.osh, pktbuf, TRUE);
- ret = BCME_TXFAIL;
- goto done;
- }
-#endif
+ /*
+ * If Load Balance is enabled queue the packet
+ * else send directly from here.
+ */
+#if defined(DHD_LB_TXP)
+ ret = dhd_lb_sendpkt(dhd, net, ifidx, pktbuf);
+#else
ret = __dhd_sendpkt(&dhd->pub, ifidx, pktbuf);
+#endif // endif
done:
if (ret) {
ifp->stats.tx_dropped++;
dhd->pub.tx_dropped++;
} else {
-
#ifdef PROP_TXSTATUS
/* tx_packets counter can counted only when wlfc is disabled */
if (!dhd_wlfc_is_supported(&dhd->pub))
-#endif
+#endif // endif
{
dhd->pub.tx_packets++;
ifp->stats.tx_packets++;
@@ -4567,24 +3728,169 @@
}
}
-
DHD_GENERAL_LOCK(&dhd->pub, flags);
- dhd->pub.dhd_bus_busy_state &= ~DHD_BUS_BUSY_IN_TX;
+ DHD_BUS_BUSY_CLEAR_IN_TX(&dhd->pub);
+ DHD_IF_CLR_TX_ACTIVE(ifp, DHD_TX_START_XMIT);
+ dhd_os_tx_completion_wake(&dhd->pub);
dhd_os_busbusy_wake(&dhd->pub);
DHD_GENERAL_UNLOCK(&dhd->pub, flags);
DHD_PERIM_UNLOCK_TRY(DHD_FWDER_UNIT(dhd), lock_taken);
DHD_OS_WAKE_UNLOCK(&dhd->pub);
-
- BUZZZ_LOG(START_XMIT_END, 0);
-
/* Return ok: we always eat the packet */
-#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20))
- return 0;
-#else
return NETDEV_TX_OK;
-#endif
}
+#ifdef DHD_PCIE_NATIVE_RUNTIMEPM
+void dhd_rx_wq_wakeup(struct work_struct *ptr)
+{
+ struct dhd_rx_tx_work *work;
+ struct dhd_pub * pub;
+
+ work = container_of(ptr, struct dhd_rx_tx_work, work);
+
+ pub = work->pub;
+
+ DHD_RPM(("%s: ENTER. \n", __FUNCTION__));
+
+ if (atomic_read(&pub->block_bus) || pub->busstate == DHD_BUS_DOWN) {
+ return;
+ }
+
+ DHD_OS_WAKE_LOCK(pub);
+ if (pm_runtime_get_sync(dhd_bus_to_dev(pub->bus)) >= 0) {
+
+ // do nothing but wakeup the bus.
+ pm_runtime_mark_last_busy(dhd_bus_to_dev(pub->bus));
+ pm_runtime_put_autosuspend(dhd_bus_to_dev(pub->bus));
+ }
+ DHD_OS_WAKE_UNLOCK(pub);
+ kfree(work);
+}
+
+void dhd_start_xmit_wq_adapter(struct work_struct *ptr)
+{
+ struct dhd_rx_tx_work *work;
+ int ret;
+ dhd_info_t *dhd;
+ struct dhd_bus * bus;
+
+ work = container_of(ptr, struct dhd_rx_tx_work, work);
+
+ dhd = DHD_DEV_INFO(work->net);
+
+ bus = dhd->pub.bus;
+
+ if (atomic_read(&dhd->pub.block_bus)) {
+ kfree_skb(work->skb);
+ kfree(work);
+ dhd_netif_start_queue(bus);
+ return;
+ }
+
+ if (pm_runtime_get_sync(dhd_bus_to_dev(bus)) >= 0) {
+ ret = dhd_start_xmit(work->skb, work->net);
+ pm_runtime_mark_last_busy(dhd_bus_to_dev(bus));
+ pm_runtime_put_autosuspend(dhd_bus_to_dev(bus));
+ }
+ kfree(work);
+ dhd_netif_start_queue(bus);
+
+ if (ret)
+ netdev_err(work->net,
+ "error: dhd_start_xmit():%d\n", ret);
+}
+
+#ifdef CFI_CHECK
+netdev_tx_t BCMFASTPATH
+#else
+int BCMFASTPATH
+#endif /* CFI_CHECK */
+dhd_start_xmit_wrapper(struct sk_buff *skb, struct net_device *net)
+{
+ struct dhd_rx_tx_work *start_xmit_work;
+ int ret;
+ dhd_info_t *dhd = DHD_DEV_INFO(net);
+
+ if (dhd->pub.busstate == DHD_BUS_SUSPEND) {
+ DHD_RPM(("%s: wakeup the bus using workqueue.\n", __FUNCTION__));
+
+ dhd_netif_stop_queue(dhd->pub.bus);
+
+ start_xmit_work = (struct dhd_rx_tx_work*)
+ kmalloc(sizeof(*start_xmit_work), GFP_ATOMIC);
+
+ if (!start_xmit_work) {
+ netdev_err(net,
+ "error: failed to alloc start_xmit_work\n");
+#ifdef CFI_CHECK
+ ret = NETDEV_TX_BUSY;
+#else
+ ret = -ENOMEM;
+#endif /* CFI_CHECK */
+ goto exit;
+ }
+
+ INIT_WORK(&start_xmit_work->work, dhd_start_xmit_wq_adapter);
+ start_xmit_work->skb = skb;
+ start_xmit_work->net = net;
+ queue_work(dhd->tx_wq, &start_xmit_work->work);
+#ifdef CFI_CHECK
+ ret = NETDEV_TX_OK;
+#else
+ ret = NET_XMIT_SUCCESS;
+#endif /* CFI_CHECK */
+
+ } else if (dhd->pub.busstate == DHD_BUS_DATA) {
+ ret = dhd_start_xmit(skb, net);
+ } else {
+ /* when bus is down */
+#ifdef CFI_CHECK
+ ret = NETDEV_TX_BUSY;
+#else
+ ret = -ENODEV;
+#endif /* CFI_CHECK */
+ }
+
+exit:
+ return ret;
+}
+
+void
+dhd_bus_wakeup_work(dhd_pub_t *dhdp)
+{
+ struct dhd_rx_tx_work *rx_work;
+ dhd_info_t *dhd = (dhd_info_t *)dhdp->info;
+
+ rx_work = kmalloc(sizeof(*rx_work), GFP_ATOMIC);
+ if (!rx_work) {
+ DHD_ERROR(("%s: start_rx_work alloc error. \n", __FUNCTION__));
+ return;
+ }
+
+ INIT_WORK(&rx_work->work, dhd_rx_wq_wakeup);
+ rx_work->pub = dhdp;
+ queue_work(dhd->rx_wq, &rx_work->work);
+
+}
+#endif /* DHD_PCIE_NATIVE_RUNTIMEPM */
+
+static void
+__dhd_txflowcontrol(dhd_pub_t *dhdp, struct net_device *net, bool state)
+{
+
+ if ((state == ON) && (dhdp->txoff == FALSE)) {
+ netif_stop_queue(net);
+ dhd_prot_update_pktid_txq_stop_cnt(dhdp);
+ } else if (state == ON) {
+ DHD_ERROR(("%s: Netif Queue has already stopped\n", __FUNCTION__));
+ }
+ if ((state == OFF) && (dhdp->txoff == TRUE)) {
+ netif_wake_queue(net);
+ dhd_prot_update_pktid_txq_start_cnt(dhdp);
+ } else if (state == OFF) {
+ DHD_ERROR(("%s: Netif Queue has already started\n", __FUNCTION__));
+ }
+}
void
dhd_txflowcontrol(dhd_pub_t *dhdp, int ifidx, bool state)
@@ -4602,119 +3908,22 @@
if ((dhdp->dequeue_prec_map == 1 << PRIO_8021D_NC) && state == ON) {
return;
}
-#endif
+#endif // endif
if (ifidx == ALL_INTERFACES) {
- /* Flow control on all active interfaces */
- dhdp->txoff = state;
for (i = 0; i < DHD_MAX_IFS; i++) {
if (dhd->iflist[i]) {
net = dhd->iflist[i]->net;
- if (state == ON)
- netif_stop_queue(net);
- else
- netif_wake_queue(net);
+ __dhd_txflowcontrol(dhdp, net, state);
}
}
} else {
if (dhd->iflist[ifidx]) {
net = dhd->iflist[ifidx]->net;
- if (state == ON)
- netif_stop_queue(net);
- else
- netif_wake_queue(net);
+ __dhd_txflowcontrol(dhdp, net, state);
}
}
-}
-
-#ifdef DHD_RX_DUMP
-typedef struct {
- uint16 type;
- const char *str;
-} PKTTYPE_INFO;
-
-static const PKTTYPE_INFO packet_type_info[] =
-{
- { ETHER_TYPE_IP, "IP" },
- { ETHER_TYPE_ARP, "ARP" },
- { ETHER_TYPE_BRCM, "BRCM" },
- { ETHER_TYPE_802_1X, "802.1X" },
- { ETHER_TYPE_WAI, "WAPI" },
- { 0, ""}
-};
-
-static const char *_get_packet_type_str(uint16 type)
-{
- int i;
- int n = sizeof(packet_type_info)/sizeof(packet_type_info[1]) - 1;
-
- for (i = 0; i < n; i++) {
- if (packet_type_info[i].type == type)
- return packet_type_info[i].str;
- }
-
- return packet_type_info[n].str;
-}
-#endif /* DHD_RX_DUMP */
-
-
-#ifdef DHD_WMF
-bool
-dhd_is_rxthread_enabled(dhd_pub_t *dhdp)
-{
- dhd_info_t *dhd = dhdp->info;
-
- return dhd->rxthread_enabled;
-}
-#endif /* DHD_WMF */
-
-void
-dhd_rx_mon_pkt(dhd_pub_t *dhdp, void *pkt, int ifidx)
-{
- dhd_info_t *dhd = (dhd_info_t *)dhdp->info;
- struct sk_buff *skb;
-
- skb = PKTTONATIVE(dhdp->osh, pkt);
-
- if (dhd->monitor_type && dhd->monitor_dev)
- skb->dev = dhd->monitor_dev;
- else {
- PKTFREE(dhdp->osh, pkt, FALSE);
- return;
- }
-
- skb->protocol = eth_type_trans(skb, skb->dev);
-
- if (in_interrupt()) {
- bcm_object_trace_opr(skb, BCM_OBJDBG_REMOVE,
- __FUNCTION__, __LINE__);
- DHD_PERIM_UNLOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
- netif_rx(skb);
- DHD_PERIM_LOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
- } else {
- /* If the receive is not processed inside an ISR,
- * the softirqd must be woken explicitly to service
- * the NET_RX_SOFTIRQ. In 2.6 kernels, this is handled
- * by netif_rx_ni(), but in earlier kernels, we need
- * to do it manually.
- */
- bcm_object_trace_opr(skb, BCM_OBJDBG_REMOVE,
- __FUNCTION__, __LINE__);
-
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
- DHD_PERIM_UNLOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
- netif_rx_ni(skb);
- DHD_PERIM_LOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
-#else
- ulong flags;
- DHD_PERIM_UNLOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
- netif_rx(skb);
- DHD_PERIM_LOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
- local_irq_save(flags);
- RAISE_RX_SOFTIRQ();
- local_irq_restore(flags);
-#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) */
- }
+ dhdp->txoff = state;
}
#ifdef DHD_MCAST_REGEN
@@ -4753,6 +3962,418 @@
}
#endif /* MCAST_REGEN */
+#ifdef SHOW_LOGTRACE
+static void
+dhd_netif_rx_ni(struct sk_buff * skb)
+{
+ /* Do not call netif_recieve_skb as this workqueue scheduler is
+ * not from NAPI Also as we are not in INTR context, do not call
+ * netif_rx, instead call netif_rx_ni (for kerenl >= 2.6) which
+ * does netif_rx, disables irq, raise NET_IF_RX softirq and
+ * enables interrupts back
+ */
+ netif_rx_ni(skb);
+}
+
+static int
+dhd_event_logtrace_pkt_process(dhd_pub_t *dhdp, struct sk_buff * skb)
+{
+ dhd_info_t *dhd = (dhd_info_t *)dhdp->info;
+ int ret = BCME_OK;
+ uint datalen;
+ bcm_event_msg_u_t evu;
+ void *data = NULL;
+ void *pktdata = NULL;
+ bcm_event_t *pvt_data;
+ uint pktlen;
+
+ DHD_TRACE(("%s:Enter\n", __FUNCTION__));
+
+ /* In dhd_rx_frame, header is stripped using skb_pull
+ * of size ETH_HLEN, so adjust pktlen accordingly
+ */
+ pktlen = skb->len + ETH_HLEN;
+
+ pktdata = (void *)skb_mac_header(skb);
+ ret = wl_host_event_get_data(pktdata, pktlen, &evu);
+
+ if (ret != BCME_OK) {
+ DHD_ERROR(("%s: wl_host_event_get_data err = %d\n",
+ __FUNCTION__, ret));
+ goto exit;
+ }
+
+ datalen = ntoh32(evu.event.datalen);
+
+ pvt_data = (bcm_event_t *)pktdata;
+ data = &pvt_data[1];
+
+ dhd_dbg_trace_evnt_handler(dhdp, data, &dhd->event_data, datalen);
+
+exit:
+ return ret;
+}
+
+/*
+ * dhd_event_logtrace_process_items processes
+ * each skb from evt_trace_queue.
+ * Returns TRUE if more packets to be processed
+ * else returns FALSE
+ */
+
+static int
+dhd_event_logtrace_process_items(dhd_info_t *dhd)
+{
+ dhd_pub_t *dhdp;
+ struct sk_buff *skb;
+ uint32 qlen;
+ uint32 process_len;
+
+ if (!dhd) {
+ DHD_ERROR(("%s: dhd info not available \n", __FUNCTION__));
+ return 0;
+ }
+
+ dhdp = &dhd->pub;
+
+ if (!dhdp) {
+ DHD_ERROR(("%s: dhd pub is null \n", __FUNCTION__));
+ return 0;
+ }
+
+ qlen = skb_queue_len(&dhd->evt_trace_queue);
+ process_len = MIN(qlen, DHD_EVENT_LOGTRACE_BOUND);
+
+ /* Run while loop till bound is reached or skb queue is empty */
+ while (process_len--) {
+ int ifid = 0;
+ skb = skb_dequeue(&dhd->evt_trace_queue);
+ if (skb == NULL) {
+ DHD_ERROR(("%s: skb is NULL, which is not valid case\n",
+ __FUNCTION__));
+ break;
+ }
+ BCM_REFERENCE(ifid);
+#ifdef PCIE_FULL_DONGLE
+ /* Check if pkt is from INFO ring or WLC_E_TRACE */
+ ifid = DHD_PKTTAG_IFID((dhd_pkttag_fr_t *)PKTTAG(skb));
+ if (ifid == DHD_DUMMY_INFO_IF) {
+ /* Process logtrace from info rings */
+ dhd_event_logtrace_infobuf_pkt_process(dhdp, skb, &dhd->event_data);
+ } else
+#endif /* PCIE_FULL_DONGLE */
+ {
+ /* Processing WLC_E_TRACE case OR non PCIE PCIE_FULL_DONGLE case */
+ dhd_event_logtrace_pkt_process(dhdp, skb);
+ }
+
+ /* Dummy sleep so that scheduler kicks in after processing any logprints */
+ OSL_SLEEP(0);
+
+ /* Send packet up if logtrace_pkt_sendup is TRUE */
+ if (dhdp->logtrace_pkt_sendup) {
+#ifdef DHD_USE_STATIC_CTRLBUF
+ /* If bufs are allocated via static buf pool
+ * and logtrace_pkt_sendup enabled, make a copy,
+ * free the local one and send the copy up.
+ */
+ void *npkt = PKTDUP(dhdp->osh, skb);
+ /* Clone event and send it up */
+ PKTFREE_STATIC(dhdp->osh, skb, FALSE);
+ if (npkt) {
+ skb = npkt;
+ } else {
+ DHD_ERROR(("skb clone failed. dropping logtrace pkt.\n"));
+ /* Packet is already freed, go to next packet */
+ continue;
+ }
+#endif /* DHD_USE_STATIC_CTRLBUF */
+#ifdef PCIE_FULL_DONGLE
+ /* For infobuf packets as if is DHD_DUMMY_INFO_IF,
+ * to send skb to network layer, assign skb->dev with
+ * Primary interface n/w device
+ */
+ if (ifid == DHD_DUMMY_INFO_IF) {
+ skb = PKTTONATIVE(dhdp->osh, skb);
+ skb->dev = dhd->iflist[0]->net;
+ }
+#endif /* PCIE_FULL_DONGLE */
+ /* Send pkt UP */
+ dhd_netif_rx_ni(skb);
+ } else {
+ /* Don't send up. Free up the packet. */
+#ifdef DHD_USE_STATIC_CTRLBUF
+ PKTFREE_STATIC(dhdp->osh, skb, FALSE);
+#else
+ PKTFREE(dhdp->osh, skb, FALSE);
+#endif /* DHD_USE_STATIC_CTRLBUF */
+ }
+ }
+
+ /* Reschedule if more packets to be processed */
+ return (qlen >= DHD_EVENT_LOGTRACE_BOUND);
+}
+
+#ifdef DHD_USE_KTHREAD_FOR_LOGTRACE
+static int
+dhd_logtrace_thread(void *data)
+{
+ tsk_ctl_t *tsk = (tsk_ctl_t *)data;
+ dhd_info_t *dhd = (dhd_info_t *)tsk->parent;
+ dhd_pub_t *dhdp = (dhd_pub_t *)&dhd->pub;
+ int ret;
+
+ while (1) {
+ dhdp->logtrace_thr_ts.entry_time = OSL_LOCALTIME_NS();
+ if (!binary_sema_down(tsk)) {
+ dhdp->logtrace_thr_ts.sem_down_time = OSL_LOCALTIME_NS();
+ SMP_RD_BARRIER_DEPENDS();
+ if (dhd->pub.dongle_reset == FALSE) {
+ do {
+ /* Check terminated before processing the items */
+ if (tsk->terminated) {
+ DHD_ERROR(("%s: task terminated\n", __FUNCTION__));
+ goto exit;
+ }
+#ifdef EWP_EDL
+ /* check if EDL is being used */
+ if (dhd->pub.dongle_edl_support) {
+ ret = dhd_prot_process_edl_complete(&dhd->pub,
+ &dhd->event_data);
+ } else {
+ ret = dhd_event_logtrace_process_items(dhd);
+ }
+#else
+ ret = dhd_event_logtrace_process_items(dhd);
+#endif /* EWP_EDL */
+ /* if ret > 0, bound has reached so to be fair to other
+ * processes need to yield the scheduler.
+ * The comment above yield()'s definition says:
+ * If you want to use yield() to wait for something,
+ * use wait_event().
+ * If you want to use yield() to be 'nice' for others,
+ * use cond_resched().
+ * If you still want to use yield(), do not!
+ */
+ if (ret > 0) {
+ cond_resched();
+ OSL_SLEEP(DHD_EVENT_LOGTRACE_RESCHEDULE_DELAY_MS);
+ } else if (ret < 0) {
+ DHD_ERROR(("%s: ERROR should not reach here\n",
+ __FUNCTION__));
+ }
+ } while (ret > 0);
+ }
+ if (tsk->flush_ind) {
+ DHD_ERROR(("%s: flushed\n", __FUNCTION__));
+ dhdp->logtrace_thr_ts.flush_time = OSL_LOCALTIME_NS();
+ tsk->flush_ind = 0;
+ complete(&tsk->flushed);
+ }
+ } else {
+ DHD_ERROR(("%s: unexpted break\n", __FUNCTION__));
+ dhdp->logtrace_thr_ts.unexpected_break_time = OSL_LOCALTIME_NS();
+ break;
+ }
+ }
+exit:
+ complete_and_exit(&tsk->completed, 0);
+ dhdp->logtrace_thr_ts.complete_time = OSL_LOCALTIME_NS();
+}
+#else
+static void
+dhd_event_logtrace_process(struct work_struct * work)
+{
+ int ret = 0;
+/* Ignore compiler warnings due to -Werror=cast-qual */
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
+#endif // endif
+ struct delayed_work *dw = to_delayed_work(work);
+ struct dhd_info *dhd =
+ container_of(dw, struct dhd_info, event_log_dispatcher_work);
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic pop
+#endif // endif
+#ifdef EWP_EDL
+ if (dhd->pub.dongle_edl_support) {
+ ret = dhd_prot_process_edl_complete(&dhd->pub, &dhd->event_data);
+ } else {
+ ret = dhd_event_logtrace_process_items(dhd);
+ }
+#else
+ ret = dhd_event_logtrace_process_items(dhd);
+#endif /* EWP_EDL */
+
+ if (ret > 0) {
+ schedule_delayed_work(&(dhd)->event_log_dispatcher_work,
+ msecs_to_jiffies(DHD_EVENT_LOGTRACE_RESCHEDULE_DELAY_MS));
+ }
+
+ return;
+}
+#endif /* DHD_USE_KTHREAD_FOR_LOGTRACE */
+
+void
+dhd_schedule_logtrace(void *dhd_info)
+{
+ dhd_info_t *dhd = (dhd_info_t *)dhd_info;
+
+#ifdef DHD_USE_KTHREAD_FOR_LOGTRACE
+ if (dhd->thr_logtrace_ctl.thr_pid >= 0) {
+ binary_sema_up(&dhd->thr_logtrace_ctl);
+ } else {
+ DHD_ERROR(("%s: thr_logtrace_ctl(%ld) not inited\n", __FUNCTION__,
+ dhd->thr_logtrace_ctl.thr_pid));
+ }
+#else
+ schedule_delayed_work(&dhd->event_log_dispatcher_work, 0);
+#endif /* DHD_USE_KTHREAD_FOR_LOGTRACE */
+ return;
+}
+
+void
+dhd_cancel_logtrace_process_sync(dhd_info_t *dhd)
+{
+#ifdef DHD_USE_KTHREAD_FOR_LOGTRACE
+ if (dhd->thr_logtrace_ctl.thr_pid >= 0) {
+ PROC_STOP_USING_BINARY_SEMA(&dhd->thr_logtrace_ctl);
+ } else {
+ DHD_ERROR(("%s: thr_logtrace_ctl(%ld) not inited\n", __FUNCTION__,
+ dhd->thr_logtrace_ctl.thr_pid));
+ }
+#else
+ cancel_delayed_work_sync(&dhd->event_log_dispatcher_work);
+#endif /* DHD_USE_KTHREAD_FOR_LOGTRACE */
+}
+
+void
+dhd_flush_logtrace_process(dhd_info_t *dhd)
+{
+#ifdef DHD_USE_KTHREAD_FOR_LOGTRACE
+ if (dhd->thr_logtrace_ctl.thr_pid >= 0) {
+ PROC_FLUSH_USING_BINARY_SEMA(&dhd->thr_logtrace_ctl);
+ } else {
+ DHD_ERROR(("%s: thr_logtrace_ctl(%ld) not inited\n", __FUNCTION__,
+ dhd->thr_logtrace_ctl.thr_pid));
+ }
+#else
+ flush_delayed_work(&dhd->event_log_dispatcher_work);
+#endif /* DHD_USE_KTHREAD_FOR_LOGTRACE */
+}
+
+int
+dhd_init_logtrace_process(dhd_info_t *dhd)
+{
+#ifdef DHD_USE_KTHREAD_FOR_LOGTRACE
+ dhd->thr_logtrace_ctl.thr_pid = DHD_PID_KT_INVALID;
+ PROC_START(dhd_logtrace_thread, dhd, &dhd->thr_logtrace_ctl, 0, "dhd_logtrace_thread");
+ if (dhd->thr_logtrace_ctl.thr_pid < 0) {
+ DHD_ERROR(("%s: init logtrace process failed\n", __FUNCTION__));
+ return BCME_ERROR;
+ } else {
+ DHD_ERROR(("%s: thr_logtrace_ctl(%ld) succedded\n", __FUNCTION__,
+ dhd->thr_logtrace_ctl.thr_pid));
+ }
+#else
+ INIT_DELAYED_WORK(&dhd->event_log_dispatcher_work, dhd_event_logtrace_process);
+#endif /* DHD_USE_KTHREAD_FOR_LOGTRACE */
+ return BCME_OK;
+}
+
+int
+dhd_reinit_logtrace_process(dhd_info_t *dhd)
+{
+#ifdef DHD_USE_KTHREAD_FOR_LOGTRACE
+ /* Re-init only if PROC_STOP from dhd_stop was called
+ * which can be checked via thr_pid
+ */
+ if (dhd->thr_logtrace_ctl.thr_pid < 0) {
+ PROC_START(dhd_logtrace_thread, dhd, &dhd->thr_logtrace_ctl,
+ 0, "dhd_logtrace_thread");
+ if (dhd->thr_logtrace_ctl.thr_pid < 0) {
+ DHD_ERROR(("%s: reinit logtrace process failed\n", __FUNCTION__));
+ return BCME_ERROR;
+ } else {
+ DHD_ERROR(("%s: thr_logtrace_ctl(%ld) succedded\n", __FUNCTION__,
+ dhd->thr_logtrace_ctl.thr_pid));
+ }
+ }
+#else
+ /* No need to re-init for WQ as calcel_delayed_work_sync will
+ * will not delete the WQ
+ */
+#endif /* DHD_USE_KTHREAD_FOR_LOGTRACE */
+ return BCME_OK;
+}
+
+void
+dhd_event_logtrace_enqueue(dhd_pub_t *dhdp, int ifidx, void *pktbuf)
+{
+ dhd_info_t *dhd = (dhd_info_t *)dhdp->info;
+
+#ifdef PCIE_FULL_DONGLE
+ /* Add ifidx in the PKTTAG */
+ DHD_PKTTAG_SET_IFID((dhd_pkttag_fr_t *)PKTTAG(pktbuf), ifidx);
+#endif /* PCIE_FULL_DONGLE */
+ skb_queue_tail(&dhd->evt_trace_queue, pktbuf);
+
+ dhd_schedule_logtrace(dhd);
+}
+
+void
+dhd_event_logtrace_flush_queue(dhd_pub_t *dhdp)
+{
+ dhd_info_t *dhd = (dhd_info_t *)dhdp->info;
+ struct sk_buff *skb;
+
+ while ((skb = skb_dequeue(&dhd->evt_trace_queue)) != NULL) {
+#ifdef DHD_USE_STATIC_CTRLBUF
+ PKTFREE_STATIC(dhdp->osh, skb, FALSE);
+#else
+ PKTFREE(dhdp->osh, skb, FALSE);
+#endif /* DHD_USE_STATIC_CTRLBUF */
+ }
+}
+
+#ifdef BCMPCIE
+void
+dhd_sendup_info_buf(dhd_pub_t *dhdp, uint8 *msg)
+{
+ struct sk_buff *skb = NULL;
+ uint32 pktsize = 0;
+ void *pkt = NULL;
+ info_buf_payload_hdr_t *infobuf = NULL;
+ dhd_info_t *dhd = dhdp->info;
+ uint8 *pktdata = NULL;
+
+ if (!msg)
+ return;
+
+ /* msg = |infobuf_ver(u32)|info_buf_payload_hdr_t|msgtrace_hdr_t|<var len data>| */
+ infobuf = (info_buf_payload_hdr_t *)(msg + sizeof(uint32));
+ pktsize = (uint32)(ltoh16(infobuf->length) + sizeof(info_buf_payload_hdr_t) +
+ sizeof(uint32));
+ pkt = PKTGET(dhdp->osh, pktsize, FALSE);
+ if (!pkt) {
+ DHD_ERROR(("%s: skb alloc failed ! not sending event log up.\n", __FUNCTION__));
+ } else {
+ PKTSETLEN(dhdp->osh, pkt, pktsize);
+ pktdata = PKTDATA(dhdp->osh, pkt);
+ memcpy(pktdata, msg, pktsize);
+ /* For infobuf packets assign skb->dev with
+ * Primary interface n/w device
+ */
+ skb = PKTTONATIVE(dhdp->osh, pkt);
+ skb->dev = dhd->iflist[0]->net;
+ /* Send pkt UP */
+ dhd_netif_rx_ni(skb);
+ }
+}
+#endif /* BCMPCIE */
+#endif /* SHOW_LOGTRACE */
+
/** Called when a frame is received by the dongle on interface 'ifidx' */
void
dhd_rx_frame(dhd_pub_t *dhdp, int ifidx, void *pktbuf, int numpkt, uint8 chan)
@@ -4765,21 +4386,26 @@
int i;
dhd_if_t *ifp;
wl_event_msg_t event;
+#if (defined(OEM_ANDROID) || defined(OEM_EMBEDDED_LINUX))
int tout_rx = 0;
int tout_ctrl = 0;
+#endif /* OEM_ANDROID || OEM_EMBEDDED_LINUX */
void *skbhead = NULL;
void *skbprev = NULL;
uint16 protocol;
-#if defined(DHD_RX_DUMP) || defined(DHD_8021X_DUMP)
- char *dump_data;
-#endif /* DHD_RX_DUMP || DHD_8021X_DUMP */
+ unsigned char *dump_data;
#ifdef DHD_MCAST_REGEN
uint8 interface_role;
if_flow_lkup_t *if_flow_lkup;
unsigned long flags;
-#endif
+#endif // endif
+#ifdef DHD_WAKE_STATUS
+ int pkt_wake = 0;
+ wake_counts_t *wcp = NULL;
+#endif /* DHD_WAKE_STATUS */
DHD_TRACE(("%s: Enter\n", __FUNCTION__));
+ BCM_REFERENCE(dump_data);
for (i = 0; pktbuf && i < numpkt; i++, pktbuf = pnext) {
struct ether_header *eh;
@@ -4787,30 +4413,91 @@
pnext = PKTNEXT(dhdp->osh, pktbuf);
PKTSETNEXT(dhdp->osh, pktbuf, NULL);
+ /* info ring "debug" data, which is not a 802.3 frame, is sent/hacked with a
+ * special ifidx of DHD_DUMMY_INFO_IF. This is just internal to dhd to get the data
+ * from dhd_msgbuf.c:dhd_prot_infobuf_cmplt_process() to here (dhd_rx_frame).
+ */
+ if (ifidx == DHD_DUMMY_INFO_IF) {
+ /* Event msg printing is called from dhd_rx_frame which is in Tasklet
+ * context in case of PCIe FD, in case of other bus this will be from
+ * DPC context. If we get bunch of events from Dongle then printing all
+ * of them from Tasklet/DPC context that too in data path is costly.
+ * Also in the new Dongle SW(4359, 4355 onwards) console prints too come as
+ * events with type WLC_E_TRACE.
+ * We'll print this console logs from the WorkQueue context by enqueing SKB
+ * here and Dequeuing will be done in WorkQueue and will be freed only if
+ * logtrace_pkt_sendup is TRUE
+ */
+#ifdef SHOW_LOGTRACE
+ dhd_event_logtrace_enqueue(dhdp, ifidx, pktbuf);
+#else /* !SHOW_LOGTRACE */
+ /* If SHOW_LOGTRACE not defined and ifidx is DHD_DUMMY_INFO_IF,
+ * free the PKT here itself
+ */
+#ifdef DHD_USE_STATIC_CTRLBUF
+ PKTFREE_STATIC(dhdp->osh, pktbuf, FALSE);
+#else
+ PKTFREE(dhdp->osh, pktbuf, FALSE);
+#endif /* DHD_USE_STATIC_CTRLBUF */
+#endif /* SHOW_LOGTRACE */
+ continue;
+ }
+#ifdef DHD_WAKE_STATUS
+ pkt_wake = dhd_bus_get_bus_wake(dhdp);
+ wcp = dhd_bus_get_wakecount(dhdp);
+ if (wcp == NULL) {
+ /* If wakeinfo count buffer is null do not update wake count values */
+ pkt_wake = 0;
+ }
+#endif /* DHD_WAKE_STATUS */
+
+ eh = (struct ether_header *)PKTDATA(dhdp->osh, pktbuf);
+
+ if (ifidx >= DHD_MAX_IFS) {
+ DHD_ERROR(("%s: ifidx(%d) Out of bound. drop packet\n",
+ __FUNCTION__, ifidx));
+ if (ntoh16(eh->ether_type) == ETHER_TYPE_BRCM) {
+#ifdef DHD_USE_STATIC_CTRLBUF
+ PKTFREE_STATIC(dhdp->osh, pktbuf, FALSE);
+#else
+ PKTFREE(dhdp->osh, pktbuf, FALSE);
+#endif /* DHD_USE_STATIC_CTRLBUF */
+ } else {
+ PKTCFREE(dhdp->osh, pktbuf, FALSE);
+ }
+ continue;
+ }
+
ifp = dhd->iflist[ifidx];
if (ifp == NULL) {
DHD_ERROR(("%s: ifp is NULL. drop packet\n",
__FUNCTION__));
- PKTCFREE(dhdp->osh, pktbuf, FALSE);
+ if (ntoh16(eh->ether_type) == ETHER_TYPE_BRCM) {
+#ifdef DHD_USE_STATIC_CTRLBUF
+ PKTFREE_STATIC(dhdp->osh, pktbuf, FALSE);
+#else
+ PKTFREE(dhdp->osh, pktbuf, FALSE);
+#endif /* DHD_USE_STATIC_CTRLBUF */
+ } else {
+ PKTCFREE(dhdp->osh, pktbuf, FALSE);
+ }
continue;
}
-
- eh = (struct ether_header *)PKTDATA(dhdp->osh, pktbuf);
/* Dropping only data packets before registering net device to avoid kernel panic */
#ifndef PROP_TXSTATUS_VSDB
if ((!ifp->net || ifp->net->reg_state != NETREG_REGISTERED) &&
- (ntoh16(eh->ether_type) != ETHER_TYPE_BRCM)) {
+ (ntoh16(eh->ether_type) != ETHER_TYPE_BRCM))
#else
if ((!ifp->net || ifp->net->reg_state != NETREG_REGISTERED || !dhd->pub.up) &&
- (ntoh16(eh->ether_type) != ETHER_TYPE_BRCM)) {
+ (ntoh16(eh->ether_type) != ETHER_TYPE_BRCM))
#endif /* PROP_TXSTATUS_VSDB */
+ {
DHD_ERROR(("%s: net device is NOT registered yet. drop packet\n",
__FUNCTION__));
PKTCFREE(dhdp->osh, pktbuf, FALSE);
continue;
}
-
#ifdef PROP_TXSTATUS
if (dhd_wlfc_is_header_only_pkt(dhdp, pktbuf)) {
@@ -4821,7 +4508,7 @@
PKTCFREE(dhdp->osh, pktbuf, FALSE);
continue;
}
-#endif
+#endif // endif
#ifdef DHD_L2_FILTER
/* If block_ping is enabled drop the ping packet */
if (ifp->block_ping) {
@@ -4844,6 +4531,12 @@
*/
if (ret == BCME_OK) {
PKTCFREE(dhdp->osh, pktbuf, TRUE);
+ continue;
+ }
+ }
+ if (ifp->block_tdls) {
+ if (bcm_l2_filter_block_tdls(dhdp->osh, pktbuf) == BCME_OK) {
+ PKTCFREE(dhdp->osh, pktbuf, FALSE);
continue;
}
}
@@ -4878,39 +4571,36 @@
}
#endif /* MCAST_REGEN */
-#ifdef DHD_WMF
- /* WMF processing for multicast packets */
- if (ifp->wmf.wmf_enable && (ETHER_ISMULTI(eh->ether_dhost))) {
- dhd_sta_t *sta;
- int ret;
-
- sta = dhd_find_sta(dhdp, ifidx, (void *)eh->ether_shost);
- ret = dhd_wmf_packets_handle(dhdp, pktbuf, sta, ifidx, 1);
- switch (ret) {
- case WMF_TAKEN:
- /* The packet is taken by WMF. Continue to next iteration */
- continue;
- case WMF_DROP:
- /* Packet DROP decision by WMF. Toss it */
- DHD_ERROR(("%s: WMF decides to drop packet\n",
- __FUNCTION__));
- PKTCFREE(dhdp->osh, pktbuf, FALSE);
- continue;
- default:
- /* Continue the transmit path */
- break;
+#ifdef DHDTCPSYNC_FLOOD_BLK
+ if (dhd_tcpdata_get_flag(dhdp, pktbuf) == FLAG_SYNC) {
+ int delta_sec;
+ int delta_sync;
+ int sync_per_sec;
+ u64 curr_time = DIV_U64_BY_U32(OSL_LOCALTIME_NS(), NSEC_PER_SEC);
+ ifp->tsync_rcvd ++;
+ delta_sync = ifp->tsync_rcvd - ifp->tsyncack_txed;
+ delta_sec = curr_time - ifp->last_sync;
+ if (delta_sec > 1) {
+ sync_per_sec = delta_sync/delta_sec;
+ if (sync_per_sec > TCP_SYNC_FLOOD_LIMIT) {
+ schedule_work(&ifp->blk_tsfl_work);
+ DHD_ERROR(("ifx %d TCP SYNC Flood attack suspected! "
+ "sync recvied %d pkt/sec \n",
+ ifidx, sync_per_sec));
+ }
+ dhd_reset_tcpsync_info_by_ifp(ifp);
}
+
}
-#endif /* DHD_WMF */
+#endif /* DHDTCPSYNC_FLOOD_BLK */
#ifdef DHDTCPACK_SUPPRESS
dhd_tcpdata_info_get(dhdp, pktbuf);
-#endif
+#endif // endif
skb = PKTTONATIVE(dhdp->osh, pktbuf);
ASSERT(ifp);
skb->dev = ifp->net;
-
#ifdef DHD_WET
/* wet related packet proto manipulation should be done in DHD
* since dongle doesn't have complete payload
@@ -4923,29 +4613,52 @@
#endif /* DHD_WET */
#ifdef DHD_PSTA
- if (PSR_ENABLED(dhdp) && (dhd_psta_proc(dhdp, ifidx, &pktbuf, FALSE) < 0)) {
- DHD_ERROR(("%s:%s: psta recv proc failed\n", __FUNCTION__,
- dhd_ifname(dhdp, ifidx)));
+ if (PSR_ENABLED(dhdp) &&
+ (dhd_psta_proc(dhdp, ifidx, &pktbuf, FALSE) < 0)) {
+ DHD_ERROR(("%s:%s: psta recv proc failed\n", __FUNCTION__,
+ dhd_ifname(dhdp, ifidx)));
}
#endif /* DHD_PSTA */
-#ifdef PCIE_FULL_DONGLE
- if ((DHD_IF_ROLE_AP(dhdp, ifidx) || DHD_IF_ROLE_P2PGO(dhdp, ifidx)) &&
- (!ifp->ap_isolate)) {
- eh = (struct ether_header *)PKTDATA(dhdp->osh, pktbuf);
- if (ETHER_ISUCAST(eh->ether_dhost)) {
- if (dhd_find_sta(dhdp, ifidx, (void *)eh->ether_dhost)) {
- dhd_sendpkt(dhdp, ifidx, pktbuf);
- continue;
+ DHD_TRACE(("\nAp isolate in dhd is %d\n", ifp->ap_isolate));
+ if (ifidx >= 0 && dhdp != NULL && dhdp->info != NULL &&
+ dhdp->info->iflist[ifidx] != NULL) {
+ if ((DHD_IF_ROLE_AP(dhdp, ifidx) || DHD_IF_ROLE_P2PGO(dhdp, ifidx)) &&
+ (!ifp->ap_isolate)) {
+ DHD_TRACE(("%s: MACADDR: " MACDBG " ifidx %d\n",
+ __FUNCTION__,
+ MAC2STRDBG(dhdp->info->iflist[ifidx]->mac_addr),
+ ifidx));
+ DHD_TRACE(("%s: DEST: " MACDBG " ifidx %d\n",
+ __FUNCTION__, MAC2STRDBG(eh->ether_dhost), ifidx));
+ eh = (struct ether_header *)PKTDATA(dhdp->osh, pktbuf);
+ if (ETHER_ISUCAST(eh->ether_dhost)) {
+ if (dhd_find_sta(dhdp, ifidx, (void *)eh->ether_dhost)) {
+ DHD_TRACE(("\nPacket not for us send down\n"));
+ dhd_sendpkt(dhdp, ifidx, pktbuf);
+ continue;
+ }
+ } else {
+ void *npktbuf = PKTDUP(dhdp->osh, pktbuf);
+ if (npktbuf) {
+ DHD_TRACE(("\ncalling bcmc dhd_sendpkt"
+ "and send dup up\n"));
+ dhd_sendpkt(dhdp, ifidx, npktbuf);
+ }
}
- } else {
- void *npktbuf = PKTDUP(dhdp->osh, pktbuf);
- if (npktbuf)
- dhd_sendpkt(dhdp, ifidx, npktbuf);
}
}
-#endif /* PCIE_FULL_DONGLE */
+#ifdef DHD_POST_EAPOL_M1_AFTER_ROAM_EVT
+ if (IS_STA_IFACE(ndev_to_wdev(ifp->net)) &&
+ (ifp->recv_reassoc_evt == TRUE) && (ifp->post_roam_evt == FALSE) &&
+ (dhd_is_4way_msg((char *)(skb->data)) == EAPOL_4WAY_M1)) {
+ DHD_ERROR(("%s: Reassoc is in progress. "
+ "Drop EAPOL M1 frame\n", __FUNCTION__));
+ PKTFREE(dhdp->osh, pktbuf, FALSE);
+ continue;
+ }
+#endif /* DHD_POST_EAPOL_M1_AFTER_ROAM_EVT */
/* Get the protocol, maintain skb around eth_type_trans()
* The main reason for this hack is for the limitation of
* Linux 2.4 where 'eth_type_trans' uses the 'net->hard_header_len'
@@ -4957,56 +4670,28 @@
*/
eth = skb->data;
len = skb->len;
-
-#if defined(DHD_RX_DUMP) || defined(DHD_8021X_DUMP) || defined(DHD_DHCP_DUMP)
dump_data = skb->data;
-#endif /* DHD_RX_DUMP || DHD_8021X_DUMP || DHD_DHCP_DUMP */
-
protocol = (skb->data[12] << 8) | skb->data[13];
+
if (protocol == ETHER_TYPE_802_1X) {
DBG_EVENT_LOG(dhdp, WIFI_EVENT_DRIVER_EAPOL_FRAME_RECEIVED);
-#ifdef DHD_8021X_DUMP
- DHD_ERROR(("ETHER_TYPE_802_1X [RX]: "
- "ver %d, type %d, replay %d\n",
- dump_data[14], dump_data[15],
- dump_data[30]));
-#endif /* DHD_8021X_DUMP */
- }
-
-#ifdef DHD_DHCP_DUMP
- if (protocol != ETHER_TYPE_BRCM && protocol == ETHER_TYPE_IP) {
- dhd_dhcp_dump(dump_data, FALSE);
- dhd_tcp_dump(dhd_ifname(dhdp, ifidx), dump_data, FALSE);
- }
-#endif /* DHD_DHCP_DUMP */
-#if defined(DHD_RX_DUMP)
- DHD_ERROR(("RX DUMP - %s\n", _get_packet_type_str(protocol)));
- if (protocol != ETHER_TYPE_BRCM) {
- if (dump_data[0] == 0xFF) {
- DHD_ERROR(("%s: BROADCAST\n", __FUNCTION__));
-
- if ((dump_data[12] == 8) &&
- (dump_data[13] == 6)) {
- DHD_ERROR(("%s: ARP %d\n",
- __FUNCTION__, dump_data[0x15]));
- }
- } else if (dump_data[0] & 1) {
- DHD_ERROR(("%s: MULTICAST: " MACDBG "\n",
- __FUNCTION__, MAC2STRDBG(dump_data)));
+#if defined(WL_CFG80211) && defined(WL_WPS_SYNC)
+ wl_handle_wps_states(ifp->net, dump_data, len, FALSE);
+#endif /* WL_CFG80211 && WL_WPS_SYNC */
+#ifdef DHD_4WAYM4_FAIL_DISCONNECT
+ if (dhd_is_4way_msg((uint8 *)(skb->data)) == EAPOL_4WAY_M3) {
+ OSL_ATOMIC_SET(dhdp->osh, &ifp->m4state, M3_RXED);
}
-#ifdef DHD_RX_FULL_DUMP
- {
- int k;
- for (k = 0; k < skb->len; k++) {
- DHD_ERROR(("%02X ", dump_data[k]));
- if ((k & 15) == 15)
- DHD_ERROR(("\n"));
- }
- DHD_ERROR(("\n"));
- }
-#endif /* DHD_RX_FULL_DUMP */
+#endif /* DHD_4WAYM4_FAIL_DISCONNECT */
}
-#endif /* DHD_RX_DUMP */
+ dhd_rx_pkt_dump(dhdp, ifidx, dump_data, len);
+ dhd_dump_pkt(dhdp, ifidx, dump_data, len, FALSE, NULL, NULL);
+
+#if defined(DHD_WAKE_STATUS) && defined(DHD_WAKEPKT_DUMP)
+ if (pkt_wake) {
+ prhex("[wakepkt_dump]", (char*)dump_data, MIN(len, 32));
+ }
+#endif /* DHD_WAKE_STATUS && DHD_WAKEPKT_DUMP */
skb->protocol = eth_type_trans(skb, skb->dev);
@@ -5018,9 +4703,10 @@
skb->data = eth;
skb->len = len;
-#ifdef WLMEDIA_HTSF
- dhd_htsf_addrxts(dhdp, pktbuf);
-#endif
+ DHD_DBG_PKT_MON_RX(dhdp, skb);
+#ifdef DHD_PKT_LOGGING
+ DHD_PKTLOG_RX(dhdp, skb);
+#endif /* DHD_PKT_LOGGING */
/* Strip header, count, deliver upward */
skb_pull(skb, ETH_HLEN);
@@ -5028,42 +4714,88 @@
memset(&event, 0, sizeof(event));
if (ntoh16(skb->protocol) == ETHER_TYPE_BRCM) {
- dhd_wl_host_event(dhd, &ifidx,
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 22)
- skb_mac_header(skb),
+ bcm_event_msg_u_t evu;
+ int ret_event, event_type;
+ void *pkt_data = skb_mac_header(skb);
+
+ ret_event = wl_host_event_get_data(pkt_data, len, &evu);
+
+ if (ret_event != BCME_OK) {
+ DHD_ERROR(("%s: wl_host_event_get_data err = %d\n",
+ __FUNCTION__, ret_event));
+#ifdef DHD_USE_STATIC_CTRLBUF
+ PKTFREE_STATIC(dhdp->osh, pktbuf, FALSE);
#else
- skb->mac.raw,
-#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 22) */
- len, &event, &data);
+ PKTFREE(dhdp->osh, pktbuf, FALSE);
+#endif // endif
+ continue;
+ }
+
+ memcpy(&event, &evu.event, sizeof(wl_event_msg_t));
+ event_type = ntoh32_ua((void *)&event.event_type);
+#ifdef SHOW_LOGTRACE
+ /* Event msg printing is called from dhd_rx_frame which is in Tasklet
+ * context in case of PCIe FD, in case of other bus this will be from
+ * DPC context. If we get bunch of events from Dongle then printing all
+ * of them from Tasklet/DPC context that too in data path is costly.
+ * Also in the new Dongle SW(4359, 4355 onwards) console prints too come as
+ * events with type WLC_E_TRACE.
+ * We'll print this console logs from the WorkQueue context by enqueing SKB
+ * here and Dequeuing will be done in WorkQueue and will be freed only if
+ * logtrace_pkt_sendup is true
+ */
+ if (event_type == WLC_E_TRACE) {
+ DHD_TRACE(("%s: WLC_E_TRACE\n", __FUNCTION__));
+ dhd_event_logtrace_enqueue(dhdp, ifidx, pktbuf);
+ continue;
+ }
+#endif /* SHOW_LOGTRACE */
+
+ ret_event = dhd_wl_host_event(dhd, ifidx, pkt_data, len, &event, &data);
wl_event_to_host_order(&event);
+#if (defined(OEM_ANDROID) || defined(OEM_EMBEDDED_LINUX))
if (!tout_ctrl)
tout_ctrl = DHD_PACKET_TIMEOUT_MS;
+#endif /* (defined(OEM_ANDROID) || defined(OEM_EMBEDDED_LINUX)) */
-#if defined(PNO_SUPPORT)
- if (event.event_type == WLC_E_PFN_NET_FOUND) {
+#if (defined(OEM_ANDROID) && defined(PNO_SUPPORT))
+ if (event_type == WLC_E_PFN_NET_FOUND) {
/* enforce custom wake lock to garantee that Kernel not suspended */
tout_ctrl = CUSTOM_PNO_EVENT_LOCK_xTIME * DHD_PACKET_TIMEOUT_MS;
}
#endif /* PNO_SUPPORT */
- if (DHD_DBG_BCNRX_ON()) {
- if (event.event_type == WLC_E_BCNRX_MSG) {
- prhex("Received beacon packet:", data, event.datalen);
- }
- }
-
if (numpkt != 1) {
- DHD_ERROR(("%s: Got BRCM event packet in a chained packet.\n",
+ DHD_TRACE(("%s: Got BRCM event packet in a chained packet.\n",
__FUNCTION__));
}
-#ifdef DHD_DONOT_FORWARD_BCMEVENT_AS_NETWORK_PKT
+
+#ifdef DHD_WAKE_STATUS
+ if (unlikely(pkt_wake)) {
+#ifdef DHD_WAKE_EVENT_STATUS
+ if (event.event_type < WLC_E_LAST) {
+ wcp->rc_event[event.event_type]++;
+ wcp->rcwake++;
+ pkt_wake = 0;
+ }
+#endif /* DHD_WAKE_EVENT_STATUS */
+ }
+#endif /* DHD_WAKE_STATUS */
+
+ /* For delete virtual interface event, wl_host_event returns positive
+ * i/f index, do not proceed. just free the pkt.
+ */
+ if ((event_type == WLC_E_IF) && (ret_event > 0)) {
+ DHD_ERROR(("%s: interface is deleted. Free event packet\n",
+ __FUNCTION__));
#ifdef DHD_USE_STATIC_CTRLBUF
- PKTFREE_STATIC(dhdp->osh, pktbuf, FALSE);
+ PKTFREE_STATIC(dhdp->osh, pktbuf, FALSE);
#else
- PKTFREE(dhdp->osh, pktbuf, FALSE);
-#endif /* DHD_USE_STATIC_CTRLBUF */
- continue;
-#else
+ PKTFREE(dhdp->osh, pktbuf, FALSE);
+#endif // endif
+ continue;
+ }
+
/*
* For the event packets, there is a possibility
* of ifidx getting modifed.Thus update the ifp
@@ -5072,30 +4804,111 @@
ASSERT(ifidx < DHD_MAX_IFS && dhd->iflist[ifidx]);
ifp = dhd->iflist[ifidx];
#ifndef PROP_TXSTATUS_VSDB
- if (!(ifp && ifp->net && (ifp->net->reg_state == NETREG_REGISTERED))) {
+ if (!(ifp && ifp->net && (ifp->net->reg_state == NETREG_REGISTERED)))
#else
if (!(ifp && ifp->net && (ifp->net->reg_state == NETREG_REGISTERED) &&
- dhd->pub.up)) {
+ dhd->pub.up))
#endif /* PROP_TXSTATUS_VSDB */
+ {
DHD_ERROR(("%s: net device is NOT registered. drop event packet\n",
__FUNCTION__));
+#ifdef DHD_USE_STATIC_CTRLBUF
+ PKTFREE_STATIC(dhdp->osh, pktbuf, FALSE);
+#else
PKTFREE(dhdp->osh, pktbuf, FALSE);
+#endif // endif
continue;
}
-#endif /* DHD_DONOT_FORWARD_BCMEVENT_AS_NETWORK_PKT */
+
+ if (dhdp->wl_event_enabled) {
+#ifdef DHD_USE_STATIC_CTRLBUF
+ /* If event bufs are allocated via static buf pool
+ * and wl events are enabled, make a copy, free the
+ * local one and send the copy up.
+ */
+ void *npkt = PKTDUP(dhdp->osh, skb);
+ /* Clone event and send it up */
+ PKTFREE_STATIC(dhdp->osh, pktbuf, FALSE);
+ if (npkt) {
+ skb = npkt;
+ } else {
+ DHD_ERROR(("skb clone failed. dropping event.\n"));
+ continue;
+ }
+#endif /* DHD_USE_STATIC_CTRLBUF */
+ } else {
+ /* If event enabled not explictly set, drop events */
+#ifdef DHD_USE_STATIC_CTRLBUF
+ PKTFREE_STATIC(dhdp->osh, pktbuf, FALSE);
+#else
+ PKTFREE(dhdp->osh, pktbuf, FALSE);
+#endif /* DHD_USE_STATIC_CTRLBUF */
+ continue;
+ }
} else {
+#if (defined(OEM_ANDROID) || defined(OEM_EMBEDDED_LINUX))
tout_rx = DHD_PACKET_TIMEOUT_MS;
+#endif /* OEM_ANDROID || OEM_EMBEDDED_LINUX */
#ifdef PROP_TXSTATUS
dhd_wlfc_save_rxpath_ac_time(dhdp, (uint8)PKTPRIO(skb));
#endif /* PROP_TXSTATUS */
+
+#ifdef DHD_WAKE_STATUS
+ if (unlikely(pkt_wake)) {
+ wcp->rxwake++;
+#ifdef DHD_WAKE_RX_STATUS
+#define ETHER_ICMP6_HEADER 20
+#define ETHER_IPV6_SADDR (ETHER_ICMP6_HEADER + 2)
+#define ETHER_IPV6_DAADR (ETHER_IPV6_SADDR + IPV6_ADDR_LEN)
+#define ETHER_ICMPV6_TYPE (ETHER_IPV6_DAADR + IPV6_ADDR_LEN)
+
+ if (ntoh16(skb->protocol) == ETHER_TYPE_ARP) /* ARP */
+ wcp->rx_arp++;
+ if (dump_data[0] == 0xFF) { /* Broadcast */
+ wcp->rx_bcast++;
+ } else if (dump_data[0] & 0x01) { /* Multicast */
+ wcp->rx_mcast++;
+ if (ntoh16(skb->protocol) == ETHER_TYPE_IPV6) {
+ wcp->rx_multi_ipv6++;
+ if ((skb->len > ETHER_ICMP6_HEADER) &&
+ (dump_data[ETHER_ICMP6_HEADER] == IPPROTO_ICMPV6)) {
+ wcp->rx_icmpv6++;
+ if (skb->len > ETHER_ICMPV6_TYPE) {
+ switch (dump_data[ETHER_ICMPV6_TYPE]) {
+ case NDISC_ROUTER_ADVERTISEMENT:
+ wcp->rx_icmpv6_ra++;
+ break;
+ case NDISC_NEIGHBOUR_ADVERTISEMENT:
+ wcp->rx_icmpv6_na++;
+ break;
+ case NDISC_NEIGHBOUR_SOLICITATION:
+ wcp->rx_icmpv6_ns++;
+ break;
+ }
+ }
+ }
+ } else if (dump_data[2] == 0x5E) {
+ wcp->rx_multi_ipv4++;
+ } else {
+ wcp->rx_multi_other++;
+ }
+ } else { /* Unicast */
+ wcp->rx_ucast++;
+ }
+#undef ETHER_ICMP6_HEADER
+#undef ETHER_IPV6_SADDR
+#undef ETHER_IPV6_DAADR
+#undef ETHER_ICMPV6_TYPE
+#endif /* DHD_WAKE_RX_STATUS */
+ pkt_wake = 0;
+ }
+#endif /* DHD_WAKE_STATUS */
}
-#if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0))
- /* It is useless for network stack any more, and we do not use it */
- if (ifp->net)
- ifp->net->last_rx = jiffies;
-#endif
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ ifp->net->last_rx = jiffies;
+#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0) */
if (ntoh16(skb->protocol) != ETHER_TYPE_BRCM) {
dhdp->dstats.rx_bytes += skb->len;
@@ -5108,11 +4921,11 @@
bcm_object_trace_opr(skb, BCM_OBJDBG_REMOVE,
__FUNCTION__, __LINE__);
DHD_PERIM_UNLOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
-#if defined(DHD_LB) && defined(DHD_LB_RXP)
+#if defined(DHD_LB_RXP)
netif_receive_skb(skb);
-#else
+#else /* !defined(DHD_LB_RXP) */
netif_rx(skb);
-#endif /* !defined(DHD_LB) && !defined(DHD_LB_RXP) */
+#endif /* !defined(DHD_LB_RXP) */
DHD_PERIM_LOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
} else {
if (dhd->rxthread_enabled) {
@@ -5132,25 +4945,19 @@
bcm_object_trace_opr(skb, BCM_OBJDBG_REMOVE,
__FUNCTION__, __LINE__);
-#if defined(DHD_LB) && defined(DHD_LB_RXP)
+#if defined(ARGOS_NOTIFY_CB)
+ argos_register_notifier_deinit();
+#endif // endif
+#if defined(BCMPCIE) && defined(DHDTCPACK_SUPPRESS)
+ dhd_tcpack_suppress_set(&dhd->pub, TCPACK_SUP_OFF);
+#endif /* BCMPCIE && DHDTCPACK_SUPPRESS */
DHD_PERIM_UNLOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
+#if defined(DHD_LB_RXP)
netif_receive_skb(skb);
- DHD_PERIM_LOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
-#else
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
- DHD_PERIM_UNLOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
+#else /* !defined(DHD_LB_RXP) */
netif_rx_ni(skb);
+#endif /* defined(DHD_LB_RXP) */
DHD_PERIM_LOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
-#else
- ulong flags;
- DHD_PERIM_UNLOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
- netif_rx(skb);
- DHD_PERIM_LOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
- local_irq_save(flags);
- RAISE_RX_SOFTIRQ();
- local_irq_restore(flags);
-#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) */
-#endif /* !defined(DHD_LB) && !defined(DHD_LB_RXP) */
}
}
}
@@ -5158,8 +4965,10 @@
if (dhd->rxthread_enabled && skbhead)
dhd_sched_rxf(dhdp, skbhead);
+#if (defined(OEM_ANDROID) || defined(OEM_EMBEDDED_LINUX))
DHD_OS_WAKE_LOCK_RX_TIMEOUT_ENABLE(dhdp, tout_rx);
DHD_OS_WAKE_LOCK_CTRL_TIMEOUT_ENABLE(dhdp, tout_ctrl);
+#endif /* OEM_ANDROID || OEM_EMBEDDED_LINUX */
}
void
@@ -5181,8 +4990,9 @@
eh = (struct ether_header *)PKTDATA(dhdp->osh, txp);
type = ntoh16(eh->ether_type);
- if ((type == ETHER_TYPE_802_1X) && (dhd_get_pend_8021x_cnt(dhd) > 0))
+ if (type == ETHER_TYPE_802_1X) {
atomic_dec(&dhd->pend_8021x_cnt);
+ }
#ifdef PROP_TXSTATUS
if (dhdp->wlfc_state && (dhdp->proptxstatus_mode != WLFC_FCMODE_NONE)) {
@@ -5198,7 +5008,7 @@
}
}
}
-#endif
+#endif // endif
}
static struct net_device_stats *
@@ -5206,29 +5016,32 @@
{
dhd_info_t *dhd = DHD_DEV_INFO(net);
dhd_if_t *ifp;
- int ifidx;
DHD_TRACE(("%s: Enter\n", __FUNCTION__));
- ifidx = dhd_net2idx(dhd, net);
- if (ifidx == DHD_BAD_IF) {
- DHD_ERROR(("%s: BAD_IF\n", __FUNCTION__));
-
- memset(&net->stats, 0, sizeof(net->stats));
- return &net->stats;
+ if (!dhd) {
+ DHD_ERROR(("%s : dhd is NULL\n", __FUNCTION__));
+ goto error;
}
- ifp = dhd->iflist[ifidx];
- ASSERT(dhd && ifp);
+ ifp = dhd_get_ifp_by_ndev(&dhd->pub, net);
+ if (!ifp) {
+ /* return empty stats */
+ DHD_ERROR(("%s: BAD_IF\n", __FUNCTION__));
+ goto error;
+ }
if (dhd->pub.up) {
/* Use the protocol to get dongle stats */
dhd_prot_dstats(&dhd->pub);
}
return &ifp->stats;
+
+error:
+ memset(&net->stats, 0, sizeof(net->stats));
+ return &net->stats;
}
-#ifndef BCMDBUS
static int
dhd_watchdog_thread(void *data)
{
@@ -5249,10 +5062,15 @@
unsigned long flags;
unsigned long jiffies_at_start = jiffies;
unsigned long time_lapse;
-
+#ifdef BCMPCIE
DHD_OS_WD_WAKE_LOCK(&dhd->pub);
+#endif /* BCMPCIE */
+
SMP_RD_BARRIER_DEPENDS();
if (tsk->terminated) {
+#ifdef BCMPCIE
+ DHD_OS_WD_WAKE_UNLOCK(&dhd->pub);
+#endif /* BCMPCIE */
break;
}
@@ -5277,7 +5095,9 @@
}
DHD_GENERAL_UNLOCK(&dhd->pub, flags);
}
+#ifdef BCMPCIE
DHD_OS_WD_WAKE_UNLOCK(&dhd->pub);
+#endif /* BCMPCIE */
} else {
break;
}
@@ -5286,23 +5106,12 @@
complete_and_exit(&tsk->completed, 0);
}
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
-static void dhd_watchdog(struct timer_list *t)
-{
- dhd_info_t *dhd = from_timer(dhd, t, timer);
-#else
static void dhd_watchdog(ulong data)
{
dhd_info_t *dhd = (dhd_info_t *)data;
-#endif
unsigned long flags;
if (dhd->pub.dongle_reset) {
- return;
- }
-
- if (dhd->pub.busstate == DHD_BUS_SUSPEND) {
- DHD_ERROR(("%s wd while suspend in progress \n", __FUNCTION__));
return;
}
@@ -5311,7 +5120,9 @@
return;
}
+#ifdef BCMPCIE
DHD_OS_WD_WAKE_LOCK(&dhd->pub);
+#endif /* BCMPCIE */
/* Call the bus module watchdog */
dhd_bus_watchdog(&dhd->pub);
@@ -5326,8 +5137,87 @@
if (dhd->wd_timer_valid)
mod_timer(&dhd->timer, jiffies + msecs_to_jiffies(dhd_watchdog_ms));
DHD_GENERAL_UNLOCK(&dhd->pub, flags);
+#ifdef BCMPCIE
DHD_OS_WD_WAKE_UNLOCK(&dhd->pub);
+#endif /* BCMPCIE */
}
+
+#ifdef DHD_PCIE_RUNTIMEPM
+static int
+dhd_rpm_state_thread(void *data)
+{
+ tsk_ctl_t *tsk = (tsk_ctl_t *)data;
+ dhd_info_t *dhd = (dhd_info_t *)tsk->parent;
+
+ while (1) {
+ if (down_interruptible (&tsk->sema) == 0) {
+ unsigned long flags;
+ unsigned long jiffies_at_start = jiffies;
+ unsigned long time_lapse;
+
+ SMP_RD_BARRIER_DEPENDS();
+ if (tsk->terminated) {
+ break;
+ }
+
+ if (dhd->pub.dongle_reset == FALSE) {
+ DHD_TIMER(("%s:\n", __FUNCTION__));
+ if (dhd->pub.up) {
+ dhd_runtimepm_state(&dhd->pub);
+ }
+
+ DHD_GENERAL_LOCK(&dhd->pub, flags);
+ time_lapse = jiffies - jiffies_at_start;
+
+ /* Reschedule the watchdog */
+ if (dhd->rpm_timer_valid) {
+ mod_timer(&dhd->rpm_timer,
+ jiffies +
+ msecs_to_jiffies(dhd_runtimepm_ms) -
+ min(msecs_to_jiffies(dhd_runtimepm_ms),
+ time_lapse));
+ }
+ DHD_GENERAL_UNLOCK(&dhd->pub, flags);
+ }
+ } else {
+ break;
+ }
+ }
+
+ complete_and_exit(&tsk->completed, 0);
+}
+
+static void dhd_runtimepm(ulong data)
+{
+ dhd_info_t *dhd = (dhd_info_t *)data;
+
+ if (dhd->pub.dongle_reset) {
+ return;
+ }
+
+ if (dhd->thr_rpm_ctl.thr_pid >= 0) {
+ up(&dhd->thr_rpm_ctl.sema);
+ return;
+ }
+}
+
+void dhd_runtime_pm_disable(dhd_pub_t *dhdp)
+{
+ dhd_os_runtimepm_timer(dhdp, 0);
+ dhdpcie_runtime_bus_wake(dhdp, CAN_SLEEP(), __builtin_return_address(0));
+}
+
+void dhd_runtime_pm_enable(dhd_pub_t *dhdp)
+{
+ /* Enable Runtime PM except for MFG Mode */
+ if (!(dhdp->op_mode & DHD_FLAG_MFG_MODE)) {
+ if (dhd_get_idletime(dhdp)) {
+ dhd_os_runtimepm_timer(dhdp, dhd_runtimepm_ms);
+ }
+ }
+}
+
+#endif /* DHD_PCIE_RUNTIMEPM */
#ifdef ENABLE_ADAPTIVE_SCHED
static void
@@ -5381,7 +5271,7 @@
#ifdef CUSTOM_DPC_CPUCORE
set_cpus_allowed_ptr(current, cpumask_of(CUSTOM_DPC_CPUCORE));
-#endif
+#endif // endif
#ifdef CUSTOM_SET_CPUCORE
dhd->pub.current_dpc = current;
#endif /* CUSTOM_SET_CPUCORE */
@@ -5398,32 +5288,26 @@
/* Call bus dpc unless it indicated down (then clean stop) */
if (dhd->pub.busstate != DHD_BUS_DOWN) {
-/*
- * Enable this to prevent CPU loading too high on some platforms
- */
-#if defined(CUSTOMER_IPCAM)
+#ifdef DEBUG_DPC_THREAD_WATCHDOG
int resched_cnt = 0;
-#endif
+#endif /* DEBUG_DPC_THREAD_WATCHDOG */
dhd_os_wd_timer_extend(&dhd->pub, TRUE);
while (dhd_bus_dpc(dhd->pub.bus)) {
/* process all data */
-#if defined(CUSTOMER_IPCAM)
+#ifdef DEBUG_DPC_THREAD_WATCHDOG
resched_cnt++;
if (resched_cnt > MAX_RESCHED_CNT) {
DHD_INFO(("%s Calling msleep to"
"let other processes run. \n",
__FUNCTION__));
-#ifndef CUSTOMER_IPCAM
dhd->pub.dhd_bug_on = true;
-#endif
resched_cnt = 0;
OSL_SLEEP(1);
}
-#endif
+#endif /* DEBUG_DPC_THREAD_WATCHDOG */
}
dhd_os_wd_timer_extend(&dhd->pub, FALSE);
DHD_OS_WAKE_UNLOCK(&dhd->pub);
-
} else {
if (dhd->pub.up)
dhd_bus_stop(dhd->pub.bus, TRUE);
@@ -5444,7 +5328,7 @@
#if defined(WAIT_DEQUEUE)
#define RXF_WATCHDOG_TIME 250 /* BARK_TIME(1000) / */
ulong watchdogTime = OSL_SYSUPTIME(); /* msec */
-#endif
+#endif // endif
dhd_pub_t *pub = &dhd->pub;
/* This thread doesn't need any user-level access,
@@ -5457,11 +5341,6 @@
setScheduler(current, SCHED_FIFO, ¶m);
}
- DAEMONIZE("dhd_rxf");
- /* DHD_OS_WAKE_LOCK is called in dhd_sched_dpc[dhd_linux.c] down below */
-
- /* signal: thread has started */
- complete(&tsk->completed);
#ifdef CUSTOM_SET_CPUCORE
dhd->pub.current_rxf = current;
#endif /* CUSTOM_SET_CPUCORE */
@@ -5469,9 +5348,6 @@
while (1) {
if (down_interruptible(&tsk->sema) == 0) {
void *skb;
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
- ulong flags;
-#endif
#ifdef ENABLE_ADAPTIVE_SCHED
dhd_sched_policy(dhd_rxf_prio);
#endif /* ENABLE_ADAPTIVE_SCHED */
@@ -5491,15 +5367,7 @@
PKTSETNEXT(pub->osh, skb, NULL);
bcm_object_trace_opr(skb, BCM_OBJDBG_REMOVE,
__FUNCTION__, __LINE__);
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
netif_rx_ni(skb);
-#else
- netif_rx(skb);
- local_irq_save(flags);
- RAISE_RX_SOFTIRQ();
- local_irq_restore(flags);
-
-#endif
skb = skbnext;
}
#if defined(WAIT_DEQUEUE)
@@ -5507,7 +5375,7 @@
OSL_SLEEP(1);
watchdogTime = OSL_SYSUPTIME();
}
-#endif
+#endif // endif
DHD_OS_WAKE_UNLOCK(pub);
} else {
@@ -5520,30 +5388,23 @@
#ifdef BCMPCIE
void dhd_dpc_enable(dhd_pub_t *dhdp)
{
+#if defined(DHD_LB_RXP) || defined(DHD_LB_TXP)
dhd_info_t *dhd;
if (!dhdp || !dhdp->info)
return;
dhd = dhdp->info;
+#endif /* DHD_LB_RXP || DHD_LB_TXP */
-#ifdef DHD_LB
#ifdef DHD_LB_RXP
__skb_queue_head_init(&dhd->rx_pend_queue);
#endif /* DHD_LB_RXP */
-#ifdef DHD_LB_TXC
- if (atomic_read(&dhd->tx_compl_tasklet.count) == 1)
- tasklet_enable(&dhd->tx_compl_tasklet);
-#endif /* DHD_LB_TXC */
-#ifdef DHD_LB_RXC
- if (atomic_read(&dhd->rx_compl_tasklet.count) == 1)
- tasklet_enable(&dhd->rx_compl_tasklet);
-#endif /* DHD_LB_RXC */
-#endif /* DHD_LB */
- if (atomic_read(&dhd->tasklet.count) == 1)
- tasklet_enable(&dhd->tasklet);
+
+#ifdef DHD_LB_TXP
+ skb_queue_head_init(&dhd->tx_pend_queue);
+#endif /* DHD_LB_TXP */
}
#endif /* BCMPCIE */
-
#ifdef BCMPCIE
void
@@ -5562,24 +5423,51 @@
}
if (dhd->thr_dpc_ctl.thr_pid < 0) {
- tasklet_disable(&dhd->tasklet);
tasklet_kill(&dhd->tasklet);
DHD_ERROR(("%s: tasklet disabled\n", __FUNCTION__));
}
-#if defined(DHD_LB)
+
+#ifdef DHD_LB
#ifdef DHD_LB_RXP
+ cancel_work_sync(&dhd->rx_napi_dispatcher_work);
__skb_queue_purge(&dhd->rx_pend_queue);
#endif /* DHD_LB_RXP */
+#ifdef DHD_LB_TXP
+ cancel_work_sync(&dhd->tx_dispatcher_work);
+ skb_queue_purge(&dhd->tx_pend_queue);
+#endif /* DHD_LB_TXP */
+
/* Kill the Load Balancing Tasklets */
#if defined(DHD_LB_TXC)
- tasklet_disable(&dhd->tx_compl_tasklet);
tasklet_kill(&dhd->tx_compl_tasklet);
#endif /* DHD_LB_TXC */
#if defined(DHD_LB_RXC)
- tasklet_disable(&dhd->rx_compl_tasklet);
tasklet_kill(&dhd->rx_compl_tasklet);
#endif /* DHD_LB_RXC */
+#if defined(DHD_LB_TXP)
+ tasklet_kill(&dhd->tx_tasklet);
+#endif /* DHD_LB_TXP */
#endif /* DHD_LB */
+}
+
+void
+dhd_dpc_tasklet_kill(dhd_pub_t *dhdp)
+{
+ dhd_info_t *dhd;
+
+ if (!dhdp) {
+ return;
+ }
+
+ dhd = dhdp->info;
+
+ if (!dhd) {
+ return;
+ }
+
+ if (dhd->thr_dpc_ctl.thr_pid < 0) {
+ tasklet_kill(&dhd->tasklet);
+ }
}
#endif /* BCMPCIE */
@@ -5589,7 +5477,6 @@
dhd_info_t *dhd;
dhd = (dhd_info_t *)data;
- DHD_OS_WAKE_LOCK(&dhd->pub);
/* this (tasklet) can be scheduled in dhd_sched_dpc[dhd_linux.c]
* down below , wake lock is set,
@@ -5597,14 +5484,15 @@
*/
/* Call bus dpc unless it indicated down (then clean stop) */
if (dhd->pub.busstate != DHD_BUS_DOWN) {
+#if defined(DHD_LB_STATS) && defined(PCIE_FULL_DONGLE)
+ DHD_LB_STATS_INCR(dhd->dhd_dpc_cnt);
+#endif /* DHD_LB_STATS && PCIE_FULL_DONGLE */
if (dhd_bus_dpc(dhd->pub.bus)) {
- DHD_LB_STATS_INCR(dhd->dhd_dpc_cnt);
tasklet_schedule(&dhd->tasklet);
}
} else {
dhd_bus_stop(dhd->pub.bus, TRUE);
}
- DHD_OS_WAKE_UNLOCK(&dhd->pub);
}
void
@@ -5622,54 +5510,19 @@
}
return;
} else {
- if (!test_bit(TASKLET_STATE_SCHED, &dhd->tasklet.state)) {
- DHD_OS_WAKE_LOCK(dhdp);
- }
+ dhd_bus_set_dpc_sched_time(dhdp);
tasklet_schedule(&dhd->tasklet);
- DHD_OS_WAKE_UNLOCK(dhdp);
}
}
-#endif /* BCMDBUS */
static void
dhd_sched_rxf(dhd_pub_t *dhdp, void *skb)
{
dhd_info_t *dhd = (dhd_info_t *)dhdp->info;
-#ifdef RXF_DEQUEUE_ON_BUSY
- int ret = BCME_OK;
- int retry = 2;
-#endif /* RXF_DEQUEUE_ON_BUSY */
DHD_OS_WAKE_LOCK(dhdp);
DHD_TRACE(("dhd_sched_rxf: Enter\n"));
-#ifdef RXF_DEQUEUE_ON_BUSY
- do {
- ret = dhd_rxf_enqueue(dhdp, skb);
- if (ret == BCME_OK || ret == BCME_ERROR)
- break;
- else
- OSL_SLEEP(50); /* waiting for dequeueing */
- } while (retry-- > 0);
-
- if (retry <= 0 && ret == BCME_BUSY) {
- void *skbp = skb;
-
- while (skbp) {
- void *skbnext = PKTNEXT(dhdp->osh, skbp);
- PKTSETNEXT(dhdp->osh, skbp, NULL);
- bcm_object_trace_opr(skb, BCM_OBJDBG_REMOVE,
- __FUNCTION__, __LINE__);
- netif_rx_ni(skbp);
- skbp = skbnext;
- }
- DHD_ERROR(("send skb to kernel backlog without rxf_thread\n"));
- } else {
- if (dhd->thr_rxf_ctl.thr_pid >= 0) {
- up(&dhd->thr_rxf_ctl.sema);
- }
- }
-#else /* RXF_DEQUEUE_ON_BUSY */
do {
if (dhd_rxf_enqueue(dhdp, skb) == BCME_OK)
break;
@@ -5678,43 +5531,9 @@
up(&dhd->thr_rxf_ctl.sema);
}
return;
-#endif /* RXF_DEQUEUE_ON_BUSY */
}
#if defined(BCM_DNGL_EMBEDIMAGE) || defined(BCM_REQUEST_FW)
-#if defined(BCMDBUS)
-static int
-fw_download_thread_func(void *data)
-{
- dhd_info_t *dhd = (dhd_info_t *)data;
- int ret;
-
- while (1) {
- /* Wait for start trigger */
- if (down_interruptible(&dhd->fw_download_lock) != 0)
- return -ERESTARTSYS;
-
- if (kthread_should_stop())
- break;
-
- DHD_TRACE(("%s: initiating firmware check and download\n", __FUNCTION__));
- if (dbus_download_firmware(dhd->pub.dbus) == DBUS_OK) {
- if ((ret = dbus_up(dhd->pub.dbus)) == 0) {
-#ifdef PROP_TXSTATUS
- /* Need to deinitialise WLFC to allow re-initialisation later. */
- dhd_wlfc_deinit(&dhd->pub);
-#endif /* PROP_TXSTATUS */
- /* Resynchronise with the dongle. This also re-initialises WLFC. */
- if ((ret = dhd_sync_with_dongle(&dhd->pub)) < 0) {
- DHD_ERROR(("%s: failed with code %d\n", __FUNCTION__, ret));
- }
- }
- }
- }
-
- return 0;
-}
-#endif /* BCMDBUS */
#endif /* defined(BCM_DNGL_EMBEDIMAGE) || defined(BCM_REQUEST_FW) */
#ifdef TOE
@@ -5797,7 +5616,6 @@
}
#endif /* WL_CFG80211 && NUM_SCB_MAX_PROBE */
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 24)
static void
dhd_ethtool_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info)
{
@@ -5810,10 +5628,7 @@
struct ethtool_ops dhd_ethtool_ops = {
.get_drvinfo = dhd_ethtool_get_drvinfo
};
-#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 24) */
-
-#if LINUX_VERSION_CODE > KERNEL_VERSION(2, 4, 2)
static int
dhd_ethtool(dhd_info_t *dhd, void *uaddr)
{
@@ -5824,7 +5639,7 @@
struct ethtool_value edata;
uint32 toe_cmpnt, csum_dir;
int ret;
-#endif
+#endif // endif
DHD_TRACE(("%s: Enter\n", __FUNCTION__));
@@ -5923,15 +5738,10 @@
return 0;
}
-#endif /* LINUX_VERSION_CODE > KERNEL_VERSION(2, 4, 2) */
static bool dhd_check_hang(struct net_device *net, dhd_pub_t *dhdp, int error)
{
- dhd_info_t *dhd;
-#ifdef DHD_FW_COREDUMP
- int dump_len = 0;
-#endif /* DHD_FW_COREDUMP */
-
+#if defined(OEM_ANDROID)
if (!dhdp) {
DHD_ERROR(("%s: dhdp is NULL\n", __FUNCTION__));
return FALSE;
@@ -5940,20 +5750,13 @@
if (!dhdp->up)
return FALSE;
- dhd = (dhd_info_t *)dhdp->info;
-#if (!defined(BCMDBUS) && !defined(BCMPCIE))
- if (dhd->thr_dpc_ctl.thr_pid < 0) {
+#if !defined(BCMPCIE)
+ if (dhdp->info->thr_dpc_ctl.thr_pid < 0) {
DHD_ERROR(("%s : skipped due to negative pid - unloading?\n", __FUNCTION__));
return FALSE;
}
-#endif /* BCMDBUS */
-#ifdef DHD_FW_COREDUMP
- if (error == -ETIMEDOUT && dhdp->busstate != DHD_BUS_DOWN) {
- if (dhd_os_socram_dump(net, &dump_len) == BCME_OK) {
- dhd_dbg_send_urgent_evt(dhdp, NULL, 0);
- }
- }
-#endif /* DHD_FW_COREDUMP */
+#endif // endif
+
if ((error == -ETIMEDOUT) || (error == -EREMOTEIO) ||
((dhdp->busstate == DHD_BUS_DOWN) && (!dhdp->dongle_reset))) {
#ifdef BCMPCIE
@@ -5964,11 +5767,338 @@
DHD_ERROR(("%s: Event HANG send up due to re=%d te=%d e=%d s=%d\n", __FUNCTION__,
dhdp->rxcnt_timeout, dhdp->txcnt_timeout, error, dhdp->busstate));
#endif /* BCMPCIE */
+ if (dhdp->hang_reason == 0) {
+ if (dhdp->dongle_trap_occured) {
+ dhdp->hang_reason = HANG_REASON_DONGLE_TRAP;
+#ifdef BCMPCIE
+ } else if (dhdp->d3ackcnt_timeout) {
+ dhdp->hang_reason = dhdp->is_sched_error ?
+ HANG_REASON_D3_ACK_TIMEOUT_SCHED_ERROR :
+ HANG_REASON_D3_ACK_TIMEOUT;
+#endif /* BCMPCIE */
+ } else {
+ dhdp->hang_reason = dhdp->is_sched_error ?
+ HANG_REASON_IOCTL_RESP_TIMEOUT_SCHED_ERROR :
+ HANG_REASON_IOCTL_RESP_TIMEOUT;
+ }
+ }
net_os_send_hang_message(net);
return TRUE;
}
+#endif /* OEM_ANDROID */
return FALSE;
}
+
+#ifdef WL_MONITOR
+bool
+dhd_monitor_enabled(dhd_pub_t *dhd, int ifidx)
+{
+ return (dhd->info->monitor_type != 0);
+}
+
+void
+dhd_rx_mon_pkt(dhd_pub_t *dhdp, host_rxbuf_cmpl_t* msg, void *pkt, int ifidx)
+{
+ dhd_info_t *dhd = (dhd_info_t *)dhdp->info;
+ {
+ uint8 amsdu_flag = (msg->flags & BCMPCIE_PKT_FLAGS_MONITOR_MASK) >>
+ BCMPCIE_PKT_FLAGS_MONITOR_SHIFT;
+ switch (amsdu_flag) {
+ case BCMPCIE_PKT_FLAGS_MONITOR_NO_AMSDU:
+ default:
+ if (!dhd->monitor_skb) {
+ if ((dhd->monitor_skb = PKTTONATIVE(dhdp->osh, pkt))
+ == NULL)
+ return;
+ }
+ if (dhd->monitor_type && dhd->monitor_dev)
+ dhd->monitor_skb->dev = dhd->monitor_dev;
+ else {
+ PKTFREE(dhdp->osh, pkt, FALSE);
+ dhd->monitor_skb = NULL;
+ return;
+ }
+ dhd->monitor_skb->protocol =
+ eth_type_trans(dhd->monitor_skb, dhd->monitor_skb->dev);
+ dhd->monitor_len = 0;
+ break;
+
+ case BCMPCIE_PKT_FLAGS_MONITOR_FIRST_PKT:
+ if (!dhd->monitor_skb) {
+ if ((dhd->monitor_skb = dev_alloc_skb(MAX_MON_PKT_SIZE))
+ == NULL)
+ return;
+ dhd->monitor_len = 0;
+ }
+ if (dhd->monitor_type && dhd->monitor_dev)
+ dhd->monitor_skb->dev = dhd->monitor_dev;
+ else {
+ PKTFREE(dhdp->osh, pkt, FALSE);
+ dev_kfree_skb(dhd->monitor_skb);
+ return;
+ }
+ memcpy(PKTDATA(dhdp->osh, dhd->monitor_skb),
+ PKTDATA(dhdp->osh, pkt), PKTLEN(dhdp->osh, pkt));
+ dhd->monitor_len = PKTLEN(dhdp->osh, pkt);
+ PKTFREE(dhdp->osh, pkt, FALSE);
+ return;
+
+ case BCMPCIE_PKT_FLAGS_MONITOR_INTER_PKT:
+ memcpy(PKTDATA(dhdp->osh, dhd->monitor_skb) + dhd->monitor_len,
+ PKTDATA(dhdp->osh, pkt), PKTLEN(dhdp->osh, pkt));
+ dhd->monitor_len += PKTLEN(dhdp->osh, pkt);
+ PKTFREE(dhdp->osh, pkt, FALSE);
+ return;
+
+ case BCMPCIE_PKT_FLAGS_MONITOR_LAST_PKT:
+ memcpy(PKTDATA(dhdp->osh, dhd->monitor_skb) + dhd->monitor_len,
+ PKTDATA(dhdp->osh, pkt), PKTLEN(dhdp->osh, pkt));
+ dhd->monitor_len += PKTLEN(dhdp->osh, pkt);
+ PKTFREE(dhdp->osh, pkt, FALSE);
+ skb_put(dhd->monitor_skb, dhd->monitor_len);
+ dhd->monitor_skb->protocol =
+ eth_type_trans(dhd->monitor_skb, dhd->monitor_skb->dev);
+ dhd->monitor_len = 0;
+ break;
+ }
+ }
+
+ if (in_interrupt()) {
+ bcm_object_trace_opr(skb, BCM_OBJDBG_REMOVE,
+ __FUNCTION__, __LINE__);
+ DHD_PERIM_UNLOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
+ netif_rx(dhd->monitor_skb);
+ DHD_PERIM_LOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
+ } else {
+ /* If the receive is not processed inside an ISR,
+ * the softirqd must be woken explicitly to service
+ * the NET_RX_SOFTIRQ. In 2.6 kernels, this is handled
+ * by netif_rx_ni(), but in earlier kernels, we need
+ * to do it manually.
+ */
+ bcm_object_trace_opr(dhd->monitor_skb, BCM_OBJDBG_REMOVE,
+ __FUNCTION__, __LINE__);
+
+ DHD_PERIM_UNLOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
+ netif_rx_ni(dhd->monitor_skb);
+ DHD_PERIM_LOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
+ }
+
+ dhd->monitor_skb = NULL;
+}
+
+typedef struct dhd_mon_dev_priv {
+ struct net_device_stats stats;
+} dhd_mon_dev_priv_t;
+
+#define DHD_MON_DEV_PRIV_SIZE (sizeof(dhd_mon_dev_priv_t))
+#define DHD_MON_DEV_PRIV(dev) ((dhd_mon_dev_priv_t *)DEV_PRIV(dev))
+#define DHD_MON_DEV_STATS(dev) (((dhd_mon_dev_priv_t *)DEV_PRIV(dev))->stats)
+
+#ifdef CFI_CHECK
+static netdev_tx_t
+#else
+static int
+#endif /* CFI_CHECK */
+dhd_monitor_start(struct sk_buff *skb, struct net_device *dev)
+{
+ PKTFREE(NULL, skb, FALSE);
+#ifdef CFI_CHECK
+ return NETDEV_TX_OK;
+#else
+ return 0;
+#endif /* CFI_CHECK */
+}
+
+static int
+dhd_monitor_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
+{
+ return 0;
+}
+
+static struct net_device_stats*
+dhd_monitor_get_stats(struct net_device *dev)
+{
+ return &DHD_MON_DEV_STATS(dev);
+}
+
+static const struct net_device_ops netdev_monitor_ops =
+{
+ .ndo_start_xmit = dhd_monitor_start,
+ .ndo_get_stats = dhd_monitor_get_stats,
+ .ndo_do_ioctl = dhd_monitor_ioctl
+};
+
+static void
+dhd_add_monitor_if(dhd_info_t *dhd)
+{
+ struct net_device *dev;
+ char *devname;
+ uint32 scan_suppress = FALSE;
+ int ret = BCME_OK;
+
+ if (!dhd) {
+ DHD_ERROR(("%s: dhd info not available \n", __FUNCTION__));
+ return;
+ }
+
+ if (dhd->monitor_dev) {
+ DHD_ERROR(("%s: monitor i/f already exists", __FUNCTION__));
+ return;
+ }
+
+ dev = alloc_etherdev(DHD_MON_DEV_PRIV_SIZE);
+ if (!dev) {
+ DHD_ERROR(("%s: alloc wlif failed\n", __FUNCTION__));
+ return;
+ }
+
+ devname = "radiotap";
+
+ snprintf(dev->name, sizeof(dev->name), "%s%u", devname, dhd->unit);
+
+#ifndef ARPHRD_IEEE80211_PRISM /* From Linux 2.4.18 */
+#define ARPHRD_IEEE80211_PRISM 802
+#endif // endif
+
+#ifndef ARPHRD_IEEE80211_RADIOTAP
+#define ARPHRD_IEEE80211_RADIOTAP 803 /* IEEE 802.11 + radiotap header */
+#endif /* ARPHRD_IEEE80211_RADIOTAP */
+
+ dev->type = ARPHRD_IEEE80211_RADIOTAP;
+
+ dev->netdev_ops = &netdev_monitor_ops;
+
+ if (register_netdevice(dev)) {
+ DHD_ERROR(("%s, register_netdev failed for %s\n",
+ __FUNCTION__, dev->name));
+ free_netdev(dev);
+ return;
+ }
+
+ if (FW_SUPPORTED((&dhd->pub), monitor)) {
+#ifdef DHD_PCIE_RUNTIMEPM
+ /* Disable RuntimePM in monitor mode */
+ DHD_DISABLE_RUNTIME_PM(&dhd->pub);
+ DHD_ERROR(("%s : disable runtime PM in monitor mode\n", __FUNCTION__));
+#endif /* DHD_PCIE_RUNTIME_PM */
+ scan_suppress = TRUE;
+ /* Set the SCAN SUPPRESS Flag in the firmware to disable scan in Monitor mode */
+ ret = dhd_iovar(&dhd->pub, 0, "scansuppress", (char *)&scan_suppress,
+ sizeof(scan_suppress), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: scansuppress set failed, ret=%d\n", __FUNCTION__, ret));
+ }
+ }
+
+ dhd->monitor_dev = dev;
+}
+
+static void
+dhd_del_monitor_if(dhd_info_t *dhd)
+{
+ int ret = BCME_OK;
+ uint32 scan_suppress = FALSE;
+
+ if (!dhd) {
+ DHD_ERROR(("%s: dhd info not available \n", __FUNCTION__));
+ return;
+ }
+
+ if (!dhd->monitor_dev) {
+ DHD_ERROR(("%s: monitor i/f doesn't exist", __FUNCTION__));
+ return;
+ }
+
+ if (FW_SUPPORTED((&dhd->pub), monitor)) {
+#ifdef DHD_PCIE_RUNTIMEPM
+ /* Enable RuntimePM */
+ DHD_ENABLE_RUNTIME_PM(&dhd->pub);
+ DHD_ERROR(("%s : enabled runtime PM\n", __FUNCTION__));
+#endif /* DHD_PCIE_RUNTIME_PM */
+ scan_suppress = FALSE;
+ /* Unset the SCAN SUPPRESS Flag in the firmware to enable scan */
+ ret = dhd_iovar(&dhd->pub, 0, "scansuppress", (char *)&scan_suppress,
+ sizeof(scan_suppress), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: scansuppress set failed, ret=%d\n", __FUNCTION__, ret));
+ }
+ }
+
+ if (dhd->monitor_dev) {
+ if (dhd->monitor_dev->reg_state == NETREG_UNINITIALIZED) {
+ free_netdev(dhd->monitor_dev);
+ } else {
+ unregister_netdevice(dhd->monitor_dev);
+ }
+ dhd->monitor_dev = NULL;
+ }
+}
+
+static void
+dhd_set_monitor(dhd_pub_t *pub, int ifidx, int val)
+{
+ dhd_info_t *dhd = pub->info;
+
+ DHD_TRACE(("%s: val %d\n", __FUNCTION__, val));
+
+ dhd_net_if_lock_local(dhd);
+ if (!val) {
+ /* Delete monitor */
+ dhd_del_monitor_if(dhd);
+ } else {
+ /* Add monitor */
+ dhd_add_monitor_if(dhd);
+ }
+ dhd->monitor_type = val;
+ dhd_net_if_unlock_local(dhd);
+}
+#endif /* WL_MONITOR */
+
+#if defined(DHD_H2D_LOG_TIME_SYNC)
+/*
+ * Helper function:
+ * Used for RTE console message time syncing with Host printk
+ */
+void dhd_h2d_log_time_sync_deferred_wq_schedule(dhd_pub_t *dhdp)
+{
+ dhd_info_t *info = dhdp->info;
+
+ /* Ideally the "state" should be always TRUE */
+ dhd_deferred_schedule_work(info->dhd_deferred_wq, NULL,
+ DHD_WQ_WORK_H2D_CONSOLE_TIME_STAMP_MATCH,
+ dhd_deferred_work_rte_log_time_sync,
+ DHD_WQ_WORK_PRIORITY_LOW);
+}
+
+void
+dhd_deferred_work_rte_log_time_sync(void *handle, void *event_info, u8 event)
+{
+ dhd_info_t *dhd_info = handle;
+ dhd_pub_t *dhd;
+
+ if (event != DHD_WQ_WORK_H2D_CONSOLE_TIME_STAMP_MATCH) {
+ DHD_ERROR(("%s: unexpected event \n", __FUNCTION__));
+ return;
+ }
+
+ if (!dhd_info) {
+ DHD_ERROR(("%s: dhd info not available \n", __FUNCTION__));
+ return;
+ }
+
+ dhd = &dhd_info->pub;
+
+ /*
+ * Function to send IOVAR for console timesyncing
+ * between Host and Dongle.
+ * If the IOVAR fails,
+ * 1. dhd_rte_time_sync_ms is set to 0 and
+ * 2. HOST Dongle console time sync will *not* happen.
+ */
+ dhd_h2d_log_time_sync(dhd);
+}
+#endif /* DHD_H2D_LOG_TIME_SYNC */
int dhd_ioctl_process(dhd_pub_t *pub, int ifidx, dhd_ioctl_t *ioc, void *data_buf)
{
@@ -5979,25 +6109,38 @@
net = dhd_idx2net(pub, ifidx);
if (!net) {
bcmerror = BCME_BADARG;
- goto done;
+ /*
+ * The netdev pointer is bad means the DHD can't communicate
+ * to higher layers, so just return from here
+ */
+ return bcmerror;
}
-
- if (data_buf)
- buflen = MIN(ioc->len, DHD_IOCTL_MAXLEN);
/* check for local dhd ioctl and handle it */
if (ioc->driver == DHD_IOCTL_MAGIC) {
+ /* This is a DHD IOVAR, truncate buflen to DHD_IOCTL_MAXLEN */
+ if (data_buf)
+ buflen = MIN(ioc->len, DHD_IOCTL_MAXLEN);
bcmerror = dhd_ioctl((void *)pub, ioc, data_buf, buflen);
if (bcmerror)
pub->bcmerror = bcmerror;
goto done;
}
-#ifndef BCMDBUS
+ /* This is a WL IOVAR, truncate buflen to WLC_IOCTL_MAXLEN */
+ if (data_buf)
+ buflen = MIN(ioc->len, WLC_IOCTL_MAXLEN);
+
/* send to dongle (must be up, and wl). */
if (pub->busstate == DHD_BUS_DOWN || pub->busstate == DHD_BUS_LOAD) {
- if (allow_delay_fwdl) {
- int ret = dhd_bus_start(pub);
+ if ((!pub->dongle_trap_occured) && allow_delay_fwdl) {
+ int ret;
+ if (atomic_read(&exit_in_progress)) {
+ DHD_ERROR(("%s module exit in progress\n", __func__));
+ bcmerror = BCME_DONGLE_DOWN;
+ goto done;
+ }
+ ret = dhd_bus_start(pub);
if (ret != 0) {
DHD_ERROR(("%s: failed with code %d\n", __FUNCTION__, ret));
bcmerror = BCME_DONGLE_DOWN;
@@ -6013,7 +6156,6 @@
bcmerror = BCME_DONGLE_DOWN;
goto done;
}
-#endif /* BCMDBUS */
/*
* Flush the TX queue if required for proper message serialization:
@@ -6030,113 +6172,98 @@
ioc->cmd == WLC_DISASSOC)
dhd_wait_pend8021x(net);
-#ifdef WLMEDIA_HTSF
- if (data_buf) {
- /* short cut wl ioctl calls here */
- if (strcmp("htsf", data_buf) == 0) {
- dhd_ioctl_htsf_get(dhd, 0);
- return BCME_OK;
- }
-
- if (strcmp("htsflate", data_buf) == 0) {
- if (ioc->set) {
- memset(ts, 0, sizeof(tstamp_t)*TSMAX);
- memset(&maxdelayts, 0, sizeof(tstamp_t));
- maxdelay = 0;
- tspktcnt = 0;
- maxdelaypktno = 0;
- memset(&vi_d1.bin, 0, sizeof(uint32)*NUMBIN);
- memset(&vi_d2.bin, 0, sizeof(uint32)*NUMBIN);
- memset(&vi_d3.bin, 0, sizeof(uint32)*NUMBIN);
- memset(&vi_d4.bin, 0, sizeof(uint32)*NUMBIN);
- } else {
- dhd_dump_latency();
- }
- return BCME_OK;
- }
- if (strcmp("htsfclear", data_buf) == 0) {
- memset(&vi_d1.bin, 0, sizeof(uint32)*NUMBIN);
- memset(&vi_d2.bin, 0, sizeof(uint32)*NUMBIN);
- memset(&vi_d3.bin, 0, sizeof(uint32)*NUMBIN);
- memset(&vi_d4.bin, 0, sizeof(uint32)*NUMBIN);
- htsf_seqnum = 0;
- return BCME_OK;
- }
- if (strcmp("htsfhis", data_buf) == 0) {
- dhd_dump_htsfhisto(&vi_d1, "H to D");
- dhd_dump_htsfhisto(&vi_d2, "D to D");
- dhd_dump_htsfhisto(&vi_d3, "D to H");
- dhd_dump_htsfhisto(&vi_d4, "H to H");
- return BCME_OK;
- }
- if (strcmp("tsport", data_buf) == 0) {
- if (ioc->set) {
- memcpy(&tsport, data_buf + 7, 4);
- } else {
- DHD_ERROR(("current timestamp port: %d \n", tsport));
- }
- return BCME_OK;
- }
- }
-#endif /* WLMEDIA_HTSF */
-
if ((ioc->cmd == WLC_SET_VAR || ioc->cmd == WLC_GET_VAR) &&
data_buf != NULL && strncmp("rpc_", data_buf, 4) == 0) {
-#ifdef BCM_FD_AGGR
- bcmerror = dhd_fdaggr_ioctl(pub, ifidx, (wl_ioctl_t *)ioc, data_buf, buflen);
-#else
bcmerror = BCME_UNSUPPORTED;
-#endif
goto done;
}
+
bcmerror = dhd_wl_ioctl(pub, ifidx, (wl_ioctl_t *)ioc, data_buf, buflen);
+#ifdef WL_MONITOR
/* Intercept monitor ioctl here, add/del monitor if */
if (bcmerror == BCME_OK && ioc->cmd == WLC_SET_MONITOR) {
- dhd_set_monitor(pub, ifidx, *(int32*)data_buf);
+ int val = 0;
+ if (data_buf != NULL && buflen != 0) {
+ if (buflen >= 4) {
+ val = *(int*)data_buf;
+ } else if (buflen >= 2) {
+ val = *(short*)data_buf;
+ } else {
+ val = *(char*)data_buf;
+ }
+ }
+ dhd_set_monitor(pub, ifidx, val);
}
+#endif /* WL_MONITOR */
done:
+#if defined(OEM_ANDROID)
dhd_check_hang(net, pub, bcmerror);
+#endif /* OEM_ANDROID */
return bcmerror;
}
+/**
+ * Called by the OS (optionally via a wrapper function).
+ * @param net Linux per dongle instance
+ * @param ifr Linux request structure
+ * @param cmd e.g. SIOCETHTOOL
+ */
static int
dhd_ioctl_entry(struct net_device *net, struct ifreq *ifr, int cmd)
{
dhd_info_t *dhd = DHD_DEV_INFO(net);
dhd_ioctl_t ioc;
+ int bcmerror = 0;
int ifidx;
int ret;
- void *local_buf = NULL;
+ void *local_buf = NULL; /**< buffer in kernel space */
+ void __user *ioc_buf_user = NULL; /**< buffer in user space */
u16 buflen = 0;
+
+#ifdef ENABLE_INSMOD_NO_FW_LOAD
+ allow_delay_fwdl = 1;
+#endif /* ENABLE_INSMOD_NO_FW_LOAD */
+ if (atomic_read(&exit_in_progress)) {
+ DHD_ERROR(("%s module exit in progress\n", __func__));
+ bcmerror = BCME_DONGLE_DOWN;
+ return OSL_ERROR(bcmerror);
+ }
DHD_OS_WAKE_LOCK(&dhd->pub);
DHD_PERIM_LOCK(&dhd->pub);
+#if defined(OEM_ANDROID)
+#ifndef ENABLE_INSMOD_NO_FW_LOAD
/* Interface up check for built-in type */
if (!dhd_download_fw_on_driverload && dhd->pub.up == FALSE) {
DHD_TRACE(("%s: Interface is down \n", __FUNCTION__));
- ret = BCME_NOTUP;
- goto exit;
+ DHD_PERIM_UNLOCK(&dhd->pub);
+ DHD_OS_WAKE_UNLOCK(&dhd->pub);
+ return OSL_ERROR(BCME_NOTUP);
}
-
- /* send to dongle only if we are not waiting for reload already */
- if (dhd->pub.hang_was_sent) {
- DHD_TRACE(("%s: HANG was sent up earlier\n", __FUNCTION__));
- DHD_OS_WAKE_LOCK_CTRL_TIMEOUT_ENABLE(&dhd->pub, DHD_EVENT_TIMEOUT_MS);
- ret = BCME_DONGLE_DOWN;
- goto exit;
- }
+#endif /* ENABLE_INSMOD_NO_FW_LOAD */
+#endif /* (OEM_ANDROID) */
ifidx = dhd_net2idx(dhd, net);
DHD_TRACE(("%s: ifidx %d, cmd 0x%04x\n", __FUNCTION__, ifidx, cmd));
+#if defined(WL_STATIC_IF)
+ /* skip for static ndev when it is down */
+ if (dhd_is_static_ndev(&dhd->pub, net) && !(net->flags & IFF_UP)) {
+ DHD_PERIM_UNLOCK(&dhd->pub);
+ DHD_OS_WAKE_UNLOCK(&dhd->pub);
+ return -1;
+ }
+#endif /* WL_STATIC_iF */
+
if (ifidx == DHD_BAD_IF) {
DHD_ERROR(("%s: BAD IF\n", __FUNCTION__));
- ret = -1;
- goto exit;
+ DHD_PERIM_UNLOCK(&dhd->pub);
+ DHD_OS_WAKE_UNLOCK(&dhd->pub);
+ return -1;
}
#if defined(WL_WIRELESS_EXT)
@@ -6144,99 +6271,104 @@
if ((cmd >= SIOCIWFIRST) && (cmd <= SIOCIWLAST)) {
/* may recurse, do NOT lock */
ret = wl_iw_ioctl(net, ifr, cmd);
- goto exit;
+ DHD_PERIM_UNLOCK(&dhd->pub);
+ DHD_OS_WAKE_UNLOCK(&dhd->pub);
+ return ret;
}
#endif /* defined(WL_WIRELESS_EXT) */
-#if LINUX_VERSION_CODE > KERNEL_VERSION(2, 4, 2)
if (cmd == SIOCETHTOOL) {
ret = dhd_ethtool(dhd, (void*)ifr->ifr_data);
- goto exit;
+ DHD_PERIM_UNLOCK(&dhd->pub);
+ DHD_OS_WAKE_UNLOCK(&dhd->pub);
+ return ret;
}
-#endif /* LINUX_VERSION_CODE > KERNEL_VERSION(2, 4, 2) */
+#if defined(OEM_ANDROID)
if (cmd == SIOCDEVPRIVATE+1) {
- ret = wl_android_priv_cmd(net, ifr, cmd);
+ ret = wl_android_priv_cmd(net, ifr);
dhd_check_hang(net, &dhd->pub, ret);
- goto exit;
+ DHD_PERIM_UNLOCK(&dhd->pub);
+ DHD_OS_WAKE_UNLOCK(&dhd->pub);
+ return ret;
}
+
+#endif /* OEM_ANDROID */
if (cmd != SIOCDEVPRIVATE) {
- ret = -EOPNOTSUPP;
- goto exit;
+ DHD_PERIM_UNLOCK(&dhd->pub);
+ DHD_OS_WAKE_UNLOCK(&dhd->pub);
+ return -EOPNOTSUPP;
}
memset(&ioc, 0, sizeof(ioc));
-#ifdef CONFIG_COMPAT
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 6, 0))
- if (in_compat_syscall()) {
-#else
- if (is_compat_task()) {
-#endif
- compat_wl_ioctl_t compat_ioc;
- if (copy_from_user(&compat_ioc, ifr->ifr_data, sizeof(compat_wl_ioctl_t))) {
- ret = BCME_BADADDR;
- goto done;
- }
- ioc.cmd = compat_ioc.cmd;
- ioc.buf = compat_ptr(compat_ioc.buf);
- ioc.len = compat_ioc.len;
- ioc.set = compat_ioc.set;
- ioc.used = compat_ioc.used;
- ioc.needed = compat_ioc.needed;
- /* To differentiate between wl and dhd read 4 more byes */
- if ((copy_from_user(&ioc.driver, (char *)ifr->ifr_data + sizeof(compat_wl_ioctl_t),
- sizeof(uint)) != 0)) {
- ret = BCME_BADADDR;
- goto done;
- }
- } else
-#endif /* CONFIG_COMPAT */
{
/* Copy the ioc control structure part of ioctl request */
if (copy_from_user(&ioc, ifr->ifr_data, sizeof(wl_ioctl_t))) {
- ret = BCME_BADADDR;
+ bcmerror = BCME_BADADDR;
goto done;
}
/* To differentiate between wl and dhd read 4 more byes */
if ((copy_from_user(&ioc.driver, (char *)ifr->ifr_data + sizeof(wl_ioctl_t),
sizeof(uint)) != 0)) {
- ret = BCME_BADADDR;
+ bcmerror = BCME_BADADDR;
goto done;
}
}
if (!capable(CAP_NET_ADMIN)) {
- ret = BCME_EPERM;
+ bcmerror = BCME_EPERM;
goto done;
}
+
+ /* Take backup of ioc.buf and restore later */
+ ioc_buf_user = ioc.buf;
if (ioc.len > 0) {
buflen = MIN(ioc.len, DHD_IOCTL_MAXLEN);
if (!(local_buf = MALLOC(dhd->pub.osh, buflen+1))) {
- ret = BCME_NOMEM;
+ bcmerror = BCME_NOMEM;
goto done;
}
DHD_PERIM_UNLOCK(&dhd->pub);
if (copy_from_user(local_buf, ioc.buf, buflen)) {
DHD_PERIM_LOCK(&dhd->pub);
- ret = BCME_BADADDR;
+ bcmerror = BCME_BADADDR;
goto done;
}
DHD_PERIM_LOCK(&dhd->pub);
- *(char *)(local_buf + buflen) = '\0';
+ *((char *)local_buf + buflen) = '\0';
+
+ /* For some platforms accessing userspace memory
+ * of ioc.buf is causing kernel panic, so to avoid that
+ * make ioc.buf pointing to kernel space memory local_buf
+ */
+ ioc.buf = local_buf;
}
- ret = dhd_ioctl_process(&dhd->pub, ifidx, &ioc, local_buf);
+#if defined(OEM_ANDROID)
+ /* Skip all the non DHD iovars (wl iovars) after f/w hang */
+ if (ioc.driver != DHD_IOCTL_MAGIC && dhd->pub.hang_was_sent) {
+ DHD_TRACE(("%s: HANG was sent up earlier\n", __FUNCTION__));
+ DHD_OS_WAKE_LOCK_CTRL_TIMEOUT_ENABLE(&dhd->pub, DHD_EVENT_TIMEOUT_MS);
+ bcmerror = BCME_DONGLE_DOWN;
+ goto done;
+ }
+#endif /* OEM_ANDROID */
- if (!ret && buflen && local_buf && ioc.buf) {
+ bcmerror = dhd_ioctl_process(&dhd->pub, ifidx, &ioc, local_buf);
+
+ /* Restore back userspace pointer to ioc.buf */
+ ioc.buf = ioc_buf_user;
+
+ if (!bcmerror && buflen && local_buf && ioc.buf) {
DHD_PERIM_UNLOCK(&dhd->pub);
if (copy_to_user(ioc.buf, local_buf, buflen))
- ret = -EFAULT;
+ bcmerror = -EFAULT;
DHD_PERIM_LOCK(&dhd->pub);
}
@@ -6244,22 +6376,332 @@
if (local_buf)
MFREE(dhd->pub.osh, local_buf, buflen+1);
-exit:
DHD_PERIM_UNLOCK(&dhd->pub);
DHD_OS_WAKE_UNLOCK(&dhd->pub);
- return OSL_ERROR(ret);
+ return OSL_ERROR(bcmerror);
}
+#if defined(WL_CFG80211) && defined(SUPPORT_DEEP_SLEEP)
+/* Flags to indicate if we distingish power off policy when
+ * user set the memu "Keep Wi-Fi on during sleep" to "Never"
+ */
+int trigger_deep_sleep = 0;
+#endif /* WL_CFG80211 && SUPPORT_DEEP_SLEEP */
+#ifdef FIX_CPU_MIN_CLOCK
+static int dhd_init_cpufreq_fix(dhd_info_t *dhd)
+{
+ if (dhd) {
+#if defined(OEM_ANDROID)
+ mutex_init(&dhd->cpufreq_fix);
+#endif // endif
+ dhd->cpufreq_fix_status = FALSE;
+ }
+ return 0;
+}
+
+static void dhd_fix_cpu_freq(dhd_info_t *dhd)
+{
+#if defined(OEM_ANDROID)
+ mutex_lock(&dhd->cpufreq_fix);
+#endif // endif
+ if (dhd && !dhd->cpufreq_fix_status) {
+ pm_qos_add_request(&dhd->dhd_cpu_qos, PM_QOS_CPU_FREQ_MIN, 300000);
+#ifdef FIX_BUS_MIN_CLOCK
+ pm_qos_add_request(&dhd->dhd_bus_qos, PM_QOS_BUS_THROUGHPUT, 400000);
+#endif /* FIX_BUS_MIN_CLOCK */
+ DHD_ERROR(("pm_qos_add_requests called\n"));
+
+ dhd->cpufreq_fix_status = TRUE;
+ }
+#if defined(OEM_ANDROID)
+ mutex_unlock(&dhd->cpufreq_fix);
+#endif // endif
+}
+
+static void dhd_rollback_cpu_freq(dhd_info_t *dhd)
+{
+#if defined(OEM_ANDROID)
+ mutex_lock(&dhd ->cpufreq_fix);
+#endif // endif
+ if (dhd && dhd->cpufreq_fix_status != TRUE) {
+#if defined(OEM_ANDROID)
+ mutex_unlock(&dhd->cpufreq_fix);
+#endif // endif
+ return;
+ }
+
+ pm_qos_remove_request(&dhd->dhd_cpu_qos);
+#ifdef FIX_BUS_MIN_CLOCK
+ pm_qos_remove_request(&dhd->dhd_bus_qos);
+#endif /* FIX_BUS_MIN_CLOCK */
+ DHD_ERROR(("pm_qos_add_requests called\n"));
+
+ dhd->cpufreq_fix_status = FALSE;
+#if defined(OEM_ANDROID)
+ mutex_unlock(&dhd->cpufreq_fix);
+#endif // endif
+}
+#endif /* FIX_CPU_MIN_CLOCK */
+
+#ifdef DHD_PCIE_NATIVE_RUNTIMEPM
+static int
+dhd_ioctl_entry_wrapper(struct net_device *net, struct ifreq *ifr, int cmd)
+{
+ int error;
+ dhd_info_t *dhd = DHD_DEV_INFO(net);
+
+ if (atomic_read(&dhd->pub.block_bus))
+ return -EHOSTDOWN;
+
+ if (pm_runtime_get_sync(dhd_bus_to_dev(dhd->pub.bus)) < 0)
+ return BCME_ERROR;
+
+ error = dhd_ioctl_entry(net, ifr, cmd);
+
+ pm_runtime_mark_last_busy(dhd_bus_to_dev(dhd->pub.bus));
+ pm_runtime_put_autosuspend(dhd_bus_to_dev(dhd->pub.bus));
+
+ return error;
+}
+#endif /* DHD_PCIE_NATIVE_RUNTIMEPM */
+
+#if defined(BT_OVER_SDIO)
+
+void
+dhdsdio_bus_usr_cnt_inc(dhd_pub_t *dhdp)
+{
+ dhdp->info->bus_user_count++;
+}
+
+void
+dhdsdio_bus_usr_cnt_dec(dhd_pub_t *dhdp)
+{
+ dhdp->info->bus_user_count--;
+}
+
+/* Return values:
+ * Success: Returns 0
+ * Failure: Returns -1 or errono code
+ */
+int
+dhd_bus_get(wlan_bt_handle_t handle, bus_owner_t owner)
+{
+ dhd_pub_t *dhdp = (dhd_pub_t *)handle;
+ dhd_info_t *dhd = (dhd_info_t *)dhdp->info;
+ int ret = 0;
+
+ mutex_lock(&dhd->bus_user_lock);
+ ++dhd->bus_user_count;
+ if (dhd->bus_user_count < 0) {
+ DHD_ERROR(("%s(): bus_user_count is negative, which is invalid\n", __FUNCTION__));
+ ret = -1;
+ goto exit;
+ }
+
+ if (dhd->bus_user_count == 1) {
+
+ dhd->pub.hang_was_sent = 0;
+
+ /* First user, turn on WL_REG, start the bus */
+ DHD_ERROR(("%s(): First user Turn On WL_REG & start the bus", __FUNCTION__));
+
+ if (!wifi_platform_set_power(dhd->adapter, TRUE, WIFI_TURNON_DELAY)) {
+ /* Enable F1 */
+ ret = dhd_bus_resume(dhdp, 0);
+ if (ret) {
+ DHD_ERROR(("%s(): Failed to enable F1, err=%d\n",
+ __FUNCTION__, ret));
+ goto exit;
+ }
+ }
+
+ dhd_update_fw_nv_path(dhd);
+ /* update firmware and nvram path to sdio bus */
+ dhd_bus_update_fw_nv_path(dhd->pub.bus,
+ dhd->fw_path, dhd->nv_path);
+ /* download the firmware, Enable F2 */
+ /* TODO: Should be done only in case of FW switch */
+ ret = dhd_bus_devreset(dhdp, FALSE);
+ dhd_bus_resume(dhdp, 1);
+ if (!ret) {
+ if (dhd_sync_with_dongle(&dhd->pub) < 0) {
+ DHD_ERROR(("%s(): Sync with dongle failed!!\n", __FUNCTION__));
+ ret = -EFAULT;
+ }
+ } else {
+ DHD_ERROR(("%s(): Failed to download, err=%d\n", __FUNCTION__, ret));
+ }
+ } else {
+ DHD_ERROR(("%s(): BUS is already acquired, just increase the count %d \r\n",
+ __FUNCTION__, dhd->bus_user_count));
+ }
+exit:
+ mutex_unlock(&dhd->bus_user_lock);
+ return ret;
+}
+EXPORT_SYMBOL(dhd_bus_get);
+
+/* Return values:
+ * Success: Returns 0
+ * Failure: Returns -1 or errono code
+ */
+int
+dhd_bus_put(wlan_bt_handle_t handle, bus_owner_t owner)
+{
+ dhd_pub_t *dhdp = (dhd_pub_t *)handle;
+ dhd_info_t *dhd = (dhd_info_t *)dhdp->info;
+ int ret = 0;
+ BCM_REFERENCE(owner);
+
+ mutex_lock(&dhd->bus_user_lock);
+ --dhd->bus_user_count;
+ if (dhd->bus_user_count < 0) {
+ DHD_ERROR(("%s(): bus_user_count is negative, which is invalid\n", __FUNCTION__));
+ dhd->bus_user_count = 0;
+ ret = -1;
+ goto exit;
+ }
+
+ if (dhd->bus_user_count == 0) {
+ /* Last user, stop the bus and turn Off WL_REG */
+ DHD_ERROR(("%s(): There are no owners left Trunf Off WL_REG & stop the bus \r\n",
+ __FUNCTION__));
+#ifdef PROP_TXSTATUS
+ if (dhd->pub.wlfc_enabled) {
+ dhd_wlfc_deinit(&dhd->pub);
+ }
+#endif /* PROP_TXSTATUS */
+#ifdef PNO_SUPPORT
+ if (dhd->pub.pno_state) {
+ dhd_pno_deinit(&dhd->pub);
+ }
+#endif /* PNO_SUPPORT */
+#ifdef RTT_SUPPORT
+ if (dhd->pub.rtt_state) {
+ dhd_rtt_deinit(&dhd->pub);
+ }
+#endif /* RTT_SUPPORT */
+ ret = dhd_bus_devreset(dhdp, TRUE);
+ if (!ret) {
+ dhd_bus_suspend(dhdp);
+ wifi_platform_set_power(dhd->adapter, FALSE, WIFI_TURNOFF_DELAY);
+ }
+ } else {
+ DHD_ERROR(("%s(): Other owners using bus, decrease the count %d \r\n",
+ __FUNCTION__, dhd->bus_user_count));
+ }
+exit:
+ mutex_unlock(&dhd->bus_user_lock);
+ return ret;
+}
+EXPORT_SYMBOL(dhd_bus_put);
+
+int
+dhd_net_bus_get(struct net_device *dev)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(dev);
+ return dhd_bus_get(&dhd->pub, WLAN_MODULE);
+}
+
+int
+dhd_net_bus_put(struct net_device *dev)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(dev);
+ return dhd_bus_put(&dhd->pub, WLAN_MODULE);
+}
+
+/*
+ * Function to enable the Bus Clock
+ * Returns BCME_OK on success and BCME_xxx on failure
+ *
+ * This function is not callable from non-sleepable context
+ */
+int dhd_bus_clk_enable(wlan_bt_handle_t handle, bus_owner_t owner)
+{
+ dhd_pub_t *dhdp = (dhd_pub_t *)handle;
+
+ int ret;
+
+ dhd_os_sdlock(dhdp);
+ /*
+ * The second argument is TRUE, that means, we expect
+ * the function to "wait" until the clocks are really
+ * available
+ */
+ ret = __dhdsdio_clk_enable(dhdp->bus, owner, TRUE);
+ dhd_os_sdunlock(dhdp);
+
+ return ret;
+}
+EXPORT_SYMBOL(dhd_bus_clk_enable);
+
+/*
+ * Function to disable the Bus Clock
+ * Returns BCME_OK on success and BCME_xxx on failure
+ *
+ * This function is not callable from non-sleepable context
+ */
+int dhd_bus_clk_disable(wlan_bt_handle_t handle, bus_owner_t owner)
+{
+ dhd_pub_t *dhdp = (dhd_pub_t *)handle;
+
+ int ret;
+
+ dhd_os_sdlock(dhdp);
+ /*
+ * The second argument is TRUE, that means, we expect
+ * the function to "wait" until the clocks are really
+ * disabled
+ */
+ ret = __dhdsdio_clk_disable(dhdp->bus, owner, TRUE);
+ dhd_os_sdunlock(dhdp);
+
+ return ret;
+}
+EXPORT_SYMBOL(dhd_bus_clk_disable);
+
+/*
+ * Function to reset bt_use_count counter to zero.
+ *
+ * This function is not callable from non-sleepable context
+ */
+void dhd_bus_reset_bt_use_count(wlan_bt_handle_t handle)
+{
+ dhd_pub_t *dhdp = (dhd_pub_t *)handle;
+
+ /* take the lock and reset bt use count */
+ dhd_os_sdlock(dhdp);
+ dhdsdio_reset_bt_use_count(dhdp->bus);
+ dhd_os_sdunlock(dhdp);
+}
+EXPORT_SYMBOL(dhd_bus_reset_bt_use_count);
+
+void dhd_bus_retry_hang_recovery(wlan_bt_handle_t handle)
+{
+ dhd_pub_t *dhdp = (dhd_pub_t *)handle;
+ dhd_info_t *dhd = (dhd_info_t*)dhdp->info;
+
+ dhdp->hang_was_sent = 0;
+
+ dhd_os_send_hang_message(&dhd->pub);
+}
+EXPORT_SYMBOL(dhd_bus_retry_hang_recovery);
+
+#endif /* BT_OVER_SDIO */
static int
dhd_stop(struct net_device *net)
{
int ifidx = 0;
-#ifdef WL_CFG80211
+ bool skip_reset = false;
+#if defined(WL_CFG80211)
unsigned long flags = 0;
-#endif
+#ifdef WL_STATIC_IF
+ struct bcm_cfg80211 *cfg = wl_get_cfg(net);
+#endif /* WL_STATIC_IF */
+#endif /* WL_CFG80211 */
dhd_info_t *dhd = DHD_DEV_INFO(net);
DHD_OS_WAKE_LOCK(&dhd->pub);
DHD_PERIM_LOCK(&dhd->pub);
@@ -6271,45 +6713,87 @@
dhd->pub.d3ackcnt_timeout = 0;
#endif /* BCMPCIE */
+ mutex_lock(&dhd->pub.ndev_op_sync);
+
if (dhd->pub.up == 0) {
goto exit;
}
+#if defined(DHD_HANG_SEND_UP_TEST)
+ if (dhd->pub.req_hang_type) {
+ DHD_ERROR(("%s, Clear HANG test request 0x%x\n",
+ __FUNCTION__, dhd->pub.req_hang_type));
+ dhd->pub.req_hang_type = 0;
+ }
+#endif /* DHD_HANG_SEND_UP_TEST */
dhd_if_flush_sta(DHD_DEV_IFP(net));
+#ifdef FIX_CPU_MIN_CLOCK
+ if (dhd_get_fw_mode(dhd) == DHD_FLAG_HOSTAP_MODE)
+ dhd_rollback_cpu_freq(dhd);
+#endif /* FIX_CPU_MIN_CLOCK */
ifidx = dhd_net2idx(dhd, net);
BCM_REFERENCE(ifidx);
- /* Set state and stop OS transmissions */
- netif_stop_queue(net);
+ DHD_ERROR(("%s: ######### dhd_stop called for ifidx=%d #########\n", __FUNCTION__, ifidx));
+
+#if defined(WL_STATIC_IF) && defined(WL_CFG80211)
+ /* If static if is operational, don't reset the chip */
+ if (static_if_ndev_get_state(cfg, net) == NDEV_STATE_FW_IF_CREATED) {
+ DHD_ERROR(("static if operational. skip chip reset.\n"));
+ skip_reset = true;
+ wl_cfg80211_sta_ifdown(net);
+ goto exit;
+ }
+#endif /* WL_STATIC_IF && WL_CFG80211 */
+
+#if defined(WL_VIF_SUPPORT)
+ if (vif_num > 0) {
+ DHD_ERROR(("virtual if operational. skip chip reset.\n"));
+ skip_reset = true;
+ wl_cfg80211_sta_ifdown(net);
+ goto exit;
+ }
+#endif /* WL_VIF_SUPPORT */
+
+ DHD_ERROR(("%s: making dhdpub up FALSE\n", __FUNCTION__));
#ifdef WL_CFG80211
+
+ /* Disable Runtime PM before interface down */
+ DHD_DISABLE_RUNTIME_PM(&dhd->pub);
+
spin_lock_irqsave(&dhd->pub.up_lock, flags);
dhd->pub.up = 0;
spin_unlock_irqrestore(&dhd->pub.up_lock, flags);
#else
dhd->pub.up = 0;
-#endif
+#endif /* WL_CFG80211 */
#ifdef WL_CFG80211
if (ifidx == 0) {
dhd_if_t *ifp;
- wl_cfg80211_down(NULL);
+ wl_cfg80211_down(net);
ifp = dhd->iflist[0];
- ASSERT(ifp && ifp->net);
/*
* For CFG80211: Clean up all the left over virtual interfaces
* when the primary Interface is brought down. [ifconfig wlan0 down]
*/
if (!dhd_download_fw_on_driverload) {
+ DHD_STATLOG_CTRL(&dhd->pub, ST(WLAN_POWER_OFF), ifidx, 0);
if ((dhd->dhd_state & DHD_ATTACH_STATE_ADD_IF) &&
(dhd->dhd_state & DHD_ATTACH_STATE_CFG80211)) {
int i;
-
#ifdef WL_CFG80211_P2P_DEV_IF
- wl_cfg80211_del_p2p_wdev();
+ wl_cfg80211_del_p2p_wdev(net);
#endif /* WL_CFG80211_P2P_DEV_IF */
+#ifdef DHD_4WAYM4_FAIL_DISCONNECT
+ dhd_cleanup_m4_state_work(&dhd->pub, ifidx);
+#endif /* DHD_4WAYM4_FAIL_DISCONNECT */
+#ifdef DHD_PKTDUMP_ROAM
+ dhd_dump_pkt_clear(&dhd->pub);
+#endif /* DHD_PKTDUMP_ROAM */
dhd_net_if_lock_local(dhd);
for (i = 1; i < DHD_MAX_IFS; i++)
@@ -6318,33 +6802,44 @@
if (ifp && ifp->net) {
dhd_if_del_sta_list(ifp);
}
-
#ifdef ARP_OFFLOAD_SUPPORT
if (dhd_inetaddr_notifier_registered) {
dhd_inetaddr_notifier_registered = FALSE;
unregister_inetaddr_notifier(&dhd_inetaddr_notifier);
}
#endif /* ARP_OFFLOAD_SUPPORT */
-#if defined(CONFIG_IPV6)
+#if defined(CONFIG_IPV6) && defined(IPV6_NDO_SUPPORT)
if (dhd_inet6addr_notifier_registered) {
dhd_inet6addr_notifier_registered = FALSE;
unregister_inet6addr_notifier(&dhd_inet6addr_notifier);
}
-#endif /* OEM_ANDROID && CONFIG_IPV6 */
+#endif /* CONFIG_IPV6 && IPV6_NDO_SUPPORT */
dhd_net_if_unlock_local(dhd);
}
- //remove this to prevent dev_close get stuck in dhd_hang_process
- //cancel_work_sync(dhd->dhd_deferred_wq);
-#if defined(DHD_LB) && defined(DHD_LB_RXP)
+ cancel_work_sync(dhd->dhd_deferred_wq);
+
+#ifdef SHOW_LOGTRACE
+ /* Wait till event logs work/kthread finishes */
+ dhd_cancel_logtrace_process_sync(dhd);
+#endif /* SHOW_LOGTRACE */
+
+#if defined(DHD_LB_RXP)
__skb_queue_purge(&dhd->rx_pend_queue);
-#endif /* DHD_LB && DHD_LB_RXP */
+#endif /* DHD_LB_RXP */
+
+#if defined(DHD_LB_TXP)
+ skb_queue_purge(&dhd->tx_pend_queue);
+#endif /* DHD_LB_TXP */
}
-#if defined(BCMPCIE) && defined(DHDTCPACK_SUPPRESS)
+#if defined(ARGOS_NOTIFY_CB)
+ argos_register_notifier_deinit();
+#endif // endif
+#ifdef DHDTCPACK_SUPPRESS
dhd_tcpack_suppress_set(&dhd->pub, TCPACK_SUP_OFF);
-#endif /* BCMPCIE && DHDTCPACK_SUPPRESS */
-#if defined(DHD_LB) && defined(DHD_LB_RXP)
- if (ifp->net == dhd->rx_napi_netdev) {
+#endif /* DHDTCPACK_SUPPRESS */
+#if defined(DHD_LB_RXP)
+ if (ifp && ifp->net == dhd->rx_napi_netdev) {
DHD_INFO(("%s napi<%p> disabled ifp->net<%p,%s>\n",
__FUNCTION__, &dhd->rx_napi_struct, net, net->name));
skb_queue_purge(&dhd->rx_napi_queue);
@@ -6352,53 +6847,110 @@
netif_napi_del(&dhd->rx_napi_struct);
dhd->rx_napi_netdev = NULL;
}
-#endif /* DHD_LB && DHD_LB_RXP */
-
+#endif /* DHD_LB_RXP */
}
#endif /* WL_CFG80211 */
+ DHD_SSSR_DUMP_DEINIT(&dhd->pub);
+
#ifdef PROP_TXSTATUS
dhd_wlfc_cleanup(&dhd->pub, NULL, 0);
-#endif
+#endif // endif
+#ifdef SHOW_LOGTRACE
+ if (!dhd_download_fw_on_driverload) {
+ /* Release the skbs from queue for WLC_E_TRACE event */
+ dhd_event_logtrace_flush_queue(&dhd->pub);
+ if (dhd->dhd_state & DHD_ATTACH_LOGTRACE_INIT) {
+ if (dhd->event_data.fmts) {
+ MFREE(dhd->pub.osh, dhd->event_data.fmts,
+ dhd->event_data.fmts_size);
+ dhd->event_data.fmts = NULL;
+ }
+ if (dhd->event_data.raw_fmts) {
+ MFREE(dhd->pub.osh, dhd->event_data.raw_fmts,
+ dhd->event_data.raw_fmts_size);
+ dhd->event_data.raw_fmts = NULL;
+ }
+ if (dhd->event_data.raw_sstr) {
+ MFREE(dhd->pub.osh, dhd->event_data.raw_sstr,
+ dhd->event_data.raw_sstr_size);
+ dhd->event_data.raw_sstr = NULL;
+ }
+ if (dhd->event_data.rom_raw_sstr) {
+ MFREE(dhd->pub.osh, dhd->event_data.rom_raw_sstr,
+ dhd->event_data.rom_raw_sstr_size);
+ dhd->event_data.rom_raw_sstr = NULL;
+ }
+ dhd->dhd_state &= ~DHD_ATTACH_LOGTRACE_INIT;
+ }
+ }
+#endif /* SHOW_LOGTRACE */
+#ifdef APF
+ dhd_dev_apf_delete_filter(net);
+#endif /* APF */
+
/* Stop the protocol module */
dhd_prot_stop(&dhd->pub);
OLD_MOD_DEC_USE_COUNT;
exit:
-#if defined(WL_CFG80211)
- if (ifidx == 0 && !dhd_download_fw_on_driverload)
+ if (skip_reset == false) {
+#if defined(WL_CFG80211) && defined(OEM_ANDROID)
+ if (ifidx == 0 && !dhd_download_fw_on_driverload) {
+#if defined(BT_OVER_SDIO)
+ dhd_bus_put(&dhd->pub, WLAN_MODULE);
+ wl_android_set_wifi_on_flag(FALSE);
+#else
wl_android_wifi_off(net, TRUE);
-#endif
- dhd->pub.hang_was_sent = 0;
+#endif /* BT_OVER_SDIO */
+ }
+#ifdef SUPPORT_DEEP_SLEEP
+ else {
+ /* CSP#505233: Flags to indicate if we distingish
+ * power off policy when user set the memu
+ * "Keep Wi-Fi on during sleep" to "Never"
+ */
+ if (trigger_deep_sleep) {
+ dhd_deepsleep(net, 1);
+ trigger_deep_sleep = 0;
+ }
+ }
+#endif /* SUPPORT_DEEP_SLEEP */
+#endif /* defined(WL_CFG80211) && defined(OEM_ANDROID) */
+ dhd->pub.hang_was_sent = 0;
+ dhd->pub.hang_was_pending = 0;
- /* Clear country spec for for built-in type driver */
- if (!dhd_download_fw_on_driverload) {
- dhd->pub.dhd_cspec.country_abbrev[0] = 0x00;
- dhd->pub.dhd_cspec.rev = 0;
- dhd->pub.dhd_cspec.ccode[0] = 0x00;
- }
+ /* Clear country spec for for built-in type driver */
+ if (!dhd_download_fw_on_driverload) {
+ dhd->pub.dhd_cspec.country_abbrev[0] = 0x00;
+ dhd->pub.dhd_cspec.rev = 0;
+ dhd->pub.dhd_cspec.ccode[0] = 0x00;
+ }
#ifdef BCMDBGFS
- dhd_dbg_remove();
-#endif
+ dhd_dbgfs_remove();
+#endif // endif
+ }
DHD_PERIM_UNLOCK(&dhd->pub);
DHD_OS_WAKE_UNLOCK(&dhd->pub);
/* Destroy wakelock */
if (!dhd_download_fw_on_driverload &&
- (dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT)) {
+ (dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT) &&
+ (skip_reset == false)) {
DHD_OS_WAKE_LOCK_DESTROY(dhd);
dhd->dhd_state &= ~DHD_ATTACH_STATE_WAKELOCKS_INIT;
}
- printf("%s: Exit\n", __FUNCTION__);
+ mutex_unlock(&dhd->pub.ndev_op_sync);
return 0;
}
-#if defined(WL_CFG80211) && defined(USE_INITIAL_SHORT_DWELL_TIME)
+#if defined(OEM_ANDROID) && defined(WL_CFG80211) && (defined(USE_INITIAL_2G_SCAN) || \
+ defined(USE_INITIAL_SHORT_DWELL_TIME))
extern bool g_first_broadcast_scan;
-#endif
+#endif /* OEM_ANDROID && WL_CFG80211 && (USE_INITIAL_2G_SCAN || USE_INITIAL_SHORT_DWELL_TIME) */
#ifdef WL11U
static int dhd_interworking_enable(dhd_pub_t *dhd)
@@ -6411,15 +6963,6 @@
DHD_ERROR(("%s: enableing interworking failed, ret=%d\n", __FUNCTION__, ret));
}
- if (ret == BCME_OK) {
- /* basic capabilities for HS20 REL2 */
- uint32 cap = WL_WNM_BSSTRANS | WL_WNM_NOTIF;
- ret = dhd_iovar(dhd, 0, "wnm", (char *)&cap, sizeof(cap), NULL, 0, TRUE);
- if (ret < 0) {
- DHD_ERROR(("%s: failed to set WNM info, ret=%d\n", __FUNCTION__, ret));
- }
- }
-
return ret;
}
#endif /* WL11u */
@@ -6430,36 +6973,94 @@
dhd_info_t *dhd = DHD_DEV_INFO(net);
#ifdef TOE
uint32 toe_ol;
-#endif
-#ifdef BCM_FD_AGGR
- char iovbuf[WLC_IOCTL_SMLEN];
- dbus_config_t config;
- uint32 agglimit = 0;
- uint32 rpc_agg = BCM_RPC_TP_DNGL_AGG_DPC; /* host aggr not enabled yet */
-#endif /* BCM_FD_AGGR */
+#endif // endif
int ifidx;
int32 ret = 0;
- if (!dhd_download_fw_on_driverload && !dhd_driver_init_done) {
- DHD_ERROR(("%s: WLAN driver is not initialized\n", __FUNCTION__));
- return -1;
+#if defined(PREVENT_REOPEN_DURING_HANG)
+ /* WAR : to prevent calling dhd_open abnormally in quick succession after hang event */
+ if (dhd->pub.hang_was_sent == 1) {
+ DHD_ERROR(("%s: HANG was sent up earlier\n", __FUNCTION__));
+ /* Force to bring down WLAN interface in case dhd_stop() is not called
+ * from the upper layer when HANG event is triggered.
+ */
+ if (!dhd_download_fw_on_driverload && dhd->pub.up == 1) {
+ DHD_ERROR(("%s: WLAN interface is not brought down\n", __FUNCTION__));
+ dhd_stop(net);
+ } else {
+ return -1;
+ }
+ }
+#endif /* PREVENT_REOPEN_DURING_HANG */
+
+ mutex_lock(&dhd->pub.ndev_op_sync);
+
+ if (dhd->pub.up == 1) {
+ /* already up */
+ DHD_ERROR(("Primary net_device is already up \n"));
+ mutex_unlock(&dhd->pub.ndev_op_sync);
+ return BCME_OK;
}
if (!dhd_download_fw_on_driverload) {
+ if (!dhd_driver_init_done) {
+ DHD_ERROR(("%s: WLAN driver is not initialized\n", __FUNCTION__));
+ mutex_unlock(&dhd->pub.ndev_op_sync);
+ return -1;
+ }
+ /* Init wakelock */
if (!(dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT)) {
DHD_OS_WAKE_LOCK_INIT(dhd);
dhd->dhd_state |= DHD_ATTACH_STATE_WAKELOCKS_INIT;
}
+
+#ifdef SHOW_LOGTRACE
+ skb_queue_head_init(&dhd->evt_trace_queue);
+
+ if (!(dhd->dhd_state & DHD_ATTACH_LOGTRACE_INIT)) {
+ ret = dhd_init_logstrs_array(dhd->pub.osh, &dhd->event_data);
+ if (ret == BCME_OK) {
+ dhd_init_static_strs_array(dhd->pub.osh, &dhd->event_data,
+ st_str_file_path, map_file_path);
+ dhd_init_static_strs_array(dhd->pub.osh, &dhd->event_data,
+ rom_st_str_file_path, rom_map_file_path);
+ dhd->dhd_state |= DHD_ATTACH_LOGTRACE_INIT;
+ }
+ }
+#endif /* SHOW_LOGTRACE */
}
+
+#if defined(MULTIPLE_SUPPLICANT)
+#if defined(OEM_ANDROID) && defined(BCMSDIO)
+ if (mutex_is_locked(&_dhd_sdio_mutex_lock_) != 0) {
+ DHD_ERROR(("%s : dhd_open: call dev open before insmod complete!\n", __FUNCTION__));
+ }
+ mutex_lock(&_dhd_sdio_mutex_lock_);
+#endif // endif
+#endif /* MULTIPLE_SUPPLICANT */
DHD_OS_WAKE_LOCK(&dhd->pub);
DHD_PERIM_LOCK(&dhd->pub);
dhd->pub.dongle_trap_occured = 0;
dhd->pub.hang_was_sent = 0;
+ dhd->pub.hang_was_pending = 0;
+ dhd->pub.hang_reason = 0;
+ dhd->pub.iovar_timeout_occured = 0;
+#ifdef PCIE_FULL_DONGLE
+ dhd->pub.d3ack_timeout_occured = 0;
+ dhd->pub.livelock_occured = 0;
+ dhd->pub.pktid_audit_failed = 0;
+#endif /* PCIE_FULL_DONGLE */
+ dhd->pub.iface_op_failed = 0;
+ dhd->pub.scan_timeout_occurred = 0;
+ dhd->pub.scan_busy_occurred = 0;
+ dhd->pub.smmu_fault_occurred = 0;
+
#ifdef DHD_LOSSLESS_ROAMING
dhd->pub.dequeue_prec_map = ALLPRIO;
-#endif
-#if !defined(WL_CFG80211)
+#endif // endif
+
+#if defined(OEM_ANDROID) && !defined(WL_CFG80211)
/*
* Force start if ifconfig_up gets called before START command
* We keep WEXT's wl_control_wl_start to provide backward compatibility
@@ -6472,7 +7073,7 @@
goto exit;
}
-#endif
+#endif /* defined(OEM_ANDROID) && !defined(WL_CFG80211) */
ifidx = dhd_net2idx(dhd, net);
DHD_TRACE(("%s: ifidx %d\n", __FUNCTION__, ifidx));
@@ -6491,13 +7092,30 @@
if (ifidx == 0) {
atomic_set(&dhd->pend_8021x_cnt, 0);
-#if defined(WL_CFG80211)
+#if defined(WL_CFG80211) && defined(OEM_ANDROID)
if (!dhd_download_fw_on_driverload) {
DHD_ERROR(("\n%s\n", dhd_version));
-#if defined(USE_INITIAL_SHORT_DWELL_TIME)
+ DHD_STATLOG_CTRL(&dhd->pub, ST(WLAN_POWER_ON), ifidx, 0);
+#if defined(USE_INITIAL_2G_SCAN) || defined(USE_INITIAL_SHORT_DWELL_TIME)
g_first_broadcast_scan = TRUE;
-#endif
+#endif /* USE_INITIAL_2G_SCAN || USE_INITIAL_SHORT_DWELL_TIME */
+#ifdef SHOW_LOGTRACE
+ /* dhd_cancel_logtrace_process_sync is called in dhd_stop
+ * for built-in models. Need to start logtrace kthread before
+ * calling wifi on, because once wifi is on, EDL will be in action
+ * any moment, and if kthread is not active, FW event logs will
+ * not be available
+ */
+ if (dhd_reinit_logtrace_process(dhd) != BCME_OK) {
+ goto exit;
+ }
+#endif /* SHOW_LOGTRACE */
+#if defined(BT_OVER_SDIO)
+ ret = dhd_bus_get(&dhd->pub, WLAN_MODULE);
+ wl_android_set_wifi_on_flag(TRUE);
+#else
ret = wl_android_wifi_on(net);
+#endif /* BT_OVER_SDIO */
if (ret != 0) {
DHD_ERROR(("%s : wl_android_wifi_on failed (%d)\n",
__FUNCTION__, ret));
@@ -6505,71 +7123,60 @@
goto exit;
}
}
-#endif
+#ifdef SUPPORT_DEEP_SLEEP
+ else {
+ /* Flags to indicate if we distingish
+ * power off policy when user set the memu
+ * "Keep Wi-Fi on during sleep" to "Never"
+ */
+ if (trigger_deep_sleep) {
+#if defined(USE_INITIAL_2G_SCAN) || defined(USE_INITIAL_SHORT_DWELL_TIME)
+ g_first_broadcast_scan = TRUE;
+#endif /* USE_INITIAL_2G_SCAN || USE_INITIAL_SHORT_DWELL_TIME */
+ dhd_deepsleep(net, 0);
+ trigger_deep_sleep = 0;
+ }
+ }
+#endif /* SUPPORT_DEEP_SLEEP */
+#ifdef FIX_CPU_MIN_CLOCK
+ if (dhd_get_fw_mode(dhd) == DHD_FLAG_HOSTAP_MODE) {
+ dhd_init_cpufreq_fix(dhd);
+ dhd_fix_cpu_freq(dhd);
+ }
+#endif /* FIX_CPU_MIN_CLOCK */
+#endif /* defined(WL_CFG80211) && defined(OEM_ANDROID) */
if (dhd->pub.busstate != DHD_BUS_DATA) {
-#ifndef BCMDBUS
/* try to bring up bus */
DHD_PERIM_UNLOCK(&dhd->pub);
+
+#ifdef DHD_PCIE_NATIVE_RUNTIMEPM
+ if (pm_runtime_get_sync(dhd_bus_to_dev(dhd->pub.bus)) >= 0) {
+ ret = dhd_bus_start(&dhd->pub);
+ pm_runtime_mark_last_busy(dhd_bus_to_dev(dhd->pub.bus));
+ pm_runtime_put_autosuspend(dhd_bus_to_dev(dhd->pub.bus));
+ }
+#else
ret = dhd_bus_start(&dhd->pub);
+#endif /* DHD_PCIE_NATIVE_RUNTIMEPM */
+
DHD_PERIM_LOCK(&dhd->pub);
if (ret) {
DHD_ERROR(("%s: failed with code %d\n", __FUNCTION__, ret));
ret = -1;
goto exit;
}
-#else /* BCMDBUS */
- if ((ret = dbus_up(dhd->pub.dbus)) != 0) {
- goto exit;
- } else {
- dhd->pub.busstate = DHD_BUS_DATA;
- }
-
- if ((ret = dhd_sync_with_dongle(&dhd->pub)) < 0) {
- DHD_ERROR(("%s: failed with code %d\n", __FUNCTION__, ret));
- goto exit;
- }
-#endif /* BCMDBUS */
}
-#ifdef BCM_FD_AGGR
- config.config_id = DBUS_CONFIG_ID_AGGR_LIMIT;
-
-
- memset(iovbuf, 0, sizeof(iovbuf));
- if (!dhd_iovar(&dhd->pub, ifidx, "rpc_dngl_agglimit", NULL, 0,
- (char *)iovbuf, sizeof(iovbuf), FALSE)) {
- agglimit = *(uint32 *)iovbuf;
- config.aggr_param.maxrxsf = agglimit >> BCM_RPC_TP_AGG_SF_SHIFT;
- config.aggr_param.maxrxsize = agglimit & BCM_RPC_TP_AGG_BYTES_MASK;
- DHD_ERROR(("rpc_dngl_agglimit %x : sf_limit %d bytes_limit %d\n",
- agglimit, config.aggr_param.maxrxsf, config.aggr_param.maxrxsize));
- if (bcm_rpc_tp_set_config(dhd->pub.info->rpc_th, &config)) {
- DHD_ERROR(("set tx/rx queue size and buffersize failed\n"));
- }
- } else {
- DHD_ERROR(("get rpc_dngl_agglimit failed\n"));
- rpc_agg &= ~BCM_RPC_TP_DNGL_AGG_DPC;
+#ifdef BT_OVER_SDIO
+ if (dhd->pub.is_bt_recovery_required) {
+ DHD_ERROR(("%s: Send Hang Notification 2 to BT\n", __FUNCTION__));
+ bcmsdh_btsdio_process_dhd_hang_notification(TRUE);
}
-
- /* Set aggregation for TX */
- bcm_rpc_tp_agg_set(dhd->pub.info->rpc_th, BCM_RPC_TP_HOST_AGG_MASK,
- rpc_agg & BCM_RPC_TP_HOST_AGG_MASK);
-
- /* Set aggregation for RX */
- if (!dhd_iovar(&dhd->pub, ifidx, "rpc_agg", (char *)&rpc_agg, sizeof(rpc_agg),
- NULL, 0, TRUE)) {
- dhd->pub.info->fdaggr = 0;
- if (rpc_agg & BCM_RPC_TP_HOST_AGG_MASK)
- dhd->pub.info->fdaggr |= BCM_FDAGGR_H2D_ENABLED;
- if (rpc_agg & BCM_RPC_TP_DNGL_AGG_MASK)
- dhd->pub.info->fdaggr |= BCM_FDAGGR_D2H_ENABLED;
- } else {
- DHD_ERROR(("%s(): Setting RX aggregation failed %d\n", __FUNCTION__, ret));
- }
-#endif /* BCM_FD_AGGR */
+ dhd->pub.is_bt_recovery_required = FALSE;
+#endif // endif
/* dhd_sync_with_dongle has been called in dhd_bus_start or wl_android_wifi_on */
memcpy(net->dev_addr, dhd->pub.mac.octet, ETHER_ADDR_LEN);
@@ -6583,8 +7190,28 @@
}
#endif /* TOE */
+#if defined(DHD_LB_RXP)
+ __skb_queue_head_init(&dhd->rx_pend_queue);
+ if (dhd->rx_napi_netdev == NULL) {
+ dhd->rx_napi_netdev = dhd->iflist[ifidx]->net;
+ memset(&dhd->rx_napi_struct, 0, sizeof(struct napi_struct));
+ netif_napi_add(dhd->rx_napi_netdev, &dhd->rx_napi_struct,
+ dhd_napi_poll, dhd_napi_weight);
+ DHD_INFO(("%s napi<%p> enabled ifp->net<%p,%s>\n",
+ __FUNCTION__, &dhd->rx_napi_struct, net, net->name));
+ napi_enable(&dhd->rx_napi_struct);
+ DHD_INFO(("%s load balance init rx_napi_struct\n", __FUNCTION__));
+ skb_queue_head_init(&dhd->rx_napi_queue);
+ } /* rx_napi_netdev == NULL */
+#endif /* DHD_LB_RXP */
+
+#if defined(DHD_LB_TXP)
+ /* Use the variant that uses locks */
+ skb_queue_head_init(&dhd->tx_pend_queue);
+#endif /* DHD_LB_TXP */
+
#if defined(WL_CFG80211)
- if (unlikely(wl_cfg80211_up(NULL))) {
+ if (unlikely(wl_cfg80211_up(net))) {
DHD_ERROR(("%s: failed to bring up cfg80211\n", __FUNCTION__));
ret = -1;
goto exit;
@@ -6597,57 +7224,63 @@
register_inetaddr_notifier(&dhd_inetaddr_notifier);
}
#endif /* ARP_OFFLOAD_SUPPORT */
-#if defined(CONFIG_IPV6)
+#if defined(CONFIG_IPV6) && defined(IPV6_NDO_SUPPORT)
if (!dhd_inet6addr_notifier_registered) {
dhd_inet6addr_notifier_registered = TRUE;
register_inet6addr_notifier(&dhd_inet6addr_notifier);
}
-#endif /* OEM_ANDROID && CONFIG_IPV6 */
-#ifdef DHD_LB
- DHD_LB_STATS_INIT(&dhd->pub);
-#ifdef DHD_LB_RXP
- __skb_queue_head_init(&dhd->rx_pend_queue);
-#endif /* DHD_LB_RXP */
-#endif /* DHD_LB */
+#endif /* CONFIG_IPV6 && IPV6_NDO_SUPPORT */
}
+#if defined(DHD_CONTROL_PCIE_ASPM_WIFI_TURNON)
+ dhd_bus_aspm_enable_rc_ep(dhd->pub.bus, TRUE);
+#endif /* DHD_CONTROL_PCIE_ASPM_WIFI_TURNON */
+#if defined(DHD_CONTROL_PCIE_CPUCORE_WIFI_TURNON)
+ dhd_irq_set_affinity(&dhd->pub, cpumask_of(0));
+#endif /* DHD_CONTROL_PCIE_CPUCORE_WIFI_TURNON */
+#ifdef DHD_LB_IRQSET
+ dhd_irq_set_affinity(&dhd->pub, dhd->cpumask_primary);
+#endif /* DHD_LB_IRQSET */
+#if defined(ARGOS_NOTIFY_CB)
+ argos_register_notifier_init(net);
+#endif // endif
#if defined(BCMPCIE) && defined(DHDTCPACK_SUPPRESS)
#if defined(SET_RPS_CPUS)
dhd_tcpack_suppress_set(&dhd->pub, TCPACK_SUP_OFF);
#else
- dhd_tcpack_suppress_set(&dhd->pub, TCPACK_SUP_HOLD);
-#endif
+ dhd_tcpack_suppress_set(&dhd->pub, TCPACK_SUP_OFF);
+#endif // endif
#endif /* BCMPCIE && DHDTCPACK_SUPPRESS */
-#if defined(DHD_LB) && defined(DHD_LB_RXP)
- if (dhd->rx_napi_netdev == NULL) {
- dhd->rx_napi_netdev = dhd->iflist[ifidx]->net;
- memset(&dhd->rx_napi_struct, 0, sizeof(struct napi_struct));
- netif_napi_add(dhd->rx_napi_netdev, &dhd->rx_napi_struct,
- dhd_napi_poll, dhd_napi_weight);
- DHD_INFO(("%s napi<%p> enabled ifp->net<%p,%s>\n",
- __FUNCTION__, &dhd->rx_napi_struct, net, net->name));
- napi_enable(&dhd->rx_napi_struct);
- DHD_INFO(("%s load balance init rx_napi_struct\n", __FUNCTION__));
- skb_queue_head_init(&dhd->rx_napi_queue);
- }
-#endif /* DHD_LB && DHD_LB_RXP */
#if defined(NUM_SCB_MAX_PROBE)
dhd_set_scb_probe(&dhd->pub);
#endif /* NUM_SCB_MAX_PROBE */
#endif /* WL_CFG80211 */
}
- /* Allow transmit calls */
- netif_start_queue(net);
dhd->pub.up = 1;
+
+ if (wl_event_enable) {
+ /* For wl utility to receive events */
+ dhd->pub.wl_event_enabled = true;
+ } else {
+ dhd->pub.wl_event_enabled = false;
+ }
+
+ if (logtrace_pkt_sendup) {
+ /* For any deamon to recieve logtrace */
+ dhd->pub.logtrace_pkt_sendup = true;
+ } else {
+ dhd->pub.logtrace_pkt_sendup = false;
+ }
OLD_MOD_INC_USE_COUNT;
#ifdef BCMDBGFS
- dhd_dbg_init(&dhd->pub);
-#endif
+ dhd_dbgfs_init(&dhd->pub);
+#endif // endif
exit:
+ mutex_unlock(&dhd->pub.ndev_op_sync);
if (ret) {
dhd_stop(net);
}
@@ -6655,9 +7288,135 @@
DHD_PERIM_UNLOCK(&dhd->pub);
DHD_OS_WAKE_UNLOCK(&dhd->pub);
+#if defined(MULTIPLE_SUPPLICANT)
+#if defined(OEM_ANDROID) && defined(BCMSDIO)
+ mutex_unlock(&_dhd_sdio_mutex_lock_);
+#endif // endif
+#endif /* MULTIPLE_SUPPLICANT */
return ret;
}
+
+/*
+ * ndo_start handler for primary ndev
+ */
+static int
+dhd_pri_open(struct net_device *net)
+{
+ s32 ret;
+
+ ret = dhd_open(net);
+ if (unlikely(ret)) {
+ DHD_ERROR(("Failed to open primary dev ret %d\n", ret));
+ return ret;
+ }
+
+ /* Allow transmit calls */
+ netif_start_queue(net);
+ DHD_ERROR(("[%s] tx queue started\n", net->name));
+ return ret;
+}
+
+/*
+ * ndo_stop handler for primary ndev
+ */
+static int
+dhd_pri_stop(struct net_device *net)
+{
+ s32 ret;
+
+ /* stop tx queue */
+ netif_stop_queue(net);
+ DHD_ERROR(("[%s] tx queue stopped\n", net->name));
+
+ ret = dhd_stop(net);
+ if (unlikely(ret)) {
+ DHD_ERROR(("dhd_stop failed: %d\n", ret));
+ return ret;
+ }
+
+ return ret;
+}
+
+#if defined(WL_STATIC_IF) && defined(WL_CFG80211)
+/*
+ * For static I/Fs, the firmware interface init
+ * is done from the IFF_UP context.
+ */
+static int
+dhd_static_if_open(struct net_device *net)
+{
+ s32 ret = 0;
+ struct bcm_cfg80211 *cfg;
+ struct net_device *primary_netdev = NULL;
+
+ cfg = wl_get_cfg(net);
+ primary_netdev = bcmcfg_to_prmry_ndev(cfg);
+
+ if (!is_static_iface(cfg, net)) {
+ DHD_TRACE(("non-static interface (%s)..do nothing \n", net->name));
+ ret = BCME_OK;
+ goto done;
+ }
+
+ DHD_INFO(("[%s][STATIC_IF] Enter \n", net->name));
+ /* Ensure fw is initialized. If it is already initialized,
+ * dhd_open will return success.
+ */
+ ret = dhd_open(primary_netdev);
+ if (unlikely(ret)) {
+ DHD_ERROR(("Failed to open primary dev ret %d\n", ret));
+ goto done;
+ }
+
+ ret = wl_cfg80211_static_if_open(net);
+ if (!ret) {
+ /* Allow transmit calls */
+ netif_start_queue(net);
+ }
+done:
+ return ret;
+}
+
+static int
+dhd_static_if_stop(struct net_device *net)
+{
+ struct bcm_cfg80211 *cfg;
+ struct net_device *primary_netdev = NULL;
+ int ret = BCME_OK;
+ dhd_info_t *dhd = DHD_DEV_INFO(net);
+
+ DHD_INFO(("[%s][STATIC_IF] Enter \n", net->name));
+
+ /* Ensure queue is disabled */
+ netif_tx_disable(net);
+
+ cfg = wl_get_cfg(net);
+ if (!is_static_iface(cfg, net)) {
+ DHD_TRACE(("non-static interface (%s)..do nothing \n", net->name));
+ return BCME_OK;
+ }
+
+ ret = wl_cfg80211_static_if_close(net);
+
+ if (dhd->pub.up == 0) {
+ /* If fw is down, return */
+ DHD_ERROR(("fw down\n"));
+ return BCME_OK;
+ }
+ /* If STA iface is not in operational, invoke dhd_close from this
+ * context.
+ */
+ primary_netdev = bcmcfg_to_prmry_ndev(cfg);
+ if (!(primary_netdev->flags & IFF_UP)) {
+ ret = dhd_stop(primary_netdev);
+ } else {
+ DHD_ERROR(("Skipped dhd_stop, as sta is operational\n"));
+ }
+
+ return ret;
+}
+#endif /* WL_STATIC_IF && WL_CF80211 */
int dhd_do_driver_init(struct net_device *net)
{
@@ -6668,6 +7427,14 @@
return -EINVAL;
}
+#ifdef MULTIPLE_SUPPLICANT
+#if defined(OEM_ANDROID) && defined(BCMSDIO)
+ if (mutex_is_locked(&_dhd_sdio_mutex_lock_) != 0) {
+ DHD_ERROR(("%s : dhdsdio_probe is already running!\n", __FUNCTION__));
+ return 0;
+ }
+#endif /* OEM_ANDROID & BCMSDIO */
+#endif /* MULTIPLE_SUPPLICANT */
/* && defined(OEM_ANDROID) && defined(BCMSDIO) */
dhd = DHD_DEV_INFO(net);
@@ -6692,9 +7459,10 @@
{
#ifdef WL_CFG80211
- if (wl_cfg80211_notify_ifadd(ifevent->ifidx, name, mac, ifevent->bssidx) == BCME_OK)
+ if (wl_cfg80211_notify_ifadd(dhd_linux_get_primary_netdev(&dhdinfo->pub),
+ ifevent->ifidx, name, mac, ifevent->bssidx, ifevent->role) == BCME_OK)
return BCME_OK;
-#endif
+#endif // endif
/* handle IF event caused by wl commands, SoftAP, WEXT and
* anything else. This has to be done asynchronously otherwise
@@ -6714,7 +7482,7 @@
strncpy(if_event->name, name, IFNAMSIZ);
if_event->name[IFNAMSIZ - 1] = '\0';
dhd_deferred_schedule_work(dhdinfo->dhd_deferred_wq, (void *)if_event,
- DHD_WQ_WORK_IF_ADD, dhd_ifadd_event_handler, DHD_WORK_PRIORITY_LOW);
+ DHD_WQ_WORK_IF_ADD, dhd_ifadd_event_handler, DHD_WQ_WORK_PRIORITY_LOW);
}
return BCME_OK;
@@ -6726,7 +7494,8 @@
dhd_if_event_t *if_event;
#ifdef WL_CFG80211
- if (wl_cfg80211_notify_ifdel(ifevent->ifidx, name, mac, ifevent->bssidx) == BCME_OK)
+ if (wl_cfg80211_notify_ifdel(dhd_linux_get_primary_netdev(&dhdinfo->pub),
+ ifevent->ifidx, name, mac, ifevent->bssidx) == BCME_OK)
return BCME_OK;
#endif /* WL_CFG80211 */
@@ -6744,28 +7513,258 @@
strncpy(if_event->name, name, IFNAMSIZ);
if_event->name[IFNAMSIZ - 1] = '\0';
dhd_deferred_schedule_work(dhdinfo->dhd_deferred_wq, (void *)if_event, DHD_WQ_WORK_IF_DEL,
- dhd_ifdel_event_handler, DHD_WORK_PRIORITY_LOW);
+ dhd_ifdel_event_handler, DHD_WQ_WORK_PRIORITY_LOW);
return BCME_OK;
}
+
+int
+dhd_event_ifchange(dhd_info_t *dhdinfo, wl_event_data_if_t *ifevent, char *name, uint8 *mac)
+{
+#ifdef WL_CFG80211
+ wl_cfg80211_notify_ifchange(dhd_linux_get_primary_netdev(&dhdinfo->pub),
+ ifevent->ifidx, name, mac, ifevent->bssidx);
+#endif /* WL_CFG80211 */
+ return BCME_OK;
+}
+
+#ifdef WL_NATOE
+/* Handler to update natoe info and bind with new subscriptions if there is change in config */
+static void
+dhd_natoe_ct_event_hanlder(void *handle, void *event_info, u8 event)
+{
+ dhd_info_t *dhd = handle;
+ wl_event_data_natoe_t *natoe = event_info;
+ dhd_nfct_info_t *nfct = dhd->pub.nfct;
+
+ if (event != DHD_WQ_WORK_NATOE_EVENT) {
+ DHD_ERROR(("%s: unexpected event \n", __FUNCTION__));
+ return;
+ }
+
+ if (!dhd) {
+ DHD_ERROR(("%s: dhd info not available \n", __FUNCTION__));
+ return;
+ }
+ if (natoe->natoe_active && natoe->sta_ip && natoe->start_port && natoe->end_port &&
+ (natoe->start_port < natoe->end_port)) {
+ /* Rebind subscriptions to start receiving notifications from groups */
+ if (dhd_ct_nl_bind(nfct, nfct->subscriptions) < 0) {
+ dhd_ct_close(nfct);
+ }
+ dhd_ct_send_dump_req(nfct);
+ } else if (!natoe->natoe_active) {
+ /* Rebind subscriptions to stop receiving notifications from groups */
+ if (dhd_ct_nl_bind(nfct, CT_NULL_SUBSCRIPTION) < 0) {
+ dhd_ct_close(nfct);
+ }
+ }
+}
+
+/* As NATOE enable/disbale event is received, we have to bind with new NL subscriptions.
+ * Scheduling workq to switch from tasklet context as bind call may sleep in handler
+ */
+int
+dhd_natoe_ct_event(dhd_pub_t *dhd, char *data)
+{
+ wl_event_data_natoe_t *event_data = (wl_event_data_natoe_t *)data;
+
+ if (dhd->nfct) {
+ wl_event_data_natoe_t *natoe = dhd->nfct->natoe_info;
+ uint8 prev_enable = natoe->natoe_active;
+
+ spin_lock_bh(&dhd->nfct_lock);
+ memcpy(natoe, event_data, sizeof(*event_data));
+ spin_unlock_bh(&dhd->nfct_lock);
+
+ if (prev_enable != event_data->natoe_active) {
+ dhd_deferred_schedule_work(dhd->info->dhd_deferred_wq,
+ (void *)natoe, DHD_WQ_WORK_NATOE_EVENT,
+ dhd_natoe_ct_event_hanlder, DHD_WQ_WORK_PRIORITY_LOW);
+ }
+ return BCME_OK;
+ }
+ DHD_ERROR(("%s ERROR NFCT is not enabled \n", __FUNCTION__));
+ return BCME_ERROR;
+}
+
+/* Handler to send natoe ioctl to dongle */
+static void
+dhd_natoe_ct_ioctl_handler(void *handle, void *event_info, uint8 event)
+{
+ dhd_info_t *dhd = handle;
+ dhd_ct_ioc_t *ct_ioc = event_info;
+
+ if (event != DHD_WQ_WORK_NATOE_IOCTL) {
+ DHD_ERROR(("%s: unexpected event \n", __FUNCTION__));
+ return;
+ }
+
+ if (!dhd) {
+ DHD_ERROR(("%s: dhd info not available \n", __FUNCTION__));
+ return;
+ }
+
+ if (dhd_natoe_prep_send_exception_port_ioctl(&dhd->pub, ct_ioc) < 0) {
+ DHD_ERROR(("%s: Error in sending NATOE IOCTL \n", __FUNCTION__));
+ }
+}
+
+/* When Netlink message contains port collision info, the info must be sent to dongle FW
+ * For that we have to switch context from softirq/tasklet by scheduling workq for natoe_ct ioctl
+ */
+void
+dhd_natoe_ct_ioctl_schedule_work(dhd_pub_t *dhd, dhd_ct_ioc_t *ioc)
+{
+
+ dhd_deferred_schedule_work(dhd->info->dhd_deferred_wq, (void *)ioc,
+ DHD_WQ_WORK_NATOE_IOCTL, dhd_natoe_ct_ioctl_handler,
+ DHD_WQ_WORK_PRIORITY_HIGH);
+}
+#endif /* WL_NATOE */
+
+/* This API maps ndev to ifp inclusive of static IFs */
+static dhd_if_t *
+dhd_get_ifp_by_ndev(dhd_pub_t *dhdp, struct net_device *ndev)
+{
+ dhd_if_t *ifp = NULL;
+#ifdef WL_STATIC_IF
+ u32 ifidx = (DHD_MAX_IFS + DHD_MAX_STATIC_IFS - 1);
+#else
+ u32 ifidx = (DHD_MAX_IFS - 1);
+#endif /* WL_STATIC_IF */
+
+ dhd_info_t *dhdinfo = (dhd_info_t *)dhdp->info;
+ do {
+ ifp = dhdinfo->iflist[ifidx];
+ if (ifp && (ifp->net == ndev)) {
+ DHD_TRACE(("match found for %s. ifidx:%d\n",
+ ndev->name, ifidx));
+ return ifp;
+ }
+ } while (ifidx--);
+
+ DHD_ERROR(("no entry found for %s\n", ndev->name));
+ return NULL;
+}
+
+bool
+dhd_is_static_ndev(dhd_pub_t *dhdp, struct net_device *ndev)
+{
+ dhd_if_t *ifp = NULL;
+
+ if (!dhdp || !ndev) {
+ DHD_ERROR(("wrong input\n"));
+ ASSERT(0);
+ return false;
+ }
+
+ ifp = dhd_get_ifp_by_ndev(dhdp, ndev);
+ return (ifp && (ifp->static_if == true));
+}
+
+#ifdef WL_STATIC_IF
+/* In some cases, while registering I/F, the actual ifidx, bssidx and dngl_name
+ * are not known. For e.g: static i/f case. This function lets to update it once
+ * it is known.
+ */
+s32
+dhd_update_iflist_info(dhd_pub_t *dhdp, struct net_device *ndev, int ifidx,
+ uint8 *mac, uint8 bssidx, const char *dngl_name, int if_state)
+{
+ dhd_info_t *dhdinfo = (dhd_info_t *)dhdp->info;
+ dhd_if_t *ifp, *ifp_new;
+ s32 cur_idx;
+ dhd_dev_priv_t * dev_priv;
+
+ DHD_TRACE(("[STATIC_IF] update ifinfo for state:%d ifidx:%d\n",
+ if_state, ifidx));
+
+ ASSERT(dhdinfo && (ifidx < (DHD_MAX_IFS + DHD_MAX_STATIC_IFS)));
+
+ if ((ifp = dhd_get_ifp_by_ndev(dhdp, ndev)) == NULL) {
+ return -ENODEV;
+ }
+ cur_idx = ifp->idx;
+
+ if (if_state == NDEV_STATE_OS_IF_CREATED) {
+ /* mark static if */
+ ifp->static_if = TRUE;
+ return BCME_OK;
+ }
+
+ ifp_new = dhdinfo->iflist[ifidx];
+ if (ifp_new && (ifp_new != ifp)) {
+ /* There should be only one entry for a given ifidx. */
+ DHD_ERROR(("ifp ptr already present for ifidx:%d\n", ifidx));
+ ASSERT(0);
+ dhdp->hang_reason = HANG_REASON_IFACE_ADD_FAILURE;
+ net_os_send_hang_message(ifp->net);
+ return -EINVAL;
+ }
+
+ /* For static if delete case, cleanup the if before ifidx update */
+ if ((if_state == NDEV_STATE_FW_IF_DELETED) ||
+ (if_state == NDEV_STATE_FW_IF_FAILED)) {
+ dhd_cleanup_if(ifp->net);
+ dev_priv = DHD_DEV_PRIV(ndev);
+ dev_priv->ifidx = ifidx;
+ }
+
+ /* update the iflist ifidx slot with cached info */
+ dhdinfo->iflist[ifidx] = ifp;
+ dhdinfo->iflist[cur_idx] = NULL;
+
+ /* update the values */
+ ifp->idx = ifidx;
+ ifp->bssidx = bssidx;
+
+ if (if_state == NDEV_STATE_FW_IF_CREATED) {
+ dhd_dev_priv_save(ndev, dhdinfo, ifp, ifidx);
+ /* initialize the dongle provided if name */
+ if (dngl_name) {
+ strlcpy(ifp->dngl_name, dngl_name, IFNAMSIZ);
+ } else if (ndev->name[0] != '\0') {
+ strlcpy(ifp->dngl_name, ndev->name, IFNAMSIZ);
+ }
+ if (mac != NULL) {
+ (void)memcpy_s(&ifp->mac_addr, ETHER_ADDR_LEN, mac, ETHER_ADDR_LEN);
+ }
+ }
+ DHD_INFO(("[STATIC_IF] ifp ptr updated for ifidx:%d curidx:%d if_state:%d\n",
+ ifidx, cur_idx, if_state));
+ return BCME_OK;
+}
+#endif /* WL_STATIC_IF */
/* unregister and free the existing net_device interface (if any) in iflist and
* allocate a new one. the slot is reused. this function does NOT register the
* new interface to linux kernel. dhd_register_if does the job
*/
struct net_device*
-dhd_allocate_if(dhd_pub_t *dhdpub, int ifidx, char *name,
- uint8 *mac, uint8 bssidx, bool need_rtnl_lock, char *dngl_name)
+dhd_allocate_if(dhd_pub_t *dhdpub, int ifidx, const char *name,
+ uint8 *mac, uint8 bssidx, bool need_rtnl_lock, const char *dngl_name)
{
dhd_info_t *dhdinfo = (dhd_info_t *)dhdpub->info;
dhd_if_t *ifp;
- ASSERT(dhdinfo && (ifidx < DHD_MAX_IFS));
+ ASSERT(dhdinfo && (ifidx < (DHD_MAX_IFS + DHD_MAX_STATIC_IFS)));
+
ifp = dhdinfo->iflist[ifidx];
if (ifp != NULL) {
if (ifp->net != NULL) {
- DHD_ERROR(("%s: free existing IF %s\n", __FUNCTION__, ifp->net->name));
+ DHD_ERROR(("%s: free existing IF %s ifidx:%d \n",
+ __FUNCTION__, ifp->net->name, ifidx));
+
+ if (ifidx == 0) {
+ /* For primary ifidx (0), there shouldn't be
+ * any netdev present already.
+ */
+ DHD_ERROR(("Primary ifidx populated already\n"));
+ ASSERT(0);
+ return NULL;
+ }
dhd_dev_priv_clear(ifp->net); /* clear net_device private */
@@ -6797,7 +7796,7 @@
ifp->bssidx = bssidx;
#ifdef DHD_MCAST_REGEN
ifp->mcast_regen_bss_enable = FALSE;
-#endif
+#endif // endif
/* set to TRUE rx_pkt_chainable at alloc time */
ifp->rx_pkt_chainable = TRUE;
@@ -6819,56 +7818,70 @@
ifp->net->name[IFNAMSIZ - 1] = '\0';
}
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 9))
+#define IFP_NET_DESTRUCTOR ifp->net->priv_destructor
+#else
+#define IFP_NET_DESTRUCTOR ifp->net->destructor
+#endif // endif
+
#ifdef WL_CFG80211
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0))
if (ifidx == 0) {
- ifp->net->priv_destructor = free_netdev;
+ IFP_NET_DESTRUCTOR = free_netdev;
} else {
- ifp->net->priv_destructor = dhd_netdev_free;
+ IFP_NET_DESTRUCTOR = dhd_netdev_free;
}
#else
- if (ifidx == 0)
- ifp->net->destructor = free_netdev;
- else
- ifp->net->destructor = dhd_netdev_free;
-#endif
-#else
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0))
- ifp->net->priv_destructor = free_netdev;
-#else
- ifp->net->destructor = free_netdev;
-#endif
+ IFP_NET_DESTRUCTOR = free_netdev;
#endif /* WL_CFG80211 */
strncpy(ifp->name, ifp->net->name, IFNAMSIZ);
ifp->name[IFNAMSIZ - 1] = '\0';
dhdinfo->iflist[ifidx] = ifp;
-/* initialize the dongle provided if name */
- if (dngl_name)
+ /* initialize the dongle provided if name */
+ if (dngl_name) {
strncpy(ifp->dngl_name, dngl_name, IFNAMSIZ);
- else
+ } else if (name) {
strncpy(ifp->dngl_name, name, IFNAMSIZ);
+ }
-#ifdef PCIE_FULL_DONGLE
/* Initialize STA info list */
INIT_LIST_HEAD(&ifp->sta_list);
DHD_IF_STA_LIST_LOCK_INIT(ifp);
-#endif /* PCIE_FULL_DONGLE */
#ifdef DHD_L2_FILTER
ifp->phnd_arp_table = init_l2_filter_arp_table(dhdpub->osh);
ifp->parp_allnode = TRUE;
#endif /* DHD_L2_FILTER */
-
DHD_CUMM_CTR_INIT(&ifp->cumm_ctr);
+
+#ifdef DHD_4WAYM4_FAIL_DISCONNECT
+ INIT_DELAYED_WORK(&ifp->m4state_work, dhd_m4_state_handler);
+#endif /* DHD_4WAYM4_FAIL_DISCONNECT */
+
+#ifdef DHD_POST_EAPOL_M1_AFTER_ROAM_EVT
+ ifp->recv_reassoc_evt = FALSE;
+ ifp->post_roam_evt = FALSE;
+#endif /* DHD_POST_EAPOL_M1_AFTER_ROAM_EVT */
+
+#ifdef DHDTCPSYNC_FLOOD_BLK
+ INIT_WORK(&ifp->blk_tsfl_work, dhd_blk_tsfl_handler);
+ dhd_reset_tcpsync_info_by_ifp(ifp);
+#endif /* DHDTCPSYNC_FLOOD_BLK */
return ifp->net;
fail:
-
if (ifp != NULL) {
if (ifp->net != NULL) {
+#if defined(DHD_LB_RXP) && defined(PCIE_FULL_DONGLE)
+ if (ifp->net == dhdinfo->rx_napi_netdev) {
+ napi_disable(&dhdinfo->rx_napi_struct);
+ netif_napi_del(&dhdinfo->rx_napi_struct);
+ skb_queue_purge(&dhdinfo->rx_napi_queue);
+ dhdinfo->rx_napi_netdev = NULL;
+ }
+#endif /* DHD_LB_RXP && PCIE_FULL_DONGLE */
dhd_dev_priv_clear(ifp->net);
free_netdev(ifp->net);
ifp->net = NULL;
@@ -6881,24 +7894,107 @@
return NULL;
}
+static void
+dhd_cleanup_ifp(dhd_pub_t *dhdp, dhd_if_t *ifp)
+{
+#ifdef PCIE_FULL_DONGLE
+ s32 ifidx = 0;
+ if_flow_lkup_t *if_flow_lkup = (if_flow_lkup_t *)dhdp->if_flow_lkup;
+#endif /* PCIE_FULL_DONGLE */
+
+ if (ifp != NULL) {
+ if ((ifp->idx < 0) || (ifp->idx >= DHD_MAX_IFS)) {
+ DHD_ERROR(("Wrong idx:%d \n", ifp->idx));
+ ASSERT(0);
+ return;
+ }
+#ifdef DHD_L2_FILTER
+ bcm_l2_filter_arp_table_update(dhdpub->osh, ifp->phnd_arp_table, TRUE,
+ NULL, FALSE, dhdpub->tickcnt);
+ deinit_l2_filter_arp_table(dhdpub->osh, ifp->phnd_arp_table);
+ ifp->phnd_arp_table = NULL;
+#endif /* DHD_L2_FILTER */
+
+ dhd_if_del_sta_list(ifp);
+#ifdef PCIE_FULL_DONGLE
+ /* Delete flowrings of virtual interface */
+ ifidx = ifp->idx;
+ if ((ifidx != 0) && (if_flow_lkup[ifidx].role != WLC_E_IF_ROLE_AP)) {
+ dhd_flow_rings_delete(dhdp, ifidx);
+ }
+#endif /* PCIE_FULL_DONGLE */
+ }
+}
+
+void
+dhd_cleanup_if(struct net_device *net)
+{
+ dhd_info_t *dhdinfo = DHD_DEV_INFO(net);
+ dhd_pub_t *dhdp = &dhdinfo->pub;
+ dhd_if_t *ifp;
+
+ if (!(ifp = dhd_get_ifp_by_ndev(dhdp, net)) ||
+ (ifp->idx >= DHD_MAX_IFS)) {
+ DHD_ERROR(("Wrong ifidx: %p, %d\n", ifp, ifp ? ifp->idx : -1));
+ ASSERT(0);
+ return;
+ }
+
+ dhd_cleanup_ifp(dhdp, ifp);
+}
+
/* unregister and free the the net_device interface associated with the indexed
* slot, also free the slot memory and set the slot pointer to NULL
*/
+#define DHD_TX_COMPLETION_TIMEOUT 5000
int
dhd_remove_if(dhd_pub_t *dhdpub, int ifidx, bool need_rtnl_lock)
{
dhd_info_t *dhdinfo = (dhd_info_t *)dhdpub->info;
dhd_if_t *ifp;
-#ifdef PCIE_FULL_DONGLE
- if_flow_lkup_t *if_flow_lkup = (if_flow_lkup_t *)dhdpub->if_flow_lkup;
-#endif /* PCIE_FULL_DONGLE */
+ unsigned long flags;
+ long timeout;
ifp = dhdinfo->iflist[ifidx];
if (ifp != NULL) {
+#ifdef DHD_4WAYM4_FAIL_DISCONNECT
+ cancel_delayed_work_sync(&ifp->m4state_work);
+#endif /* DHD_4WAYM4_FAIL_DISCONNECT */
+
+#ifdef DHDTCPSYNC_FLOOD_BLK
+ cancel_work_sync(&ifp->blk_tsfl_work);
+#endif /* DHDTCPSYNC_FLOOD_BLK */
+
+#ifdef WL_STATIC_IF
+ /* static IF will be handled in detach */
+ if (ifp->static_if) {
+ DHD_TRACE(("Skip del iface for static interface\n"));
+ return BCME_OK;
+ }
+#endif /* WL_STATIC_IF */
if (ifp->net != NULL) {
DHD_ERROR(("deleting interface '%s' idx %d\n", ifp->net->name, ifp->idx));
+ DHD_GENERAL_LOCK(dhdpub, flags);
+ ifp->del_in_progress = true;
+ DHD_GENERAL_UNLOCK(dhdpub, flags);
+
+ /* If TX is in progress, hold the if del */
+ if (DHD_IF_IS_TX_ACTIVE(ifp)) {
+ DHD_INFO(("TX in progress. Wait for it to be complete."));
+ timeout = wait_event_timeout(dhdpub->tx_completion_wait,
+ ((ifp->tx_paths_active & DHD_TX_CONTEXT_MASK) == 0),
+ msecs_to_jiffies(DHD_TX_COMPLETION_TIMEOUT));
+ if (!timeout) {
+ /* Tx completion timeout. Attempt proceeding ahead */
+ DHD_ERROR(("Tx completion timed out!\n"));
+ ASSERT(0);
+ }
+ } else {
+ DHD_TRACE(("No outstanding TX!\n"));
+ }
+ dhdinfo->iflist[ifidx] = NULL;
/* in unregister_netdev case, the interface gets freed by net->destructor
* (which is set to free_netdev)
*/
@@ -6907,8 +8003,6 @@
} else {
netif_tx_disable(ifp->net);
-
-
#if defined(SET_RPS_CPUS)
custom_rps_map_clear(ifp->net->_rx);
#endif /* SET_RPS_CPUS */
@@ -6916,377 +8010,261 @@
#if (defined(DHDTCPACK_SUPPRESS) && defined(BCMPCIE))
dhd_tcpack_suppress_set(dhdpub, TCPACK_SUP_OFF);
#endif /* DHDTCPACK_SUPPRESS && BCMPCIE */
-#endif
+#endif // endif
if (need_rtnl_lock)
unregister_netdev(ifp->net);
else
unregister_netdevice(ifp->net);
}
ifp->net = NULL;
+ DHD_GENERAL_LOCK(dhdpub, flags);
+ ifp->del_in_progress = false;
+ DHD_GENERAL_UNLOCK(dhdpub, flags);
}
-#ifdef DHD_WMF
- dhd_wmf_cleanup(dhdpub, ifidx);
-#endif /* DHD_WMF */
-#ifdef DHD_L2_FILTER
- bcm_l2_filter_arp_table_update(dhdpub->osh, ifp->phnd_arp_table, TRUE,
- NULL, FALSE, dhdpub->tickcnt);
- deinit_l2_filter_arp_table(dhdpub->osh, ifp->phnd_arp_table);
- ifp->phnd_arp_table = NULL;
-#endif /* DHD_L2_FILTER */
-
-
- dhd_if_del_sta_list(ifp);
-#ifdef PCIE_FULL_DONGLE
- /* Delete flowrings of WDS interface */
- if (if_flow_lkup[ifidx].role == WLC_E_IF_ROLE_WDS) {
- dhd_flow_rings_delete(dhdpub, ifidx);
- }
-#endif /* PCIE_FULL_DONGLE */
+ dhd_cleanup_ifp(dhdpub, ifp);
DHD_CUMM_CTR_INIT(&ifp->cumm_ctr);
- dhdinfo->iflist[ifidx] = NULL;
MFREE(dhdinfo->pub.osh, ifp, sizeof(*ifp));
-
+ ifp = NULL;
}
return BCME_OK;
}
-
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31))
static struct net_device_ops dhd_ops_pri = {
- .ndo_open = dhd_open,
- .ndo_stop = dhd_stop,
+ .ndo_open = dhd_pri_open,
+ .ndo_stop = dhd_pri_stop,
.ndo_get_stats = dhd_get_stats,
+#ifdef DHD_PCIE_NATIVE_RUNTIMEPM
+ .ndo_do_ioctl = dhd_ioctl_entry_wrapper,
+ .ndo_start_xmit = dhd_start_xmit_wrapper,
+#else
.ndo_do_ioctl = dhd_ioctl_entry,
.ndo_start_xmit = dhd_start_xmit,
+#endif /* DHD_PCIE_NATIVE_RUNTIMEPM */
.ndo_set_mac_address = dhd_set_mac_address,
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
.ndo_set_rx_mode = dhd_set_multicast_list,
#else
.ndo_set_multicast_list = dhd_set_multicast_list,
-#endif
+#endif // endif
};
static struct net_device_ops dhd_ops_virt = {
+#if defined(WL_CFG80211) && defined(WL_STATIC_IF)
+ .ndo_open = dhd_static_if_open,
+ .ndo_stop = dhd_static_if_stop,
+#endif // endif
.ndo_get_stats = dhd_get_stats,
+#ifdef DHD_PCIE_NATIVE_RUNTIMEPM
+ .ndo_do_ioctl = dhd_ioctl_entry_wrapper,
+ .ndo_start_xmit = dhd_start_xmit_wrapper,
+#else
.ndo_do_ioctl = dhd_ioctl_entry,
.ndo_start_xmit = dhd_start_xmit,
+#endif /* DHD_PCIE_NATIVE_RUNTIMEPM */
.ndo_set_mac_address = dhd_set_mac_address,
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
.ndo_set_rx_mode = dhd_set_multicast_list,
#else
.ndo_set_multicast_list = dhd_set_multicast_list,
-#endif
+#endif // endif
};
-#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31)) */
-#ifdef DEBUGGER
-extern void debugger_init(void *bus_handle);
-#endif
+int
+dhd_os_write_file_posn(void *fp, unsigned long *posn, void *buf,
+ unsigned long buflen)
+{
+ loff_t wr_posn = *posn;
+ if (!fp || !buf || buflen == 0)
+ return -1;
+
+ if (vfs_write((struct file *)fp, buf, buflen, &wr_posn) < 0)
+ return -1;
+
+ *posn = wr_posn;
+ return 0;
+}
#ifdef SHOW_LOGTRACE
-static char *logstrs_path = "/root/logstrs.bin";
-static char *st_str_file_path = "/root/rtecdc.bin";
-static char *map_file_path = "/root/rtecdc.map";
-static char *rom_st_str_file_path = "/root/roml.bin";
-static char *rom_map_file_path = "/root/roml.map";
+int
+dhd_os_read_file(void *file, char *buf, uint32 size)
+{
+ struct file *filep = (struct file *)file;
-#define BYTES_AHEAD_NUM 11 /* address in map file is before these many bytes */
-#define READ_NUM_BYTES 1000 /* read map file each time this No. of bytes */
-#define GO_BACK_FILE_POS_NUM_BYTES 100 /* set file pos back to cur pos */
-static char *ramstart_str = "text_start"; /* string in mapfile has addr ramstart */
-static char *rodata_start_str = "rodata_start"; /* string in mapfile has addr rodata start */
-static char *rodata_end_str = "rodata_end"; /* string in mapfile has addr rodata end */
-static char *ram_file_str = "rtecdc";
-static char *rom_file_str = "roml";
-#define RAMSTART_BIT 0x01
-#define RDSTART_BIT 0x02
-#define RDEND_BIT 0x04
-#define ALL_MAP_VAL (RAMSTART_BIT | RDSTART_BIT | RDEND_BIT)
+ if (!file || !buf)
+ return -1;
-module_param(logstrs_path, charp, S_IRUGO);
-module_param(st_str_file_path, charp, S_IRUGO);
-module_param(map_file_path, charp, S_IRUGO);
-module_param(rom_st_str_file_path, charp, S_IRUGO);
-module_param(rom_map_file_path, charp, S_IRUGO);
+ return vfs_read(filep, buf, size, &filep->f_pos);
+}
-static void
-dhd_init_logstrs_array(dhd_event_log_t *temp)
+int
+dhd_os_seek_file(void *file, int64 offset)
+{
+ struct file *filep = (struct file *)file;
+ if (!file)
+ return -1;
+
+ /* offset can be -ve */
+ filep->f_pos = filep->f_pos + offset;
+
+ return 0;
+}
+
+static int
+dhd_init_logstrs_array(osl_t *osh, dhd_event_log_t *temp)
{
struct file *filep = NULL;
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 10, 0))
struct kstat stat;
+ int error = 0;
+#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(5, 10, 0) */
+#if defined(KERNEL_DS) && defined(USER_DS)
mm_segment_t fs;
+#endif /* KERNEL_DS && USER_DS */
char *raw_fmts = NULL;
int logstrs_size = 0;
- logstr_header_t *hdr = NULL;
- uint32 *lognums = NULL;
- char *logstrs = NULL;
- int ram_index = 0;
- char **fmts;
- int num_fmts = 0;
- uint32 i = 0;
- int error = 0;
-
+#if defined(KERNEL_DS) && defined(USER_DS)
fs = get_fs();
set_fs(KERNEL_DS);
+#endif /* KERNEL_DS && USER_DS */
filep = filp_open(logstrs_path, O_RDONLY, 0);
if (IS_ERR(filep)) {
- DHD_ERROR(("%s: Failed to open the file %s \n", __FUNCTION__, logstrs_path));
+ DHD_ERROR_NO_HW4(("%s: Failed to open the file %s \n", __FUNCTION__, logstrs_path));
goto fail;
}
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 10, 0))
error = vfs_stat(logstrs_path, &stat);
if (error) {
- DHD_ERROR(("%s: Failed to stat file %s \n", __FUNCTION__, logstrs_path));
+ DHD_ERROR_NO_HW4(("%s: Failed to stat file %s \n", __FUNCTION__, logstrs_path));
goto fail;
}
logstrs_size = (int) stat.size;
+#else
+ logstrs_size = i_size_read(file_inode(filep));
+#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(5, 10, 0) */
+ if (logstrs_size == 0) {
+ DHD_ERROR(("%s: return as logstrs_size is 0\n", __FUNCTION__));
+ goto fail1;
+ }
- raw_fmts = kmalloc(logstrs_size, GFP_KERNEL);
+ raw_fmts = MALLOC(osh, logstrs_size);
if (raw_fmts == NULL) {
DHD_ERROR(("%s: Failed to allocate memory \n", __FUNCTION__));
goto fail;
}
+
if (vfs_read(filep, raw_fmts, logstrs_size, &filep->f_pos) != logstrs_size) {
- DHD_ERROR(("%s: Failed to read file %s", __FUNCTION__, logstrs_path));
+ DHD_ERROR_NO_HW4(("%s: Failed to read file %s\n", __FUNCTION__, logstrs_path));
goto fail;
}
- /* Remember header from the logstrs.bin file */
- hdr = (logstr_header_t *) (raw_fmts + logstrs_size -
- sizeof(logstr_header_t));
-
- if (hdr->log_magic == LOGSTRS_MAGIC) {
- /*
- * logstrs.bin start with header.
- */
- num_fmts = hdr->rom_logstrs_offset / sizeof(uint32);
- ram_index = (hdr->ram_lognums_offset -
- hdr->rom_lognums_offset) / sizeof(uint32);
- lognums = (uint32 *) &raw_fmts[hdr->rom_lognums_offset];
- logstrs = (char *) &raw_fmts[hdr->rom_logstrs_offset];
- } else {
- /*
- * Legacy logstrs.bin format without header.
- */
- num_fmts = *((uint32 *) (raw_fmts)) / sizeof(uint32);
- if (num_fmts == 0) {
- /* Legacy ROM/RAM logstrs.bin format:
- * - ROM 'lognums' section
- * - RAM 'lognums' section
- * - ROM 'logstrs' section.
- * - RAM 'logstrs' section.
- *
- * 'lognums' is an array of indexes for the strings in the
- * 'logstrs' section. The first uint32 is 0 (index of first
- * string in ROM 'logstrs' section).
- *
- * The 4324b5 is the only ROM that uses this legacy format. Use the
- * fixed number of ROM fmtnums to find the start of the RAM
- * 'lognums' section. Use the fixed first ROM string ("Con\n") to
- * find the ROM 'logstrs' section.
- */
- #define NUM_4324B5_ROM_FMTS 186
- #define FIRST_4324B5_ROM_LOGSTR "Con\n"
- ram_index = NUM_4324B5_ROM_FMTS;
- lognums = (uint32 *) raw_fmts;
- num_fmts = ram_index;
- logstrs = (char *) &raw_fmts[num_fmts << 2];
- while (strncmp(FIRST_4324B5_ROM_LOGSTR, logstrs, 4)) {
- num_fmts++;
- logstrs = (char *) &raw_fmts[num_fmts << 2];
- }
- } else {
- /* Legacy RAM-only logstrs.bin format:
- * - RAM 'lognums' section
- * - RAM 'logstrs' section.
- *
- * 'lognums' is an array of indexes for the strings in the
- * 'logstrs' section. The first uint32 is an index to the
- * start of 'logstrs'. Therefore, if this index is divided
- * by 'sizeof(uint32)' it provides the number of logstr
- * entries.
- */
- ram_index = 0;
- lognums = (uint32 *) raw_fmts;
- logstrs = (char *) &raw_fmts[num_fmts << 2];
- }
- }
- fmts = kmalloc(num_fmts * sizeof(char *), GFP_KERNEL);
- if (fmts == NULL) {
- DHD_ERROR(("Failed to allocate fmts memory"));
- goto fail;
+ if (dhd_parse_logstrs_file(osh, raw_fmts, logstrs_size, temp)
+ == BCME_OK) {
+ filp_close(filep, NULL);
+#if defined(KERNEL_DS) && defined(USER_DS)
+ set_fs(fs);
+#endif /* KERNEL_DS && USER_DS */
+ return BCME_OK;
}
- for (i = 0; i < num_fmts; i++) {
- /* ROM lognums index into logstrs using 'rom_logstrs_offset' as a base
- * (they are 0-indexed relative to 'rom_logstrs_offset').
- *
- * RAM lognums are already indexed to point to the correct RAM logstrs (they
- * are 0-indexed relative to the start of the logstrs.bin file).
- */
- if (i == ram_index) {
- logstrs = raw_fmts;
- }
- fmts[i] = &logstrs[lognums[i]];
- }
- temp->fmts = fmts;
- temp->raw_fmts = raw_fmts;
- temp->num_fmts = num_fmts;
- filp_close(filep, NULL);
- set_fs(fs);
- return;
fail:
if (raw_fmts) {
- kfree(raw_fmts);
+ MFREE(osh, raw_fmts, logstrs_size);
raw_fmts = NULL;
}
+
+fail1:
if (!IS_ERR(filep))
filp_close(filep, NULL);
+
+#if defined(KERNEL_DS) && defined(USER_DS)
set_fs(fs);
+#endif /* KERNEL_DS && USER_DS */
+
temp->fmts = NULL;
- return;
+ return BCME_ERROR;
}
static int
-dhd_read_map(char *fname, uint32 *ramstart, uint32 *rodata_start,
- uint32 *rodata_end)
+dhd_read_map(osl_t *osh, char *fname, uint32 *ramstart, uint32 *rodata_start,
+ uint32 *rodata_end)
{
struct file *filep = NULL;
+#if defined(KERNEL_DS) && defined(USER_DS)
mm_segment_t fs;
- char *raw_fmts = NULL;
- uint32 read_size = READ_NUM_BYTES;
- int error = 0;
- char * cptr = NULL;
- char c;
- uint8 count = 0;
+#endif /* KERNEL_DS && USER_DS */
- *ramstart = 0;
- *rodata_start = 0;
- *rodata_end = 0;
+ int err = BCME_ERROR;
if (fname == NULL) {
DHD_ERROR(("%s: ERROR fname is NULL \n", __FUNCTION__));
return BCME_ERROR;
}
+#if defined(KERNEL_DS) && defined(USER_DS)
fs = get_fs();
set_fs(KERNEL_DS);
+#endif /* KERNEL_DS && USER_DS */
filep = filp_open(fname, O_RDONLY, 0);
if (IS_ERR(filep)) {
- DHD_ERROR(("%s: Failed to open %s \n", __FUNCTION__, fname));
+ DHD_ERROR_NO_HW4(("%s: Failed to open %s \n", __FUNCTION__, fname));
goto fail;
}
- /* Allocate 1 byte more than read_size to terminate it with NULL */
- raw_fmts = kmalloc(read_size + 1, GFP_KERNEL);
- if (raw_fmts == NULL) {
- DHD_ERROR(("%s: Failed to allocate raw_fmts memory \n", __FUNCTION__));
+ if ((err = dhd_parse_map_file(osh, filep, ramstart,
+ rodata_start, rodata_end)) < 0)
goto fail;
- }
-
- /* read ram start, rodata_start and rodata_end values from map file */
-
- while (count != ALL_MAP_VAL)
- {
- error = vfs_read(filep, raw_fmts, read_size, (&filep->f_pos));
- if (error < 0) {
- DHD_ERROR(("%s: read failed %s err:%d \n", __FUNCTION__,
- map_file_path, error));
- goto fail;
- }
-
- if (error < read_size) {
- /*
- * since we reset file pos back to earlier pos by
- * GO_BACK_FILE_POS_NUM_BYTES bytes we won't reach EOF.
- * So if ret value is less than read_size, reached EOF don't read further
- */
- break;
- }
- /* End raw_fmts with NULL as strstr expects NULL terminated strings */
- raw_fmts[read_size] = '\0';
-
- /* Get ramstart address */
- if ((cptr = strstr(raw_fmts, ramstart_str))) {
- cptr = cptr - BYTES_AHEAD_NUM;
- sscanf(cptr, "%x %c text_start", ramstart, &c);
- count |= RAMSTART_BIT;
- }
-
- /* Get ram rodata start address */
- if ((cptr = strstr(raw_fmts, rodata_start_str))) {
- cptr = cptr - BYTES_AHEAD_NUM;
- sscanf(cptr, "%x %c rodata_start", rodata_start, &c);
- count |= RDSTART_BIT;
- }
-
- /* Get ram rodata end address */
- if ((cptr = strstr(raw_fmts, rodata_end_str))) {
- cptr = cptr - BYTES_AHEAD_NUM;
- sscanf(cptr, "%x %c rodata_end", rodata_end, &c);
- count |= RDEND_BIT;
- }
- memset(raw_fmts, 0, read_size);
- /*
- * go back to predefined NUM of bytes so that we won't miss
- * the string and addr even if it comes as splited in next read.
- */
- filep->f_pos = filep->f_pos - GO_BACK_FILE_POS_NUM_BYTES;
- }
-
- DHD_ERROR(("---ramstart: 0x%x, rodata_start: 0x%x, rodata_end:0x%x\n",
- *ramstart, *rodata_start, *rodata_end));
-
- DHD_ERROR(("readmap over \n"));
fail:
- if (raw_fmts) {
- kfree(raw_fmts);
- raw_fmts = NULL;
- }
if (!IS_ERR(filep))
filp_close(filep, NULL);
+#if defined(KERNEL_DS) && defined(USER_DS)
set_fs(fs);
- if (count == ALL_MAP_VAL) {
- return BCME_OK;
- }
- DHD_ERROR(("readmap error 0X%x \n", count));
- return BCME_ERROR;
+#endif /* KERNEL_DS && USER_DS */
+
+ return err;
}
-static void
-dhd_init_static_strs_array(dhd_event_log_t *temp, char *str_file, char *map_file)
+static int
+dhd_init_static_strs_array(osl_t *osh, dhd_event_log_t *temp, char *str_file, char *map_file)
{
struct file *filep = NULL;
+#if defined(KERNEL_DS) && defined(USER_DS)
mm_segment_t fs;
+#endif /* KERNEL_DS && USER_DS */
char *raw_fmts = NULL;
uint32 logstrs_size = 0;
-
int error = 0;
uint32 ramstart = 0;
uint32 rodata_start = 0;
uint32 rodata_end = 0;
uint32 logfilebase = 0;
- error = dhd_read_map(map_file, &ramstart, &rodata_start, &rodata_end);
- if (error == BCME_ERROR) {
+ error = dhd_read_map(osh, map_file, &ramstart, &rodata_start, &rodata_end);
+ if (error != BCME_OK) {
DHD_ERROR(("readmap Error!! \n"));
/* don't do event log parsing in actual case */
- temp->raw_sstr = NULL;
- return;
+ if (strstr(str_file, ram_file_str) != NULL) {
+ temp->raw_sstr = NULL;
+ } else if (strstr(str_file, rom_file_str) != NULL) {
+ temp->rom_raw_sstr = NULL;
+ }
+ return error;
}
DHD_ERROR(("ramstart: 0x%x, rodata_start: 0x%x, rodata_end:0x%x\n",
ramstart, rodata_start, rodata_end));
+#if defined(KERNEL_DS) && defined(USER_DS)
fs = get_fs();
set_fs(KERNEL_DS);
+#endif /* KERNEL_DS && USER_DS */
filep = filp_open(str_file, O_RDONLY, 0);
if (IS_ERR(filep)) {
@@ -7294,21 +8272,29 @@
goto fail;
}
- /* Full file size is huge. Just read required part */
- logstrs_size = rodata_end - rodata_start;
+ if (TRUE) {
+ /* Full file size is huge. Just read required part */
+ logstrs_size = rodata_end - rodata_start;
+ logfilebase = rodata_start - ramstart;
+ }
- raw_fmts = kmalloc(logstrs_size, GFP_KERNEL);
+ if (logstrs_size == 0) {
+ DHD_ERROR(("%s: return as logstrs_size is 0\n", __FUNCTION__));
+ goto fail1;
+ }
+
+ raw_fmts = MALLOC(osh, logstrs_size);
if (raw_fmts == NULL) {
DHD_ERROR(("%s: Failed to allocate raw_fmts memory \n", __FUNCTION__));
goto fail;
}
- logfilebase = rodata_start - ramstart;
-
- error = generic_file_llseek(filep, logfilebase, SEEK_SET);
- if (error < 0) {
- DHD_ERROR(("%s: %s llseek failed %d \n", __FUNCTION__, str_file, error));
- goto fail;
+ if (TRUE) {
+ error = generic_file_llseek(filep, logfilebase, SEEK_SET);
+ if (error < 0) {
+ DHD_ERROR(("%s: %s llseek failed %d \n", __FUNCTION__, str_file, error));
+ goto fail;
+ }
}
error = vfs_read(filep, raw_fmts, logstrs_size, (&filep->f_pos));
@@ -7319,63 +8305,103 @@
if (strstr(str_file, ram_file_str) != NULL) {
temp->raw_sstr = raw_fmts;
- temp->ramstart = ramstart;
+ temp->raw_sstr_size = logstrs_size;
temp->rodata_start = rodata_start;
temp->rodata_end = rodata_end;
} else if (strstr(str_file, rom_file_str) != NULL) {
temp->rom_raw_sstr = raw_fmts;
- temp->rom_ramstart = ramstart;
+ temp->rom_raw_sstr_size = logstrs_size;
temp->rom_rodata_start = rodata_start;
temp->rom_rodata_end = rodata_end;
}
filp_close(filep, NULL);
+#if defined(KERNEL_DS) && defined(USER_DS)
set_fs(fs);
+#endif /* KERNEL_DS && USER_DS */
- return;
+ return BCME_OK;
+
fail:
if (raw_fmts) {
- kfree(raw_fmts);
+ MFREE(osh, raw_fmts, logstrs_size);
raw_fmts = NULL;
}
+
+fail1:
if (!IS_ERR(filep))
filp_close(filep, NULL);
+
+#if defined(KERNEL_DS) && defined(USER_DS)
set_fs(fs);
+#endif /* KERNEL_DS && USER_DS */
+
if (strstr(str_file, ram_file_str) != NULL) {
temp->raw_sstr = NULL;
} else if (strstr(str_file, rom_file_str) != NULL) {
temp->rom_raw_sstr = NULL;
}
- return;
-}
+
+ return error;
+} /* dhd_init_static_strs_array */
#endif /* SHOW_LOGTRACE */
-#ifdef DHD_LB
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 10, 0))
-static enum cpuhp_state dhd_cpuhp_online_state;
+#ifdef DHD_ERPOM
+uint enable_erpom = 0;
+module_param(enable_erpom, int, 0);
-static int
-dhd_cpuhp_init(osl_t *osh, dhd_info_t *dhd)
+int
+dhd_wlan_power_off_handler(void *handler, unsigned char reason)
{
- int ret = 0;
+ dhd_pub_t *dhdp = (dhd_pub_t *)handler;
+ bool dongle_isolation = dhdp->dongle_isolation;
- ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "net/wireless/dhd:online",
- dhd_cpuhp_online, dhd_cpuhp_dead);
- if (ret < 0) {
- DHD_ERROR(("%s(): cpuhp_setup_state_multi() online failed, ret=%d\n",
- __FUNCTION__, ret));
- return ret;
+ DHD_ERROR(("%s: WLAN DHD cleanup reason: %d\n", __FUNCTION__, reason));
+
+ if ((reason == BY_BT_DUE_TO_BT) || (reason == BY_BT_DUE_TO_WLAN)) {
+#if defined(DHD_FW_COREDUMP)
+ /* save core dump to a file */
+ if (dhdp->memdump_enabled) {
+#ifdef DHD_SSSR_DUMP
+ dhdp->collect_sssr = TRUE;
+#endif /* DHD_SSSR_DUMP */
+ dhdp->memdump_type = DUMP_TYPE_DUE_TO_BT;
+ dhd_bus_mem_dump(dhdp);
+ }
+#endif /* DHD_FW_COREDUMP */
}
- dhd_cpuhp_online_state = ret;
- cpuhp_state_add_instance_nocalls(dhd_cpuhp_online_state,
- &dhd->node_online);
- return ret;
+
+ /* pause data on all the interfaces */
+ dhd_bus_stop_queue(dhdp->bus);
+
+ /* Devreset function will perform FLR again, to avoid it set dongle_isolation */
+ dhdp->dongle_isolation = TRUE;
+ dhd_bus_devreset(dhdp, 1); /* DHD structure cleanup */
+ dhdp->dongle_isolation = dongle_isolation; /* Restore the old value */
+ return 0;
}
-#endif
-#endif
+int
+dhd_wlan_power_on_handler(void *handler, unsigned char reason)
+{
+ dhd_pub_t *dhdp = (dhd_pub_t *)handler;
+ bool dongle_isolation = dhdp->dongle_isolation;
+ DHD_ERROR(("%s: WLAN DHD re-init reason: %d\n", __FUNCTION__, reason));
+ /* Devreset function will perform FLR again, to avoid it set dongle_isolation */
+ dhdp->dongle_isolation = TRUE;
+ dhd_bus_devreset(dhdp, 0); /* DHD structure re-init */
+ dhdp->dongle_isolation = dongle_isolation; /* Restore the old value */
+ /* resume data on all the interfaces */
+ dhd_bus_start_queue(dhdp->bus);
+ return 0;
+
+}
+
+#endif /* DHD_ERPOM */
+
+/** Called once for each hardware (dongle) instance that this DHD manages */
dhd_pub_t *
dhd_attach(osl_t *osh, struct dhd_bus *bus, uint bus_hdrlen)
{
@@ -7385,18 +8411,26 @@
uint32 bus_type = -1;
uint32 bus_num = -1;
uint32 slot_num = -1;
+#ifdef SHOW_LOGTRACE
+ int ret;
+#endif /* SHOW_LOGTRACE */
+#ifdef DHD_ERPOM
+ pom_func_handler_t *pom_handler;
+#endif /* DHD_ERPOM */
wifi_adapter_info_t *adapter = NULL;
dhd_attach_states_t dhd_state = DHD_ATTACH_STATE_INIT;
DHD_TRACE(("%s: Enter\n", __FUNCTION__));
-#ifdef STBLINUX
- DHD_ERROR(("%s\n", driver_target));
-#endif /* STBLINUX */
+#ifdef PCIE_FULL_DONGLE
+ ASSERT(sizeof(dhd_pkttag_fd_t) <= OSL_PKTTAG_SZ);
+ ASSERT(sizeof(dhd_pkttag_fr_t) <= OSL_PKTTAG_SZ);
+#endif /* PCIE_FULL_DONGLE */
+
/* will implement get_ids for DBUS later */
-#if !defined(BCMDBUS) && defined(BCMSDIO)
+#if defined(BCMSDIO)
dhd_bus_get_ids(bus, &bus_type, &bus_num, &slot_num);
-#endif /* !defined(BCMDBUS) && defined(BCMSDIO) */
+#endif // endif
adapter = dhd_wifi_platform_get_adapter(bus_type, bus_num, slot_num);
/* Allocate primary dhd_info */
@@ -7405,16 +8439,39 @@
dhd = MALLOC(osh, sizeof(dhd_info_t));
if (dhd == NULL) {
DHD_ERROR(("%s: OOM - alloc dhd_info\n", __FUNCTION__));
- goto fail;
+ goto dhd_null_flag;
}
}
memset(dhd, 0, sizeof(dhd_info_t));
dhd_state |= DHD_ATTACH_STATE_DHD_ALLOC;
+#ifdef SHOW_LOGTRACE
+ /* Create ring proc entries */
+ dhd_dbg_ring_proc_create(&dhd->pub);
+
+ if (dhd_init_logtrace_process(dhd) != BCME_OK) {
+ goto fail;
+ }
+#endif /* SHOW_LOGTRACE */
+
dhd->unit = dhd_found + instance_base; /* do not increment dhd_found, yet */
dhd->pub.osh = osh;
+#ifdef DUMP_IOCTL_IOV_LIST
+ dll_init(&(dhd->pub.dump_iovlist_head));
+#endif /* DUMP_IOCTL_IOV_LIST */
+ dhd->pub.dhd_console_ms = dhd_console_ms; /* assigns default value */
dhd->adapter = adapter;
+#ifdef BT_OVER_SDIO
+ dhd->pub.is_bt_recovery_required = FALSE;
+ mutex_init(&dhd->bus_user_lock);
+#endif /* BT_OVER_SDIO */
+
+ g_dhd_pub = &dhd->pub;
+
+#ifdef DHD_DEBUG
+ dll_init(&(dhd->pub.mw_list_head));
+#endif /* DHD_DEBUG */
#ifdef GET_CUSTOM_MAC_ENABLE
wifi_platform_get_mac_addr(dhd->adapter, dhd->pub.mac.octet);
@@ -7428,14 +8485,11 @@
dhd->pub.dhd_cspec.country_abbrev, &dhd->pub.dhd_cspec,
dhd->pub.dhd_cflags);
#endif /* CUSTOM_COUNTRY_CODE */
-#ifndef BCMDBUS
dhd->thr_dpc_ctl.thr_pid = DHD_PID_KT_TL_INVALID;
dhd->thr_wdt_ctl.thr_pid = DHD_PID_KT_INVALID;
-
#ifdef DHD_WET
dhd->pub.wet_info = dhd_get_wet_info(&dhd->pub);
-#endif
-
+#endif /* DHD_WET */
/* Initialize thread based operation and lock */
sema_init(&dhd->sdsem, 1);
@@ -7444,15 +8498,15 @@
* solution
*/
dhd_update_fw_nv_path(dhd);
-#endif /* BCMDBUS */
+ dhd->pub.pcie_txs_metadata_enable = pcie_txs_metadata_enable;
/* Link to info module */
dhd->pub.info = dhd;
-
/* Link to bus module */
dhd->pub.bus = bus;
dhd->pub.hdrlen = bus_hdrlen;
+ dhd->pub.txoff = FALSE;
/* Set network interface name if it was provided as module parameter */
if (iface_name[0]) {
@@ -7463,7 +8517,7 @@
len = strlen(if_name);
ch = if_name[len - 1];
if ((ch > '9' || ch < '0') && (len < IFNAMSIZ - 2))
- strcat(if_name, "%d");
+ strncat(if_name, "%d", 2);
}
/* Passing NULL to dngl_name to ensure host gets if_name in dngl_name member */
@@ -7471,24 +8525,25 @@
if (net == NULL) {
goto fail;
}
-
+ mutex_init(&dhd->pub.ndev_op_sync);
dhd_state |= DHD_ATTACH_STATE_ADD_IF;
#ifdef DHD_L2_FILTER
/* initialize the l2_filter_cnt */
dhd->pub.l2_filter_cnt = 0;
-#endif
-#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 31))
- net->open = NULL;
-#else
+#endif // endif
net->netdev_ops = NULL;
-#endif
+ mutex_init(&dhd->dhd_iovar_mutex);
sema_init(&dhd->proto_sem, 1);
#ifdef DHD_ULP
if (!(dhd_ulp_init(osh, &dhd->pub)))
goto fail;
#endif /* DHD_ULP */
+
+#if defined(DHD_HANG_SEND_UP_TEST)
+ dhd->pub.req_hang_type = 0;
+#endif /* DHD_HANG_SEND_UP_TEST */
#ifdef PROP_TXSTATUS
spin_lock_init(&dhd->wlfc_spinlock);
@@ -7514,13 +8569,17 @@
init_waitqueue_head(&dhd->d3ack_wait);
init_waitqueue_head(&dhd->ctrl_wait);
init_waitqueue_head(&dhd->dhd_bus_busy_state_wait);
+ init_waitqueue_head(&dhd->dmaxfer_wait);
+ init_waitqueue_head(&dhd->pub.tx_completion_wait);
dhd->pub.dhd_bus_busy_state = 0;
-
/* Initialize the spinlocks */
spin_lock_init(&dhd->sdlock);
spin_lock_init(&dhd->txqlock);
spin_lock_init(&dhd->dhd_lock);
spin_lock_init(&dhd->rxf_lock);
+#ifdef WLTDLS
+ spin_lock_init(&dhd->pub.tdls_lock);
+#endif /* WLTDLS */
#if defined(RXFRAME_THREAD)
dhd->rxthread_enabled = TRUE;
#endif /* defined(RXFRAME_THREAD) */
@@ -7531,17 +8590,21 @@
/* Initialize Wakelock stuff */
spin_lock_init(&dhd->wakelock_spinlock);
- dhd->wakelock_counter = 0;
- dhd->wakelock_wd_counter = 0;
-#ifdef CONFIG_HAS_WAKELOCK
- wake_lock_init(&dhd->wl_wifi, WAKE_LOCK_SUSPEND, "wlan_wake");
- wake_lock_init(&dhd->wl_wdwake, WAKE_LOCK_SUSPEND, "wlan_wd_wake");
+ spin_lock_init(&dhd->wakelock_evt_spinlock);
DHD_OS_WAKE_LOCK_INIT(dhd);
-#endif
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25))
+ dhd->wakelock_counter = 0;
+ /* wakelocks prevent a system from going into a low power state */
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
+ wake_lock_init(&dhd->wl_wdwake, WAKE_LOCK_SUSPEND, "wlan_wd_wake");
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
+
+#if defined(OEM_ANDROID)
mutex_init(&dhd->dhd_net_if_mutex);
mutex_init(&dhd->dhd_suspend_mutex);
-#endif
+#if defined(PKT_FILTER_SUPPORT) && defined(APF)
+ mutex_init(&dhd->dhd_apf_mutex);
+#endif /* PKT_FILTER_SUPPORT && APF */
+#endif /* defined(OEM_ANDROID) */
dhd_state |= DHD_ATTACH_STATE_WAKELOCKS_INIT;
/* Attach and link in the protocol */
@@ -7559,9 +8622,12 @@
goto fail;
}
+#ifdef DHD_MONITOR_INTERFACE
dhd_monitor_init(&dhd->pub);
+#endif /* DHD_MONITOR_INTERFACE */
dhd_state |= DHD_ATTACH_STATE_CFG80211;
-#endif
+#endif /* WL_CFG80211 */
+
#if defined(WL_WIRELESS_EXT)
/* Attach and link in the iw */
if (!(dhd_state & DHD_ATTACH_STATE_CFG80211)) {
@@ -7574,51 +8640,116 @@
#endif /* defined(WL_WIRELESS_EXT) */
#ifdef SHOW_LOGTRACE
- dhd_init_logstrs_array(&dhd->event_data);
- dhd_init_static_strs_array(&dhd->event_data, st_str_file_path, map_file_path);
- dhd_init_static_strs_array(&dhd->event_data, rom_st_str_file_path, rom_map_file_path);
+ ret = dhd_init_logstrs_array(osh, &dhd->event_data);
+ if (ret == BCME_OK) {
+ dhd_init_static_strs_array(osh, &dhd->event_data, st_str_file_path, map_file_path);
+ dhd_init_static_strs_array(osh, &dhd->event_data, rom_st_str_file_path,
+ rom_map_file_path);
+ dhd_state |= DHD_ATTACH_LOGTRACE_INIT;
+ }
+#endif /* SHOW_LOGTRACE */
+#ifdef DEBUGABILITY
/* attach debug if support */
if (dhd_os_dbg_attach(&dhd->pub)) {
DHD_ERROR(("%s debug module attach failed\n", __FUNCTION__));
goto fail;
}
+#if defined(SHOW_LOGTRACE) && defined(DBG_RING_LOG_INIT_DEFAULT)
+ /* enable verbose ring to support dump_trace_buf */
+ dhd_os_start_logging(&dhd->pub, FW_VERBOSE_RING_NAME, 3, 0, 0, 0);
#endif /* SHOW_LOGTRACE */
+#ifdef DBG_PKT_MON
+ dhd->pub.dbg->pkt_mon_lock = dhd_os_spin_lock_init(dhd->pub.osh);
+#ifdef DBG_PKT_MON_INIT_DEFAULT
+ dhd_os_dbg_attach_pkt_monitor(&dhd->pub);
+#endif /* DBG_PKT_MON_INIT_DEFAULT */
+#endif /* DBG_PKT_MON */
+#endif /* DEBUGABILITY */
+
+#ifdef DHD_STATUS_LOGGING
+ dhd->pub.statlog = dhd_attach_statlog(&dhd->pub, MAX_STATLOG_ITEM,
+ MAX_STATLOG_REQ_ITEM, STATLOG_LOGBUF_LEN);
+ if (dhd->pub.statlog == NULL) {
+ DHD_ERROR(("%s: alloc statlog failed\n", __FUNCTION__));
+ }
+#endif /* DHD_STATUS_LOGGING */
+
+#ifdef DHD_LOG_DUMP
+ dhd_log_dump_init(&dhd->pub);
+#endif /* DHD_LOG_DUMP */
+#ifdef DHD_PKTDUMP_ROAM
+ dhd_dump_pkt_init(&dhd->pub);
+#endif /* DHD_PKTDUMP_ROAM */
+#ifdef DHD_PKT_LOGGING
+ dhd_os_attach_pktlog(&dhd->pub);
+#endif /* DHD_PKT_LOGGING */
+
+#ifdef WL_CFGVENDOR_SEND_HANG_EVENT
+ dhd->pub.hang_info = MALLOCZ(osh, VENDOR_SEND_HANG_EXT_INFO_LEN);
+ if (dhd->pub.hang_info == NULL) {
+ DHD_ERROR(("%s: alloc hang_info failed\n", __FUNCTION__));
+ }
+#endif /* WL_CFGVENDOR_SEND_HANG_EVENT */
if (dhd_sta_pool_init(&dhd->pub, DHD_MAX_STA) != BCME_OK) {
DHD_ERROR(("%s: Initializing %u sta\n", __FUNCTION__, DHD_MAX_STA));
goto fail;
}
-
-#ifndef BCMDBUS
+#ifdef DHD_PCIE_NATIVE_RUNTIMEPM
+ dhd->tx_wq = alloc_workqueue("bcmdhd-tx-wq", WQ_HIGHPRI | WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
+ if (!dhd->tx_wq) {
+ DHD_ERROR(("%s: alloc_workqueue(bcmdhd-tx-wq) failed\n", __FUNCTION__));
+ goto fail;
+ }
+ dhd->rx_wq = alloc_workqueue("bcmdhd-rx-wq", WQ_HIGHPRI | WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
+ if (!dhd->rx_wq) {
+ DHD_ERROR(("%s: alloc_workqueue(bcmdhd-rx-wq) failed\n", __FUNCTION__));
+ destroy_workqueue(dhd->tx_wq);
+ dhd->tx_wq = NULL;
+ goto fail;
+ }
+#endif /* DHD_PCIE_NATIVE_RUNTIMEPM */
/* Set up the watchdog timer */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
- timer_setup(&dhd->timer, dhd_watchdog, 0);
-#else
- init_timer(&dhd->timer);
- dhd->timer.data = (ulong)dhd;
- dhd->timer.function = dhd_watchdog;
-#endif
+ init_timer_compat(&dhd->timer, dhd_watchdog, dhd);
dhd->default_wd_interval = dhd_watchdog_ms;
if (dhd_watchdog_prio >= 0) {
/* Initialize watchdog thread */
PROC_START(dhd_watchdog_thread, dhd, &dhd->thr_wdt_ctl, 0, "dhd_watchdog_thread");
+ if (dhd->thr_wdt_ctl.thr_pid < 0) {
+ goto fail;
+ }
} else {
dhd->thr_wdt_ctl.thr_pid = -1;
}
-#ifdef DEBUGGER
- debugger_init((void *) bus);
-#endif
+#ifdef DHD_PCIE_RUNTIMEPM
+ /* Setup up the runtime PM Idlecount timer */
+ init_timer_compat(&dhd->rpm_timer, dhd_runtimepm, dhd);
+ dhd->rpm_timer_valid = FALSE;
+
+ dhd->thr_rpm_ctl.thr_pid = DHD_PID_KT_INVALID;
+ PROC_START(dhd_rpm_state_thread, dhd, &dhd->thr_rpm_ctl, 0, "dhd_rpm_state_thread");
+ if (dhd->thr_rpm_ctl.thr_pid < 0) {
+ goto fail;
+ }
+#endif /* DHD_PCIE_RUNTIMEPM */
+
+#ifdef SHOW_LOGTRACE
+ skb_queue_head_init(&dhd->evt_trace_queue);
+#endif /* SHOW_LOGTRACE */
/* Set up the bottom half handler */
if (dhd_dpc_prio >= 0) {
/* Initialize DPC thread */
PROC_START(dhd_dpc_thread, dhd, &dhd->thr_dpc_ctl, 0, "dhd_dpc");
+ if (dhd->thr_dpc_ctl.thr_pid < 0) {
+ goto fail;
+ }
} else {
/* use tasklet for dpc */
tasklet_init(&dhd->tasklet, dhd_dpc, (ulong)dhd);
@@ -7629,8 +8760,10 @@
bzero(&dhd->pub.skbbuf[0], sizeof(void *) * MAXSKBPEND);
/* Initialize RXF thread */
PROC_START(dhd_rxf_thread, dhd, &dhd->thr_rxf_ctl, 0, "dhd_rxf");
+ if (dhd->thr_rxf_ctl.thr_pid < 0) {
+ goto fail;
+ }
}
-#endif /* BCMDBUS */
dhd_state |= DHD_ATTACH_STATE_THREADS_CREATED;
@@ -7660,18 +8793,21 @@
}
#endif /* ARP_OFFLOAD_SUPPORT */
-#if defined(CONFIG_IPV6)
+#if defined(CONFIG_IPV6) && defined(IPV6_NDO_SUPPORT)
if (!dhd_inet6addr_notifier_registered) {
dhd_inet6addr_notifier_registered = TRUE;
register_inet6addr_notifier(&dhd_inet6addr_notifier);
}
-#endif /* OEM_ANDROID && CONFIG_IPV6 */
+#endif /* CONFIG_IPV6 && IPV6_NDO_SUPPORT */
dhd->dhd_deferred_wq = dhd_deferred_work_init((void *)dhd);
+#if defined(OEM_ANDROID)
+ INIT_WORK(&dhd->dhd_hang_process_work, dhd_hang_process);
+#endif /* #if OEM_ANDROID */
#ifdef DEBUG_CPU_FREQ
dhd->new_freq = alloc_percpu(int);
dhd->freq_trans.notifier_call = dhd_cpufreq_notifier;
cpufreq_register_notifier(&dhd->freq_trans, CPUFREQ_TRANSITION_NOTIFIER);
-#endif
+#endif // endif
#ifdef DHDTCPACK_SUPPRESS
#ifdef BCMSDIO
dhd_tcpack_suppress_set(&dhd->pub, TCPACK_SUP_DELAYTX);
@@ -7683,59 +8819,50 @@
#endif /* DHDTCPACK_SUPPRESS */
#if defined(BCM_DNGL_EMBEDIMAGE) || defined(BCM_REQUEST_FW)
-#if defined(BCMDBUS)
- sema_init(&dhd->fw_download_lock, 0);
- dhd->fw_download_task = kthread_run(fw_download_thread_func, dhd, "fwdl-thread");
-#endif /* BCMDBUS */
#endif /* defined(BCM_DNGL_EMBEDIMAGE) || defined(BCM_REQUEST_FW) */
-
- dhd_state |= DHD_ATTACH_STATE_DONE;
- dhd->dhd_state = dhd_state;
-
- dhd_found++;
#ifdef DHD_DEBUG_PAGEALLOC
register_page_corrupt_cb(dhd_page_corrupt_cb, &dhd->pub);
#endif /* DHD_DEBUG_PAGEALLOC */
#if defined(DHD_LB)
- DHD_ERROR(("DHD LOAD BALANCING Enabled\n"));
dhd_lb_set_default_cpus(dhd);
+ DHD_LB_STATS_INIT(&dhd->pub);
/* Initialize the CPU Masks */
- if (dhd_cpumasks_init(dhd) == 0) {
-
+ if (dhd_cpumasks_init(dhd) == 0) {
/* Now we have the current CPU maps, run through candidacy */
dhd_select_cpu_candidacy(dhd);
- /*
- * If we are able to initialize CPU masks, lets register to the
- * CPU Hotplug framework to change the CPU for each job dynamically
- * using candidacy algorithm.
- */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 10, 0))
- dhd_cpuhp_init(osh, dhd);
-#else
- dhd->cpu_notifier.notifier_call = dhd_cpu_callback;
- register_cpu_notifier(&dhd->cpu_notifier); /* Register a callback */
-#endif
+ /* Register the call backs to CPU Hotplug sub-system */
+ dhd_register_cpuhp_callback(dhd);
+
} else {
/*
- * We are unable to initialize CPU masks, so candidacy algorithm
- * won't run, but still Load Balancing will be honoured based
- * on the CPUs allocated for a given job statically during init
- */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 10, 0))
-#else
+ * We are unable to initialize CPU masks, so candidacy algorithm
+ * won't run, but still Load Balancing will be honoured based
+ * on the CPUs allocated for a given job statically during init
+ */
dhd->cpu_notifier.notifier_call = NULL;
- DHD_ERROR(("%s(): dhd_cpumasks_init failed CPUs for JOB would be static\n",
+ DHD_ERROR(("%s():dhd_cpumasks_init failed CPUs for JOB would be static\n",
__FUNCTION__));
-#endif
}
+#ifdef DHD_LB_TXP
+#ifdef DHD_LB_TXP_DEFAULT_ENAB
+ /* Trun ON the feature by default */
+ atomic_set(&dhd->lb_txp_active, 1);
+#else
+ /* Trun OFF the feature by default */
+ atomic_set(&dhd->lb_txp_active, 0);
+#endif /* DHD_LB_TXP_DEFAULT_ENAB */
+#endif /* DHD_LB_TXP */
- DHD_LB_STATS_INIT(&dhd->pub);
+#ifdef DHD_LB_RXP
+ /* Trun ON the feature by default */
+ atomic_set(&dhd->lb_rxp_active, 1);
+#endif /* DHD_LB_RXP */
/* Initialize the Load Balancing Tasklets and Napi object */
#if defined(DHD_LB_TXC)
@@ -7744,7 +8871,6 @@
INIT_WORK(&dhd->tx_compl_dispatcher_work, dhd_tx_compl_dispatcher_fn);
DHD_INFO(("%s load balance init tx_compl_tasklet\n", __FUNCTION__));
#endif /* DHD_LB_TXC */
-
#if defined(DHD_LB_RXC)
tasklet_init(&dhd->rx_compl_tasklet,
dhd_lb_rx_compl_handler, (ulong)(&dhd->pub));
@@ -7753,15 +8879,119 @@
#endif /* DHD_LB_RXC */
#if defined(DHD_LB_RXP)
- __skb_queue_head_init(&dhd->rx_pend_queue);
+ __skb_queue_head_init(&dhd->rx_pend_queue);
skb_queue_head_init(&dhd->rx_napi_queue);
-
/* Initialize the work that dispatches NAPI job to a given core */
INIT_WORK(&dhd->rx_napi_dispatcher_work, dhd_rx_napi_dispatcher_fn);
DHD_INFO(("%s load balance init rx_napi_queue\n", __FUNCTION__));
#endif /* DHD_LB_RXP */
+#if defined(DHD_LB_TXP)
+ INIT_WORK(&dhd->tx_dispatcher_work, dhd_tx_dispatcher_work);
+ skb_queue_head_init(&dhd->tx_pend_queue);
+ /* Initialize the work that dispatches TX job to a given core */
+ tasklet_init(&dhd->tx_tasklet,
+ dhd_lb_tx_handler, (ulong)(dhd));
+ DHD_INFO(("%s load balance init tx_pend_queue\n", __FUNCTION__));
+#endif /* DHD_LB_TXP */
+
+ dhd_state |= DHD_ATTACH_STATE_LB_ATTACH_DONE;
#endif /* DHD_LB */
+
+#if defined(DNGL_AXI_ERROR_LOGGING) && defined(DHD_USE_WQ_FOR_DNGL_AXI_ERROR)
+ INIT_WORK(&dhd->axi_error_dispatcher_work, dhd_axi_error_dispatcher_fn);
+#endif /* DNGL_AXI_ERROR_LOGGING && DHD_USE_WQ_FOR_DNGL_AXI_ERROR */
+
+#if defined(BCMPCIE)
+ dhd->pub.extended_trap_data = MALLOCZ(osh, BCMPCIE_EXT_TRAP_DATA_MAXLEN);
+ if (dhd->pub.extended_trap_data == NULL) {
+ DHD_ERROR(("%s: Failed to alloc extended_trap_data\n", __FUNCTION__));
+ }
+#ifdef DNGL_AXI_ERROR_LOGGING
+ dhd->pub.axi_err_dump = MALLOCZ(osh, sizeof(dhd_axi_error_dump_t));
+ if (dhd->pub.axi_err_dump == NULL) {
+ DHD_ERROR(("%s: Failed to alloc axi_err_dump\n", __FUNCTION__));
+ }
+#endif /* DNGL_AXI_ERROR_LOGGING */
+#endif /* BCMPCIE && ETD */
+
+ DHD_SSSR_MEMPOOL_INIT(&dhd->pub);
+
+#ifdef EWP_EDL
+ if (host_edl_support) {
+ if (DHD_EDL_MEM_INIT(&dhd->pub) != BCME_OK) {
+ host_edl_support = FALSE;
+ }
+ }
+#endif /* EWP_EDL */
+
+ (void)dhd_sysfs_init(dhd);
+
+#ifdef WL_NATOE
+ /* Open Netlink socket for NF_CONNTRACK notifications */
+ dhd->pub.nfct = dhd_ct_open(&dhd->pub, NFNL_SUBSYS_CTNETLINK | NFNL_SUBSYS_CTNETLINK_EXP,
+ CT_ALL);
+#endif /* WL_NATOE */
+
+ dhd_state |= DHD_ATTACH_STATE_DONE;
+ dhd->dhd_state = dhd_state;
+
+ dhd_found++;
+
+#ifdef DHD_DUMP_MNGR
+ dhd->pub.dump_file_manage =
+ (dhd_dump_file_manage_t *)MALLOCZ(dhd->pub.osh, sizeof(dhd_dump_file_manage_t));
+ if (unlikely(!dhd->pub.dump_file_manage)) {
+ DHD_ERROR(("%s(): could not allocate memory for - "
+ "dhd_dump_file_manage_t\n", __FUNCTION__));
+ }
+#endif /* DHD_DUMP_MNGR */
+#ifdef DHD_FW_COREDUMP
+ /* Set memdump default values */
+#ifdef CUSTOMER_HW4_DEBUG
+ dhd->pub.memdump_enabled = DUMP_DISABLED;
+#elif defined(OEM_ANDROID)
+ dhd->pub.memdump_enabled = DUMP_MEMFILE_BUGON;
+#else
+ dhd->pub.memdump_enabled = DUMP_MEMFILE;
+#endif /* CUSTOMER_HW4_DEBUG */
+ /* Check the memdump capability */
+ dhd_get_memdump_info(&dhd->pub);
+#endif /* DHD_FW_COREDUMP */
+
+#ifdef DHD_ERPOM
+ if (enable_erpom) {
+ pom_handler = &dhd->pub.pom_wlan_handler;
+ pom_handler->func_id = WLAN_FUNC_ID;
+ pom_handler->handler = (void *)g_dhd_pub;
+ pom_handler->power_off = dhd_wlan_power_off_handler;
+ pom_handler->power_on = dhd_wlan_power_on_handler;
+
+ dhd->pub.pom_func_register = NULL;
+ dhd->pub.pom_func_deregister = NULL;
+ dhd->pub.pom_toggle_reg_on = NULL;
+
+ dhd->pub.pom_func_register = symbol_get(pom_func_register);
+ dhd->pub.pom_func_deregister = symbol_get(pom_func_deregister);
+ dhd->pub.pom_toggle_reg_on = symbol_get(pom_toggle_reg_on);
+
+ symbol_put(pom_func_register);
+ symbol_put(pom_func_deregister);
+ symbol_put(pom_toggle_reg_on);
+
+ if (!dhd->pub.pom_func_register ||
+ !dhd->pub.pom_func_deregister ||
+ !dhd->pub.pom_toggle_reg_on) {
+ DHD_ERROR(("%s, enable_erpom enabled through module parameter but "
+ "POM is not loaded\n", __FUNCTION__));
+ ASSERT(0);
+ goto fail;
+ }
+ dhd->pub.pom_func_register(pom_handler);
+ dhd->pub.enable_erpom = TRUE;
+
+ }
+#endif /* DHD_ERPOM */
return &dhd->pub;
fail:
@@ -7773,6 +9003,7 @@
dhd_free(&dhd->pub);
}
+dhd_null_flag:
return NULL;
}
@@ -7790,7 +9021,13 @@
return DHD_FLAG_STA_MODE;
}
-#ifndef BCMDBUS
+int dhd_bus_get_fw_mode(dhd_pub_t *dhdp)
+{
+ return dhd_get_fw_mode(dhdp->info);
+}
+
+extern char * nvram_get(const char *name);
+
int cis_chipvendor = 0;
unsigned short cis_device = 0;
@@ -7804,11 +9041,13 @@
#define FW_CYW43438 "fw_cyw43438.bin"
#define FW_CYW43455 "fw_cyw43455.bin"
#define FW_CYW4354 "fw_cyw4354.bin"
+#define FW_CYW4373 "cyfmac4373-sdio.bin"
#define NVRAM_CYW43364 "nvram_azw432.txt"
#define NVRAM_CYW43438 "nvram_azw372.txt"
#define NVRAM_CYW43455 "nvram_azw256.txt"
#define NVRAM_CYW4354 "nvram_azw235.txt"
+#define NVRAM_CYW4373 "brcmfmac4373-sdio.txt"
bool dhd_update_fw_nv_path(dhd_info_t *dhdinfo)
{
@@ -7816,8 +9055,13 @@
int nv_len;
const char *fw = NULL;
const char *nv = NULL;
+#ifdef DHD_UCODE_DOWNLOAD
+ int uc_len;
+ const char *uc = NULL;
+#endif /* DHD_UCODE_DOWNLOAD */
wifi_adapter_info_t *adapter = dhdinfo->adapter;
-
+ int fw_path_len = sizeof(dhdinfo->fw_path);
+ int nv_path_len = sizeof(dhdinfo->nv_path);
/* Update firmware and nvram path. The path may be from adapter info or module parameter
* The path from adapter info is used for initialization only (as it won't change).
@@ -7832,10 +9076,10 @@
/* set default firmware and nvram path for built-in type driver */
if (!dhd_download_fw_on_driverload) {
#ifdef CONFIG_BCMDHD_FW_PATH
- fw = CONFIG_BCMDHD_FW_PATH;
+ fw = VENDOR_PATH CONFIG_BCMDHD_FW_PATH;
#endif /* CONFIG_BCMDHD_FW_PATH */
#ifdef CONFIG_BCMDHD_NVRAM_PATH
- nv = CONFIG_BCMDHD_NVRAM_PATH;
+ nv = VENDOR_PATH CONFIG_BCMDHD_NVRAM_PATH;
#endif /* CONFIG_BCMDHD_NVRAM_PATH */
}
@@ -7843,7 +9087,6 @@
if (dhdinfo->fw_path[0] == '\0') {
if (adapter && adapter->fw_path && adapter->fw_path[0] != '\0')
fw = adapter->fw_path;
-
}
if (dhdinfo->nv_path[0] == '\0') {
if (adapter && adapter->nv_path && adapter->nv_path[0] != '\0')
@@ -7856,10 +9099,12 @@
*/
if (firmware_path[0] != '\0')
fw = firmware_path;
+
if (nvram_path[0] != '\0')
nv = nvram_path;
- if (cis_device == BCM43455_CHIP_ID && cis_chipvendor == 0x81) {
+
+if (cis_device == BCM43455_CHIP_ID && cis_chipvendor == 0x81) {
sprintf(fw_path, "%s%s", DEFAULT_BCMDHD_FW_PATH, FW_CYW43455);
sprintf(nv_path, "%s%s", DEFAULT_BCMDHD_NVRAM_PATH, NVRAM_CYW43455);
DHD_ERROR(("Adding CYW43455 firmware and NVRAM path by CIS\n"
@@ -7895,33 +9140,93 @@
fw = fw_path;
nv = nv_path;
}
+ else if (cis_device == BCM4373_CHIP_ID){
+ sprintf(fw_path, "%s%s", DEFAULT_BCMDHD_FW_PATH, FW_CYW4373);
+ sprintf(nv_path, "%s%s", DEFAULT_BCMDHD_NVRAM_PATH, NVRAM_CYW4373);
+ DHD_ERROR(("Adding CYW4373 firmware and NVRAM path by CIS\n"
+ "\tfirmware path: %s\n"
+ "\tNVRAM path: %s\n", fw_path, nv_path));
+ fw = fw_path;
+ nv = nv_path;
+ }
+
+#ifdef DHD_UCODE_DOWNLOAD
+ if (ucode_path[0] != '\0')
+ uc = ucode_path;
+#endif /* DHD_UCODE_DOWNLOAD */
if (fw && fw[0] != '\0') {
fw_len = strlen(fw);
- if (fw_len >= sizeof(dhdinfo->fw_path)) {
+ if (fw_len >= fw_path_len) {
DHD_ERROR(("fw path len exceeds max len of dhdinfo->fw_path\n"));
return FALSE;
}
- strncpy(dhdinfo->fw_path, fw, sizeof(dhdinfo->fw_path));
+ strncpy(dhdinfo->fw_path, fw, fw_path_len);
if (dhdinfo->fw_path[fw_len-1] == '\n')
dhdinfo->fw_path[fw_len-1] = '\0';
}
if (nv && nv[0] != '\0') {
nv_len = strlen(nv);
- if (nv_len >= sizeof(dhdinfo->nv_path)) {
+ if (nv_len >= nv_path_len) {
DHD_ERROR(("nvram path len exceeds max len of dhdinfo->nv_path\n"));
return FALSE;
}
- strncpy(dhdinfo->nv_path, nv, sizeof(dhdinfo->nv_path));
+ memset(dhdinfo->nv_path, 0, nv_path_len);
+ strncpy(dhdinfo->nv_path, nv, nv_path_len);
+ dhdinfo->nv_path[nv_len] = '\0';
+#ifdef DHD_USE_SINGLE_NVRAM_FILE
+ /* Remove "_net" or "_mfg" tag from current nvram path */
+ {
+ char *nvram_tag = "nvram_";
+ char *ext_tag = ".txt";
+ char *sp_nvram = strnstr(dhdinfo->nv_path, nvram_tag, nv_path_len);
+ bool valid_buf = sp_nvram && ((uint32)(sp_nvram + strlen(nvram_tag) +
+ strlen(ext_tag) - dhdinfo->nv_path) <= nv_path_len);
+ if (valid_buf) {
+ char *sp = sp_nvram + strlen(nvram_tag) - 1;
+ uint32 padding_size = (uint32)(dhdinfo->nv_path +
+ nv_path_len - sp);
+ memset(sp, 0, padding_size);
+ strncat(dhdinfo->nv_path, ext_tag, strlen(ext_tag));
+ nv_len = strlen(dhdinfo->nv_path);
+ DHD_INFO(("%s: new nvram path = %s\n",
+ __FUNCTION__, dhdinfo->nv_path));
+ } else if (sp_nvram) {
+ DHD_ERROR(("%s: buffer space for nvram path is not enough\n",
+ __FUNCTION__));
+ return FALSE;
+ } else {
+ DHD_ERROR(("%s: Couldn't find the nvram tag. current"
+ " nvram path = %s\n", __FUNCTION__, dhdinfo->nv_path));
+ }
+ }
+#endif /* DHD_USE_SINGLE_NVRAM_FILE */
if (dhdinfo->nv_path[nv_len-1] == '\n')
dhdinfo->nv_path[nv_len-1] = '\0';
}
+#ifdef DHD_UCODE_DOWNLOAD
+ if (uc && uc[0] != '\0') {
+ uc_len = strlen(uc);
+ if (uc_len >= sizeof(dhdinfo->uc_path)) {
+ DHD_ERROR(("uc path len exceeds max len of dhdinfo->uc_path\n"));
+ return FALSE;
+ }
+ strncpy(dhdinfo->uc_path, uc, sizeof(dhdinfo->uc_path));
+ if (dhdinfo->uc_path[uc_len-1] == '\n')
+ dhdinfo->uc_path[uc_len-1] = '\0';
+ }
+#endif /* DHD_UCODE_DOWNLOAD */
/* clear the path in module parameter */
- firmware_path[0] = '\0';
- nvram_path[0] = '\0';
+ if (dhd_download_fw_on_driverload) {
+ firmware_path[0] = '\0';
+ nvram_path[0] = '\0';
+ }
+#ifdef DHD_UCODE_DOWNLOAD
+ ucode_path[0] = '\0';
+ DHD_ERROR(("ucode path: %s\n", dhdinfo->uc_path));
+#endif /* DHD_UCODE_DOWNLOAD */
-#ifndef BCMEMBEDIMAGE
/* fw_path and nv_path are not mandatory for BCMEMBEDIMAGE */
if (dhdinfo->fw_path[0] == '\0') {
DHD_ERROR(("firmware path not found\n"));
@@ -7931,11 +9236,160 @@
DHD_ERROR(("nvram path not found\n"));
return FALSE;
}
-#endif /* BCMEMBEDIMAGE */
return TRUE;
}
+#if defined(BT_OVER_SDIO)
+extern bool dhd_update_btfw_path(dhd_info_t *dhdinfo, char* btfw_path)
+{
+ int fw_len;
+ const char *fw = NULL;
+ wifi_adapter_info_t *adapter = dhdinfo->adapter;
+
+ /* Update bt firmware path. The path may be from adapter info or module parameter
+ * The path from adapter info is used for initialization only (as it won't change).
+ *
+ * The btfw_path module parameter may be changed by the system at run
+ * time. When it changes we need to copy it to dhdinfo->btfw_path. Also Android private
+ * command may change dhdinfo->btfw_path. As such we need to clear the path info in
+ * module parameter after it is copied. We won't update the path until the module parameter
+ * is changed again (first character is not '\0')
+ */
+
+ /* set default firmware and nvram path for built-in type driver */
+ if (!dhd_download_fw_on_driverload) {
+#ifdef CONFIG_BCMDHD_BTFW_PATH
+ fw = CONFIG_BCMDHD_BTFW_PATH;
+#endif /* CONFIG_BCMDHD_FW_PATH */
+ }
+
+ /* check if we need to initialize the path */
+ if (dhdinfo->btfw_path[0] == '\0') {
+ if (adapter && adapter->btfw_path && adapter->btfw_path[0] != '\0')
+ fw = adapter->btfw_path;
+ }
+
+ /* Use module parameter if it is valid, EVEN IF the path has not been initialized
+ */
+ if (btfw_path[0] != '\0')
+ fw = btfw_path;
+
+ if (fw && fw[0] != '\0') {
+ fw_len = strlen(fw);
+ if (fw_len >= sizeof(dhdinfo->btfw_path)) {
+ DHD_ERROR(("fw path len exceeds max len of dhdinfo->btfw_path\n"));
+ return FALSE;
+ }
+ strncpy(dhdinfo->btfw_path, fw, sizeof(dhdinfo->btfw_path));
+ if (dhdinfo->btfw_path[fw_len-1] == '\n')
+ dhdinfo->btfw_path[fw_len-1] = '\0';
+ }
+
+ /* clear the path in module parameter */
+ btfw_path[0] = '\0';
+
+ if (dhdinfo->btfw_path[0] == '\0') {
+ DHD_ERROR(("bt firmware path not found\n"));
+ return FALSE;
+ }
+
+ return TRUE;
+}
+#endif /* defined (BT_OVER_SDIO) */
+
+#ifdef CUSTOMER_HW4_DEBUG
+bool dhd_validate_chipid(dhd_pub_t *dhdp)
+{
+ uint chipid = dhd_bus_chip_id(dhdp);
+ uint config_chipid;
+
+#ifdef BCM4375_CHIP
+ config_chipid = BCM4375_CHIP_ID;
+#elif defined(BCM4361_CHIP)
+ config_chipid = BCM4361_CHIP_ID;
+#elif defined(BCM4359_CHIP)
+ config_chipid = BCM4359_CHIP_ID;
+#elif defined(BCM4358_CHIP)
+ config_chipid = BCM4358_CHIP_ID;
+#elif defined(BCM4354_CHIP)
+ config_chipid = BCM4354_CHIP_ID;
+#elif defined(BCM4339_CHIP)
+ config_chipid = BCM4339_CHIP_ID;
+#elif defined(BCM4335_CHIP)
+ config_chipid = BCM4335_CHIP_ID;
+#elif defined(BCM43430_CHIP)
+ config_chipid = BCM43430_CHIP_ID;
+#elif defined(BCM43018_CHIP)
+ config_chipid = BCM43018_CHIP_ID;
+#elif defined(BCM43455_CHIP)
+ config_chipid = BCM4345_CHIP_ID;
+#elif defined(BCM43454_CHIP)
+ config_chipid = BCM43454_CHIP_ID;
+#elif defined(BCM43012_CHIP_)
+ config_chipid = BCM43012_CHIP_ID;
+#else
+ DHD_ERROR(("%s: Unknown chip id, if you use new chipset,"
+ " please add CONFIG_BCMXXXX into the Kernel and"
+ " BCMXXXX_CHIP definition into the DHD driver\n",
+ __FUNCTION__));
+ config_chipid = 0;
+
+ return FALSE;
+#endif /* BCM4354_CHIP */
+
+#if defined(BCM4354_CHIP) && defined(SUPPORT_MULTIPLE_REVISION)
+ if (chipid == BCM4350_CHIP_ID && config_chipid == BCM4354_CHIP_ID) {
+ return TRUE;
+ }
+#endif /* BCM4354_CHIP && SUPPORT_MULTIPLE_REVISION */
+#if defined(BCM4358_CHIP) && defined(SUPPORT_MULTIPLE_REVISION)
+ if (chipid == BCM43569_CHIP_ID && config_chipid == BCM4358_CHIP_ID) {
+ return TRUE;
+ }
+#endif /* BCM4358_CHIP && SUPPORT_MULTIPLE_REVISION */
+#if defined(BCM4359_CHIP)
+ if (chipid == BCM4355_CHIP_ID && config_chipid == BCM4359_CHIP_ID) {
+ return TRUE;
+ }
+#endif /* BCM4359_CHIP */
+#if defined(BCM4361_CHIP)
+ if (chipid == BCM4347_CHIP_ID && config_chipid == BCM4361_CHIP_ID) {
+ return TRUE;
+ }
+#endif /* BCM4361_CHIP */
+
+ return config_chipid == chipid;
+}
+#endif /* CUSTOMER_HW4_DEBUG */
+
+#if defined(BT_OVER_SDIO)
+wlan_bt_handle_t dhd_bt_get_pub_hndl(void)
+{
+ DHD_ERROR(("%s: g_dhd_pub %p\n", __FUNCTION__, g_dhd_pub));
+ /* assuming that dhd_pub_t type pointer is available from a global variable */
+ return (wlan_bt_handle_t) g_dhd_pub;
+} EXPORT_SYMBOL(dhd_bt_get_pub_hndl);
+
+int dhd_download_btfw(wlan_bt_handle_t handle, char* btfw_path)
+{
+ int ret = -1;
+ dhd_pub_t *dhdp = (dhd_pub_t *)handle;
+ dhd_info_t *dhd = (dhd_info_t*)dhdp->info;
+
+ /* Download BT firmware image to the dongle */
+ if (dhd->pub.busstate == DHD_BUS_DATA && dhd_update_btfw_path(dhd, btfw_path)) {
+ DHD_INFO(("%s: download btfw from: %s\n", __FUNCTION__, dhd->btfw_path));
+ ret = dhd_bus_download_btfw(dhd->pub.bus, dhd->pub.osh, dhd->btfw_path);
+ if (ret < 0) {
+ DHD_ERROR(("%s: failed to download btfw from: %s\n",
+ __FUNCTION__, dhd->btfw_path));
+ return ret;
+ }
+ }
+ return ret;
+} EXPORT_SYMBOL(dhd_download_btfw);
+#endif /* defined (BT_OVER_SDIO) */
int
dhd_bus_start(dhd_pub_t *dhdp)
@@ -7944,17 +9398,53 @@
dhd_info_t *dhd = (dhd_info_t*)dhdp->info;
unsigned long flags;
+#if defined(DHD_DEBUG) && defined(BCMSDIO)
+ int fw_download_start = 0, fw_download_end = 0, f2_sync_start = 0, f2_sync_end = 0;
+#endif /* DHD_DEBUG && BCMSDIO */
ASSERT(dhd);
DHD_TRACE(("Enter %s:\n", __FUNCTION__));
+ dhdp->dongle_trap_occured = 0;
+#ifdef DHD_SSSR_DUMP
+ /* Flag to indicate sssr dump is collected */
+ dhdp->sssr_dump_collected = 0;
+#endif /* DHD_SSSR_DUMP */
+ dhdp->iovar_timeout_occured = 0;
+#ifdef PCIE_FULL_DONGLE
+ dhdp->d3ack_timeout_occured = 0;
+ dhdp->livelock_occured = 0;
+ dhdp->pktid_audit_failed = 0;
+#endif /* PCIE_FULL_DONGLE */
+ dhd->pub.iface_op_failed = 0;
+ dhd->pub.scan_timeout_occurred = 0;
+ dhd->pub.scan_busy_occurred = 0;
+ /* Clear induced error during initialize */
+ dhd->pub.dhd_induce_error = DHD_INDUCE_ERROR_CLEAR;
+
+ /* set default value for now. Will be updated again in dhd_preinit_ioctls()
+ * after querying FW
+ */
+ dhdp->event_log_max_sets = NUM_EVENT_LOG_SETS;
+ dhdp->event_log_max_sets_queried = FALSE;
+ dhdp->smmu_fault_occurred = 0;
+#ifdef DNGL_AXI_ERROR_LOGGING
+ dhdp->axi_error = FALSE;
+#endif /* DNGL_AXI_ERROR_LOGGING */
DHD_PERIM_LOCK(dhdp);
-
/* try to download image and nvram to the dongle */
if (dhd->pub.busstate == DHD_BUS_DOWN && dhd_update_fw_nv_path(dhd)) {
+ /* Indicate FW Download has not yet done */
+ dhd->pub.fw_download_status = FW_DOWNLOAD_IN_PROGRESS;
DHD_INFO(("%s download fw %s, nv %s\n", __FUNCTION__, dhd->fw_path, dhd->nv_path));
+#if defined(DHD_DEBUG) && defined(BCMSDIO)
+ fw_download_start = OSL_SYSUPTIME();
+#endif /* DHD_DEBUG && BCMSDIO */
ret = dhd_bus_download_firmware(dhd->pub.bus, dhd->pub.osh,
dhd->fw_path, dhd->nv_path);
+#if defined(DHD_DEBUG) && defined(BCMSDIO)
+ fw_download_end = OSL_SYSUPTIME();
+#endif /* DHD_DEBUG && BCMSDIO */
if (ret < 0) {
DHD_ERROR(("%s: failed to download firmware %s\n",
__FUNCTION__, dhd->fw_path));
@@ -7962,14 +9452,16 @@
return ret;
}
/* Indicate FW Download has succeeded */
- dhd_fw_downloaded = TRUE;
+ dhd->pub.fw_download_status = FW_DOWNLOAD_DONE;
}
if (dhd->pub.busstate != DHD_BUS_LOAD) {
DHD_PERIM_UNLOCK(dhdp);
return -ENETDOWN;
}
+#ifdef BCMSDIO
dhd_os_sdlock(dhdp);
+#endif /* BCMSDIO */
/* Start the watchdog timer */
dhd->pub.tickcnt = 0;
@@ -7979,18 +9471,19 @@
if ((ret = dhd_bus_init(&dhd->pub, FALSE)) != 0) {
DHD_ERROR(("%s, dhd_bus_init failed %d\n", __FUNCTION__, ret));
+#ifdef BCMSDIO
dhd_os_sdunlock(dhdp);
+#endif /* BCMSDIO */
DHD_PERIM_UNLOCK(dhdp);
return ret;
}
+ DHD_ENABLE_RUNTIME_PM(&dhd->pub);
+
#ifdef DHD_ULP
dhd_ulp_set_ulp_state(dhdp, DHD_ULP_DISABLED);
#endif /* DHD_ULP */
-#if defined(OOB_INTR_ONLY) || defined(BCMPCIE_OOB_HOST_WAKE)
-#if defined(BCMPCIE_OOB_HOST_WAKE)
- dhd_os_sdunlock(dhdp);
-#endif /* BCMPCIE_OOB_HOST_WAKE */
+#if defined(OOB_INTR_ONLY) || defined(BCMSPI_ANDROID) || defined(BCMPCIE_OOB_HOST_WAKE)
/* Host registration for OOB interrupt */
if (dhd_bus_oob_intr_register(dhdp)) {
/* deactivate timer and wait for the handler to finish */
@@ -8000,21 +9493,21 @@
DHD_GENERAL_UNLOCK(&dhd->pub, flags);
del_timer_sync(&dhd->timer);
- dhd_os_sdunlock(dhdp);
#endif /* !BCMPCIE_OOB_HOST_WAKE */
+ DHD_DISABLE_RUNTIME_PM(&dhd->pub);
DHD_PERIM_UNLOCK(dhdp);
DHD_ERROR(("%s Host failed to register for OOB\n", __FUNCTION__));
+ DHD_OS_WD_WAKE_UNLOCK(&dhd->pub);
return -ENODEV;
}
#if defined(BCMPCIE_OOB_HOST_WAKE)
- dhd_os_sdlock(dhdp);
dhd_bus_oob_intr_set(dhdp, TRUE);
#else
/* Enable oob at firmware */
dhd_enable_oob_intr(dhd->pub.bus, TRUE);
#endif /* BCMPCIE_OOB_HOST_WAKE */
-#endif
+#endif /* OOB_INTR_ONLY || BCMSPI_ANDROID || BCMPCIE_OOB_HOST_WAKE */
#ifdef PCIE_FULL_DONGLE
{
/* max_h2d_rings includes H2D common rings */
@@ -8023,7 +9516,9 @@
DHD_ERROR(("%s: Initializing %u h2drings\n", __FUNCTION__,
max_h2d_rings));
if ((ret = dhd_flow_rings_init(&dhd->pub, max_h2d_rings)) != BCME_OK) {
+#ifdef BCMSDIO
dhd_os_sdunlock(dhdp);
+#endif /* BCMSDIO */
DHD_PERIM_UNLOCK(dhdp);
return ret;
}
@@ -8031,17 +9526,12 @@
#endif /* PCIE_FULL_DONGLE */
/* Do protocol initialization necessary for IOCTL/IOVAR */
-#ifdef PCIE_FULL_DONGLE
- dhd_os_sdunlock(dhdp);
-#endif /* PCIE_FULL_DONGLE */
ret = dhd_prot_init(&dhd->pub);
if (unlikely(ret) != BCME_OK) {
DHD_PERIM_UNLOCK(dhdp);
+ DHD_OS_WD_WAKE_UNLOCK(&dhd->pub);
return ret;
}
-#ifdef PCIE_FULL_DONGLE
- dhd_os_sdlock(dhdp);
-#endif /* PCIE_FULL_DONGLE */
/* If bus is not ready, can't come up */
if (dhd->pub.busstate != DHD_BUS_DATA) {
@@ -8050,32 +9540,45 @@
DHD_GENERAL_UNLOCK(&dhd->pub, flags);
del_timer_sync(&dhd->timer);
DHD_ERROR(("%s failed bus is not ready\n", __FUNCTION__));
+ DHD_DISABLE_RUNTIME_PM(&dhd->pub);
+#ifdef BCMSDIO
dhd_os_sdunlock(dhdp);
+#endif /* BCMSDIO */
DHD_PERIM_UNLOCK(dhdp);
+ DHD_OS_WD_WAKE_UNLOCK(&dhd->pub);
return -ENODEV;
}
+#ifdef BCMSDIO
dhd_os_sdunlock(dhdp);
-
-#ifdef HOST_FLAG
- {
- int enable = 0;
- if (dhd_wl_ioctl_set_intiovar(dhdp, "hostsleep", enable, WLC_SET_VAR, TRUE, 0)) {
- DHD_ERROR(("%s: Failed to set hostsleep 0\n", __FUNCTION__));
- }
- }
-#endif /* HOST_FLAG */
+#endif /* BCMSDIO */
/* Bus is ready, query any dongle information */
+#if defined(DHD_DEBUG) && defined(BCMSDIO)
+ f2_sync_start = OSL_SYSUPTIME();
+#endif /* DHD_DEBUG && BCMSDIO */
if ((ret = dhd_sync_with_dongle(&dhd->pub)) < 0) {
DHD_GENERAL_LOCK(&dhd->pub, flags);
dhd->wd_timer_valid = FALSE;
DHD_GENERAL_UNLOCK(&dhd->pub, flags);
del_timer_sync(&dhd->timer);
DHD_ERROR(("%s failed to sync with dongle\n", __FUNCTION__));
+ DHD_OS_WD_WAKE_UNLOCK(&dhd->pub);
DHD_PERIM_UNLOCK(dhdp);
return ret;
}
+
+#if defined(CONFIG_SOC_EXYNOS8895) || defined(CONFIG_SOC_EXYNOS9810) || \
+ defined(CONFIG_SOC_EXYNOS9820)
+ DHD_ERROR(("%s: Enable L1ss EP side\n", __FUNCTION__));
+ exynos_pcie_l1ss_ctrl(1, PCIE_L1SS_CTRL_WIFI);
+#endif /* CONFIG_SOC_EXYNOS8895 || CONFIG_SOC_EXYNOS9810 || CONFIG_SOC_EXYNOS9820 */
+
+#if defined(DHD_DEBUG) && defined(BCMSDIO)
+ f2_sync_end = OSL_SYSUPTIME();
+ DHD_ERROR(("Time taken for FW download and F2 ready is: %d msec\n",
+ (fw_download_end - fw_download_start) + (f2_sync_end - f2_sync_start)));
+#endif /* DHD_DEBUG && BCMSDIO */
#ifdef ARP_OFFLOAD_SUPPORT
if (dhd->pend_ipaddr) {
@@ -8086,13 +9589,10 @@
}
#endif /* ARP_OFFLOAD_SUPPORT */
-#if defined(TRAFFIC_MGMT_DWM)
- bzero(&dhd->pub.dhd_tm_dwm_tbl, sizeof(dhd_trf_mgmt_dwm_tbl_t));
-#endif
DHD_PERIM_UNLOCK(dhdp);
+
return 0;
}
-#endif /* BCMDBUS */
#ifdef WLTDLS
int _dhd_tdls_enable(dhd_pub_t *dhd, bool tdls_on, bool auto_on, struct ether_addr *mac)
{
@@ -8102,6 +9602,9 @@
uint32 tdls_idle_time = CUSTOM_TDLS_IDLE_MODE_SETTING;
int32 tdls_rssi_high = CUSTOM_TDLS_RSSI_THRESHOLD_HIGH;
int32 tdls_rssi_low = CUSTOM_TDLS_RSSI_THRESHOLD_LOW;
+ uint32 tdls_pktcnt_high = CUSTOM_TDLS_PCKTCNT_THRESHOLD_HIGH;
+ uint32 tdls_pktcnt_low = CUSTOM_TDLS_PCKTCNT_THRESHOLD_LOW;
+
BCM_REFERENCE(mac);
if (!FW_SUPPORTED(dhd, tdls))
return BCME_ERROR;
@@ -8143,6 +9646,18 @@
DHD_ERROR(("%s: tdls_rssi_low failed %d\n", __FUNCTION__, ret));
goto exit;
}
+ ret = dhd_iovar(dhd, 0, "tdls_trigger_pktcnt_high", (char *)&tdls_pktcnt_high,
+ sizeof(tdls_pktcnt_high), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: tdls_trigger_pktcnt_high failed %d\n", __FUNCTION__, ret));
+ goto exit;
+ }
+ ret = dhd_iovar(dhd, 0, "tdls_trigger_pktcnt_low", (char *)&tdls_pktcnt_low,
+ sizeof(tdls_pktcnt_low), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: tdls_trigger_pktcnt_low failed %d\n", __FUNCTION__, ret));
+ goto exit;
+ }
}
exit:
@@ -8165,7 +9680,15 @@
bool auto_on = false;
uint32 mode = wfd_mode;
+#ifdef ENABLE_TDLS_AUTO_MODE
+ if (wfd_mode) {
+ auto_on = false;
+ } else {
+ auto_on = true;
+ }
+#else
auto_on = false;
+#endif /* ENABLE_TDLS_AUTO_MODE */
ret = _dhd_tdls_enable(dhd, false, auto_on, NULL);
if (ret < 0) {
DHD_ERROR(("Disable tdls_auto_op failed. %d\n", ret));
@@ -8188,62 +9711,78 @@
return ret;
}
#ifdef PCIE_FULL_DONGLE
-void dhd_tdls_update_peer_info(struct net_device *dev, bool connect, uint8 *da)
+int dhd_tdls_update_peer_info(dhd_pub_t *dhdp, wl_event_msg_t *event)
{
- dhd_info_t *dhd = DHD_DEV_INFO(dev);
- dhd_pub_t *dhdp = (dhd_pub_t *)&dhd->pub;
- tdls_peer_node_t *cur = dhdp->peer_tbl.node;
+ dhd_pub_t *dhd_pub = dhdp;
+ tdls_peer_node_t *cur = dhd_pub->peer_tbl.node;
tdls_peer_node_t *new = NULL, *prev = NULL;
- dhd_if_t *dhdif;
- uint8 sa[ETHER_ADDR_LEN];
- int ifidx = dhd_net2idx(dhd, dev);
+ int ifindex = dhd_ifname2idx(dhd_pub->info, event->ifname);
+ uint8 *da = (uint8 *)&event->addr.octet[0];
+ bool connect = FALSE;
+ uint32 reason = ntoh32(event->reason);
+ unsigned long flags;
- if (ifidx == DHD_BAD_IF)
- return;
-
- dhdif = dhd->iflist[ifidx];
- memcpy(sa, dhdif->mac_addr, ETHER_ADDR_LEN);
+ /* No handling needed for peer discovered reason */
+ if (reason == WLC_E_TDLS_PEER_DISCOVERED) {
+ return BCME_ERROR;
+ }
+ if (reason == WLC_E_TDLS_PEER_CONNECTED)
+ connect = TRUE;
+ else if (reason == WLC_E_TDLS_PEER_DISCONNECTED)
+ connect = FALSE;
+ else
+ {
+ DHD_ERROR(("%s: TDLS Event reason is unknown\n", __FUNCTION__));
+ return BCME_ERROR;
+ }
+ if (ifindex == DHD_BAD_IF)
+ return BCME_ERROR;
if (connect) {
while (cur != NULL) {
if (!memcmp(da, cur->addr, ETHER_ADDR_LEN)) {
DHD_ERROR(("%s: TDLS Peer exist already %d\n",
__FUNCTION__, __LINE__));
- return;
+ return BCME_ERROR;
}
cur = cur->next;
}
- new = MALLOC(dhdp->osh, sizeof(tdls_peer_node_t));
+ new = MALLOC(dhd_pub->osh, sizeof(tdls_peer_node_t));
if (new == NULL) {
DHD_ERROR(("%s: Failed to allocate memory\n", __FUNCTION__));
- return;
+ return BCME_ERROR;
}
memcpy(new->addr, da, ETHER_ADDR_LEN);
- new->next = dhdp->peer_tbl.node;
- dhdp->peer_tbl.node = new;
- dhdp->peer_tbl.tdls_peer_count++;
+ DHD_TDLS_LOCK(&dhdp->tdls_lock, flags);
+ new->next = dhd_pub->peer_tbl.node;
+ dhd_pub->peer_tbl.node = new;
+ dhd_pub->peer_tbl.tdls_peer_count++;
+ DHD_TDLS_UNLOCK(&dhdp->tdls_lock, flags);
} else {
while (cur != NULL) {
if (!memcmp(da, cur->addr, ETHER_ADDR_LEN)) {
- dhd_flow_rings_delete_for_peer(dhdp, ifidx, da);
+ dhd_flow_rings_delete_for_peer(dhd_pub, (uint8)ifindex, da);
+ DHD_TDLS_LOCK(&dhdp->tdls_lock, flags);
if (prev)
prev->next = cur->next;
else
- dhdp->peer_tbl.node = cur->next;
- MFREE(dhdp->osh, cur, sizeof(tdls_peer_node_t));
- dhdp->peer_tbl.tdls_peer_count--;
- return;
+ dhd_pub->peer_tbl.node = cur->next;
+ MFREE(dhd_pub->osh, cur, sizeof(tdls_peer_node_t));
+ dhd_pub->peer_tbl.tdls_peer_count--;
+ DHD_TDLS_UNLOCK(&dhdp->tdls_lock, flags);
+ return BCME_OK;
}
prev = cur;
cur = cur->next;
}
DHD_ERROR(("%s: TDLS Peer Entry Not found\n", __FUNCTION__));
}
+ return BCME_OK;
}
#endif /* PCIE_FULL_DONGLE */
-#endif /* BCMDBUS */
+#endif // endif
bool dhd_is_concurrent_mode(dhd_pub_t *dhd)
{
@@ -8258,7 +9797,7 @@
else
return FALSE;
}
-#if !defined(AP) && defined(WLP2P)
+#if defined(OEM_ANDROID) && !defined(AP) && defined(WLP2P)
/* From Android JerryBean release, the concurrent mode is enabled by default and the firmware
* name would be fw_bcmdhd.bin. So we need to determine whether P2P is enabled in the STA
* firmware and accordingly enable concurrent mode (Apply P2P settings). SoftAP firmware
@@ -8300,112 +9839,248 @@
if (FW_SUPPORTED(dhd, rsdb)) {
ret |= DHD_FLAG_RSDB_MODE;
}
+#ifdef WL_SUPPORT_MULTIP2P
if (FW_SUPPORTED(dhd, mp2p)) {
ret |= DHD_FLAG_MP2P_MODE;
}
+#endif /* WL_SUPPORT_MULTIP2P */
#if defined(WL_ENABLE_P2P_IF) || defined(WL_CFG80211_P2P_DEV_IF)
- /* For customer_hw4, although ICS,
- * we still support concurrent mode
- */
return ret;
#else
return 0;
-#endif
+#endif /* WL_ENABLE_P2P_IF || WL_CFG80211_P2P_DEV_IF */
}
}
}
return 0;
}
-#endif
+#endif /* defined(OEM_ANDROID) && !defined(AP) && defined(WLP2P) */
-#ifdef SUPPORT_AP_POWERSAVE
-#define RXCHAIN_PWRSAVE_PPS 10
-#define RXCHAIN_PWRSAVE_QUIET_TIME 10
-#define RXCHAIN_PWRSAVE_STAS_ASSOC_CHECK 0
-int dhd_set_ap_powersave(dhd_pub_t *dhdp, int ifidx, int enable)
+#ifdef WLAIBSS
+int
+dhd_preinit_aibss_ioctls(dhd_pub_t *dhd, char *iov_buf_smlen)
{
- char iovbuf[128];
- int32 pps = RXCHAIN_PWRSAVE_PPS;
- int32 quiet_time = RXCHAIN_PWRSAVE_QUIET_TIME;
- int32 stas_assoc_check = RXCHAIN_PWRSAVE_STAS_ASSOC_CHECK;
- int ret;
+ int ret = BCME_OK;
+ aibss_bcn_force_config_t bcn_config;
+ uint32 aibss;
+#ifdef WLAIBSS_PS
+ uint32 aibss_ps;
+ s32 atim;
+#endif /* WLAIBSS_PS */
+ int ibss_coalesce;
- if (enable) {
- ret = dhd_iovar(dhdp, 0, "rxchain_pwrsave_enable", (char *)&enable, sizeof(enable),
- NULL, 0, TRUE);
- if (ret != BCME_OK) {
- DHD_ERROR(("Failed to enable AP power save"));
- }
- ret = dhd_iovar(dhdp, 0, "rxchain_pwrsave_pps", (char *)&pps, sizeof(pps), NULL, 0,
- TRUE);
- if (ret != BCME_OK) {
- DHD_ERROR(("Failed to set pps"));
- }
- ret = dhd_iovar(dhdp, 0, "rxchain_pwrsave_quiet_time", (char *)&quiet_time,
- sizeof(quiet_time), NULL, 0, TRUE);
- if (ret != BCME_OK) {
- DHD_ERROR(("Failed to set quiet time"));
- }
- ret = dhd_iovar(dhdp., 0, "rxchain_pwrsave_stas_assoc_check",
- (char *)&stas_assoc_check, sizeof(stas_assoc_check), NULL, 0, TRUE);
- if (ret != BCME_OK) {
- DHD_ERROR(("Failed to set stas assoc check"));
- }
- } else {
- ret = dhd_iovar(dhdp, 0, "rxchain_pwrsave_enable", (char *)&enable, sizeof(enable),
- NULL, 0, TRUE);
- if (ret != BCME_OK) {
- DHD_ERROR(("Failed to disable AP power save"));
+ aibss = 1;
+ ret = dhd_iovar(dhd, 0, "aibss", (char *)&aibss, sizeof(aibss), NULL, 0, TRUE);
+ if (ret < 0) {
+ if (ret == BCME_UNSUPPORTED) {
+ DHD_ERROR(("%s aibss is not supported\n",
+ __FUNCTION__));
+ return BCME_OK;
+ } else {
+ DHD_ERROR(("%s Set aibss to %d failed %d\n",
+ __FUNCTION__, aibss, ret));
+ return ret;
}
}
- return 0;
+#ifdef WLAIBSS_PS
+ aibss_ps = 1;
+ ret = dhd_iovar(dhd, 0, "aibss_ps", (char *)&aibss_ps, sizeof(aibss_ps), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s Set aibss PS to %d failed %d\n",
+ __FUNCTION__, aibss, ret));
+ return ret;
+ }
+
+ atim = 10;
+ if ((ret = dhd_wl_ioctl_cmd(dhd, WLC_SET_ATIM,
+ (char *)&atim, sizeof(atim), TRUE, 0)) < 0) {
+ DHD_ERROR(("%s Enable custom IBSS ATIM mode failed %d\n",
+ __FUNCTION__, ret));
+ return ret;
+ }
+#endif /* WLAIBSS_PS */
+
+ memset(&bcn_config, 0, sizeof(bcn_config));
+ bcn_config.initial_min_bcn_dur = AIBSS_INITIAL_MIN_BCN_DUR;
+ bcn_config.min_bcn_dur = AIBSS_MIN_BCN_DUR;
+ bcn_config.bcn_flood_dur = AIBSS_BCN_FLOOD_DUR;
+ bcn_config.version = AIBSS_BCN_FORCE_CONFIG_VER_0;
+ bcn_config.len = sizeof(bcn_config);
+
+ ret = dhd_iovar(dhd, 0, "aibss_bcn_force_config", (char *)&bcn_config,
+ sizeof(aibss_bcn_force_config_t), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s Set aibss_bcn_force_config to %d, %d, %d failed %d\n",
+ __FUNCTION__, AIBSS_INITIAL_MIN_BCN_DUR, AIBSS_MIN_BCN_DUR,
+ AIBSS_BCN_FLOOD_DUR, ret));
+ return ret;
+ }
+
+ ibss_coalesce = IBSS_COALESCE_DEFAULT;
+ ret = dhd_iovar(dhd, 0, "ibss_coalesce_allowed", (char *)&ibss_coalesce,
+ sizeof(ibss_coalesce), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s Set ibss_coalesce_allowed failed %d\n",
+ __FUNCTION__, ret));
+ return ret;
+ }
+
+ dhd->op_mode |= DHD_FLAG_IBSS_MODE;
+ return BCME_OK;
}
-#endif /* SUPPORT_AP_POWERSAVE */
+#endif /* WLAIBSS */
+
+#if defined(WLADPS) || defined(WLADPS_PRIVATE_CMD)
+#ifdef WL_BAM
+static int
+dhd_check_adps_bad_ap(dhd_pub_t *dhd)
+{
+ struct net_device *ndev;
+ struct bcm_cfg80211 *cfg;
+ struct wl_profile *profile;
+ struct ether_addr bssid;
+
+ if (!dhd_is_associated(dhd, 0, NULL)) {
+ DHD_ERROR(("%s - not associated\n", __FUNCTION__));
+ return BCME_OK;
+ }
+
+ ndev = dhd_linux_get_primary_netdev(dhd);
+ if (!ndev) {
+ DHD_ERROR(("%s: Cannot find primary netdev\n", __FUNCTION__));
+ return -ENODEV;
+ }
+
+ cfg = wl_get_cfg(ndev);
+ if (!cfg) {
+ DHD_ERROR(("%s: Cannot find cfg\n", __FUNCTION__));
+ return -EINVAL;
+ }
+
+ profile = wl_get_profile_by_netdev(cfg, ndev);
+ memcpy(bssid.octet, profile->bssid, ETHER_ADDR_LEN);
+ if (wl_adps_bad_ap_check(cfg, &bssid)) {
+ if (wl_adps_enabled(cfg, ndev)) {
+ wl_adps_set_suspend(cfg, ndev, ADPS_SUSPEND);
+ }
+ }
+
+ return BCME_OK;
+}
+#endif /* WL_BAM */
+
+int
+dhd_enable_adps(dhd_pub_t *dhd, uint8 on)
+{
+ int i;
+ int len;
+ int ret = BCME_OK;
+
+ bcm_iov_buf_t *iov_buf = NULL;
+ wl_adps_params_v1_t *data = NULL;
+
+ len = OFFSETOF(bcm_iov_buf_t, data) + sizeof(*data);
+ iov_buf = MALLOC(dhd->osh, len);
+ if (iov_buf == NULL) {
+ DHD_ERROR(("%s - failed to allocate %d bytes for iov_buf\n", __FUNCTION__, len));
+ ret = BCME_NOMEM;
+ goto exit;
+ }
+
+ iov_buf->version = WL_ADPS_IOV_VER;
+ iov_buf->len = sizeof(*data);
+ iov_buf->id = WL_ADPS_IOV_MODE;
+
+ data = (wl_adps_params_v1_t *)iov_buf->data;
+ data->version = ADPS_SUB_IOV_VERSION_1;
+ data->length = sizeof(*data);
+ data->mode = on;
+
+ for (i = 1; i <= MAX_BANDS; i++) {
+ data->band = i;
+ ret = dhd_iovar(dhd, 0, "adps", (char *)iov_buf, len, NULL, 0, TRUE);
+ if (ret < 0) {
+ if (ret == BCME_UNSUPPORTED) {
+ DHD_ERROR(("%s adps is not supported\n", __FUNCTION__));
+ ret = BCME_OK;
+ goto exit;
+ }
+ else {
+ DHD_ERROR(("%s fail to set adps %s for band %d (%d)\n",
+ __FUNCTION__, on ? "On" : "Off", i, ret));
+ goto exit;
+ }
+ }
+ }
+
+#ifdef WL_BAM
+ if (on) {
+ dhd_check_adps_bad_ap(dhd);
+ }
+#endif /* WL_BAM */
+
+exit:
+ if (iov_buf) {
+ MFREE(dhd->osh, iov_buf, len);
+ iov_buf = NULL;
+ }
+ return ret;
+}
+#endif /* WLADPS || WLADPS_PRIVATE_CMD */
int
dhd_preinit_ioctls(dhd_pub_t *dhd)
{
int ret = 0;
char eventmask[WL_EVENTING_MASK_LEN];
- char iovbuf[WL_EVENTING_MASK_LEN + 12]; /* Room for "event_msgs" + '\0' + bitvec */
+ char iovbuf[WL_EVENTING_MASK_LEN + 12]; /* Room for "event_msgs" + '\0' + bitvec */
uint32 buf_key_b4_m4 = 1;
uint8 msglen;
eventmsgs_ext_t *eventmask_msg = NULL;
+ uint32 event_log_max_sets = 0;
char* iov_buf = NULL;
int ret2 = 0;
-#if defined(CUSTOM_AMPDU_BA_WSIZE)
+ uint32 wnm_cap = 0;
+#if defined(BCMSUP_4WAY_HANDSHAKE)
+ uint32 sup_wpa = 1;
+#endif /* BCMSUP_4WAY_HANDSHAKE */
+#if defined(CUSTOM_AMPDU_BA_WSIZE) || (defined(WLAIBSS) && \
+ defined(CUSTOM_IBSS_AMPDU_BA_WSIZE))
uint32 ampdu_ba_wsize = 0;
-#endif
+#endif /* CUSTOM_AMPDU_BA_WSIZE ||(WLAIBSS && CUSTOM_IBSS_AMPDU_BA_WSIZE) */
#if defined(CUSTOM_AMPDU_MPDU)
int32 ampdu_mpdu = 0;
-#endif
+#endif // endif
#if defined(CUSTOM_AMPDU_RELEASE)
int32 ampdu_release = 0;
-#endif
+#endif // endif
#if defined(CUSTOM_AMSDU_AGGSF)
int32 amsdu_aggsf = 0;
-#endif
+#endif // endif
-#if defined(BCMSDIO) || defined(BCMDBUS)
+#if defined(BCMSDIO)
#ifdef PROP_TXSTATUS
int wlfc_enable = TRUE;
#ifndef DISABLE_11N
uint32 hostreorder = 1;
+ uint chipid = 0;
#endif /* DISABLE_11N */
#endif /* PROP_TXSTATUS */
-#endif /* defined(BCMSDIO) || defined(BCMDBUS) */
+#endif // endif
#ifndef PCIE_FULL_DONGLE
uint32 wl_ap_isolate;
#endif /* PCIE_FULL_DONGLE */
+ uint32 frameburst = CUSTOM_FRAMEBURST_SET;
+ uint wnm_bsstrans_resp = 0;
+#ifdef SUPPORT_SET_CAC
+ uint32 cac = 1;
+#endif /* SUPPORT_SET_CAC */
+#ifdef DHD_BUS_MEM_ACCESS
+ uint32 enable_memuse = 1;
+#endif /* DHD_BUS_MEM_ACCESS */
-#if defined(BCMSDIO) || defined(DISABLE_FRAMEBURST)
- /* default frame burst enabled for PCIe, disabled for SDIO dongles and media targets */
- uint32 frameburst = 0;
-#else
- uint32 frameburst = 1;
-#endif /* BCMSDIO */
-
+#ifdef OEM_ANDROID
#ifdef DHD_ENABLE_LPC
uint32 lpc = 1;
#endif /* DHD_ENABLE_LPC */
@@ -8414,34 +10089,43 @@
uint32 dongle_align = DHD_SDALIGN;
uint32 glom = CUSTOM_GLOM_SETTING;
#endif /* defined(BCMSDIO) */
-#if defined(CUSTOMER_HW2) && defined(USE_WL_CREDALL)
+#if (defined(CUSTOMER_HW2) || defined(BOARD_HIKEY)) && defined(USE_WL_CREDALL)
uint32 credall = 1;
-#endif
-#if defined(VSDB) || defined(ROAM_ENABLE)
+#endif // endif
uint bcn_timeout = CUSTOM_BCN_TIMEOUT;
-#else
- uint bcn_timeout = 4;
-#endif
+ uint scancache_enab = TRUE;
+#ifdef ENABLE_BCN_LI_BCN_WAKEUP
+ uint32 bcn_li_bcn = 1;
+#endif /* ENABLE_BCN_LI_BCN_WAKEUP */
uint retry_max = CUSTOM_ASSOC_RETRY_MAX;
#if defined(ARP_OFFLOAD_SUPPORT)
- int arpoe = 1;
-#endif
+ int arpoe = 0;
+#endif // endif
int scan_assoc_time = DHD_SCAN_ASSOC_ACTIVE_TIME;
int scan_unassoc_time = DHD_SCAN_UNASSOC_ACTIVE_TIME;
int scan_passive_time = DHD_SCAN_PASSIVE_TIME;
char buf[WLC_IOCTL_SMLEN];
char *ptr;
uint32 listen_interval = CUSTOM_LISTEN_INTERVAL; /* Default Listen Interval in Beacons */
+#if defined(DHD_8021X_DUMP) && defined(SHOW_LOGTRACE)
+ wl_el_tag_params_t *el_tag = NULL;
+#endif /* DHD_8021X_DUMP */
#ifdef ROAM_ENABLE
uint roamvar = 0;
int roam_trigger[2] = {CUSTOM_ROAM_TRIGGER_SETTING, WLC_BAND_ALL};
int roam_scan_period[2] = {10, WLC_BAND_ALL};
int roam_delta[2] = {CUSTOM_ROAM_DELTA_SETTING, WLC_BAND_ALL};
+#ifdef ROAM_AP_ENV_DETECTION
+ int roam_env_mode = AP_ENV_INDETERMINATE;
+#endif /* ROAM_AP_ENV_DETECTION */
#ifdef FULL_ROAMING_SCAN_PERIOD_60_SEC
int roam_fullscan_period = 60;
#else /* FULL_ROAMING_SCAN_PERIOD_60_SEC */
int roam_fullscan_period = 120;
#endif /* FULL_ROAMING_SCAN_PERIOD_60_SEC */
+#ifdef DISABLE_BCNLOSS_ROAM
+ uint roam_bcnloss_off = 1;
+#endif /* DISABLE_BCNLOSS_ROAM */
#else
#ifdef DISABLE_BUILTIN_ROAM
uint roamvar = 1;
@@ -8450,11 +10134,13 @@
#if defined(SOFTAP)
uint dtim = 1;
-#endif
+#endif // endif
#if (defined(AP) && !defined(WLP2P)) || (!defined(AP) && defined(WL_CFG80211))
- uint32 mpc = 0; /* Turn MPC off for AP/APSTA mode */
struct ether_addr p2p_ea;
-#endif
+#endif // endif
+#ifdef BCMCCX
+ uint32 ccx = 1;
+#endif // endif
#ifdef SOFTAP_UAPSD_OFF
uint32 wme_apsd = 0;
#endif /* SOFTAP_UAPSD_OFF */
@@ -8467,6 +10153,9 @@
#ifdef GET_CUSTOM_MAC_ENABLE
struct ether_addr ea_addr;
#endif /* GET_CUSTOM_MAC_ENABLE */
+#ifdef OKC_SUPPORT
+ uint32 okc = 1;
+#endif // endif
#ifdef DISABLE_11N
uint32 nmode = 0;
@@ -8478,24 +10167,124 @@
#ifdef DISABLE_TXBFR
uint32 txbf_bfr_cap = 0;
#endif /* DISABLE_TXBFR */
+#ifdef AMPDU_VO_ENABLE
+ struct ampdu_tid_control tid;
+#endif // endif
#if defined(PROP_TXSTATUS)
+#ifdef USE_WFA_CERT_CONF
+ uint32 proptx = 0;
+#endif /* USE_WFA_CERT_CONF */
#endif /* PROP_TXSTATUS */
+#ifdef DHD_SET_FW_HIGHSPEED
+ uint32 ack_ratio = 250;
+ uint32 ack_ratio_depth = 64;
+#endif /* DHD_SET_FW_HIGHSPEED */
+#if defined(SUPPORT_2G_VHT) || defined(SUPPORT_5G_1024QAM_VHT)
+ uint32 vht_features = 0; /* init to 0, will be set based on each support */
+#endif /* SUPPORT_2G_VHT || SUPPORT_5G_1024QAM_VHT */
+#ifdef DISABLE_11N_PROPRIETARY_RATES
+ uint32 ht_features = 0;
+#endif /* DISABLE_11N_PROPRIETARY_RATES */
#ifdef CUSTOM_PSPRETEND_THR
uint32 pspretend_thr = CUSTOM_PSPRETEND_THR;
-#endif
- uint32 rsdb_mode = 0;
+#endif // endif
+#ifdef CUSTOM_EVENT_PM_WAKE
+ uint32 pm_awake_thresh = CUSTOM_EVENT_PM_WAKE;
+#endif /* CUSTOM_EVENT_PM_WAKE */
+#ifdef DISABLE_PRUNED_SCAN
+ uint32 scan_features = 0;
+#endif /* DISABLE_PRUNED_SCAN */
+#ifdef BCMPCIE_OOB_HOST_WAKE
+ uint32 hostwake_oob = 0;
+#endif /* BCMPCIE_OOB_HOST_WAKE */
+#ifdef EVENT_LOG_RATE_HC
+ /* threshold number of lines per second */
+#define EVENT_LOG_RATE_HC_THRESHOLD 1000
+ uint32 event_log_rate_hc = EVENT_LOG_RATE_HC_THRESHOLD;
+#endif /* EVENT_LOG_RATE_HC */
+#if defined(WBTEXT) && defined(WBTEXT_BTMDELTA)
+ uint32 btmdelta = WBTEXT_BTMDELTA;
+#endif /* WBTEXT && WBTEXT_BTMDELTA */
+ wl_wlc_version_t wlc_ver;
+
#ifdef PKT_FILTER_SUPPORT
dhd_pkt_filter_enable = TRUE;
+#ifdef APF
+ dhd->apf_set = FALSE;
+#endif /* APF */
#endif /* PKT_FILTER_SUPPORT */
-#ifdef WLTDLS
- dhd->tdls_enable = FALSE;
- dhd_tdls_set_mode(dhd, false);
-#endif /* WLTDLS */
dhd->suspend_bcn_li_dtim = CUSTOM_SUSPEND_BCN_LI_DTIM;
+#ifdef ENABLE_MAX_DTIM_IN_SUSPEND
+ dhd->max_dtim_enable = TRUE;
+#else
+ dhd->max_dtim_enable = FALSE;
+#endif /* ENABLE_MAX_DTIM_IN_SUSPEND */
+ dhd->disable_dtim_in_suspend = FALSE;
+#ifdef CUSTOM_SET_OCLOFF
+ dhd->ocl_off = FALSE;
+#endif /* CUSTOM_SET_OCLOFF */
+#ifdef SUPPORT_SET_TID
+ dhd->tid_mode = SET_TID_OFF;
+ dhd->target_uid = 0;
+ dhd->target_tid = 0;
+#endif /* SUPPORT_SET_TID */
DHD_TRACE(("Enter %s\n", __FUNCTION__));
dhd->op_mode = 0;
+
+#if defined(CUSTOM_COUNTRY_CODE) && (defined(CUSTOMER_HW2) || defined(BOARD_HIKEY))
+ /* clear AP flags */
+ dhd->dhd_cflags &= ~WLAN_PLAT_AP_FLAG;
+#endif /* CUSTOM_COUNTRY_CODE && (CUSTOMER_HW2 || BOARD_HIKEY) */
+
+#ifdef CUSTOMER_HW4_DEBUG
+ if (!dhd_validate_chipid(dhd)) {
+ DHD_ERROR(("%s: CONFIG_BCMXXX and CHIP ID(%x) is mismatched\n",
+ __FUNCTION__, dhd_bus_chip_id(dhd)));
+#ifndef SUPPORT_MULTIPLE_CHIPS
+ ret = BCME_BADARG;
+ goto done;
+#endif /* !SUPPORT_MULTIPLE_CHIPS */
+ }
+#endif /* CUSTOMER_HW4_DEBUG */
+
+ /* query for 'ver' to get version info from firmware */
+ memset(buf, 0, sizeof(buf));
+ ptr = buf;
+ ret = dhd_iovar(dhd, 0, "ver", NULL, 0, (char *)&buf, sizeof(buf), FALSE);
+ if (ret < 0)
+ DHD_ERROR(("%s failed %d\n", __FUNCTION__, ret));
+ else {
+ bcmstrtok(&ptr, "\n", 0);
+ /* Print fw version info */
+ DHD_ERROR(("Firmware version = %s\n", buf));
+ strncpy(fw_version, buf, FW_VER_STR_LEN);
+ fw_version[FW_VER_STR_LEN-1] = '\0';
+#if defined(BCMSDIO) || defined(BCMPCIE) || defined(BCMSPI)
+ dhd_set_version_info(dhd, buf);
+#endif /* BCMSDIO || BCMPCIE */
+ }
+
+#ifdef BOARD_HIKEY
+ /* Set op_mode as MFG_MODE if WLTEST is present in "wl ver" */
+ if (strstr(fw_version, "WLTEST") != NULL) {
+ DHD_ERROR(("%s: wl ver has WLTEST, setting op_mode as DHD_FLAG_MFG_MODE\n",
+ __FUNCTION__));
+ op_mode = DHD_FLAG_MFG_MODE;
+ }
+#endif /* BOARD_HIKEY */
+
if ((!op_mode && dhd_get_fw_mode(dhd->info) == DHD_FLAG_MFG_MODE) ||
(op_mode == DHD_FLAG_MFG_MODE)) {
+ dhd->op_mode = DHD_FLAG_MFG_MODE;
+#ifdef DHD_PCIE_NATIVE_RUNTIMEPM
+ /* disable runtimePM by default in MFG mode. */
+ pm_runtime_disable(dhd_bus_to_dev(dhd->bus));
+#endif /* DHD_PCIE_NATIVE_RUNTIMEPM */
+#ifdef DHD_PCIE_RUNTIMEPM
+ /* Disable RuntimePM in mfg mode */
+ DHD_DISABLE_RUNTIME_PM(dhd);
+ DHD_ERROR(("%s : Disable RuntimePM in Manufactring Firmware\n", __FUNCTION__));
+#endif /* DHD_PCIE_RUNTIME_PM */
/* Check and adjust IOCTL response timeout for Manufactring firmware */
dhd_os_set_ioctl_resp_timeout(MFG_IOCTL_RESP_TIMEOUT);
DHD_ERROR(("%s : Set IOCTL response time for Manufactring Firmware\n",
@@ -8504,6 +10293,46 @@
dhd_os_set_ioctl_resp_timeout(IOCTL_RESP_TIMEOUT);
DHD_INFO(("%s : Set IOCTL response time.\n", __FUNCTION__));
}
+#ifdef BCMPCIE_OOB_HOST_WAKE
+ ret = dhd_iovar(dhd, 0, "bus:hostwake_oob", NULL, 0, (char *)&hostwake_oob,
+ sizeof(hostwake_oob), FALSE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: hostwake_oob IOVAR not present, proceed\n", __FUNCTION__));
+ } else {
+ if (hostwake_oob == 0) {
+ DHD_ERROR(("%s: hostwake_oob is not enabled in the NVRAM, STOP\n",
+ __FUNCTION__));
+ ret = BCME_UNSUPPORTED;
+ goto done;
+ } else {
+ DHD_ERROR(("%s: hostwake_oob enabled\n", __FUNCTION__));
+ }
+ }
+#endif /* BCMPCIE_OOB_HOST_WAKE */
+
+#ifdef DNGL_AXI_ERROR_LOGGING
+ ret = dhd_iovar(dhd, 0, "axierror_logbuf_addr", NULL, 0, (char *)&dhd->axierror_logbuf_addr,
+ sizeof(dhd->axierror_logbuf_addr), FALSE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: axierror_logbuf_addr IOVAR not present, proceed\n", __FUNCTION__));
+ dhd->axierror_logbuf_addr = 0;
+ } else {
+ DHD_ERROR(("%s: axierror_logbuf_addr : 0x%x\n", __FUNCTION__,
+ dhd->axierror_logbuf_addr));
+ }
+#endif /* DNGL_AXI_ERROR_LOGGING */
+
+#ifdef EVENT_LOG_RATE_HC
+ ret = dhd_iovar(dhd, 0, "event_log_rate_hc", (char *)&event_log_rate_hc,
+ sizeof(event_log_rate_hc), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s event_log_rate_hc set failed %d\n", __FUNCTION__, ret));
+ } else {
+ DHD_ERROR(("%s event_log_rate_hc set with threshold:%d\n", __FUNCTION__,
+ event_log_rate_hc));
+ }
+#endif /* EVENT_LOG_RATE_HC */
+
#ifdef GET_CUSTOM_MAC_ENABLE
ret = wifi_platform_get_mac_addr(dhd->info->adapter, ea_addr.octet);
if (!ret) {
@@ -8531,6 +10360,11 @@
}
#endif /* GET_CUSTOM_MAC_ENABLE */
+ if ((ret = dhd_apply_default_clm(dhd, clm_path)) < 0) {
+ DHD_ERROR(("%s: CLM set failed. Abort initialization.\n", __FUNCTION__));
+ goto done;
+ }
+
/* get a capabilities from firmware */
{
uint32 cap_buf_size = sizeof(dhd->fw_capabilities);
@@ -8557,10 +10391,10 @@
dhd->op_mode = DHD_FLAG_HOSTAP_MODE;
#if defined(ARP_OFFLOAD_SUPPORT)
arpoe = 0;
-#endif
+#endif // endif
#ifdef PKT_FILTER_SUPPORT
dhd_pkt_filter_enable = FALSE;
-#endif
+#endif // endif
#ifdef SET_RANDOM_MAC_SOFTAP
SRANDOM32((uint)jiffies);
rand_mac = RANDOM32();
@@ -8578,16 +10412,9 @@
} else
memcpy(dhd->mac.octet, iovbuf, ETHER_ADDR_LEN);
#endif /* SET_RANDOM_MAC_SOFTAP */
-#if !defined(AP) && defined(WL_CFG80211)
- /* Turn off MPC in AP mode */
- ret = dhd_iovar(dhd, 0, "mpc", (char *)&mpc, sizeof(mpc), NULL, 0, TRUE);
- if (ret < 0) {
- DHD_ERROR(("%s mpc for HostAPD failed %d\n", __FUNCTION__, ret));
- }
-#endif
-#ifdef SUPPORT_AP_POWERSAVE
- dhd_set_ap_powersave(dhd, 0, TRUE);
-#endif /* SUPPORT_AP_POWERSAVE */
+#ifdef USE_DYNAMIC_F2_BLKSIZE
+ dhdsdio_func_blocksize(dhd, 2, sd_f2_blocksize);
+#endif /* USE_DYNAMIC_F2_BLKSIZE */
#ifdef SOFTAP_UAPSD_OFF
ret = dhd_iovar(dhd, 0, "wme_apsd", (char *)&wme_apsd, sizeof(wme_apsd), NULL, 0,
TRUE);
@@ -8596,6 +10423,10 @@
__FUNCTION__, ret));
}
#endif /* SOFTAP_UAPSD_OFF */
+#if defined(CUSTOM_COUNTRY_CODE) && (defined(CUSTOMER_HW2) || defined(BOARD_HIKEY))
+ /* set AP flag for specific country code of SOFTAP */
+ dhd->dhd_cflags |= WLAN_PLAT_AP_FLAG | WLAN_PLAT_NODFS_FLAG;
+#endif /* CUSTOM_COUNTRY_CODE && (CUSTOMER_HW2 || BOARD_HIKEY) */
} else if ((!op_mode && dhd_get_fw_mode(dhd->info) == DHD_FLAG_MFG_MODE) ||
(op_mode == DHD_FLAG_MFG_MODE)) {
#if defined(ARP_OFFLOAD_SUPPORT)
@@ -8605,37 +10436,45 @@
dhd_pkt_filter_enable = FALSE;
#endif /* PKT_FILTER_SUPPORT */
dhd->op_mode = DHD_FLAG_MFG_MODE;
+#ifdef USE_DYNAMIC_F2_BLKSIZE
+ dhdsdio_func_blocksize(dhd, 2, DYNAMIC_F2_BLKSIZE_FOR_NONLEGACY);
+#endif /* USE_DYNAMIC_F2_BLKSIZE */
+#ifndef CUSTOM_SET_ANTNPM
+#ifndef IGUANA_LEGACY_CHIPS
if (FW_SUPPORTED(dhd, rsdb)) {
- rsdb_mode = 0;
+ wl_config_t rsdb_mode;
+ memset(&rsdb_mode, 0, sizeof(rsdb_mode));
ret = dhd_iovar(dhd, 0, "rsdb_mode", (char *)&rsdb_mode, sizeof(rsdb_mode),
- NULL, 0, TRUE);
+ NULL, 0, TRUE);
if (ret < 0) {
DHD_ERROR(("%s Disable rsdb_mode is failed ret= %d\n",
__FUNCTION__, ret));
}
}
+#endif /* IGUANA_LEGACY_CHIPS */
+#endif /* !CUSTOM_SET_ANTNPM */
} else {
uint32 concurrent_mode = 0;
if ((!op_mode && dhd_get_fw_mode(dhd->info) == DHD_FLAG_P2P_MODE) ||
(op_mode == DHD_FLAG_P2P_MODE)) {
#if defined(ARP_OFFLOAD_SUPPORT)
arpoe = 0;
-#endif
+#endif // endif
#ifdef PKT_FILTER_SUPPORT
dhd_pkt_filter_enable = FALSE;
-#endif
+#endif // endif
dhd->op_mode = DHD_FLAG_P2P_MODE;
} else if ((!op_mode && dhd_get_fw_mode(dhd->info) == DHD_FLAG_IBSS_MODE) ||
(op_mode == DHD_FLAG_IBSS_MODE)) {
dhd->op_mode = DHD_FLAG_IBSS_MODE;
} else
dhd->op_mode = DHD_FLAG_STA_MODE;
-#if !defined(AP) && defined(WLP2P)
+#if defined(OEM_ANDROID) && !defined(AP) && defined(WLP2P)
if (dhd->op_mode != DHD_FLAG_IBSS_MODE &&
(concurrent_mode = dhd_get_concurrent_capabilites(dhd))) {
#if defined(ARP_OFFLOAD_SUPPORT)
arpoe = 1;
-#endif
+#endif // endif
dhd->op_mode |= concurrent_mode;
}
@@ -8651,7 +10490,7 @@
(char *)&ap_mode, sizeof(ap_mode), TRUE, 0)) < 0) {
DHD_ERROR(("%s WLC_SET_AP failed %d\n", __FUNCTION__, ret));
}
-#endif
+#endif // endif
memcpy(&p2p_ea, &dhd->mac, ETHER_ADDR_LEN);
ETHER_SET_LOCALADDR(&p2p_ea);
ret = dhd_iovar(dhd, 0, "p2p_da_override", (char *)&p2p_ea, sizeof(p2p_ea),
@@ -8663,17 +10502,53 @@
}
#else
(void)concurrent_mode;
-#endif
+#endif /* defined(OEM_ANDROID) && !defined(AP) && defined(WLP2P) */
}
+
+#ifdef DISABLE_PRUNED_SCAN
+ if (FW_SUPPORTED(dhd, rsdb)) {
+ ret = dhd_iovar(dhd, 0, "scan_features", (char *)&scan_features,
+ sizeof(scan_features), iovbuf, sizeof(iovbuf), FALSE);
+ if (ret < 0) {
+ DHD_ERROR(("%s get scan_features is failed ret=%d\n",
+ __FUNCTION__, ret));
+ } else {
+ memcpy(&scan_features, iovbuf, 4);
+ scan_features &= ~RSDB_SCAN_DOWNGRADED_CH_PRUNE_ROAM;
+ ret = dhd_iovar(dhd, 0, "scan_features", (char *)&scan_features,
+ sizeof(scan_features), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s set scan_features is failed ret=%d\n",
+ __FUNCTION__, ret));
+ }
+ }
+ }
+#endif /* DISABLE_PRUNED_SCAN */
DHD_ERROR(("Firmware up: op_mode=0x%04x, MAC="MACDBG"\n",
dhd->op_mode, MAC2STRDBG(dhd->mac.octet)));
- #if defined(RXFRAME_THREAD) && defined(RXTHREAD_ONLYSTA)
+#if defined(CUSTOMER_HW2) || defined(BOARD_HIKEY)
+#if defined(DHD_BLOB_EXISTENCE_CHECK)
+ if (!dhd->is_blob)
+#endif /* DHD_BLOB_EXISTENCE_CHECK */
+ {
+ /* get a ccode and revision for the country code */
+#if defined(CUSTOM_COUNTRY_CODE)
+ get_customized_country_code(dhd->info->adapter, dhd->dhd_cspec.country_abbrev,
+ &dhd->dhd_cspec, dhd->dhd_cflags);
+#else
+ get_customized_country_code(dhd->info->adapter, dhd->dhd_cspec.country_abbrev,
+ &dhd->dhd_cspec);
+#endif /* CUSTOM_COUNTRY_CODE */
+ }
+#endif /* CUSTOMER_HW2 || BOARD_HIKEY */
+
+#if defined(RXFRAME_THREAD) && defined(RXTHREAD_ONLYSTA)
if (dhd->op_mode == DHD_FLAG_HOSTAP_MODE)
dhd->info->rxthread_enabled = FALSE;
else
dhd->info->rxthread_enabled = TRUE;
- #endif
+#endif // endif
/* Set Country code */
if (dhd->dhd_cspec.ccode[0] != 0) {
ret = dhd_iovar(dhd, 0, "country", (char *)&dhd->dhd_cspec, sizeof(wl_country_t),
@@ -8682,7 +10557,6 @@
DHD_ERROR(("%s: country code setting failed\n", __FUNCTION__));
}
-
/* Set Listen Interval */
ret = dhd_iovar(dhd, 0, "assoc_listen", (char *)&listen_interval, sizeof(listen_interval),
NULL, 0, TRUE);
@@ -8690,10 +10564,19 @@
DHD_ERROR(("%s assoc_listen failed %d\n", __FUNCTION__, ret));
#if defined(ROAM_ENABLE) || defined(DISABLE_BUILTIN_ROAM)
+#ifdef USE_WFA_CERT_CONF
+ if (sec_get_param_wfa_cert(dhd, SET_PARAM_ROAMOFF, &roamvar) == BCME_OK) {
+ DHD_ERROR(("%s: read roam_off param =%d\n", __FUNCTION__, roamvar));
+ }
+#endif /* USE_WFA_CERT_CONF */
/* Disable built-in roaming to allowed ext supplicant to take care of roaming */
- dhd_iovar(dhd, 0, "roam_off", (char *)&roamvar, sizeof(roamvar), NULL, 0, TRUE);
+ ret = dhd_iovar(dhd, 0, "roam_off", (char *)&roamvar, sizeof(roamvar), NULL, 0, TRUE);
#endif /* ROAM_ENABLE || DISABLE_BUILTIN_ROAM */
#if defined(ROAM_ENABLE)
+#ifdef DISABLE_BCNLOSS_ROAM
+ ret = dhd_iovar(dhd, 0, "roam_bcnloss_off", (char *)&roam_bcnloss_off,
+ sizeof(roam_bcnloss_off), NULL, 0, TRUE);
+#endif /* DISABLE_BCNLOSS_ROAM */
if ((ret = dhd_wl_ioctl_cmd(dhd, WLC_SET_ROAM_TRIGGER, roam_trigger,
sizeof(roam_trigger), TRUE, 0)) < 0)
DHD_ERROR(("%s: roam trigger set failed %d\n", __FUNCTION__, ret));
@@ -8703,14 +10586,38 @@
if ((dhd_wl_ioctl_cmd(dhd, WLC_SET_ROAM_DELTA, roam_delta,
sizeof(roam_delta), TRUE, 0)) < 0)
DHD_ERROR(("%s: roam delta set failed %d\n", __FUNCTION__, ret));
- if ((ret = dhd_iovar(dhd, 0, "fullroamperiod", (char *)&roam_fullscan_period,
- sizeof(roam_fullscan_period), NULL, 0, TRUE)) < 0)
+ ret = dhd_iovar(dhd, 0, "fullroamperiod", (char *)&roam_fullscan_period,
+ sizeof(roam_fullscan_period), NULL, 0, TRUE);
+ if (ret < 0)
DHD_ERROR(("%s: roam fullscan period set failed %d\n", __FUNCTION__, ret));
+#ifdef ROAM_AP_ENV_DETECTION
+ if (roam_trigger[0] == WL_AUTO_ROAM_TRIGGER) {
+ if (dhd_iovar(dhd, 0, "roam_env_detection", (char *)&roam_env_mode,
+ sizeof(roam_env_mode), NULL, 0, TRUE) == BCME_OK)
+ dhd->roam_env_detection = TRUE;
+ else
+ dhd->roam_env_detection = FALSE;
+ }
+#endif /* ROAM_AP_ENV_DETECTION */
#endif /* ROAM_ENABLE */
+#ifdef CUSTOM_EVENT_PM_WAKE
+ ret = dhd_iovar(dhd, 0, "const_awake_thresh", (char *)&pm_awake_thresh,
+ sizeof(pm_awake_thresh), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s set const_awake_thresh failed %d\n", __FUNCTION__, ret));
+ }
+#endif /* CUSTOM_EVENT_PM_WAKE */
+#ifdef OKC_SUPPORT
+ ret = dhd_iovar(dhd, 0, "okc_enable", (char *)&okc, sizeof(okc), NULL, 0, TRUE);
+#endif // endif
+#ifdef BCMCCX
+ ret = dhd_iovar(dhd, 0, "ccx_enable", (char *)&ccx, sizeof(ccx), NULL, 0, TRUE);
+#endif /* BCMCCX */
+
#ifdef WLTDLS
- /* by default TDLS on and auto mode off */
- _dhd_tdls_enable(dhd, true, false, NULL);
+ dhd->tdls_enable = FALSE;
+ dhd_tdls_set_mode(dhd, false);
#endif /* WLTDLS */
#ifdef DHD_ENABLE_LPC
@@ -8718,53 +10625,89 @@
ret = dhd_iovar(dhd, 0, "lpc", (char *)&lpc, sizeof(lpc), NULL, 0, TRUE);
if (ret < 0) {
DHD_ERROR(("%s Set lpc failed %d\n", __FUNCTION__, ret));
+
+ if (ret == BCME_NOTDOWN) {
+ uint wl_down = 1;
+ ret = dhd_wl_ioctl_cmd(dhd, WLC_DOWN,
+ (char *)&wl_down, sizeof(wl_down), TRUE, 0);
+ DHD_ERROR(("%s lpc fail WL_DOWN : %d, lpc = %d\n", __FUNCTION__, ret, lpc));
+
+ ret = dhd_iovar(dhd, 0, "lpc", (char *)&lpc, sizeof(lpc), NULL, 0, TRUE);
+ DHD_ERROR(("%s Set lpc ret --> %d\n", __FUNCTION__, ret));
+ }
}
#endif /* DHD_ENABLE_LPC */
+#ifdef WLADPS
+ if (dhd->op_mode & DHD_FLAG_STA_MODE) {
+ if ((ret = dhd_enable_adps(dhd, ADPS_ENABLE)) != BCME_OK) {
+ DHD_ERROR(("%s dhd_enable_adps failed %d\n",
+ __FUNCTION__, ret));
+ }
+ }
+#endif /* WLADPS */
+
+#ifdef DHD_PM_CONTROL_FROM_FILE
+ sec_control_pm(dhd, &power_mode);
+#else
+#ifndef H2_BRING_UP
/* Set PowerSave mode */
- dhd_wl_ioctl_cmd(dhd, WLC_SET_PM, (char *)&power_mode, sizeof(power_mode), TRUE, 0);
+ (void) dhd_wl_ioctl_cmd(dhd, WLC_SET_PM, (char *)&power_mode, sizeof(power_mode), TRUE, 0);
+#endif // endif
+#endif /* DHD_PM_CONTROL_FROM_FILE */
#if defined(BCMSDIO)
/* Match Host and Dongle rx alignment */
- dhd_iovar(dhd, 0, "bus:txglomalign", (char *)&dongle_align, sizeof(dongle_align),
+ ret = dhd_iovar(dhd, 0, "bus:txglomalign", (char *)&dongle_align, sizeof(dongle_align),
NULL, 0, TRUE);
-#if defined(CUSTOMER_HW2) && defined(USE_WL_CREDALL)
+#if (defined(CUSTOMER_HW2) || defined(BOARD_HIKEY))&& defined(USE_WL_CREDALL)
/* enable credall to reduce the chance of no bus credit happened. */
- dhd_iovar(dhd, 0, "bus:credall", (char *)&credall, sizeof(credall), NULL, 0, TRUE);
-#endif
+ ret = dhd_iovar(dhd, 0, "bus:credall", (char *)&credall, sizeof(credall), NULL, 0, TRUE);
+#endif // endif
+#ifdef USE_WFA_CERT_CONF
+ if (sec_get_param_wfa_cert(dhd, SET_PARAM_BUS_TXGLOM_MODE, &glom) == BCME_OK) {
+ DHD_ERROR(("%s, read txglom param =%d\n", __FUNCTION__, glom));
+ }
+#endif /* USE_WFA_CERT_CONF */
if (glom != DEFAULT_GLOM_VALUE) {
DHD_INFO(("%s set glom=0x%X\n", __FUNCTION__, glom));
- dhd_iovar(dhd, 0, "bus:txglom", (char *)&glom, sizeof(glom), NULL, 0, TRUE);
+ ret = dhd_iovar(dhd, 0, "bus:txglom", (char *)&glom, sizeof(glom), NULL, 0, TRUE);
}
#endif /* defined(BCMSDIO) */
/* Setup timeout if Beacons are lost and roam is off to report link down */
- dhd_iovar(dhd, 0, "bcn_timeout", (char *)&bcn_timeout, sizeof(bcn_timeout), NULL, 0, TRUE);
+ ret = dhd_iovar(dhd, 0, "bcn_timeout", (char *)&bcn_timeout, sizeof(bcn_timeout), NULL, 0,
+ TRUE);
+
/* Setup assoc_retry_max count to reconnect target AP in dongle */
- dhd_iovar(dhd, 0, "assoc_retry_max", (char *)&retry_max, sizeof(retry_max), NULL, 0, TRUE);
+ ret = dhd_iovar(dhd, 0, "assoc_retry_max", (char *)&retry_max, sizeof(retry_max), NULL, 0,
+ TRUE);
+
#if defined(AP) && !defined(WLP2P)
- /* Turn off MPC in AP mode */
- dhd_iovar(dhd, 0, "mpc", (char *)&mpc, sizeof(mpc), NULL, 0, TRUE);
- dhd_iovar(dhd, 0, "apsta", (char *)&apsta, sizeof(apsta), NULL, 0, TRUE);
+ ret = dhd_iovar(dhd, 0, "apsta", (char *)&apsta, sizeof(apsta), NULL, 0, TRUE);
+
#endif /* defined(AP) && !defined(WLP2P) */
+#ifdef MIMO_ANT_SETTING
+ dhd_sel_ant_from_file(dhd);
+#endif /* MIMO_ANT_SETTING */
-#if defined(SOFTAP)
+#if defined(OEM_ANDROID) && defined(SOFTAP)
if (ap_fw_loaded == TRUE) {
dhd_wl_ioctl_cmd(dhd, WLC_SET_DTIMPRD, (char *)&dtim, sizeof(dtim), TRUE, 0);
}
-#endif
+#endif /* defined(OEM_ANDROID) && defined(SOFTAP) */
#if defined(KEEP_ALIVE)
{
/* Set Keep Alive : be sure to use FW with -keepalive */
int res;
-#if defined(SOFTAP)
+#if defined(OEM_ANDROID) && defined(SOFTAP)
if (ap_fw_loaded == FALSE)
-#endif
+#endif /* defined(OEM_ANDROID) && defined(SOFTAP) */
if (!(dhd->op_mode &
(DHD_FLAG_HOSTAP_MODE | DHD_FLAG_MFG_MODE))) {
if ((res = dhd_keep_alive_onoff(dhd)) < 0)
@@ -8774,39 +10717,140 @@
}
#endif /* defined(KEEP_ALIVE) */
+#ifdef USE_WL_TXBF
+ ret = dhd_iovar(dhd, 0, "txbf", (char *)&txbf, sizeof(txbf), NULL, 0, TRUE);
+ if (ret < 0)
+ DHD_ERROR(("%s Set txbf failed %d\n", __FUNCTION__, ret));
+
+#endif /* USE_WL_TXBF */
+
+ ret = dhd_iovar(dhd, 0, "scancache", (char *)&scancache_enab, sizeof(scancache_enab), NULL,
+ 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s Set scancache failed %d\n", __FUNCTION__, ret));
+ }
+
+#else /* OEM_ANDROID */
+
if ((ret = dhd_apply_default_clm(dhd, clm_path)) < 0) {
DHD_ERROR(("%s: CLM set failed. Abort initialization.\n", __FUNCTION__));
goto done;
}
-#ifdef USE_WL_TXBF
- if ((ret = dhd_iovar(dhd, 0, "txbf", (char *)&txbf, sizeof(txbf), NULL, 0, TRUE)) < 0) {
- DHD_ERROR(("%s Set txbf failed %d\n", __FUNCTION__, ret));
+#if defined(KEEP_ALIVE)
+ if (!(dhd->op_mode &
+ (DHD_FLAG_HOSTAP_MODE | DHD_FLAG_MFG_MODE))) {
+ if ((ret = dhd_keep_alive_onoff(dhd)) < 0)
+ DHD_ERROR(("%s set keeplive failed %d\n",
+ __FUNCTION__, ret));
}
-#endif /* USE_WL_TXBF */
+#endif // endif
+
+ /* get a capabilities from firmware */
+ memset(dhd->fw_capabilities, 0, sizeof(dhd->fw_capabilities));
+ ret = dhd_iovar(dhd, 0, "cap", NULL, 0, dhd->fw_capabilities, sizeof(dhd->fw_capabilities),
+ FALSE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: Get Capability failed (error=%d)\n",
+ __FUNCTION__, ret));
+ goto done;
+ }
+#endif /* OEM_ANDROID */
+
+ ret = dhd_iovar(dhd, 0, "event_log_max_sets", NULL, 0, (char *)&event_log_max_sets,
+ sizeof(event_log_max_sets), FALSE);
+ if (ret == BCME_OK) {
+ dhd->event_log_max_sets = event_log_max_sets;
+ } else {
+ dhd->event_log_max_sets = NUM_EVENT_LOG_SETS;
+ }
+ /* Make sure max_sets is set first with wmb and then sets_queried,
+ * this will be used during parsing the logsets in the reverse order.
+ */
+ OSL_SMP_WMB();
+ dhd->event_log_max_sets_queried = TRUE;
+ DHD_ERROR(("%s: event_log_max_sets: %d ret: %d\n",
+ __FUNCTION__, dhd->event_log_max_sets, ret));
+#ifdef DHD_BUS_MEM_ACCESS
+ ret = dhd_iovar(dhd, 0, "enable_memuse", (char *)&enable_memuse,
+ sizeof(enable_memuse), iovbuf, sizeof(iovbuf), FALSE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: enable_memuse is failed ret=%d\n",
+ __FUNCTION__, ret));
+ } else {
+ DHD_ERROR(("%s: enable_memuse = %d\n",
+ __FUNCTION__, enable_memuse));
+ }
+#endif /* DHD_BUS_MEM_ACCESS */
+
#ifdef DISABLE_TXBFR
- bcm_mkiovar("txbf_bfr_cap", (char *)&txbf_bfr_cap, 4, iovbuf, sizeof(iovbuf));
- if ((ret = dhd_wl_ioctl_cmd(dhd, WLC_SET_VAR, iovbuf,
- sizeof(iovbuf), TRUE, 0)) < 0) {
+ ret = dhd_iovar(dhd, 0, "txbf_bfr_cap", (char *)&txbf_bfr_cap, sizeof(txbf_bfr_cap), NULL,
+ 0, TRUE);
+ if (ret < 0) {
DHD_ERROR(("%s Clear txbf_bfr_cap failed %d\n", __FUNCTION__, ret));
}
#endif /* DISABLE_TXBFR */
+
+#ifdef USE_WFA_CERT_CONF
+#ifdef USE_WL_FRAMEBURST
+ if (sec_get_param_wfa_cert(dhd, SET_PARAM_FRAMEBURST, &frameburst) == BCME_OK) {
+ DHD_ERROR(("%s, read frameburst param=%d\n", __FUNCTION__, frameburst));
+ }
+#endif /* USE_WL_FRAMEBURST */
+ g_frameburst = frameburst;
+#endif /* USE_WFA_CERT_CONF */
#ifdef DISABLE_WL_FRAMEBURST_SOFTAP
/* Disable Framebursting for SofAP */
if (dhd->op_mode & DHD_FLAG_HOSTAP_MODE) {
frameburst = 0;
}
#endif /* DISABLE_WL_FRAMEBURST_SOFTAP */
-/* Set frameburst to value */
+ /* Set frameburst to value */
if ((ret = dhd_wl_ioctl_cmd(dhd, WLC_SET_FAKEFRAG, (char *)&frameburst,
sizeof(frameburst), TRUE, 0)) < 0) {
DHD_INFO(("%s frameburst not supported %d\n", __FUNCTION__, ret));
}
-#if defined(CUSTOM_AMPDU_BA_WSIZE)
+#ifdef DHD_SET_FW_HIGHSPEED
+ /* Set ack_ratio */
+ ret = dhd_iovar(dhd, 0, "ack_ratio", (char *)&ack_ratio, sizeof(ack_ratio), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s Set ack_ratio failed %d\n", __FUNCTION__, ret));
+ }
+
+ /* Set ack_ratio_depth */
+ ret = dhd_iovar(dhd, 0, "ack_ratio_depth", (char *)&ack_ratio_depth,
+ sizeof(ack_ratio_depth), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s Set ack_ratio_depth failed %d\n", __FUNCTION__, ret));
+ }
+#endif /* DHD_SET_FW_HIGHSPEED */
+
+ iov_buf = (char*)MALLOC(dhd->osh, WLC_IOCTL_SMLEN);
+ if (iov_buf == NULL) {
+ DHD_ERROR(("failed to allocate %d bytes for iov_buf\n", WLC_IOCTL_SMLEN));
+ ret = BCME_NOMEM;
+ goto done;
+ }
+
+#ifdef WLAIBSS
+ /* Apply AIBSS configurations */
+ if ((ret = dhd_preinit_aibss_ioctls(dhd, iov_buf)) != BCME_OK) {
+ DHD_ERROR(("%s dhd_preinit_aibss_ioctls failed %d\n",
+ __FUNCTION__, ret));
+ goto done;
+ }
+#endif /* WLAIBSS */
+
+#if defined(CUSTOM_AMPDU_BA_WSIZE) || (defined(WLAIBSS) && \
+ defined(CUSTOM_IBSS_AMPDU_BA_WSIZE))
/* Set ampdu ba wsize to 64 or 16 */
#ifdef CUSTOM_AMPDU_BA_WSIZE
ampdu_ba_wsize = CUSTOM_AMPDU_BA_WSIZE;
-#endif
+#endif // endif
+#if defined(WLAIBSS) && defined(CUSTOM_IBSS_AMPDU_BA_WSIZE)
+ if (dhd->op_mode == DHD_FLAG_IBSS_MODE)
+ ampdu_ba_wsize = CUSTOM_IBSS_AMPDU_BA_WSIZE;
+#endif /* WLAIBSS && CUSTOM_IBSS_AMPDU_BA_WSIZE */
if (ampdu_ba_wsize != 0) {
ret = dhd_iovar(dhd, 0, "ampdu_ba_wsize", (char *)&du_ba_wsize,
sizeof(ampdu_ba_wsize), NULL, 0, TRUE);
@@ -8815,14 +10859,7 @@
__FUNCTION__, ampdu_ba_wsize, ret));
}
}
-#endif
-
- iov_buf = (char*)kmalloc(WLC_IOCTL_SMLEN, GFP_KERNEL);
- if (iov_buf == NULL) {
- DHD_ERROR(("failed to allocate %d bytes for iov_buf\n", WLC_IOCTL_SMLEN));
- ret = BCME_NOMEM;
- goto done;
- }
+#endif /* CUSTOM_AMPDU_BA_WSIZE || (WLAIBSS && CUSTOM_IBSS_AMPDU_BA_WSIZE) */
#if defined(CUSTOM_AMPDU_MPDU)
ampdu_mpdu = CUSTOM_AMPDU_MPDU;
@@ -8854,25 +10891,100 @@
ret = dhd_iovar(dhd, 0, "amsdu_aggsf", (char *)&amsdu_aggsf, sizeof(amsdu_aggsf),
NULL, 0, TRUE);
if (ret < 0) {
- DHD_ERROR(("%s Set amsdu_aggsf to %d failed %d\n",
+ DHD_ERROR(("%s Set amsdu_aggsf to %d failed %d\n",
__FUNCTION__, CUSTOM_AMSDU_AGGSF, ret));
}
}
#endif /* CUSTOM_AMSDU_AGGSF */
+#if defined(BCMSUP_4WAY_HANDSHAKE)
+ /* Read 4-way handshake requirements */
+ if (dhd_use_idsup == 1) {
+ ret = dhd_iovar(dhd, 0, "sup_wpa", (char *)&sup_wpa, sizeof(sup_wpa),
+ (char *)&iovbuf, sizeof(iovbuf), FALSE);
+ /* sup_wpa iovar returns NOTREADY status on some platforms using modularized
+ * in-dongle supplicant.
+ */
+ if (ret >= 0 || ret == BCME_NOTREADY)
+ dhd->fw_4way_handshake = TRUE;
+ DHD_TRACE(("4-way handshake mode is: %d\n", dhd->fw_4way_handshake));
+ }
+#endif /* BCMSUP_4WAY_HANDSHAKE */
+#if defined(SUPPORT_2G_VHT) || defined(SUPPORT_5G_1024QAM_VHT)
+ ret = dhd_iovar(dhd, 0, "vht_features", (char *)&vht_features, sizeof(vht_features),
+ NULL, 0, FALSE);
+ if (ret < 0) {
+ DHD_ERROR(("%s vht_features get failed %d\n", __FUNCTION__, ret));
+ vht_features = 0;
+ } else {
+#ifdef SUPPORT_2G_VHT
+ vht_features |= 0x3; /* 2G support */
+#endif /* SUPPORT_2G_VHT */
+#ifdef SUPPORT_5G_1024QAM_VHT
+ vht_features |= 0x6; /* 5G 1024 QAM support */
+#endif /* SUPPORT_5G_1024QAM_VHT */
+ }
+ if (vht_features) {
+ ret = dhd_iovar(dhd, 0, "vht_features", (char *)&vht_features, sizeof(vht_features),
+ NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s vht_features set failed %d\n", __FUNCTION__, ret));
+
+ if (ret == BCME_NOTDOWN) {
+ uint wl_down = 1;
+ ret = dhd_wl_ioctl_cmd(dhd, WLC_DOWN,
+ (char *)&wl_down, sizeof(wl_down), TRUE, 0);
+ DHD_ERROR(("%s vht_features fail WL_DOWN : %d,"
+ " vht_features = 0x%x\n",
+ __FUNCTION__, ret, vht_features));
+
+ ret = dhd_iovar(dhd, 0, "vht_features", (char *)&vht_features,
+ sizeof(vht_features), NULL, 0, TRUE);
+
+ DHD_ERROR(("%s vht_features set. ret --> %d\n", __FUNCTION__, ret));
+ }
+ }
+ }
+#endif /* SUPPORT_2G_VHT || SUPPORT_5G_1024QAM_VHT */
+#ifdef DISABLE_11N_PROPRIETARY_RATES
+ ret = dhd_iovar(dhd, 0, "ht_features", (char *)&ht_features, sizeof(ht_features), NULL, 0,
+ TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s ht_features set failed %d\n", __FUNCTION__, ret));
+ }
+#endif /* DISABLE_11N_PROPRIETARY_RATES */
+#if defined(DISABLE_HE_ENAB) || defined(CUSTOM_CONTROL_HE_ENAB)
+#if defined(DISABLE_HE_ENAB)
+ control_he_enab = 0;
+#endif /* DISABLE_HE_ENAB */
+ dhd_control_he_enab(dhd, control_he_enab);
+#endif /* DISABLE_HE_ENAB || CUSTOM_CONTROL_HE_ENAB */
+
#ifdef CUSTOM_PSPRETEND_THR
/* Turn off MPC in AP mode */
- if ((ret = dhd_iovar(dhd, 0, "pspretend_threshold", (char *)&pspretend_thr,
- sizeof(pspretend_thr), NULL, 0, TRUE)) < 0) {
+ ret = dhd_iovar(dhd, 0, "pspretend_threshold", (char *)&pspretend_thr,
+ sizeof(pspretend_thr), NULL, 0, TRUE);
+ if (ret < 0) {
DHD_ERROR(("%s pspretend_threshold for HostAPD failed %d\n",
__FUNCTION__, ret));
}
-#endif
+#endif // endif
- if ((ret = dhd_iovar(dhd, 0, "buf_key_b4_m4", (char *)&buf_key_b4_m4,
- sizeof(buf_key_b4_m4), NULL, 0, TRUE)) < 0) {
+ ret = dhd_iovar(dhd, 0, "buf_key_b4_m4", (char *)&buf_key_b4_m4, sizeof(buf_key_b4_m4),
+ NULL, 0, TRUE);
+ if (ret < 0) {
DHD_ERROR(("%s buf_key_b4_m4 set failed %d\n", __FUNCTION__, ret));
}
+#ifdef SUPPORT_SET_CAC
+ ret = dhd_iovar(dhd, 0, "cac", (char *)&cac, sizeof(cac), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s Failed to set cac to %d, %d\n", __FUNCTION__, cac, ret));
+ }
+#endif /* SUPPORT_SET_CAC */
+#ifdef DHD_ULP
+ /* Get the required details from dongle during preinit ioctl */
+ dhd_ulp_preinit(dhd);
+#endif /* DHD_ULP */
/* Read event_msgs mask */
ret = dhd_iovar(dhd, 0, "event_msgs", eventmask, WL_EVENTING_MASK_LEN, iovbuf,
@@ -8881,7 +10993,7 @@
DHD_ERROR(("%s read Event mask failed %d\n", __FUNCTION__, ret));
goto done;
}
- memcpy(eventmask, iovbuf, WL_EVENTING_MASK_LEN);
+ bcopy(iovbuf, eventmask, WL_EVENTING_MASK_LEN);
/* Setup event_msgs */
setbit(eventmask, WLC_E_SET_SSID);
@@ -8906,19 +11018,16 @@
setbit(eventmask, WLC_E_ASSOC_RESP_IE);
#ifdef LIMIT_BORROW
setbit(eventmask, WLC_E_ALLOW_CREDIT_BORROW);
-#endif
+#endif // endif
#ifndef WL_CFG80211
setbit(eventmask, WLC_E_PMKID_CACHE);
setbit(eventmask, WLC_E_TXFAIL);
-#endif
+#endif // endif
setbit(eventmask, WLC_E_JOIN_START);
setbit(eventmask, WLC_E_SCAN_COMPLETE);
#ifdef DHD_DEBUG
setbit(eventmask, WLC_E_SCAN_CONFIRM_IND);
-#endif
-#ifdef WLMEDIA_HTSF
- setbit(eventmask, WLC_E_HTSFSYNC);
-#endif /* WLMEDIA_HTSF */
+#endif // endif
#ifdef PNO_SUPPORT
setbit(eventmask, WLC_E_PFN_NET_FOUND);
setbit(eventmask, WLC_E_PFN_BEST_BATCHING);
@@ -8926,32 +11035,65 @@
setbit(eventmask, WLC_E_PFN_BSSID_NET_LOST);
#endif /* PNO_SUPPORT */
/* enable dongle roaming event */
+#ifdef WL_CFG80211
+#if !defined(ROAM_EVT_DISABLE)
setbit(eventmask, WLC_E_ROAM);
+#endif /* !ROAM_EVT_DISABLE */
setbit(eventmask, WLC_E_BSSID);
+#endif /* WL_CFG80211 */
+#ifdef BCMCCX
+ setbit(eventmask, WLC_E_ADDTS_IND);
+ setbit(eventmask, WLC_E_DELTS_IND);
+#endif /* BCMCCX */
#ifdef WLTDLS
setbit(eventmask, WLC_E_TDLS_PEER_EVENT);
#endif /* WLTDLS */
#ifdef RTT_SUPPORT
setbit(eventmask, WLC_E_PROXD);
#endif /* RTT_SUPPORT */
+#if !defined(WL_CFG80211) && !defined(OEM_ANDROID)
+ setbit(eventmask, WLC_E_ESCAN_RESULT);
+#endif // endif
#ifdef WL_CFG80211
setbit(eventmask, WLC_E_ESCAN_RESULT);
+ setbit(eventmask, WLC_E_AP_STARTED);
+ setbit(eventmask, WLC_E_ACTION_FRAME_RX);
if (dhd->op_mode & DHD_FLAG_P2P_MODE) {
- setbit(eventmask, WLC_E_ACTION_FRAME_RX);
setbit(eventmask, WLC_E_P2P_DISC_LISTEN_COMPLETE);
}
#endif /* WL_CFG80211 */
+#ifdef WLAIBSS
+ setbit(eventmask, WLC_E_AIBSS_TXFAIL);
+#endif /* WLAIBSS */
+
+#if defined(SHOW_LOGTRACE) && defined(LOGTRACE_FROM_FILE)
+ if (dhd_logtrace_from_file(dhd)) {
+ setbit(eventmask, WLC_E_TRACE);
+ } else {
+ clrbit(eventmask, WLC_E_TRACE);
+ }
+#elif defined(SHOW_LOGTRACE)
setbit(eventmask, WLC_E_TRACE);
+#else
+ clrbit(eventmask, WLC_E_TRACE);
+#endif /* defined(SHOW_LOGTRACE) && defined(LOGTRACE_FROM_FILE) */
+
setbit(eventmask, WLC_E_CSA_COMPLETE_IND);
+#ifdef CUSTOM_EVENT_PM_WAKE
+ setbit(eventmask, WLC_E_EXCESS_PM_WAKE_EVENT);
+#endif /* CUSTOM_EVENT_PM_WAKE */
#ifdef DHD_LOSSLESS_ROAMING
setbit(eventmask, WLC_E_ROAM_PREP);
-#endif
-#ifdef DHD_WMF
- setbit(eventmask, WLC_E_PSTA_PRIMARY_INTF_IND);
-#endif
+#endif // endif
+ /* nan events */
+ setbit(eventmask, WLC_E_NAN);
#if defined(PCIE_FULL_DONGLE) && defined(DHD_LOSSLESS_ROAMING)
dhd_update_flow_prio_map(dhd, DHD_FLOW_PRIO_LLR_MAP);
#endif /* defined(PCIE_FULL_DONGLE) && defined(DHD_LOSSLESS_ROAMING) */
+
+#if defined(BCMPCIE) && defined(EAPOL_PKT_PRIO)
+ dhd_update_flow_prio_map(dhd, DHD_FLOW_PRIO_LLR_MAP);
+#endif /* defined(BCMPCIE) && defined(EAPOL_PKT_PRIO) */
/* Write updated Event mask */
ret = dhd_iovar(dhd, 0, "event_msgs", eventmask, WL_EVENTING_MASK_LEN, NULL, 0, TRUE);
@@ -8962,7 +11104,7 @@
/* make up event mask ext message iovar for event larger than 128 */
msglen = ROUNDUP(WLC_E_LAST, NBBY)/NBBY + EVENTMSGS_EXT_STRUCT_SIZE;
- eventmask_msg = (eventmsgs_ext_t*)kmalloc(msglen, GFP_KERNEL);
+ eventmask_msg = (eventmsgs_ext_t*)MALLOC(dhd->osh, msglen);
if (eventmask_msg == NULL) {
DHD_ERROR(("failed to allocate %d bytes for event_msg_ext\n", msglen));
ret = BCME_NOMEM;
@@ -8976,14 +11118,14 @@
ret2 = dhd_iovar(dhd, 0, "event_msgs_ext", (char *)eventmask_msg, msglen, iov_buf,
WLC_IOCTL_SMLEN, FALSE);
- if (ret2 != BCME_UNSUPPORTED)
- ret = ret2;
if (ret2 == 0) { /* event_msgs_ext must be supported */
- memcpy(eventmask_msg, iov_buf, msglen);
+ bcopy(iov_buf, eventmask_msg, msglen);
+#ifdef RSSI_MONITOR_SUPPORT
+ setbit(eventmask_msg->mask, WLC_E_RSSI_LQM);
+#endif /* RSSI_MONITOR_SUPPORT */
#ifdef GSCAN_SUPPORT
setbit(eventmask_msg->mask, WLC_E_PFN_GSCAN_FULL_RESULT);
setbit(eventmask_msg->mask, WLC_E_PFN_SCAN_COMPLETE);
- setbit(eventmask_msg->mask, WLC_E_PFN_SWC);
setbit(eventmask_msg->mask, WLC_E_PFN_SSID_EXT);
setbit(eventmask_msg->mask, WLC_E_ROAM_EXP_EVENT);
#endif /* GSCAN_SUPPORT */
@@ -8991,9 +11133,46 @@
#ifdef BT_WIFI_HANDOVER
setbit(eventmask_msg->mask, WLC_E_BT_WIFI_HANDOVER_REQ);
#endif /* BT_WIFI_HANDOVER */
+#ifdef DBG_PKT_MON
+ setbit(eventmask_msg->mask, WLC_E_ROAM_PREP);
+#endif /* DBG_PKT_MON */
#ifdef DHD_ULP
setbit(eventmask_msg->mask, WLC_E_ULP);
-#endif
+#endif // endif
+#ifdef WL_NATOE
+ setbit(eventmask_msg->mask, WLC_E_NATOE_NFCT);
+#endif /* WL_NATOE */
+#ifdef WL_NAN
+ setbit(eventmask_msg->mask, WLC_E_SLOTTED_BSS_PEER_OP);
+#endif /* WL_NAN */
+#ifdef WL_MBO
+ setbit(eventmask_msg->mask, WLC_E_MBO);
+#endif /* WL_MBO */
+#ifdef WL_BCNRECV
+ setbit(eventmask_msg->mask, WLC_E_BCNRECV_ABORTED);
+#endif /* WL_BCNRECV */
+#ifdef WL_CAC_TS
+ setbit(eventmask_msg->mask, WLC_E_ADDTS_IND);
+ setbit(eventmask_msg->mask, WLC_E_DELTS_IND);
+#endif /* WL_CAC_TS */
+#ifdef WL_CHAN_UTIL
+ setbit(eventmask_msg->mask, WLC_E_BSS_LOAD);
+#endif /* WL_CHAN_UTIL */
+#ifdef WL_SAE
+ setbit(eventmask_msg->mask, WLC_E_EXT_AUTH_REQ);
+ setbit(eventmask_msg->mask, WLC_E_EXT_AUTH_FRAME_RX);
+ setbit(eventmask_msg->mask, WLC_E_MGMT_FRAME_TXSTATUS);
+ setbit(eventmask_msg->mask, WLC_E_MGMT_FRAME_OFF_CHAN_COMPLETE);
+#endif /* WL_SAE */
+#ifndef CONFIG_SOC_S5E5515
+ setbit(eventmask_msg->mask, WLC_E_IND_DOS_STATUS);
+#endif // endif
+#ifdef ENABLE_HOGSQS
+ setbit(eventmask_msg->mask, WLC_E_LDF_HOGGER);
+#endif /* ENABLE_HOGSQS */
+
+ /* over temp event */
+ setbit(eventmask_msg->mask, WLC_E_OVERTEMP);
/* Write updated Event mask */
eventmask_msg->ver = EVENTMSGS_VER;
@@ -9005,27 +11184,47 @@
DHD_ERROR(("%s write event mask ext failed %d\n", __FUNCTION__, ret));
goto done;
}
- } else if (ret2 < 0 && ret2 == BCME_VERSION) {
- DHD_ERROR(("%s Different Event version\n", __FUNCTION__));
- } else if (ret2 < 0 && ret2 != BCME_UNSUPPORTED) {
+ } else if (ret2 == BCME_UNSUPPORTED || ret2 == BCME_VERSION) {
+ /* Skip for BCME_UNSUPPORTED or BCME_VERSION */
+ DHD_ERROR(("%s event_msgs_ext not support or version mismatch %d\n",
+ __FUNCTION__, ret2));
+ } else {
DHD_ERROR(("%s read event mask ext failed %d\n", __FUNCTION__, ret2));
+ ret = ret2;
goto done;
- } /* unsupported is ok */
+ }
+#if defined(DHD_8021X_DUMP) && defined(SHOW_LOGTRACE)
+ /* Enabling event log trace for EAP events */
+ el_tag = (wl_el_tag_params_t *)MALLOC(dhd->osh, sizeof(wl_el_tag_params_t));
+ if (el_tag == NULL) {
+ DHD_ERROR(("failed to allocate %d bytes for event_msg_ext\n",
+ (int)sizeof(wl_el_tag_params_t)));
+ ret = BCME_NOMEM;
+ goto done;
+ }
+ el_tag->tag = EVENT_LOG_TAG_4WAYHANDSHAKE;
+ el_tag->set = 1;
+ el_tag->flags = EVENT_LOG_TAG_FLAG_LOG;
+ ret = dhd_iovar(dhd, 0, "event_log_tag_control", (char *)el_tag, sizeof(*el_tag), NULL, 0,
+ TRUE);
+#endif /* DHD_8021X_DUMP */
+
+#ifdef OEM_ANDROID
dhd_wl_ioctl_cmd(dhd, WLC_SET_SCAN_CHANNEL_TIME, (char *)&scan_assoc_time,
- sizeof(scan_assoc_time), TRUE, 0);
+ sizeof(scan_assoc_time), TRUE, 0);
dhd_wl_ioctl_cmd(dhd, WLC_SET_SCAN_UNASSOC_TIME, (char *)&scan_unassoc_time,
- sizeof(scan_unassoc_time), TRUE, 0);
+ sizeof(scan_unassoc_time), TRUE, 0);
dhd_wl_ioctl_cmd(dhd, WLC_SET_SCAN_PASSIVE_TIME, (char *)&scan_passive_time,
- sizeof(scan_passive_time), TRUE, 0);
+ sizeof(scan_passive_time), TRUE, 0);
#ifdef ARP_OFFLOAD_SUPPORT
/* Set and enable ARP offload feature for STA only */
-#if defined(SOFTAP)
+#if defined(OEM_ANDROID) && defined(SOFTAP)
if (arpoe && !ap_fw_loaded) {
#else
if (arpoe) {
-#endif
+#endif /* defined(OEM_ANDROID) && defined(SOFTAP) */
dhd_arp_offload_enable(dhd, TRUE);
dhd_arp_offload_set(dhd, dhd_arp_mode);
} else {
@@ -9038,16 +11237,56 @@
#ifdef PKT_FILTER_SUPPORT
/* Setup default defintions for pktfilter , enable in suspend */
dhd->pktfilter_count = 6;
- /* Setup filter to allow only unicast */
- dhd->pktfilter[DHD_UNICAST_FILTER_NUM] = "100 0 0 0 0x01 0x00";
dhd->pktfilter[DHD_BROADCAST_FILTER_NUM] = NULL;
- dhd->pktfilter[DHD_MULTICAST4_FILTER_NUM] = NULL;
- dhd->pktfilter[DHD_MULTICAST6_FILTER_NUM] = NULL;
- /* Add filter to pass multicastDNS packet and NOT filter out as Broadcast */
- dhd->pktfilter[DHD_MDNS_FILTER_NUM] = "104 0 0 0 0xFFFFFFFFFFFF 0x01005E0000FB";
+ if (!FW_SUPPORTED(dhd, pf6)) {
+ dhd->pktfilter[DHD_MULTICAST4_FILTER_NUM] = NULL;
+ dhd->pktfilter[DHD_MULTICAST6_FILTER_NUM] = NULL;
+ } else {
+ /* Immediately pkt filter TYPE 6 Discard IPv4/IPv6 Multicast Packet */
+ dhd->pktfilter[DHD_MULTICAST4_FILTER_NUM] = DISCARD_IPV4_MCAST;
+ dhd->pktfilter[DHD_MULTICAST6_FILTER_NUM] = DISCARD_IPV6_MCAST;
+ }
/* apply APP pktfilter */
dhd->pktfilter[DHD_ARP_FILTER_NUM] = "105 0 0 12 0xFFFF 0x0806";
+#ifdef BLOCK_IPV6_PACKET
+ /* Setup filter to allow only IPv4 unicast frames */
+ dhd->pktfilter[DHD_UNICAST_FILTER_NUM] = "100 0 0 0 "
+ HEX_PREF_STR UNI_FILTER_STR ZERO_ADDR_STR ETHER_TYPE_STR IPV6_FILTER_STR
+ " "
+ HEX_PREF_STR ZERO_ADDR_STR ZERO_ADDR_STR ETHER_TYPE_STR ZERO_TYPE_STR;
+#else
+ /* Setup filter to allow only unicast */
+ dhd->pktfilter[DHD_UNICAST_FILTER_NUM] = "100 0 0 0 0x01 0x00";
+#endif /* BLOCK_IPV6_PACKET */
+
+#ifdef PASS_IPV4_SUSPEND
+ dhd->pktfilter[DHD_MDNS_FILTER_NUM] = "104 0 0 0 0xFFFFFF 0x01005E";
+#else
+ /* Add filter to pass multicastDNS packet and NOT filter out as Broadcast */
+ dhd->pktfilter[DHD_MDNS_FILTER_NUM] = NULL;
+#endif /* PASS_IPV4_SUSPEND */
+ if (FW_SUPPORTED(dhd, pf6)) {
+ /* Immediately pkt filter TYPE 6 Dicard Broadcast IP packet */
+ dhd->pktfilter[DHD_IP4BCAST_DROP_FILTER_NUM] = DISCARD_IPV4_BCAST;
+ /* Immediately pkt filter TYPE 6 Dicard Cisco STP packet */
+ dhd->pktfilter[DHD_LLC_STP_DROP_FILTER_NUM] = DISCARD_LLC_STP;
+ /* Immediately pkt filter TYPE 6 Dicard Cisco XID protocol */
+ dhd->pktfilter[DHD_LLC_XID_DROP_FILTER_NUM] = DISCARD_LLC_XID;
+ dhd->pktfilter_count = 10;
+ }
+
+#ifdef GAN_LITE_NAT_KEEPALIVE_FILTER
+ dhd->pktfilter_count = 4;
+ /* Setup filter to block broadcast and NAT Keepalive packets */
+ /* discard all broadcast packets */
+ dhd->pktfilter[DHD_UNICAST_FILTER_NUM] = "100 0 0 0 0xffffff 0xffffff";
+ /* discard NAT Keepalive packets */
+ dhd->pktfilter[DHD_BROADCAST_FILTER_NUM] = "102 0 0 36 0xffffffff 0x11940009";
+ /* discard NAT Keepalive packets */
+ dhd->pktfilter[DHD_MULTICAST4_FILTER_NUM] = "104 0 0 38 0xffffffff 0x11940009";
+ dhd->pktfilter[DHD_MULTICAST6_FILTER_NUM] = NULL;
+#endif /* GAN_LITE_NAT_KEEPALIVE_FILTER */
#if defined(SOFTAP)
if (ap_fw_loaded) {
@@ -9057,58 +11296,157 @@
dhd_set_packet_filter(dhd);
#endif /* PKT_FILTER_SUPPORT */
#ifdef DISABLE_11N
- ret = dhd_iovar(dhd, 0, "nmode", (char *)&nmode, sizeof(nmode),
- NULL, 0, TRUE);
+ ret = dhd_iovar(dhd, 0, "nmode", (char *)&nmode, sizeof(nmode), NULL, 0, TRUE);
if (ret < 0)
DHD_ERROR(("%s wl nmode 0 failed %d\n", __FUNCTION__, ret));
#endif /* DISABLE_11N */
- /* query for 'ver' to get version info from firmware */
+#ifdef ENABLE_BCN_LI_BCN_WAKEUP
+ ret = dhd_iovar(dhd, 0, "bcn_li_bcn", (char *)&bcn_li_bcn, sizeof(bcn_li_bcn), NULL, 0,
+ TRUE);
+#endif /* ENABLE_BCN_LI_BCN_WAKEUP */
+#ifdef AMPDU_VO_ENABLE
+ tid.tid = PRIO_8021D_VO; /* Enable TID(6) for voice */
+ tid.enable = TRUE;
+ ret = dhd_iovar(dhd, 0, "ampdu_tid", (char *)&tid, sizeof(tid), NULL, 0, TRUE);
+
+ tid.tid = PRIO_8021D_NC; /* Enable TID(7) for voice */
+ tid.enable = TRUE;
+ ret = dhd_iovar(dhd, 0, "ampdu_tid", (char *)&tid, sizeof(tid), NULL, 0, TRUE);
+#endif // endif
+ /* query for 'clmver' to get clm version info from firmware */
memset(buf, 0, sizeof(buf));
- ptr = buf;
- ret = dhd_iovar(dhd, 0, "ver", NULL, 0, (char *)&buf, sizeof(buf), FALSE);
+ ret = dhd_iovar(dhd, 0, "clmver", NULL, 0, buf, sizeof(buf), FALSE);
if (ret < 0)
DHD_ERROR(("%s failed %d\n", __FUNCTION__, ret));
else {
- bcmstrtok(&ptr, "\n", 0);
- /* Print fw version info */
- DHD_ERROR(("Firmware version = %s\n", buf));
-#if defined(BCMSDIO) || defined(BCMPCIE)
- dhd_set_version_info(dhd, buf);
-#endif /* BCMSDIO || BCMPCIE */
+ char *ver_temp_buf = NULL;
+
+ if ((ver_temp_buf = bcmstrstr(buf, "Data:")) == NULL) {
+ DHD_ERROR(("Couldn't find \"Data:\"\n"));
+ } else {
+ ptr = (ver_temp_buf + strlen("Data:"));
+ if ((ver_temp_buf = bcmstrtok(&ptr, "\n", 0)) == NULL) {
+ DHD_ERROR(("Couldn't find New line character\n"));
+ } else {
+ memset(clm_version, 0, CLM_VER_STR_LEN);
+ strncpy(clm_version, ver_temp_buf,
+ MIN(strlen(ver_temp_buf) + 1, CLM_VER_STR_LEN - 1));
+ DHD_INFO(("CLM version = %s\n", clm_version));
+ }
+ }
+
+#if defined(CUSTOMER_HW4_DEBUG)
+ if ((ver_temp_buf = bcmstrstr(ptr, "Customization:")) == NULL) {
+ DHD_ERROR(("Couldn't find \"Customization:\"\n"));
+ } else {
+ char tokenlim;
+ ptr = (ver_temp_buf + strlen("Customization:"));
+ if ((ver_temp_buf = bcmstrtok(&ptr, "(\n", &tokenlim)) == NULL) {
+ DHD_ERROR(("Couldn't find project blob version"
+ "or New line character\n"));
+ } else if (tokenlim == '(') {
+ snprintf(clm_version,
+ CLM_VER_STR_LEN - 1, "%s, Blob ver = Major : %s minor : ",
+ clm_version, ver_temp_buf);
+ DHD_INFO(("[INFO]CLM/Blob version = %s\n", clm_version));
+ if ((ver_temp_buf = bcmstrtok(&ptr, "\n", &tokenlim)) == NULL) {
+ DHD_ERROR(("Couldn't find New line character\n"));
+ } else {
+ snprintf(clm_version,
+ strlen(clm_version) + strlen(ver_temp_buf),
+ "%s%s", clm_version, ver_temp_buf);
+ DHD_INFO(("[INFO]CLM/Blob/project version = %s\n",
+ clm_version));
+
+ }
+ } else if (tokenlim == '\n') {
+ snprintf(clm_version,
+ strlen(clm_version) + strlen(", Blob ver = Major : ") + 1,
+ "%s, Blob ver = Major : ", clm_version);
+ snprintf(clm_version,
+ strlen(clm_version) + strlen(ver_temp_buf) + 1,
+ "%s%s", clm_version, ver_temp_buf);
+ DHD_INFO(("[INFO]CLM/Blob/project version = %s\n", clm_version));
+ }
+ }
+#endif /* CUSTOMER_HW4_DEBUG */
+ if (strlen(clm_version)) {
+ DHD_ERROR(("CLM version = %s\n", clm_version));
+ } else {
+ DHD_ERROR(("Couldn't find CLM version!\n"));
+ }
}
-#if defined(BCMSDIO)
- dhd_txglom_enable(dhd, TRUE);
-#endif /* defined(BCMSDIO) */
+#ifdef WRITE_WLANINFO
+ sec_save_wlinfo(fw_version, EPI_VERSION_STR, dhd->info->nv_path, clm_version);
+#endif /* WRITE_WLANINFO */
-#if defined(BCMSDIO) || defined(BCMDBUS)
+ /* query for 'wlc_ver' to get version info from firmware */
+ memset(&wlc_ver, 0, sizeof(wl_wlc_version_t));
+ ret = dhd_iovar(dhd, 0, "wlc_ver", NULL, 0, (char *)&wlc_ver,
+ sizeof(wl_wlc_version_t), FALSE);
+ if (ret < 0)
+ DHD_ERROR(("%s failed %d\n", __FUNCTION__, ret));
+ else {
+ dhd->wlc_ver_major = wlc_ver.wlc_ver_major;
+ dhd->wlc_ver_minor = wlc_ver.wlc_ver_minor;
+ }
+#endif /* defined(OEM_ANDROID) */
+#ifdef GEN_SOFTAP_INFO_FILE
+ sec_save_softap_info();
+#endif /* GEN_SOFTAP_INFO_FILE */
+
+#if defined(BCMSDIO) && !defined(BCMSPI)
+ dhd_txglom_enable(dhd, TRUE);
+#endif /* BCMSDIO && !BCMSPI */
+
+#if defined(BCMSDIO)
#ifdef PROP_TXSTATUS
if (disable_proptx ||
#ifdef PROP_TXSTATUS_VSDB
/* enable WLFC only if the firmware is VSDB when it is in STA mode */
- (dhd->op_mode != DHD_FLAG_HOSTAP_MODE &&
- dhd->op_mode != DHD_FLAG_IBSS_MODE) ||
+ (!FW_SUPPORTED(dhd, ap)) ||
#endif /* PROP_TXSTATUS_VSDB */
FALSE) {
wlfc_enable = FALSE;
}
#if defined(PROP_TXSTATUS)
+#ifdef USE_WFA_CERT_CONF
+ if (sec_get_param_wfa_cert(dhd, SET_PARAM_PROPTX, &proptx) == BCME_OK) {
+ DHD_ERROR(("%s , read proptx param=%d\n", __FUNCTION__, proptx));
+ wlfc_enable = proptx;
+ }
+#endif /* USE_WFA_CERT_CONF */
#endif /* PROP_TXSTATUS */
#ifndef DISABLE_11N
ret2 = dhd_iovar(dhd, 0, "ampdu_hostreorder", (char *)&hostreorder, sizeof(hostreorder),
NULL, 0, TRUE);
+ chipid = dhd_bus_chip_id(dhd);
if (ret2 < 0) {
DHD_ERROR(("%s wl ampdu_hostreorder failed %d\n", __FUNCTION__, ret2));
- if (ret2 != BCME_UNSUPPORTED)
+ if (ret2 != BCME_UNSUPPORTED && chipid != BCM4373_CHIP_ID)
ret = ret2;
+
+ if (ret == BCME_NOTDOWN) {
+ uint wl_down = 1;
+ ret2 = dhd_wl_ioctl_cmd(dhd, WLC_DOWN, (char *)&wl_down,
+ sizeof(wl_down), TRUE, 0);
+ DHD_ERROR(("%s ampdu_hostreorder fail WL_DOWN : %d, hostreorder :%d\n",
+ __FUNCTION__, ret2, hostreorder));
+
+ ret2 = dhd_iovar(dhd, 0, "ampdu_hostreorder", (char *)&hostreorder,
+ sizeof(hostreorder), NULL, 0, TRUE);
+ DHD_ERROR(("%s wl ampdu_hostreorder. ret --> %d\n", __FUNCTION__, ret2));
+ if (ret2 != BCME_UNSUPPORTED && chipid != BCM4373_CHIP_ID)
+ ret = ret2;
+ }
if (ret2 != BCME_OK)
hostreorder = 0;
}
#endif /* DISABLE_11N */
-
if (wlfc_enable)
dhd_wlfc_init(dhd);
@@ -9133,7 +11471,7 @@
if (!dhd->pno_state) {
dhd_pno_init(dhd);
}
-#endif
+#endif // endif
#ifdef RTT_SUPPORT
if (!dhd->rtt_state) {
ret = dhd_rtt_init(dhd);
@@ -9141,142 +11479,133 @@
DHD_ERROR(("%s failed to initialize RTT\n", __FUNCTION__));
}
}
-#endif
+#endif // endif
+#ifdef FILTER_IE
+ /* Failure to configure filter IE is not a fatal error, ignore it. */
+ if (!(dhd->op_mode & (DHD_FLAG_HOSTAP_MODE | DHD_FLAG_MFG_MODE)))
+ dhd_read_from_file(dhd);
+#endif /* FILTER_IE */
#ifdef WL11U
dhd_interworking_enable(dhd);
#endif /* WL11U */
-done:
+#ifdef NDO_CONFIG_SUPPORT
+ dhd->ndo_enable = FALSE;
+ dhd->ndo_host_ip_overflow = FALSE;
+ dhd->ndo_max_host_ip = NDO_MAX_HOST_IP_ENTRIES;
+#endif /* NDO_CONFIG_SUPPORT */
- if (eventmask_msg)
- kfree(eventmask_msg);
- if (iov_buf)
- kfree(iov_buf);
+ /* ND offload version supported */
+ dhd->ndo_version = dhd_ndo_get_version(dhd);
+ if (dhd->ndo_version > 0) {
+ DHD_INFO(("%s: ndo version %d\n", __FUNCTION__, dhd->ndo_version));
- return ret;
-}
-
-#ifdef LOAD_DHD_WITH_FW_ALIVE
-int
-dhd_preinit_ioctls_alive(dhd_pub_t *dhd)
-{
- int ret = 0;
- char buf[WLC_IOCTL_SMLEN];
-
- DHD_TRACE(("Enter %s\n", __FUNCTION__));
-
-#if (0)
- char iovbuf[WL_EVENTING_MASK_LEN + 12]; /* Room for "event_msgs" + '\0' + bitvec */
-#if defined(BCMSDIO) || defined(BCMDBUS)
-#ifdef PROP_TXSTATUS
- int wlfc_enable = TRUE;
-#endif /* PROP_TXSTATUS */
-#endif /* defined(BCMSDIO) || defined(BCMDBUS) */
-
-#if defined(ARP_OFFLOAD_SUPPORT)
- int arpoe = 1;
-#endif
-
-#if defined(SOFTAP)
- uint dtim = 1;
-#endif
-
-#ifdef WLTDLS
- dhd->tdls_enable = FALSE;
- dhd_tdls_set_mode(dhd, false);
-#endif /* WLTDLS */
- dhd->suspend_bcn_li_dtim = CUSTOM_SUSPEND_BCN_LI_DTIM;
-
- DHD_TRACE(("Enter %s\n", __FUNCTION__));
- dhd->op_mode = 0;
-#endif
-
- /* Get the default device MAC address directly from firmware */
- ret = dhd_iovar(dhd, 0, "cur_etheraddr", NULL, 0, (char *)&buf, sizeof(buf), FALSE);
- if (ret < 0) {
- DHD_ERROR(("%s: can't get MAC address , error=%d\n", __FUNCTION__, ret));
- ret = BCME_NOTUP;
- goto done;
- }
- /* Update public MAC address after reading from Firmware */
- memcpy(dhd->mac.octet, buf, ETHER_ADDR_LEN);
-
- /* get a capabilities from firmware */
- {
- uint32 cap_buf_size = sizeof(dhd->fw_capabilities);
- memset(dhd->fw_capabilities, 0, cap_buf_size);
- ret = dhd_iovar(dhd, 0, "cap", NULL, 0, dhd->fw_capabilities, (cap_buf_size - 1),
- FALSE);
+#ifdef NDO_CONFIG_SUPPORT
+ /* enable Unsolicited NA filter */
+ ret = dhd_ndo_unsolicited_na_filter_enable(dhd, 1);
if (ret < 0) {
- DHD_ERROR(("%s: Get Capability failed (error=%d)\n",
- __FUNCTION__, ret));
- return 0;
+ DHD_ERROR(("%s failed to enable Unsolicited NA filter\n", __FUNCTION__));
}
-
- memmove(&dhd->fw_capabilities[1], dhd->fw_capabilities, (cap_buf_size - 1));
- dhd->fw_capabilities[0] = ' ';
- dhd->fw_capabilities[cap_buf_size - 2] = ' ';
- dhd->fw_capabilities[cap_buf_size - 1] = '\0';
+#endif /* NDO_CONFIG_SUPPORT */
}
- dhd->op_mode = DHD_FLAG_STA_MODE;
+ /* check dongle supports wbtext (product policy) or not */
+ dhd->wbtext_support = FALSE;
+ if (dhd_wl_ioctl_get_intiovar(dhd, "wnm_bsstrans_resp", &wnm_bsstrans_resp,
+ WLC_GET_VAR, FALSE, 0) != BCME_OK) {
+ DHD_ERROR(("failed to get wnm_bsstrans_resp\n"));
+ }
+ dhd->wbtext_policy = wnm_bsstrans_resp;
+ if (dhd->wbtext_policy == WL_BSSTRANS_POLICY_PRODUCT_WBTEXT) {
+ dhd->wbtext_support = TRUE;
+ }
+#ifndef WBTEXT
+ /* driver can turn off wbtext feature through makefile */
+ if (dhd->wbtext_support) {
+ if (dhd_wl_ioctl_set_intiovar(dhd, "wnm_bsstrans_resp",
+ WL_BSSTRANS_POLICY_ROAM_ALWAYS,
+ WLC_SET_VAR, FALSE, 0) != BCME_OK) {
+ DHD_ERROR(("failed to disable WBTEXT\n"));
+ }
+ }
+#endif /* !WBTEXT */
- DHD_ERROR(("Firmware up: op_mode=0x%04x, MAC="MACDBG"\n",
- dhd->op_mode, MAC2STRDBG(dhd->mac.octet)));
+#ifdef DHD_NON_DMA_M2M_CORRUPTION
+ /* check pcie non dma loopback */
+ if (dhd->op_mode == DHD_FLAG_MFG_MODE &&
+ (dhd_bus_dmaxfer_lpbk(dhd, M2M_NON_DMA_LPBK) < 0)) {
+ goto done;
+ }
+#endif /* DHD_NON_DMA_M2M_CORRUPTION */
-#if (0)
-#ifdef WLTDLS
- /* by default TDLS on and auto mode off */
- _dhd_tdls_enable(dhd, true, false, NULL);
-#endif /* WLTDLS */
-
-#ifdef ARP_OFFLOAD_SUPPORT
- /* Set and enable ARP offload feature for STA only */
- //get arp offload from firmware
- dhd_arp_enable = arpoe;
-#endif /* ARP_OFFLOAD_SUPPORT */
-
-#ifdef PKT_FILTER_SUPPORT
- /* Setup default defintions for pktfilter , enable in suspend */
- dhd->pktfilter_count = 6;
- /* Setup filter to allow only unicast */
- dhd->pktfilter[DHD_UNICAST_FILTER_NUM] = "100 0 0 0 0x01 0x00";
- dhd->pktfilter[DHD_BROADCAST_FILTER_NUM] = NULL;
- dhd->pktfilter[DHD_MULTICAST4_FILTER_NUM] = NULL;
- dhd->pktfilter[DHD_MULTICAST6_FILTER_NUM] = NULL;
- /* Add filter to pass multicastDNS packet and NOT filter out as Broadcast */
- dhd->pktfilter[DHD_MDNS_FILTER_NUM] = "104 0 0 0 0xFFFFFFFFFFFF 0x01005E0000FB";
- /* apply APP pktfilter */
- dhd->pktfilter[DHD_ARP_FILTER_NUM] = "105 0 0 12 0xFFFF 0x0806";
-#endif /* PKT_FILTER_SUPPORT */
-
-#if defined(BCMSDIO) || defined(BCMDBUS)
-#ifdef PROP_TXSTATUS
- if (disable_proptx ||
-#ifdef PROP_TXSTATUS_VSDB
- /* enable WLFC only if the firmware is VSDB when it is in STA mode */
- (dhd->op_mode != DHD_FLAG_HOSTAP_MODE &&
- dhd->op_mode != DHD_FLAG_IBSS_MODE) ||
-#endif /* PROP_TXSTATUS_VSDB */
- FALSE) {
- wlfc_enable = FALSE;
+ /* WNM capabilities */
+ wnm_cap = 0
+#ifdef WL11U
+ | WL_WNM_BSSTRANS | WL_WNM_NOTIF
+#endif // endif
+#ifdef WBTEXT
+ | WL_WNM_BSSTRANS | WL_WNM_MAXIDLE
+#endif // endif
+ ;
+#if defined(WL_MBO) && defined(WL_OCE)
+ if (FW_SUPPORTED(dhd, estm)) {
+ wnm_cap |= WL_WNM_ESTM;
+ }
+#endif /* WL_MBO && WL_OCE */
+ if (dhd_iovar(dhd, 0, "wnm", (char *)&wnm_cap, sizeof(wnm_cap), NULL, 0, TRUE) < 0) {
+ DHD_ERROR(("failed to set WNM capabilities\n"));
}
- if (wlfc_enable)
- dhd_wlfc_init(dhd);
-#ifndef DISABLE_11N
- else if (hostreorder)
- dhd_wlfc_hostreorder_init(dhd);
-#endif /* DISABLE_11N */
+ if (FW_SUPPORTED(dhd, ecounters) && enable_ecounter) {
+ dhd_ecounter_configure(dhd, TRUE);
+ }
-#endif /* PROP_TXSTATUS */
-#endif /* BCMSDIO || BCMBUS */
-#endif
+ /* store the preserve log set numbers */
+ if (dhd_get_preserve_log_numbers(dhd, &dhd->logset_prsrv_mask)
+ != BCME_OK) {
+ DHD_ERROR(("%s: Failed to get preserve log # !\n", __FUNCTION__));
+ }
+
+#if defined(WBTEXT) && defined(WBTEXT_BTMDELTA)
+ if (dhd_iovar(dhd, 0, "wnm_btmdelta", (char *)&btmdelta, sizeof(btmdelta),
+ NULL, 0, TRUE) < 0) {
+ DHD_ERROR(("failed to set BTM delta\n"));
+ }
+#endif /* WBTEXT && WBTEXT_BTMDELTA */
+
+#ifdef WL_MONITOR
+ if (FW_SUPPORTED(dhd, monitor)) {
+ dhd->monitor_enable = TRUE;
+ DHD_ERROR(("%s: Monitor mode is enabled in FW cap\n", __FUNCTION__));
+ } else {
+ dhd->monitor_enable = FALSE;
+ DHD_ERROR(("%s: Monitor mode is not enabled in FW cap\n", __FUNCTION__));
+ }
+#endif /* WL_MONITOR */
+
+#ifdef CONFIG_SILENT_ROAM
+ dhd->sroam_turn_on = TRUE;
+ dhd->sroamed = FALSE;
+#endif /* CONFIG_SILENT_ROAM */
done:
+
+ if (eventmask_msg) {
+ MFREE(dhd->osh, eventmask_msg, msglen);
+ eventmask_msg = NULL;
+ }
+ if (iov_buf) {
+ MFREE(dhd->osh, iov_buf, WLC_IOCTL_SMLEN);
+ iov_buf = NULL;
+ }
+#if defined(DHD_8021X_DUMP) && defined(SHOW_LOGTRACE)
+ if (el_tag) {
+ MFREE(dhd->osh, el_tag, sizeof(wl_el_tag_params_t));
+ el_tag = NULL;
+ }
+#endif /* DHD_8021X_DUMP */
return ret;
}
-#endif /* LOAD_DHD_WITH_FW_ALIVE */
int
dhd_iovar(dhd_pub_t *pub, int ifidx, char *name, char *param_buf, uint param_len, char *res_buf,
@@ -9301,7 +11630,7 @@
ret = BCME_BADARG;
goto exit;
}
- buf = kzalloc(input_len, GFP_KERNEL);
+ buf = MALLOCZ(pub->osh, input_len);
if (!buf) {
DHD_ERROR(("%s: mem alloc failed\n", __FUNCTION__));
ret = BCME_NOMEM;
@@ -9329,7 +11658,7 @@
if (res_len < input_len) {
DHD_INFO(("%s: res_len(%d) < input_len(%d)\n", __FUNCTION__,
res_len, input_len));
- buf = kzalloc(input_len, GFP_KERNEL);
+ buf = MALLOCZ(pub->osh, input_len);
if (!buf) {
DHD_ERROR(("%s: mem alloc failed\n", __FUNCTION__));
ret = BCME_NOMEM;
@@ -9368,7 +11697,10 @@
}
}
exit:
- kfree(buf);
+ if (buf) {
+ MFREE(pub->osh, buf, input_len);
+ buf = NULL;
+ }
return ret;
}
@@ -9385,7 +11717,10 @@
memset(buf, 0, resp_len);
- bcm_mkiovar(name, cmd_buf, cmd_len, buf, len);
+ ret = bcm_mkiovar(name, cmd_buf, cmd_len, buf, len);
+ if (ret == 0) {
+ return BCME_BUFTOOSHORT;
+ }
memset(&ioc, 0, sizeof(ioc));
@@ -9398,7 +11733,6 @@
return ret;
}
-
int dhd_change_mtu(dhd_pub_t *dhdp, int new_mtu, int ifidx)
{
@@ -9440,15 +11774,16 @@
/* display what we've got */
ret = dhd_arp_get_arp_hostip_table(dhd_pub, ipv4_buf, sizeof(ipv4_buf), idx);
DHD_ARPOE(("%s: hostip table read from Dongle:\n", __FUNCTION__));
+#ifdef AOE_DBG
+ dhd_print_buf(ipv4_buf, 32, 4); /* max 8 IPs 4b each */
+#endif // endif
+ /* now we saved hoste_ip table, clr it in the dongle AOE */
+ dhd_aoe_hostip_clr(dhd_pub, idx);
+
if (ret) {
DHD_ERROR(("%s failed\n", __FUNCTION__));
return;
}
-#ifdef AOE_DBG
- dhd_print_buf(ipv4_buf, 32, 4); /* max 8 IPs 4b each */
-#endif
- /* now we saved hoste_ip table, clr it in the dongle AOE */
- dhd_aoe_hostip_clr(dhd_pub, idx);
for (i = 0; i < MAX_IPV4_ENTRIES; i++) {
if (add && (ipv4_buf[i] == 0)) {
@@ -9474,7 +11809,7 @@
dhd_arp_get_arp_hostip_table(dhd_pub, ipv4_buf, sizeof(ipv4_buf), idx);
DHD_ARPOE(("%s: read back arp_hostip table:\n", __FUNCTION__));
dhd_print_buf(ipv4_buf, 32, 4); /* max 8 IPs 4b each */
-#endif
+#endif // endif
}
/*
@@ -9497,7 +11832,6 @@
if (!ifa || !(ifa->ifa_dev->dev))
return NOTIFY_DONE;
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31))
/* Filter notifications meant for non Broadcom devices */
if ((ifa->ifa_dev->dev->netdev_ops != &dhd_ops_pri) &&
(ifa->ifa_dev->dev->netdev_ops != &dhd_ops_virt)) {
@@ -9506,7 +11840,6 @@
#endif /* WL_ENABLE_P2P_IF */
return NOTIFY_DONE;
}
-#endif /* LINUX_VERSION_CODE */
dhd = DHD_DEV_INFO(ifa->ifa_dev->dev);
if (!dhd)
@@ -9514,19 +11847,17 @@
dhd_pub = &dhd->pub;
-#ifndef STBLINUX
if (dhd_pub->arp_version == 1) {
idx = 0;
- } else
-#endif /* STBLINUX */
- { for (idx = 0; idx < DHD_MAX_IFS; idx++) {
+ } else {
+ for (idx = 0; idx < DHD_MAX_IFS; idx++) {
if (dhd->iflist[idx] && dhd->iflist[idx]->net == ifa->ifa_dev->dev)
break;
}
- if (idx < DHD_MAX_IFS) {
+ if (idx < DHD_MAX_IFS)
DHD_TRACE(("ifidx : %p %s %d\n", dhd->iflist[idx]->net,
dhd->iflist[idx]->name, dhd->iflist[idx]->idx));
- } else {
+ else {
DHD_ERROR(("Cannot find ifidx for(%s) set to 0\n", ifa->ifa_label));
idx = 0;
}
@@ -9537,8 +11868,14 @@
DHD_ARPOE(("%s: [%s] Up IP: 0x%x\n",
__FUNCTION__, ifa->ifa_label, ifa->ifa_address));
- if (dhd->pub.busstate != DHD_BUS_DATA) {
- DHD_ERROR(("%s: bus not ready, exit\n", __FUNCTION__));
+ /*
+ * Skip if Bus is not in a state to transport the IOVAR
+ * (or) the Dongle is not ready.
+ */
+ if (DHD_BUS_CHECK_DOWN_OR_DOWN_IN_PROGRESS(&dhd->pub) ||
+ dhd->pub.busstate == DHD_BUS_LOAD) {
+ DHD_ERROR(("%s: bus not ready, exit NETDEV_UP : %d\n",
+ __FUNCTION__, dhd->pub.busstate));
if (dhd->pend_ipaddr) {
DHD_ERROR(("%s: overwrite pending ipaddr: 0x%x\n",
__FUNCTION__, dhd->pend_ipaddr));
@@ -9561,11 +11898,15 @@
#ifdef AOE_IP_ALIAS_SUPPORT
DHD_ARPOE(("%s:interface is down, AOE clr all for this if\n",
__FUNCTION__));
- aoe_update_host_ipv4_table(dhd_pub, ifa->ifa_address, FALSE, idx);
-#else
- dhd_aoe_hostip_clr(&dhd->pub, idx);
- dhd_aoe_arp_clr(&dhd->pub, idx);
+ if ((dhd_pub->op_mode & DHD_FLAG_HOSTAP_MODE) ||
+ (ifa->ifa_dev->dev != dhd_linux_get_primary_netdev(dhd_pub))) {
+ aoe_update_host_ipv4_table(dhd_pub, ifa->ifa_address, FALSE, idx);
+ } else
#endif /* AOE_IP_ALIAS_SUPPORT */
+ {
+ dhd_aoe_hostip_clr(&dhd->pub, idx);
+ dhd_aoe_arp_clr(&dhd->pub, idx);
+ }
break;
default:
@@ -9577,108 +11918,137 @@
}
#endif /* ARP_OFFLOAD_SUPPORT */
-#if defined(CONFIG_IPV6)
+#if defined(CONFIG_IPV6) && defined(IPV6_NDO_SUPPORT)
/* Neighbor Discovery Offload: defered handler */
static void
dhd_inet6_work_handler(void *dhd_info, void *event_data, u8 event)
{
struct ipv6_work_info_t *ndo_work = (struct ipv6_work_info_t *)event_data;
- dhd_pub_t *pub = &((dhd_info_t *)dhd_info)->pub;
- int ret;
+ dhd_info_t *dhd = (dhd_info_t *)dhd_info;
+ dhd_pub_t *dhdp;
+ int ret;
+
+ if (!dhd) {
+ DHD_ERROR(("%s: invalid dhd_info\n", __FUNCTION__));
+ goto done;
+ }
+ dhdp = &dhd->pub;
if (event != DHD_WQ_WORK_IPV6_NDO) {
- DHD_ERROR(("%s: unexpected event \n", __FUNCTION__));
- return;
+ DHD_ERROR(("%s: unexpected event\n", __FUNCTION__));
+ goto done;
}
if (!ndo_work) {
- DHD_ERROR(("%s: ipv6 work info is not initialized \n", __FUNCTION__));
- return;
- }
-
- if (!pub) {
- DHD_ERROR(("%s: dhd pub is not initialized \n", __FUNCTION__));
- return;
- }
-
- if (ndo_work->if_idx) {
- DHD_ERROR(("%s: idx %d \n", __FUNCTION__, ndo_work->if_idx));
+ DHD_ERROR(("%s: ipv6 work info is not initialized\n", __FUNCTION__));
return;
}
switch (ndo_work->event) {
case NETDEV_UP:
- DHD_TRACE(("%s: Enable NDO and add ipv6 into table \n ", __FUNCTION__));
- ret = dhd_ndo_enable(pub, TRUE);
+#ifndef NDO_CONFIG_SUPPORT
+ DHD_TRACE(("%s: Enable NDO \n ", __FUNCTION__));
+ ret = dhd_ndo_enable(dhdp, TRUE);
if (ret < 0) {
DHD_ERROR(("%s: Enabling NDO Failed %d\n", __FUNCTION__, ret));
}
-
- ret = dhd_ndo_add_ip(pub, &ndo_work->ipv6_addr[0], ndo_work->if_idx);
+#endif /* !NDO_CONFIG_SUPPORT */
+ DHD_TRACE(("%s: Add a host ip for NDO\n", __FUNCTION__));
+ if (dhdp->ndo_version > 0) {
+ /* inet6 addr notifier called only for unicast address */
+ ret = dhd_ndo_add_ip_with_type(dhdp, &ndo_work->ipv6_addr[0],
+ WL_ND_IPV6_ADDR_TYPE_UNICAST, ndo_work->if_idx);
+ } else {
+ ret = dhd_ndo_add_ip(dhdp, &ndo_work->ipv6_addr[0],
+ ndo_work->if_idx);
+ }
if (ret < 0) {
- DHD_ERROR(("%s: Adding host ip for NDO failed %d\n",
+ DHD_ERROR(("%s: Adding a host ip for NDO failed %d\n",
__FUNCTION__, ret));
}
break;
case NETDEV_DOWN:
- DHD_TRACE(("%s: clear ipv6 table \n", __FUNCTION__));
- ret = dhd_ndo_remove_ip(pub, ndo_work->if_idx);
+ if (dhdp->ndo_version > 0) {
+ DHD_TRACE(("%s: Remove a host ip for NDO\n", __FUNCTION__));
+ ret = dhd_ndo_remove_ip_by_addr(dhdp,
+ &ndo_work->ipv6_addr[0], ndo_work->if_idx);
+ } else {
+ DHD_TRACE(("%s: Clear host ip table for NDO \n", __FUNCTION__));
+ ret = dhd_ndo_remove_ip(dhdp, ndo_work->if_idx);
+ }
if (ret < 0) {
DHD_ERROR(("%s: Removing host ip for NDO failed %d\n",
__FUNCTION__, ret));
goto done;
}
-
- ret = dhd_ndo_enable(pub, FALSE);
+#ifdef NDO_CONFIG_SUPPORT
+ if (dhdp->ndo_host_ip_overflow) {
+ ret = dhd_dev_ndo_update_inet6addr(
+ dhd_idx2net(dhdp, ndo_work->if_idx));
+ if ((ret < 0) && (ret != BCME_NORESOURCE)) {
+ DHD_ERROR(("%s: Updating host ip for NDO failed %d\n",
+ __FUNCTION__, ret));
+ goto done;
+ }
+ }
+#else /* !NDO_CONFIG_SUPPORT */
+ DHD_TRACE(("%s: Disable NDO\n ", __FUNCTION__));
+ ret = dhd_ndo_enable(dhdp, FALSE);
if (ret < 0) {
DHD_ERROR(("%s: disabling NDO Failed %d\n", __FUNCTION__, ret));
goto done;
}
+#endif /* NDO_CONFIG_SUPPORT */
break;
+
default:
DHD_ERROR(("%s: unknown notifier event \n", __FUNCTION__));
break;
}
done:
+
/* free ndo_work. alloced while scheduling the work */
- kfree(ndo_work);
+ if (ndo_work) {
+ kfree(ndo_work);
+ }
return;
-}
+} /* dhd_init_logstrs_array */
/*
* Neighbor Discovery Offload: Called when an interface
* is assigned with ipv6 address.
* Handles only primary interface
*/
-static int dhd_inet6addr_notifier_call(struct notifier_block *this,
- unsigned long event,
- void *ptr)
+int dhd_inet6addr_notifier_call(struct notifier_block *this, unsigned long event, void *ptr)
{
dhd_info_t *dhd;
- dhd_pub_t *dhd_pub;
+ dhd_pub_t *dhdp;
struct inet6_ifaddr *inet6_ifa = ptr;
- struct in6_addr *ipv6_addr = &inet6_ifa->addr;
struct ipv6_work_info_t *ndo_info;
- int idx = 0; /* REVISIT */
+ int idx;
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31))
/* Filter notifications meant for non Broadcom devices */
if (inet6_ifa->idev->dev->netdev_ops != &dhd_ops_pri) {
return NOTIFY_DONE;
}
-#endif /* LINUX_VERSION_CODE */
dhd = DHD_DEV_INFO(inet6_ifa->idev->dev);
- if (!dhd)
+ if (!dhd) {
return NOTIFY_DONE;
+ }
+ dhdp = &dhd->pub;
- if (dhd->iflist[idx] && dhd->iflist[idx]->net != inet6_ifa->idev->dev)
+ /* Supports only primary interface */
+ idx = dhd_net2idx(dhd, inet6_ifa->idev->dev);
+ if (idx != 0) {
return NOTIFY_DONE;
- dhd_pub = &dhd->pub;
+ }
- if (!FW_SUPPORTED(dhd_pub, ndoe))
+ /* FW capability */
+ if (!FW_SUPPORTED(dhdp, ndoe)) {
return NOTIFY_DONE;
+ }
ndo_info = (struct ipv6_work_info_t *)kzalloc(sizeof(struct ipv6_work_info_t), GFP_ATOMIC);
if (!ndo_info) {
@@ -9686,16 +12056,40 @@
return NOTIFY_DONE;
}
+ /* fill up ndo_info */
ndo_info->event = event;
ndo_info->if_idx = idx;
- memcpy(&ndo_info->ipv6_addr[0], ipv6_addr, IPV6_ADDR_LEN);
+ memcpy(ndo_info->ipv6_addr, &inet6_ifa->addr, IPV6_ADDR_LEN);
/* defer the work to thread as it may block kernel */
dhd_deferred_schedule_work(dhd->dhd_deferred_wq, (void *)ndo_info, DHD_WQ_WORK_IPV6_NDO,
- dhd_inet6_work_handler, DHD_WORK_PRIORITY_LOW);
+ dhd_inet6_work_handler, DHD_WQ_WORK_PRIORITY_LOW);
return NOTIFY_DONE;
}
-#endif /* OEM_ANDROID && CONFIG_IPV6 */
+#endif /* CONFIG_IPV6 && IPV6_NDO_SUPPORT */
+
+/* Network attach to be invoked from the bus probe handlers */
+int
+dhd_attach_net(dhd_pub_t *dhdp, bool need_rtnl_lock)
+{
+ struct net_device *primary_ndev;
+ BCM_REFERENCE(primary_ndev);
+
+ /* Register primary net device */
+ if (dhd_register_if(dhdp, 0, need_rtnl_lock) != 0) {
+ return BCME_ERROR;
+ }
+
+#if defined(WL_CFG80211)
+ primary_ndev = dhd_linux_get_primary_netdev(dhdp);
+ if (wl_cfg80211_net_attach(primary_ndev) < 0) {
+ /* fail the init */
+ dhd_remove_if(dhdp, 0, TRUE);
+ return BCME_ERROR;
+ }
+#endif /* WL_CFG80211 */
+ return BCME_OK;
+}
int
dhd_register_if(dhd_pub_t *dhdp, int ifidx, bool need_rtnl_lock)
@@ -9708,42 +12102,34 @@
DHD_TRACE(("%s: ifidx %d\n", __FUNCTION__, ifidx));
+ if (dhd == NULL || dhd->iflist[ifidx] == NULL) {
+ DHD_ERROR(("%s: Invalid Interface\n", __FUNCTION__));
+ return BCME_ERROR;
+ }
+
ASSERT(dhd && dhd->iflist[ifidx]);
ifp = dhd->iflist[ifidx];
net = ifp->net;
ASSERT(net && (ifp->idx == ifidx));
-#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 31))
- ASSERT(!net->open);
- net->get_stats = dhd_get_stats;
- net->do_ioctl = dhd_ioctl_entry;
- net->hard_start_xmit = dhd_start_xmit;
- net->set_mac_address = dhd_set_mac_address;
- net->set_multicast_list = dhd_set_multicast_list;
- net->open = net->stop = NULL;
-#else
ASSERT(!net->netdev_ops);
net->netdev_ops = &dhd_ops_virt;
-#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 31) */
/* Ok, link into the network layer... */
if (ifidx == 0) {
/*
* device functions for the primary interface only
*/
-#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 31))
- net->open = dhd_open;
- net->stop = dhd_stop;
-#else
net->netdev_ops = &dhd_ops_pri;
-#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 31) */
if (!ETHER_ISNULLADDR(dhd->pub.mac.octet))
memcpy(temp_addr, dhd->pub.mac.octet, ETHER_ADDR_LEN);
+ memcpy(dhd->iflist[0]->mac_addr, dhd->pub.mac.octet, ETHER_ADDR_LEN);
} else {
/*
* We have to use the primary MAC for virtual interfaces
*/
memcpy(temp_addr, ifp->mac_addr, ETHER_ADDR_LEN);
+#if defined(OEM_ANDROID)
/*
* Android sets the locally administered bit to indicate that this is a
* portable hotspot. This will not work in simultaneous AP/STA mode,
@@ -9754,20 +12140,20 @@
DHD_ERROR(("%s interface [%s]: set locally administered bit in MAC\n",
__func__, net->name));
temp_addr[0] |= 0x02;
+ memcpy(dhd->iflist[ifidx]->mac_addr, temp_addr, ETHER_ADDR_LEN);
}
+#endif /* defined(OEM_ANDROID) */
}
net->hard_header_len = ETH_HLEN + dhd->pub.hdrlen;
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 24)
net->ethtool_ops = &dhd_ethtool_ops;
-#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 24) */
#if defined(WL_WIRELESS_EXT)
#if WIRELESS_EXT < 19
net->get_wireless_stats = dhd_get_wireless_stats;
#endif /* WIRELESS_EXT < 19 */
#if WIRELESS_EXT > 12
- net->wireless_handlers = (struct iw_handler_def *)&wl_iw_handler_def;
+ net->wireless_handlers = &wl_iw_handler_def;
#endif /* WIRELESS_EXT > 12 */
#endif /* defined(WL_WIRELESS_EXT) */
@@ -9788,28 +12174,41 @@
goto fail;
}
-
-
printf("Register interface [%s] MAC: "MACDBG"\n\n", net->name,
+#if defined(CUSTOMER_HW4_DEBUG)
+ MAC2STRDBG(dhd->pub.mac.octet));
+#else
MAC2STRDBG(net->dev_addr));
+#endif /* CUSTOMER_HW4_DEBUG */
-#if defined(SOFTAP) && defined(WL_WIRELESS_EXT) && !defined(WL_CFG80211)
+#if defined(OEM_ANDROID) && defined(SOFTAP) && defined(WL_WIRELESS_EXT) && \
+ !defined(WL_CFG80211)
wl_iw_iscan_set_scan_broadcast_prep(net, 1);
-#endif
+#endif // endif
-#if (defined(BCMPCIE) || (defined(BCMLXSDMMC) && (LINUX_VERSION_CODE >= \
- KERNEL_VERSION(2, 6, 27))))
+#if defined(OEM_ANDROID) && (defined(BCMPCIE) || defined(BCMLXSDMMC))
if (ifidx == 0) {
#ifdef BCMLXSDMMC
up(&dhd_registration_sem);
#endif /* BCMLXSDMMC */
+#ifndef ENABLE_INSMOD_NO_FW_LOAD
if (!dhd_download_fw_on_driverload) {
#ifdef WL_CFG80211
- wl_terminate_event_handler();
+ wl_terminate_event_handler(net);
#endif /* WL_CFG80211 */
-#if defined(DHD_LB) && defined(DHD_LB_RXP)
+#if defined(DHD_LB_RXP)
__skb_queue_purge(&dhd->rx_pend_queue);
-#endif /* DHD_LB && DHD_LB_RXP */
+#endif /* DHD_LB_RXP */
+
+#if defined(DHD_LB_TXP)
+ skb_queue_purge(&dhd->tx_pend_queue);
+#endif /* DHD_LB_TXP */
+
+#ifdef SHOW_LOGTRACE
+ /* Release the skbs from queue for WLC_E_TRACE event */
+ dhd_event_logtrace_flush_queue(dhdp);
+#endif /* SHOW_LOGTRACE */
+
#if defined(BCMPCIE) && defined(DHDTCPACK_SUPPRESS)
dhd_tcpack_suppress_set(dhdp, TCPACK_SUP_OFF);
#endif /* BCMPCIE && DHDTCPACK_SUPPRESS */
@@ -9818,20 +12217,63 @@
dhd_net_bus_suspend(net);
#endif /* BCMLXSDMMC */
wifi_platform_set_power(dhdp->info->adapter, FALSE, WIFI_TURNOFF_DELAY);
+#if defined(BT_OVER_SDIO)
+ dhd->bus_user_count--;
+#endif /* BT_OVER_SDIO */
}
+#endif /* ENABLE_INSMOD_NO_FW_LOAD */
}
-#endif /* OEM_ANDROID && (BCMPCIE || (BCMLXSDMMC && KERNEL_VERSION >= 2.6.27)) */
+#endif /* OEM_ANDROID && (BCMPCIE || BCMLXSDMMC) */
return 0;
fail:
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 31)
- net->open = NULL;
-#else
net->netdev_ops = NULL;
-#endif
return err;
}
+#ifdef WL_VIF_SUPPORT
+#define MAX_VIF_NUM 8
+int
+dhd_register_vif(dhd_pub_t *dhdp)
+{
+ dhd_info_t *dhd = (dhd_info_t *)dhdp->info;
+ dhd_if_t *ifp;
+ struct net_device *net;
+ int err = BCME_OK, i;
+ char viface_name[IFNAMSIZ] = {'\0'};
+ ifp = dhd->iflist[0];
+ net = ifp->net;
+ if (vif_num && vif_num > MAX_VIF_NUM)
+ vif_num = MAX_VIF_NUM;
+ /* Set virtual interface name if it was provided as module parameter */
+ if (vif_name[0]) {
+ int len;
+ char ch;
+ strncpy(viface_name, vif_name, IFNAMSIZ);
+ viface_name[IFNAMSIZ - 1] = 0;
+ len = strlen(viface_name);
+ ch = viface_name[len - 1];
+ if ((ch > '9' || ch < '0') && (len < IFNAMSIZ - 2))
+ strcat(viface_name, "%d");
+ } else {
+ DHD_ERROR(("%s check vif_name\n", __FUNCTION__));
+ return BCME_BADOPTION;
+ }
+
+ DHD_INFO(("%s Virtual interface [%s]:\n", __FUNCTION__, viface_name));
+ rtnl_lock();
+ for (i = 0; i < vif_num; i++) {
+ if (wl_cfg80211_add_if(wl_get_cfg(net), net, WL_IF_TYPE_STA, viface_name, NULL)
+ == NULL) {
+ DHD_ERROR(("%s error Virtual interface [%s], i:%d\n", __FUNCTION__,
+ viface_name, i));
+ break;
+ }
+ }
+ rtnl_unlock();
+ return err;
+}
+#endif /* WL_VIF_SUPPORT */
void
dhd_bus_detach(dhd_pub_t *dhdp)
{
@@ -9852,33 +12294,25 @@
dhd_prot_stop(&dhd->pub);
/* Stop the bus module */
-#ifdef BCMDBUS
- /* Force Dongle terminated */
- if (dhd_wl_ioctl_cmd(dhdp, WLC_TERMINATED, NULL, 0, TRUE, 0) < 0)
- DHD_ERROR(("%s Setting WLC_TERMINATED failed\n",
- __FUNCTION__));
- dbus_stop(dhd->pub.dbus);
- dhd->pub.busstate = DHD_BUS_DOWN;
-#else
dhd_bus_stop(dhd->pub.bus, TRUE);
-#endif /* BCMDBUS */
}
-#if defined(OOB_INTR_ONLY) || defined(BCMPCIE_OOB_HOST_WAKE)
+#if defined(OOB_INTR_ONLY) || defined(BCMSPI_ANDROID) || defined(BCMPCIE_OOB_HOST_WAKE)
dhd_bus_oob_intr_unregister(dhdp);
-#endif
+#endif /* OOB_INTR_ONLY || BCMSPI_ANDROID || BCMPCIE_OOB_HOST_WAKE */
}
}
}
-
void dhd_detach(dhd_pub_t *dhdp)
{
dhd_info_t *dhd;
unsigned long flags;
int timer_valid = FALSE;
- struct net_device *dev;
-
+ struct net_device *dev = NULL;
+#ifdef WL_CFG80211
+ struct bcm_cfg80211 *cfg = NULL;
+#endif // endif
if (!dhdp)
return;
@@ -9886,7 +12320,8 @@
if (!dhd)
return;
- dev = dhd->iflist[0]->net;
+ if (dhd->iflist[0])
+ dev = dhd->iflist[0]->net;
if (dev) {
rtnl_lock();
@@ -9904,12 +12339,9 @@
DHD_TRACE(("%s: Enter state 0x%x\n", __FUNCTION__, dhd->dhd_state));
+ DHD_ERROR(("%s: making dhdpub up FALSE\n", __FUNCTION__));
dhd->pub.up = 0;
- if (dhd->dhd_state & DHD_ATTACH_STATE_DONE) {
- if (dhd_found > 0)
- dhd_found--;
- }
- else {
+ if (!(dhd->dhd_state & DHD_ATTACH_STATE_DONE)) {
/* Give sufficient time for threads to start running in case
* dhd_attach() has failed
*/
@@ -9917,16 +12349,8 @@
}
#ifdef DHD_WET
dhd_free_wet_info(&dhd->pub, dhd->pub.wet_info);
-#endif
-
+#endif /* DHD_WET */
#if defined(BCM_DNGL_EMBEDIMAGE) || defined(BCM_REQUEST_FW)
-#if defined(BCMDBUS)
- if (dhd->fw_download_task) {
- up(&dhd->fw_download_lock);
- kthread_stop(dhd->fw_download_task);
- dhd->fw_download_task = NULL;
- }
-#endif /* BCMDBUS */
#endif /* defined(BCM_DNGL_EMBEDIMAGE) || defined(BCM_REQUEST_FW) */
#ifdef PROP_TXSTATUS
@@ -9941,14 +12365,16 @@
#endif /* PROP_TXSTATUS */
#ifdef WL_CFG80211
- wl_cfg80211_down(NULL);
+ if (dev)
+ wl_cfg80211_down(dev);
#endif /* WL_CFG80211 */
if (dhd->dhd_state & DHD_ATTACH_STATE_PROT_ATTACH) {
-#ifndef BCMSDIO
+#if defined(OEM_ANDROID) || !defined(BCMSDIO)
dhd_bus_detach(dhdp);
-#endif
+#endif /* OEM_ANDROID || !BCMSDIO */
+#ifdef OEM_ANDROID
#ifdef BCMPCIE
if (is_reboot == SYS_RESTART) {
extern bcmdhd_wifi_platdata_t *dhd_wifi_platdata;
@@ -9959,10 +12385,13 @@
}
}
#endif /* BCMPCIE */
-#if !defined(PCIE_FULL_DONGLE) && !defined(BCMSDIO)
+#endif /* OEM_ANDROID */
+#ifndef PCIE_FULL_DONGLE
+#if defined(OEM_ANDROID) || !defined(BCMSDIO)
if (dhdp->prot)
dhd_prot_detach(dhdp);
-#endif
+#endif /* OEM_ANDROID || !BCMSDIO */
+#endif /* !PCIE_FULL_DONGLE */
}
#ifdef ARP_OFFLOAD_SUPPORT
@@ -9971,12 +12400,12 @@
unregister_inetaddr_notifier(&dhd_inetaddr_notifier);
}
#endif /* ARP_OFFLOAD_SUPPORT */
-#if defined(CONFIG_IPV6)
+#if defined(CONFIG_IPV6) && defined(IPV6_NDO_SUPPORT)
if (dhd_inet6addr_notifier_registered) {
dhd_inet6addr_notifier_registered = FALSE;
unregister_inet6addr_notifier(&dhd_inet6addr_notifier);
}
-#endif /* OEM_ANDROID && CONFIG_IPV6 */
+#endif /* CONFIG_IPV6 && IPV6_NDO_SUPPORT */
#if defined(CONFIG_HAS_EARLYSUSPEND) && defined(DHD_USE_EARLYSUSPEND)
if (dhd->dhd_state & DHD_ATTACH_STATE_EARLYSUSPEND_DONE) {
if (dhd->early_suspend.suspend)
@@ -10011,47 +12440,44 @@
/* delete primary interface 0 */
ifp = dhd->iflist[0];
- ASSERT(ifp);
- ASSERT(ifp->net);
if (ifp && ifp->net) {
-#if (defined(STBLINUX) && defined(WL_CFG80211))
- /* keep wirless framework happy */
- wl_cfg80211_cleanup();
-#endif /* STBLINUX && WL_CFG80211 */
-
-
-
-
+#ifdef WL_CFG80211
+ cfg = wl_get_cfg(ifp->net);
+#endif // endif
/* in unregister_netdev case, the interface gets freed by net->destructor
* (which is set to free_netdev)
*/
if (ifp->net->reg_state == NETREG_UNINITIALIZED) {
free_netdev(ifp->net);
} else {
+#if defined(ARGOS_NOTIFY_CB)
+ argos_register_notifier_deinit();
+#endif // endif
#ifdef SET_RPS_CPUS
custom_rps_map_clear(ifp->net->_rx);
#endif /* SET_RPS_CPUS */
netif_tx_disable(ifp->net);
unregister_netdev(ifp->net);
}
+#ifdef PCIE_FULL_DONGLE
+ ifp->net = DHD_NET_DEV_NULL;
+#else
ifp->net = NULL;
-#ifdef BCMSDIO
- dhd_bus_detach(dhdp);
+#endif /* PCIE_FULL_DONGLE */
+#if defined(BCMSDIO) && !defined(OEM_ANDROID)
+ dhd_bus_detach(dhdp);
- if (dhdp->prot)
- dhd_prot_detach(dhdp);
-#endif
-#ifdef DHD_WMF
- dhd_wmf_cleanup(dhdp, 0);
-#endif /* DHD_WMF */
+ if (dhdp->prot)
+ dhd_prot_detach(dhdp);
+#endif /* BCMSDIO && !OEM_ANDROID */
+
#ifdef DHD_L2_FILTER
bcm_l2_filter_arp_table_update(dhdp->osh, ifp->phnd_arp_table, TRUE,
NULL, FALSE, dhdp->tickcnt);
deinit_l2_filter_arp_table(dhdp->osh, ifp->phnd_arp_table);
ifp->phnd_arp_table = NULL;
#endif /* DHD_L2_FILTER */
-
dhd_if_del_sta_list(ifp);
@@ -10067,11 +12493,14 @@
DHD_GENERAL_UNLOCK(&dhd->pub, flags);
if (timer_valid)
del_timer_sync(&dhd->timer);
+ DHD_DISABLE_RUNTIME_PM(&dhd->pub);
-#ifdef BCMDBUS
- tasklet_kill(&dhd->tasklet);
-#else
if (dhd->dhd_state & DHD_ATTACH_STATE_THREADS_CREATED) {
+#ifdef DHD_PCIE_RUNTIMEPM
+ if (dhd->thr_rpm_ctl.thr_pid >= 0) {
+ PROC_STOP(&dhd->thr_rpm_ctl);
+ }
+#endif /* DHD_PCIE_RUNTIMEPM */
if (dhd->thr_wdt_ctl.thr_pid >= 0) {
PROC_STOP(&dhd->thr_wdt_ctl);
}
@@ -10082,72 +12511,143 @@
if (dhd->thr_dpc_ctl.thr_pid >= 0) {
PROC_STOP(&dhd->thr_dpc_ctl);
- } else {
+ } else
+ {
tasklet_kill(&dhd->tasklet);
-#ifdef DHD_LB_RXP
- __skb_queue_purge(&dhd->rx_pend_queue);
-#endif /* DHD_LB_RXP */
}
}
-#endif /* BCMDBUS */
-#if defined(DHD_LB)
- /* Kill the Load Balancing Tasklets */
-#if defined(DHD_LB_TXC)
- tasklet_disable(&dhd->tx_compl_tasklet);
- tasklet_kill(&dhd->tx_compl_tasklet);
+#ifdef WL_NATOE
+ if (dhd->pub.nfct) {
+ dhd_ct_close(dhd->pub.nfct);
+ }
+#endif /* WL_NATOE */
+
+#ifdef DHD_LB
+ if (dhd->dhd_state & DHD_ATTACH_STATE_LB_ATTACH_DONE) {
+ /* Clear the flag first to avoid calling the cpu notifier */
+ dhd->dhd_state &= ~DHD_ATTACH_STATE_LB_ATTACH_DONE;
+
+ /* Kill the Load Balancing Tasklets */
+#ifdef DHD_LB_RXP
+ cancel_work_sync(&dhd->rx_napi_dispatcher_work);
+ __skb_queue_purge(&dhd->rx_pend_queue);
+#endif /* DHD_LB_RXP */
+#ifdef DHD_LB_TXP
+ cancel_work_sync(&dhd->tx_dispatcher_work);
+ tasklet_kill(&dhd->tx_tasklet);
+ __skb_queue_purge(&dhd->tx_pend_queue);
+#endif /* DHD_LB_TXP */
+#ifdef DHD_LB_TXC
+ cancel_work_sync(&dhd->tx_compl_dispatcher_work);
+ tasklet_kill(&dhd->tx_compl_tasklet);
#endif /* DHD_LB_TXC */
-#if defined(DHD_LB_RXC)
- tasklet_disable(&dhd->rx_compl_tasklet);
- tasklet_kill(&dhd->rx_compl_tasklet);
+#ifdef DHD_LB_RXC
+ tasklet_kill(&dhd->rx_compl_tasklet);
#endif /* DHD_LB_RXC */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 10, 0))
- cpuhp_state_remove_instance(dhd_cpuhp_online_state, &dhd->node_online);
- cpuhp_remove_multi_state(dhd_cpuhp_online_state);
-#else
- if (dhd->cpu_notifier.notifier_call != NULL)
- unregister_cpu_notifier(&dhd->cpu_notifier);
-#endif
- dhd_cpumasks_deinit(dhd);
+ /* Unregister from CPU Hotplug framework */
+ dhd_unregister_cpuhp_callback(dhd);
+
+ dhd_cpumasks_deinit(dhd);
+ DHD_LB_STATS_DEINIT(&dhd->pub);
+ }
#endif /* DHD_LB */
+
+#if defined(DNGL_AXI_ERROR_LOGGING) && defined(DHD_USE_WQ_FOR_DNGL_AXI_ERROR)
+ cancel_work_sync(&dhd->axi_error_dispatcher_work);
+#endif /* DNGL_AXI_ERROR_LOGGING && DHD_USE_WQ_FOR_DNGL_AXI_ERROR */
+
+ DHD_SSSR_MEMPOOL_DEINIT(&dhd->pub);
#ifdef WL_CFG80211
if (dhd->dhd_state & DHD_ATTACH_STATE_CFG80211) {
- wl_cfg80211_detach(NULL);
- dhd_monitor_uninit();
+ if (!cfg) {
+ DHD_ERROR(("cfg NULL!\n"));
+ ASSERT(0);
+ } else {
+ wl_cfg80211_detach(cfg);
+#ifdef DHD_MONITOR_INTERFACE
+ dhd_monitor_uninit();
+#endif /* DHD_MONITOR_INTERFACE */
+ }
}
-#endif
- /* free deferred work queue */
- dhd_deferred_work_deinit(dhd->dhd_deferred_wq);
- dhd->dhd_deferred_wq = NULL;
+#endif /* WL_CFG80211 */
-#ifdef BCMDBUS
- if (dhdp->dbus) {
- dbus_detach(dhdp->dbus);
- dhdp->dbus = NULL;
+#ifdef DHD_PCIE_NATIVE_RUNTIMEPM
+ destroy_workqueue(dhd->tx_wq);
+ dhd->tx_wq = NULL;
+ destroy_workqueue(dhd->rx_wq);
+ dhd->rx_wq = NULL;
+#endif /* DHD_PCIE_NATIVE_RUNTIMEPM */
+#ifdef DEBUGABILITY
+ if (dhdp->dbg) {
+#ifdef DBG_PKT_MON
+ dhd_os_dbg_detach_pkt_monitor(dhdp);
+ dhd_os_spin_lock_deinit(dhd->pub.osh, dhd->pub.dbg->pkt_mon_lock);
+#endif /* DBG_PKT_MON */
}
-#endif /* BCMDBUS */
-#ifdef SHOW_LOGTRACE
- if (dhdp->dbg)
+#endif /* DEBUGABILITY */
+ if (dhdp->dbg) {
dhd_os_dbg_detach(dhdp);
- if (dhd->event_data.fmts)
- kfree(dhd->event_data.fmts);
- if (dhd->event_data.raw_fmts)
- kfree(dhd->event_data.raw_fmts);
- if (dhd->event_data.raw_sstr)
- kfree(dhd->event_data.raw_sstr);
-#endif /* SHOW_LOGTRACE */
+ }
+#ifdef DHD_PKT_LOGGING
+ dhd_os_detach_pktlog(dhdp);
+#endif /* DHD_PKT_LOGGING */
+#ifdef DHD_STATUS_LOGGING
+ dhd_detach_statlog(dhdp);
+#endif /* DHD_STATUS_LOGGING */
+#ifdef DHD_PKTDUMP_ROAM
+ dhd_dump_pkt_deinit(dhdp);
+#endif /* DHD_PKTDUMP_ROAM */
+#ifdef WL_CFGVENDOR_SEND_HANG_EVENT
+ if (dhd->pub.hang_info) {
+ MFREE(dhd->pub.osh, dhd->pub.hang_info, VENDOR_SEND_HANG_EXT_INFO_LEN);
+ }
+#endif /* WL_CFGVENDOR_SEND_HANG_EVENT */
+#ifdef SHOW_LOGTRACE
+ /* Release the skbs from queue for WLC_E_TRACE event */
+ dhd_event_logtrace_flush_queue(dhdp);
+ /* Wait till event logtrace context finishes */
+ dhd_cancel_logtrace_process_sync(dhd);
+
+ /* Remove ring proc entries */
+ dhd_dbg_ring_proc_destroy(&dhd->pub);
+
+ if (dhd->dhd_state & DHD_ATTACH_LOGTRACE_INIT) {
+ if (dhd->event_data.fmts) {
+ MFREE(dhd->pub.osh, dhd->event_data.fmts,
+ dhd->event_data.fmts_size);
+ dhd->event_data.fmts = NULL;
+ }
+ if (dhd->event_data.raw_fmts) {
+ MFREE(dhd->pub.osh, dhd->event_data.raw_fmts,
+ dhd->event_data.raw_fmts_size);
+ dhd->event_data.raw_fmts = NULL;
+ }
+ if (dhd->event_data.raw_sstr) {
+ MFREE(dhd->pub.osh, dhd->event_data.raw_sstr,
+ dhd->event_data.raw_sstr_size);
+ dhd->event_data.raw_sstr = NULL;
+ }
+ if (dhd->event_data.rom_raw_sstr) {
+ MFREE(dhd->pub.osh, dhd->event_data.rom_raw_sstr,
+ dhd->event_data.rom_raw_sstr_size);
+ dhd->event_data.rom_raw_sstr = NULL;
+ }
+ dhd->dhd_state &= ~DHD_ATTACH_LOGTRACE_INIT;
+ }
+#endif /* SHOW_LOGTRACE */
#ifdef PNO_SUPPORT
if (dhdp->pno_state)
dhd_pno_deinit(dhdp);
-#endif
+#endif // endif
#ifdef RTT_SUPPORT
if (dhdp->rtt_state) {
- dhd_rtt_deinit(dhdp);
+ dhd_rtt_deinit(dhdp);
}
-#endif
+#endif // endif
#if defined(CONFIG_PM_SLEEP)
if (dhd_pm_notifier_registered) {
unregister_pm_notifier(&dhd->pm_notifier);
@@ -10160,19 +12660,15 @@
free_percpu(dhd->new_freq);
dhd->new_freq = NULL;
cpufreq_unregister_notifier(&dhd->freq_trans, CPUFREQ_TRANSITION_NOTIFIER);
-#endif
+#endif // endif
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
+ dhd->wakelock_wd_counter = 0;
+ wake_lock_destroy(&dhd->wl_wdwake);
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
if (dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT) {
DHD_TRACE(("wd wakelock count:%d\n", dhd->wakelock_wd_counter));
-#ifdef CONFIG_HAS_WAKELOCK
- dhd->wakelock_counter = 0;
- dhd->wakelock_wd_counter = 0;
- wake_lock_destroy(&dhd->wl_wifi);
- wake_lock_destroy(&dhd->wl_wdwake);
DHD_OS_WAKE_LOCK_DESTROY(dhd);
-#endif /* CONFIG_HAS_WAKELOCK */
}
-
-
#ifdef DHDTCPACK_SUPPRESS
/* This will free all MEM allocated for TCPACK SUPPRESS */
@@ -10180,14 +12676,73 @@
#endif /* DHDTCPACK_SUPPRESS */
#ifdef PCIE_FULL_DONGLE
- dhd_flow_rings_deinit(dhdp);
- if (dhdp->prot)
- dhd_prot_detach(dhdp);
-#endif
+ dhd_flow_rings_deinit(dhdp);
+ if (dhdp->prot)
+ dhd_prot_detach(dhdp);
+#endif // endif
- dhd_fw_downloaded = FALSE;
-}
+#if defined(WLTDLS) && defined(PCIE_FULL_DONGLE)
+ dhd_free_tdls_peer_list(dhdp);
+#endif // endif
+#ifdef DUMP_IOCTL_IOV_LIST
+ dhd_iov_li_delete(dhdp, &(dhdp->dump_iovlist_head));
+#endif /* DUMP_IOCTL_IOV_LIST */
+#ifdef DHD_DEBUG
+ /* memory waste feature list initilization */
+ dhd_mw_list_delete(dhdp, &(dhdp->mw_list_head));
+#endif /* DHD_DEBUG */
+#ifdef WL_MONITOR
+ dhd_del_monitor_if(dhd);
+#endif /* WL_MONITOR */
+
+#ifdef DHD_ERPOM
+ if (dhdp->enable_erpom) {
+ dhdp->pom_func_deregister(&dhdp->pom_wlan_handler);
+ }
+#endif /* DHD_ERPOM */
+
+ cancel_work_sync(&dhd->dhd_hang_process_work);
+
+ /* Prefer adding de-init code above this comment unless necessary.
+ * The idea is to cancel work queue, sysfs and flags at the end.
+ */
+ dhd_deferred_work_deinit(dhd->dhd_deferred_wq);
+ dhd->dhd_deferred_wq = NULL;
+
+ /* log dump related buffers should be freed after wq is purged */
+#ifdef DHD_LOG_DUMP
+ dhd_log_dump_deinit(&dhd->pub);
+#endif /* DHD_LOG_DUMP */
+#if defined(BCMPCIE)
+ if (dhdp->extended_trap_data)
+ {
+ MFREE(dhdp->osh, dhdp->extended_trap_data, BCMPCIE_EXT_TRAP_DATA_MAXLEN);
+ dhdp->extended_trap_data = NULL;
+ }
+#ifdef DNGL_AXI_ERROR_LOGGING
+ if (dhdp->axi_err_dump)
+ {
+ MFREE(dhdp->osh, dhdp->axi_err_dump, sizeof(dhd_axi_error_dump_t));
+ dhdp->axi_err_dump = NULL;
+ }
+#endif /* DNGL_AXI_ERROR_LOGGING */
+#endif /* BCMPCIE */
+
+#ifdef DHD_DUMP_MNGR
+ if (dhd->pub.dump_file_manage) {
+ MFREE(dhd->pub.osh, dhd->pub.dump_file_manage,
+ sizeof(dhd_dump_file_manage_t));
+ }
+#endif /* DHD_DUMP_MNGR */
+ dhd_sysfs_exit(dhd);
+ dhd->pub.fw_download_status = FW_UNLOADED;
+
+#if defined(BT_OVER_SDIO)
+ mutex_destroy(&dhd->bus_user_lock);
+#endif /* BT_OVER_SDIO */
+
+} /* dhd_detach */
void
dhd_free(dhd_pub_t *dhdp)
@@ -10224,22 +12779,14 @@
#endif /* CONFIG_DHD_USE_STATIC_BUF && DHD_USE_STATIC_MEMDUMP */
dhdp->soc_ram = NULL;
}
-#ifdef CACHE_FW_IMAGES
- if (dhdp->cached_fw) {
- MFREE(dhdp->osh, dhdp->cached_fw, dhdp->bus->ramsize);
- dhdp->cached_fw = NULL;
- }
+ if (dhd != NULL) {
- if (dhdp->cached_nvram) {
- MFREE(dhdp->osh, dhdp->cached_nvram, MAX_NVRAMBUF_SIZE);
- dhdp->cached_nvram = NULL;
+ /* If pointer is allocated by dhd_os_prealloc then avoid MFREE */
+ if (dhd != (dhd_info_t *)dhd_os_prealloc(dhdp,
+ DHD_PREALLOC_DHD_INFO, 0, FALSE))
+ MFREE(dhd->pub.osh, dhd, sizeof(*dhd));
+ dhd = NULL;
}
-#endif
- /* If pointer is allocated by dhd_os_prealloc then avoid MFREE */
- if (dhd &&
- dhd != (dhd_info_t *)dhd_os_prealloc(dhdp, DHD_PREALLOC_DHD_INFO, 0, FALSE))
- MFREE(dhd->pub.osh, dhd, sizeof(*dhd));
- dhd = NULL;
}
}
@@ -10288,13 +12835,11 @@
{
DHD_TRACE(("%s: Enter\n", __FUNCTION__));
-#ifdef BCMDBUS
- dbus_deregister();
-#else
dhd_bus_unregister();
-#endif /* BCMDBUS */
+#if defined(OEM_ANDROID)
wl_android_exit();
+#endif /* OEM_ANDROID */
dhd_wifi_platform_unregister_drv();
}
@@ -10302,9 +12847,10 @@
static void __exit
dhd_module_exit(void)
{
- dhd_buzzz_detach();
+ atomic_set(&exit_in_progress, 1);
dhd_module_cleanup();
unregister_reboot_notifier(&dhd_reboot_notifier);
+ dhd_destroy_to_notifier_skt();
}
static int __init
@@ -10315,10 +12861,7 @@
DHD_ERROR(("%s in\n", __FUNCTION__));
- dhd_buzzz_attach();
-
DHD_PERIM_RADIO_INIT();
-
if (firmware_path[0] != '\0') {
strncpy(fw_bak_path, firmware_path, MOD_PARAM_PATHLEN);
@@ -10335,8 +12878,7 @@
if (!err) {
register_reboot_notifier(&dhd_reboot_notifier);
break;
- }
- else {
+ } else {
DHD_ERROR(("%s: Failed to load the driver, try cnt %d\n",
__FUNCTION__, retry));
strncpy(firmware_path, fw_bak_path, MOD_PARAM_PATHLEN);
@@ -10345,6 +12887,8 @@
nvram_path[MOD_PARAM_PATHLEN-1] = '\0';
}
} while (retry--);
+
+ dhd_create_to_notifier_skt();
if (err) {
DHD_ERROR(("%s: Failed to load driver max retry reached**\n", __FUNCTION__));
@@ -10363,263 +12907,39 @@
dhd_reboot_callback(struct notifier_block *this, unsigned long code, void *unused)
{
DHD_TRACE(("%s: code = %ld\n", __FUNCTION__, code));
-#ifdef STBLINUX
- dhd_module_cleanup();
-#else
if (code == SYS_RESTART) {
+#ifdef OEM_ANDROID
#ifdef BCMPCIE
is_reboot = code;
#endif /* BCMPCIE */
+#else
+ dhd_module_cleanup();
+#endif /* OEM_ANDROID */
}
-#endif /* STBLINUX */
return NOTIFY_DONE;
}
-#ifdef BCMDBUS
-
-/*
- * hdrlen is space to reserve in pkt headroom for DBUS
- */
-void *
-dhd_dbus_probe_cb(void *arg, const char *desc, uint32 bustype, uint32 hdrlen)
-{
- osl_t *osh;
- int ret = 0;
- dbus_attrib_t attrib;
- dhd_pub_t *pub = NULL;
-
- DHD_TRACE(("%s: Enter\n", __FUNCTION__));
-
- /* Ask the OS interface part for an OSL handle */
- if (!(osh = osl_attach(NULL, bustype, TRUE))) {
- DHD_ERROR(("%s: OSL attach failed\n", __FUNCTION__));
- ret = -ENOMEM;
- goto fail;
- }
-
- /* Attach to the dhd/OS interface */
- if (!(pub = dhd_attach(osh, NULL /* bus */, hdrlen))) {
- DHD_ERROR(("%s: dhd_attach failed\n", __FUNCTION__));
- ret = -ENXIO;
- goto fail;
- }
-
- /* Ok, finish the attach to the OS network interface */
- if (dhd_register_if(pub, 0, TRUE) != 0) {
- DHD_ERROR(("%s: dhd_register_if failed\n", __FUNCTION__));
- ret = -ENXIO;
- goto fail;
- }
-
- pub->dbus = dbus_attach(osh, pub->rxsz, DBUS_NRXQ, DBUS_NTXQ,
- pub->info, &dhd_dbus_cbs, NULL, NULL);
- if (pub->dbus) {
- dbus_get_attrib(pub->dbus, &attrib);
- DHD_ERROR(("DBUS: vid=0x%x pid=0x%x devid=0x%x bustype=0x%x mtu=%d\n",
- attrib.vid, attrib.pid, attrib.devid, attrib.bustype, attrib.mtu));
- } else {
- ret = -ENXIO;
- goto fail;
- }
-#ifdef BCM_FD_AGGR
- pub->info->rpc_th = bcm_rpc_tp_attach(osh, (void *)pub->dbus);
- if (!pub->info->rpc_th) {
- DHD_ERROR(("%s: bcm_rpc_tp_attach failed\n", __FUNCTION__));
- ret = -ENXIO;
- goto fail;
- }
-
- pub->info->rpc_osh = rpc_osl_attach(osh);
- if (!pub->info->rpc_osh) {
- DHD_ERROR(("%s: rpc_osl_attach failed\n", __FUNCTION__));
- bcm_rpc_tp_detach(pub->info->rpc_th);
- pub->info->rpc_th = NULL;
- ret = -ENXIO;
- goto fail;
- }
- /* Set up the aggregation release timer */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0))
- timer_setup(&pub->info->rpcth_timer, dhd_rpcth_watchdog, 0)
-#else
- init_timer(&pub->info->rpcth_timer);
- pub->info->rpcth_timer.data = (ulong)pub->info;
- pub->info->rpcth_timer.function = dhd_rpcth_watchdog;
-#endif
- pub->info->rpcth_timer_active = FALSE;
-
- bcm_rpc_tp_register_cb(pub->info->rpc_th, NULL, pub->info,
- dbus_rpcth_rx_pkt, pub->info, pub->info->rpc_osh);
-#endif /* BCM_FD_AGGR */
-
- /* This is passed to dhd_dbus_disconnect_cb */
- return pub->info;
-fail:
- /* Release resources in reverse order */
- if (osh) {
- if (pub) {
- dhd_detach(pub);
- dhd_free(pub);
- }
- osl_detach(osh);
- }
-
- BCM_REFERENCE(ret);
- return NULL;
-}
-
-void
-dhd_dbus_disconnect_cb(void *arg)
-{
- dhd_info_t *dhd = (dhd_info_t *)arg;
- dhd_pub_t *pub;
- osl_t *osh;
-
- if (dhd == NULL)
- return;
-
- pub = &dhd->pub;
- osh = pub->osh;
-#ifdef BCM_FD_AGGR
- del_timer_sync(&dhd->rpcth_timer);
- bcm_rpc_tp_deregister_cb(dhd->rpc_th);
- rpc_osl_detach(dhd->rpc_osh);
- bcm_rpc_tp_detach(dhd->rpc_th);
-#endif
- dhd_detach(pub);
- dhd_free(pub);
-
- if (MALLOCED(osh)) {
- DHD_ERROR(("%s: MEMORY LEAK %d bytes\n", __FUNCTION__, MALLOCED(osh)));
- }
- osl_detach(osh);
-}
-#endif /* BCMDBUS */
-
-#ifdef CONFIG_PLAT_ROCKCHIP
-#include <linux/rfkill-wlan.h>
-
-//rk
-/* The debugfs functions are optimized away when CONFIG_DEBUG_FS isn't set. */
-//static char tcp_keepalive_param[200];
-static char sabuf[20]="", dabuf[20]="";
-static char seabuf[ETHER_ADDR_STR_LEN]="";
-static char deabuf[ETHER_ADDR_STR_LEN]="";
-static uint16 source, dest, window, ip_id;
-static uint32 seq = 0, seq_ack = 0, tcp_option_len = 0, tcp_data_len = 0, tsval = 0, tsecr = 0;
-#include <linux/hrtimer.h>
-#include <linux/time.h>
-#include <net/tcp.h>
-#include <linux/proc_fs.h>
-
-static int tcp_param_show(struct seq_file *s, void *data)
-{
- //seq_printf(s, "dhd_priv wl tcpka_conn_add 1 %s %s %s 1 %d %d 1 1 1 1 1 5 0x6865617274\n",
- // deabuf, sabuf, dabuf, source, dest);
-
- //seq_printf(s, "dhd_priv wl tcpka_conn_add 1 %s %s %s %d %d %d %8u %8u %d %8u %8u 0 5 0x6865617274\n", deabuf, sabuf, dabuf, ip_id, source, dest, seq, seq_ack, window, tsval, tsecr);
- seq_printf(s, "wl_cy tcpka_conn_add %s %s %s %d %d %d %8u %8u %d %8u %8u 0 7 Qghappy\n", deabuf, sabuf, dabuf, ip_id, source, dest, seq, seq_ack, window, tsval, tsecr);
-
- return 0;
-}
-
-#ifndef CONFIG_PROC_FS
-DEFINE_SHOW_ATTRIBUTE(tcp_param);
-#endif
-
-static void rk_bcm_add_tcp_keepalive_debugfs(void)
-{
-#ifdef CONFIG_PROC_FS
- proc_create_single("tcp_params", 0, NULL, tcp_param_show);
-#else
- struct dentry *root;
-
- root = debugfs_create_dir("tcp_keepalive_param", NULL);
- if (IS_ERR(root))
- /* Don't complain -- debugfs just isn't enabled */
- return;
- if (!root)
- /* Complain -- debugfs is enabled, but it failed to
- * create the directory. */
- goto err_root;
-
- if (!debugfs_create_file("tcp_param", S_IRUSR, root, NULL, &tcp_param_fops))
- goto err_node;
-
- return;
-
-err_node:
- debugfs_remove_recursive(root);
-err_root:
- pr_err("failed to initialize keepalive debugfs\n");
-#endif
-}
-
-#define CONFIG_WIFI_LOAD_DRIVER_WHEN_KERNEL_BOOTUP 1
-
-extern int get_wifi_chip_type(void);
-extern char WIFI_MODULE_NAME[];
-extern char RKWIFI_DRV_VERSION[];
-
-#ifdef CONFIG_WIFI_LOAD_DRIVER_WHEN_KERNEL_BOOTUP
-static int wifi_init_thread(void *data)
-{
- rk_bcm_add_tcp_keepalive_debugfs();
- dhd_module_init();
- return 0;
-}
-#endif /* CONFIG_WIFI_LOAD_DRIVER_WHEN_KERNEL_BOOTUP */
-
-int rockchip_wifi_init_module_rkwifi(void)
-{
-#ifdef CONFIG_WIFI_LOAD_DRIVER_WHEN_KERNEL_BOOTUP
- struct task_struct *kthread = NULL;
-
- kthread = kthread_run(wifi_init_thread, NULL, "wifi_init_thread");
-
- if (IS_ERR(kthread)) {
- DHD_ERROR(("create wifi_init_thread failed.\n"));
- }
-
- return 0;
-#else /* CONFIG_WIFI_LOAD_DRIVER_WHEN_KERNEL_BOOTUP */
- return dhd_module_init();
-#endif /* CONFIG_WIFI_LOAD_DRIVER_WHEN_KERNEL_BOOTUP */
-}
-
-void rockchip_wifi_exit_module_rkwifi(void)
-{
- dhd_module_exit();
-}
-
-#ifdef CONFIG_WIFI_LOAD_DRIVER_WHEN_KERNEL_BOOTUP
-late_initcall(rockchip_wifi_init_module_rkwifi);
-module_exit(rockchip_wifi_exit_module_rkwifi);
-#else /* CONFIG_WIFI_LOAD_DRIVER_WHEN_KERNEL_BOOTUP */
-EXPORT_SYMBOL(rockchip_wifi_init_module_rkwifi);
-EXPORT_SYMBOL(rockchip_wifi_exit_module_rkwifi);
-#endif /* CONFIG_WIFI_LOAD_DRIVER_WHEN_KERNEL_BOOTUP */
-
-#else /* CONFIG_PLAT_ROCKCHIP */
-
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
-#if defined(CONFIG_DEFERRED_INITCALLS)
-#if defined(CONFIG_MACH_UNIVERSAL7420)
+#if defined(CONFIG_DEFERRED_INITCALLS) && !defined(EXYNOS_PCIE_MODULE_PATCH)
+#if defined(CONFIG_MACH_UNIVERSAL7420) || defined(CONFIG_SOC_EXYNOS8890) || \
+ defined(CONFIG_ARCH_MSM8996) || defined(CONFIG_ARCH_MSM8998) || \
+ defined(CONFIG_SOC_EXYNOS8895) || defined(CONFIG_SOC_EXYNOS9810) || \
+ defined(CONFIG_ARCH_SDM845) || defined(CONFIG_SOC_EXYNOS9820) || \
+ defined(CONFIG_ARCH_SM8150)
deferred_module_init_sync(dhd_module_init);
#else
deferred_module_init(dhd_module_init);
-#endif /* CONFIG_MACH_UNIVERSAL7420 */
+#endif /* CONFIG_MACH_UNIVERSAL7420 || CONFIG_SOC_EXYNOS8890 ||
+ * CONFIG_ARCH_MSM8996 || CONFIG_ARCH_MSM8998 || CONFIG_SOC_EXYNOS8895
+ * CONFIG_SOC_EXYNOS9810 || CONFIG_ARCH_SDM845 || CONFIG_SOC_EXYNOS9820
+ * CONFIG_ARCH_SM8150
+ */
#elif defined(USE_LATE_INITCALL_SYNC)
late_initcall_sync(dhd_module_init);
#else
late_initcall(dhd_module_init);
#endif /* USE_LATE_INITCALL_SYNC */
-#else
-module_init(dhd_module_init);
-#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) */
module_exit(dhd_module_exit);
-
-#endif/* CONFIG_PLAT_ROCKCHIP */
/*
* OS specific functions required to implement DHD driver in OS independent way
@@ -10654,6 +12974,78 @@
return 0;
}
+void
+dhd_os_dhdiovar_lock(dhd_pub_t *pub)
+{
+ dhd_info_t * dhd = (dhd_info_t *)(pub->info);
+
+ if (dhd) {
+ mutex_lock(&dhd->dhd_iovar_mutex);
+ }
+}
+
+void
+dhd_os_dhdiovar_unlock(dhd_pub_t *pub)
+{
+ dhd_info_t * dhd = (dhd_info_t *)(pub->info);
+
+ if (dhd) {
+ mutex_unlock(&dhd->dhd_iovar_mutex);
+ }
+}
+
+void
+dhd_os_logdump_lock(dhd_pub_t *pub)
+{
+ dhd_info_t *dhd = NULL;
+
+ if (!pub)
+ return;
+
+ dhd = (dhd_info_t *)(pub->info);
+
+ if (dhd) {
+ mutex_lock(&dhd->logdump_lock);
+ }
+}
+
+void
+dhd_os_logdump_unlock(dhd_pub_t *pub)
+{
+ dhd_info_t *dhd = NULL;
+
+ if (!pub)
+ return;
+
+ dhd = (dhd_info_t *)(pub->info);
+
+ if (dhd) {
+ mutex_unlock(&dhd->logdump_lock);
+ }
+}
+
+unsigned long
+dhd_os_dbgring_lock(void *lock)
+{
+ if (!lock)
+ return 0;
+
+ mutex_lock((struct mutex *)lock);
+
+ return 0;
+}
+
+void
+dhd_os_dbgring_unlock(void *lock, unsigned long flags)
+{
+ BCM_REFERENCE(flags);
+
+ if (!lock)
+ return;
+
+ mutex_unlock((struct mutex *)lock);
+}
+
unsigned int
dhd_os_get_ioctl_resp_timeout(void)
{
@@ -10673,11 +13065,7 @@
int timeout;
/* Convert timeout in millsecond to jiffies */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27))
timeout = msecs_to_jiffies(dhd_ioctl_timeout_msec);
-#else
- timeout = dhd_ioctl_timeout_msec * HZ / 1000;
-#endif
DHD_PERIM_UNLOCK(pub);
@@ -10704,11 +13092,7 @@
int timeout;
/* Convert timeout in millsecond to jiffies */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27))
- timeout = msecs_to_jiffies(dhd_ioctl_timeout_msec);
-#else
- timeout = dhd_ioctl_timeout_msec * HZ / 1000;
-#endif
+ timeout = msecs_to_jiffies(D3_ACK_RESP_TIMEOUT);
DHD_PERIM_UNLOCK(pub);
@@ -10739,17 +13123,88 @@
* so that IOCTL timeout should not get affected.
*/
/* Convert timeout in millsecond to jiffies */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27))
timeout = msecs_to_jiffies(DHD_BUS_BUSY_TIMEOUT);
-#else
- timeout = DHD_BUS_BUSY_TIMEOUT * HZ / 1000;
-#endif
timeout = wait_event_timeout(dhd->dhd_bus_busy_state_wait, !(*condition), timeout);
return timeout;
}
+/*
+ * Wait until the condition *var == condition is met.
+ * Returns 0 if the @condition evaluated to false after the timeout elapsed
+ * Returns 1 if the @condition evaluated to true
+ */
+int
+dhd_os_busbusy_wait_condition(dhd_pub_t *pub, uint *var, uint condition)
+{
+ dhd_info_t * dhd = (dhd_info_t *)(pub->info);
+ int timeout;
+
+ /* Convert timeout in millsecond to jiffies */
+ timeout = msecs_to_jiffies(DHD_BUS_BUSY_TIMEOUT);
+
+ timeout = wait_event_timeout(dhd->dhd_bus_busy_state_wait, (*var == condition), timeout);
+
+ return timeout;
+}
+
+/*
+ * Wait until the '(*var & bitmask) == condition' is met.
+ * Returns 0 if the @condition evaluated to false after the timeout elapsed
+ * Returns 1 if the @condition evaluated to true
+ */
+int
+dhd_os_busbusy_wait_bitmask(dhd_pub_t *pub, uint *var,
+ uint bitmask, uint condition)
+{
+ dhd_info_t * dhd = (dhd_info_t *)(pub->info);
+ int timeout;
+
+ /* Convert timeout in millsecond to jiffies */
+ timeout = msecs_to_jiffies(DHD_BUS_BUSY_TIMEOUT);
+
+ timeout = wait_event_timeout(dhd->dhd_bus_busy_state_wait,
+ ((*var & bitmask) == condition), timeout);
+
+ return timeout;
+}
+
+int
+dhd_os_dmaxfer_wait(dhd_pub_t *pub, uint *condition)
+{
+ int ret = 0;
+ dhd_info_t * dhd = (dhd_info_t *)(pub->info);
+ int timeout;
+
+ timeout = msecs_to_jiffies(IOCTL_DMAXFER_TIMEOUT);
+
+ DHD_PERIM_UNLOCK(pub);
+ ret = wait_event_timeout(dhd->dmaxfer_wait, (*condition), timeout);
+ DHD_PERIM_LOCK(pub);
+
+ return ret;
+
+}
+
+int
+dhd_os_dmaxfer_wake(dhd_pub_t *pub)
+{
+ dhd_info_t *dhd = (dhd_info_t *)(pub->info);
+
+ wake_up(&dhd->dmaxfer_wait);
+ return 0;
+}
+
+void
+dhd_os_tx_completion_wake(dhd_pub_t *dhd)
+{
+ /* Call wmb() to make sure before waking up the other event value gets updated */
+ OSL_SMP_WMB();
+ wake_up(&dhd->tx_completion_wait);
+}
+
+/* Fix compilation error for FC11 */
INLINE int
dhd_os_busbusy_wake(dhd_pub_t *pub)
{
@@ -10763,7 +13218,6 @@
void
dhd_os_wd_timer_extend(void *bus, bool extend)
{
-#ifndef BCMDBUS
dhd_pub_t *pub = bus;
dhd_info_t *dhd = (dhd_info_t *)pub->info;
@@ -10771,14 +13225,11 @@
dhd_os_wd_timer(bus, WATCHDOG_EXTEND_INTERVAL);
else
dhd_os_wd_timer(bus, dhd->default_wd_interval);
-#endif /* !BCMDBUS */
}
-
void
dhd_os_wd_timer(void *bus, uint wdtick)
{
-#ifndef BCMDBUS
dhd_pub_t *pub = bus;
dhd_info_t *dhd = (dhd_info_t *)pub->info;
unsigned long flags;
@@ -10795,6 +13246,11 @@
/* don't start the wd until fw is loaded */
if (pub->busstate == DHD_BUS_DOWN) {
DHD_GENERAL_UNLOCK(pub, flags);
+#ifdef BCMSDIO
+ if (!wdtick) {
+ DHD_OS_WD_WAKE_UNLOCK(pub);
+ }
+#endif /* BCMSDIO */
return;
}
@@ -10803,23 +13259,81 @@
dhd->wd_timer_valid = FALSE;
DHD_GENERAL_UNLOCK(pub, flags);
del_timer_sync(&dhd->timer);
+#ifdef BCMSDIO
+ DHD_OS_WD_WAKE_UNLOCK(pub);
+#endif /* BCMSDIO */
return;
}
- if (wdtick) {
+ if (wdtick) {
+#ifdef BCMSDIO
+ DHD_OS_WD_WAKE_LOCK(pub);
dhd_watchdog_ms = (uint)wdtick;
+#endif /* BCMSDIO */
/* Re arm the timer, at last watchdog period */
mod_timer(&dhd->timer, jiffies + msecs_to_jiffies(dhd_watchdog_ms));
dhd->wd_timer_valid = TRUE;
}
DHD_GENERAL_UNLOCK(pub, flags);
-#endif /* BCMDBUS */
}
+#ifdef DHD_PCIE_RUNTIMEPM
+void
+dhd_os_runtimepm_timer(void *bus, uint tick)
+{
+ dhd_pub_t *pub = bus;
+ dhd_info_t *dhd = (dhd_info_t *)pub->info;
+ unsigned long flags;
+
+ DHD_TRACE(("%s: Enter\n", __FUNCTION__));
+
+ if (!dhd) {
+ DHD_ERROR(("%s: dhd is NULL\n", __FUNCTION__));
+ return;
+ }
+
+ DHD_GENERAL_LOCK(pub, flags);
+
+ /* don't start the RPM until fw is loaded */
+ if (DHD_BUS_CHECK_DOWN_OR_DOWN_IN_PROGRESS(pub)) {
+ DHD_GENERAL_UNLOCK(pub, flags);
+ return;
+ }
+
+ /* If tick is non-zero, the request is to start the timer */
+ if (tick) {
+ /* Start the timer only if its not already running */
+ if (dhd->rpm_timer_valid == FALSE) {
+ mod_timer(&dhd->rpm_timer, jiffies + msecs_to_jiffies(dhd_runtimepm_ms));
+ dhd->rpm_timer_valid = TRUE;
+ DHD_ERROR(("DHD Runtime PM Enabled \n"));
+ }
+ } else {
+ /* tick is zero, we have to stop the timer */
+ /* Stop the timer only if its running, otherwise we don't have to do anything */
+ if (dhd->rpm_timer_valid == TRUE) {
+ dhd->rpm_timer_valid = FALSE;
+ DHD_GENERAL_UNLOCK(pub, flags);
+ del_timer_sync(&dhd->rpm_timer);
+ DHD_ERROR(("DHD Runtime PM Disabled \n"));
+ /* we have already released the lock, so just go to exit */
+ goto exit;
+ }
+ }
+
+ DHD_GENERAL_UNLOCK(pub, flags);
+exit:
+ return;
+
+}
+
+#endif /* DHD_PCIE_RUNTIMEPM */
+
void *
-dhd_os_open_image(char *filename)
+dhd_os_open_image1(dhd_pub_t *pub, char *filename)
{
struct file *fp;
+ int size;
fp = filp_open(filename, O_RDONLY, 0);
/*
@@ -10828,9 +13342,27 @@
* fp = open_namei(AT_FDCWD, filename, O_RD, 0);
* ???
*/
- if (IS_ERR(fp))
+ if (IS_ERR(fp)) {
fp = NULL;
+ goto err;
+ }
+ if (!S_ISREG(file_inode(fp)->i_mode)) {
+ DHD_ERROR(("%s: %s is not regular file\n", __FUNCTION__, filename));
+ fp = NULL;
+ goto err;
+ }
+
+ size = i_size_read(file_inode(fp));
+ if (size <= 0) {
+ DHD_ERROR(("%s: %s file size invalid %d\n", __FUNCTION__, filename, size));
+ fp = NULL;
+ goto err;
+ }
+
+ DHD_ERROR(("%s: %s (%d bytes) open success\n", __FUNCTION__, filename, size));
+
+err:
return fp;
}
@@ -10839,28 +13371,74 @@
{
struct file *fp = (struct file *)image;
int rdlen;
- loff_t pos;
+ int size;
- if (!image)
+ if (!image) {
return 0;
+ }
- pos = fp->f_pos;
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 14, 0))
- rdlen = kernel_read(fp, (void *) buf, (size_t) len, (loff_t *) &pos);
-#else
- rdlen = kernel_read(fp, pos, buf, len);
-#endif
- if (rdlen > 0)
+ size = i_size_read(file_inode(fp));
+ rdlen = compat_kernel_read(fp, fp->f_pos, buf, MIN(len, size));
+
+ if (len >= size && size != rdlen) {
+ return -EIO;
+ }
+
+ if (rdlen > 0) {
fp->f_pos += rdlen;
+ }
return rdlen;
}
-void
-dhd_os_close_image(void *image)
+#if defined(BT_OVER_SDIO)
+int
+dhd_os_gets_image(dhd_pub_t *pub, char *str, int len, void *image)
{
- if (image)
+ struct file *fp = (struct file *)image;
+ int rd_len;
+ uint str_len = 0;
+ char *str_end = NULL;
+
+ if (!image)
+ return 0;
+
+ rd_len = compat_kernel_read(fp, fp->f_pos, str, len);
+ str_end = strnchr(str, len, '\n');
+ if (str_end == NULL) {
+ goto err;
+ }
+ str_len = (uint)(str_end - str);
+
+ /* Advance file pointer past the string length */
+ fp->f_pos += str_len + 1;
+ bzero(str_end, rd_len - str_len);
+
+err:
+ return str_len;
+}
+#endif /* defined (BT_OVER_SDIO) */
+
+int
+dhd_os_get_image_size(void *image)
+{
+ struct file *fp = (struct file *)image;
+ int size;
+ if (!image) {
+ return 0;
+ }
+
+ size = i_size_read(file_inode(fp));
+
+ return size;
+}
+
+void
+dhd_os_close_image1(dhd_pub_t *pub, void *image)
+{
+ if (image) {
filp_close((struct file *)image, NULL);
+ }
}
void
@@ -10870,14 +13448,10 @@
dhd = (dhd_info_t *)(pub->info);
-#ifndef BCMDBUS
if (dhd_dpc_prio >= 0)
down(&dhd->sdsem);
else
spin_lock_bh(&dhd->sdlock);
-#else
- spin_lock_bh(&dhd->sdlock);
-#endif /* BCMDBUS */
}
void
@@ -10887,14 +13461,10 @@
dhd = (dhd_info_t *)(pub->info);
-#ifndef BCMDBUS
if (dhd_dpc_prio >= 0)
up(&dhd->sdsem);
else
spin_unlock_bh(&dhd->sdlock);
-#else
- spin_unlock_bh(&dhd->sdlock);
-#endif /* BCMDBUS */
}
void
@@ -10903,11 +13473,7 @@
dhd_info_t *dhd;
dhd = (dhd_info_t *)(pub->info);
-#ifdef BCMDBUS
- spin_lock_irqsave(&dhd->txqlock, dhd->txqlock_flags);
-#else
spin_lock_bh(&dhd->txqlock);
-#endif
}
void
@@ -10916,11 +13482,7 @@
dhd_info_t *dhd;
dhd = (dhd_info_t *)(pub->info);
-#ifdef BCMDBUS
- spin_unlock_irqrestore(&dhd->txqlock, dhd->txqlock_flags);
-#else
spin_unlock_bh(&dhd->txqlock);
-#endif
}
void
@@ -11030,7 +13592,7 @@
#endif /* defined(WL_WIRELESS_EXT) */
static int
-dhd_wl_host_event(dhd_info_t *dhd, int *ifidx, void *pktdata, uint16 pktlen,
+dhd_wl_host_event(dhd_info_t *dhd, int ifidx, void *pktdata, uint16 pktlen,
wl_event_msg_t *event, void **data)
{
int bcmerror = 0;
@@ -11040,38 +13602,43 @@
ASSERT(dhd != NULL);
#ifdef SHOW_LOGTRACE
- bcmerror = wl_host_event(&dhd->pub, ifidx, pktdata, pktlen, event, data,
- &dhd->event_data);
+ bcmerror = wl_process_host_event(&dhd->pub, &ifidx, pktdata, pktlen, event, data,
+ &dhd->event_data);
#else
- bcmerror = wl_host_event(&dhd->pub, ifidx, pktdata, pktlen, event, data,
- NULL);
+ bcmerror = wl_process_host_event(&dhd->pub, &ifidx, pktdata, pktlen, event, data,
+ NULL);
#endif /* SHOW_LOGTRACE */
+ if (unlikely(bcmerror != BCME_OK)) {
+ return bcmerror;
+ }
- if (bcmerror != BCME_OK)
- return (bcmerror);
+ if (ntoh32(event->event_type) == WLC_E_IF) {
+ /* WLC_E_IF event types are consumed by wl_process_host_event.
+ * For ifadd/del ops, the netdev ptr may not be valid at this
+ * point. so return before invoking cfg80211/wext handlers.
+ */
+ return BCME_OK;
+ }
#if defined(WL_WIRELESS_EXT)
if (event->bsscfgidx == 0) {
/*
* Wireless ext is on primary interface only
*/
+ ASSERT(dhd->iflist[ifidx] != NULL);
+ ASSERT(dhd->iflist[ifidx]->net != NULL);
- ASSERT(dhd->iflist[*ifidx] != NULL);
- ASSERT(dhd->iflist[*ifidx]->net != NULL);
-
- if (dhd->iflist[*ifidx]->net) {
- wl_iw_event(dhd->iflist[*ifidx]->net, event, *data);
+ if (dhd->iflist[ifidx]->net) {
+ wl_iw_event(dhd->iflist[ifidx]->net, event, *data);
}
}
#endif /* defined(WL_WIRELESS_EXT) */
#ifdef WL_CFG80211
- ASSERT(dhd->iflist[*ifidx] != NULL);
- ASSERT(dhd->iflist[*ifidx]->net != NULL);
- if (dhd->iflist[*ifidx]->net) {
+ if (dhd->iflist[ifidx]->net) {
spin_lock_irqsave(&dhd->pub.up_lock, flags);
if (dhd->pub.up) {
- wl_cfg80211_event(dhd->iflist[*ifidx]->net, event, *data);
+ wl_cfg80211_event(dhd->iflist[ifidx]->net, event, *data);
}
spin_unlock_irqrestore(&dhd->pub.up_lock, flags);
}
@@ -11085,7 +13652,7 @@
dhd_sendup_event(dhd_pub_t *dhdp, wl_event_msg_t *event, void *data)
{
switch (ntoh32(event->event_type)) {
-
+ /* Handle error case or further events here */
default:
break;
}
@@ -11143,8 +13710,7 @@
} else {
netif_rx_ni(skb);
}
- }
- else {
+ } else {
/* Could not allocate a sk_buf */
DHD_ERROR(("%s: unable to alloc sk_buf", __FUNCTION__));
}
@@ -11153,29 +13719,25 @@
void dhd_wait_for_event(dhd_pub_t *dhd, bool *lockvar)
{
-#if defined(BCMSDIO) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0))
+#if defined(BCMSDIO)
struct dhd_info *dhdinfo = dhd->info;
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27))
int timeout = msecs_to_jiffies(IOCTL_RESP_TIMEOUT);
-#else
- int timeout = (IOCTL_RESP_TIMEOUT / 1000) * HZ;
-#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)) */
dhd_os_sdunlock(dhd);
wait_event_timeout(dhdinfo->ctrl_wait, (*lockvar == FALSE), timeout);
dhd_os_sdlock(dhd);
-#endif /* defined(BCMSDIO) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)) */
+#endif /* defined(BCMSDIO) */
return;
-}
+} /* dhd_init_static_strs_array */
void dhd_wait_event_wakeup(dhd_pub_t *dhd)
{
-#if defined(BCMSDIO) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0))
+#if defined(BCMSDIO)
struct dhd_info *dhdinfo = dhd->info;
if (waitqueue_active(&dhdinfo->ctrl_wait))
wake_up(&dhdinfo->ctrl_wait);
-#endif
+#endif // endif
return;
}
@@ -11186,6 +13748,11 @@
int ret;
dhd_info_t *dhd = DHD_DEV_INFO(dev);
+
+#ifdef DHD_PCIE_NATIVE_RUNTIMEPM
+ if (pm_runtime_get_sync(dhd_bus_to_dev(dhd->pub.bus)) < 0)
+ return BCME_ERROR;
+#endif /* DHD_PCIE_NATIVE_RUNTIMEPM */
if (flag == TRUE) {
/* Issue wl down command before resetting the chip */
@@ -11201,12 +13768,16 @@
if (dhd->pub.pno_state) {
dhd_pno_deinit(&dhd->pub);
}
-#endif
+#endif // endif
#ifdef RTT_SUPPORT
if (dhd->pub.rtt_state) {
dhd_rtt_deinit(&dhd->pub);
}
#endif /* RTT_SUPPORT */
+
+#if defined(DBG_PKT_MON) && !defined(DBG_PKT_MON_INIT_DEFAULT)
+ dhd_os_dbg_detach_pkt_monitor(&dhd->pub);
+#endif /* DBG_PKT_MON */
}
#ifdef BCMSDIO
@@ -11219,9 +13790,29 @@
#endif /* BCMSDIO */
ret = dhd_bus_devreset(&dhd->pub, flag);
+
+#ifdef DHD_PCIE_NATIVE_RUNTIMEPM
+ pm_runtime_mark_last_busy(dhd_bus_to_dev(dhd->pub.bus));
+ pm_runtime_put_autosuspend(dhd_bus_to_dev(dhd->pub.bus));
+#endif /* DHD_PCIE_NATIVE_RUNTIMEPM */
+
+ if (flag) {
+ /* Clear some flags for recovery logic */
+ dhd->pub.dongle_trap_occured = 0;
+ dhd->pub.iovar_timeout_occured = 0;
+#ifdef PCIE_FULL_DONGLE
+ dhd->pub.d3ack_timeout_occured = 0;
+ dhd->pub.livelock_occured = 0;
+ dhd->pub.pktid_audit_failed = 0;
+#endif /* PCIE_FULL_DONGLE */
+ dhd->pub.iface_op_failed = 0;
+ dhd->pub.scan_timeout_occurred = 0;
+ dhd->pub.scan_busy_occurred = 0;
+ dhd->pub.smmu_fault_occurred = 0;
+ }
+
if (ret) {
DHD_ERROR(("%s: dhd_bus_devreset: %d\n", __FUNCTION__, ret));
- return ret;
}
return ret;
@@ -11269,10 +13860,10 @@
ret = dhd_set_suspend(val, &dhd->pub);
#else
ret = dhd_suspend_resume_helper(dhd, val, force);
-#endif
+#endif // endif
#ifdef WL_CFG80211
wl_cfg80211_update_power_mode(dev);
-#endif
+#endif // endif
}
return ret;
}
@@ -11281,52 +13872,82 @@
{
dhd_info_t *dhd = DHD_DEV_INFO(dev);
- if (dhd)
+ if (dhd) {
+ DHD_ERROR(("%s: Set bcn_li_dtim in suspend %d\n",
+ __FUNCTION__, val));
dhd->pub.suspend_bcn_li_dtim = val;
+ }
return 0;
}
+int net_os_set_max_dtim_enable(struct net_device *dev, int val)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(dev);
+
+ if (dhd) {
+ DHD_ERROR(("%s: use MAX bcn_li_dtim in suspend %s\n",
+ __FUNCTION__, (val ? "Enable" : "Disable")));
+ if (val) {
+ dhd->pub.max_dtim_enable = TRUE;
+ } else {
+ dhd->pub.max_dtim_enable = FALSE;
+ }
+ } else {
+ return -1;
+ }
+
+ return 0;
+}
+
+#ifdef DISABLE_DTIM_IN_SUSPEND
+int net_os_set_disable_dtim_in_suspend(struct net_device *dev, int val)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(dev);
+
+ if (dhd) {
+ DHD_ERROR(("%s: Disable bcn_li_dtim in suspend %s\n",
+ __FUNCTION__, (val ? "Enable" : "Disable")));
+ if (val) {
+ dhd->pub.disable_dtim_in_suspend = TRUE;
+ } else {
+ dhd->pub.disable_dtim_in_suspend = FALSE;
+ }
+ } else {
+ return -1;
+ }
+
+ return 0;
+}
+#endif /* DISABLE_DTIM_IN_SUSPEND */
+
#ifdef PKT_FILTER_SUPPORT
int net_os_rxfilter_add_remove(struct net_device *dev, int add_remove, int num)
{
- dhd_info_t *dhd = DHD_DEV_INFO(dev);
- char *filterp = NULL;
- int filter_id = 0;
int ret = 0;
- if (!dhd || (num == DHD_UNICAST_FILTER_NUM) ||
- (num == DHD_MDNS_FILTER_NUM))
- return ret;
- if (num >= dhd->pub.pktfilter_count)
- return -EINVAL;
- switch (num) {
- case DHD_BROADCAST_FILTER_NUM:
- filterp = "101 0 0 0 0xFFFFFFFFFFFF 0xFFFFFFFFFFFF";
- filter_id = 101;
- break;
- case DHD_MULTICAST4_FILTER_NUM:
- filterp = "102 0 0 0 0xFFFFFF 0x01005E";
- filter_id = 102;
- break;
- case DHD_MULTICAST6_FILTER_NUM:
- filterp = "103 0 0 0 0xFFFF 0x3333";
- filter_id = 103;
- break;
- default:
- return -EINVAL;
+#ifndef GAN_LITE_NAT_KEEPALIVE_FILTER
+ dhd_info_t *dhd = DHD_DEV_INFO(dev);
+
+ DHD_ERROR(("%s: add_remove = %d, num = %d\n", __FUNCTION__, add_remove, num));
+ if (!dhd || (num == DHD_UNICAST_FILTER_NUM)) {
+ return 0;
}
- /* Add filter */
- if (add_remove) {
- dhd->pub.pktfilter[num] = filterp;
- dhd_pktfilter_offload_set(&dhd->pub, dhd->pub.pktfilter[num]);
- } else { /* Delete filter */
- if (dhd->pub.pktfilter[num] != NULL) {
- dhd_pktfilter_offload_delete(&dhd->pub, filter_id);
- dhd->pub.pktfilter[num] = NULL;
- }
+#ifdef BLOCK_IPV6_PACKET
+ /* customer want to use NO IPV6 packets only */
+ if (num == DHD_MULTICAST6_FILTER_NUM) {
+ return 0;
}
+#endif /* BLOCK_IPV6_PACKET */
+
+ if (num >= dhd->pub.pktfilter_count) {
+ return -EINVAL;
+ }
+
+ ret = dhd_packet_filter_add_remove(&dhd->pub, add_remove, num);
+#endif /* !GAN_LITE_NAT_KEEPALIVE_FILTER */
+
return ret;
}
@@ -11354,6 +13975,7 @@
{
dhd_info_t *dhd = DHD_DEV_INFO(dev);
+ DHD_ERROR(("%s: val = %d\n", __FUNCTION__, val));
return dhd_os_enable_packet_filter(&dhd->pub, val);
}
#endif /* PKT_FILTER_SUPPORT */
@@ -11378,21 +14000,21 @@
dhd_pub_t *dhd = (&ptr->pub);
int feature_set = 0;
-#ifdef DYNAMIC_SWOOB_DURATION
-#ifndef CUSTOM_INTR_WIDTH
-#define CUSTOM_INTR_WIDTH 100
- int intr_width = 0;
-#endif /* CUSTOM_INTR_WIDTH */
-#endif /* DYNAMIC_SWOOB_DURATION */
- if (!dhd)
- return feature_set;
-
- if (FW_SUPPORTED(dhd, sta))
+ if (FW_SUPPORTED(dhd, sta)) {
+#if defined(OEM_ANDROID)
+ feature_set |= WIFI_FEATURE_SET_LATENCY_MODE;
+ feature_set |= WIFI_FEATURE_SET_TX_POWER_LIMIT;
+#endif /* OEM_ANDROID */
feature_set |= WIFI_FEATURE_INFRA;
+ }
if (FW_SUPPORTED(dhd, dualband))
feature_set |= WIFI_FEATURE_INFRA_5G;
- if (FW_SUPPORTED(dhd, p2p))
+ if (FW_SUPPORTED(dhd, p2p)) {
feature_set |= WIFI_FEATURE_P2P;
+#if defined(OEM_ANDROID)
+ feature_set |= WIFI_FEATURE_P2P_RAND_MAC;
+#endif /* OEM_ANDROID */
+ }
if (dhd->op_mode & DHD_FLAG_HOSTAP_MODE)
feature_set |= WIFI_FEATURE_SOFT_AP;
if (FW_SUPPORTED(dhd, tdls))
@@ -11406,81 +14028,102 @@
feature_set |= WIFI_FEATURE_D2D_RTT;
}
#ifdef RTT_SUPPORT
+ feature_set |= WIFI_FEATURE_D2D_RTT;
feature_set |= WIFI_FEATURE_D2AP_RTT;
#endif /* RTT_SUPPORT */
#ifdef LINKSTAT_SUPPORT
feature_set |= WIFI_FEATURE_LINKSTAT;
#endif /* LINKSTAT_SUPPORT */
- /* Supports STA + STA always */
- feature_set |= WIFI_FEATURE_ADDITIONAL_STA;
-#ifdef PNO_SUPPORT
+
+#if defined(PNO_SUPPORT) && !defined(DISABLE_ANDROID_PNO)
if (dhd_is_pno_supported(dhd)) {
feature_set |= WIFI_FEATURE_PNO;
- feature_set |= WIFI_FEATURE_BATCH_SCAN;
#ifdef GSCAN_SUPPORT
feature_set |= WIFI_FEATURE_GSCAN;
+ feature_set |= WIFI_FEATURE_HAL_EPNO;
#endif /* GSCAN_SUPPORT */
}
+#endif /* PNO_SUPPORT && !DISABLE_ANDROID_PNO */
+#ifdef RSSI_MONITOR_SUPPORT
if (FW_SUPPORTED(dhd, rssi_mon)) {
feature_set |= WIFI_FEATURE_RSSI_MONITOR;
}
-#endif /* PNO_SUPPORT */
+#endif /* RSSI_MONITOR_SUPPORT */
#ifdef WL11U
feature_set |= WIFI_FEATURE_HOTSPOT;
#endif /* WL11U */
+#ifdef NDO_CONFIG_SUPPORT
+ if (FW_SUPPORTED(dhd, ndoe))
+ feature_set |= WIFI_FEATURE_CONFIG_NDO;
+#endif /* NDO_CONFIG_SUPPORT */
+#ifdef KEEP_ALIVE
+ feature_set |= WIFI_FEATURE_MKEEP_ALIVE;
+#endif /* KEEP_ALIVE */
+#ifdef SUPPORT_RANDOM_MAC_SCAN
+ feature_set |= WIFI_FEATURE_SCAN_RAND;
+#endif /* SUPPORT_RANDOM_MAC_SCAN */
+#ifdef FILTER_IE
+ if (FW_SUPPORTED(dhd, fie)) {
+ feature_set |= WIFI_FEATURE_FILTER_IE;
+ }
+#endif /* FILTER_IE */
+#ifdef ROAMEXP_SUPPORT
+ /* Check if the Android O roam feature is supported by FW */
+ if (!(BCME_UNSUPPORTED == dhd_dev_set_whitelist_ssid(dev, NULL, 0, true))) {
+ feature_set |= WIFI_FEATURE_CONTROL_ROAMING;
+ }
+#endif /* ROAMEXP_SUPPORT */
return feature_set;
}
-int *dhd_dev_get_feature_set_matrix(struct net_device *dev, int *num)
+int
+dhd_dev_get_feature_set_matrix(struct net_device *dev, int num)
{
- int feature_set_full, mem_needed;
- int *ret;
-
- *num = 0;
- mem_needed = sizeof(int) * MAX_FEATURE_SET_CONCURRRENT_GROUPS;
- ret = (int *) kmalloc(mem_needed, GFP_KERNEL);
- if (!ret) {
- DHD_ERROR(("%s: failed to allocate %d bytes\n", __FUNCTION__,
- mem_needed));
- return ret;
- }
+ int feature_set_full;
+ int ret = 0;
feature_set_full = dhd_dev_get_feature_set(dev);
- ret[0] = (feature_set_full & WIFI_FEATURE_INFRA) |
- (feature_set_full & WIFI_FEATURE_INFRA_5G) |
- (feature_set_full & WIFI_FEATURE_NAN) |
- (feature_set_full & WIFI_FEATURE_D2D_RTT) |
- (feature_set_full & WIFI_FEATURE_D2AP_RTT) |
- (feature_set_full & WIFI_FEATURE_PNO) |
- (feature_set_full & WIFI_FEATURE_HAL_EPNO) |
- (feature_set_full & WIFI_FEATURE_RSSI_MONITOR) |
- (feature_set_full & WIFI_FEATURE_BATCH_SCAN) |
- (feature_set_full & WIFI_FEATURE_GSCAN) |
- (feature_set_full & WIFI_FEATURE_HOTSPOT) |
- (feature_set_full & WIFI_FEATURE_ADDITIONAL_STA) |
- (feature_set_full & WIFI_FEATURE_EPR);
+ /* Common feature set for all interface */
+ ret = (feature_set_full & WIFI_FEATURE_INFRA) |
+ (feature_set_full & WIFI_FEATURE_INFRA_5G) |
+ (feature_set_full & WIFI_FEATURE_D2D_RTT) |
+ (feature_set_full & WIFI_FEATURE_D2AP_RTT) |
+ (feature_set_full & WIFI_FEATURE_RSSI_MONITOR) |
+ (feature_set_full & WIFI_FEATURE_EPR);
- ret[1] = (feature_set_full & WIFI_FEATURE_INFRA) |
- (feature_set_full & WIFI_FEATURE_INFRA_5G) |
- (feature_set_full & WIFI_FEATURE_RSSI_MONITOR) |
- /* Not yet verified NAN with P2P */
- /* (feature_set_full & WIFI_FEATURE_NAN) | */
- (feature_set_full & WIFI_FEATURE_P2P) |
- (feature_set_full & WIFI_FEATURE_D2AP_RTT) |
- (feature_set_full & WIFI_FEATURE_D2D_RTT) |
- (feature_set_full & WIFI_FEATURE_EPR);
+ /* Specific feature group for each interface */
+ switch (num) {
+ case 0:
+ ret |= (feature_set_full & WIFI_FEATURE_P2P) |
+ /* Not supported yet */
+ /* (feature_set_full & WIFI_FEATURE_NAN) | */
+ (feature_set_full & WIFI_FEATURE_TDLS) |
+ (feature_set_full & WIFI_FEATURE_PNO) |
+ (feature_set_full & WIFI_FEATURE_HAL_EPNO) |
+ (feature_set_full & WIFI_FEATURE_BATCH_SCAN) |
+ (feature_set_full & WIFI_FEATURE_GSCAN) |
+ (feature_set_full & WIFI_FEATURE_HOTSPOT) |
+ (feature_set_full & WIFI_FEATURE_ADDITIONAL_STA);
+ break;
- ret[2] = (feature_set_full & WIFI_FEATURE_INFRA) |
- (feature_set_full & WIFI_FEATURE_INFRA_5G) |
- (feature_set_full & WIFI_FEATURE_RSSI_MONITOR) |
- (feature_set_full & WIFI_FEATURE_NAN) |
- (feature_set_full & WIFI_FEATURE_D2D_RTT) |
- (feature_set_full & WIFI_FEATURE_D2AP_RTT) |
- (feature_set_full & WIFI_FEATURE_TDLS) |
- (feature_set_full & WIFI_FEATURE_TDLS_OFFCHANNEL) |
- (feature_set_full & WIFI_FEATURE_EPR);
- *num = MAX_FEATURE_SET_CONCURRRENT_GROUPS;
+ case 1:
+ ret |= (feature_set_full & WIFI_FEATURE_P2P);
+ /* Not yet verified NAN with P2P */
+ /* (feature_set_full & WIFI_FEATURE_NAN) | */
+ break;
+
+ case 2:
+ ret |= (feature_set_full & WIFI_FEATURE_NAN) |
+ (feature_set_full & WIFI_FEATURE_TDLS) |
+ (feature_set_full & WIFI_FEATURE_TDLS_OFFCHANNEL);
+ break;
+
+ default:
+ ret = WIFI_FEATURE_INVALID;
+ DHD_ERROR(("%s: Out of index(%d) for get feature set\n", __FUNCTION__, num));
+ break;
+ }
return ret;
}
@@ -11490,14 +14133,260 @@
{
dhd_info_t *dhd = DHD_DEV_INFO(dev);
- if (nodfs)
+ if (nodfs) {
+ if (dhd->pub.dhd_cflags & WLAN_PLAT_NODFS_FLAG) {
+ return 0;
+ }
dhd->pub.dhd_cflags |= WLAN_PLAT_NODFS_FLAG;
- else
+ } else {
+ if (!(dhd->pub.dhd_cflags & WLAN_PLAT_NODFS_FLAG)) {
+ return 0;
+ }
dhd->pub.dhd_cflags &= ~WLAN_PLAT_NODFS_FLAG;
+ }
dhd->pub.force_country_change = TRUE;
return 0;
}
#endif /* CUSTOM_FORCE_NODFS_FLAG */
+#ifdef NDO_CONFIG_SUPPORT
+int
+dhd_dev_ndo_cfg(struct net_device *dev, u8 enable)
+{
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
+ dhd_pub_t *dhdp = &dhd->pub;
+ int ret = 0;
+
+ if (enable) {
+ /* enable ND offload feature (will be enabled in FW on suspend) */
+ dhdp->ndo_enable = TRUE;
+
+ /* Update changes of anycast address & DAD failed address */
+ ret = dhd_dev_ndo_update_inet6addr(dev);
+ if ((ret < 0) && (ret != BCME_NORESOURCE)) {
+ DHD_ERROR(("%s: failed to update host ip addr: %d\n", __FUNCTION__, ret));
+ return ret;
+ }
+ } else {
+ /* disable ND offload feature */
+ dhdp->ndo_enable = FALSE;
+
+ /* disable ND offload in FW */
+ ret = dhd_ndo_enable(dhdp, FALSE);
+ if (ret < 0) {
+ DHD_ERROR(("%s: failed to disable NDO: %d\n", __FUNCTION__, ret));
+ }
+ }
+ return ret;
+}
+
+/* #pragma used as a WAR to fix build failure,
+* ignore dropping of 'const' qualifier in 'list_entry' macro
+* this pragma disables the warning only for the following function
+*/
+#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
+#endif /* __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6 */
+static int
+dhd_dev_ndo_get_valid_inet6addr_count(struct inet6_dev *inet6)
+{
+ struct inet6_ifaddr *ifa;
+ struct ifacaddr6 *acaddr = NULL;
+ int addr_count = 0;
+
+ /* lock */
+ read_lock_bh(&inet6->lock);
+
+ /* Count valid unicast address */
+ list_for_each_entry(ifa, &inet6->addr_list, if_list) {
+ if ((ifa->flags & IFA_F_DADFAILED) == 0) {
+ addr_count++;
+ }
+ }
+
+ /* Count anycast address */
+ acaddr = inet6->ac_list;
+ while (acaddr) {
+ addr_count++;
+ acaddr = acaddr->aca_next;
+ }
+
+ /* unlock */
+ read_unlock_bh(&inet6->lock);
+
+ return addr_count;
+}
+
+int
+dhd_dev_ndo_update_inet6addr(struct net_device *dev)
+{
+ dhd_info_t *dhd;
+ dhd_pub_t *dhdp;
+ struct inet6_dev *inet6;
+ struct inet6_ifaddr *ifa;
+ struct ifacaddr6 *acaddr = NULL;
+ struct in6_addr *ipv6_addr = NULL;
+ int cnt, i;
+ int ret = BCME_OK;
+
+ /*
+ * this function evaulates host ip address in struct inet6_dev
+ * unicast addr in inet6_dev->addr_list
+ * anycast addr in inet6_dev->ac_list
+ * while evaluating inet6_dev, read_lock_bh() is required to prevent
+ * access on null(freed) pointer.
+ */
+
+ if (dev) {
+ inet6 = dev->ip6_ptr;
+ if (!inet6) {
+ DHD_ERROR(("%s: Invalid inet6_dev\n", __FUNCTION__));
+ return BCME_ERROR;
+ }
+
+ dhd = DHD_DEV_INFO(dev);
+ if (!dhd) {
+ DHD_ERROR(("%s: Invalid dhd_info\n", __FUNCTION__));
+ return BCME_ERROR;
+ }
+ dhdp = &dhd->pub;
+
+ if (dhd_net2idx(dhd, dev) != 0) {
+ DHD_ERROR(("%s: Not primary interface\n", __FUNCTION__));
+ return BCME_ERROR;
+ }
+ } else {
+ DHD_ERROR(("%s: Invalid net_device\n", __FUNCTION__));
+ return BCME_ERROR;
+ }
+
+ /* Check host IP overflow */
+ cnt = dhd_dev_ndo_get_valid_inet6addr_count(inet6);
+ if (cnt > dhdp->ndo_max_host_ip) {
+ if (!dhdp->ndo_host_ip_overflow) {
+ dhdp->ndo_host_ip_overflow = TRUE;
+ /* Disable ND offload in FW */
+ DHD_INFO(("%s: Host IP overflow, disable NDO\n", __FUNCTION__));
+ ret = dhd_ndo_enable(dhdp, FALSE);
+ }
+
+ return ret;
+ }
+
+ /*
+ * Allocate ipv6 addr buffer to store addresses to be added/removed.
+ * driver need to lock inet6_dev while accessing structure. but, driver
+ * cannot use ioctl while inet6_dev locked since it requires scheduling
+ * hence, copy addresses to the buffer and do ioctl after unlock.
+ */
+ ipv6_addr = (struct in6_addr *)MALLOC(dhdp->osh,
+ sizeof(struct in6_addr) * dhdp->ndo_max_host_ip);
+ if (!ipv6_addr) {
+ DHD_ERROR(("%s: failed to alloc ipv6 addr buffer\n", __FUNCTION__));
+ return BCME_NOMEM;
+ }
+
+ /* Find DAD failed unicast address to be removed */
+ cnt = 0;
+ read_lock_bh(&inet6->lock);
+ list_for_each_entry(ifa, &inet6->addr_list, if_list) {
+ /* DAD failed unicast address */
+ if ((ifa->flags & IFA_F_DADFAILED) &&
+ (cnt < dhdp->ndo_max_host_ip)) {
+ memcpy(&ipv6_addr[cnt], &ifa->addr, sizeof(struct in6_addr));
+ cnt++;
+ }
+ }
+ read_unlock_bh(&inet6->lock);
+
+ /* Remove DAD failed unicast address */
+ for (i = 0; i < cnt; i++) {
+ DHD_INFO(("%s: Remove DAD failed addr\n", __FUNCTION__));
+ ret = dhd_ndo_remove_ip_by_addr(dhdp, (char *)&ipv6_addr[i], 0);
+ if (ret < 0) {
+ goto done;
+ }
+ }
+
+ /* Remove all anycast address */
+ ret = dhd_ndo_remove_ip_by_type(dhdp, WL_ND_IPV6_ADDR_TYPE_ANYCAST, 0);
+ if (ret < 0) {
+ goto done;
+ }
+
+ /*
+ * if ND offload was disabled due to host ip overflow,
+ * attempt to add valid unicast address.
+ */
+ if (dhdp->ndo_host_ip_overflow) {
+ /* Find valid unicast address */
+ cnt = 0;
+ read_lock_bh(&inet6->lock);
+ list_for_each_entry(ifa, &inet6->addr_list, if_list) {
+ /* valid unicast address */
+ if (!(ifa->flags & IFA_F_DADFAILED) &&
+ (cnt < dhdp->ndo_max_host_ip)) {
+ memcpy(&ipv6_addr[cnt], &ifa->addr,
+ sizeof(struct in6_addr));
+ cnt++;
+ }
+ }
+ read_unlock_bh(&inet6->lock);
+
+ /* Add valid unicast address */
+ for (i = 0; i < cnt; i++) {
+ ret = dhd_ndo_add_ip_with_type(dhdp,
+ (char *)&ipv6_addr[i], WL_ND_IPV6_ADDR_TYPE_UNICAST, 0);
+ if (ret < 0) {
+ goto done;
+ }
+ }
+ }
+
+ /* Find anycast address */
+ cnt = 0;
+ read_lock_bh(&inet6->lock);
+ acaddr = inet6->ac_list;
+ while (acaddr) {
+ if (cnt < dhdp->ndo_max_host_ip) {
+ memcpy(&ipv6_addr[cnt], &acaddr->aca_addr, sizeof(struct in6_addr));
+ cnt++;
+ }
+ acaddr = acaddr->aca_next;
+ }
+ read_unlock_bh(&inet6->lock);
+
+ /* Add anycast address */
+ for (i = 0; i < cnt; i++) {
+ ret = dhd_ndo_add_ip_with_type(dhdp,
+ (char *)&ipv6_addr[i], WL_ND_IPV6_ADDR_TYPE_ANYCAST, 0);
+ if (ret < 0) {
+ goto done;
+ }
+ }
+
+ /* Now All host IP addr were added successfully */
+ if (dhdp->ndo_host_ip_overflow) {
+ dhdp->ndo_host_ip_overflow = FALSE;
+ if (dhdp->in_suspend) {
+ /* drvier is in (early) suspend state, need to enable ND offload in FW */
+ DHD_INFO(("%s: enable NDO\n", __FUNCTION__));
+ ret = dhd_ndo_enable(dhdp, TRUE);
+ }
+ }
+
+done:
+ if (ipv6_addr) {
+ MFREE(dhdp->osh, ipv6_addr, sizeof(struct in6_addr) * dhdp->ndo_max_host_ip);
+ }
+
+ return ret;
+}
+#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
+#pragma GCC diagnostic pop
+#endif /* __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6) */
+#endif /* NDO_CONFIG_SUPPORT */
+
#ifdef PNO_SUPPORT
/* Linux wrapper to call common dhd_pno_stop_for_ssid */
int
@@ -11556,7 +14445,10 @@
dhd_info_t *dhd = DHD_DEV_INFO(dev);
return (dhd_pno_get_for_batch(&dhd->pub, buf, bufsize, PNO_STATUS_NORMAL));
}
+#endif /* PNO_SUPPORT */
+#if defined(OEM_ANDROID) && defined(PNO_SUPPORT)
+#ifdef GSCAN_SUPPORT
bool
dhd_dev_is_legacy_pno_enabled(struct net_device *dev)
{
@@ -11564,28 +14456,34 @@
return (dhd_is_legacy_pno_enabled(&dhd->pub));
}
-#endif /* PNO_SUPPORT */
-#if defined(PNO_SUPPORT)
-#ifdef GSCAN_SUPPORT
+int
+dhd_dev_set_epno(struct net_device *dev)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(dev);
+ if (!dhd) {
+ return BCME_ERROR;
+ }
+ return dhd_pno_set_epno(&dhd->pub);
+}
+int
+dhd_dev_flush_fw_epno(struct net_device *dev)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(dev);
+ if (!dhd) {
+ return BCME_ERROR;
+ }
+ return dhd_pno_flush_fw_epno(&dhd->pub);
+}
+
/* Linux wrapper to call common dhd_pno_set_cfg_gscan */
int
dhd_dev_pno_set_cfg_gscan(struct net_device *dev, dhd_pno_gscan_cmd_cfg_t type,
- void *buf, uint8 flush)
+ void *buf, bool flush)
{
dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
return (dhd_pno_set_cfg_gscan(&dhd->pub, type, buf, flush));
-}
-
-/* Linux wrapper to call common dhd_pno_get_gscan */
-void *
-dhd_dev_pno_get_gscan(struct net_device *dev, dhd_pno_gscan_cmd_cfg_t type,
- void *info, uint32 *len)
-{
- dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
-
- return (dhd_pno_get_gscan(&dhd->pub, type, info, len));
}
/* Linux wrapper to call common dhd_wait_batch_results_complete */
@@ -11632,23 +14530,14 @@
return (dhd_pno_enable_full_scan_result(&dhd->pub, real_time_flag));
}
-/* Linux wrapper to call common dhd_handle_swc_evt */
-void *
-dhd_dev_swc_scan_event(struct net_device *dev, const void *data, int *send_evt_bytes)
-{
- dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
-
- return (dhd_handle_swc_evt(&dhd->pub, data, send_evt_bytes));
-}
-
/* Linux wrapper to call common dhd_handle_hotlist_scan_evt */
void *
dhd_dev_hotlist_scan_event(struct net_device *dev,
- const void *data, int *send_evt_bytes, hotlist_type_t type)
+ const void *data, int *send_evt_bytes, hotlist_type_t type, u32 *buf_len)
{
dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
- return (dhd_handle_hotlist_scan_evt(&dhd->pub, data, send_evt_bytes, type));
+ return (dhd_handle_hotlist_scan_evt(&dhd->pub, data, send_evt_bytes, type, buf_len));
}
/* Linux wrapper to call common dhd_process_full_gscan_result */
@@ -11688,9 +14577,8 @@
return (dhd_retreive_batch_scan_results(&dhd->pub));
}
/* Linux wrapper to call common dhd_pno_process_epno_result */
-void *
-dhd_dev_process_epno_result(struct net_device *dev,
- const void *data, uint32 event, int *send_evt_bytes)
+void * dhd_dev_process_epno_result(struct net_device *dev,
+ const void *data, uint32 event, int *send_evt_bytes)
{
dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
@@ -11709,12 +14597,12 @@
return BCME_BADARG;
}
- DHD_ERROR(("a_band_boost_thr %d a_band_penalty_thr %d\n",
+ DHD_INFO(("a_band_boost_thr %d a_band_penalty_thr %d\n",
roam_param->a_band_boost_threshold, roam_param->a_band_penalty_threshold));
- DHD_ERROR(("a_band_boost_factor %d a_band_penalty_factor %d cur_bssid_boost %d\n",
+ DHD_INFO(("a_band_boost_factor %d a_band_penalty_factor %d cur_bssid_boost %d\n",
roam_param->a_band_boost_factor, roam_param->a_band_penalty_factor,
roam_param->cur_bssid_boost));
- DHD_ERROR(("alert_roam_trigger_thr %d a_band_max_boost %d\n",
+ DHD_INFO(("alert_roam_trigger_thr %d a_band_max_boost %d\n",
roam_param->alert_roam_trigger_threshold, roam_param->a_band_max_boost));
memcpy(&roam_exp_cfg.params, roam_param, sizeof(*roam_param));
@@ -11760,14 +14648,16 @@
wl_bssid_pref_cfg_t *bssid_pref, uint32 flush)
{
int err;
- int len;
+ uint len;
dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
bssid_pref->version = BSSID_PREF_LIST_VERSION;
/* By default programming bssid pref flushes out old values */
bssid_pref->flags = (flush && !bssid_pref->count) ? ROAM_EXP_CLEAR_BSSID_PREF: 0;
len = sizeof(wl_bssid_pref_cfg_t);
- len += (bssid_pref->count - 1) * sizeof(wl_bssid_pref_list_t);
+ if (bssid_pref->count) {
+ len += (bssid_pref->count - 1) * sizeof(wl_bssid_pref_list_t);
+ }
err = dhd_iovar(&dhd->pub, 0, "roam_exp_bssid_pref",
(char *)bssid_pref, len, NULL, 0, TRUE);
if (err != BCME_OK) {
@@ -11775,6 +14665,8 @@
}
return err;
}
+#endif /* GSCAN_SUPPORT */
+#if defined(GSCAN_SUPPORT) || defined(ROAMEXP_SUPPORT)
int
dhd_dev_set_blacklist_bssid(struct net_device *dev, maclist_t *blacklist,
uint32 len, uint32 flush)
@@ -11826,9 +14718,22 @@
}
return err;
}
+#endif /* GSCAN_SUPPORT || ROAMEXP_SUPPORT */
-#endif /* GSCAN_SUPPORT */
-#endif
+#if defined(GSCAN_SUPPORT) || defined(DHD_GET_VALID_CHANNELS)
+/* Linux wrapper to call common dhd_pno_get_gscan */
+void *
+dhd_dev_pno_get_gscan(struct net_device *dev, dhd_pno_gscan_cmd_cfg_t type,
+ void *info, uint32 *len)
+{
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
+
+ return (dhd_pno_get_gscan(&dhd->pub, type, info, len));
+}
+#endif /* GSCAN_SUPPORT || DHD_GET_VALID_CHANNELS */
+#endif /* defined(OEM_ANDROID) && defined(PNO_SUPPORT) */
+
+#ifdef RSSI_MONITOR_SUPPORT
int
dhd_dev_set_rssi_monitor_cfg(struct net_device *dev, int start,
int8 max_rssi, int8 min_rssi)
@@ -11848,6 +14753,22 @@
}
return err;
}
+#endif /* RSSI_MONITOR_SUPPORT */
+
+#ifdef DHDTCPACK_SUPPRESS
+int
+dhd_dev_set_tcpack_sup_mode_cfg(struct net_device *dev, uint8 enable)
+{
+ int err;
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
+
+ err = dhd_tcpack_suppress_set(&dhd->pub, enable);
+ if (err != BCME_OK) {
+ DHD_ERROR(("%s : Failed to set tcpack_suppress mode: %d\n", __FUNCTION__, err));
+ }
+ return err;
+}
+#endif /* DHDTCPACK_SUPPRESS */
int
dhd_dev_cfg_rand_mac_oui(struct net_device *dev, uint8 *oui)
@@ -11866,8 +14787,8 @@
} else {
uint8 *rand_mac_oui = dhdp->rand_mac_oui;
memcpy(rand_mac_oui, oui, DOT11_OUI_LEN);
- DHD_ERROR(("Random MAC OUI to be used - %02x:%02x:%02x\n", rand_mac_oui[0],
- rand_mac_oui[1], rand_mac_oui[2]));
+ DHD_ERROR(("Random MAC OUI to be used - "MACOUIDBG"\n",
+ MACOUI2STRDBG(rand_mac_oui)));
}
return BCME_OK;
}
@@ -11876,27 +14797,29 @@
dhd_set_rand_mac_oui(dhd_pub_t *dhd)
{
int err;
- wl_pfn_macaddr_cfg_t cfg;
+ wl_pfn_macaddr_cfg_t wl_cfg;
uint8 *rand_mac_oui = dhd->rand_mac_oui;
- memset(&cfg.macaddr, 0, ETHER_ADDR_LEN);
- memcpy(&cfg.macaddr, rand_mac_oui, DOT11_OUI_LEN);
- cfg.version = WL_PFN_MACADDR_CFG_VER;
- if (ETHER_ISNULLADDR(&cfg.macaddr))
- cfg.flags = 0;
- else
- cfg.flags = (WL_PFN_MAC_OUI_ONLY_MASK | WL_PFN_SET_MAC_UNASSOC_MASK);
+ memset(&wl_cfg.macaddr, 0, ETHER_ADDR_LEN);
+ memcpy(&wl_cfg.macaddr, rand_mac_oui, DOT11_OUI_LEN);
+ wl_cfg.version = WL_PFN_MACADDR_CFG_VER;
+ if (ETHER_ISNULLADDR(&wl_cfg.macaddr)) {
+ wl_cfg.flags = 0;
+ } else {
+ wl_cfg.flags = (WL_PFN_MAC_OUI_ONLY_MASK | WL_PFN_SET_MAC_UNASSOC_MASK);
+ }
- DHD_ERROR(("Setting rand mac oui to FW - %02x:%02x:%02x\n", rand_mac_oui[0],
- rand_mac_oui[1], rand_mac_oui[2]));
+ DHD_ERROR(("Setting rand mac oui to FW - "MACOUIDBG"\n",
+ MACOUI2STRDBG(rand_mac_oui)));
- err = dhd_iovar(dhd, 0, "pfn_macaddr", (char *)&cfg, sizeof(cfg), NULL, 0, TRUE);
+ err = dhd_iovar(dhd, 0, "pfn_macaddr", (char *)&wl_cfg, sizeof(wl_cfg), NULL, 0, TRUE);
if (err < 0) {
DHD_ERROR(("%s : failed to execute pfn_macaddr %d\n", __FUNCTION__, err));
}
return err;
}
-#ifdef RTT_SUPPORT
+
+#if defined(RTT_SUPPORT) && defined(WL_CFG80211)
/* Linux wrapper to call common dhd_pno_set_cfg_gscan */
int
dhd_dev_rtt_set_cfg(struct net_device *dev, void *buf)
@@ -11905,6 +14828,7 @@
return (dhd_rtt_set_cfg(&dhd->pub, buf));
}
+
int
dhd_dev_rtt_cancel_cfg(struct net_device *dev, struct ether_addr *mac_list, int mac_cnt)
{
@@ -11912,6 +14836,7 @@
return (dhd_rtt_stop(&dhd->pub, mac_list, mac_cnt));
}
+
int
dhd_dev_rtt_register_noti_callback(struct net_device *dev, void *ctx, dhd_rtt_compl_noti_fn noti_fn)
{
@@ -11919,6 +14844,7 @@
return (dhd_rtt_register_noti_callback(&dhd->pub, ctx, noti_fn));
}
+
int
dhd_dev_rtt_unregister_noti_callback(struct net_device *dev, dhd_rtt_compl_noti_fn noti_fn)
{
@@ -11935,27 +14861,50 @@
return (dhd_rtt_capability(&dhd->pub, capa));
}
+int
+dhd_dev_rtt_avail_channel(struct net_device *dev, wifi_channel_info *channel_info)
+{
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
+ return (dhd_rtt_avail_channel(&dhd->pub, channel_info));
+}
+
+int
+dhd_dev_rtt_enable_responder(struct net_device *dev, wifi_channel_info *channel_info)
+{
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
+ return (dhd_rtt_enable_responder(&dhd->pub, channel_info));
+}
+
+int dhd_dev_rtt_cancel_responder(struct net_device *dev)
+{
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
+ return (dhd_rtt_cancel_responder(&dhd->pub));
+}
+
#endif /* RTT_SUPPORT */
-#if defined(KEEP_ALIVE)
-#define TEMP_BUF_SIZE 512
-#define TEMP_FRAME_SIZE 300
+#ifdef KEEP_ALIVE
+#define KA_TEMP_BUF_SIZE 512
+#define KA_FRAME_SIZE 300
+
int
-dhd_dev_start_mkeep_alive(dhd_pub_t *dhd_pub, u8 mkeep_alive_id, u8 *ip_pkt, u16 ip_pkt_len,
- u8* src_mac, u8* dst_mac, u32 period_msec)
+dhd_dev_start_mkeep_alive(dhd_pub_t *dhd_pub, uint8 mkeep_alive_id, uint8 *ip_pkt,
+ uint16 ip_pkt_len, uint8* src_mac, uint8* dst_mac, uint32 period_msec)
{
- char *pbuf;
+ const int ETHERTYPE_LEN = 2;
+ char *pbuf = NULL;
const char *str;
- wl_mkeep_alive_pkt_t mkeep_alive_pkt = {0};
- wl_mkeep_alive_pkt_t *mkeep_alive_pktp;
- int buf_len;
- int str_len;
+ wl_mkeep_alive_pkt_t mkeep_alive_pkt;
+ wl_mkeep_alive_pkt_t *mkeep_alive_pktp = NULL;
+ int buf_len = 0;
+ int str_len = 0;
int res = BCME_ERROR;
int len_bytes = 0;
- int i;
+ int i = 0;
/* ether frame to have both max IP pkt (256 bytes) and ether header */
- char *pmac_frame;
+ char *pmac_frame = NULL;
+ char *pmac_frame_begin = NULL;
/*
* The mkeep_alive packet is for STA interface only; if the bss is configured as AP,
@@ -11966,26 +14915,25 @@
DHD_TRACE(("%s execution\n", __FUNCTION__));
- if ((pbuf = kzalloc(TEMP_BUF_SIZE, GFP_KERNEL)) == NULL) {
- DHD_ERROR(("failed to allocate buf with size %d\n", TEMP_BUF_SIZE));
+ if ((pbuf = MALLOCZ(dhd_pub->osh, KA_TEMP_BUF_SIZE)) == NULL) {
+ DHD_ERROR(("failed to allocate buf with size %d\n", KA_TEMP_BUF_SIZE));
res = BCME_NOMEM;
return res;
}
- if ((pmac_frame = kzalloc(TEMP_FRAME_SIZE, GFP_KERNEL)) == NULL) {
- DHD_ERROR(("failed to allocate mac_frame with size %d\n", TEMP_FRAME_SIZE));
+ if ((pmac_frame = MALLOCZ(dhd_pub->osh, KA_FRAME_SIZE)) == NULL) {
+ DHD_ERROR(("failed to allocate mac_frame with size %d\n", KA_FRAME_SIZE));
res = BCME_NOMEM;
goto exit;
}
+ pmac_frame_begin = pmac_frame;
/*
* Get current mkeep-alive status.
*/
- bcm_mkiovar("mkeep_alive", &mkeep_alive_id, sizeof(mkeep_alive_id),
- pbuf, TEMP_BUF_SIZE);
-
- if ((res = dhd_wl_ioctl_cmd(dhd_pub, WLC_GET_VAR, pbuf, TEMP_BUF_SIZE,
- FALSE, 0)) < 0) {
+ res = dhd_iovar(dhd_pub, 0, "mkeep_alive", &mkeep_alive_id, sizeof(mkeep_alive_id), pbuf,
+ KA_TEMP_BUF_SIZE, FALSE);
+ if (res < 0) {
DHD_ERROR(("%s: Get mkeep_alive failed (error=%d)\n", __FUNCTION__, res));
goto exit;
} else {
@@ -12017,7 +14965,7 @@
/* Request the specified ID */
memset(&mkeep_alive_pkt, 0, sizeof(wl_mkeep_alive_pkt_t));
- memset(pbuf, 0, TEMP_BUF_SIZE);
+ memset(pbuf, 0, KA_TEMP_BUF_SIZE);
str = "mkeep_alive";
str_len = strlen(str);
strncpy(pbuf, str, str_len);
@@ -12058,10 +15006,8 @@
* Length of ether frame (assume to be all hexa bytes)
* = src mac + dst mac + ether type + ip pkt len
*/
- len_bytes = ETHER_ADDR_LEN*2 + ETHER_TYPE_LEN + ip_pkt_len;
- /* Get back to the beginning. */
- pmac_frame -= len_bytes;
- memcpy(mkeep_alive_pktp->data, pmac_frame, len_bytes);
+ len_bytes = ETHER_ADDR_LEN*2 + ETHERTYPE_LEN + ip_pkt_len;
+ memcpy(mkeep_alive_pktp->data, pmac_frame_begin, len_bytes);
buf_len += len_bytes;
mkeep_alive_pkt.len_bytes = htod16(len_bytes);
@@ -12074,22 +15020,25 @@
res = dhd_wl_ioctl_cmd(dhd_pub, WLC_SET_VAR, pbuf, buf_len, TRUE, 0);
exit:
- kfree(pmac_frame);
- kfree(pbuf);
+ if (pmac_frame_begin) {
+ MFREE(dhd_pub->osh, pmac_frame_begin, KA_FRAME_SIZE);
+ pmac_frame_begin = NULL;
+ }
+ if (pbuf) {
+ MFREE(dhd_pub->osh, pbuf, KA_TEMP_BUF_SIZE);
+ pbuf = NULL;
+ }
return res;
}
int
-dhd_dev_stop_mkeep_alive(dhd_pub_t *dhd_pub, u8 mkeep_alive_id)
+dhd_dev_stop_mkeep_alive(dhd_pub_t *dhd_pub, uint8 mkeep_alive_id)
{
- char *pbuf;
- const char *str;
+ char *pbuf = NULL;
wl_mkeep_alive_pkt_t mkeep_alive_pkt;
- wl_mkeep_alive_pkt_t *mkeep_alive_pktp;
- int buf_len;
- int str_len;
+ wl_mkeep_alive_pkt_t *mkeep_alive_pktp = NULL;
int res = BCME_ERROR;
- int i;
+ int i = 0;
/*
* The mkeep_alive packet is for STA interface only; if the bss is configured as AP,
@@ -12103,14 +15052,14 @@
/*
* Get current mkeep-alive status. Skip ID 0 which is being used for NULL pkt.
*/
- if ((pbuf = kzalloc(TEMP_BUF_SIZE, GFP_KERNEL)) == NULL) {
- DHD_ERROR(("failed to allocate buf with size %d\n", TEMP_BUF_SIZE));
+ if ((pbuf = MALLOC(dhd_pub->osh, KA_TEMP_BUF_SIZE)) == NULL) {
+ DHD_ERROR(("failed to allocate buf with size %d\n", KA_TEMP_BUF_SIZE));
return res;
}
- bcm_mkiovar("mkeep_alive", &mkeep_alive_id, sizeof(mkeep_alive_id), pbuf, TEMP_BUF_SIZE);
-
- if ((res = dhd_wl_ioctl_cmd(dhd_pub, WLC_GET_VAR, pbuf, TEMP_BUF_SIZE, FALSE, 0)) < 0) {
+ res = dhd_iovar(dhd_pub, 0, "mkeep_alive", &mkeep_alive_id,
+ sizeof(mkeep_alive_id), pbuf, KA_TEMP_BUF_SIZE, FALSE);
+ if (res < 0) {
DHD_ERROR(("%s: Get mkeep_alive failed (error=%d)\n", __FUNCTION__, res));
goto exit;
} else {
@@ -12135,71 +15084,498 @@
if (dtoh32(mkeep_alive_pktp->period_msec != 0)) {
DHD_INFO(("stop mkeep_alive on ID %d\n", mkeep_alive_id));
memset(&mkeep_alive_pkt, 0, sizeof(wl_mkeep_alive_pkt_t));
- memset(pbuf, 0, TEMP_BUF_SIZE);
- str = "mkeep_alive";
- str_len = strlen(str);
- strncpy(pbuf, str, str_len);
- pbuf[str_len] = '\0';
-
- mkeep_alive_pktp = (wl_mkeep_alive_pkt_t *) (pbuf + str_len + 1);
mkeep_alive_pkt.period_msec = 0;
- buf_len = str_len + 1;
mkeep_alive_pkt.version = htod16(WL_MKEEP_ALIVE_VERSION);
mkeep_alive_pkt.length = htod16(WL_MKEEP_ALIVE_FIXED_LEN);
mkeep_alive_pkt.keep_alive_id = mkeep_alive_id;
- buf_len += WL_MKEEP_ALIVE_FIXED_LEN;
- /*
- * Keep-alive attributes are set in local variable (mkeep_alive_pkt), and
- * then memcpy'ed into buffer (mkeep_alive_pktp) since there is no
- * guarantee that the buffer is properly aligned.
- */
- memcpy((char *)mkeep_alive_pktp, &mkeep_alive_pkt, WL_MKEEP_ALIVE_FIXED_LEN);
-
- res = dhd_wl_ioctl_cmd(dhd_pub, WLC_SET_VAR, pbuf, buf_len, TRUE, 0);
+ res = dhd_iovar(dhd_pub, 0, "mkeep_alive",
+ (char *)&mkeep_alive_pkt,
+ WL_MKEEP_ALIVE_FIXED_LEN, NULL, 0, TRUE);
} else {
DHD_ERROR(("%s: ID %u does not exist.\n", __FUNCTION__, mkeep_alive_id));
res = BCME_NOTFOUND;
}
exit:
- kfree(pbuf);
+ if (pbuf) {
+ MFREE(dhd_pub->osh, pbuf, KA_TEMP_BUF_SIZE);
+ pbuf = NULL;
+ }
return res;
}
-#endif /* defined(KEEP_ALIVE) */
+#endif /* KEEP_ALIVE */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27))
-static void dhd_hang_process(void *dhd_info, void *event_info, u8 event)
+#if defined(PKT_FILTER_SUPPORT) && defined(APF)
+static void _dhd_apf_lock_local(dhd_info_t *dhd)
{
- dhd_info_t *dhd;
- struct net_device *dev;
-
- dhd = (dhd_info_t *)dhd_info;
- dev = dhd->iflist[0]->net;
-
- if (dev) {
- rtnl_lock();
- dev_close(dev);
- rtnl_unlock();
-#if defined(WL_WIRELESS_EXT)
- wl_iw_send_priv_event(dev, "HANG");
-#endif
-#if defined(WL_CFG80211)
- wl_cfg80211_hang(dev, WLAN_REASON_UNSPECIFIED);
-#endif
+ if (dhd) {
+ mutex_lock(&dhd->dhd_apf_mutex);
}
}
+static void _dhd_apf_unlock_local(dhd_info_t *dhd)
+{
+ if (dhd) {
+ mutex_unlock(&dhd->dhd_apf_mutex);
+ }
+}
+
+static int
+__dhd_apf_add_filter(struct net_device *ndev, uint32 filter_id,
+ u8* program, uint32 program_len)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(ndev);
+ dhd_pub_t *dhdp = &dhd->pub;
+ wl_pkt_filter_t * pkt_filterp;
+ wl_apf_program_t *apf_program;
+ char *buf;
+ u32 cmd_len, buf_len;
+ int ifidx, ret;
+ char cmd[] = "pkt_filter_add";
+
+ ifidx = dhd_net2idx(dhd, ndev);
+ if (ifidx == DHD_BAD_IF) {
+ DHD_ERROR(("%s: bad ifidx\n", __FUNCTION__));
+ return -ENODEV;
+ }
+
+ cmd_len = sizeof(cmd);
+
+ /* Check if the program_len is more than the expected len
+ * and if the program is NULL return from here.
+ */
+ if ((program_len > WL_APF_PROGRAM_MAX_SIZE) || (program == NULL)) {
+ DHD_ERROR(("%s Invalid program_len: %d, program: %pK\n",
+ __FUNCTION__, program_len, program));
+ return -EINVAL;
+ }
+ buf_len = cmd_len + WL_PKT_FILTER_FIXED_LEN +
+ WL_APF_PROGRAM_FIXED_LEN + program_len;
+
+ buf = MALLOCZ(dhdp->osh, buf_len);
+ if (unlikely(!buf)) {
+ DHD_ERROR(("%s: MALLOC failure, %d bytes\n", __FUNCTION__, buf_len));
+ return -ENOMEM;
+ }
+
+ memcpy(buf, cmd, cmd_len);
+
+ pkt_filterp = (wl_pkt_filter_t *) (buf + cmd_len);
+ pkt_filterp->id = htod32(filter_id);
+ pkt_filterp->negate_match = htod32(FALSE);
+ pkt_filterp->type = htod32(WL_PKT_FILTER_TYPE_APF_MATCH);
+
+ apf_program = &pkt_filterp->u.apf_program;
+ apf_program->version = htod16(WL_APF_INTERNAL_VERSION);
+ apf_program->instr_len = htod16(program_len);
+ memcpy(apf_program->instrs, program, program_len);
+
+ ret = dhd_wl_ioctl_cmd(dhdp, WLC_SET_VAR, buf, buf_len, TRUE, ifidx);
+ if (unlikely(ret)) {
+ DHD_ERROR(("%s: failed to add APF filter, id=%d, ret=%d\n",
+ __FUNCTION__, filter_id, ret));
+ }
+
+ if (buf) {
+ MFREE(dhdp->osh, buf, buf_len);
+ }
+ return ret;
+}
+
+static int
+__dhd_apf_config_filter(struct net_device *ndev, uint32 filter_id,
+ uint32 mode, uint32 enable)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(ndev);
+ dhd_pub_t *dhdp = &dhd->pub;
+ wl_pkt_filter_enable_t * pkt_filterp;
+ char *buf;
+ u32 cmd_len, buf_len;
+ int ifidx, ret;
+ char cmd[] = "pkt_filter_enable";
+
+ ifidx = dhd_net2idx(dhd, ndev);
+ if (ifidx == DHD_BAD_IF) {
+ DHD_ERROR(("%s: bad ifidx\n", __FUNCTION__));
+ return -ENODEV;
+ }
+
+ cmd_len = sizeof(cmd);
+ buf_len = cmd_len + sizeof(*pkt_filterp);
+
+ buf = MALLOCZ(dhdp->osh, buf_len);
+ if (unlikely(!buf)) {
+ DHD_ERROR(("%s: MALLOC failure, %d bytes\n", __FUNCTION__, buf_len));
+ return -ENOMEM;
+ }
+
+ memcpy(buf, cmd, cmd_len);
+
+ pkt_filterp = (wl_pkt_filter_enable_t *) (buf + cmd_len);
+ pkt_filterp->id = htod32(filter_id);
+ pkt_filterp->enable = htod32(enable);
+
+ ret = dhd_wl_ioctl_cmd(dhdp, WLC_SET_VAR, buf, buf_len, TRUE, ifidx);
+ if (unlikely(ret)) {
+ DHD_ERROR(("%s: failed to enable APF filter, id=%d, ret=%d\n",
+ __FUNCTION__, filter_id, ret));
+ goto exit;
+ }
+
+ ret = dhd_wl_ioctl_set_intiovar(dhdp, "pkt_filter_mode", dhd_master_mode,
+ WLC_SET_VAR, TRUE, ifidx);
+ if (unlikely(ret)) {
+ DHD_ERROR(("%s: failed to set APF filter mode, id=%d, ret=%d\n",
+ __FUNCTION__, filter_id, ret));
+ }
+
+exit:
+ if (buf) {
+ MFREE(dhdp->osh, buf, buf_len);
+ }
+ return ret;
+}
+
+static int
+__dhd_apf_delete_filter(struct net_device *ndev, uint32 filter_id)
+{
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(ndev);
+ dhd_pub_t *dhdp = &dhd->pub;
+ int ifidx, ret;
+
+ ifidx = dhd_net2idx(dhd, ndev);
+ if (ifidx == DHD_BAD_IF) {
+ DHD_ERROR(("%s: bad ifidx\n", __FUNCTION__));
+ return -ENODEV;
+ }
+
+ ret = dhd_wl_ioctl_set_intiovar(dhdp, "pkt_filter_delete",
+ htod32(filter_id), WLC_SET_VAR, TRUE, ifidx);
+ if (unlikely(ret)) {
+ DHD_ERROR(("%s: failed to delete APF filter, id=%d, ret=%d\n",
+ __FUNCTION__, filter_id, ret));
+ }
+
+ return ret;
+}
+
+void dhd_apf_lock(struct net_device *dev)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(dev);
+ _dhd_apf_lock_local(dhd);
+}
+
+void dhd_apf_unlock(struct net_device *dev)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(dev);
+ _dhd_apf_unlock_local(dhd);
+}
+
+int
+dhd_dev_apf_get_version(struct net_device *ndev, uint32 *version)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(ndev);
+ dhd_pub_t *dhdp = &dhd->pub;
+ int ifidx, ret;
+
+ if (!FW_SUPPORTED(dhdp, apf)) {
+ DHD_ERROR(("%s: firmware doesn't support APF\n", __FUNCTION__));
+
+ /*
+ * Notify Android framework that APF is not supported by setting
+ * version as zero.
+ */
+ *version = 0;
+ return BCME_OK;
+ }
+
+ ifidx = dhd_net2idx(dhd, ndev);
+ if (ifidx == DHD_BAD_IF) {
+ DHD_ERROR(("%s: bad ifidx\n", __FUNCTION__));
+ return -ENODEV;
+ }
+
+ ret = dhd_wl_ioctl_get_intiovar(dhdp, "apf_ver", version,
+ WLC_GET_VAR, FALSE, ifidx);
+ if (unlikely(ret)) {
+ DHD_ERROR(("%s: failed to get APF version, ret=%d\n",
+ __FUNCTION__, ret));
+ }
+
+ return ret;
+}
+
+int
+dhd_dev_apf_get_max_len(struct net_device *ndev, uint32 *max_len)
+{
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(ndev);
+ dhd_pub_t *dhdp = &dhd->pub;
+ int ifidx, ret;
+
+ if (!FW_SUPPORTED(dhdp, apf)) {
+ DHD_ERROR(("%s: firmware doesn't support APF\n", __FUNCTION__));
+ *max_len = 0;
+ return BCME_OK;
+ }
+
+ ifidx = dhd_net2idx(dhd, ndev);
+ if (ifidx == DHD_BAD_IF) {
+ DHD_ERROR(("%s bad ifidx\n", __FUNCTION__));
+ return -ENODEV;
+ }
+
+ ret = dhd_wl_ioctl_get_intiovar(dhdp, "apf_size_limit", max_len,
+ WLC_GET_VAR, FALSE, ifidx);
+ if (unlikely(ret)) {
+ DHD_ERROR(("%s: failed to get APF size limit, ret=%d\n",
+ __FUNCTION__, ret));
+ }
+
+ return ret;
+}
+
+int
+dhd_dev_apf_add_filter(struct net_device *ndev, u8* program,
+ uint32 program_len)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(ndev);
+ dhd_pub_t *dhdp = &dhd->pub;
+ int ret;
+
+ DHD_APF_LOCK(ndev);
+
+ /* delete, if filter already exists */
+ if (dhdp->apf_set) {
+ ret = __dhd_apf_delete_filter(ndev, PKT_FILTER_APF_ID);
+ if (unlikely(ret)) {
+ goto exit;
+ }
+ dhdp->apf_set = FALSE;
+ }
+
+ ret = __dhd_apf_add_filter(ndev, PKT_FILTER_APF_ID, program, program_len);
+ if (ret) {
+ goto exit;
+ }
+ dhdp->apf_set = TRUE;
+
+ if (dhdp->in_suspend && dhdp->apf_set && !(dhdp->op_mode & DHD_FLAG_HOSTAP_MODE)) {
+ /* Driver is still in (early) suspend state, enable APF filter back */
+ ret = __dhd_apf_config_filter(ndev, PKT_FILTER_APF_ID,
+ PKT_FILTER_MODE_FORWARD_ON_MATCH, TRUE);
+ }
+exit:
+ DHD_APF_UNLOCK(ndev);
+
+ return ret;
+}
+
+int
+dhd_dev_apf_enable_filter(struct net_device *ndev)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(ndev);
+ dhd_pub_t *dhdp = &dhd->pub;
+ int ret = 0;
+ bool nan_dp_active = false;
+
+ DHD_APF_LOCK(ndev);
+#ifdef WL_NAN
+ nan_dp_active = wl_cfgnan_is_dp_active(ndev);
+#endif /* WL_NAN */
+ if (dhdp->apf_set && (!(dhdp->op_mode & DHD_FLAG_HOSTAP_MODE) &&
+ !nan_dp_active)) {
+ ret = __dhd_apf_config_filter(ndev, PKT_FILTER_APF_ID,
+ PKT_FILTER_MODE_FORWARD_ON_MATCH, TRUE);
+ }
+
+ DHD_APF_UNLOCK(ndev);
+
+ return ret;
+}
+
+int
+dhd_dev_apf_disable_filter(struct net_device *ndev)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(ndev);
+ dhd_pub_t *dhdp = &dhd->pub;
+ int ret = 0;
+
+ DHD_APF_LOCK(ndev);
+
+ if (dhdp->apf_set) {
+ ret = __dhd_apf_config_filter(ndev, PKT_FILTER_APF_ID,
+ PKT_FILTER_MODE_FORWARD_ON_MATCH, FALSE);
+ }
+
+ DHD_APF_UNLOCK(ndev);
+
+ return ret;
+}
+
+int
+dhd_dev_apf_delete_filter(struct net_device *ndev)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(ndev);
+ dhd_pub_t *dhdp = &dhd->pub;
+ int ret = 0;
+
+ DHD_APF_LOCK(ndev);
+
+ if (dhdp->apf_set) {
+ ret = __dhd_apf_delete_filter(ndev, PKT_FILTER_APF_ID);
+ if (!ret) {
+ dhdp->apf_set = FALSE;
+ }
+ }
+
+ DHD_APF_UNLOCK(ndev);
+
+ return ret;
+}
+#endif /* PKT_FILTER_SUPPORT && APF */
+
+#if defined(OEM_ANDROID)
+static void dhd_hang_process(struct work_struct *work_data)
+{
+ struct net_device *dev;
+#ifdef IFACE_HANG_FORCE_DEV_CLOSE
+ struct net_device *ndev;
+ uint8 i = 0;
+#endif /* IFACE_HANG_FORCE_DEV_CLOSE */
+/* Ignore compiler warnings due to -Werror=cast-qual */
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
+#endif // endif
+ struct dhd_info *dhd =
+ container_of(work_data, dhd_info_t, dhd_hang_process_work);
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic pop
+#endif // endif
+
+ dev = dhd->iflist[0]->net;
+
+ if (dev) {
+#if defined(WL_WIRELESS_EXT)
+ wl_iw_send_priv_event(dev, "HANG");
+#endif // endif
+#if defined(WL_CFG80211)
+ wl_cfg80211_hang(dev, WLAN_REASON_UNSPECIFIED);
+#endif // endif
+ }
+#ifdef IFACE_HANG_FORCE_DEV_CLOSE
+ /*
+ * For HW2, dev_close need to be done to recover
+ * from upper layer after hang. For Interposer skip
+ * dev_close so that dhd iovars can be used to take
+ * socramdump after crash, also skip for HW4 as
+ * handling of hang event is different
+ */
+
+ rtnl_lock();
+ for (i = 0; i < DHD_MAX_IFS; i++) {
+ ndev = dhd->iflist[i] ? dhd->iflist[i]->net : NULL;
+ if (ndev && (ndev->flags & IFF_UP)) {
+ DHD_ERROR(("ndev->name : %s dev close\n",
+ ndev->name));
+ dev_close(ndev);
+ }
+ }
+ rtnl_unlock();
+#endif /* IFACE_HANG_FORCE_DEV_CLOSE */
+}
+
+#ifdef EXYNOS_PCIE_LINKDOWN_RECOVERY
+extern dhd_pub_t *link_recovery;
+void dhd_host_recover_link(void)
+{
+ DHD_ERROR(("****** %s ******\n", __FUNCTION__));
+ link_recovery->hang_reason = HANG_REASON_PCIE_LINK_DOWN_RC_DETECT;
+ dhd_bus_set_linkdown(link_recovery, TRUE);
+ dhd_os_send_hang_message(link_recovery);
+}
+EXPORT_SYMBOL(dhd_host_recover_link);
+#endif /* EXYNOS_PCIE_LINKDOWN_RECOVERY */
int dhd_os_send_hang_message(dhd_pub_t *dhdp)
{
int ret = 0;
- if (dhdp) {
- if (!dhdp->hang_was_sent) {
- dhdp->hang_was_sent = 1;
- dhd_deferred_schedule_work(dhdp->info->dhd_deferred_wq, (void *)dhdp,
- DHD_WQ_WORK_HANG_MSG, dhd_hang_process, DHD_WORK_PRIORITY_HIGH);
+#ifdef WL_CFG80211
+ struct net_device *primary_ndev;
+ struct bcm_cfg80211 *cfg;
+#ifdef DHD_FILE_DUMP_EVENT
+ dhd_info_t *dhd_info = NULL;
+#endif /* DHD_FILE_DUMP_EVENT */
+#endif /* WL_CFG80211 */
+
+ if (!dhdp) {
+ DHD_ERROR(("%s: dhdp is null\n", __FUNCTION__));
+ return -EINVAL;
+ }
+
+#if defined(WL_CFG80211) && defined(DHD_FILE_DUMP_EVENT)
+ dhd_info = (dhd_info_t *)dhdp->info;
+
+ if (dhd_info->scheduled_memdump) {
+ DHD_ERROR_RLMT(("[DUMP]:%s, memdump in progress. return\n", __FUNCTION__));
+ dhdp->hang_was_pending = 1;
+ return BCME_OK;
+ }
+#endif /* WL_CFG80211 && DHD_FILE_DUMP_EVENT */
+
+#ifdef WL_CFG80211
+ primary_ndev = dhd_linux_get_primary_netdev(dhdp);
+ if (!primary_ndev) {
+ DHD_ERROR(("%s: Cannot find primary netdev\n", __FUNCTION__));
+ return -ENODEV;
+ }
+ cfg = wl_get_cfg(primary_ndev);
+ if (!cfg) {
+ DHD_ERROR(("%s: Cannot find cfg\n", __FUNCTION__));
+ return -EINVAL;
+ }
+
+ /* Skip sending HANG event to framework if driver is not ready */
+ if (!wl_get_drv_status(cfg, READY, primary_ndev)) {
+ DHD_ERROR(("%s: device is not ready\n", __FUNCTION__));
+ return -ENODEV;
+ }
+#endif /* WL_CFG80211 */
+
+#if defined(DHD_HANG_SEND_UP_TEST)
+ if (dhdp->req_hang_type) {
+ DHD_ERROR(("%s, Clear HANG test request 0x%x\n",
+ __FUNCTION__, dhdp->req_hang_type));
+ dhdp->req_hang_type = 0;
+ }
+#endif /* DHD_HANG_SEND_UP_TEST */
+
+ if (!dhdp->hang_was_sent) {
+#if defined(CONFIG_BCM_DETECT_CONSECUTIVE_HANG)
+ dhdp->hang_counts++;
+ if (dhdp->hang_counts >= MAX_CONSECUTIVE_HANG_COUNTS) {
+ DHD_ERROR(("%s, Consecutive hang from Dongle :%u\n",
+ __func__, dhdp->hang_counts));
+ BUG_ON(1);
}
+#endif /* CONFIG_BCM_DETECT_CONSECUTIVE_HANG */
+#ifdef DHD_DEBUG_UART
+ /* If PCIe lane has broken, execute the debug uart application
+ * to gether a ramdump data from dongle via uart
+ */
+ if (!dhdp->info->duart_execute) {
+ dhd_deferred_schedule_work(dhdp->info->dhd_deferred_wq,
+ (void *)dhdp, DHD_WQ_WORK_DEBUG_UART_DUMP,
+ dhd_debug_uart_exec_rd, DHD_WQ_WORK_PRIORITY_HIGH);
+ }
+#endif /* DHD_DEBUG_UART */
+ dhdp->hang_was_sent = 1;
+#ifdef BT_OVER_SDIO
+ dhdp->is_bt_recovery_required = TRUE;
+#endif // endif
+ schedule_work(&dhdp->info->dhd_hang_process_work);
+
}
return ret;
}
@@ -12212,22 +15588,50 @@
if (dhd) {
/* Report FW problem when enabled */
if (dhd->pub.hang_report) {
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27))
- ret = dhd_os_send_hang_message(&dhd->pub);
-#else
- ret = wl_cfg80211_hang(dev, WLAN_REASON_UNSPECIFIED);
-#endif
+#ifdef BT_OVER_SDIO
+ if (netif_running(dev)) {
+#endif /* BT_OVER_SDIO */
+ ret = dhd_os_send_hang_message(&dhd->pub);
+#ifdef BT_OVER_SDIO
+ }
+ DHD_ERROR(("%s: HANG -> Reset BT\n", __FUNCTION__));
+ bcmsdh_btsdio_process_dhd_hang_notification(!netif_running(dev));
+#endif /* BT_OVER_SDIO */
} else {
DHD_ERROR(("%s: FW HANG ignored (for testing purpose) and not sent up\n",
__FUNCTION__));
- /* Enforce bus down to stop any future traffic */
- dhd->pub.busstate = DHD_BUS_DOWN;
}
}
return ret;
}
-#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27) && OEM_ANDROID */
+int net_os_send_hang_message_reason(struct net_device *dev, const char *string_num)
+{
+ dhd_info_t *dhd = NULL;
+ dhd_pub_t *dhdp = NULL;
+ int reason;
+
+ dhd = DHD_DEV_INFO(dev);
+ if (dhd) {
+ dhdp = &dhd->pub;
+ }
+
+ if (!dhd || !dhdp) {
+ return 0;
+ }
+
+ reason = bcm_strtoul(string_num, NULL, 0);
+ DHD_INFO(("%s: Enter, reason=0x%x\n", __FUNCTION__, reason));
+
+ if ((reason <= HANG_REASON_MASK) || (reason >= HANG_REASON_MAX)) {
+ reason = 0;
+ }
+
+ dhdp->hang_reason = reason;
+
+ return net_os_send_hang_message(dev);
+}
+#endif /* OEM_ANDROID */
int dhd_net_wifi_platform_set_power(struct net_device *dev, bool on, unsigned long delay_msec)
{
@@ -12243,35 +15647,62 @@
return dhd->pub.force_country_change;
return FALSE;
}
+
void dhd_get_customized_country_code(struct net_device *dev, char *country_iso_code,
wl_country_t *cspec)
{
dhd_info_t *dhd = DHD_DEV_INFO(dev);
-#ifdef CUSTOM_COUNTRY_CODE
- get_customized_country_code(dhd->adapter, country_iso_code, cspec,
+#if defined(DHD_BLOB_EXISTENCE_CHECK)
+ if (!dhd->pub.is_blob)
+#endif /* DHD_BLOB_EXISTENCE_CHECK */
+ {
+#if defined(CUSTOM_COUNTRY_CODE)
+ get_customized_country_code(dhd->adapter, country_iso_code, cspec,
dhd->pub.dhd_cflags);
#else
- get_customized_country_code(dhd->adapter, country_iso_code, cspec);
+ get_customized_country_code(dhd->adapter, country_iso_code, cspec);
#endif /* CUSTOM_COUNTRY_CODE */
+ }
+#if defined(DHD_BLOB_EXISTENCE_CHECK) && !defined(CUSTOM_COUNTRY_CODE)
+ else {
+ /* Replace the ccode to XZ if ccode is undefined country */
+ if (strncmp(country_iso_code, "", WLC_CNTRY_BUF_SZ) == 0) {
+ strlcpy(country_iso_code, "XZ", WLC_CNTRY_BUF_SZ);
+ strlcpy(cspec->country_abbrev, country_iso_code, WLC_CNTRY_BUF_SZ);
+ strlcpy(cspec->ccode, country_iso_code, WLC_CNTRY_BUF_SZ);
+ DHD_ERROR(("%s: ccode change to %s\n", __FUNCTION__, country_iso_code));
+ }
+ }
+#endif /* DHD_BLOB_EXISTENCE_CHECK && !CUSTOM_COUNTRY_CODE */
+
+ BCM_REFERENCE(dhd);
}
void dhd_bus_country_set(struct net_device *dev, wl_country_t *cspec, bool notify)
{
dhd_info_t *dhd = DHD_DEV_INFO(dev);
+#ifdef WL_CFG80211
+ struct bcm_cfg80211 *cfg = wl_get_cfg(dev);
+#endif // endif
+
if (dhd && dhd->pub.up) {
+ dhd->pub.force_country_change = FALSE;
memcpy(&dhd->pub.dhd_cspec, cspec, sizeof(wl_country_t));
#ifdef WL_CFG80211
- wl_update_wiphybands(NULL, notify);
-#endif
+ wl_update_wiphybands(cfg, notify);
+#endif // endif
}
}
void dhd_bus_band_set(struct net_device *dev, uint band)
{
dhd_info_t *dhd = DHD_DEV_INFO(dev);
+#ifdef WL_CFG80211
+ struct bcm_cfg80211 *cfg = wl_get_cfg(dev);
+#endif // endif
if (dhd && dhd->pub.up) {
#ifdef WL_CFG80211
- wl_update_wiphybands(NULL, true);
-#endif
+ wl_update_wiphybands(cfg, true);
+#endif // endif
}
}
@@ -12285,7 +15716,7 @@
strncpy(dhd->fw_path, fw, sizeof(dhd->fw_path) - 1);
dhd->fw_path[sizeof(dhd->fw_path)-1] = '\0';
-#if defined(SOFTAP)
+#if defined(OEM_ANDROID) && defined(SOFTAP)
if (strstr(fw, "apsta") != NULL) {
DHD_INFO(("GOT APSTA FIRMWARE\n"));
ap_fw_loaded = TRUE;
@@ -12293,7 +15724,7 @@
DHD_INFO(("GOT STA FIRMWARE\n"));
ap_fw_loaded = FALSE;
}
-#endif
+#endif /* defined(OEM_ANDROID) && defined(SOFTAP) */
return 0;
}
@@ -12311,36 +15742,36 @@
static void dhd_net_if_lock_local(dhd_info_t *dhd)
{
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25))
+#if defined(OEM_ANDROID)
if (dhd)
mutex_lock(&dhd->dhd_net_if_mutex);
-#endif
+#endif // endif
}
static void dhd_net_if_unlock_local(dhd_info_t *dhd)
{
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25))
+#if defined(OEM_ANDROID)
if (dhd)
mutex_unlock(&dhd->dhd_net_if_mutex);
-#endif
+#endif // endif
}
static void dhd_suspend_lock(dhd_pub_t *pub)
{
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25))
+#if defined(OEM_ANDROID)
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
if (dhd)
mutex_lock(&dhd->dhd_suspend_mutex);
-#endif
+#endif // endif
}
static void dhd_suspend_unlock(dhd_pub_t *pub)
{
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25))
+#if defined(OEM_ANDROID)
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
if (dhd)
mutex_unlock(&dhd->dhd_suspend_mutex);
-#endif
+#endif // endif
}
unsigned long dhd_os_general_spin_lock(dhd_pub_t *pub)
@@ -12397,6 +15828,27 @@
spin_unlock_irqrestore((spinlock_t *)lock, flags);
}
+void *
+dhd_os_dbgring_lock_init(osl_t *osh)
+{
+ struct mutex *mtx = NULL;
+
+ mtx = MALLOCZ(osh, sizeof(*mtx));
+ if (mtx)
+ mutex_init(mtx);
+
+ return mtx;
+}
+
+void
+dhd_os_dbgring_lock_deinit(osl_t *osh, void *mtx)
+{
+ if (mtx) {
+ mutex_destroy(mtx);
+ MFREE(osh, mtx, sizeof(struct mutex));
+ }
+}
+
static int
dhd_get_pend_8021x_cnt(dhd_info_t *dhd)
{
@@ -12433,27 +15885,38 @@
}
#if defined(DHD_DEBUG)
-int
-write_file(char * file_name, uint32 flags, uint8 *buf, int size)
+int write_file(const char * file_name, uint32 flags, uint8 *buf, int size)
{
int ret = 0;
struct file *fp = NULL;
- mm_segment_t old_fs;
loff_t pos = 0;
/* change to KERNEL_DS address limit */
+#if defined(KERNEL_DS) && defined(USER_DS)
+ mm_segment_t old_fs;
old_fs = get_fs();
set_fs(KERNEL_DS);
-
+#endif /* KERNEL_DS && USER_DS */
/* open file to write */
- fp = filp_open(file_name, flags, 0644);
+ fp = filp_open(file_name, flags, 0664);
if (IS_ERR(fp)) {
- printf("%s: open file error, err = %ld\n", __FUNCTION__, PTR_ERR(fp));
- ret = -1;
+ DHD_ERROR(("open file error, err = %ld\n", PTR_ERR(fp)));
goto exit;
}
/* Write buf to file */
- fp->f_op->write(fp, buf, size, &pos);
+ ret = vfs_write(fp, buf, size, &pos);
+ if (ret < 0) {
+ DHD_ERROR(("write file error, err = %d\n", ret));
+ goto exit;
+ }
+
+ /* Sync file from filesystem to physical media */
+ ret = vfs_fsync(fp, 0);
+ if (ret < 0) {
+ DHD_ERROR(("sync file error, error = %d\n", ret));
+ goto exit;
+ }
+ ret = BCME_OK;
exit:
/* close file before return */
@@ -12461,17 +15924,16 @@
filp_close(fp, current->files);
/* restore previous address limit */
+#if defined(KERNEL_DS) && defined(USER_DS)
set_fs(old_fs);
-
- /* buf is actually dhd_pub->soc_ram and freed in in dhd_{free,clear} */
-
+#endif /* KERNEL_DS && USER_DS */
return ret;
}
-#endif
+#endif // endif
#ifdef DHD_DEBUG
static void
-dhd_convert_memdump_type_to_str(uint32 type, char *buf)
+dhd_convert_memdump_type_to_str(uint32 type, char *buf, int substr_type)
{
char *type_str = NULL;
@@ -12491,8 +15953,89 @@
case DUMP_TYPE_PKTID_AUDIT_FAILURE:
type_str = "PKTID_AUDIT_Fail";
break;
+ case DUMP_TYPE_PKTID_INVALID:
+ type_str = "PKTID_INVALID";
+ break;
case DUMP_TYPE_SCAN_TIMEOUT:
type_str = "SCAN_timeout";
+ break;
+ case DUMP_TYPE_SCAN_BUSY:
+ type_str = "SCAN_Busy";
+ break;
+ case DUMP_TYPE_BY_SYSDUMP:
+ if (substr_type == CMD_UNWANTED) {
+ type_str = "BY_SYSDUMP_FORUSER_unwanted";
+ } else if (substr_type == CMD_DISCONNECTED) {
+ type_str = "BY_SYSDUMP_FORUSER_disconnected";
+ } else {
+ type_str = "BY_SYSDUMP_FORUSER";
+ }
+ break;
+ case DUMP_TYPE_BY_LIVELOCK:
+ type_str = "BY_LIVELOCK";
+ break;
+ case DUMP_TYPE_AP_LINKUP_FAILURE:
+ type_str = "BY_AP_LINK_FAILURE";
+ break;
+ case DUMP_TYPE_AP_ABNORMAL_ACCESS:
+ type_str = "INVALID_ACCESS";
+ break;
+ case DUMP_TYPE_RESUMED_ON_TIMEOUT_RX:
+ type_str = "ERROR_RX_TIMED_OUT";
+ break;
+ case DUMP_TYPE_RESUMED_ON_TIMEOUT_TX:
+ type_str = "ERROR_TX_TIMED_OUT";
+ break;
+ case DUMP_TYPE_CFG_VENDOR_TRIGGERED:
+ type_str = "CFG_VENDOR_TRIGGERED";
+ break;
+ case DUMP_TYPE_RESUMED_ON_INVALID_RING_RDWR:
+ type_str = "BY_INVALID_RING_RDWR";
+ break;
+ case DUMP_TYPE_IFACE_OP_FAILURE:
+ type_str = "BY_IFACE_OP_FAILURE";
+ break;
+ case DUMP_TYPE_TRANS_ID_MISMATCH:
+ type_str = "BY_TRANS_ID_MISMATCH";
+ break;
+#ifdef DEBUG_DNGL_INIT_FAIL
+ case DUMP_TYPE_DONGLE_INIT_FAILURE:
+ type_str = "DONGLE_INIT_FAIL";
+ break;
+#endif /* DEBUG_DNGL_INIT_FAIL */
+#ifdef SUPPORT_LINKDOWN_RECOVERY
+ case DUMP_TYPE_READ_SHM_FAIL:
+ type_str = "READ_SHM_FAIL";
+ break;
+#endif /* SUPPORT_LINKDOWN_RECOVERY */
+ case DUMP_TYPE_DONGLE_HOST_EVENT:
+ type_str = "BY_DONGLE_HOST_EVENT";
+ break;
+ case DUMP_TYPE_SMMU_FAULT:
+ type_str = "SMMU_FAULT";
+ break;
+ case DUMP_TYPE_BY_USER:
+ type_str = "BY_USER";
+ break;
+#ifdef DHD_ERPOM
+ case DUMP_TYPE_DUE_TO_BT:
+ type_str = "DUE_TO_BT";
+ break;
+#endif /* DHD_ERPOM */
+ case DUMP_TYPE_LOGSET_BEYOND_RANGE:
+ type_str = "LOGSET_BEYOND_RANGE";
+ break;
+ case DUMP_TYPE_CTO_RECOVERY:
+ type_str = "CTO_RECOVERY";
+ break;
+ case DUMP_TYPE_SEQUENTIAL_PRIVCMD_ERROR:
+ type_str = "SEQUENTIAL_PRIVCMD_ERROR";
+ break;
+ case DUMP_TYPE_PROXD_TIMEOUT:
+ type_str = "PROXD_TIMEOUT";
+ break;
+ case DUMP_TYPE_PKTID_POOL_DEPLETED:
+ type_str = "PKTID_POOL_DEPLETED";
break;
default:
type_str = "Unknown_type";
@@ -12503,49 +16046,111 @@
buf[strlen(type_str)] = 0;
}
+void
+dhd_get_memdump_filename(struct net_device *ndev, char *memdump_path, int len, char *fname)
+{
+ char memdump_type[32];
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(ndev);
+ dhd_pub_t *dhdp = &dhd->pub;
+
+ /* Init file name */
+ memset(memdump_path, 0, len);
+ memset(memdump_type, 0, sizeof(memdump_type));
+ dhd_convert_memdump_type_to_str(dhdp->memdump_type, memdump_type, dhdp->debug_dump_subcmd);
+ clear_debug_dump_time(dhdp->debug_dump_time_str);
+ get_debug_dump_time(dhdp->debug_dump_time_str);
+#ifdef CUSTOMER_HW4_DEBUG
+ snprintf(memdump_path, len, "%s%s_%s_" "%s",
+ DHD_COMMON_DUMP_PATH, fname, memdump_type, dhdp->debug_dump_time_str);
+#elif defined(CUSTOMER_HW2) || defined(BOARD_HIKEY)
+ snprintf(memdump_path, len, "%s%s_%s_" "%s",
+ DHD_COMMON_DUMP_PATH, fname, memdump_type, dhdp->debug_dump_time_str);
+#elif defined(OEM_ANDROID) && (defined(BOARD_PANDA) || defined(__ARM_ARCH_7A__))
+ snprintf(memdump_path, len, "%s%s_%s_" "%s",
+ DHD_COMMON_DUMP_PATH, fname, memdump_type, dhdp->debug_dump_time_str);
+#elif defined(OEM_ANDROID)
+ snprintf(memdump_path, len, "%s%s_%s_" "%s",
+ DHD_COMMON_DUMP_PATH, fname, memdump_type, dhdp->debug_dump_time_str);
+#else
+ snprintf(memdump_path, len, "%s%s_%s_" "%s",
+ DHD_COMMON_DUMP_PATH, fname, memdump_type, dhdp->debug_dump_time_str);
+#endif /* CUSTOMER_HW4_DEBUG */
+ if (strstr(fname, "sssr_dump")) {
+ DHD_SSSR_PRINT_FILEPATH(dhdp, memdump_path);
+ } else {
+ DHD_ERROR(("%s: file_path = %s%s\n", __FUNCTION__,
+ memdump_path, FILE_NAME_HAL_TAG));
+ }
+}
+
int
-write_to_file(dhd_pub_t *dhd, uint8 *buf, int size)
+write_dump_to_file(dhd_pub_t *dhd, uint8 *buf, int size, char *fname)
{
int ret = 0;
- char memdump_path[64];
+ char memdump_path[128];
char memdump_type[32];
-#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 0, 0)
- struct timeval curtime;
-#else
- struct timespec64 curtime;
-#endif
uint32 file_mode;
/* Init file name */
memset(memdump_path, 0, sizeof(memdump_path));
memset(memdump_type, 0, sizeof(memdump_type));
-#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 0, 0)
- do_gettimeofday(&curtime);
-#else
- ktime_get_real_ts64(&curtime);
-#endif
- dhd_convert_memdump_type_to_str(dhd->memdump_type, memdump_type);
- sprintf(memdump_path, "%s_%s_%ld.%ld", "/installmedia/mem_dump",
- memdump_type, (unsigned long)curtime.tv_sec,
-#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 0, 0)
- (unsigned long)curtime.tv_usec);
-#else
- (unsigned long)curtime.tv_nsec);
-#endif
-
+ dhd_convert_memdump_type_to_str(dhd->memdump_type, memdump_type, dhd->debug_dump_subcmd);
+ clear_debug_dump_time(dhd->debug_dump_time_str);
+ get_debug_dump_time(dhd->debug_dump_time_str);
+#ifdef CUSTOMER_HW4_DEBUG
+ snprintf(memdump_path, sizeof(memdump_path), "%s%s_%s_" "%s",
+ DHD_COMMON_DUMP_PATH, fname, memdump_type, dhd->debug_dump_time_str);
+ file_mode = O_CREAT | O_WRONLY | O_SYNC;
+#elif defined(CUSTOMER_HW2) || defined(BOARD_HIKEY)
+ snprintf(memdump_path, sizeof(memdump_path), "%s%s_%s_" "%s",
+ DHD_COMMON_DUMP_PATH, fname, memdump_type, dhd->debug_dump_time_str);
+ file_mode = O_CREAT | O_WRONLY | O_SYNC;
+#elif defined(OEM_ANDROID) && (defined(BOARD_PANDA) || defined(__ARM_ARCH_7A__))
+ snprintf(memdump_path, sizeof(memdump_path), "%s%s_%s_" "%s",
+ DHD_COMMON_DUMP_PATH, fname, memdump_type, dhd->debug_dump_time_str);
+ file_mode = O_CREAT | O_WRONLY;
+#elif defined(OEM_ANDROID)
+ snprintf(memdump_path, sizeof(memdump_path), "%s%s_%s_" "%s",
+ "/root/", fname, memdump_type, dhd->debug_dump_time_str);
/* Extra flags O_DIRECT and O_SYNC are required for Brix Android, as we are
* calling BUG_ON immediately after collecting the socram dump.
* So the file write operation should directly write the contents into the
* file instead of caching it. O_TRUNC flag ensures that file will be re-written
* instead of appending.
*/
- file_mode = O_CREAT | O_WRONLY | O_DIRECT | O_SYNC | O_TRUNC;
+ file_mode = O_CREAT | O_WRONLY | O_SYNC;
+ {
+ struct file *fp = filp_open(memdump_path, file_mode, 0664);
+ /* Check if it is live Brix image having /installmedia, else use /data */
+ if (IS_ERR(fp)) {
+ DHD_ERROR(("open file %s, try /tmp/\n", memdump_path));
+ snprintf(memdump_path, sizeof(memdump_path), "%s%s_%s_" "%s",
+ "/tmp/", fname, memdump_type, dhd->debug_dump_time_str);
+ } else {
+ filp_close(fp, NULL);
+ }
+ }
+#else
+ snprintf(memdump_path, sizeof(memdump_path), "%s%s_%s_" "%s",
+ DHD_COMMON_DUMP_PATH, fname, memdump_type, dhd->debug_dump_time_str);
+ file_mode = O_CREAT | O_WRONLY;
+#endif /* CUSTOMER_HW4_DEBUG */
/* print SOCRAM dump file path */
- DHD_ERROR(("%s: memdump_path = %s\n", __FUNCTION__, memdump_path));
+ DHD_ERROR(("%s: file_path = %s\n", __FUNCTION__, memdump_path));
+
+#ifdef DHD_LOG_DUMP
+ dhd_print_buf_addr(dhd, "write_dump_to_file", buf, size);
+#endif /* DHD_LOG_DUMP */
/* Write file */
ret = write_file(memdump_path, file_mode, buf, size);
+
+#ifdef DHD_DUMP_MNGR
+ if (ret == BCME_OK) {
+ dhd_dump_file_manage_enqueue(dhd, memdump_path, fname);
+ }
+#endif /* DHD_DUMP_MNGR */
return ret;
}
@@ -12557,18 +16162,18 @@
unsigned long flags;
int ret = 0;
- if (dhd) {
+ if (dhd && (dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT)) {
spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
ret = dhd->wakelock_rx_timeout_enable > dhd->wakelock_ctrl_timeout_enable ?
dhd->wakelock_rx_timeout_enable : dhd->wakelock_ctrl_timeout_enable;
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
if (dhd->wakelock_rx_timeout_enable)
wake_lock_timeout(&dhd->wl_rxwake,
msecs_to_jiffies(dhd->wakelock_rx_timeout_enable));
if (dhd->wakelock_ctrl_timeout_enable)
wake_lock_timeout(&dhd->wl_ctrlwake,
msecs_to_jiffies(dhd->wakelock_ctrl_timeout_enable));
-#endif
+#endif // endif
dhd->wakelock_rx_timeout_enable = 0;
dhd->wakelock_ctrl_timeout_enable = 0;
spin_unlock_irqrestore(&dhd->wakelock_spinlock, flags);
@@ -12591,7 +16196,7 @@
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
unsigned long flags;
- if (dhd) {
+ if (dhd && (dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT)) {
spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
if (val > dhd->wakelock_rx_timeout_enable)
dhd->wakelock_rx_timeout_enable = val;
@@ -12605,7 +16210,7 @@
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
unsigned long flags;
- if (dhd) {
+ if (dhd && (dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT)) {
spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
if (val > dhd->wakelock_ctrl_timeout_enable)
dhd->wakelock_ctrl_timeout_enable = val;
@@ -12619,13 +16224,13 @@
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
unsigned long flags;
- if (dhd) {
+ if (dhd && (dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT)) {
spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
dhd->wakelock_ctrl_timeout_enable = 0;
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
if (wake_lock_active(&dhd->wl_ctrlwake))
wake_unlock(&dhd->wl_ctrlwake);
-#endif
+#endif // endif
spin_unlock_irqrestore(&dhd->wakelock_spinlock, flags);
}
return 0;
@@ -12651,27 +16256,257 @@
return ret;
}
+#if defined(DHD_TRACE_WAKE_LOCK)
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0))
+#include <linux/hashtable.h>
+#else
+#include <linux/hash.h>
+#endif /* KERNEL_VER >= KERNEL_VERSION(3, 7, 0) */
+
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0))
+/* Define 2^5 = 32 bucket size hash table */
+DEFINE_HASHTABLE(wklock_history, 5);
+#else
+/* Define 2^5 = 32 bucket size hash table */
+struct hlist_head wklock_history[32] = { [0 ... 31] = HLIST_HEAD_INIT };
+#endif /* KERNEL_VER >= KERNEL_VERSION(3, 7, 0) */
+
+atomic_t trace_wklock_onoff;
+typedef enum dhd_wklock_type {
+ DHD_WAKE_LOCK,
+ DHD_WAKE_UNLOCK,
+ DHD_WAIVE_LOCK,
+ DHD_RESTORE_LOCK
+} dhd_wklock_t;
+
+struct wk_trace_record {
+ unsigned long addr; /* Address of the instruction */
+ dhd_wklock_t lock_type; /* lock_type */
+ unsigned long long counter; /* counter information */
+ struct hlist_node wklock_node; /* hash node */
+};
+
+static struct wk_trace_record *find_wklock_entry(unsigned long addr)
+{
+ struct wk_trace_record *wklock_info;
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0))
+ hash_for_each_possible(wklock_history, wklock_info, wklock_node, addr)
+#else
+ struct hlist_node *entry;
+ int index = hash_long(addr, ilog2(ARRAY_SIZE(wklock_history)));
+ hlist_for_each_entry(wklock_info, entry, &wklock_history[index], wklock_node)
+#endif /* KERNEL_VER >= KERNEL_VERSION(3, 7, 0) */
+ {
+ if (wklock_info->addr == addr) {
+ return wklock_info;
+ }
+ }
+ return NULL;
+}
+
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0))
+#define HASH_ADD(hashtable, node, key) \
+ do { \
+ hash_add(hashtable, node, key); \
+ } while (0);
+#else
+#define HASH_ADD(hashtable, node, key) \
+ do { \
+ int index = hash_long(key, ilog2(ARRAY_SIZE(hashtable))); \
+ hlist_add_head(node, &hashtable[index]); \
+ } while (0);
+#endif /* KERNEL_VER < KERNEL_VERSION(3, 7, 0) */
+
+#define STORE_WKLOCK_RECORD(wklock_type) \
+ do { \
+ struct wk_trace_record *wklock_info = NULL; \
+ unsigned long func_addr = (unsigned long)__builtin_return_address(0); \
+ wklock_info = find_wklock_entry(func_addr); \
+ if (wklock_info) { \
+ if (wklock_type == DHD_WAIVE_LOCK || wklock_type == DHD_RESTORE_LOCK) { \
+ wklock_info->counter = dhd->wakelock_counter; \
+ } else { \
+ wklock_info->counter++; \
+ } \
+ } else { \
+ wklock_info = kzalloc(sizeof(*wklock_info), GFP_ATOMIC); \
+ if (!wklock_info) {\
+ printk("Can't allocate wk_trace_record \n"); \
+ } else { \
+ wklock_info->addr = func_addr; \
+ wklock_info->lock_type = wklock_type; \
+ if (wklock_type == DHD_WAIVE_LOCK || \
+ wklock_type == DHD_RESTORE_LOCK) { \
+ wklock_info->counter = dhd->wakelock_counter; \
+ } else { \
+ wklock_info->counter++; \
+ } \
+ HASH_ADD(wklock_history, &wklock_info->wklock_node, func_addr); \
+ } \
+ } \
+ } while (0);
+
+static inline void dhd_wk_lock_rec_dump(void)
+{
+ int bkt;
+ struct wk_trace_record *wklock_info;
+
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0))
+ hash_for_each(wklock_history, bkt, wklock_info, wklock_node)
+#else
+ struct hlist_node *entry = NULL;
+ int max_index = ARRAY_SIZE(wklock_history);
+ for (bkt = 0; bkt < max_index; bkt++)
+ hlist_for_each_entry(wklock_info, entry, &wklock_history[bkt], wklock_node)
+#endif /* KERNEL_VER >= KERNEL_VERSION(3, 7, 0) */
+ {
+ switch (wklock_info->lock_type) {
+ case DHD_WAKE_LOCK:
+ printk("wakelock lock : %pS lock_counter : %llu \n",
+ (void *)wklock_info->addr, wklock_info->counter);
+ break;
+ case DHD_WAKE_UNLOCK:
+ printk("wakelock unlock : %pS, unlock_counter : %llu \n",
+ (void *)wklock_info->addr, wklock_info->counter);
+ break;
+ case DHD_WAIVE_LOCK:
+ printk("wakelock waive : %pS before_waive : %llu \n",
+ (void *)wklock_info->addr, wklock_info->counter);
+ break;
+ case DHD_RESTORE_LOCK:
+ printk("wakelock restore : %pS, after_waive : %llu \n",
+ (void *)wklock_info->addr, wklock_info->counter);
+ break;
+ }
+ }
+}
+
+static void dhd_wk_lock_trace_init(struct dhd_info *dhd)
+{
+ unsigned long flags;
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 7, 0))
+ int i;
+#endif /* KERNEL_VER >= KERNEL_VERSION(3, 7, 0) */
+
+ spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0))
+ hash_init(wklock_history);
+#else
+ for (i = 0; i < ARRAY_SIZE(wklock_history); i++)
+ INIT_HLIST_HEAD(&wklock_history[i]);
+#endif /* KERNEL_VER >= KERNEL_VERSION(3, 7, 0) */
+ spin_unlock_irqrestore(&dhd->wakelock_spinlock, flags);
+ atomic_set(&trace_wklock_onoff, 1);
+}
+
+static void dhd_wk_lock_trace_deinit(struct dhd_info *dhd)
+{
+ int bkt;
+ struct wk_trace_record *wklock_info;
+ struct hlist_node *tmp;
+ unsigned long flags;
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 7, 0))
+ struct hlist_node *entry = NULL;
+ int max_index = ARRAY_SIZE(wklock_history);
+#endif /* KERNEL_VER >= KERNEL_VERSION(3, 7, 0) */
+
+ spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0))
+ hash_for_each_safe(wklock_history, bkt, tmp, wklock_info, wklock_node)
+#else
+ for (bkt = 0; bkt < max_index; bkt++)
+ hlist_for_each_entry_safe(wklock_info, entry, tmp,
+ &wklock_history[bkt], wklock_node)
+#endif /* KERNEL_VER >= KERNEL_VERSION(3, 7, 0)) */
+ {
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0))
+ hash_del(&wklock_info->wklock_node);
+#else
+ hlist_del_init(&wklock_info->wklock_node);
+#endif /* KERNEL_VER >= KERNEL_VERSION(3, 7, 0)) */
+ kfree(wklock_info);
+ }
+ spin_unlock_irqrestore(&dhd->wakelock_spinlock, flags);
+}
+
+void dhd_wk_lock_stats_dump(dhd_pub_t *dhdp)
+{
+ dhd_info_t *dhd = (dhd_info_t *)(dhdp->info);
+ unsigned long flags;
+
+ printk(KERN_ERR"DHD Printing wl_wake Lock/Unlock Record \r\n");
+ spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
+ dhd_wk_lock_rec_dump();
+ spin_unlock_irqrestore(&dhd->wakelock_spinlock, flags);
+
+}
+#else
+#define STORE_WKLOCK_RECORD(wklock_type)
+#endif /* ! DHD_TRACE_WAKE_LOCK */
+
int dhd_os_wake_lock(dhd_pub_t *pub)
{
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
unsigned long flags;
int ret = 0;
- if (dhd) {
+ if (dhd && (dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT)) {
spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
-
if (dhd->wakelock_counter == 0 && !dhd->waive_wakelock) {
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
wake_lock(&dhd->wl_wifi);
-#elif defined(BCMSDIO) && (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 36))
+#elif defined(BCMSDIO)
dhd_bus_dev_pm_stay_awake(pub);
-#endif
+#endif // endif
}
+#ifdef DHD_TRACE_WAKE_LOCK
+ if (atomic_read(&trace_wklock_onoff)) {
+ STORE_WKLOCK_RECORD(DHD_WAKE_LOCK);
+ }
+#endif /* DHD_TRACE_WAKE_LOCK */
dhd->wakelock_counter++;
ret = dhd->wakelock_counter;
spin_unlock_irqrestore(&dhd->wakelock_spinlock, flags);
}
+
return ret;
+}
+
+void dhd_event_wake_lock(dhd_pub_t *pub)
+{
+ dhd_info_t *dhd = (dhd_info_t *)(pub->info);
+
+ if (dhd) {
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
+ wake_lock(&dhd->wl_evtwake);
+#elif defined(BCMSDIO)
+ dhd_bus_dev_pm_stay_awake(pub);
+#endif // endif
+ }
+}
+
+void
+dhd_pm_wake_lock_timeout(dhd_pub_t *pub, int val)
+{
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
+ dhd_info_t *dhd = (dhd_info_t *)(pub->info);
+
+ if (dhd) {
+ wake_lock_timeout(&dhd->wl_pmwake, msecs_to_jiffies(val));
+ }
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
+}
+
+void
+dhd_txfl_wake_lock_timeout(dhd_pub_t *pub, int val)
+{
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
+ dhd_info_t *dhd = (dhd_info_t *)(pub->info);
+
+ if (dhd) {
+ wake_lock_timeout(&dhd->wl_txflwake, msecs_to_jiffies(val));
+ }
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
}
int net_os_wake_lock(struct net_device *dev)
@@ -12691,16 +16526,22 @@
int ret = 0;
dhd_os_wake_lock_timeout(pub);
- if (dhd) {
+ if (dhd && (dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT)) {
spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
+
if (dhd->wakelock_counter > 0) {
dhd->wakelock_counter--;
+#ifdef DHD_TRACE_WAKE_LOCK
+ if (atomic_read(&trace_wklock_onoff)) {
+ STORE_WKLOCK_RECORD(DHD_WAKE_UNLOCK);
+ }
+#endif /* DHD_TRACE_WAKE_LOCK */
if (dhd->wakelock_counter == 0 && !dhd->waive_wakelock) {
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
wake_unlock(&dhd->wl_wifi);
-#elif defined(BCMSDIO) && (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 36))
+#elif defined(BCMSDIO)
dhd_bus_dev_pm_relax(pub);
-#endif
+#endif // endif
}
ret = dhd->wakelock_counter;
}
@@ -12709,46 +16550,36 @@
return ret;
}
-void dhd_event_wake_lock(dhd_pub_t *pub)
-{
- dhd_info_t *dhd = (dhd_info_t *)(pub->info);
-
- if (dhd) {
-#ifdef CONFIG_HAS_WAKELOCK
- wake_lock(&dhd->wl_evtwake);
-#elif defined(BCMSDIO) && (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 36))
- dhd_bus_dev_pm_stay_awake(pub);
-#endif
- }
-}
-
void dhd_event_wake_unlock(dhd_pub_t *pub)
{
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
if (dhd) {
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
wake_unlock(&dhd->wl_evtwake);
-#elif defined(BCMSDIO) && (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 36))
+#elif defined(BCMSDIO)
dhd_bus_dev_pm_relax(pub);
-#endif
+#endif // endif
}
}
-void dhd_txfl_wake_lock_timeout(dhd_pub_t *pub, int val)
+void dhd_pm_wake_unlock(dhd_pub_t *pub)
{
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
if (dhd) {
- wake_lock_timeout(&dhd->wl_txflwake, msecs_to_jiffies(val));
+ /* if wl_pmwake is active, unlock it */
+ if (wake_lock_active(&dhd->wl_pmwake)) {
+ wake_unlock(&dhd->wl_pmwake);
+ }
}
-#endif /* CONFIG_HAS_WAKE_LOCK */
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
}
void dhd_txfl_wake_unlock(dhd_pub_t *pub)
{
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
if (dhd) {
@@ -12757,43 +16588,40 @@
wake_unlock(&dhd->wl_txflwake);
}
}
-#endif /* CONFIG_HAS_WAKELOCK */
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
}
int dhd_os_check_wakelock(dhd_pub_t *pub)
{
-#if defined(CONFIG_HAS_WAKELOCK) || (defined(BCMSDIO) && (LINUX_VERSION_CODE > \
- KERNEL_VERSION(2, 6, 36)))
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK) || defined(BCMSDIO)
dhd_info_t *dhd;
if (!pub)
return 0;
dhd = (dhd_info_t *)(pub->info);
-#endif /* CONFIG_HAS_WAKELOCK || BCMSDIO */
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK || BCMSDIO */
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
/* Indicate to the SD Host to avoid going to suspend if internal locks are up */
if (dhd && (wake_lock_active(&dhd->wl_wifi) ||
(wake_lock_active(&dhd->wl_wdwake))))
return 1;
-#elif defined(BCMSDIO) && (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 36))
+#elif defined(BCMSDIO)
if (dhd && (dhd->wakelock_counter > 0) && dhd_bus_dev_pm_enabled(pub))
return 1;
-#endif
+#endif // endif
return 0;
}
int
dhd_os_check_wakelock_all(dhd_pub_t *pub)
{
-#ifdef CONFIG_HAS_WAKELOCK
- int l1, l2, l3, l4;
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK) || defined(BCMSDIO)
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
+ int l1, l2, l3, l4, l7, l8, l9;
int l5 = 0, l6 = 0;
- int l7, l8;
int c, lock_active;
-#endif /* CONFIG_HAS_WAKELOCK */
-#if defined(CONFIG_HAS_WAKELOCK) || (defined(BCMSDIO) && (LINUX_VERSION_CODE > \
- KERNEL_VERSION(2, 6, 36)))
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
dhd_info_t *dhd;
if (!pub) {
@@ -12803,36 +16631,37 @@
if (!dhd) {
return 0;
}
-#endif /* CONFIG_HAS_WAKELOCK || BCMSDIO */
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK || BCMSDIO */
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
c = dhd->wakelock_counter;
l1 = wake_lock_active(&dhd->wl_wifi);
l2 = wake_lock_active(&dhd->wl_wdwake);
l3 = wake_lock_active(&dhd->wl_rxwake);
l4 = wake_lock_active(&dhd->wl_ctrlwake);
+ l7 = wake_lock_active(&dhd->wl_evtwake);
#ifdef BCMPCIE_OOB_HOST_WAKE
l5 = wake_lock_active(&dhd->wl_intrwake);
#endif /* BCMPCIE_OOB_HOST_WAKE */
#ifdef DHD_USE_SCAN_WAKELOCK
l6 = wake_lock_active(&dhd->wl_scanwake);
#endif /* DHD_USE_SCAN_WAKELOCK */
- l7 = wake_lock_active(&dhd->wl_evtwake);
- l8 = wake_lock_active(&dhd->wl_txflwake);
- lock_active = (l1 || l2 || l3 || l4 || l5 || l6 || l7 || l8);
+ l8 = wake_lock_active(&dhd->wl_pmwake);
+ l9 = wake_lock_active(&dhd->wl_txflwake);
+ lock_active = (l1 || l2 || l3 || l4 || l5 || l6 || l7 || l8 || l9);
/* Indicate to the Host to avoid going to suspend if internal locks are up */
- if (dhd && lock_active) {
+ if (lock_active) {
DHD_ERROR(("%s wakelock c-%d wl-%d wd-%d rx-%d "
- "ctl-%d intr-%d scan-%d\n",
- __FUNCTION__, c, l1, l2, l3, l4, l5, l6));
+ "ctl-%d intr-%d scan-%d evt-%d, pm-%d, txfl-%d\n",
+ __FUNCTION__, c, l1, l2, l3, l4, l5, l6, l7, l8, l9));
return 1;
}
-#elif defined(BCMSDIO) && (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 36))
+#elif defined(BCMSDIO)
if (dhd && (dhd->wakelock_counter > 0) && dhd_bus_dev_pm_enabled(pub)) {
return 1;
}
-#endif /* CONFIG_HAS_WAKELOCK */
+#endif /* defined(BCMSDIO) */
return 0;
}
@@ -12854,11 +16683,12 @@
if (dhd) {
spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
-#ifdef CONFIG_HAS_WAKELOCK
- /* if wakelock_wd_counter was never used : lock it at once */
- if (!dhd->wakelock_wd_counter)
+ if (dhd->wakelock_wd_counter == 0 && !dhd->waive_wakelock) {
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
+ /* if wakelock_wd_counter was never used : lock it at once */
wake_lock(&dhd->wl_wdwake);
-#endif
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
+ }
dhd->wakelock_wd_counter++;
ret = dhd->wakelock_wd_counter;
spin_unlock_irqrestore(&dhd->wakelock_spinlock, flags);
@@ -12874,11 +16704,13 @@
if (dhd) {
spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
- if (dhd->wakelock_wd_counter) {
+ if (dhd->wakelock_wd_counter > 0) {
dhd->wakelock_wd_counter = 0;
-#ifdef CONFIG_HAS_WAKELOCK
- wake_unlock(&dhd->wl_wdwake);
-#endif
+ if (!dhd->waive_wakelock) {
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
+ wake_unlock(&dhd->wl_wdwake);
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
+ }
}
spin_unlock_irqrestore(&dhd->wakelock_spinlock, flags);
}
@@ -12889,19 +16721,19 @@
void
dhd_os_oob_irq_wake_lock_timeout(dhd_pub_t *pub, int val)
{
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
if (dhd) {
wake_lock_timeout(&dhd->wl_intrwake, msecs_to_jiffies(val));
}
-#endif /* CONFIG_HAS_WAKELOCK */
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
}
void
dhd_os_oob_irq_wake_unlock(dhd_pub_t *pub)
{
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
if (dhd) {
@@ -12910,7 +16742,7 @@
wake_unlock(&dhd->wl_intrwake);
}
}
-#endif /* CONFIG_HAS_WAKELOCK */
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
}
#endif /* BCMPCIE_OOB_HOST_WAKE */
@@ -12918,19 +16750,19 @@
void
dhd_os_scan_wake_lock_timeout(dhd_pub_t *pub, int val)
{
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
if (dhd) {
wake_lock_timeout(&dhd->wl_scanwake, msecs_to_jiffies(val));
}
-#endif /* CONFIG_HAS_WAKELOCK */
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
}
void
dhd_os_scan_wake_unlock(dhd_pub_t *pub)
{
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
dhd_info_t *dhd = (dhd_info_t *)(pub->info);
if (dhd) {
@@ -12939,7 +16771,7 @@
wake_unlock(&dhd->wl_scanwake);
}
}
-#endif /* CONFIG_HAS_WAKELOCK */
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
}
#endif /* DHD_USE_SCAN_WAKELOCK */
@@ -12952,10 +16784,16 @@
unsigned long flags;
int ret = 0;
- if (dhd) {
+ if (dhd && (dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT)) {
spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
+
/* dhd_wakelock_waive/dhd_wakelock_restore must be paired */
if (dhd->waive_wakelock == FALSE) {
+#ifdef DHD_TRACE_WAKE_LOCK
+ if (atomic_read(&trace_wklock_onoff)) {
+ STORE_WKLOCK_RECORD(DHD_WAIVE_LOCK);
+ }
+#endif /* DHD_TRACE_WAKE_LOCK */
/* record current lock status */
dhd->wakelock_before_waive = dhd->wakelock_counter;
dhd->waive_wakelock = TRUE;
@@ -12974,8 +16812,11 @@
if (!dhd)
return 0;
+ if ((dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT) == 0)
+ return 0;
spin_lock_irqsave(&dhd->wakelock_spinlock, flags);
+
/* dhd_wakelock_waive/dhd_wakelock_restore must be paired */
if (!dhd->waive_wakelock)
goto exit;
@@ -12985,18 +16826,24 @@
* we need to make it up by calling wake_lock or pm_stay_awake. or if somebody releases
* the lock in between, do the same by calling wake_unlock or pm_relax
*/
+#ifdef DHD_TRACE_WAKE_LOCK
+ if (atomic_read(&trace_wklock_onoff)) {
+ STORE_WKLOCK_RECORD(DHD_RESTORE_LOCK);
+ }
+#endif /* DHD_TRACE_WAKE_LOCK */
+
if (dhd->wakelock_before_waive == 0 && dhd->wakelock_counter > 0) {
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
wake_lock(&dhd->wl_wifi);
-#elif defined(BCMSDIO) && (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 36))
+#elif defined(BCMSDIO)
dhd_bus_dev_pm_stay_awake(&dhd->pub);
-#endif
+#endif // endif
} else if (dhd->wakelock_before_waive > 0 && dhd->wakelock_counter == 0) {
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
wake_unlock(&dhd->wl_wifi);
-#elif defined(BCMSDIO) && (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 36))
+#elif defined(BCMSDIO)
dhd_bus_dev_pm_relax(&dhd->pub);
-#endif
+#endif // endif
}
dhd->wakelock_before_waive = 0;
exit:
@@ -13011,10 +16858,13 @@
dhd->wakelock_counter = 0;
dhd->wakelock_rx_timeout_enable = 0;
dhd->wakelock_ctrl_timeout_enable = 0;
-#ifdef CONFIG_HAS_WAKELOCK
+ /* wakelocks prevent a system from going into a low power state */
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
+ wake_lock_init(&dhd->wl_wifi, WAKE_LOCK_SUSPEND, "wlan_wake");
wake_lock_init(&dhd->wl_rxwake, WAKE_LOCK_SUSPEND, "wlan_rx_wake");
wake_lock_init(&dhd->wl_ctrlwake, WAKE_LOCK_SUSPEND, "wlan_ctrl_wake");
wake_lock_init(&dhd->wl_evtwake, WAKE_LOCK_SUSPEND, "wlan_evt_wake");
+ wake_lock_init(&dhd->wl_pmwake, WAKE_LOCK_SUSPEND, "wlan_pm_wake");
wake_lock_init(&dhd->wl_txflwake, WAKE_LOCK_SUSPEND, "wlan_txfl_wake");
#ifdef BCMPCIE_OOB_HOST_WAKE
wake_lock_init(&dhd->wl_intrwake, WAKE_LOCK_SUSPEND, "wlan_oob_irq_wake");
@@ -13022,19 +16872,24 @@
#ifdef DHD_USE_SCAN_WAKELOCK
wake_lock_init(&dhd->wl_scanwake, WAKE_LOCK_SUSPEND, "wlan_scan_wake");
#endif /* DHD_USE_SCAN_WAKELOCK */
-#endif /* CONFIG_HAS_WAKELOCK */
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
+#ifdef DHD_TRACE_WAKE_LOCK
+ dhd_wk_lock_trace_init(dhd);
+#endif /* DHD_TRACE_WAKE_LOCK */
}
void dhd_os_wake_lock_destroy(struct dhd_info *dhd)
{
DHD_TRACE(("%s: deinit wake_lock_counters\n", __FUNCTION__));
-#ifdef CONFIG_HAS_WAKELOCK
+#if defined(CONFIG_PM_WAKELOCKS) || defined(CONFIG_HAS_WAKELOCK)
dhd->wakelock_counter = 0;
dhd->wakelock_rx_timeout_enable = 0;
dhd->wakelock_ctrl_timeout_enable = 0;
+ wake_lock_destroy(&dhd->wl_wifi);
wake_lock_destroy(&dhd->wl_rxwake);
wake_lock_destroy(&dhd->wl_ctrlwake);
wake_lock_destroy(&dhd->wl_evtwake);
+ wake_lock_destroy(&dhd->wl_pmwake);
wake_lock_destroy(&dhd->wl_txflwake);
#ifdef BCMPCIE_OOB_HOST_WAKE
wake_lock_destroy(&dhd->wl_intrwake);
@@ -13042,7 +16897,10 @@
#ifdef DHD_USE_SCAN_WAKELOCK
wake_lock_destroy(&dhd->wl_scanwake);
#endif /* DHD_USE_SCAN_WAKELOCK */
-#endif /* CONFIG_HAS_WAKELOCK */
+#ifdef DHD_TRACE_WAKE_LOCK
+ dhd_wk_lock_trace_deinit(dhd);
+#endif /* DHD_TRACE_WAKE_LOCK */
+#endif /* CONFIG_PM_WAKELOCKS || CONFIG_HAS_WAKELOCK */
}
bool dhd_os_check_if_up(dhd_pub_t *pub)
@@ -13069,7 +16927,6 @@
dhd_bus_chiprev_id(dhdp), dhd_bus_chippkg_id(dhdp));
}
#endif /* BCMSDIO || BCMPCIE */
-
int dhd_ioctl_entry_local(struct net_device *net, wl_ioctl_t *ioc, int cmd)
{
int ifidx;
@@ -13077,7 +16934,8 @@
dhd_info_t *dhd = NULL;
if (!net || !DEV_PRIV(net)) {
- DHD_ERROR(("%s invalid parameter\n", __FUNCTION__));
+ DHD_ERROR(("%s invalid parameter net %p dev_priv %p\n",
+ __FUNCTION__, net, DEV_PRIV(net)));
return -EINVAL;
}
@@ -13122,21 +16980,108 @@
return dhdp->info->unit;
}
+#if defined(WL_CFG80211) && defined(SUPPORT_DEEP_SLEEP)
+#define MAX_TRY_CNT 5 /* Number of tries to disable deepsleep */
+int dhd_deepsleep(struct net_device *dev, int flag)
+{
+ char iovbuf[20];
+ uint powervar = 0;
+ dhd_info_t *dhd;
+ dhd_pub_t *dhdp;
+ int cnt = 0;
+ int ret = 0;
+
+ dhd = DHD_DEV_INFO(dev);
+ dhdp = &dhd->pub;
+
+ switch (flag) {
+ case 1 : /* Deepsleep on */
+ DHD_ERROR(("[WiFi] Deepsleep On\n"));
+ /* give some time to sysioc_work before deepsleep */
+ OSL_SLEEP(200);
+#ifdef PKT_FILTER_SUPPORT
+ /* disable pkt filter */
+ dhd_enable_packet_filter(0, dhdp);
+#endif /* PKT_FILTER_SUPPORT */
+ /* Disable MPC */
+ powervar = 0;
+ ret = dhd_iovar(dhdp, 0, "mpc", (char *)&powervar, sizeof(powervar), NULL,
+ 0, TRUE);
+
+ /* Enable Deepsleep */
+ powervar = 1;
+ ret = dhd_iovar(dhdp, 0, "deepsleep", (char *)&powervar, sizeof(powervar),
+ NULL, 0, TRUE);
+ break;
+
+ case 0: /* Deepsleep Off */
+ DHD_ERROR(("[WiFi] Deepsleep Off\n"));
+
+ /* Disable Deepsleep */
+ for (cnt = 0; cnt < MAX_TRY_CNT; cnt++) {
+ powervar = 0;
+ ret = dhd_iovar(dhdp, 0, "deepsleep", (char *)&powervar,
+ sizeof(powervar), NULL, 0, TRUE);
+
+ ret = dhd_iovar(dhdp, 0, "deepsleep", (char *)&powervar,
+ sizeof(powervar), iovbuf, sizeof(iovbuf), FALSE);
+ if (ret < 0) {
+ DHD_ERROR(("the error of dhd deepsleep status"
+ " ret value :%d\n", ret));
+ } else {
+ if (!(*(int *)iovbuf)) {
+ DHD_ERROR(("deepsleep mode is 0,"
+ " count: %d\n", cnt));
+ break;
+ }
+ }
+ }
+
+ /* Enable MPC */
+ powervar = 1;
+ ret = dhd_iovar(dhdp, 0, "mpc", (char *)&powervar, sizeof(powervar), NULL,
+ 0, TRUE);
+ break;
+ }
+
+ return 0;
+}
+#endif /* WL_CFG80211 && SUPPORT_DEEP_SLEEP */
#ifdef PROP_TXSTATUS
void dhd_wlfc_plat_init(void *dhd)
{
+#ifdef USE_DYNAMIC_F2_BLKSIZE
+ dhdsdio_func_blocksize((dhd_pub_t *)dhd, 2, sd_f2_blocksize);
+#endif /* USE_DYNAMIC_F2_BLKSIZE */
return;
}
void dhd_wlfc_plat_deinit(void *dhd)
{
+#ifdef USE_DYNAMIC_F2_BLKSIZE
+ dhdsdio_func_blocksize((dhd_pub_t *)dhd, 2, sd_f2_blocksize);
+#endif /* USE_DYNAMIC_F2_BLKSIZE */
return;
}
-bool dhd_wlfc_skip_fc(void)
+bool dhd_wlfc_skip_fc(void * dhdp, uint8 idx)
{
+#ifdef SKIP_WLFC_ON_CONCURRENT
+
+#ifdef WL_CFG80211
+ struct net_device * net = dhd_idx2net((dhd_pub_t *)dhdp, idx);
+ if (net)
+ /* enable flow control in vsdb mode */
+ return !(wl_cfg80211_is_concurrent_mode(net));
+#else
+ return TRUE; /* skip flow control */
+#endif /* WL_CFG80211 */
+
+#else
+ return FALSE;
+#endif /* SKIP_WLFC_ON_CONCURRENT */
return FALSE;
}
#endif /* PROP_TXSTATUS */
@@ -13193,7 +17138,6 @@
return rval;
}
-
static ssize_t
dhd_debugfs_write(struct file *file, const char __user *ubuf, size_t count, loff_t *ppos)
{
@@ -13217,7 +17161,6 @@
return count;
}
-
loff_t
dhd_debugfs_lseek(struct file *file, loff_t off, int whence)
@@ -13244,7 +17187,7 @@
.llseek = dhd_debugfs_lseek
};
-static void dhd_dbg_create(void)
+static void dhd_dbgfs_create(void)
{
if (g_dbgfs.debugfs_dir) {
g_dbgfs.debugfs_mem = debugfs_create_file("mem", 0644, g_dbgfs.debugfs_dir,
@@ -13252,7 +17195,7 @@
}
}
-void dhd_dbg_init(dhd_pub_t *dhdp)
+void dhd_dbgfs_init(dhd_pub_t *dhdp)
{
g_dbgfs.dhdp = dhdp;
g_dbgfs.size = 0x20000000; /* Allow access to various cores regs */
@@ -13263,12 +17206,12 @@
return;
}
- dhd_dbg_create();
+ dhd_dbgfs_create();
return;
}
-void dhd_dbg_remove(void)
+void dhd_dbgfs_remove(void)
{
debugfs_remove(g_dbgfs.debugfs_mem);
debugfs_remove(g_dbgfs.debugfs_dir);
@@ -13276,320 +17219,6 @@
bzero((unsigned char *) &g_dbgfs, sizeof(g_dbgfs));
}
#endif /* BCMDBGFS */
-
-#ifdef WLMEDIA_HTSF
-
-static
-void dhd_htsf_addtxts(dhd_pub_t *dhdp, void *pktbuf)
-{
- dhd_info_t *dhd = (dhd_info_t *)(dhdp->info);
- struct sk_buff *skb;
- uint32 htsf = 0;
- uint16 dport = 0, oldmagic = 0xACAC;
- char *p1;
- htsfts_t ts;
-
- /* timestamp packet */
-
- p1 = (char*) PKTDATA(dhdp->osh, pktbuf);
-
- if (PKTLEN(dhdp->osh, pktbuf) > HTSF_MINLEN) {
-/* memcpy(&proto, p1+26, 4); */
- memcpy(&dport, p1+40, 2);
-/* proto = ((ntoh32(proto))>> 16) & 0xFF; */
- dport = ntoh16(dport);
- }
-
- /* timestamp only if icmp or udb iperf with port 5555 */
-/* if (proto == 17 && dport == tsport) { */
- if (dport >= tsport && dport <= tsport + 20) {
-
- skb = (struct sk_buff *) pktbuf;
-
- htsf = dhd_get_htsf(dhd, 0);
- memset(skb->data + 44, 0, 2); /* clear checksum */
- memcpy(skb->data+82, &oldmagic, 2);
- memcpy(skb->data+84, &htsf, 4);
-
- memset(&ts, 0, sizeof(htsfts_t));
- ts.magic = HTSFMAGIC;
- ts.prio = PKTPRIO(pktbuf);
- ts.seqnum = htsf_seqnum++;
- ts.c10 = get_cycles();
- ts.t10 = htsf;
- ts.endmagic = HTSFENDMAGIC;
-
- memcpy(skb->data + HTSF_HOSTOFFSET, &ts, sizeof(ts));
- }
-}
-
-static void dhd_dump_htsfhisto(histo_t *his, char *s)
-{
- int pktcnt = 0, curval = 0, i;
- for (i = 0; i < (NUMBIN-2); i++) {
- curval += 500;
- printf("%d ", his->bin[i]);
- pktcnt += his->bin[i];
- }
- printf(" max: %d TotPkt: %d neg: %d [%s]\n", his->bin[NUMBIN-2], pktcnt,
- his->bin[NUMBIN-1], s);
-}
-
-static
-void sorttobin(int value, histo_t *histo)
-{
- int i, binval = 0;
-
- if (value < 0) {
- histo->bin[NUMBIN-1]++;
- return;
- }
- if (value > histo->bin[NUMBIN-2]) /* store the max value */
- histo->bin[NUMBIN-2] = value;
-
- for (i = 0; i < (NUMBIN-2); i++) {
- binval += 500; /* 500m s bins */
- if (value <= binval) {
- histo->bin[i]++;
- return;
- }
- }
- histo->bin[NUMBIN-3]++;
-}
-
-static
-void dhd_htsf_addrxts(dhd_pub_t *dhdp, void *pktbuf)
-{
- dhd_info_t *dhd = (dhd_info_t *)dhdp->info;
- struct sk_buff *skb;
- char *p1;
- uint16 old_magic;
- int d1, d2, d3, end2end;
- htsfts_t *htsf_ts;
- uint32 htsf;
-
- skb = PKTTONATIVE(dhdp->osh, pktbuf);
- p1 = (char*)PKTDATA(dhdp->osh, pktbuf);
-
- if (PKTLEN(osh, pktbuf) > HTSF_MINLEN) {
- memcpy(&old_magic, p1+78, 2);
- htsf_ts = (htsfts_t*) (p1 + HTSF_HOSTOFFSET - 4);
- } else {
- return;
- }
- if (htsf_ts->magic == HTSFMAGIC) {
- htsf_ts->tE0 = dhd_get_htsf(dhd, 0);
- htsf_ts->cE0 = get_cycles();
- }
-
- if (old_magic == 0xACAC) {
-
- tspktcnt++;
- htsf = dhd_get_htsf(dhd, 0);
- memcpy(skb->data+92, &htsf, sizeof(uint32));
-
- memcpy(&ts[tsidx].t1, skb->data+80, 16);
-
- d1 = ts[tsidx].t2 - ts[tsidx].t1;
- d2 = ts[tsidx].t3 - ts[tsidx].t2;
- d3 = ts[tsidx].t4 - ts[tsidx].t3;
- end2end = ts[tsidx].t4 - ts[tsidx].t1;
-
- sorttobin(d1, &vi_d1);
- sorttobin(d2, &vi_d2);
- sorttobin(d3, &vi_d3);
- sorttobin(end2end, &vi_d4);
-
- if (end2end > 0 && end2end > maxdelay) {
- maxdelay = end2end;
- maxdelaypktno = tspktcnt;
- memcpy(&maxdelayts, &ts[tsidx], 16);
- }
- if (++tsidx >= TSMAX)
- tsidx = 0;
- }
-}
-
-uint32 dhd_get_htsf(dhd_info_t *dhd, int ifidx)
-{
- uint32 htsf = 0, cur_cycle, delta, delta_us;
- uint32 factor, baseval, baseval2;
- cycles_t t;
-
- t = get_cycles();
- cur_cycle = t;
-
- if (cur_cycle > dhd->htsf.last_cycle) {
- delta = cur_cycle - dhd->htsf.last_cycle;
- } else {
- delta = cur_cycle + (0xFFFFFFFF - dhd->htsf.last_cycle);
- }
-
- delta = delta >> 4;
-
- if (dhd->htsf.coef) {
- /* times ten to get the first digit */
- factor = (dhd->htsf.coef*10 + dhd->htsf.coefdec1);
- baseval = (delta*10)/factor;
- baseval2 = (delta*10)/(factor+1);
- delta_us = (baseval - (((baseval - baseval2) * dhd->htsf.coefdec2)) / 10);
- htsf = (delta_us << 4) + dhd->htsf.last_tsf + HTSF_BUS_DELAY;
- } else {
- DHD_ERROR(("-------dhd->htsf.coef = 0 -------\n"));
- }
-
- return htsf;
-}
-
-static void dhd_dump_latency(void)
-{
- int i, max = 0;
- int d1, d2, d3, d4, d5;
-
- printf("T1 T2 T3 T4 d1 d2 t4-t1 i \n");
- for (i = 0; i < TSMAX; i++) {
- d1 = ts[i].t2 - ts[i].t1;
- d2 = ts[i].t3 - ts[i].t2;
- d3 = ts[i].t4 - ts[i].t3;
- d4 = ts[i].t4 - ts[i].t1;
- d5 = ts[max].t4-ts[max].t1;
- if (d4 > d5 && d4 > 0) {
- max = i;
- }
- printf("%08X %08X %08X %08X \t%d %d %d %d i=%d\n",
- ts[i].t1, ts[i].t2, ts[i].t3, ts[i].t4,
- d1, d2, d3, d4, i);
- }
-
- printf("current idx = %d \n", tsidx);
-
- printf("Highest latency %d pkt no.%d total=%d\n", maxdelay, maxdelaypktno, tspktcnt);
- printf("%08X %08X %08X %08X \t%d %d %d %d\n",
- maxdelayts.t1, maxdelayts.t2, maxdelayts.t3, maxdelayts.t4,
- maxdelayts.t2 - maxdelayts.t1,
- maxdelayts.t3 - maxdelayts.t2,
- maxdelayts.t4 - maxdelayts.t3,
- maxdelayts.t4 - maxdelayts.t1);
-}
-
-
-static int
-dhd_ioctl_htsf_get(dhd_info_t *dhd, int ifidx)
-{
- char buf[32];
- int ret;
- uint32 s1, s2;
-
- struct tsf {
- uint32 low;
- uint32 high;
- } tsf_buf;
-
- memset(&tsf_buf, 0, sizeof(tsf_buf));
-
- s1 = dhd_get_htsf(dhd, 0);
- ret = dhd_iovar(&dhd->pub, ifidx, "tsf", NULL, 0, buf, sizeof(buf), FALSE);
- if (ret < 0) {
- if (ret == -EIO) {
- DHD_ERROR(("%s: tsf is not supported by device\n",
- dhd_ifname(&dhd->pub, ifidx)));
- return -EOPNOTSUPP;
- }
- return ret;
- }
- s2 = dhd_get_htsf(dhd, 0);
-
- memcpy(&tsf_buf, buf, sizeof(tsf_buf));
- printf(" TSF_h=%04X lo=%08X Calc:htsf=%08X, coef=%d.%d%d delta=%d ",
- tsf_buf.high, tsf_buf.low, s2, dhd->htsf.coef, dhd->htsf.coefdec1,
- dhd->htsf.coefdec2, s2-tsf_buf.low);
- printf("lasttsf=%08X lastcycle=%08X\n", dhd->htsf.last_tsf, dhd->htsf.last_cycle);
- return 0;
-}
-
-void htsf_update(dhd_info_t *dhd, void *data)
-{
- static ulong cur_cycle = 0, prev_cycle = 0;
- uint32 htsf, tsf_delta = 0;
- uint32 hfactor = 0, cyc_delta, dec1 = 0, dec2, dec3, tmp;
- ulong b, a;
- cycles_t t;
-
- /* cycles_t in inlcude/mips/timex.h */
-
- t = get_cycles();
-
- prev_cycle = cur_cycle;
- cur_cycle = t;
-
- if (cur_cycle > prev_cycle)
- cyc_delta = cur_cycle - prev_cycle;
- else {
- b = cur_cycle;
- a = prev_cycle;
- cyc_delta = cur_cycle + (0xFFFFFFFF - prev_cycle);
- }
-
- if (data == NULL)
- printf(" tsf update ata point er is null \n");
-
- memcpy(&prev_tsf, &cur_tsf, sizeof(tsf_t));
- memcpy(&cur_tsf, data, sizeof(tsf_t));
-
- if (cur_tsf.low == 0) {
- DHD_INFO((" ---- 0 TSF, do not update, return\n"));
- return;
- }
-
- if (cur_tsf.low > prev_tsf.low)
- tsf_delta = (cur_tsf.low - prev_tsf.low);
- else {
- DHD_INFO((" ---- tsf low is smaller cur_tsf= %08X, prev_tsf=%08X, \n",
- cur_tsf.low, prev_tsf.low));
- if (cur_tsf.high > prev_tsf.high) {
- tsf_delta = cur_tsf.low + (0xFFFFFFFF - prev_tsf.low);
- DHD_INFO((" ---- Wrap around tsf coutner adjusted TSF=%08X\n", tsf_delta));
- } else {
- return; /* do not update */
- }
- }
-
- if (tsf_delta) {
- hfactor = cyc_delta / tsf_delta;
- tmp = (cyc_delta - (hfactor * tsf_delta))*10;
- dec1 = tmp/tsf_delta;
- dec2 = ((tmp - dec1*tsf_delta)*10) / tsf_delta;
- tmp = (tmp - (dec1*tsf_delta))*10;
- dec3 = ((tmp - dec2*tsf_delta)*10) / tsf_delta;
-
- if (dec3 > 4) {
- if (dec2 == 9) {
- dec2 = 0;
- if (dec1 == 9) {
- dec1 = 0;
- hfactor++;
- } else {
- dec1++;
- }
- } else {
- dec2++;
- }
- }
- }
-
- if (hfactor) {
- htsf = ((cyc_delta * 10) / (hfactor*10+dec1)) + prev_tsf.low;
- dhd->htsf.coef = hfactor;
- dhd->htsf.last_cycle = cur_cycle;
- dhd->htsf.last_tsf = cur_tsf.low;
- dhd->htsf.coefdec1 = dec1;
- dhd->htsf.coefdec2 = dec2;
- } else {
- htsf = prev_tsf.low;
- }
-}
-
-#endif /* WLMEDIA_HTSF */
#ifdef CUSTOM_SET_CPUCORE
void dhd_set_cpucore(dhd_pub_t *dhd, int set)
@@ -13636,7 +17265,7 @@
} while (e_rxf < 0);
}
#ifdef DHD_OF_SUPPORT
- interrupt_set_cpucore(set);
+ interrupt_set_cpucore(set, DPC_CPUCORE, PRIMARY_CPUCORE);
#endif /* DHD_OF_SUPPORT */
DHD_TRACE(("%s: set(%d) cpucore success!\n", __FUNCTION__, set));
@@ -13707,60 +17336,184 @@
return 0;
}
-#ifdef DHD_FW_COREDUMP
+#ifdef DHD_RND_DEBUG
+#ifdef CUSTOMER_HW4_DEBUG
+#define RNDINFO PLATFORM_PATH".rnd"
+#elif defined(CUSTOMER_HW2) || defined(BOARD_HIKEY)
+#define RNDINFO "/data/misc/wifi/.rnd"
+#elif defined(OEM_ANDROID) && (defined(BOARD_PANDA) || defined(__ARM_ARCH_7A__))
+#define RNDINFO "/data/misc/wifi/.rnd"
+#elif defined(OEM_ANDROID)
+#define RNDINFO_LIVE "/installmedia/.rnd"
+#define RNDINFO_INST "/data/.rnd"
+#define RNDINFO RNDINFO_LIVE
+#else /* FC19 and Others */
+#define RNDINFO "/root/.rnd"
+#endif /* CUSTOMER_HW4_DEBUG */
-/*
- * dhd_get_memdump_info is defined only for Android builds.
- * The filename to store memdump is defined for CUSTOMER_HW4,
- * for other platforms it will take default path "/installmedia/.memdump.info"
- * New platforms can add their ifdefs accordingly below.
- */
-#define MEMDUMPINFO "/installmedia/.memdump.info"
+#define RND_IN RNDINFO".in"
+#define RND_OUT RNDINFO".out"
-void dhd_get_memdump_info(dhd_pub_t *dhd)
+int
+dhd_get_rnd_info(dhd_pub_t *dhd)
{
struct file *fp = NULL;
- uint32 mem_val = DUMP_MEMFILE_MAX;
- int ret = 0;
- char *filepath = MEMDUMPINFO;
+ int ret = BCME_ERROR;
+ char *filepath = RND_IN;
+ uint32 file_mode = O_RDONLY;
+#if defined(KERNEL_DS) && defined(USER_DS)
+ mm_segment_t old_fs;
+#endif /* KERNEL_DS && USER_DS */
+ loff_t pos = 0;
/* Read memdump info from the file */
- fp = filp_open(filepath, O_RDONLY, 0);
+ fp = filp_open(filepath, file_mode, 0);
if (IS_ERR(fp)) {
- DHD_ERROR(("[WIFI_SEC] %s: File [%s] doesn't exist\n", __FUNCTION__, filepath));
- goto done;
- } else {
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 14, 0))
- loff_t zero = 0;
- ret = kernel_read(fp, (void *) &mem_val, (size_t) 4, (loff_t *) &zero);
-#else
- ret = kernel_read(fp, 0, (char *)&mem_val, 4);
-#endif
- if (ret < 0) {
- DHD_ERROR(("[WIFI_SEC] %s: File read error, ret=%d\n", __FUNCTION__, ret));
- filp_close(fp, NULL);
- goto done;
+ DHD_ERROR(("%s: File [%s] doesn't exist\n", __FUNCTION__, filepath));
+#if defined(CONFIG_X86) && defined(OEM_ANDROID)
+ /* Check if it is Live Brix Image */
+ if (bcmstrstr(filepath, RNDINFO_LIVE)) {
+ goto err1;
}
-
- mem_val = bcm_atoi((char *)&mem_val);
-
- DHD_ERROR(("[WIFI_SEC]%s: MEMDUMP ENABLED = %d\n", __FUNCTION__, mem_val));
- filp_close(fp, NULL);
+ /* Try if it is Installed Brix Image */
+ filepath = RNDINFO_INST".in";
+ DHD_ERROR(("%s: Try File [%s]\n", __FUNCTION__, filepath));
+ fp = filp_open(filepath, file_mode, 0);
+ if (IS_ERR(fp)) {
+ DHD_ERROR(("%s: File [%s] doesn't exist\n", __FUNCTION__, filepath));
+ goto err1;
+ }
+#else /* Non Brix Android platform */
+ goto err1;
+#endif /* CONFIG_X86 && OEM_ANDROID */
}
-done:
- /*
- * The default behavior for Customer_hw4 is to disable the memdump
- * But for Brix Android, default behavior is to collect memdump and crash the host.
- * Other platforms can change the behavior accordingly by adding appropriate ifdefs
- */
- dhd->memdump_enabled = (mem_val < DUMP_MEMFILE_MAX) ? mem_val : DUMP_MEMFILE_BUGON;
+#if defined(KERNEL_DS) && defined(USER_DS)
+ old_fs = get_fs();
+ set_fs(KERNEL_DS);
+#endif /* KERNEL_DS && USER_DS */
+
+ /* Handle success case */
+ ret = vfs_read(fp, (char *)&dhd->rnd_len, sizeof(dhd->rnd_len), &pos);
+ if (ret < 0) {
+ DHD_ERROR(("%s: rnd_len read error, ret=%d\n", __FUNCTION__, ret));
+ goto err2;
+ }
+
+ dhd->rnd_buf = MALLOCZ(dhd->osh, dhd->rnd_len);
+ if (!dhd->rnd_buf) {
+ DHD_ERROR(("%s: MALLOC failed\n", __FUNCTION__));
+ goto err2;
+ }
+
+ ret = vfs_read(fp, (char *)dhd->rnd_buf, dhd->rnd_len, &pos);
+ if (ret < 0) {
+ DHD_ERROR(("%s: rnd_buf read error, ret=%d\n", __FUNCTION__, ret));
+ goto err3;
+ }
+
+#if defined(KERNEL_DS) && defined(USER_DS)
+ set_fs(old_fs);
+#endif /* KERNEL_DS && USER_DS */
+ filp_close(fp, NULL);
+
+ DHD_ERROR(("%s: RND read from %s\n", __FUNCTION__, filepath));
+ return BCME_OK;
+
+err3:
+ MFREE(dhd->osh, dhd->rnd_buf, dhd->rnd_len);
+ dhd->rnd_buf = NULL;
+err2:
+#if defined(KERNEL_DS) && defined(USER_DS)
+ set_fs(old_fs);
+#endif /* KERNEL_DS && USER_DS */
+ filp_close(fp, NULL);
+err1:
+ return BCME_ERROR;
}
+int
+dhd_dump_rnd_info(dhd_pub_t *dhd, uint8 *rnd_buf, uint32 rnd_len)
+{
+ struct file *fp = NULL;
+ int ret = BCME_OK;
+ char *filepath = RND_OUT;
+ uint32 file_mode = O_CREAT | O_WRONLY | O_SYNC;
+#if defined(KERNEL_DS) && defined(USER_DS)
+ mm_segment_t old_fs;
+#endif /* KERNEL_DS && USER_DS */
+ loff_t pos = 0;
+
+ /* Read memdump info from the file */
+ fp = filp_open(filepath, file_mode, 0664);
+ if (IS_ERR(fp)) {
+ DHD_ERROR(("%s: File [%s] doesn't exist\n", __FUNCTION__, filepath));
+#if defined(CONFIG_X86) && defined(OEM_ANDROID)
+ /* Check if it is Live Brix Image */
+ if (bcmstrstr(filepath, RNDINFO_LIVE)) {
+ goto err1;
+ }
+ /* Try if it is Installed Brix Image */
+ filepath = RNDINFO_INST".out";
+ DHD_ERROR(("%s: Try File [%s]\n", __FUNCTION__, filepath));
+ fp = filp_open(filepath, file_mode, 0664);
+ if (IS_ERR(fp)) {
+ DHD_ERROR(("%s: File [%s] doesn't exist\n", __FUNCTION__, filepath));
+ goto err1;
+ }
+#else /* Non Brix Android platform */
+ goto err1;
+#endif /* CONFIG_X86 && OEM_ANDROID */
+ }
+
+#if defined(KERNEL_DS) && defined(USER_DS)
+ old_fs = get_fs();
+ set_fs(KERNEL_DS);
+#endif /* KERNEL_DS && USER_DS */
+
+ /* Handle success case */
+ ret = vfs_write(fp, (char *)&rnd_len, sizeof(rnd_len), &pos);
+ if (ret < 0) {
+ DHD_ERROR(("%s: rnd_len write error, ret=%d\n", __FUNCTION__, ret));
+ goto err2;
+ }
+
+ ret = vfs_write(fp, (char *)rnd_buf, rnd_len, &pos);
+ if (ret < 0) {
+ DHD_ERROR(("%s: rnd_buf write error, ret=%d\n", __FUNCTION__, ret));
+ goto err2;
+ }
+
+#if defined(KERNEL_DS) && defined(USER_DS)
+ set_fs(old_fs);
+#endif /* KERNEL_DS && USER_DS */
+ filp_close(fp, NULL);
+ DHD_ERROR(("%s: RND written to %s\n", __FUNCTION__, filepath));
+ return BCME_OK;
+
+err2:
+#if defined(KERNEL_DS) && defined(USER_DS)
+ set_fs(old_fs);
+#endif /* KERNEL_DS && USER_DS */
+ filp_close(fp, NULL);
+err1:
+ return BCME_ERROR;
+
+}
+#endif /* DHD_RND_DEBUG */
+
+#ifdef DHD_FW_COREDUMP
void dhd_schedule_memdump(dhd_pub_t *dhdp, uint8 *buf, uint32 size)
{
+ unsigned long flags = 0;
dhd_dump_t *dump = NULL;
+ dhd_info_t *dhd_info = NULL;
+#if !defined(DHD_DUMP_FILE_WRITE_FROM_KERNEL)
+ log_dump_type_t type = DLD_BUF_TYPE_ALL;
+#endif /* !DHD_DUMP_FILE_WRITE_FROM_KERNEL */
+
+ dhd_info = (dhd_info_t *)dhdp->info;
dump = (dhd_dump_t *)MALLOC(dhdp->osh, sizeof(dhd_dump_t));
if (dump == NULL) {
DHD_ERROR(("%s: dhd dump memory allocation failed\n", __FUNCTION__));
@@ -13768,27 +17521,1794 @@
}
dump->buf = buf;
dump->bufsize = size;
+#ifdef BCMPCIE
+ dhd_get_hscb_info(dhdp, (void*)(&dump->hscb_buf),
+ (uint32 *)(&dump->hscb_bufsize));
+#else /* BCMPCIE */
+ dump->hscb_bufsize = 0;
+#endif /* BCMPCIE */
-#if defined(CONFIG_ARM64)
- DHD_ERROR(("%s: buf(va)=%llx, buf(pa)=%llx, bufsize=%d\n", __FUNCTION__,
- (uint64)buf, (uint64)__virt_to_phys((ulong)buf), size));
-#elif defined(__ARM_ARCH_7A__)
- DHD_ERROR(("%s: buf(va)=%x, buf(pa)=%x, bufsize=%d\n", __FUNCTION__,
- (uint32)buf, (uint32)__virt_to_phys((ulong)buf), size));
-#endif /* __ARM_ARCH_7A__ */
- if (dhdp->memdump_enabled == DUMP_MEMONLY) {
+#ifdef DHD_LOG_DUMP
+ dhd_print_buf_addr(dhdp, "memdump", buf, size);
+#if !defined(DHD_DUMP_FILE_WRITE_FROM_KERNEL)
+ /* Print out buffer infomation */
+ dhd_log_dump_buf_addr(dhdp, &type);
+#endif /* !DHD_DUMP_FILE_WRITE_FROM_KERNEL */
+#endif /* DHD_LOG_DUMP */
+
+ if (dhdp->memdump_enabled == DUMP_MEMONLY && (!disable_bug_on)) {
BUG_ON(1);
}
+#if defined(DEBUG_DNGL_INIT_FAIL) || defined(DHD_ERPOM) || \
+ defined(DNGL_AXI_ERROR_LOGGING)
+ if (
+#if defined(DEBUG_DNGL_INIT_FAIL)
+ (dhdp->memdump_type == DUMP_TYPE_DONGLE_INIT_FAILURE) ||
+#endif /* DEBUG_DNGL_INIT_FAIL */
+#ifdef DHD_ERPOM
+ (dhdp->memdump_type == DUMP_TYPE_DUE_TO_BT) ||
+#endif /* DHD_ERPOM */
+#ifdef DNGL_AXI_ERROR_LOGGING
+ (dhdp->memdump_type == DUMP_TYPE_SMMU_FAULT) ||
+#endif /* DNGL_AXI_ERROR_LOGGING */
+ FALSE)
+ {
+#if defined(DHD_DUMP_FILE_WRITE_FROM_KERNEL) && defined(DHD_LOG_DUMP)
+ log_dump_type_t *flush_type = NULL;
+#endif /* DHD_DUMP_FILE_WRITE_FROM_KERNEL && DHD_LOG_DUMP */
+ dhd_info->scheduled_memdump = FALSE;
+ dhd_mem_dump((void *)dhdp->info, (void *)dump, 0);
+#if defined(DHD_DUMP_FILE_WRITE_FROM_KERNEL) && defined(DHD_LOG_DUMP)
+ /* for dongle init fail cases, 'dhd_mem_dump' does
+ * not call 'dhd_log_dump', so call it here.
+ */
+ flush_type = MALLOCZ(dhdp->osh,
+ sizeof(log_dump_type_t));
+ if (flush_type) {
+ *flush_type = DLD_BUF_TYPE_ALL;
+ DHD_ERROR(("%s: calling log dump.. \n", __FUNCTION__));
+ dhd_log_dump(dhdp->info, flush_type, 0);
+ }
+#endif /* DHD_DUMP_FILE_WRITE_FROM_KERNEL && DHD_LOG_DUMP */
+ return;
+ }
+#endif /* DEBUG_DNGL_INIT_FAIL || DHD_ERPOM || DNGL_AXI_ERROR_LOGGING */
+
+ dhd_info->scheduled_memdump = TRUE;
+ /* bus busy bit for mem dump will be cleared in mem dump
+ * work item context, after mem dump file is written
+ */
+ DHD_GENERAL_LOCK(dhdp, flags);
+ DHD_BUS_BUSY_SET_IN_MEMDUMP(dhdp);
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+ DHD_ERROR(("%s: scheduling mem dump.. \n", __FUNCTION__));
dhd_deferred_schedule_work(dhdp->info->dhd_deferred_wq, (void *)dump,
- DHD_WQ_WORK_SOC_RAM_DUMP, dhd_mem_dump, DHD_WORK_PRIORITY_HIGH);
+ DHD_WQ_WORK_SOC_RAM_DUMP, dhd_mem_dump, DHD_WQ_WORK_PRIORITY_HIGH);
+}
+static void
+dhd_mem_dump(void *handle, void *event_info, u8 event)
+{
+ dhd_info_t *dhd = handle;
+ dhd_pub_t *dhdp = NULL;
+ unsigned long flags = 0;
+ int ret = 0;
+ dhd_dump_t *dump = NULL;
+
+ DHD_ERROR(("%s: ENTER, memdump type %u\n", __FUNCTION__, dhd->pub.memdump_type));
+
+ if (!dhd) {
+ DHD_ERROR(("%s: dhd is NULL\n", __FUNCTION__));
+ return;
+ }
+
+ dhdp = &dhd->pub;
+ if (!dhdp) {
+ DHD_ERROR(("%s: dhdp is NULL\n", __FUNCTION__));
+ return;
+ }
+
+ DHD_GENERAL_LOCK(dhdp, flags);
+ if (DHD_BUS_CHECK_DOWN_OR_DOWN_IN_PROGRESS(dhdp)) {
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+ DHD_ERROR(("%s: bus is down! can't collect mem dump. \n", __FUNCTION__));
+ ret = -ENODEV;
+ goto exit;
+ }
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+
+#ifdef DHD_SSSR_DUMP
+ if (dhdp->sssr_inited && dhdp->collect_sssr) {
+ dhdpcie_sssr_dump(dhdp);
+ }
+ dhdp->collect_sssr = FALSE;
+#endif /* DHD_SSSR_DUMP */
+#if defined(WL_CFG80211) && defined(DHD_FILE_DUMP_EVENT)
+ dhd_wait_for_file_dump(dhdp);
+#endif /* WL_CFG80211 && DHD_FILE_DUMP_EVENT */
+
+ dump = (dhd_dump_t *)event_info;
+ if (!dump) {
+ DHD_ERROR(("%s: dump is NULL\n", __FUNCTION__));
+ ret = -EINVAL;
+ goto exit;
+ }
+
+ /*
+ * If kernel does not have file write access enabled
+ * then skip writing dumps to files.
+ * The dumps will be pushed to HAL layer which will
+ * write into files
+ */
+#ifdef DHD_DUMP_FILE_WRITE_FROM_KERNEL
+
+ if (write_dump_to_file(&dhd->pub, dump->buf, dump->bufsize, "mem_dump")) {
+ DHD_ERROR(("%s: writing SoC_RAM dump to the file failed\n", __FUNCTION__));
+#ifdef DHD_DEBUG_UART
+ dhd->pub.memdump_success = FALSE;
+#endif /* DHD_DEBUG_UART */
+ }
+
+ /* directly call dhd_log_dump for debug_dump collection from the mem_dump work queue
+ * context, no need to schedule another work queue for log dump. In case of
+ * user initiated DEBUG_DUMP wpa_cli command (DUMP_TYPE_BY_SYSDUMP),
+ * cfg layer is itself scheduling the log_dump work queue.
+ * that path is not disturbed. If 'dhd_mem_dump' is called directly then we will not
+ * collect debug_dump as it may be called from non-sleepable context.
+ */
+#ifdef DHD_LOG_DUMP
+ if (dhd->scheduled_memdump &&
+ dhdp->memdump_type != DUMP_TYPE_BY_SYSDUMP) {
+ log_dump_type_t *flush_type = MALLOCZ(dhdp->osh,
+ sizeof(log_dump_type_t));
+ if (flush_type) {
+ *flush_type = DLD_BUF_TYPE_ALL;
+ DHD_ERROR(("%s: calling log dump.. \n", __FUNCTION__));
+ dhd_log_dump(dhd, flush_type, 0);
+ }
+ }
+#endif /* DHD_LOG_DUMP */
+
+#ifdef DHD_PKT_LOGGING
+ copy_debug_dump_time(dhdp->debug_dump_time_pktlog_str, dhdp->debug_dump_time_str);
+#endif /* DHD_PKT_LOGGING */
+ clear_debug_dump_time(dhdp->debug_dump_time_str);
+
+ /* before calling bug on, wait for other logs to be dumped.
+ * we cannot wait in case dhd_mem_dump is called directly
+ * as it may not be in a sleepable context
+ */
+ if (dhd->scheduled_memdump) {
+ uint bitmask = 0;
+ int timeleft = 0;
+#ifdef DHD_SSSR_DUMP
+ bitmask |= DHD_BUS_BUSY_IN_SSSRDUMP;
+#endif // endif
+ if (bitmask != 0) {
+ DHD_ERROR(("%s: wait to clear dhd_bus_busy_state: 0x%x\n",
+ __FUNCTION__, dhdp->dhd_bus_busy_state));
+ timeleft = dhd_os_busbusy_wait_bitmask(dhdp,
+ &dhdp->dhd_bus_busy_state, bitmask, 0);
+ if ((timeleft == 0) || (timeleft == 1)) {
+ DHD_ERROR(("%s: Timed out dhd_bus_busy_state=0x%x\n",
+ __FUNCTION__, dhdp->dhd_bus_busy_state));
+ }
+ }
+ }
+
+ if (dump->hscb_buf && dump->hscb_bufsize) {
+ DHD_ERROR(("%s: write HSCB dump... \n", __FUNCTION__));
+ if (write_dump_to_file(&dhd->pub, dump->hscb_buf,
+ dump->hscb_bufsize, "mem_dump_hscb")) {
+ DHD_ERROR(("%s: writing HSCB dump to the file failed\n", __FUNCTION__));
+#ifdef DHD_DEBUG_UART
+ dhd->pub.memdump_success = FALSE;
+#endif /* DHD_DEBUG_UART */
+ }
+ }
+#endif /* DHD_DUMP_FILE_WRITE_FROM_KERNEL */
+
+ DHD_ERROR(("%s: memdump type %u\n", __FUNCTION__, dhd->pub.memdump_type));
+ if (dhd->pub.memdump_enabled == DUMP_MEMFILE_BUGON &&
+#ifdef DHD_LOG_DUMP
+ dhd->pub.memdump_type != DUMP_TYPE_BY_SYSDUMP &&
+#endif /* DHD_LOG_DUMP */
+ dhd->pub.memdump_type != DUMP_TYPE_BY_USER &&
+#ifdef DHD_DEBUG_UART
+ dhd->pub.memdump_success == TRUE &&
+#endif /* DHD_DEBUG_UART */
+#ifdef DNGL_EVENT_SUPPORT
+ dhd->pub.memdump_type != DUMP_TYPE_DONGLE_HOST_EVENT &&
+#endif /* DNGL_EVENT_SUPPORT */
+ dhd->pub.memdump_type != DUMP_TYPE_CFG_VENDOR_TRIGGERED) {
+
+#ifdef SHOW_LOGTRACE
+ /* Wait till logtrace context is flushed */
+ dhd_flush_logtrace_process(dhd);
+#endif /* SHOW_LOGTRACE */
+
+ DHD_ERROR(("%s: call BUG_ON \n", __FUNCTION__));
+ if (!disable_bug_on) {
+ BUG_ON(1);
+ }
+ }
+ DHD_ERROR(("%s: No BUG ON, memdump type %u \n", __FUNCTION__, dhd->pub.memdump_type));
+
+exit:
+ if (dump) {
+ MFREE(dhd->pub.osh, dump, sizeof(dhd_dump_t));
+ }
+ DHD_GENERAL_LOCK(dhdp, flags);
+ DHD_BUS_BUSY_CLEAR_IN_MEMDUMP(&dhd->pub);
+ dhd_os_busbusy_wake(dhdp);
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+ dhd->scheduled_memdump = FALSE;
+#ifdef OEM_ANDROID
+ if (dhdp->hang_was_pending) {
+ DHD_ERROR(("%s: Send pending HANG event...\n", __FUNCTION__));
+ dhd_os_send_hang_message(dhdp);
+ dhdp->hang_was_pending = 0;
+ }
+#endif /* OEM_ANDROID */
+ DHD_ERROR(("%s: EXIT %d\n", __FUNCTION__, ret));
+ return;
+}
+#endif /* DHD_FW_COREDUMP */
+
+#ifdef DHD_SSSR_DUMP
+int
+dhd_sssr_dump_dig_buf_before(void *dev, const void *user_buf, uint32 len)
+{
+ dhd_info_t *dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhd_pub_t *dhdp = &dhd_info->pub;
+ int pos = 0, ret = BCME_ERROR;
+ uint dig_buf_size = 0;
+
+ if (dhdp->sssr_reg_info.vasip_regs.vasip_sr_size) {
+ dig_buf_size = dhdp->sssr_reg_info.vasip_regs.vasip_sr_size;
+ } else if ((dhdp->sssr_reg_info.length > OFFSETOF(sssr_reg_info_v1_t, dig_mem_info)) &&
+ dhdp->sssr_reg_info.dig_mem_info.dig_sr_size) {
+ dig_buf_size = dhdp->sssr_reg_info.dig_mem_info.dig_sr_size;
+ }
+
+ if (dhdp->sssr_dig_buf_before && (dhdp->sssr_dump_mode == SSSR_DUMP_MODE_SSSR)) {
+ ret = dhd_export_debug_data((char *)dhdp->sssr_dig_buf_before,
+ NULL, user_buf, dig_buf_size, &pos);
+ }
+ return ret;
}
-int dhd_os_socram_dump(struct net_device *dev, uint32 *dump_size)
+int
+dhd_sssr_dump_dig_buf_after(void *dev, const void *user_buf, uint32 len)
+{
+ dhd_info_t *dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhd_pub_t *dhdp = &dhd_info->pub;
+ int pos = 0, ret = BCME_ERROR;
+ uint dig_buf_size = 0;
+
+ if (dhdp->sssr_reg_info.vasip_regs.vasip_sr_size) {
+ dig_buf_size = dhdp->sssr_reg_info.vasip_regs.vasip_sr_size;
+ } else if ((dhdp->sssr_reg_info.length > OFFSETOF(sssr_reg_info_v1_t, dig_mem_info)) &&
+ dhdp->sssr_reg_info.dig_mem_info.dig_sr_size) {
+ dig_buf_size = dhdp->sssr_reg_info.dig_mem_info.dig_sr_size;
+ }
+
+ if (dhdp->sssr_dig_buf_after) {
+ ret = dhd_export_debug_data((char *)dhdp->sssr_dig_buf_after,
+ NULL, user_buf, dig_buf_size, &pos);
+ }
+ return ret;
+}
+
+int
+dhd_sssr_dump_d11_buf_before(void *dev, const void *user_buf, uint32 len, int core)
+{
+ dhd_info_t *dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhd_pub_t *dhdp = &dhd_info->pub;
+ int pos = 0, ret = BCME_ERROR;
+
+ if (dhdp->sssr_d11_before[core] &&
+ dhdp->sssr_d11_outofreset[core] &&
+ (dhdp->sssr_dump_mode == SSSR_DUMP_MODE_SSSR)) {
+ ret = dhd_export_debug_data((char *)dhdp->sssr_d11_before[core],
+ NULL, user_buf, len, &pos);
+ }
+ return ret;
+}
+
+int
+dhd_sssr_dump_d11_buf_after(void *dev, const void *user_buf, uint32 len, int core)
+{
+ dhd_info_t *dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhd_pub_t *dhdp = &dhd_info->pub;
+ int pos = 0, ret = BCME_ERROR;
+
+ if (dhdp->sssr_d11_after[core] &&
+ dhdp->sssr_d11_outofreset[core]) {
+ ret = dhd_export_debug_data((char *)dhdp->sssr_d11_after[core],
+ NULL, user_buf, len, &pos);
+ }
+ return ret;
+}
+
+static void
+dhd_sssr_dump_to_file(dhd_info_t* dhdinfo)
+{
+ dhd_info_t *dhd = dhdinfo;
+ dhd_pub_t *dhdp;
+ int i;
+ char before_sr_dump[128];
+ char after_sr_dump[128];
+ unsigned long flags = 0;
+ uint dig_buf_size = 0;
+
+ DHD_ERROR(("%s: ENTER \n", __FUNCTION__));
+
+ if (!dhd) {
+ DHD_ERROR(("%s: dhd is NULL\n", __FUNCTION__));
+ return;
+ }
+
+ dhdp = &dhd->pub;
+
+ DHD_GENERAL_LOCK(dhdp, flags);
+ DHD_BUS_BUSY_SET_IN_SSSRDUMP(dhdp);
+ if (DHD_BUS_CHECK_DOWN_OR_DOWN_IN_PROGRESS(dhdp)) {
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+ DHD_ERROR(("%s: bus is down! can't collect sssr dump. \n", __FUNCTION__));
+ goto exit;
+ }
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+
+ for (i = 0; i < MAX_NUM_D11CORES; i++) {
+ /* Init file name */
+ memset(before_sr_dump, 0, sizeof(before_sr_dump));
+ memset(after_sr_dump, 0, sizeof(after_sr_dump));
+
+ snprintf(before_sr_dump, sizeof(before_sr_dump), "%s_%d_%s",
+ "sssr_dump_core", i, "before_SR");
+ snprintf(after_sr_dump, sizeof(after_sr_dump), "%s_%d_%s",
+ "sssr_dump_core", i, "after_SR");
+
+ if (dhdp->sssr_d11_before[i] && dhdp->sssr_d11_outofreset[i] &&
+ (dhdp->sssr_dump_mode == SSSR_DUMP_MODE_SSSR)) {
+ if (write_dump_to_file(dhdp, (uint8 *)dhdp->sssr_d11_before[i],
+ dhdp->sssr_reg_info.mac_regs[i].sr_size, before_sr_dump)) {
+ DHD_ERROR(("%s: writing SSSR MAIN dump before to the file failed\n",
+ __FUNCTION__));
+ }
+ }
+ if (dhdp->sssr_d11_after[i] && dhdp->sssr_d11_outofreset[i]) {
+ if (write_dump_to_file(dhdp, (uint8 *)dhdp->sssr_d11_after[i],
+ dhdp->sssr_reg_info.mac_regs[i].sr_size, after_sr_dump)) {
+ DHD_ERROR(("%s: writing SSSR AUX dump after to the file failed\n",
+ __FUNCTION__));
+ }
+ }
+ }
+
+ if (dhdp->sssr_reg_info.vasip_regs.vasip_sr_size) {
+ dig_buf_size = dhdp->sssr_reg_info.vasip_regs.vasip_sr_size;
+ } else if ((dhdp->sssr_reg_info.length > OFFSETOF(sssr_reg_info_v1_t, dig_mem_info)) &&
+ dhdp->sssr_reg_info.dig_mem_info.dig_sr_size) {
+ dig_buf_size = dhdp->sssr_reg_info.dig_mem_info.dig_sr_size;
+ }
+
+ if (dhdp->sssr_dig_buf_before && (dhdp->sssr_dump_mode == SSSR_DUMP_MODE_SSSR)) {
+ if (write_dump_to_file(dhdp, (uint8 *)dhdp->sssr_dig_buf_before,
+ dig_buf_size, "sssr_dump_dig_before_SR")) {
+ DHD_ERROR(("%s: writing SSSR Dig dump before to the file failed\n",
+ __FUNCTION__));
+ }
+ }
+
+ if (dhdp->sssr_dig_buf_after) {
+ if (write_dump_to_file(dhdp, (uint8 *)dhdp->sssr_dig_buf_after,
+ dig_buf_size, "sssr_dump_dig_after_SR")) {
+ DHD_ERROR(("%s: writing SSSR Dig VASIP dump after to the file failed\n",
+ __FUNCTION__));
+ }
+ }
+
+exit:
+ DHD_GENERAL_LOCK(dhdp, flags);
+ DHD_BUS_BUSY_CLEAR_IN_SSSRDUMP(dhdp);
+ dhd_os_busbusy_wake(dhdp);
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+}
+
+void
+dhd_write_sssr_dump(dhd_pub_t *dhdp, uint32 dump_mode)
+{
+ dhdp->sssr_dump_mode = dump_mode;
+
+ /*
+ * If kernel does not have file write access enabled
+ * then skip writing dumps to files.
+ * The dumps will be pushed to HAL layer which will
+ * write into files
+ */
+#if !defined(DHD_DUMP_FILE_WRITE_FROM_KERNEL)
+ return;
+#endif /* !DHD_DUMP_FILE_WRITE_FROM_KERNEL */
+
+ /*
+ * dhd_mem_dump -> dhd_sssr_dump -> dhd_write_sssr_dump
+ * Without workqueue -
+ * DUMP_TYPE_DONGLE_INIT_FAILURE/DUMP_TYPE_DUE_TO_BT/DUMP_TYPE_SMMU_FAULT
+ * : These are called in own handler, not in the interrupt context
+ * With workqueue - all other DUMP_TYPEs : dhd_mem_dump is called in workqueue
+ * Thus, it doesn't neeed to dump SSSR in workqueue
+ */
+ DHD_ERROR(("%s: writing sssr dump to file... \n", __FUNCTION__));
+ dhd_sssr_dump_to_file(dhdp->info);
+
+}
+#endif /* DHD_SSSR_DUMP */
+
+#ifdef DHD_LOG_DUMP
+static void
+dhd_log_dump(void *handle, void *event_info, u8 event)
+{
+ dhd_info_t *dhd = handle;
+ log_dump_type_t *type = (log_dump_type_t *)event_info;
+
+ if (!dhd || !type) {
+ DHD_ERROR(("%s: dhd is NULL\n", __FUNCTION__));
+ return;
+ }
+
+#ifdef WL_CFG80211
+ /* flush the fw side logs */
+ wl_flush_fw_log_buffer(dhd_linux_get_primary_netdev(&dhd->pub),
+ FW_LOGSET_MASK_ALL);
+#endif // endif
+ /* there are currently 3 possible contexts from which
+ * log dump can be scheduled -
+ * 1.TRAP 2.supplicant DEBUG_DUMP pvt driver command
+ * 3.HEALTH CHECK event
+ * The concise debug info buffer is a shared resource
+ * and in case a trap is one of the contexts then both the
+ * scheduled work queues need to run because trap data is
+ * essential for debugging. Hence a mutex lock is acquired
+ * before calling do_dhd_log_dump().
+ */
+ DHD_ERROR(("%s: calling log dump.. \n", __FUNCTION__));
+ dhd_os_logdump_lock(&dhd->pub);
+ DHD_OS_WAKE_LOCK(&dhd->pub);
+ if (do_dhd_log_dump(&dhd->pub, type) != BCME_OK) {
+ DHD_ERROR(("%s: writing debug dump to the file failed\n", __FUNCTION__));
+ }
+ DHD_OS_WAKE_UNLOCK(&dhd->pub);
+ dhd_os_logdump_unlock(&dhd->pub);
+}
+
+void dhd_schedule_log_dump(dhd_pub_t *dhdp, void *type)
+{
+ DHD_ERROR(("%s: scheduling log dump.. \n", __FUNCTION__));
+ dhd_deferred_schedule_work(dhdp->info->dhd_deferred_wq,
+ type, DHD_WQ_WORK_DHD_LOG_DUMP,
+ dhd_log_dump, DHD_WQ_WORK_PRIORITY_HIGH);
+}
+
+static void
+dhd_print_buf_addr(dhd_pub_t *dhdp, char *name, void *buf, unsigned int size)
+{
+ if ((dhdp->memdump_enabled == DUMP_MEMONLY) ||
+ (dhdp->memdump_enabled == DUMP_MEMFILE_BUGON) ||
+ (dhdp->memdump_type == DUMP_TYPE_SMMU_FAULT)) {
+#if defined(CONFIG_ARM64)
+ DHD_ERROR(("-------- %s: buf(va)=%llx, buf(pa)=%llx, bufsize=%d\n",
+ name, (uint64)buf, (uint64)__virt_to_phys((ulong)buf), size));
+#elif defined(__ARM_ARCH_7A__)
+ DHD_ERROR(("-------- %s: buf(va)=%x, buf(pa)=%x, bufsize=%d\n",
+ name, (uint32)buf, (uint32)__virt_to_phys((ulong)buf), size));
+#endif /* __ARM_ARCH_7A__ */
+ }
+}
+
+static void
+dhd_log_dump_buf_addr(dhd_pub_t *dhdp, log_dump_type_t *type)
+{
+ int i;
+ unsigned long wr_size = 0;
+ struct dhd_log_dump_buf *dld_buf = &g_dld_buf[0];
+ size_t log_size = 0;
+ char buf_name[DHD_PRINT_BUF_NAME_LEN];
+ dhd_dbg_ring_t *ring = NULL;
+
+ BCM_REFERENCE(ring);
+
+ for (i = 0; i < DLD_BUFFER_NUM; i++) {
+ dld_buf = &g_dld_buf[i];
+ log_size = (unsigned long)dld_buf->max -
+ (unsigned long)dld_buf->buffer;
+ if (dld_buf->wraparound) {
+ wr_size = log_size;
+ } else {
+ wr_size = (unsigned long)dld_buf->present -
+ (unsigned long)dld_buf->front;
+ }
+ scnprintf(buf_name, sizeof(buf_name), "dlb_buf[%d]", i);
+ dhd_print_buf_addr(dhdp, buf_name, dld_buf, dld_buf_size[i]);
+ scnprintf(buf_name, sizeof(buf_name), "dlb_buf[%d] buffer", i);
+ dhd_print_buf_addr(dhdp, buf_name, dld_buf->buffer, wr_size);
+ scnprintf(buf_name, sizeof(buf_name), "dlb_buf[%d] present", i);
+ dhd_print_buf_addr(dhdp, buf_name, dld_buf->present, wr_size);
+ scnprintf(buf_name, sizeof(buf_name), "dlb_buf[%d] front", i);
+ dhd_print_buf_addr(dhdp, buf_name, dld_buf->front, wr_size);
+ }
+
+#ifdef EWP_ECNTRS_LOGGING
+ /* periodic flushing of ecounters is NOT supported */
+ if (*type == DLD_BUF_TYPE_ALL &&
+ logdump_ecntr_enable &&
+ dhdp->ecntr_dbg_ring) {
+
+ ring = (dhd_dbg_ring_t *)dhdp->ecntr_dbg_ring;
+ dhd_print_buf_addr(dhdp, "ecntr_dbg_ring", ring, LOG_DUMP_ECNTRS_MAX_BUFSIZE);
+ dhd_print_buf_addr(dhdp, "ecntr_dbg_ring ring_buf", ring->ring_buf,
+ LOG_DUMP_ECNTRS_MAX_BUFSIZE);
+ }
+#endif /* EWP_ECNTRS_LOGGING */
+
+#ifdef DHD_STATUS_LOGGING
+ if (dhdp->statlog) {
+ dhd_print_buf_addr(dhdp, "statlog_logbuf", dhd_statlog_get_logbuf(dhdp),
+ dhd_statlog_get_logbuf_len(dhdp));
+ }
+#endif /* DHD_STATUS_LOGGING */
+
+#ifdef EWP_RTT_LOGGING
+ /* periodic flushing of ecounters is NOT supported */
+ if (*type == DLD_BUF_TYPE_ALL &&
+ logdump_rtt_enable &&
+ dhdp->rtt_dbg_ring) {
+
+ ring = (dhd_dbg_ring_t *)dhdp->rtt_dbg_ring;
+ dhd_print_buf_addr(dhdp, "rtt_dbg_ring", ring, LOG_DUMP_RTT_MAX_BUFSIZE);
+ dhd_print_buf_addr(dhdp, "rtt_dbg_ring ring_buf", ring->ring_buf,
+ LOG_DUMP_RTT_MAX_BUFSIZE);
+ }
+#endif /* EWP_RTT_LOGGING */
+
+#ifdef BCMPCIE
+ if (dhdp->dongle_trap_occured && dhdp->extended_trap_data) {
+ dhd_print_buf_addr(dhdp, "extended_trap_data", dhdp->extended_trap_data,
+ BCMPCIE_EXT_TRAP_DATA_MAXLEN);
+ }
+#endif /* BCMPCIE */
+
+#if defined(DHD_FW_COREDUMP) && defined(DNGL_EVENT_SUPPORT)
+ /* if health check event was received */
+ if (dhdp->memdump_type == DUMP_TYPE_DONGLE_HOST_EVENT) {
+ dhd_print_buf_addr(dhdp, "health_chk_event_data", dhdp->health_chk_event_data,
+ HEALTH_CHK_BUF_SIZE);
+ }
+#endif /* DHD_FW_COREDUMP && DNGL_EVENT_SUPPORT */
+
+ /* append the concise debug information */
+ if (dhdp->concise_dbg_buf) {
+ dhd_print_buf_addr(dhdp, "concise_dbg_buf", dhdp->concise_dbg_buf,
+ CONCISE_DUMP_BUFLEN);
+ }
+}
+
+#ifdef CUSTOMER_HW4_DEBUG
+static void
+dhd_log_dump_print_to_kmsg(char *bufptr, unsigned long len)
+{
+ char tmp_buf[DHD_LOG_DUMP_MAX_TEMP_BUFFER_SIZE + 1];
+ char *end = NULL;
+ unsigned long plen = 0;
+
+ if (!bufptr || !len)
+ return;
+
+ memset(tmp_buf, 0, DHD_LOG_DUMP_MAX_TEMP_BUFFER_SIZE);
+ end = bufptr + len;
+ while (bufptr < end) {
+ if ((bufptr + DHD_LOG_DUMP_MAX_TEMP_BUFFER_SIZE) < end) {
+ memcpy(tmp_buf, bufptr, DHD_LOG_DUMP_MAX_TEMP_BUFFER_SIZE);
+ tmp_buf[DHD_LOG_DUMP_MAX_TEMP_BUFFER_SIZE] = '\0';
+ printf("%s", tmp_buf);
+ bufptr += DHD_LOG_DUMP_MAX_TEMP_BUFFER_SIZE;
+ } else {
+ plen = (unsigned long)end - (unsigned long)bufptr;
+ memcpy(tmp_buf, bufptr, plen);
+ tmp_buf[plen] = '\0';
+ printf("%s", tmp_buf);
+ bufptr += plen;
+ }
+ }
+}
+
+static void
+dhd_log_dump_print_tail(dhd_pub_t *dhdp,
+ struct dhd_log_dump_buf *dld_buf,
+ uint tail_len)
+{
+ char *flush_ptr1 = NULL, *flush_ptr2 = NULL;
+ unsigned long len_flush1 = 0, len_flush2 = 0;
+ unsigned long flags = 0;
+
+ /* need to hold the lock before accessing 'present' and 'remain' ptrs */
+ spin_lock_irqsave(&dld_buf->lock, flags);
+ flush_ptr1 = dld_buf->present - tail_len;
+ if (flush_ptr1 >= dld_buf->front) {
+ /* tail content is within the buffer */
+ flush_ptr2 = NULL;
+ len_flush1 = tail_len;
+ } else if (dld_buf->wraparound) {
+ /* tail content spans the buffer length i.e, wrap around */
+ flush_ptr1 = dld_buf->front;
+ len_flush1 = (unsigned long)dld_buf->present - (unsigned long)flush_ptr1;
+ len_flush2 = (unsigned long)tail_len - len_flush1;
+ flush_ptr2 = (char *)((unsigned long)dld_buf->max -
+ (unsigned long)len_flush2);
+ } else {
+ /* amt of logs in buffer is less than tail size */
+ flush_ptr1 = dld_buf->front;
+ flush_ptr2 = NULL;
+ len_flush1 = (unsigned long)dld_buf->present - (unsigned long)dld_buf->front;
+ }
+ spin_unlock_irqrestore(&dld_buf->lock, flags);
+
+ printf("\n================= LOG_DUMP tail =================\n");
+ if (flush_ptr2) {
+ dhd_log_dump_print_to_kmsg(flush_ptr2, len_flush2);
+ }
+ dhd_log_dump_print_to_kmsg(flush_ptr1, len_flush1);
+ printf("\n===================================================\n");
+}
+#endif /* CUSTOMER_HW4_DEBUG */
+
+#ifdef DHD_SSSR_DUMP
+int
+dhdpcie_sssr_dump_get_before_after_len(dhd_pub_t *dhd, uint32 *arr_len)
+{
+ int i = 0;
+
+ DHD_ERROR(("%s\n", __FUNCTION__));
+
+ /* core 0 */
+ i = 0;
+ if (dhd->sssr_d11_before[i] && dhd->sssr_d11_outofreset[i] &&
+ (dhd->sssr_dump_mode == SSSR_DUMP_MODE_SSSR)) {
+ arr_len[SSSR_C0_D11_BEFORE] = (dhd->sssr_reg_info.mac_regs[i].sr_size);
+ DHD_ERROR(("%s: arr_len[SSSR_C0_D11_BEFORE] : %d\n", __FUNCTION__,
+ arr_len[SSSR_C0_D11_BEFORE]));
+#ifdef DHD_LOG_DUMP
+ dhd_print_buf_addr(dhd, "SSSR_C0_D11_BEFORE",
+ dhd->sssr_d11_before[i], arr_len[SSSR_C0_D11_BEFORE]);
+#endif /* DHD_LOG_DUMP */
+ }
+ if (dhd->sssr_d11_after[i] && dhd->sssr_d11_outofreset[i]) {
+ arr_len[SSSR_C0_D11_AFTER] = (dhd->sssr_reg_info.mac_regs[i].sr_size);
+ DHD_ERROR(("%s: arr_len[SSSR_C0_D11_AFTER] : %d\n", __FUNCTION__,
+ arr_len[SSSR_C0_D11_AFTER]));
+#ifdef DHD_LOG_DUMP
+ dhd_print_buf_addr(dhd, "SSSR_C0_D11_AFTER",
+ dhd->sssr_d11_after[i], arr_len[SSSR_C0_D11_AFTER]);
+#endif /* DHD_LOG_DUMP */
+ }
+
+ /* core 1 */
+ i = 1;
+ if (dhd->sssr_d11_before[i] && dhd->sssr_d11_outofreset[i] &&
+ (dhd->sssr_dump_mode == SSSR_DUMP_MODE_SSSR)) {
+ arr_len[SSSR_C1_D11_BEFORE] = (dhd->sssr_reg_info.mac_regs[i].sr_size);
+ DHD_ERROR(("%s: arr_len[SSSR_C1_D11_BEFORE] : %d\n", __FUNCTION__,
+ arr_len[SSSR_C1_D11_BEFORE]));
+#ifdef DHD_LOG_DUMP
+ dhd_print_buf_addr(dhd, "SSSR_C1_D11_BEFORE",
+ dhd->sssr_d11_before[i], arr_len[SSSR_C1_D11_BEFORE]);
+#endif /* DHD_LOG_DUMP */
+ }
+ if (dhd->sssr_d11_after[i] && dhd->sssr_d11_outofreset[i]) {
+ arr_len[SSSR_C1_D11_AFTER] = (dhd->sssr_reg_info.mac_regs[i].sr_size);
+ DHD_ERROR(("%s: arr_len[SSSR_C1_D11_AFTER] : %d\n", __FUNCTION__,
+ arr_len[SSSR_C1_D11_AFTER]));
+#ifdef DHD_LOG_DUMP
+ dhd_print_buf_addr(dhd, "SSSR_C1_D11_AFTER",
+ dhd->sssr_d11_after[i], arr_len[SSSR_C1_D11_AFTER]);
+#endif /* DHD_LOG_DUMP */
+ }
+
+ if (dhd->sssr_reg_info.vasip_regs.vasip_sr_size) {
+ arr_len[SSSR_DIG_BEFORE] = (dhd->sssr_reg_info.vasip_regs.vasip_sr_size);
+ arr_len[SSSR_DIG_AFTER] = (dhd->sssr_reg_info.vasip_regs.vasip_sr_size);
+ DHD_ERROR(("%s: arr_len[SSSR_DIG_BEFORE] : %d\n", __FUNCTION__,
+ arr_len[SSSR_DIG_BEFORE]));
+ DHD_ERROR(("%s: arr_len[SSSR_DIG_AFTER] : %d\n", __FUNCTION__,
+ arr_len[SSSR_DIG_AFTER]));
+#ifdef DHD_LOG_DUMP
+ if (dhd->sssr_dig_buf_before) {
+ dhd_print_buf_addr(dhd, "SSSR_DIG_BEFORE",
+ dhd->sssr_dig_buf_before, arr_len[SSSR_DIG_BEFORE]);
+ }
+ if (dhd->sssr_dig_buf_after) {
+ dhd_print_buf_addr(dhd, "SSSR_DIG_AFTER",
+ dhd->sssr_dig_buf_after, arr_len[SSSR_DIG_AFTER]);
+ }
+#endif /* DHD_LOG_DUMP */
+ } else if ((dhd->sssr_reg_info.length > OFFSETOF(sssr_reg_info_v1_t, dig_mem_info)) &&
+ dhd->sssr_reg_info.dig_mem_info.dig_sr_addr) {
+ arr_len[SSSR_DIG_BEFORE] = (dhd->sssr_reg_info.dig_mem_info.dig_sr_size);
+ arr_len[SSSR_DIG_AFTER] = (dhd->sssr_reg_info.dig_mem_info.dig_sr_size);
+ DHD_ERROR(("%s: arr_len[SSSR_DIG_BEFORE] : %d\n", __FUNCTION__,
+ arr_len[SSSR_DIG_BEFORE]));
+ DHD_ERROR(("%s: arr_len[SSSR_DIG_AFTER] : %d\n", __FUNCTION__,
+ arr_len[SSSR_DIG_AFTER]));
+#ifdef DHD_LOG_DUMP
+ if (dhd->sssr_dig_buf_before) {
+ dhd_print_buf_addr(dhd, "SSSR_DIG_BEFORE",
+ dhd->sssr_dig_buf_before, arr_len[SSSR_DIG_BEFORE]);
+ }
+ if (dhd->sssr_dig_buf_after) {
+ dhd_print_buf_addr(dhd, "SSSR_DIG_AFTER",
+ dhd->sssr_dig_buf_after, arr_len[SSSR_DIG_AFTER]);
+ }
+#endif /* DHD_LOG_DUMP */
+ }
+ return BCME_OK;
+}
+
+void
+dhd_nla_put_sssr_dump_len(void *ndev, uint32 *arr_len)
+{
+ dhd_info_t *dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)ndev);
+ dhd_pub_t *dhdp = &dhd_info->pub;
+
+ if (dhdp->sssr_dump_collected) {
+ dhdpcie_sssr_dump_get_before_after_len(dhdp, arr_len);
+ }
+}
+#endif /* DHD_SSSR_DUMP */
+
+uint32
+dhd_get_time_str_len()
+{
+ char *ts = NULL, time_str[128];
+
+ ts = dhd_log_dump_get_timestamp();
+ snprintf(time_str, sizeof(time_str),
+ "\n\n ========== LOG DUMP TAKEN AT : %s =========\n", ts);
+ return strlen(time_str);
+}
+
+#ifdef BCMPCIE
+uint32
+dhd_get_ext_trap_len(void *ndev, dhd_pub_t *dhdp)
+{
+ int length = 0;
+ log_dump_section_hdr_t sec_hdr;
+ dhd_info_t *dhd_info;
+
+ if (ndev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)ndev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return length;
+
+ if (dhdp->extended_trap_data) {
+ length = (strlen(EXT_TRAP_LOG_HDR)
+ + sizeof(sec_hdr) + BCMPCIE_EXT_TRAP_DATA_MAXLEN);
+ }
+ return length;
+}
+#endif /* BCMPCIE */
+
+#if defined(DHD_FW_COREDUMP) && defined(DNGL_EVENT_SUPPORT)
+uint32
+dhd_get_health_chk_len(void *ndev, dhd_pub_t *dhdp)
+{
+ int length = 0;
+ log_dump_section_hdr_t sec_hdr;
+ dhd_info_t *dhd_info;
+
+ if (ndev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)ndev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return length;
+
+ if (dhdp->memdump_type == DUMP_TYPE_DONGLE_HOST_EVENT) {
+ length = (strlen(HEALTH_CHK_LOG_HDR)
+ + sizeof(sec_hdr) + HEALTH_CHK_BUF_SIZE);
+ }
+ return length;
+}
+#endif /* DHD_FW_COREDUMP && DNGL_EVENT_SUPPORT */
+
+uint32
+dhd_get_dhd_dump_len(void *ndev, dhd_pub_t *dhdp)
+{
+ int length = 0;
+ log_dump_section_hdr_t sec_hdr;
+ dhd_info_t *dhd_info;
+ uint32 remain_len = 0;
+
+ if (ndev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)ndev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return length;
+
+ if (dhdp->concise_dbg_buf) {
+ remain_len = dhd_dump(dhdp, (char *)dhdp->concise_dbg_buf, CONCISE_DUMP_BUFLEN);
+ if (remain_len <= 0) {
+ DHD_ERROR(("%s: error getting concise debug info !\n",
+ __FUNCTION__));
+ return length;
+ }
+ length = (strlen(DHD_DUMP_LOG_HDR) + sizeof(sec_hdr) +
+ (CONCISE_DUMP_BUFLEN - remain_len));
+ }
+ return length;
+}
+
+uint32
+dhd_get_cookie_log_len(void *ndev, dhd_pub_t *dhdp)
+{
+ int length = 0;
+ dhd_info_t *dhd_info;
+
+ if (ndev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)ndev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return length;
+
+ if (dhdp->logdump_cookie && dhd_logdump_cookie_count(dhdp) > 0) {
+ length = dhd_log_dump_cookie_len(dhdp);
+ }
+ return length;
+
+}
+
+#ifdef DHD_DUMP_PCIE_RINGS
+uint32
+dhd_get_flowring_len(void *ndev, dhd_pub_t *dhdp)
+{
+ int length = 0;
+ log_dump_section_hdr_t sec_hdr;
+ dhd_info_t *dhd_info;
+ uint16 h2d_flowrings_total;
+ uint32 remain_len = 0;
+
+ if (ndev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)ndev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return length;
+
+ if (dhdp->concise_dbg_buf) {
+ remain_len = dhd_dump(dhdp, (char *)dhdp->concise_dbg_buf, CONCISE_DUMP_BUFLEN);
+ if (remain_len <= 0) {
+ DHD_ERROR(("%s: error getting concise debug info !\n",
+ __FUNCTION__));
+ return length;
+ }
+ }
+
+ length += strlen(FLOWRING_DUMP_HDR);
+ length += CONCISE_DUMP_BUFLEN - remain_len;
+ length += sizeof(sec_hdr);
+ h2d_flowrings_total = dhd_get_max_flow_rings(dhdp);
+ length += ((H2DRING_TXPOST_ITEMSIZE
+ * H2DRING_TXPOST_MAX_ITEM * h2d_flowrings_total)
+ + (D2HRING_TXCMPLT_ITEMSIZE * D2HRING_TXCMPLT_MAX_ITEM)
+ + (H2DRING_RXPOST_ITEMSIZE * H2DRING_RXPOST_MAX_ITEM)
+ + (D2HRING_RXCMPLT_ITEMSIZE * D2HRING_RXCMPLT_MAX_ITEM)
+ + (H2DRING_CTRL_SUB_ITEMSIZE * H2DRING_CTRL_SUB_MAX_ITEM)
+ + (D2HRING_CTRL_CMPLT_ITEMSIZE * D2HRING_CTRL_CMPLT_MAX_ITEM)
+#ifdef EWP_EDL
+ + (D2HRING_EDL_HDR_SIZE * D2HRING_EDL_MAX_ITEM));
+#else
+ + (H2DRING_INFO_BUFPOST_ITEMSIZE * H2DRING_DYNAMIC_INFO_MAX_ITEM)
+ + (D2HRING_INFO_BUFCMPLT_ITEMSIZE * D2HRING_DYNAMIC_INFO_MAX_ITEM));
+#endif /* EWP_EDL */
+ return length;
+}
+#endif /* DHD_DUMP_PCIE_RINGS */
+
+#ifdef EWP_ECNTRS_LOGGING
+uint32
+dhd_get_ecntrs_len(void *ndev, dhd_pub_t *dhdp)
+{
+ dhd_info_t *dhd_info;
+ log_dump_section_hdr_t sec_hdr;
+ int length = 0;
+ dhd_dbg_ring_t *ring;
+
+ if (ndev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)ndev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return length;
+
+ if (logdump_ecntr_enable && dhdp->ecntr_dbg_ring) {
+ ring = (dhd_dbg_ring_t *)dhdp->ecntr_dbg_ring;
+ length = ring->ring_size + strlen(ECNTRS_LOG_HDR) + sizeof(sec_hdr);
+ }
+ return length;
+}
+#endif /* EWP_ECNTRS_LOGGING */
+
+#ifdef EWP_RTT_LOGGING
+uint32
+dhd_get_rtt_len(void *ndev, dhd_pub_t *dhdp)
+{
+ dhd_info_t *dhd_info;
+ log_dump_section_hdr_t sec_hdr;
+ int length = 0;
+ dhd_dbg_ring_t *ring;
+
+ if (ndev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)ndev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return length;
+
+ if (logdump_rtt_enable && dhdp->rtt_dbg_ring) {
+ ring = (dhd_dbg_ring_t *)dhdp->rtt_dbg_ring;
+ length = ring->ring_size + strlen(RTT_LOG_HDR) + sizeof(sec_hdr);
+ }
+ return length;
+}
+#endif /* EWP_RTT_LOGGING */
+
+int
+dhd_get_dld_log_dump(void *dev, dhd_pub_t *dhdp, const void *user_buf,
+ void *fp, uint32 len, int type, void *pos)
+{
+ int ret = BCME_OK;
+ struct dhd_log_dump_buf *dld_buf;
+ log_dump_section_hdr_t sec_hdr;
+ dhd_info_t *dhd_info;
+
+ dld_buf = &g_dld_buf[type];
+
+ if (dev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhdp = &dhd_info->pub;
+ } else if (!dhdp) {
+ return BCME_ERROR;
+ }
+
+ DHD_ERROR(("%s: ENTER \n", __FUNCTION__));
+
+ dhd_init_sec_hdr(&sec_hdr);
+
+ /* write the section header first */
+ ret = dhd_export_debug_data(dld_hdrs[type].hdr_str, fp, user_buf,
+ strlen(dld_hdrs[type].hdr_str), pos);
+ if (ret < 0)
+ goto exit;
+ len -= (uint32)strlen(dld_hdrs[type].hdr_str);
+ len -= (uint32)sizeof(sec_hdr);
+ sec_hdr.type = dld_hdrs[type].sec_type;
+ sec_hdr.length = len;
+ ret = dhd_export_debug_data((char *)&sec_hdr, fp, user_buf, sizeof(sec_hdr), pos);
+ if (ret < 0)
+ goto exit;
+ ret = dhd_export_debug_data(dld_buf->buffer, fp, user_buf, len, pos);
+ if (ret < 0)
+ goto exit;
+
+exit:
+ return ret;
+}
+
+static int
+dhd_log_flush(dhd_pub_t *dhdp, log_dump_type_t *type)
+{
+ unsigned long flags = 0;
+#ifdef EWP_EDL
+ int i = 0;
+#endif /* EWP_EDL */
+ dhd_info_t *dhd_info = NULL;
+
+ /* if dhdp is null, its extremely unlikely that log dump will be scheduled
+ * so not freeing 'type' here is ok, even if we want to free 'type'
+ * we cannot do so, since 'dhdp->osh' is unavailable
+ * as dhdp is null
+ */
+ if (!dhdp || !type) {
+ if (dhdp) {
+ DHD_GENERAL_LOCK(dhdp, flags);
+ DHD_BUS_BUSY_CLEAR_IN_LOGDUMP(dhdp);
+ dhd_os_busbusy_wake(dhdp);
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+ }
+ return BCME_ERROR;
+ }
+
+ dhd_info = (dhd_info_t *)dhdp->info;
+ /* in case of trap get preserve logs from ETD */
+#if defined(BCMPCIE) && defined(EWP_ETD_PRSRV_LOGS)
+ if (dhdp->dongle_trap_occured &&
+ dhdp->extended_trap_data) {
+ dhdpcie_get_etd_preserve_logs(dhdp, (uint8 *)dhdp->extended_trap_data,
+ &dhd_info->event_data);
+ }
+#endif /* BCMPCIE */
+
+ /* flush the event work items to get any fw events/logs
+ * flush_work is a blocking call
+ */
+#ifdef EWP_EDL
+ if (dhd_info->pub.dongle_edl_support) {
+ /* wait till existing edl items are processed */
+ dhd_flush_logtrace_process(dhd_info);
+ /* dhd_flush_logtrace_process will ensure the work items in the ring
+ * (EDL ring) from rd to wr are processed. But if wr had
+ * wrapped around, only the work items from rd to ring-end are processed.
+ * So to ensure that the work items at the
+ * beginning of ring are also processed in the wrap around case, call
+ * it twice
+ */
+ for (i = 0; i < 2; i++) {
+ /* blocks till the edl items are processed */
+ dhd_flush_logtrace_process(dhd_info);
+ }
+ } else {
+ dhd_flush_logtrace_process(dhd_info);
+ }
+#else
+ dhd_flush_logtrace_process(dhd_info);
+#endif /* EWP_EDL */
+
+#ifdef CUSTOMER_HW4_DEBUG
+ /* print last 'x' KB of preserve buffer data to kmsg console
+ * this is to address cases where debug_dump is not
+ * available for debugging
+ */
+ dhd_log_dump_print_tail(dhdp,
+ &g_dld_buf[DLD_BUF_TYPE_PRESERVE], logdump_prsrv_tailsize);
+#endif /* CUSTOMER_HW4_DEBUG */
+ return BCME_OK;
+}
+
+int
+dhd_get_debug_dump_file_name(void *dev, dhd_pub_t *dhdp, char *dump_path, int size)
+{
+ dhd_info_t *dhd_info;
+
+ if (dev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return BCME_ERROR;
+
+ memset(dump_path, 0, size);
+
+ switch (dhdp->debug_dump_subcmd) {
+ case CMD_UNWANTED:
+ snprintf(dump_path, size, "%s",
+ DHD_COMMON_DUMP_PATH DHD_DEBUG_DUMP_TYPE
+ DHD_DUMP_SUBSTR_UNWANTED);
+ break;
+ case CMD_DISCONNECTED:
+ snprintf(dump_path, size, "%s",
+ DHD_COMMON_DUMP_PATH DHD_DEBUG_DUMP_TYPE
+ DHD_DUMP_SUBSTR_DISCONNECTED);
+ break;
+ default:
+ snprintf(dump_path, size, "%s",
+ DHD_COMMON_DUMP_PATH DHD_DEBUG_DUMP_TYPE);
+ }
+
+ if (!dhdp->logdump_periodic_flush) {
+ get_debug_dump_time(dhdp->debug_dump_time_str);
+ snprintf(dump_path + strlen(dump_path),
+ size - strlen(dump_path),
+ "_%s", dhdp->debug_dump_time_str);
+ }
+ return BCME_OK;
+}
+
+uint32
+dhd_get_dld_len(int log_type)
+{
+ unsigned long wr_size = 0;
+ unsigned long buf_size = 0;
+ unsigned long flags = 0;
+ struct dhd_log_dump_buf *dld_buf;
+ log_dump_section_hdr_t sec_hdr;
+
+ /* calculate the length of the log */
+ dld_buf = &g_dld_buf[log_type];
+ buf_size = (unsigned long)dld_buf->max -
+ (unsigned long)dld_buf->buffer;
+
+ if (dld_buf->wraparound) {
+ wr_size = buf_size;
+ } else {
+ /* need to hold the lock before accessing 'present' and 'remain' ptrs */
+ spin_lock_irqsave(&dld_buf->lock, flags);
+ wr_size = (unsigned long)dld_buf->present -
+ (unsigned long)dld_buf->front;
+ spin_unlock_irqrestore(&dld_buf->lock, flags);
+ }
+ return (wr_size + sizeof(sec_hdr) + strlen(dld_hdrs[log_type].hdr_str));
+}
+
+static void
+dhd_get_time_str(dhd_pub_t *dhdp, char *time_str, int size)
+{
+ char *ts = NULL;
+ memset(time_str, 0, size);
+ ts = dhd_log_dump_get_timestamp();
+ snprintf(time_str, size,
+ "\n\n ========== LOG DUMP TAKEN AT : %s =========\n", ts);
+}
+
+int
+dhd_print_time_str(const void *user_buf, void *fp, uint32 len, void *pos)
+{
+ char *ts = NULL;
+ int ret = 0;
+ char time_str[128];
+
+ memset_s(time_str, sizeof(time_str), 0, sizeof(time_str));
+ ts = dhd_log_dump_get_timestamp();
+ snprintf(time_str, sizeof(time_str),
+ "\n\n ========== LOG DUMP TAKEN AT : %s =========\n", ts);
+
+ /* write the timestamp hdr to the file first */
+ ret = dhd_export_debug_data(time_str, fp, user_buf, strlen(time_str), pos);
+ if (ret < 0) {
+ DHD_ERROR(("write file error, err = %d\n", ret));
+ }
+ return ret;
+}
+
+#if defined(DHD_FW_COREDUMP) && defined(DNGL_EVENT_SUPPORT)
+int
+dhd_print_health_chk_data(void *dev, dhd_pub_t *dhdp, const void *user_buf,
+ void *fp, uint32 len, void *pos)
+{
+ int ret = BCME_OK;
+ log_dump_section_hdr_t sec_hdr;
+ dhd_info_t *dhd_info;
+
+ if (dev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return BCME_ERROR;
+
+ dhd_init_sec_hdr(&sec_hdr);
+
+ if (dhdp->memdump_type == DUMP_TYPE_DONGLE_HOST_EVENT) {
+ /* write the section header first */
+ ret = dhd_export_debug_data(HEALTH_CHK_LOG_HDR, fp, user_buf,
+ strlen(HEALTH_CHK_LOG_HDR), pos);
+ if (ret < 0)
+ goto exit;
+
+ len -= (uint32)strlen(HEALTH_CHK_LOG_HDR);
+ sec_hdr.type = LOG_DUMP_SECTION_HEALTH_CHK;
+ sec_hdr.length = HEALTH_CHK_BUF_SIZE;
+ ret = dhd_export_debug_data((char *)&sec_hdr, fp, user_buf, sizeof(sec_hdr), pos);
+ if (ret < 0)
+ goto exit;
+
+ len -= (uint32)sizeof(sec_hdr);
+ /* write the log */
+ ret = dhd_export_debug_data((char *)dhdp->health_chk_event_data, fp,
+ user_buf, len, pos);
+ if (ret < 0)
+ goto exit;
+ }
+exit:
+ return ret;
+}
+#endif /* DHD_FW_COREDUMP && DNGL_EVENT_SUPPORT */
+
+#ifdef BCMPCIE
+int
+dhd_print_ext_trap_data(void *dev, dhd_pub_t *dhdp, const void *user_buf,
+ void *fp, uint32 len, void *pos)
+{
+ int ret = BCME_OK;
+ log_dump_section_hdr_t sec_hdr;
+ dhd_info_t *dhd_info;
+
+ if (dev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return BCME_ERROR;
+
+ dhd_init_sec_hdr(&sec_hdr);
+
+ /* append extended trap data to the file in case of traps */
+ if (dhdp->dongle_trap_occured &&
+ dhdp->extended_trap_data) {
+ /* write the section header first */
+ ret = dhd_export_debug_data(EXT_TRAP_LOG_HDR, fp, user_buf,
+ strlen(EXT_TRAP_LOG_HDR), pos);
+ if (ret < 0)
+ goto exit;
+
+ len -= (uint32)strlen(EXT_TRAP_LOG_HDR);
+ sec_hdr.type = LOG_DUMP_SECTION_EXT_TRAP;
+ sec_hdr.length = BCMPCIE_EXT_TRAP_DATA_MAXLEN;
+ ret = dhd_export_debug_data((uint8 *)&sec_hdr, fp, user_buf, sizeof(sec_hdr), pos);
+ if (ret < 0)
+ goto exit;
+
+ len -= (uint32)sizeof(sec_hdr);
+ /* write the log */
+ ret = dhd_export_debug_data((uint8 *)dhdp->extended_trap_data, fp,
+ user_buf, len, pos);
+ if (ret < 0)
+ goto exit;
+ }
+exit:
+ return ret;
+}
+#endif /* BCMPCIE */
+
+int
+dhd_print_dump_data(void *dev, dhd_pub_t *dhdp, const void *user_buf,
+ void *fp, uint32 len, void *pos)
+{
+ int ret = BCME_OK;
+ log_dump_section_hdr_t sec_hdr;
+ dhd_info_t *dhd_info;
+
+ if (dev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return BCME_ERROR;
+
+ dhd_init_sec_hdr(&sec_hdr);
+
+ ret = dhd_export_debug_data(DHD_DUMP_LOG_HDR, fp, user_buf, strlen(DHD_DUMP_LOG_HDR), pos);
+ if (ret < 0)
+ goto exit;
+
+ len -= (uint32)strlen(DHD_DUMP_LOG_HDR);
+ sec_hdr.type = LOG_DUMP_SECTION_DHD_DUMP;
+ sec_hdr.length = len;
+ ret = dhd_export_debug_data((char *)&sec_hdr, fp, user_buf, sizeof(sec_hdr), pos);
+ if (ret < 0)
+ goto exit;
+
+ len -= (uint32)sizeof(sec_hdr);
+
+ if (dhdp->concise_dbg_buf) {
+ dhd_dump(dhdp, (char *)dhdp->concise_dbg_buf, CONCISE_DUMP_BUFLEN);
+ ret = dhd_export_debug_data(dhdp->concise_dbg_buf, fp, user_buf, len, pos);
+ if (ret < 0)
+ goto exit;
+ }
+
+exit:
+ return ret;
+}
+
+int
+dhd_print_cookie_data(void *dev, dhd_pub_t *dhdp, const void *user_buf,
+ void *fp, uint32 len, void *pos)
+{
+ int ret = BCME_OK;
+ dhd_info_t *dhd_info;
+
+ if (dev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return BCME_ERROR;
+
+ if (dhdp->logdump_cookie && dhd_logdump_cookie_count(dhdp) > 0) {
+ ret = dhd_log_dump_cookie_to_file(dhdp, fp, user_buf, (unsigned long *)pos);
+ }
+ return ret;
+}
+
+#ifdef DHD_DUMP_PCIE_RINGS
+int
+dhd_print_flowring_data(void *dev, dhd_pub_t *dhdp, const void *user_buf,
+ void *fp, uint32 len, void *pos)
+{
+ log_dump_section_hdr_t sec_hdr;
+ int ret = BCME_OK;
+ uint32 remain_len = 0;
+ dhd_info_t *dhd_info;
+
+ if (dev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return BCME_ERROR;
+
+ dhd_init_sec_hdr(&sec_hdr);
+
+ remain_len = dhd_dump(dhdp, (char *)dhdp->concise_dbg_buf, CONCISE_DUMP_BUFLEN);
+ memset(dhdp->concise_dbg_buf, 0, CONCISE_DUMP_BUFLEN);
+
+ /* write the section header first */
+ ret = dhd_export_debug_data(FLOWRING_DUMP_HDR, fp, user_buf,
+ strlen(FLOWRING_DUMP_HDR), pos);
+ if (ret < 0)
+ goto exit;
+
+ /* Write the ring summary */
+ ret = dhd_export_debug_data(dhdp->concise_dbg_buf, fp, user_buf,
+ (CONCISE_DUMP_BUFLEN - remain_len), pos);
+ if (ret < 0)
+ goto exit;
+
+ sec_hdr.type = LOG_DUMP_SECTION_FLOWRING;
+ sec_hdr.length = len;
+ ret = dhd_export_debug_data((char *)&sec_hdr, fp, user_buf, sizeof(sec_hdr), pos);
+ if (ret < 0)
+ goto exit;
+
+ /* write the log */
+ ret = dhd_d2h_h2d_ring_dump(dhdp, fp, user_buf, (unsigned long *)pos, TRUE);
+ if (ret < 0)
+ goto exit;
+
+exit:
+ return ret;
+}
+#endif /* DHD_DUMP_PCIE_RINGS */
+
+#ifdef EWP_ECNTRS_LOGGING
+int
+dhd_print_ecntrs_data(void *dev, dhd_pub_t *dhdp, const void *user_buf,
+ void *fp, uint32 len, void *pos)
+{
+ log_dump_section_hdr_t sec_hdr;
+ int ret = BCME_OK;
+ dhd_info_t *dhd_info;
+
+ if (dev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return BCME_ERROR;
+
+ dhd_init_sec_hdr(&sec_hdr);
+
+ if (logdump_ecntr_enable &&
+ dhdp->ecntr_dbg_ring) {
+ sec_hdr.type = LOG_DUMP_SECTION_ECNTRS;
+ ret = dhd_dump_debug_ring(dhdp, dhdp->ecntr_dbg_ring,
+ user_buf, &sec_hdr, ECNTRS_LOG_HDR, len, LOG_DUMP_SECTION_ECNTRS);
+ }
+ return ret;
+
+}
+#endif /* EWP_ECNTRS_LOGGING */
+
+#ifdef EWP_RTT_LOGGING
+int
+dhd_print_rtt_data(void *dev, dhd_pub_t *dhdp, const void *user_buf,
+ void *fp, uint32 len, void *pos)
+{
+ log_dump_section_hdr_t sec_hdr;
+ int ret = BCME_OK;
+ dhd_info_t *dhd_info;
+
+ if (dev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp)
+ return BCME_ERROR;
+
+ dhd_init_sec_hdr(&sec_hdr);
+
+ if (logdump_rtt_enable && dhdp->rtt_dbg_ring) {
+ ret = dhd_dump_debug_ring(dhdp, dhdp->rtt_dbg_ring,
+ user_buf, &sec_hdr, RTT_LOG_HDR, len, LOG_DUMP_SECTION_RTT);
+ }
+ return ret;
+
+}
+#endif /* EWP_RTT_LOGGING */
+
+#ifdef DHD_STATUS_LOGGING
+int
+dhd_print_status_log_data(void *dev, dhd_pub_t *dhdp, const void *user_buf,
+ void *fp, uint32 len, void *pos)
+{
+ dhd_info_t *dhd_info;
+
+ if (dev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)dev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (!dhdp) {
+ return BCME_ERROR;
+ }
+
+ return dhd_statlog_write_logdump(dhdp, user_buf, fp, len, pos);
+}
+
+uint32
+dhd_get_status_log_len(void *ndev, dhd_pub_t *dhdp)
+{
+ dhd_info_t *dhd_info;
+ uint32 length = 0;
+
+ if (ndev) {
+ dhd_info = *(dhd_info_t **)netdev_priv((struct net_device *)ndev);
+ dhdp = &dhd_info->pub;
+ }
+
+ if (dhdp) {
+ length = dhd_statlog_get_logbuf_len(dhdp);
+ }
+
+ return length;
+}
+#endif /* DHD_STATUS_LOGGING */
+
+void
+dhd_init_sec_hdr(log_dump_section_hdr_t *sec_hdr)
+{
+ /* prep the section header */
+ memset(sec_hdr, 0, sizeof(*sec_hdr));
+ sec_hdr->magic = LOG_DUMP_MAGIC;
+ sec_hdr->timestamp = local_clock();
+}
+
+/* Must hold 'dhd_os_logdump_lock' before calling this function ! */
+static int
+do_dhd_log_dump(dhd_pub_t *dhdp, log_dump_type_t *type)
+{
+ int ret = 0, i = 0;
+ struct file *fp = NULL;
+#if defined(KERNEL_DS) && defined(USER_DS)
+ mm_segment_t old_fs;
+#endif /* KERNEL_DS && USER_DS */
+ loff_t pos = 0;
+ char dump_path[128];
+ uint32 file_mode;
+ unsigned long flags = 0;
+ size_t log_size = 0;
+ size_t fspace_remain = 0;
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0))
+ int isize = 0;
+#else
+ struct kstat stat;
+#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0) */
+ char time_str[128];
+ unsigned int len = 0;
+ log_dump_section_hdr_t sec_hdr;
+
+ DHD_ERROR(("%s: ENTER \n", __FUNCTION__));
+
+ DHD_GENERAL_LOCK(dhdp, flags);
+ if (DHD_BUS_CHECK_DOWN_OR_DOWN_IN_PROGRESS(dhdp)) {
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+ DHD_ERROR(("%s: bus is down! can't collect log dump. \n", __FUNCTION__));
+ goto exit1;
+ }
+ DHD_BUS_BUSY_SET_IN_LOGDUMP(dhdp);
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+
+ if ((ret = dhd_log_flush(dhdp, type)) < 0) {
+ goto exit1;
+ }
+ /* change to KERNEL_DS address limit */
+#if defined(KERNEL_DS) && defined(USER_DS)
+ old_fs = get_fs();
+ set_fs(KERNEL_DS);
+#endif /* KERNEL_DS && USER_DS */
+ dhd_get_debug_dump_file_name(NULL, dhdp, dump_path, sizeof(dump_path));
+
+ DHD_ERROR(("debug_dump_path = %s\n", dump_path));
+ DHD_ERROR(("DHD version: %s\n", dhd_version));
+ DHD_ERROR(("F/W version: %s\n", fw_version));
+
+ dhd_log_dump_buf_addr(dhdp, type);
+
+ dhd_get_time_str(dhdp, time_str, 128);
+
+ /* if this is the first time after dhd is loaded,
+ * or, if periodic flush is disabled, clear the log file
+ */
+ if (!dhdp->logdump_periodic_flush || dhdp->last_file_posn == 0)
+ file_mode = O_CREAT | O_WRONLY | O_SYNC | O_TRUNC;
+ else
+ file_mode = O_CREAT | O_RDWR | O_SYNC;
+
+ fp = filp_open(dump_path, file_mode, 0664);
+ if (IS_ERR(fp)) {
+ /* If android installed image, try '/data' directory */
+#if defined(CONFIG_X86) && defined(OEM_ANDROID)
+ DHD_ERROR(("%s: File open error on Installed android image, trying /data...\n",
+ __FUNCTION__));
+ snprintf(dump_path, sizeof(dump_path), "/root/" DHD_DEBUG_DUMP_TYPE);
+ if (!dhdp->logdump_periodic_flush) {
+ snprintf(dump_path + strlen(dump_path),
+ sizeof(dump_path) - strlen(dump_path),
+ "_%s", dhdp->debug_dump_time_str);
+ }
+ fp = filp_open(dump_path, file_mode, 0664);
+ if (IS_ERR(fp)) {
+ ret = PTR_ERR(fp);
+ DHD_ERROR(("open file error, err = %d\n", ret));
+ goto exit2;
+ }
+ DHD_ERROR(("debug_dump_path = %s\n", dump_path));
+#else
+ ret = PTR_ERR(fp);
+ DHD_ERROR(("open file error, err = %d\n", ret));
+ goto exit2;
+#endif /* CONFIG_X86 && OEM_ANDROID */
+ }
+
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0))
+ isize = i_size_read(file_inode(fp));
+
+ /* if some one else has changed the file */
+ if (dhdp->last_file_posn != 0 &&
+ isize < dhdp->last_file_posn) {
+ dhdp->last_file_posn = 0;
+ }
+#else
+ ret = vfs_stat(dump_path, &stat);
+ if (ret < 0) {
+ DHD_ERROR(("file stat error, err = %d\n", ret));
+ goto exit2;
+ }
+
+ /* if some one else has changed the file */
+ if (dhdp->last_file_posn != 0 &&
+ stat.size < dhdp->last_file_posn) {
+ dhdp->last_file_posn = 0;
+ }
+#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0) */
+ if (dhdp->logdump_periodic_flush) {
+ log_size = strlen(time_str) + strlen(DHD_DUMP_LOG_HDR) + sizeof(sec_hdr);
+ /* calculate the amount of space required to dump all logs */
+ for (i = 0; i < DLD_BUFFER_NUM; ++i) {
+ if (*type != DLD_BUF_TYPE_ALL && i != *type)
+ continue;
+
+ if (g_dld_buf[i].wraparound) {
+ log_size += (unsigned long)g_dld_buf[i].max
+ - (unsigned long)g_dld_buf[i].buffer;
+ } else {
+ spin_lock_irqsave(&g_dld_buf[i].lock, flags);
+ log_size += (unsigned long)g_dld_buf[i].present -
+ (unsigned long)g_dld_buf[i].front;
+ spin_unlock_irqrestore(&g_dld_buf[i].lock, flags);
+ }
+ log_size += strlen(dld_hdrs[i].hdr_str) + sizeof(sec_hdr);
+
+ if (*type != DLD_BUF_TYPE_ALL && i == *type)
+ break;
+ }
+
+ ret = generic_file_llseek(fp, dhdp->last_file_posn, SEEK_CUR);
+ if (ret < 0) {
+ DHD_ERROR(("file seek last posn error ! err = %d \n", ret));
+ goto exit2;
+ }
+ pos = fp->f_pos;
+
+ /* if the max file size is reached, wrap around to beginning of the file
+ * we're treating the file as a large ring buffer
+ */
+ fspace_remain = logdump_max_filesize - pos;
+ if (log_size > fspace_remain) {
+ fp->f_pos -= pos;
+ pos = fp->f_pos;
+ }
+ }
+
+ dhd_print_time_str(0, fp, len, &pos);
+
+ for (i = 0; i < DLD_BUFFER_NUM; ++i) {
+
+ if (*type != DLD_BUF_TYPE_ALL && i != *type)
+ continue;
+
+ len = dhd_get_dld_len(i);
+ dhd_get_dld_log_dump(NULL, dhdp, 0, fp, len, i, &pos);
+ if (*type != DLD_BUF_TYPE_ALL)
+ break;
+ }
+
+#ifdef EWP_ECNTRS_LOGGING
+ /* periodic flushing of ecounters is NOT supported */
+ if (*type == DLD_BUF_TYPE_ALL &&
+ logdump_ecntr_enable &&
+ dhdp->ecntr_dbg_ring) {
+ dhd_log_dump_ring_to_file(dhdp, dhdp->ecntr_dbg_ring,
+ fp, (unsigned long *)&pos,
+ &sec_hdr, ECNTRS_LOG_HDR, LOG_DUMP_SECTION_ECNTRS);
+ }
+#endif /* EWP_ECNTRS_LOGGING */
+
+#ifdef DHD_STATUS_LOGGING
+ if (dhdp->statlog) {
+ /* write the statlog */
+ len = dhd_get_status_log_len(NULL, dhdp);
+ if (len) {
+ if (dhd_print_status_log_data(NULL, dhdp, 0, fp,
+ len, &pos) < 0) {
+ goto exit2;
+ }
+ }
+ }
+#endif /* DHD_STATUS_LOGGING */
+
+#ifdef EWP_RTT_LOGGING
+ /* periodic flushing of ecounters is NOT supported */
+ if (*type == DLD_BUF_TYPE_ALL &&
+ logdump_rtt_enable &&
+ dhdp->rtt_dbg_ring) {
+ dhd_log_dump_ring_to_file(dhdp, dhdp->rtt_dbg_ring,
+ fp, (unsigned long *)&pos,
+ &sec_hdr, RTT_LOG_HDR, LOG_DUMP_SECTION_RTT);
+ }
+#endif /* EWP_RTT_LOGGING */
+
+#ifdef BCMPCIE
+ len = dhd_get_ext_trap_len(NULL, dhdp);
+ if (len) {
+ if (dhd_print_ext_trap_data(NULL, dhdp, 0, fp, len, &pos) < 0)
+ goto exit2;
+ }
+#endif /* BCMPCIE */
+
+#if defined(DHD_FW_COREDUMP) && defined(DNGL_EVENT_SUPPORT) && defined(BCMPCIE)
+ len = dhd_get_health_chk_len(NULL, dhdp);
+ if (len) {
+ if (dhd_print_ext_trap_data(NULL, dhdp, 0, fp, len, &pos) < 0)
+ goto exit2;
+ }
+#endif /* DHD_FW_COREDUMP && DNGL_EVENT_SUPPORT && BCMPCIE */
+
+ len = dhd_get_dhd_dump_len(NULL, dhdp);
+ if (len) {
+ if (dhd_print_dump_data(NULL, dhdp, 0, fp, len, &pos) < 0)
+ goto exit2;
+ }
+
+ len = dhd_get_cookie_log_len(NULL, dhdp);
+ if (len) {
+ if (dhd_print_cookie_data(NULL, dhdp, 0, fp, len, &pos) < 0)
+ goto exit2;
+ }
+
+#ifdef DHD_DUMP_PCIE_RINGS
+ len = dhd_get_flowring_len(NULL, dhdp);
+ if (len) {
+ if (dhd_print_flowring_data(NULL, dhdp, 0, fp, len, &pos) < 0)
+ goto exit2;
+ }
+#endif // endif
+
+ if (dhdp->logdump_periodic_flush) {
+ /* store the last position written to in the file for future use */
+ dhdp->last_file_posn = pos;
+ }
+
+exit2:
+ if (!IS_ERR(fp) && fp != NULL) {
+ filp_close(fp, NULL);
+ DHD_ERROR(("%s: Finished writing log dump to file - '%s' \n",
+ __FUNCTION__, dump_path));
+ }
+#if defined(KERNEL_DS) && defined(USER_DS)
+ set_fs(old_fs);
+#endif /* KERNEL_DS && USER_DS */
+exit1:
+ if (type) {
+ MFREE(dhdp->osh, type, sizeof(*type));
+ }
+ DHD_GENERAL_LOCK(dhdp, flags);
+ DHD_BUS_BUSY_CLEAR_IN_LOGDUMP(dhdp);
+ dhd_os_busbusy_wake(dhdp);
+ DHD_GENERAL_UNLOCK(dhdp, flags);
+
+#ifdef DHD_DUMP_MNGR
+ if (ret >= 0) {
+ dhd_dump_file_manage_enqueue(dhdp, dump_path, DHD_DEBUG_DUMP_TYPE);
+ }
+#endif /* DHD_DUMP_MNGR */
+
+ return (ret < 0) ? BCME_ERROR : BCME_OK;
+}
+#endif /* DHD_LOG_DUMP */
+
+/* This function writes data to the file pointed by fp, OR
+ * copies data to the user buffer sent by upper layer(HAL).
+ */
+int
+dhd_export_debug_data(void *mem_buf, void *fp, const void *user_buf, int buf_len, void *pos)
+{
+ int ret = BCME_OK;
+
+ if (fp) {
+ ret = vfs_write(fp, mem_buf, buf_len, (loff_t *)pos);
+ if (ret < 0) {
+ DHD_ERROR(("write file error, err = %d\n", ret));
+ goto exit;
+ }
+ } else {
+ {
+ ret = copy_to_user((void *)((uintptr_t)user_buf + (*(int *)pos)),
+ mem_buf, buf_len);
+ if (ret) {
+ DHD_ERROR(("failed to copy into user buffer : %d\n", ret));
+ goto exit;
+ }
+ }
+ (*(int *)pos) += buf_len;
+ }
+exit:
+ return ret;
+}
+
+/*
+ * This call is to get the memdump size so that,
+ * halutil can alloc that much buffer in user space.
+ */
+int
+dhd_os_socram_dump(struct net_device *dev, uint32 *dump_size)
{
int ret = BCME_OK;
dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
dhd_pub_t *dhdp = &dhd->pub;
+
+ if (dhdp->busstate == DHD_BUS_DOWN) {
+ DHD_ERROR(("%s: bus is down\n", __FUNCTION__));
+ return BCME_ERROR;
+ }
+
+ if (DHD_BUS_CHECK_SUSPEND_OR_SUSPEND_IN_PROGRESS(dhdp)) {
+ DHD_ERROR(("%s: bus is in suspend(%d) or suspending(0x%x) state, so skip\n",
+ __FUNCTION__, dhdp->busstate, dhdp->dhd_bus_busy_state));
+ return BCME_ERROR;
+ }
+#ifdef DHD_PCIE_RUNTIMEPM
+ dhdpcie_runtime_bus_wake(dhdp, TRUE, __builtin_return_address(0));
+#endif /* DHD_PCIE_RUNTIMEPM */
ret = dhd_common_socram_dump(dhdp);
if (ret == BCME_OK) {
*dump_size = dhdp->soc_ram_length;
@@ -13796,7 +19316,11 @@
return ret;
}
-int dhd_os_get_socram_dump(struct net_device *dev, char **buf, uint32 *size)
+/*
+ * This is to get the actual memdup after getting the memdump size
+ */
+int
+dhd_os_get_socram_dump(struct net_device *dev, char **buf, uint32 *size)
{
int ret = BCME_OK;
int orig_len = 0;
@@ -13807,11 +19331,8 @@
orig_len = *size;
if (dhdp->soc_ram) {
if (orig_len >= dhdp->soc_ram_length) {
- memcpy(*buf, dhdp->soc_ram, dhdp->soc_ram_length);
- /* reset the storage of dump */
- memset(dhdp->soc_ram, 0, dhdp->soc_ram_length);
+ *buf = dhdp->soc_ram;
*size = dhdp->soc_ram_length;
- dhdp->soc_ram_length = 0;
} else {
ret = BCME_BUFTOOSHORT;
DHD_ERROR(("The length of the buffer is too short"
@@ -13824,105 +19345,118 @@
return ret;
}
-int dhd_os_get_version(struct net_device *dev, bool dhd_ver, char **buf, uint32 size)
+int
+dhd_os_get_version(struct net_device *dev, bool dhd_ver, char **buf, uint32 size)
{
- int ret = BCME_OK;
+ char *fw_str;
+
+ if (size == 0)
+ return BCME_BADARG;
+
+ fw_str = strstr(info_string, "Firmware: ");
+ if (fw_str == NULL) {
+ return BCME_ERROR;
+ }
+
memset(*buf, 0, size);
if (dhd_ver) {
strncpy(*buf, dhd_version, size - 1);
} else {
- strncpy(*buf, strstr(info_string, "Firmware: "), size - 1);
+ strncpy(*buf, fw_str, size - 1);
+ }
+ return BCME_OK;
+}
+
+#ifdef DHD_PKT_LOGGING
+int
+dhd_os_get_pktlog_dump(void *dev, const void *user_buf, uint32 len)
+{
+ int ret = BCME_OK;
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
+ dhd_pub_t *dhdp = &dhd->pub;
+ if (user_buf == NULL) {
+ DHD_ERROR(("%s(): user buffer is NULL\n", __FUNCTION__));
+ return BCME_ERROR;
+ }
+
+ ret = dhd_pktlog_dump_write_memory(dhdp, user_buf, len);
+ if (ret < 0) {
+ DHD_ERROR(("%s(): fail to dump pktlog, err = %d\n", __FUNCTION__, ret));
+ return ret;
}
return ret;
}
-static void
-dhd_mem_dump(void *handle, void *event_info, u8 event)
+uint32
+dhd_os_get_pktlog_dump_size(struct net_device *dev)
{
- dhd_info_t *dhd = handle;
- dhd_dump_t *dump = event_info;
+ uint32 size = 0;
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
+ dhd_pub_t *dhdp = &dhd->pub;
- if (!dhd) {
- DHD_ERROR(("%s: dhd is NULL\n", __FUNCTION__));
- return;
+ size = dhd_pktlog_get_dump_length(dhdp);
+ if (size == 0) {
+ DHD_ERROR(("%s(): fail to get pktlog size, err = %d\n", __FUNCTION__, size));
}
-
- if (!dump) {
- DHD_ERROR(("%s: dump is NULL\n", __FUNCTION__));
- return;
- }
-
- if (write_to_file(&dhd->pub, dump->buf, dump->bufsize)) {
- DHD_ERROR(("%s: writing SoC_RAM dump to the file failed\n", __FUNCTION__));
- }
-
- if (dhd->pub.memdump_enabled == DUMP_MEMFILE_BUGON) {
- BUG_ON(1);
- }
- MFREE(dhd->pub.osh, dump, sizeof(dhd_dump_t));
+ return size;
}
-#endif /* DHD_FW_COREDUMP */
-
-#ifdef DHD_WMF
-/* Returns interface specific WMF configuration */
-dhd_wmf_t* dhd_wmf_conf(dhd_pub_t *dhdp, uint32 idx)
+void
+dhd_os_get_pktlogdump_filename(struct net_device *dev, char *dump_path, int len)
{
- dhd_info_t *dhd = dhdp->info;
- dhd_if_t *ifp;
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
+ dhd_pub_t *dhdp = &dhd->pub;
- ASSERT(idx < DHD_MAX_IFS);
-
- ifp = dhd->iflist[idx];
- return &ifp->wmf;
+ dhd_pktlog_get_filename(dhdp, dump_path, len);
}
-#endif /* DHD_WMF */
-
-#if defined(TRAFFIC_MGMT_DWM)
-void traffic_mgmt_pkt_set_prio(dhd_pub_t *dhdp, void * pktbuf)
+#endif /* DHD_PKT_LOGGING */
+#ifdef DNGL_AXI_ERROR_LOGGING
+int
+dhd_os_get_axi_error_dump(void *dev, const void *user_buf, uint32 len)
{
- struct ether_header *eh;
- struct ethervlan_header *evh;
- uint8 *pktdata, *ip_body;
- uint8 dwm_filter;
- uint8 tos_tc = 0;
- uint8 dscp = 0;
- pktdata = (uint8 *)PKTDATA(dhdp->osh, pktbuf);
- eh = (struct ether_header *) pktdata;
- ip_body = NULL;
-
- if (dhdp->dhd_tm_dwm_tbl.dhd_dwm_enabled) {
- if (eh->ether_type == hton16(ETHER_TYPE_8021Q)) {
- evh = (struct ethervlan_header *)eh;
- if ((evh->ether_type == hton16(ETHER_TYPE_IP)) ||
- (evh->ether_type == hton16(ETHER_TYPE_IPV6))) {
- ip_body = pktdata + sizeof(struct ethervlan_header);
- }
- } else if ((eh->ether_type == hton16(ETHER_TYPE_IP)) ||
- (eh->ether_type == hton16(ETHER_TYPE_IPV6))) {
- ip_body = pktdata + sizeof(struct ether_header);
- }
- if (ip_body) {
- tos_tc = IP_TOS46(ip_body);
- dscp = tos_tc >> IPV4_TOS_DSCP_SHIFT;
- }
-
- if (dscp < DHD_DWM_TBL_SIZE) {
- dwm_filter = dhdp->dhd_tm_dwm_tbl.dhd_dwm_tbl[dscp];
- if (DHD_TRF_MGMT_DWM_IS_FILTER_SET(dwm_filter)) {
- PKTSETPRIO(pktbuf, DHD_TRF_MGMT_DWM_PRIO(dwm_filter));
- }
- }
+ int ret = BCME_OK;
+ dhd_info_t *dhd = *(dhd_info_t **)netdev_priv(dev);
+ dhd_pub_t *dhdp = &dhd->pub;
+ loff_t pos = 0;
+ if (user_buf == NULL) {
+ DHD_ERROR(("%s(): user buffer is NULL\n", __FUNCTION__));
+ return BCME_ERROR;
}
-}
-#endif
-#if defined(DHD_L2_FILTER)
+ ret = dhd_export_debug_data((char *)dhdp->axi_err_dump,
+ NULL, user_buf, sizeof(dhd_axi_error_dump_t), &pos);
+
+ if (ret < 0) {
+ DHD_ERROR(("%s(): fail to dump pktlog, err = %d\n", __FUNCTION__, ret));
+ return ret;
+ }
+ return ret;
+}
+
+int
+dhd_os_get_axi_error_dump_size(struct net_device *dev)
+{
+ int size = -1;
+
+ size = sizeof(dhd_axi_error_dump_t);
+ if (size < 0) {
+ DHD_ERROR(("%s(): fail to get axi error size, err = %d\n", __FUNCTION__, size));
+ }
+ return size;
+}
+
+void
+dhd_os_get_axi_error_filename(struct net_device *dev, char *dump_path, int len)
+{
+ snprintf(dump_path, len, "%s",
+ DHD_COMMON_DUMP_PATH DHD_DUMP_AXI_ERROR_FILENAME);
+}
+#endif /* DNGL_AXI_ERROR_LOGGING */
+
bool dhd_sta_associated(dhd_pub_t *dhdp, uint32 bssidx, uint8 *mac)
{
return dhd_find_sta(dhdp, bssidx, mac) ? TRUE : FALSE;
}
-#endif
#ifdef DHD_L2_FILTER
arp_table_t*
@@ -14091,8 +19625,35 @@
return BCME_OK;
}
-#endif /* DHD_L2_FILTER */
+int dhd_get_block_tdls_status(dhd_pub_t *dhdp, uint32 idx)
+{
+ dhd_info_t *dhd = dhdp->info;
+ dhd_if_t *ifp;
+
+ ASSERT(idx < DHD_MAX_IFS);
+
+ ifp = dhd->iflist[idx];
+
+ ASSERT(ifp);
+
+ return ifp->block_tdls;
+}
+
+int dhd_set_block_tdls_status(dhd_pub_t *dhdp, uint32 idx, int val)
+{
+ dhd_info_t *dhd = dhdp->info;
+ dhd_if_t *ifp;
+ ASSERT(idx < DHD_MAX_IFS);
+ ifp = dhd->iflist[idx];
+
+ ASSERT(ifp);
+
+ ifp->block_tdls = val;
+
+ return BCME_OK;
+}
+#endif /* DHD_L2_FILTER */
#if defined(SET_RPS_CPUS)
int dhd_rps_cpus_enable(struct net_device *net, int enable)
@@ -14216,9 +19777,183 @@
DHD_INFO(("%s : rps_cpus map clear.\n", __FUNCTION__));
}
}
-#endif
+#endif // endif
+#if defined(ARGOS_NOTIFY_CB)
+static int argos_status_notifier_wifi_cb(struct notifier_block *notifier,
+ unsigned long speed, void *v);
+static int argos_status_notifier_p2p_cb(struct notifier_block *notifier,
+ unsigned long speed, void *v);
+
+int
+argos_register_notifier_init(struct net_device *net)
+{
+ int ret = 0;
+
+ DHD_INFO(("DHD: %s: \n", __FUNCTION__));
+ argos_rps_ctrl_data.wlan_primary_netdev = net;
+ argos_rps_ctrl_data.argos_rps_cpus_enabled = 0;
+
+ if (argos_wifi.notifier_call == NULL) {
+ argos_wifi.notifier_call = argos_status_notifier_wifi_cb;
+ ret = sec_argos_register_notifier(&argos_wifi, ARGOS_WIFI_TABLE_LABEL);
+ if (ret < 0) {
+ DHD_ERROR(("DHD:Failed to register WIFI notifier, ret=%d\n", ret));
+ goto exit;
+ }
+ }
+
+ if (argos_p2p.notifier_call == NULL) {
+ argos_p2p.notifier_call = argos_status_notifier_p2p_cb;
+ ret = sec_argos_register_notifier(&argos_p2p, ARGOS_P2P_TABLE_LABEL);
+ if (ret < 0) {
+ DHD_ERROR(("DHD:Failed to register P2P notifier, ret=%d\n", ret));
+ sec_argos_unregister_notifier(&argos_wifi, ARGOS_WIFI_TABLE_LABEL);
+ goto exit;
+ }
+ }
+
+ return 0;
+
+exit:
+ if (argos_wifi.notifier_call) {
+ argos_wifi.notifier_call = NULL;
+ }
+
+ if (argos_p2p.notifier_call) {
+ argos_p2p.notifier_call = NULL;
+ }
+
+ return ret;
+}
+
+int
+argos_register_notifier_deinit(void)
+{
+ DHD_INFO(("DHD: %s: \n", __FUNCTION__));
+
+ if (argos_rps_ctrl_data.wlan_primary_netdev == NULL) {
+ DHD_ERROR(("DHD: primary_net_dev is null %s: \n", __FUNCTION__));
+ return -1;
+ }
+#ifndef DHD_LB
+ custom_rps_map_clear(argos_rps_ctrl_data.wlan_primary_netdev->_rx);
+#endif /* !DHD_LB */
+
+ if (argos_p2p.notifier_call) {
+ sec_argos_unregister_notifier(&argos_p2p, ARGOS_P2P_TABLE_LABEL);
+ argos_p2p.notifier_call = NULL;
+ }
+
+ if (argos_wifi.notifier_call) {
+ sec_argos_unregister_notifier(&argos_wifi, ARGOS_WIFI_TABLE_LABEL);
+ argos_wifi.notifier_call = NULL;
+ }
+
+ argos_rps_ctrl_data.wlan_primary_netdev = NULL;
+ argos_rps_ctrl_data.argos_rps_cpus_enabled = 0;
+
+ return 0;
+}
+
+int
+argos_status_notifier_wifi_cb(struct notifier_block *notifier,
+ unsigned long speed, void *v)
+{
+ dhd_info_t *dhd;
+ dhd_pub_t *dhdp;
+#if defined(ARGOS_NOTIFY_CB)
+ unsigned int pcie_irq = 0;
+#endif /* ARGOS_NOTIFY_CB */
+ DHD_INFO(("DHD: %s: speed=%ld\n", __FUNCTION__, speed));
+
+ if (argos_rps_ctrl_data.wlan_primary_netdev == NULL) {
+ goto exit;
+ }
+
+ dhd = DHD_DEV_INFO(argos_rps_ctrl_data.wlan_primary_netdev);
+ if (dhd == NULL) {
+ goto exit;
+ }
+
+ dhdp = &dhd->pub;
+ if (dhdp == NULL || !dhdp->up) {
+ goto exit;
+ }
+ /* Check if reported TPut value is more than threshold value */
+ if (speed > RPS_TPUT_THRESHOLD) {
+ if (argos_rps_ctrl_data.argos_rps_cpus_enabled == 0) {
+ /* It does not need to configre rps_cpus
+ * if Load Balance is enabled
+ */
+#ifndef DHD_LB
+ int err = 0;
+
+ if (cpu_online(RPS_CPUS_WLAN_CORE_ID)) {
+ err = custom_rps_map_set(
+ argos_rps_ctrl_data.wlan_primary_netdev->_rx,
+ RPS_CPUS_MASK, strlen(RPS_CPUS_MASK));
+ } else {
+ DHD_ERROR(("DHD: %s: RPS_Set fail,"
+ " Core=%d Offline\n", __FUNCTION__,
+ RPS_CPUS_WLAN_CORE_ID));
+ err = -1;
+ }
+
+ if (err < 0) {
+ DHD_ERROR(("DHD: %s: Failed to RPS_CPUs. "
+ "speed=%ld, error=%d\n",
+ __FUNCTION__, speed, err));
+ } else {
+#endif /* !DHD_LB */
+#if (defined(DHDTCPACK_SUPPRESS) && defined(BCMPCIE))
+ if (dhdp->tcpack_sup_mode != TCPACK_SUP_HOLD) {
+ DHD_ERROR(("%s : set ack suppress. TCPACK_SUP_ON(%d)\n",
+ __FUNCTION__, TCPACK_SUP_HOLD));
+ dhd_tcpack_suppress_set(dhdp, TCPACK_SUP_HOLD);
+ }
+#endif /* DHDTCPACK_SUPPRESS && BCMPCIE */
+ argos_rps_ctrl_data.argos_rps_cpus_enabled = 1;
+#ifndef DHD_LB
+ DHD_ERROR(("DHD: %s: Set RPS_CPUs, speed=%ld\n",
+ __FUNCTION__, speed));
+ }
+#endif /* !DHD_LB */
+ }
+ } else {
+ if (argos_rps_ctrl_data.argos_rps_cpus_enabled == 1) {
+#if (defined(DHDTCPACK_SUPPRESS) && defined(BCMPCIE))
+ if (dhdp->tcpack_sup_mode != TCPACK_SUP_OFF) {
+ DHD_ERROR(("%s : set ack suppress. TCPACK_SUP_OFF\n",
+ __FUNCTION__));
+ dhd_tcpack_suppress_set(dhdp, TCPACK_SUP_OFF);
+ }
+#endif /* DHDTCPACK_SUPPRESS && BCMPCIE */
+#ifndef DHD_LB
+ /* It does not need to configre rps_cpus
+ * if Load Balance is enabled
+ */
+ custom_rps_map_clear(argos_rps_ctrl_data.wlan_primary_netdev->_rx);
+ DHD_ERROR(("DHD: %s: Clear RPS_CPUs, speed=%ld\n", __FUNCTION__, speed));
+ OSL_SLEEP(DELAY_TO_CLEAR_RPS_CPUS);
+#endif /* !DHD_LB */
+ argos_rps_ctrl_data.argos_rps_cpus_enabled = 0;
+ }
+ }
+
+exit:
+ return NOTIFY_OK;
+}
+
+int
+argos_status_notifier_p2p_cb(struct notifier_block *notifier,
+ unsigned long speed, void *v)
+{
+ DHD_INFO(("DHD: %s: speed=%ld\n", __FUNCTION__, speed));
+ return argos_status_notifier_wifi_cb(notifier, speed, v);
+}
+#endif // endif
#ifdef DHD_DEBUG_PAGEALLOC
@@ -14242,348 +19977,30 @@
DHD_OS_WAKE_UNLOCK(dhdp);
}
EXPORT_SYMBOL(dhd_page_corrupt_cb);
+#endif /* DHD_DEBUG_PAGEALLOC */
-#ifdef DHD_PKTID_AUDIT_ENABLED
+#if defined(BCMPCIE) && defined(DHD_PKTID_AUDIT_ENABLED)
void
-dhd_pktid_audit_fail_cb(dhd_pub_t *dhdp)
+dhd_pktid_error_handler(dhd_pub_t *dhdp)
{
DHD_ERROR(("%s: Got Pkt Id Audit failure \n", __FUNCTION__));
DHD_OS_WAKE_LOCK(dhdp);
-#if defined(BCMPCIE) && defined(DHD_FW_COREDUMP)
- /* Load the dongle side dump to host memory and then BUG_ON() */
- dhdp->memdump_enabled = DUMP_MEMONLY;
+ dhd_dump_to_kernelog(dhdp);
+#ifdef DHD_FW_COREDUMP
+ /* Load the dongle side dump to host memory */
+ if (dhdp->memdump_enabled == DUMP_DISABLED) {
+ dhdp->memdump_enabled = DUMP_MEMFILE;
+ }
dhdp->memdump_type = DUMP_TYPE_PKTID_AUDIT_FAILURE;
dhd_bus_mem_dump(dhdp);
-#endif /* BCMPCIE && DHD_FW_COREDUMP */
+#endif /* DHD_FW_COREDUMP */
+#ifdef OEM_ANDROID
+ dhdp->hang_reason = HANG_REASON_PCIE_PKTID_ERROR;
+ dhd_os_check_hang(dhdp, 0, -EREMOTEIO);
+#endif /* OEM_ANDROID */
DHD_OS_WAKE_UNLOCK(dhdp);
}
-#endif /* DHD_PKTID_AUDIT_ENABLED */
-#endif /* DHD_DEBUG_PAGEALLOC */
-
-struct tcp_fmt {
- struct iphdr ip_header;
- struct tcphdr tcp_header;
-};
-
-#define KP_PORT 5150
-
-static void
-dhd_tcp_dump(char *ifname, uint8 *pktdata, bool tx)
-{
- struct tcp_fmt *b = (struct tcp_fmt *) &pktdata[ETHER_HDR_LEN];
- struct iphdr *h = &b->ip_header;
- uint32 ip_saddr, ip_daddr, c, max_c, opt, tsval_t, tsecr_t;
- unsigned char *opts;
-
- /* check IP header */
- if (h->ihl != 5 || h->version != 4 || h->protocol != IPPROTO_TCP) {
- return;
- }
-
- if ((ntohs(b->tcp_header.source) != KP_PORT) && (ntohs(b->tcp_header.dest) != KP_PORT))
- return;
-
- if (tx) {
- ip_saddr = h->saddr;
- ip_daddr = h->daddr;
- ip_id = ntohs(h->id);
- bcm_ip_ntoa((struct ipv4_addr *)&ip_saddr, sabuf);
- bcm_ip_ntoa((struct ipv4_addr *)&ip_daddr, dabuf);
- bcm_ether_ntoa((struct ether_addr *)pktdata, deabuf);
- bcm_ether_ntoa((struct ether_addr *)(pktdata+6), seabuf);
- source = ntohs(b->tcp_header.source);
- dest = ntohs(b->tcp_header.dest);
- seq = ntohl(b->tcp_header.seq);
- seq_ack = ntohl(b->tcp_header.ack_seq);
- window = ntohs(b->tcp_header.window);
- tcp_data_len = ntohs(h->tot_len) - 20 - (b->tcp_header.doff * 4);
- }
-
- tcp_option_len = (b->tcp_header.doff * 4) - 20;
- if (tcp_option_len) {
- max_c = tcp_option_len;
- opts = &pktdata[ETHER_HDR_LEN + 40];
- for (c = 0; c < max_c; ) {
- opt = opts[c];
- switch (opt) {
- case 0x00:
- /* End of options. */
- pr_debug("rk tcp_parseopt: EOL\n");
- return;
- case 0x01:
- /* NOP option. */
- ++c;
- pr_debug("rk tcp_parseopt: NOP\n");
- break;
- case 0x02:
- pr_debug("rk tcp_parseopt: MSS\n");
- if (opts[c + 1] != 0x04 || c + 0x04 > max_c) {
- /* Bad length */
- pr_err("rk tcp_parseopt: bad length\n");
- return;
- }
- /* Advance to next option */
- c += 0x04;
- break;
- case 0x08:
- pr_debug("rk tcp_parseopt: TS\n");
- if (opts[c + 1] != 0x0A || c + 0x0A > max_c) {
- /* Bad length */
- pr_err("rk tcp_parseopt: bad length\n");
- return;
- }
- /* TCP timestamp option with valid length */
- tsval_t = (opts[c+2]) | (opts[c+3] << 8) |
- (opts[c+4] << 16) | (opts[c+5] << 24);
- tsecr_t = (opts[c+6]) | (opts[c+7] << 8) |
- (opts[c+8] << 16) | (opts[c+9] << 24);
-
- if (tx) {
- tsval = ntohl(tsval_t);
- tsecr = ntohl(tsecr_t);
- } else {
- tsecr = ntohl(tsval_t);
- tsval = ntohl(tsecr_t);
- }
- /* Advance to next option */
- c += 0x0A;
- break;
- default:
- pr_debug("rk tcp_parseopt: other\n");
- if (opts[c + 1] == 0) {
- pr_err("rk tcp_parseopt: bad length\n");
- /* If the length field is zero, the options are malformed
- and we don't process them further. */
- return;
- }
- /* All other options have a length field, so that we easily
- can skip past them. */
- c += opts[c + 1];
- }
- }
- }
-
- if (tx)
- pr_debug("[%s-%s] %s %s %s %s %d, %d, %d, %8u, %8u, %d, %d, %d, %8u, %8u\n", ifname, tx ? "tx" : "rx",
- sabuf, dabuf, seabuf, deabuf, ip_id, source, dest, seq, seq_ack, window,
- tcp_option_len, tcp_data_len, tsval, tsecr);
-}
-
-#ifdef DHD_DHCP_DUMP
-static void
-dhd_dhcp_dump(uint8 *pktdata, bool tx)
-{
- struct bootp_fmt *b = (struct bootp_fmt *) &pktdata[ETHER_HDR_LEN];
- struct iphdr *h = &b->ip_header;
- uint8 *ptr, *opt, *end = (uint8 *) b + ntohs(b->ip_header.tot_len);
- int dhcp_type = 0, len, opt_len;
-
- /* check IP header */
- if (h->ihl != 5 || h->version != 4 || h->protocol != IPPROTO_UDP) {
- return;
- }
-
- /* check UDP port for bootp (67, 68) */
- if (b->udp_header.source != htons(67) && b->udp_header.source != htons(68) &&
- b->udp_header.dest != htons(67) && b->udp_header.dest != htons(68)) {
- return;
- }
-
- /* check header length */
- if (ntohs(h->tot_len) < ntohs(b->udp_header.len) + sizeof(struct iphdr)) {
- return;
- }
-
- len = ntohs(b->udp_header.len) - sizeof(struct udphdr);
- opt_len = len
- - (sizeof(*b) - sizeof(struct iphdr) - sizeof(struct udphdr) - sizeof(b->options));
-
- /* parse bootp options */
- if (opt_len >= 4 && !memcmp(b->options, bootp_magic_cookie, 4)) {
- ptr = &b->options[4];
- while (ptr < end && *ptr != 0xff) {
- opt = ptr++;
- if (*opt == 0) {
- continue;
- }
- ptr += *ptr + 1;
- if (ptr >= end) {
- break;
- }
- /* 53 is dhcp type */
- if (*opt == 53) {
- if (opt[1]) {
- dhcp_type = opt[2];
- DHD_ERROR(("DHCP - %s [%s] [%s]\n",
- dhcp_types[dhcp_type], tx?"TX":"RX",
- dhcp_ops[b->op]));
- break;
- }
- }
- }
- }
-}
-#endif /* DHD_DHCP_DUMP */
-
-
-typedef struct dhd_mon_dev_priv {
- struct net_device_stats stats;
-} dhd_mon_dev_priv_t;
-
-#define DHD_MON_DEV_PRIV_SIZE (sizeof(dhd_mon_dev_priv_t))
-#define DHD_MON_DEV_PRIV(dev) ((dhd_mon_dev_priv_t *)DEV_PRIV(dev))
-#define DHD_MON_DEV_STATS(dev) (((dhd_mon_dev_priv_t *)DEV_PRIV(dev))->stats)
-
-static int
-dhd_monitor_start(struct sk_buff *skb, struct net_device *dev)
-{
- PKTFREE(NULL, skb, FALSE);
- return 0;
-}
-
-static int
-dhd_monitor_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
-{
- return 0;
-}
-
-static struct net_device_stats*
-dhd_monitor_get_stats(struct net_device *dev)
-{
- return &DHD_MON_DEV_STATS(dev);
-}
-
-static const struct net_device_ops netdev_monitor_ops =
-{
- .ndo_start_xmit = dhd_monitor_start,
- .ndo_get_stats = dhd_monitor_get_stats,
- .ndo_do_ioctl = dhd_monitor_ioctl
-};
-
-static void
-dhd_add_monitor_if(void *handle, void *event_info, u8 event)
-{
- dhd_info_t *dhd = handle;
- struct net_device *dev;
- char *devname;
-
- if (event != DHD_WQ_WORK_IF_ADD) {
- DHD_ERROR(("%s: unexpected event \n", __FUNCTION__));
- return;
- }
-
- if (!dhd) {
- DHD_ERROR(("%s: dhd info not available \n", __FUNCTION__));
- return;
- }
-
- dev = alloc_etherdev(DHD_MON_DEV_PRIV_SIZE);
- if (!dev) {
- DHD_ERROR(("%s: alloc wlif failed\n", __FUNCTION__));
- return;
- }
-
- if (dhd->monitor_type == 1)
- devname = "prism";
- else
- devname = "radiotap";
-
- snprintf(dev->name, sizeof(dev->name), "%s%u", devname, dhd->unit);
-
-#ifndef ARPHRD_IEEE80211_PRISM /* From Linux 2.4.18 */
-#define ARPHRD_IEEE80211_PRISM 802
-#endif
-
-#ifndef ARPHRD_IEEE80211_RADIOTAP
-#define ARPHRD_IEEE80211_RADIOTAP 803 /* IEEE 802.11 + radiotap header */
-#endif /* ARPHRD_IEEE80211_RADIOTAP */
-
- if (dhd->monitor_type == 1)
- dev->type = ARPHRD_IEEE80211_PRISM;
- else
- dev->type = ARPHRD_IEEE80211_RADIOTAP;
-
-#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 31))
- dev->hard_start_xmit = dhd_monitor_start;
- dev->do_ioctl = dhd_monitor_ioctl;
- dev->get_stats = dhd_monitor_get_stats;
-#else
- dev->netdev_ops = &netdev_monitor_ops;
-#endif
-
- if (register_netdev(dev)) {
- DHD_ERROR(("%s, register_netdev failed for %s\n",
- __FUNCTION__, dev->name));
- free_netdev(dev);
- }
-
- dhd->monitor_dev = dev;
-}
-
-static void
-dhd_del_monitor_if(void *handle, void *event_info, u8 event)
-{
- dhd_info_t *dhd = handle;
-
- if (event != DHD_WQ_WORK_IF_DEL) {
- DHD_ERROR(("%s: unexpected event \n", __FUNCTION__));
- return;
- }
-
- if (!dhd) {
- DHD_ERROR(("%s: dhd info not available \n", __FUNCTION__));
- return;
- }
-
- if (dhd->monitor_dev) {
- unregister_netdev(dhd->monitor_dev);
-
-#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 24))
- MFREE(dhd->osh, dhd->monitor_dev->priv, DHD_MON_DEV_PRIV_SIZE);
- MFREE(dhd->osh, dhd->monitor_dev, sizeof(struct net_device));
-#else
- free_netdev(dhd->monitor_dev);
-#endif /* 2.6.24 */
-
- dhd->monitor_dev = NULL;
- }
-}
-
-void
-dhd_set_monitor(dhd_pub_t *dhd, int ifidx, int val)
-{
- dhd_info_t *info = dhd->info;
-
- DHD_TRACE(("%s: val %d\n", __FUNCTION__, val));
- if ((val && info->monitor_dev) || (!val && !info->monitor_dev)) {
- DHD_ERROR(("%s: Mismatched params, return\n", __FUNCTION__));
- return;
- }
-
- /* Delete monitor */
- if (!val) {
- info->monitor_type = val;
- dhd_deferred_schedule_work(info->dhd_deferred_wq, NULL, DHD_WQ_WORK_IF_DEL,
- dhd_del_monitor_if, DHD_WORK_PRIORITY_LOW);
- return;
- }
-
- /* Add monitor */
- if (val >= 1 && val <= 3) {
- info->monitor_type = val;
- dhd_deferred_schedule_work(info->dhd_deferred_wq, NULL, DHD_WQ_WORK_IF_ADD,
- dhd_add_monitor_if, DHD_WORK_PRIORITY_LOW);
- } else {
- DHD_ERROR(("monitor type %d not supported\n", val));
- ASSERT(0);
- }
-}
-
-bool
-dhd_monitor_enabled(dhd_pub_t *dhd, int ifidx)
-{
- return (dhd->info->monitor_type != 0);
-}
+#endif /* BCMPCIE && DHD_PKTID_AUDIT_ENABLED */
struct net_device *
dhd_linux_get_primary_netdev(dhd_pub_t *dhdp)
@@ -14595,3 +20012,2868 @@
else
return NULL;
}
+
+fw_download_status_t
+dhd_fw_download_status(dhd_pub_t * dhd_pub)
+{
+ return dhd_pub->fw_download_status;
+}
+
+static int
+dhd_create_to_notifier_skt(void)
+{
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0))
+ /* Kernel 3.7 onwards this API accepts only 3 arguments. */
+ /* Kernel version 3.6 is a special case which accepts 4 arguments */
+ nl_to_event_sk = netlink_kernel_create(&init_net, BCM_NL_USER, &dhd_netlink_cfg);
+#elif (LINUX_VERSION_CODE < KERNEL_VERSION(3, 6, 0))
+ /* Kernel version 3.5 and below use this old API format */
+ nl_to_event_sk = netlink_kernel_create(&init_net, BCM_NL_USER, 0,
+ dhd_process_daemon_msg, NULL, THIS_MODULE);
+#else
+ nl_to_event_sk = netlink_kernel_create(&init_net, BCM_NL_USER, THIS_MODULE,
+ &dhd_netlink_cfg);
+#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0)) */
+ if (!nl_to_event_sk)
+ {
+ printf("Error creating socket.\n");
+ return -1;
+ }
+ DHD_INFO(("nl_to socket created successfully...\n"));
+ return 0;
+}
+
+void
+dhd_destroy_to_notifier_skt(void)
+{
+ DHD_INFO(("Destroying nl_to socket\n"));
+ netlink_kernel_release(nl_to_event_sk);
+}
+
+static void
+dhd_recv_msg_from_daemon(struct sk_buff *skb)
+{
+ struct nlmsghdr *nlh;
+ bcm_to_info_t *cmd;
+
+ nlh = (struct nlmsghdr *)skb->data;
+ cmd = (bcm_to_info_t *)nlmsg_data(nlh);
+ if ((cmd->magic == BCM_TO_MAGIC) && (cmd->reason == REASON_DAEMON_STARTED)) {
+ sender_pid = ((struct nlmsghdr *)(skb->data))->nlmsg_pid;
+ DHD_INFO(("DHD Daemon Started\n"));
+ }
+}
+
+int
+dhd_send_msg_to_daemon(struct sk_buff *skb, void *data, int size)
+{
+ struct nlmsghdr *nlh;
+ struct sk_buff *skb_out;
+ int ret = BCME_ERROR;
+
+ BCM_REFERENCE(skb);
+ if (sender_pid == 0) {
+ DHD_INFO(("Invalid PID 0\n"));
+ skb_out = NULL;
+ goto err;
+ }
+
+ if ((skb_out = nlmsg_new(size, 0)) == NULL) {
+ DHD_ERROR(("%s: skb alloc failed\n", __FUNCTION__));
+ ret = BCME_NOMEM;
+ goto err;
+ }
+ nlh = nlmsg_put(skb_out, 0, 0, NLMSG_DONE, size, 0);
+ if (nlh == NULL) {
+ DHD_ERROR(("%s: nlmsg_put failed\n", __FUNCTION__));
+ goto err;
+ }
+ NETLINK_CB(skb_out).dst_group = 0; /* Unicast */
+ (void)memcpy_s(nlmsg_data(nlh), size, (char *)data, size);
+
+ if ((ret = nlmsg_unicast(nl_to_event_sk, skb_out, sender_pid)) < 0) {
+ DHD_ERROR(("Error sending message, ret:%d\n", ret));
+ /* skb is already freed inside nlmsg_unicast() on error case */
+ /* explicitly making skb_out to NULL to avoid double free */
+ skb_out = NULL;
+ goto err;
+ }
+ return BCME_OK;
+err:
+ if (skb_out) {
+ nlmsg_free(skb_out);
+ }
+ return ret;
+}
+
+static void
+dhd_process_daemon_msg(struct sk_buff *skb)
+{
+ bcm_to_info_t to_info;
+
+ to_info.magic = BCM_TO_MAGIC;
+ to_info.reason = REASON_DAEMON_STARTED;
+ to_info.trap = NO_TRAP;
+
+ dhd_recv_msg_from_daemon(skb);
+ dhd_send_msg_to_daemon(skb, &to_info, sizeof(to_info));
+}
+
+#ifdef DHD_LOG_DUMP
+bool
+dhd_log_dump_ecntr_enabled(void)
+{
+ return (bool)logdump_ecntr_enable;
+}
+
+bool
+dhd_log_dump_rtt_enabled(void)
+{
+ return (bool)logdump_rtt_enable;
+}
+
+void
+dhd_log_dump_init(dhd_pub_t *dhd)
+{
+ struct dhd_log_dump_buf *dld_buf, *dld_buf_special;
+ int i = 0;
+ uint8 *prealloc_buf = NULL, *bufptr = NULL;
+#if defined(CONFIG_DHD_USE_STATIC_BUF) && defined(DHD_USE_STATIC_MEMDUMP)
+ int prealloc_idx = DHD_PREALLOC_DHD_LOG_DUMP_BUF;
+#endif /* CONFIG_DHD_USE_STATIC_BUF && DHD_USE_STATIC_MEMDUMP */
+ int ret;
+ dhd_dbg_ring_t *ring = NULL;
+ unsigned long flags = 0;
+ dhd_info_t *dhd_info = dhd->info;
+ void *cookie_buf = NULL;
+
+ BCM_REFERENCE(ret);
+ BCM_REFERENCE(ring);
+ BCM_REFERENCE(flags);
+
+ /* sanity check */
+ if (logdump_prsrv_tailsize <= 0 ||
+ logdump_prsrv_tailsize > DHD_LOG_DUMP_MAX_TAIL_FLUSH_SIZE) {
+ logdump_prsrv_tailsize = DHD_LOG_DUMP_MAX_TAIL_FLUSH_SIZE;
+ }
+ /* now adjust the preserve log flush size based on the
+ * kernel printk log buffer size
+ */
+#ifdef CONFIG_LOG_BUF_SHIFT
+ DHD_ERROR(("%s: kernel log buf size = %uKB; logdump_prsrv_tailsize = %uKB;"
+ " limit prsrv tail size to = %uKB\n",
+ __FUNCTION__, (1 << CONFIG_LOG_BUF_SHIFT)/1024,
+ logdump_prsrv_tailsize/1024, LOG_DUMP_KERNEL_TAIL_FLUSH_SIZE/1024));
+
+ if (logdump_prsrv_tailsize > LOG_DUMP_KERNEL_TAIL_FLUSH_SIZE) {
+ logdump_prsrv_tailsize = LOG_DUMP_KERNEL_TAIL_FLUSH_SIZE;
+ }
+#else
+ DHD_ERROR(("%s: logdump_prsrv_tailsize = %uKB \n",
+ __FUNCTION__, logdump_prsrv_tailsize/1024);
+#endif /* CONFIG_LOG_BUF_SHIFT */
+
+ mutex_init(&dhd_info->logdump_lock);
+
+ /* initialize log dump buf structures */
+ memset(g_dld_buf, 0, sizeof(struct dhd_log_dump_buf) * DLD_BUFFER_NUM);
+
+ /* set the log dump buffer size based on the module_param */
+ if (logdump_max_bufsize > LOG_DUMP_GENERAL_MAX_BUFSIZE ||
+ logdump_max_bufsize <= 0)
+ dld_buf_size[DLD_BUF_TYPE_GENERAL] = LOG_DUMP_GENERAL_MAX_BUFSIZE;
+ else
+ dld_buf_size[DLD_BUF_TYPE_GENERAL] = logdump_max_bufsize;
+
+ /* pre-alloc the memory for the log buffers & 'special' buffer */
+ dld_buf_special = &g_dld_buf[DLD_BUF_TYPE_SPECIAL];
+#if defined(CONFIG_DHD_USE_STATIC_BUF) && defined(DHD_USE_STATIC_MEMDUMP)
+ DHD_ERROR(("%s : Try to allocate memory total(%d) special(%d)\n",
+ __FUNCTION__, LOG_DUMP_TOTAL_BUFSIZE, LOG_DUMP_SPECIAL_MAX_BUFSIZE));
+ prealloc_buf = DHD_OS_PREALLOC(dhd, prealloc_idx++, LOG_DUMP_TOTAL_BUFSIZE);
+ dld_buf_special->buffer = DHD_OS_PREALLOC(dhd, prealloc_idx++,
+ dld_buf_size[DLD_BUF_TYPE_SPECIAL]);
+#else
+ prealloc_buf = VMALLOCZ(dhd->osh, LOG_DUMP_TOTAL_BUFSIZE);
+ dld_buf_special->buffer = VMALLOCZ(dhd->osh, dld_buf_size[DLD_BUF_TYPE_SPECIAL]);
+#endif /* CONFIG_DHD_USE_STATIC_BUF && DHD_USE_STATIC_MEMDUMP */
+ if (!prealloc_buf) {
+ DHD_ERROR(("Failed to pre-allocate memory for log buffers !\n"));
+ goto fail;
+ }
+ if (!dld_buf_special->buffer) {
+ DHD_ERROR(("Failed to pre-allocate memory for special buffer !\n"));
+ goto fail;
+ }
+
+ bufptr = prealloc_buf;
+ for (i = 0; i < DLD_BUFFER_NUM; i++) {
+ dld_buf = &g_dld_buf[i];
+ dld_buf->dhd_pub = dhd;
+ spin_lock_init(&dld_buf->lock);
+ dld_buf->wraparound = 0;
+ if (i != DLD_BUF_TYPE_SPECIAL) {
+ dld_buf->buffer = bufptr;
+ dld_buf->max = (unsigned long)dld_buf->buffer + dld_buf_size[i];
+ bufptr = (uint8 *)dld_buf->max;
+ } else {
+ dld_buf->max = (unsigned long)dld_buf->buffer + dld_buf_size[i];
+ }
+ dld_buf->present = dld_buf->front = dld_buf->buffer;
+ dld_buf->remain = dld_buf_size[i];
+ dld_buf->enable = 1;
+ }
+
+#ifdef EWP_ECNTRS_LOGGING
+ /* now use the rest of the pre-alloc'd memory for filter and ecounter log */
+ dhd->ecntr_dbg_ring = MALLOCZ(dhd->osh, sizeof(dhd_dbg_ring_t));
+ if (!dhd->ecntr_dbg_ring)
+ goto fail;
+
+ ring = (dhd_dbg_ring_t *)dhd->ecntr_dbg_ring;
+ ret = dhd_dbg_ring_init(dhd, ring, ECNTR_RING_ID,
+ ECNTR_RING_NAME, LOG_DUMP_ECNTRS_MAX_BUFSIZE,
+ bufptr, TRUE);
+ if (ret != BCME_OK) {
+ DHD_ERROR(("%s: unable to init ecntr ring !\n",
+ __FUNCTION__));
+ goto fail;
+ }
+ DHD_DBG_RING_LOCK(ring->lock, flags);
+ ring->state = RING_ACTIVE;
+ ring->threshold = 0;
+ DHD_DBG_RING_UNLOCK(ring->lock, flags);
+
+ bufptr += LOG_DUMP_ECNTRS_MAX_BUFSIZE;
+#endif /* EWP_ECNTRS_LOGGING */
+
+#ifdef EWP_RTT_LOGGING
+ /* now use the rest of the pre-alloc'd memory for filter and ecounter log */
+ dhd->rtt_dbg_ring = MALLOCZ(dhd->osh, sizeof(dhd_dbg_ring_t));
+ if (!dhd->rtt_dbg_ring)
+ goto fail;
+
+ ring = (dhd_dbg_ring_t *)dhd->rtt_dbg_ring;
+ ret = dhd_dbg_ring_init(dhd, ring, RTT_RING_ID,
+ RTT_RING_NAME, LOG_DUMP_RTT_MAX_BUFSIZE,
+ bufptr, TRUE);
+ if (ret != BCME_OK) {
+ DHD_ERROR(("%s: unable to init ecntr ring !\n",
+ __FUNCTION__));
+ goto fail;
+ }
+ DHD_DBG_RING_LOCK(ring->lock, flags);
+ ring->state = RING_ACTIVE;
+ ring->threshold = 0;
+ DHD_DBG_RING_UNLOCK(ring->lock, flags);
+
+ bufptr += LOG_DUMP_RTT_MAX_BUFSIZE;
+#endif /* EWP_RTT_LOGGING */
+
+ /* Concise buffer is used as intermediate buffer for following purposes
+ * a) pull ecounters records temporarily before
+ * writing it to file
+ * b) to store dhd dump data before putting it to file
+ * It should have a size equal to
+ * MAX(largest possible ecntr record, 'dhd dump' data size)
+ */
+ dhd->concise_dbg_buf = MALLOC(dhd->osh, CONCISE_DUMP_BUFLEN);
+ if (!dhd->concise_dbg_buf) {
+ DHD_ERROR(("%s: unable to alloc mem for concise debug info !\n",
+ __FUNCTION__));
+ goto fail;
+ }
+
+#if defined(DHD_EVENT_LOG_FILTER)
+ ret = dhd_event_log_filter_init(dhd,
+ bufptr,
+ LOG_DUMP_FILTER_MAX_BUFSIZE);
+ if (ret != BCME_OK) {
+ goto fail;
+ }
+#endif /* DHD_EVENT_LOG_FILTER */
+
+ cookie_buf = MALLOC(dhd->osh, LOG_DUMP_COOKIE_BUFSIZE);
+ if (!cookie_buf) {
+ DHD_ERROR(("%s: unable to alloc mem for logdump cookie buffer\n",
+ __FUNCTION__));
+ goto fail;
+ }
+ ret = dhd_logdump_cookie_init(dhd, cookie_buf, LOG_DUMP_COOKIE_BUFSIZE);
+ if (ret != BCME_OK) {
+ MFREE(dhd->osh, cookie_buf, LOG_DUMP_COOKIE_BUFSIZE);
+ goto fail;
+ }
+ return;
+
+fail:
+
+ if (dhd->logdump_cookie) {
+ dhd_logdump_cookie_deinit(dhd);
+ MFREE(dhd->osh, dhd->logdump_cookie, LOG_DUMP_COOKIE_BUFSIZE);
+ dhd->logdump_cookie = NULL;
+ }
+#if defined(DHD_EVENT_LOG_FILTER)
+ if (dhd->event_log_filter) {
+ dhd_event_log_filter_deinit(dhd);
+ }
+#endif /* DHD_EVENT_LOG_FILTER */
+
+ if (dhd->concise_dbg_buf) {
+ MFREE(dhd->osh, dhd->concise_dbg_buf, CONCISE_DUMP_BUFLEN);
+ }
+
+#ifdef EWP_ECNTRS_LOGGING
+ if (dhd->ecntr_dbg_ring) {
+ ring = (dhd_dbg_ring_t *)dhd->ecntr_dbg_ring;
+ dhd_dbg_ring_deinit(dhd, ring);
+ ring->ring_buf = NULL;
+ ring->ring_size = 0;
+ MFREE(dhd->osh, ring, sizeof(dhd_dbg_ring_t));
+ dhd->ecntr_dbg_ring = NULL;
+ }
+#endif /* EWP_ECNTRS_LOGGING */
+
+#ifdef EWP_RTT_LOGGING
+ if (dhd->rtt_dbg_ring) {
+ ring = (dhd_dbg_ring_t *)dhd->rtt_dbg_ring;
+ dhd_dbg_ring_deinit(dhd, ring);
+ ring->ring_buf = NULL;
+ ring->ring_size = 0;
+ MFREE(dhd->osh, ring, sizeof(dhd_dbg_ring_t));
+ dhd->rtt_dbg_ring = NULL;
+ }
+#endif /* EWP_RTT_LOGGING */
+
+#if defined(CONFIG_DHD_USE_STATIC_BUF) && defined(DHD_USE_STATIC_MEMDUMP)
+ if (prealloc_buf) {
+ DHD_OS_PREFREE(dhd, prealloc_buf, LOG_DUMP_TOTAL_BUFSIZE);
+ }
+ if (dld_buf_special->buffer) {
+ DHD_OS_PREFREE(dhd, dld_buf_special->buffer,
+ dld_buf_size[DLD_BUF_TYPE_SPECIAL]);
+ }
+#else
+ if (prealloc_buf) {
+ VMFREE(dhd->osh, prealloc_buf, LOG_DUMP_TOTAL_BUFSIZE);
+ }
+ if (dld_buf_special->buffer) {
+ VMFREE(dhd->osh, dld_buf_special->buffer,
+ dld_buf_size[DLD_BUF_TYPE_SPECIAL]);
+ }
+#endif /* CONFIG_DHD_USE_STATIC_BUF */
+ for (i = 0; i < DLD_BUFFER_NUM; i++) {
+ dld_buf = &g_dld_buf[i];
+ dld_buf->enable = 0;
+ dld_buf->buffer = NULL;
+ }
+
+ mutex_destroy(&dhd_info->logdump_lock);
+}
+
+void
+dhd_log_dump_deinit(dhd_pub_t *dhd)
+{
+ struct dhd_log_dump_buf *dld_buf = NULL, *dld_buf_special = NULL;
+ int i = 0;
+ dhd_info_t *dhd_info = dhd->info;
+ dhd_dbg_ring_t *ring = NULL;
+
+ BCM_REFERENCE(ring);
+
+ if (dhd->concise_dbg_buf) {
+ MFREE(dhd->osh, dhd->concise_dbg_buf, CONCISE_DUMP_BUFLEN);
+ dhd->concise_dbg_buf = NULL;
+ }
+
+ if (dhd->logdump_cookie) {
+ dhd_logdump_cookie_deinit(dhd);
+ MFREE(dhd->osh, dhd->logdump_cookie, LOG_DUMP_COOKIE_BUFSIZE);
+ dhd->logdump_cookie = NULL;
+ }
+
+#if defined(DHD_EVENT_LOG_FILTER)
+ if (dhd->event_log_filter) {
+ dhd_event_log_filter_deinit(dhd);
+ }
+#endif /* DHD_EVENT_LOG_FILTER */
+
+#ifdef EWP_ECNTRS_LOGGING
+ if (dhd->ecntr_dbg_ring) {
+ ring = (dhd_dbg_ring_t *)dhd->ecntr_dbg_ring;
+ dhd_dbg_ring_deinit(dhd, ring);
+ ring->ring_buf = NULL;
+ ring->ring_size = 0;
+ MFREE(dhd->osh, ring, sizeof(dhd_dbg_ring_t));
+ dhd->ecntr_dbg_ring = NULL;
+ }
+#endif /* EWP_ECNTRS_LOGGING */
+
+#ifdef EWP_RTT_LOGGING
+ if (dhd->rtt_dbg_ring) {
+ ring = (dhd_dbg_ring_t *)dhd->rtt_dbg_ring;
+ dhd_dbg_ring_deinit(dhd, ring);
+ ring->ring_buf = NULL;
+ ring->ring_size = 0;
+ MFREE(dhd->osh, ring, sizeof(dhd_dbg_ring_t));
+ dhd->rtt_dbg_ring = NULL;
+ }
+#endif /* EWP_RTT_LOGGING */
+
+ /* 'general' buffer points to start of the pre-alloc'd memory */
+ dld_buf = &g_dld_buf[DLD_BUF_TYPE_GENERAL];
+ dld_buf_special = &g_dld_buf[DLD_BUF_TYPE_SPECIAL];
+#if defined(CONFIG_DHD_USE_STATIC_BUF) && defined(DHD_USE_STATIC_MEMDUMP)
+ if (dld_buf->buffer) {
+ DHD_OS_PREFREE(dhd, dld_buf->buffer, LOG_DUMP_TOTAL_BUFSIZE);
+ }
+ if (dld_buf_special->buffer) {
+ DHD_OS_PREFREE(dhd, dld_buf_special->buffer,
+ dld_buf_size[DLD_BUF_TYPE_SPECIAL]);
+ }
+#else
+ if (dld_buf->buffer) {
+ VMFREE(dhd->osh, dld_buf->buffer, LOG_DUMP_TOTAL_BUFSIZE);
+ }
+ if (dld_buf_special->buffer) {
+ VMFREE(dhd->osh, dld_buf_special->buffer,
+ dld_buf_size[DLD_BUF_TYPE_SPECIAL]);
+ }
+#endif /* CONFIG_DHD_USE_STATIC_BUF */
+ for (i = 0; i < DLD_BUFFER_NUM; i++) {
+ dld_buf = &g_dld_buf[i];
+ dld_buf->enable = 0;
+ dld_buf->buffer = NULL;
+ }
+
+ mutex_destroy(&dhd_info->logdump_lock);
+}
+
+void
+dhd_log_dump_write(int type, char *binary_data,
+ int binary_len, const char *fmt, ...)
+{
+ int len = 0;
+ char tmp_buf[DHD_LOG_DUMP_MAX_TEMP_BUFFER_SIZE] = {0, };
+ va_list args;
+ unsigned long flags = 0;
+ struct dhd_log_dump_buf *dld_buf = NULL;
+ bool flush_log = FALSE;
+
+ if (type < 0 || type >= DLD_BUFFER_NUM) {
+ DHD_INFO(("%s: Unknown DHD_LOG_DUMP_BUF_TYPE(%d).\n",
+ __FUNCTION__, type));
+ return;
+ }
+
+ dld_buf = &g_dld_buf[type];
+
+ if (dld_buf->enable != 1) {
+ return;
+ }
+
+ va_start(args, fmt);
+ len = vsnprintf(tmp_buf, DHD_LOG_DUMP_MAX_TEMP_BUFFER_SIZE, fmt, args);
+ /* Non ANSI C99 compliant returns -1,
+ * ANSI compliant return len >= DHD_LOG_DUMP_MAX_TEMP_BUFFER_SIZE
+ */
+ va_end(args);
+ if (len < 0) {
+ return;
+ }
+
+ if (len >= DHD_LOG_DUMP_MAX_TEMP_BUFFER_SIZE) {
+ len = DHD_LOG_DUMP_MAX_TEMP_BUFFER_SIZE - 1;
+ tmp_buf[len] = '\0';
+ }
+
+ /* make a critical section to eliminate race conditions */
+ spin_lock_irqsave(&dld_buf->lock, flags);
+ if (dld_buf->remain < len) {
+ dld_buf->wraparound = 1;
+ dld_buf->present = dld_buf->front;
+ dld_buf->remain = dld_buf_size[type];
+ /* if wrap around happens, flush the ring buffer to the file */
+ flush_log = TRUE;
+ }
+
+ memcpy(dld_buf->present, tmp_buf, len);
+ dld_buf->remain -= len;
+ dld_buf->present += len;
+ spin_unlock_irqrestore(&dld_buf->lock, flags);
+
+ /* double check invalid memory operation */
+ ASSERT((unsigned long)dld_buf->present <= dld_buf->max);
+
+ if (dld_buf->dhd_pub) {
+ dhd_pub_t *dhdp = (dhd_pub_t *)dld_buf->dhd_pub;
+ dhdp->logdump_periodic_flush =
+ logdump_periodic_flush;
+ if (logdump_periodic_flush && flush_log) {
+ log_dump_type_t *flush_type = MALLOCZ(dhdp->osh,
+ sizeof(log_dump_type_t));
+ if (flush_type) {
+ *flush_type = type;
+ dhd_schedule_log_dump(dld_buf->dhd_pub, flush_type);
+ }
+ }
+ }
+}
+
+char*
+dhd_log_dump_get_timestamp(void)
+{
+ static char buf[16];
+ u64 ts_nsec;
+ unsigned long rem_nsec;
+
+ ts_nsec = local_clock();
+ rem_nsec = DIV_AND_MOD_U64_BY_U32(ts_nsec, NSEC_PER_SEC);
+ snprintf(buf, sizeof(buf), "%5lu.%06lu",
+ (unsigned long)ts_nsec, rem_nsec / NSEC_PER_USEC);
+
+ return buf;
+}
+#endif /* DHD_LOG_DUMP */
+
+#ifdef DHD_PCIE_NATIVE_RUNTIMEPM
+void
+dhd_flush_rx_tx_wq(dhd_pub_t *dhdp)
+{
+ dhd_info_t * dhd;
+
+ if (dhdp) {
+ dhd = dhdp->info;
+ if (dhd) {
+ flush_workqueue(dhd->tx_wq);
+ flush_workqueue(dhd->rx_wq);
+ }
+ }
+
+ return;
+}
+#endif /* DHD_PCIE_NATIVE_RUNTIMEPM */
+
+#ifdef DHD_DEBUG_UART
+bool
+dhd_debug_uart_is_running(struct net_device *dev)
+{
+ dhd_info_t *dhd = DHD_DEV_INFO(dev);
+
+ if (dhd->duart_execute) {
+ return TRUE;
+ }
+
+ return FALSE;
+}
+
+static void
+dhd_debug_uart_exec_rd(void *handle, void *event_info, u8 event)
+{
+ dhd_pub_t *dhdp = handle;
+ dhd_debug_uart_exec(dhdp, "rd");
+}
+
+static void
+dhd_debug_uart_exec(dhd_pub_t *dhdp, char *cmd)
+{
+ int ret;
+
+ char *argv[] = {DHD_DEBUG_UART_EXEC_PATH, cmd, NULL};
+ char *envp[] = {"HOME=/", "TERM=linux", "PATH=/sbin:/system/bin", NULL};
+
+#ifdef DHD_FW_COREDUMP
+ if (dhdp->memdump_enabled == DUMP_MEMFILE_BUGON)
+#endif // endif
+ {
+ if (dhdp->hang_reason == HANG_REASON_PCIE_LINK_DOWN_RC_DETECT ||
+ dhdp->hang_reason == HANG_REASON_PCIE_LINK_DOWN_EP_DETECT ||
+#ifdef DHD_FW_COREDUMP
+ dhdp->memdump_success == FALSE ||
+#endif // endif
+ FALSE) {
+ dhdp->info->duart_execute = TRUE;
+ DHD_ERROR(("DHD: %s - execute %s %s\n",
+ __FUNCTION__, DHD_DEBUG_UART_EXEC_PATH, cmd));
+ ret = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
+ DHD_ERROR(("DHD: %s - %s %s ret = %d\n",
+ __FUNCTION__, DHD_DEBUG_UART_EXEC_PATH, cmd, ret));
+ dhdp->info->duart_execute = FALSE;
+
+#ifdef DHD_LOG_DUMP
+ if (dhdp->memdump_type != DUMP_TYPE_BY_SYSDUMP)
+#endif // endif
+ {
+ BUG_ON(1);
+ }
+ }
+ }
+}
+#endif /* DHD_DEBUG_UART */
+
+#if defined(DHD_BLOB_EXISTENCE_CHECK)
+void
+dhd_set_blob_support(dhd_pub_t *dhdp, char *fw_path)
+{
+ struct file *fp;
+ char *filepath = VENDOR_PATH CONFIG_BCMDHD_CLM_PATH;
+ fp = filp_open(filepath, O_RDONLY, 0);
+ if (IS_ERR(fp)) {
+ DHD_ERROR(("%s: ----- blob file doesn't exist (%s) -----\n", __FUNCTION__,
+ filepath));
+ dhdp->is_blob = FALSE;
+ } else {
+ DHD_ERROR(("%s: ----- blob file exists (%s)-----\n", __FUNCTION__, filepath));
+ dhdp->is_blob = TRUE;
+#if defined(CONCATE_BLOB)
+ strncat(fw_path, "_blob", strlen("_blob"));
+#else
+ BCM_REFERENCE(fw_path);
+#endif /* SKIP_CONCATE_BLOB */
+ filp_close(fp, NULL);
+ }
+}
+#endif /* DHD_BLOB_EXISTENCE_CHECK */
+
+#if defined(PCIE_FULL_DONGLE)
+/** test / loopback */
+void
+dmaxfer_free_dmaaddr_handler(void *handle, void *event_info, u8 event)
+{
+ dmaxref_mem_map_t *dmmap = (dmaxref_mem_map_t *)event_info;
+ dhd_info_t *dhd_info = (dhd_info_t *)handle;
+
+ if (event != DHD_WQ_WORK_DMA_LB_MEM_REL) {
+ DHD_ERROR(("%s: Unexpected event \n", __FUNCTION__));
+ return;
+ }
+ if (dhd_info == NULL) {
+ DHD_ERROR(("%s: Invalid dhd_info\n", __FUNCTION__));
+ return;
+ }
+ if (dmmap == NULL) {
+ DHD_ERROR(("%s: dmmap is null\n", __FUNCTION__));
+ return;
+ }
+ dmaxfer_free_prev_dmaaddr(&dhd_info->pub, dmmap);
+}
+
+void
+dhd_schedule_dmaxfer_free(dhd_pub_t *dhdp, dmaxref_mem_map_t *dmmap)
+{
+ dhd_info_t *dhd_info = dhdp->info;
+
+ dhd_deferred_schedule_work(dhd_info->dhd_deferred_wq, (void *)dmmap,
+ DHD_WQ_WORK_DMA_LB_MEM_REL, dmaxfer_free_dmaaddr_handler, DHD_WQ_WORK_PRIORITY_LOW);
+}
+#endif /* PCIE_FULL_DONGLE */
+/* ---------------------------- End of sysfs implementation ------------------------------------- */
+
+#ifdef SET_PCIE_IRQ_CPU_CORE
+void
+dhd_set_irq_cpucore(dhd_pub_t *dhdp, int affinity_cmd)
+{
+ unsigned int pcie_irq = 0;
+
+ if (!dhdp) {
+ DHD_ERROR(("%s : dhd is NULL\n", __FUNCTION__));
+ return;
+ }
+
+ if (!dhdp->bus) {
+ DHD_ERROR(("%s : dhd->bus is NULL\n", __FUNCTION__));
+ return;
+ }
+
+ DHD_ERROR(("Enter %s, PCIe affinity cmd=0x%x\n", __FUNCTION__, affinity_cmd));
+
+ if (dhdpcie_get_pcieirq(dhdp->bus, &pcie_irq)) {
+ DHD_ERROR(("%s : Can't get interrupt number\n", __FUNCTION__));
+ return;
+ }
+
+ /*
+ irq_set_affinity() assign dedicated CPU core PCIe interrupt
+ If dedicated CPU core is not on-line,
+ PCIe interrupt scheduled on CPU core 0
+ */
+ switch (affinity_cmd) {
+ case PCIE_IRQ_AFFINITY_OFF:
+ break;
+ case PCIE_IRQ_AFFINITY_BIG_CORE_ANY:
+#if defined(CONFIG_ARCH_SM8150)
+ irq_set_affinity_hint(pcie_irq, dhdp->info->cpumask_primary);
+ irq_set_affinity(pcie_irq, dhdp->info->cpumask_primary);
+#else /* Exynos and Others */
+ irq_set_affinity(pcie_irq, dhdp->info->cpumask_primary);
+#endif /* CONFIG_ARCH_SM8150 */
+ break;
+#if defined(CONFIG_SOC_EXYNOS9810) || defined(CONFIG_SOC_EXYNOS9820)
+ case PCIE_IRQ_AFFINITY_BIG_CORE_EXYNOS:
+ DHD_ERROR(("%s, PCIe IRQ:%u set Core %d\n",
+ __FUNCTION__, pcie_irq, PCIE_IRQ_CPU_CORE));
+ irq_set_affinity(pcie_irq, cpumask_of(PCIE_IRQ_CPU_CORE));
+ break;
+#endif /* CONFIG_SOC_EXYNOS9810 || CONFIG_SOC_EXYNOS9820 */
+ default:
+ DHD_ERROR(("%s, Unknown PCIe affinity cmd=0x%x\n",
+ __FUNCTION__, affinity_cmd));
+ }
+}
+#endif /* SET_PCIE_IRQ_CPU_CORE */
+
+int
+dhd_write_file(const char *filepath, char *buf, int buf_len)
+{
+ struct file *fp = NULL;
+ int ret = 0;
+ /* change to KERNEL_DS address limit */
+#if defined(KERNEL_DS) && defined(USER_DS)
+ mm_segment_t old_fs;
+ old_fs = get_fs();
+ set_fs(KERNEL_DS);
+#endif /* KERNEL_DS && USER_DS */
+
+ /* File is always created. */
+ fp = filp_open(filepath, O_RDWR | O_CREAT, 0664);
+ if (IS_ERR(fp)) {
+ DHD_ERROR(("%s: Couldn't open file '%s' err %ld\n",
+ __FUNCTION__, filepath, PTR_ERR(fp)));
+ ret = BCME_ERROR;
+ } else {
+ if (fp->f_mode & FMODE_WRITE) {
+ ret = vfs_write(fp, buf, buf_len, &fp->f_pos);
+ if (ret < 0) {
+ DHD_ERROR(("%s: Couldn't write file '%s'\n",
+ __FUNCTION__, filepath));
+ ret = BCME_ERROR;
+ } else {
+ ret = BCME_OK;
+ }
+ }
+ filp_close(fp, NULL);
+ }
+
+ /* restore previous address limit */
+#if defined(KERNEL_DS) && defined(USER_DS)
+ set_fs(old_fs);
+#endif /* KERNEL_DS && USER_DS */
+
+ return ret;
+}
+
+int
+dhd_read_file(const char *filepath, char *buf, int buf_len)
+{
+ struct file *fp = NULL;
+ int ret;
+ /* change to KERNEL_DS address limit */
+#if defined(KERNEL_DS) && defined(USER_DS)
+ mm_segment_t old_fs;
+ old_fs = get_fs();
+ set_fs(KERNEL_DS);
+#endif /* KERNEL_DS && USER_DS */
+ fp = filp_open(filepath, O_RDONLY, 0);
+ if (IS_ERR(fp)) {
+#if defined(KERNEL_DS) && defined(USER_DS)
+ set_fs(old_fs);
+#endif /* KERNEL_DS && USER_DS */
+ DHD_ERROR(("%s: File %s doesn't exist\n", __FUNCTION__, filepath));
+ return BCME_ERROR;
+ }
+
+ ret = compat_kernel_read(fp, 0, buf, buf_len);
+ filp_close(fp, NULL);
+
+ /* restore previous address limit */
+#if defined(KERNEL_DS) && defined(USER_DS)
+ set_fs(old_fs);
+#endif /* KERNEL_DS && USER_DS */
+
+ /* Return the number of bytes read */
+ if (ret > 0) {
+ /* Success to read */
+ ret = 0;
+ } else {
+ DHD_ERROR(("%s: Couldn't read the file %s, ret=%d\n",
+ __FUNCTION__, filepath, ret));
+ ret = BCME_ERROR;
+ }
+
+ return ret;
+}
+
+int
+dhd_write_file_and_check(const char *filepath, char *buf, int buf_len)
+{
+ int ret;
+
+ ret = dhd_write_file(filepath, buf, buf_len);
+ if (ret < 0) {
+ return ret;
+ }
+
+ /* Read the file again and check if the file size is not zero */
+ memset(buf, 0, buf_len);
+ ret = dhd_read_file(filepath, buf, buf_len);
+
+ return ret;
+}
+
+#ifdef DHD_BANDSTEER
+/*
+ * Function return true only if there exactly two GO interfaces
+ * TODO: Make it flexible to have AP + AP
+ */
+s32
+dhd_bandsteer_get_ifaces(void *pub, void *ifaces)
+{
+ dhd_if_t *iflist; /* For supporting multiple interfaces */
+ uint8 idx;
+ uint8 ap_idx_count = 0;
+ dhd_pub_t *dhd = (dhd_pub_t *) pub;
+ dhd_bandsteer_iface_info_t *bsd_ifp = (dhd_bandsteer_iface_info_t *)ifaces;
+
+ DHD_INFO(("%s: entered\n", __FUNCTION__));
+ for (idx = 0; idx < DHD_MAX_IFS; idx++) {
+ iflist = dhd->info->iflist[idx];
+ if (iflist == NULL) {
+ continue;
+ }
+
+ if (iflist->net != NULL) {
+ if (iflist->net->ieee80211_ptr != NULL) {
+ if (
+ (iflist->net->ieee80211_ptr->iftype == NL80211_IFTYPE_P2P_GO) ||
+ (iflist->net->ieee80211_ptr->iftype == NL80211_IFTYPE_AP)) {
+ ap_idx_count++;
+ if (ap_idx_count > 2) {
+ continue;
+ }
+ bsd_ifp->ndev = iflist->net;
+ bsd_ifp->bssidx = iflist->bssidx;
+ bsd_ifp++;
+ }
+ }
+ }
+ }
+ if (ap_idx_count == 2) {
+ return BCME_OK;
+ } else {
+ return BCME_ERROR;
+ }
+}
+
+void
+dhd_bandsteer_schedule_work_on_timeout(dhd_bandsteer_mac_entry_t *dhd_bandsteer_mac)
+{
+ dhd_bandsteer_context_t *dhd_bandsteer_cntx = dhd_bandsteer_mac->dhd_bandsteer_cntx;
+ dhd_pub_t *dhd = (dhd_pub_t *) dhd_bandsteer_cntx->dhd_pub;
+
+ dhd_deferred_schedule_work(dhd->info->dhd_deferred_wq,
+ (void *)dhd_bandsteer_mac, DHD_WQ_WORK_BANDSTEER_STEP_MOVE,
+ dhd_bandsteer_workqueue_wrapper, DHD_WQ_WORK_PRIORITY_LOW);
+}
+#endif /* DHD_BANDSTEER */
+
+#ifdef FILTER_IE
+int dhd_read_from_file(dhd_pub_t *dhd)
+{
+ int ret = 0, nread = 0;
+ void *fd;
+ uint8 *buf;
+ NULL_CHECK(dhd, "dhd is NULL", ret);
+
+ buf = MALLOCZ(dhd->osh, FILE_BLOCK_READ_SIZE);
+ if (!buf) {
+ DHD_ERROR(("error: failed to alllocate buf.\n"));
+ return BCME_NOMEM;
+ }
+
+ /* open file to read */
+ fd = dhd_os_open_image1(dhd, FILTER_IE_PATH);
+ if (!fd) {
+ DHD_ERROR(("error: failed to open %s\n", FILTER_IE_PATH));
+ ret = BCME_EPERM;
+ goto exit;
+ }
+ nread = dhd_os_get_image_block(buf, (FILE_BLOCK_READ_SIZE - 1), fd);
+ if (nread > 0) {
+ buf[nread] = '\0';
+ if ((ret = dhd_parse_filter_ie(dhd, buf)) < 0) {
+ DHD_ERROR(("error: failed to parse filter ie\n"));
+ }
+ } else {
+ DHD_ERROR(("error: zero length file.failed to read\n"));
+ ret = BCME_ERROR;
+ }
+ dhd_os_close_image1(dhd, fd);
+exit:
+ if (buf) {
+ MFREE(dhd->osh, buf, FILE_BLOCK_READ_SIZE);
+ buf = NULL;
+ }
+ return ret;
+}
+
+int dhd_get_filter_ie_count(dhd_pub_t *dhdp, uint8* buf)
+{
+ uint8* pstr = buf;
+ int element_count = 0;
+
+ if (buf == NULL) {
+ return BCME_ERROR;
+ }
+
+ while (*pstr != '\0') {
+ if (*pstr == '\n') {
+ element_count++;
+ }
+ pstr++;
+ }
+ /*
+ * New line character must not be present after last line.
+ * To count last line
+ */
+ element_count++;
+
+ return element_count;
+}
+
+int dhd_parse_oui(dhd_pub_t *dhd, uint8 *inbuf, uint8 *oui, int len)
+{
+ uint8 i, j, msb, lsb, oui_len = 0;
+ /*
+ * OUI can vary from 3 bytes to 5 bytes.
+ * While reading from file as ascii input it can
+ * take maximum size of 14 bytes and minumum size of
+ * 8 bytes including ":"
+ * Example 5byte OUI <AB:DE:BE:CD:FA>
+ * Example 3byte OUI <AB:DC:EF>
+ */
+
+ if ((inbuf == NULL) || (len < 8) || (len > 14)) {
+ DHD_ERROR(("error: failed to parse OUI \n"));
+ return BCME_ERROR;
+ }
+
+ for (j = 0, i = 0; i < len; i += 3, ++j) {
+ if (!bcm_isxdigit(inbuf[i]) || !bcm_isxdigit(inbuf[i + 1])) {
+ DHD_ERROR(("error: invalid OUI format \n"));
+ return BCME_ERROR;
+ }
+ msb = inbuf[i] > '9' ? bcm_toupper(inbuf[i]) - 'A' + 10 : inbuf[i] - '0';
+ lsb = inbuf[i + 1] > '9' ? bcm_toupper(inbuf[i + 1]) -
+ 'A' + 10 : inbuf[i + 1] - '0';
+ oui[j] = (msb << 4) | lsb;
+ }
+ /* Size of oui.It can vary from 3/4/5 */
+ oui_len = j;
+
+ return oui_len;
+}
+
+int dhd_check_valid_ie(dhd_pub_t *dhdp, uint8* buf, int len)
+{
+ int i = 0;
+
+ while (i < len) {
+ if (!bcm_isdigit(buf[i])) {
+ DHD_ERROR(("error: non digit value found in filter_ie \n"));
+ return BCME_ERROR;
+ }
+ i++;
+ }
+ if (bcm_atoi((char*)buf) > 255) {
+ DHD_ERROR(("error: element id cannot be greater than 255 \n"));
+ return BCME_ERROR;
+ }
+
+ return BCME_OK;
+}
+
+int dhd_parse_filter_ie(dhd_pub_t *dhd, uint8 *buf)
+{
+ int element_count = 0, i = 0, oui_size = 0, ret = 0;
+ uint16 bufsize, buf_space_left, id = 0, len = 0;
+ uint16 filter_iovsize, all_tlvsize;
+ wl_filter_ie_tlv_t *p_ie_tlv = NULL;
+ wl_filter_ie_iov_v1_t *p_filter_iov = (wl_filter_ie_iov_v1_t *) NULL;
+ char *token = NULL, *ele_token = NULL, *oui_token = NULL, *type = NULL;
+ uint8 data[20];
+
+ element_count = dhd_get_filter_ie_count(dhd, buf);
+ DHD_INFO(("total element count %d \n", element_count));
+ /* Calculate the whole buffer size */
+ filter_iovsize = sizeof(wl_filter_ie_iov_v1_t) + FILTER_IE_BUFSZ;
+ p_filter_iov = MALLOCZ(dhd->osh, filter_iovsize);
+
+ if (p_filter_iov == NULL) {
+ DHD_ERROR(("error: failed to allocate %d bytes of memory\n", filter_iovsize));
+ return BCME_ERROR;
+ }
+
+ /* setup filter iovar header */
+ p_filter_iov->version = WL_FILTER_IE_VERSION;
+ p_filter_iov->len = filter_iovsize;
+ p_filter_iov->fixed_length = p_filter_iov->len - FILTER_IE_BUFSZ;
+ p_filter_iov->pktflag = FC_PROBE_REQ;
+ p_filter_iov->option = WL_FILTER_IE_CHECK_SUB_OPTION;
+ /* setup TLVs */
+ bufsize = filter_iovsize - WL_FILTER_IE_IOV_HDR_SIZE; /* adjust available size for TLVs */
+ p_ie_tlv = (wl_filter_ie_tlv_t *)&p_filter_iov->tlvs[0];
+ buf_space_left = bufsize;
+
+ while ((i < element_count) && (buf != NULL)) {
+ len = 0;
+ /* token contains one line of input data */
+ token = bcmstrtok((char**)&buf, "\n", NULL);
+ if (token == NULL) {
+ break;
+ }
+ if ((ele_token = bcmstrstr(token, ",")) == NULL) {
+ /* only element id is present */
+ if (dhd_check_valid_ie(dhd, token, strlen(token)) == BCME_ERROR) {
+ DHD_ERROR(("error: Invalid element id \n"));
+ ret = BCME_ERROR;
+ goto exit;
+ }
+ id = bcm_atoi((char*)token);
+ data[len++] = WL_FILTER_IE_SET;
+ } else {
+ /* oui is present */
+ ele_token = bcmstrtok(&token, ",", NULL);
+ if ((ele_token == NULL) || (dhd_check_valid_ie(dhd, ele_token,
+ strlen(ele_token)) == BCME_ERROR)) {
+ DHD_ERROR(("error: Invalid element id \n"));
+ ret = BCME_ERROR;
+ goto exit;
+ }
+ id = bcm_atoi((char*)ele_token);
+ data[len++] = WL_FILTER_IE_SET;
+ if ((oui_token = bcmstrstr(token, ",")) == NULL) {
+ oui_size = dhd_parse_oui(dhd, token, &(data[len]), strlen(token));
+ if (oui_size == BCME_ERROR) {
+ DHD_ERROR(("error: Invalid OUI \n"));
+ ret = BCME_ERROR;
+ goto exit;
+ }
+ len += oui_size;
+ } else {
+ /* type is present */
+ oui_token = bcmstrtok(&token, ",", NULL);
+ if ((oui_token == NULL) || ((oui_size =
+ dhd_parse_oui(dhd, oui_token,
+ &(data[len]), strlen(oui_token))) == BCME_ERROR)) {
+ DHD_ERROR(("error: Invalid OUI \n"));
+ ret = BCME_ERROR;
+ goto exit;
+ }
+ len += oui_size;
+ if ((type = bcmstrstr(token, ",")) == NULL) {
+ if (dhd_check_valid_ie(dhd, token,
+ strlen(token)) == BCME_ERROR) {
+ DHD_ERROR(("error: Invalid type \n"));
+ ret = BCME_ERROR;
+ goto exit;
+ }
+ data[len++] = bcm_atoi((char*)token);
+ } else {
+ /* subtype is present */
+ type = bcmstrtok(&token, ",", NULL);
+ if ((type == NULL) || (dhd_check_valid_ie(dhd, type,
+ strlen(type)) == BCME_ERROR)) {
+ DHD_ERROR(("error: Invalid type \n"));
+ ret = BCME_ERROR;
+ goto exit;
+ }
+ data[len++] = bcm_atoi((char*)type);
+ /* subtype is last element */
+ if ((token == NULL) || (*token == '\0') ||
+ (dhd_check_valid_ie(dhd, token,
+ strlen(token)) == BCME_ERROR)) {
+ DHD_ERROR(("error: Invalid subtype \n"));
+ ret = BCME_ERROR;
+ goto exit;
+ }
+ data[len++] = bcm_atoi((char*)token);
+ }
+ }
+ }
+ ret = bcm_pack_xtlv_entry((uint8 **)&p_ie_tlv,
+ &buf_space_left, id, len, data, BCM_XTLV_OPTION_ALIGN32);
+ if (ret != BCME_OK) {
+ DHD_ERROR(("%s : bcm_pack_xtlv_entry() failed ,"
+ "status=%d\n", __FUNCTION__, ret));
+ goto exit;
+ }
+ i++;
+ }
+ if (i == 0) {
+ /* file is empty or first line is blank */
+ DHD_ERROR(("error: filter_ie file is empty or first line is blank \n"));
+ ret = BCME_ERROR;
+ goto exit;
+ }
+ /* update the iov header, set len to include all TLVs + header */
+ all_tlvsize = (bufsize - buf_space_left);
+ p_filter_iov->len = htol16(all_tlvsize + WL_FILTER_IE_IOV_HDR_SIZE);
+ ret = dhd_iovar(dhd, 0, "filter_ie", (void *)p_filter_iov,
+ p_filter_iov->len, NULL, 0, TRUE);
+ if (ret != BCME_OK) {
+ DHD_ERROR(("error: IOVAR failed, status=%d\n", ret));
+ }
+exit:
+ /* clean up */
+ if (p_filter_iov) {
+ MFREE(dhd->osh, p_filter_iov, filter_iovsize);
+ p_filter_iov = NULL;
+ }
+ return ret;
+}
+#endif /* FILTER_IE */
+#ifdef DHD_WAKE_STATUS
+wake_counts_t*
+dhd_get_wakecount(dhd_pub_t *dhdp)
+{
+ return dhd_bus_get_wakecount(dhdp);
+}
+#endif /* DHD_WAKE_STATUS */
+
+int
+dhd_get_random_bytes(uint8 *buf, uint len)
+{
+#ifdef BCMPCIE
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 19, 0))
+ int rndlen = get_random_bytes_arch(buf, len);
+ if (rndlen != len) {
+ bzero(buf, len);
+ get_random_bytes(buf, len);
+ }
+#else
+ get_random_bytes_arch(buf, len);
+#endif // endif
+#endif /* BCMPCIE */
+ return BCME_OK;
+}
+
+#if defined(DHD_HANG_SEND_UP_TEST)
+void
+dhd_make_hang_with_reason(struct net_device *dev, const char *string_num)
+{
+ dhd_info_t *dhd = NULL;
+ dhd_pub_t *dhdp = NULL;
+ uint reason = HANG_REASON_MAX;
+ uint32 fw_test_code = 0;
+ dhd = DHD_DEV_INFO(dev);
+
+ if (dhd) {
+ dhdp = &dhd->pub;
+ }
+
+ if (!dhd || !dhdp) {
+ return;
+ }
+
+ reason = (uint) bcm_strtoul(string_num, NULL, 0);
+ DHD_ERROR(("Enter %s, reason=0x%x\n", __FUNCTION__, reason));
+
+ if (reason == 0) {
+ if (dhdp->req_hang_type) {
+ DHD_ERROR(("%s, Clear HANG test request 0x%x\n",
+ __FUNCTION__, dhdp->req_hang_type));
+ dhdp->req_hang_type = 0;
+ return;
+ } else {
+ DHD_ERROR(("%s, No requested HANG test\n", __FUNCTION__));
+ return;
+ }
+ } else if ((reason <= HANG_REASON_MASK) || (reason >= HANG_REASON_MAX)) {
+ DHD_ERROR(("Invalid HANG request, reason 0x%x\n", reason));
+ return;
+ }
+
+ if (dhdp->req_hang_type != 0) {
+ DHD_ERROR(("Already HANG requested for test\n"));
+ return;
+ }
+
+ switch (reason) {
+ case HANG_REASON_IOCTL_RESP_TIMEOUT:
+ DHD_ERROR(("Make HANG!!!: IOCTL response timeout(0x%x)\n", reason));
+ dhdp->req_hang_type = reason;
+ fw_test_code = 102; /* resumed on timeour */
+ (void) dhd_wl_ioctl_set_intiovar(dhdp, "bus:disconnect", fw_test_code,
+ WLC_SET_VAR, TRUE, 0);
+ break;
+ case HANG_REASON_DONGLE_TRAP:
+ DHD_ERROR(("Make HANG!!!: Dongle trap (0x%x)\n", reason));
+ dhdp->req_hang_type = reason;
+ fw_test_code = 99; /* dongle trap */
+ (void) dhd_wl_ioctl_set_intiovar(dhdp, "bus:disconnect", fw_test_code,
+ WLC_SET_VAR, TRUE, 0);
+ break;
+ case HANG_REASON_D3_ACK_TIMEOUT:
+ DHD_ERROR(("Make HANG!!!: D3 ACK timeout (0x%x)\n", reason));
+ dhdp->req_hang_type = reason;
+ break;
+ case HANG_REASON_BUS_DOWN:
+ DHD_ERROR(("Make HANG!!!: BUS down(0x%x)\n", reason));
+ dhdp->req_hang_type = reason;
+ break;
+ case HANG_REASON_PCIE_LINK_DOWN_RC_DETECT:
+ case HANG_REASON_PCIE_LINK_DOWN_EP_DETECT:
+ case HANG_REASON_MSGBUF_LIVELOCK:
+ dhdp->req_hang_type = 0;
+ DHD_ERROR(("Does not support requested HANG(0x%x)\n", reason));
+ break;
+ case HANG_REASON_IFACE_DEL_FAILURE:
+ dhdp->req_hang_type = 0;
+ DHD_ERROR(("Does not support requested HANG(0x%x)\n", reason));
+ break;
+ case HANG_REASON_HT_AVAIL_ERROR:
+ dhdp->req_hang_type = 0;
+ DHD_ERROR(("PCIe does not support requested HANG(0x%x)\n", reason));
+ break;
+ case HANG_REASON_PCIE_RC_LINK_UP_FAIL:
+ DHD_ERROR(("Make HANG!!!:Link Up(0x%x)\n", reason));
+ dhdp->req_hang_type = reason;
+ break;
+ default:
+ dhdp->req_hang_type = 0;
+ DHD_ERROR(("Unknown HANG request (0x%x)\n", reason));
+ break;
+ }
+}
+#endif /* DHD_HANG_SEND_UP_TEST */
+
+#ifdef DHD_ERPOM
+static void
+dhd_error_recovery(void *handle, void *event_info, u8 event)
+{
+ dhd_info_t *dhd = handle;
+ dhd_pub_t *dhdp;
+ int ret = 0;
+
+ if (!dhd) {
+ DHD_ERROR(("%s: dhd is NULL\n", __FUNCTION__));
+ return;
+ }
+
+ dhdp = &dhd->pub;
+
+ if (!(dhd->dhd_state & DHD_ATTACH_STATE_DONE)) {
+ DHD_ERROR(("%s: init not completed, cannot initiate recovery\n",
+ __FUNCTION__));
+ return;
+ }
+
+ ret = dhd_bus_perform_flr_with_quiesce(dhdp, dhdp->bus, FALSE);
+ if (ret != BCME_DNGL_DEVRESET) {
+ DHD_ERROR(("%s: dhd_bus_perform_flr_with_quiesce failed with ret: %d,"
+ "toggle REG_ON\n", __FUNCTION__, ret));
+ /* toggle REG_ON */
+ dhdp->pom_toggle_reg_on(WLAN_FUNC_ID, BY_WLAN_DUE_TO_WLAN);
+ return;
+ }
+}
+
+void
+dhd_schedule_reset(dhd_pub_t *dhdp)
+{
+ if (dhdp->enable_erpom) {
+ dhd_deferred_schedule_work(dhdp->info->dhd_deferred_wq, NULL,
+ DHD_WQ_WORK_ERROR_RECOVERY, dhd_error_recovery, DHD_WQ_WORK_PRIORITY_HIGH);
+ }
+}
+#endif /* DHD_ERPOM */
+
+#ifdef DHD_PKT_LOGGING
+void
+dhd_pktlog_dump(void *handle, void *event_info, u8 event)
+{
+ dhd_info_t *dhd = handle;
+
+ if (!dhd) {
+ DHD_ERROR(("%s: dhd is NULL\n", __FUNCTION__));
+ return;
+ }
+
+ if (dhd_pktlog_dump_write_file(&dhd->pub)) {
+ DHD_ERROR(("%s: writing pktlog dump file failed\n", __FUNCTION__));
+ return;
+ }
+}
+
+void
+dhd_schedule_pktlog_dump(dhd_pub_t *dhdp)
+{
+ dhd_deferred_schedule_work(dhdp->info->dhd_deferred_wq,
+ (void*)NULL, DHD_WQ_WORK_PKTLOG_DUMP,
+ dhd_pktlog_dump, DHD_WQ_WORK_PRIORITY_HIGH);
+}
+#endif /* DHD_PKT_LOGGING */
+
+#ifdef BIGDATA_SOFTAP
+void dhd_schedule_gather_ap_stadata(void *bcm_cfg, void *ndev, const wl_event_msg_t *e)
+{
+ struct bcm_cfg80211 *cfg;
+ dhd_pub_t *dhdp;
+ ap_sta_wq_data_t *p_wq_data;
+
+ if (!bcm_cfg || !ndev || !e) {
+ WL_ERR(("bcm_cfg=%p ndev=%p e=%p\n", bcm_cfg, ndev, e));
+ return;
+ }
+
+ cfg = (struct bcm_cfg80211 *)bcm_cfg;
+ dhdp = (dhd_pub_t *)cfg->pub;
+
+ if (!dhdp || !cfg->ap_sta_info) {
+ WL_ERR(("dhdp=%p ap_sta_info=%p\n", dhdp, cfg->ap_sta_info));
+ return;
+ }
+
+ p_wq_data = (ap_sta_wq_data_t *)MALLOCZ(dhdp->osh, sizeof(ap_sta_wq_data_t));
+ if (unlikely(!p_wq_data)) {
+ DHD_ERROR(("%s(): could not allocate memory for - "
+ "ap_sta_wq_data_t\n", __FUNCTION__));
+ return;
+ }
+
+ mutex_lock(&cfg->ap_sta_info->wq_data_sync);
+
+ memcpy(&p_wq_data->e, e, sizeof(wl_event_msg_t));
+ p_wq_data->dhdp = dhdp;
+ p_wq_data->bcm_cfg = cfg;
+ p_wq_data->ndev = (struct net_device *)ndev;
+
+ mutex_unlock(&cfg->ap_sta_info->wq_data_sync);
+
+ dhd_deferred_schedule_work(dhdp->info->dhd_deferred_wq,
+ p_wq_data, DHD_WQ_WORK_GET_BIGDATA_AP,
+ wl_gather_ap_stadata, DHD_WQ_WORK_PRIORITY_HIGH);
+
+}
+#endif /* BIGDATA_SOFTAP */
+
+void
+get_debug_dump_time(char *str)
+{
+ struct timespec64 curtime;
+ unsigned long long local_time;
+
+ struct rtc_time tm;
+
+ if (!strlen(str)) {
+ ktime_get_real_ts64(&curtime);
+ local_time = (u64)(curtime.tv_sec -
+ (sys_tz.tz_minuteswest * DHD_LOG_DUMP_TS_MULTIPLIER_VALUE));
+ rtc_time_to_tm(local_time, &tm);
+
+ snprintf(str, DEBUG_DUMP_TIME_BUF_LEN, DHD_LOG_DUMP_TS_FMT_YYMMDDHHMMSSMSMS,
+ tm.tm_year - 100, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min,
+ tm.tm_sec, (int)(curtime.tv_nsec/NSEC_PER_MSEC));
+ }
+}
+
+void
+clear_debug_dump_time(char *str)
+{
+ memset(str, 0, DEBUG_DUMP_TIME_BUF_LEN);
+}
+#if defined(WL_CFGVENDOR_SEND_HANG_EVENT) || defined(DHD_PKT_LOGGING)
+void
+copy_debug_dump_time(char *dest, char *src)
+{
+ memcpy(dest, src, DEBUG_DUMP_TIME_BUF_LEN);
+}
+#endif /* WL_CFGVENDOR_SEND_HANG_EVENT || DHD_PKT_LOGGING */
+
+void
+dhd_print_tasklet_status(dhd_pub_t *dhd)
+{
+ dhd_info_t *dhdinfo;
+
+ if (!dhd) {
+ DHD_ERROR(("%s : DHD is null\n", __FUNCTION__));
+ return;
+ }
+
+ dhdinfo = dhd->info;
+
+ if (!dhdinfo) {
+ DHD_ERROR(("%s : DHD INFO is null \n", __FUNCTION__));
+ return;
+ }
+
+ DHD_ERROR(("DHD Tasklet status : 0x%lx\n", dhdinfo->tasklet.state));
+}
+
+/*
+ * DHD RING
+ */
+#define DHD_RING_ERR_INTERNAL(fmt, ...) DHD_ERROR(("EWPF-" fmt, ##__VA_ARGS__))
+#define DHD_RING_TRACE_INTERNAL(fmt, ...) DHD_INFO(("EWPF-" fmt, ##__VA_ARGS__))
+
+#define DHD_RING_ERR(x) DHD_RING_ERR_INTERNAL x
+#define DHD_RING_TRACE(x) DHD_RING_TRACE_INTERNAL x
+
+#define DHD_RING_MAGIC 0x20170910
+#define DHD_RING_IDX_INVALID 0xffffffff
+
+#define DHD_RING_SYNC_LOCK_INIT(osh) dhd_os_spin_lock_init(osh)
+#define DHD_RING_SYNC_LOCK_DEINIT(osh, lock) dhd_os_spin_lock_deinit(osh, lock)
+#define DHD_RING_SYNC_LOCK(lock, flags) (flags) = dhd_os_spin_lock(lock)
+#define DHD_RING_SYNC_UNLOCK(lock, flags) dhd_os_spin_unlock(lock, flags)
+
+typedef struct {
+ uint32 elem_size;
+ uint32 elem_cnt;
+ uint32 write_idx; /* next write index, -1 : not started */
+ uint32 read_idx; /* next read index, -1 : not start */
+
+ /* protected elements during serialization */
+ int lock_idx; /* start index of locked, element will not be overried */
+ int lock_count; /* number of locked, from lock idx */
+
+ /* saved data elements */
+ void *elem;
+} dhd_fixed_ring_info_t;
+
+typedef struct {
+ uint32 elem_size;
+ uint32 elem_cnt;
+ uint32 idx; /* -1 : not started */
+ uint32 rsvd; /* reserved for future use */
+
+ /* protected elements during serialization */
+ atomic_t ring_locked;
+ /* check the overwriting */
+ uint32 ring_overwrited;
+
+ /* saved data elements */
+ void *elem;
+} dhd_singleidx_ring_info_t;
+
+typedef struct {
+ uint32 magic;
+ uint32 type;
+ void *ring_sync; /* spinlock for sync */
+ union {
+ dhd_fixed_ring_info_t fixed;
+ dhd_singleidx_ring_info_t single;
+ };
+} dhd_ring_info_t;
+
+uint32
+dhd_ring_get_hdr_size(void)
+{
+ return sizeof(dhd_ring_info_t);
+}
+
+void *
+dhd_ring_init(dhd_pub_t *dhdp, uint8 *buf, uint32 buf_size, uint32 elem_size,
+ uint32 elem_cnt, uint32 type)
+{
+ dhd_ring_info_t *ret_ring;
+
+ if (!buf) {
+ DHD_RING_ERR(("NO RING BUFFER\n"));
+ return NULL;
+ }
+
+ if (buf_size < dhd_ring_get_hdr_size() + elem_size * elem_cnt) {
+ DHD_RING_ERR(("RING SIZE IS TOO SMALL\n"));
+ return NULL;
+ }
+
+ if (type != DHD_RING_TYPE_FIXED && type != DHD_RING_TYPE_SINGLE_IDX) {
+ DHD_RING_ERR(("UNSUPPORTED RING TYPE\n"));
+ return NULL;
+ }
+
+ ret_ring = (dhd_ring_info_t *)buf;
+ ret_ring->type = type;
+ ret_ring->ring_sync = DHD_RING_SYNC_LOCK_INIT(dhdp->osh);
+ ret_ring->magic = DHD_RING_MAGIC;
+
+ if (type == DHD_RING_TYPE_FIXED) {
+ ret_ring->fixed.read_idx = DHD_RING_IDX_INVALID;
+ ret_ring->fixed.write_idx = DHD_RING_IDX_INVALID;
+ ret_ring->fixed.lock_idx = DHD_RING_IDX_INVALID;
+ ret_ring->fixed.elem = buf + sizeof(dhd_ring_info_t);
+ ret_ring->fixed.elem_size = elem_size;
+ ret_ring->fixed.elem_cnt = elem_cnt;
+ } else {
+ ret_ring->single.idx = DHD_RING_IDX_INVALID;
+ atomic_set(&ret_ring->single.ring_locked, 0);
+ ret_ring->single.ring_overwrited = 0;
+ ret_ring->single.rsvd = 0;
+ ret_ring->single.elem = buf + sizeof(dhd_ring_info_t);
+ ret_ring->single.elem_size = elem_size;
+ ret_ring->single.elem_cnt = elem_cnt;
+ }
+
+ return ret_ring;
+}
+
+void
+dhd_ring_deinit(dhd_pub_t *dhdp, void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ if (!ring) {
+ return;
+ }
+
+ if (ring->magic != DHD_RING_MAGIC) {
+ return;
+ }
+
+ if (ring->type != DHD_RING_TYPE_FIXED &&
+ ring->type != DHD_RING_TYPE_SINGLE_IDX) {
+ return;
+ }
+
+ DHD_RING_SYNC_LOCK_DEINIT(dhdp->osh, ring->ring_sync);
+ ring->ring_sync = NULL;
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ dhd_fixed_ring_info_t *fixed = &ring->fixed;
+ memset(fixed->elem, 0, fixed->elem_size * fixed->elem_cnt);
+ fixed->elem_size = fixed->elem_cnt = 0;
+ } else {
+ dhd_singleidx_ring_info_t *single = &ring->single;
+ memset(single->elem, 0, single->elem_size * single->elem_cnt);
+ single->elem_size = single->elem_cnt = 0;
+ }
+ ring->type = 0;
+ ring->magic = 0;
+}
+
+static inline uint32
+__dhd_ring_ptr2idx(void *ring, void *ptr, char *sig, uint32 type)
+{
+ uint32 diff;
+ uint32 ret_idx = (uint32)DHD_RING_IDX_INVALID;
+ uint32 elem_size, elem_cnt;
+ void *elem;
+
+ if (type == DHD_RING_TYPE_FIXED) {
+ dhd_fixed_ring_info_t *fixed = (dhd_fixed_ring_info_t *)ring;
+ elem_size = fixed->elem_size;
+ elem_cnt = fixed->elem_cnt;
+ elem = fixed->elem;
+ } else if (type == DHD_RING_TYPE_SINGLE_IDX) {
+ dhd_singleidx_ring_info_t *single = (dhd_singleidx_ring_info_t *)ring;
+ elem_size = single->elem_size;
+ elem_cnt = single->elem_cnt;
+ elem = single->elem;
+ } else {
+ DHD_RING_ERR(("UNSUPPORTED RING TYPE %d\n", type));
+ return ret_idx;
+ }
+
+ if (ptr < elem) {
+ DHD_RING_ERR(("INVALID POINTER %s:%p, ring->elem:%p\n", sig, ptr, elem));
+ return ret_idx;
+ }
+ diff = (uint32)((uint8 *)ptr - (uint8 *)elem);
+ if (diff % elem_size != 0) {
+ DHD_RING_ERR(("INVALID POINTER %s:%p, ring->elem:%p\n", sig, ptr, elem));
+ return ret_idx;
+ }
+ ret_idx = diff / elem_size;
+ if (ret_idx >= elem_cnt) {
+ DHD_RING_ERR(("INVALID POINTER max:%d cur:%d\n", elem_cnt, ret_idx));
+ }
+ return ret_idx;
+}
+
+/* Sub functions for fixed ring */
+/* get counts between two indexes of ring buffer (internal only) */
+static inline int
+__dhd_fixed_ring_get_count(dhd_fixed_ring_info_t *ring, int start, int end)
+{
+ if (start == DHD_RING_IDX_INVALID || end == DHD_RING_IDX_INVALID) {
+ return 0;
+ }
+
+ return (ring->elem_cnt + end - start) % ring->elem_cnt + 1;
+}
+
+static inline int
+__dhd_fixed_ring_get_cur_size(dhd_fixed_ring_info_t *ring)
+{
+ return __dhd_fixed_ring_get_count(ring, ring->read_idx, ring->write_idx);
+}
+
+static inline void *
+__dhd_fixed_ring_get_first(dhd_fixed_ring_info_t *ring)
+{
+ if (ring->read_idx == DHD_RING_IDX_INVALID) {
+ return NULL;
+ }
+ return (uint8 *)ring->elem + (ring->elem_size * ring->read_idx);
+}
+
+static inline void
+__dhd_fixed_ring_free_first(dhd_fixed_ring_info_t *ring)
+{
+ uint32 next_idx;
+
+ if (ring->read_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("EMPTY RING\n"));
+ return;
+ }
+
+ next_idx = (ring->read_idx + 1) % ring->elem_cnt;
+ if (ring->read_idx == ring->write_idx) {
+ /* Become empty */
+ ring->read_idx = ring->write_idx = DHD_RING_IDX_INVALID;
+ return;
+ }
+
+ ring->read_idx = next_idx;
+ return;
+}
+
+static inline void *
+__dhd_fixed_ring_get_last(dhd_fixed_ring_info_t *ring)
+{
+ if (ring->read_idx == DHD_RING_IDX_INVALID) {
+ return NULL;
+ }
+ return (uint8 *)ring->elem + (ring->elem_size * ring->write_idx);
+}
+
+static inline void *
+__dhd_fixed_ring_get_empty(dhd_fixed_ring_info_t *ring)
+{
+ uint32 tmp_idx;
+
+ if (ring->read_idx == DHD_RING_IDX_INVALID) {
+ ring->read_idx = ring->write_idx = 0;
+ return (uint8 *)ring->elem;
+ }
+
+ /* check next index is not locked */
+ tmp_idx = (ring->write_idx + 1) % ring->elem_cnt;
+ if (ring->lock_idx == tmp_idx) {
+ return NULL;
+ }
+
+ ring->write_idx = tmp_idx;
+ if (ring->write_idx == ring->read_idx) {
+ /* record is full, drop oldest one */
+ ring->read_idx = (ring->read_idx + 1) % ring->elem_cnt;
+
+ }
+ return (uint8 *)ring->elem + (ring->elem_size * ring->write_idx);
+}
+
+static inline void *
+__dhd_fixed_ring_get_next(dhd_fixed_ring_info_t *ring, void *prev, uint32 type)
+{
+ uint32 cur_idx;
+
+ if (ring->read_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("EMPTY RING\n"));
+ return NULL;
+ }
+
+ cur_idx = __dhd_ring_ptr2idx(ring, prev, "NEXT", type);
+ if (cur_idx >= ring->elem_cnt) {
+ return NULL;
+ }
+
+ if (cur_idx == ring->write_idx) {
+ /* no more new record */
+ return NULL;
+ }
+
+ cur_idx = (cur_idx + 1) % ring->elem_cnt;
+ return (uint8 *)ring->elem + ring->elem_size * cur_idx;
+}
+
+static inline void *
+__dhd_fixed_ring_get_prev(dhd_fixed_ring_info_t *ring, void *prev, uint32 type)
+{
+ uint32 cur_idx;
+
+ if (ring->read_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("EMPTY RING\n"));
+ return NULL;
+ }
+ cur_idx = __dhd_ring_ptr2idx(ring, prev, "PREV", type);
+ if (cur_idx >= ring->elem_cnt) {
+ return NULL;
+ }
+ if (cur_idx == ring->read_idx) {
+ /* no more new record */
+ return NULL;
+ }
+
+ cur_idx = (cur_idx + ring->elem_cnt - 1) % ring->elem_cnt;
+ return (uint8 *)ring->elem + ring->elem_size * cur_idx;
+}
+
+static inline void
+__dhd_fixed_ring_lock(dhd_fixed_ring_info_t *ring, void *first_ptr, void *last_ptr, uint32 type)
+{
+ uint32 first_idx;
+ uint32 last_idx;
+ uint32 ring_filled_cnt;
+ uint32 tmp_cnt;
+
+ if (ring->read_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("EMPTY RING\n"));
+ return;
+ }
+
+ if (first_ptr) {
+ first_idx = __dhd_ring_ptr2idx(ring, first_ptr, "LCK FIRST", type);
+ if (first_idx >= ring->elem_cnt) {
+ return;
+ }
+ } else {
+ first_idx = ring->read_idx;
+ }
+
+ if (last_ptr) {
+ last_idx = __dhd_ring_ptr2idx(ring, last_ptr, "LCK LAST", type);
+ if (last_idx >= ring->elem_cnt) {
+ return;
+ }
+ } else {
+ last_idx = ring->write_idx;
+ }
+
+ ring_filled_cnt = __dhd_fixed_ring_get_count(ring, ring->read_idx, ring->write_idx);
+ tmp_cnt = __dhd_fixed_ring_get_count(ring, ring->read_idx, first_idx);
+ if (tmp_cnt > ring_filled_cnt) {
+ DHD_RING_ERR(("LOCK FIRST IS TO EMPTY ELEM: write: %d read: %d cur:%d\n",
+ ring->write_idx, ring->read_idx, first_idx));
+ return;
+ }
+
+ tmp_cnt = __dhd_fixed_ring_get_count(ring, ring->read_idx, last_idx);
+ if (tmp_cnt > ring_filled_cnt) {
+ DHD_RING_ERR(("LOCK LAST IS TO EMPTY ELEM: write: %d read: %d cur:%d\n",
+ ring->write_idx, ring->read_idx, last_idx));
+ return;
+ }
+
+ ring->lock_idx = first_idx;
+ ring->lock_count = __dhd_fixed_ring_get_count(ring, first_idx, last_idx);
+ return;
+}
+
+static inline void
+__dhd_fixed_ring_lock_free(dhd_fixed_ring_info_t *ring)
+{
+ if (ring->read_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("EMPTY RING\n"));
+ return;
+ }
+
+ ring->lock_idx = DHD_RING_IDX_INVALID;
+ ring->lock_count = 0;
+ return;
+}
+static inline void *
+__dhd_fixed_ring_lock_get_first(dhd_fixed_ring_info_t *ring)
+{
+ if (ring->read_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("EMPTY RING\n"));
+ return NULL;
+ }
+ if (ring->lock_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("NO LOCK POINT\n"));
+ return NULL;
+ }
+ return (uint8 *)ring->elem + ring->elem_size * ring->lock_idx;
+}
+
+static inline void *
+__dhd_fixed_ring_lock_get_last(dhd_fixed_ring_info_t *ring)
+{
+ int lock_last_idx;
+ if (ring->read_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("EMPTY RING\n"));
+ return NULL;
+ }
+ if (ring->lock_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("NO LOCK POINT\n"));
+ return NULL;
+ }
+
+ lock_last_idx = (ring->lock_idx + ring->lock_count - 1) % ring->elem_cnt;
+ return (uint8 *)ring->elem + ring->elem_size * lock_last_idx;
+}
+
+static inline int
+__dhd_fixed_ring_lock_get_count(dhd_fixed_ring_info_t *ring)
+{
+ if (ring->read_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("EMPTY RING\n"));
+ return BCME_ERROR;
+ }
+ if (ring->lock_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("NO LOCK POINT\n"));
+ return BCME_ERROR;
+ }
+ return ring->lock_count;
+}
+
+static inline void
+__dhd_fixed_ring_lock_free_first(dhd_fixed_ring_info_t *ring)
+{
+ if (ring->read_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("EMPTY RING\n"));
+ return;
+ }
+ if (ring->lock_idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("NO LOCK POINT\n"));
+ return;
+ }
+
+ ring->lock_count--;
+ if (ring->lock_count <= 0) {
+ ring->lock_idx = DHD_RING_IDX_INVALID;
+ } else {
+ ring->lock_idx = (ring->lock_idx + 1) % ring->elem_cnt;
+ }
+ return;
+}
+
+static inline void
+__dhd_fixed_ring_set_read_idx(dhd_fixed_ring_info_t *ring, uint32 idx)
+{
+ ring->read_idx = idx;
+}
+
+static inline void
+__dhd_fixed_ring_set_write_idx(dhd_fixed_ring_info_t *ring, uint32 idx)
+{
+ ring->write_idx = idx;
+}
+
+static inline uint32
+__dhd_fixed_ring_get_read_idx(dhd_fixed_ring_info_t *ring)
+{
+ return ring->read_idx;
+}
+
+static inline uint32
+__dhd_fixed_ring_get_write_idx(dhd_fixed_ring_info_t *ring)
+{
+ return ring->write_idx;
+}
+
+/* Sub functions for single index ring */
+static inline void *
+__dhd_singleidx_ring_get_first(dhd_singleidx_ring_info_t *ring)
+{
+ uint32 tmp_idx = 0;
+
+ if (ring->idx == DHD_RING_IDX_INVALID) {
+ return NULL;
+ }
+
+ if (ring->ring_overwrited) {
+ tmp_idx = (ring->idx + 1) % ring->elem_cnt;
+ }
+
+ return (uint8 *)ring->elem + (ring->elem_size * tmp_idx);
+}
+
+static inline void *
+__dhd_singleidx_ring_get_last(dhd_singleidx_ring_info_t *ring)
+{
+ if (ring->idx == DHD_RING_IDX_INVALID) {
+ return NULL;
+ }
+
+ return (uint8 *)ring->elem + (ring->elem_size * ring->idx);
+}
+
+static inline void *
+__dhd_singleidx_ring_get_empty(dhd_singleidx_ring_info_t *ring)
+{
+ if (ring->idx == DHD_RING_IDX_INVALID) {
+ ring->idx = 0;
+ return (uint8 *)ring->elem;
+ }
+
+ /* check the lock is held */
+ if (atomic_read(&ring->ring_locked)) {
+ return NULL;
+ }
+
+ /* check the index rollover */
+ if (!ring->ring_overwrited && ring->idx == (ring->elem_cnt - 1)) {
+ ring->ring_overwrited = 1;
+ }
+
+ ring->idx = (ring->idx + 1) % ring->elem_cnt;
+
+ return (uint8 *)ring->elem + (ring->elem_size * ring->idx);
+}
+
+static inline void *
+__dhd_singleidx_ring_get_next(dhd_singleidx_ring_info_t *ring, void *prev, uint32 type)
+{
+ uint32 cur_idx;
+
+ if (ring->idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("EMPTY RING\n"));
+ return NULL;
+ }
+
+ cur_idx = __dhd_ring_ptr2idx(ring, prev, "NEXT", type);
+ if (cur_idx >= ring->elem_cnt) {
+ return NULL;
+ }
+
+ if (cur_idx == ring->idx) {
+ /* no more new record */
+ return NULL;
+ }
+
+ cur_idx = (cur_idx + 1) % ring->elem_cnt;
+
+ return (uint8 *)ring->elem + ring->elem_size * cur_idx;
+}
+
+static inline void *
+__dhd_singleidx_ring_get_prev(dhd_singleidx_ring_info_t *ring, void *prev, uint32 type)
+{
+ uint32 cur_idx;
+
+ if (ring->idx == DHD_RING_IDX_INVALID) {
+ DHD_RING_ERR(("EMPTY RING\n"));
+ return NULL;
+ }
+ cur_idx = __dhd_ring_ptr2idx(ring, prev, "PREV", type);
+ if (cur_idx >= ring->elem_cnt) {
+ return NULL;
+ }
+
+ if (!ring->ring_overwrited && cur_idx == 0) {
+ /* no more new record */
+ return NULL;
+ }
+
+ cur_idx = (cur_idx + ring->elem_cnt - 1) % ring->elem_cnt;
+ if (ring->ring_overwrited && cur_idx == ring->idx) {
+ /* no more new record */
+ return NULL;
+ }
+
+ return (uint8 *)ring->elem + ring->elem_size * cur_idx;
+}
+
+static inline void
+__dhd_singleidx_ring_whole_lock(dhd_singleidx_ring_info_t *ring)
+{
+ if (!atomic_read(&ring->ring_locked)) {
+ atomic_set(&ring->ring_locked, 1);
+ }
+}
+
+static inline void
+__dhd_singleidx_ring_whole_unlock(dhd_singleidx_ring_info_t *ring)
+{
+ if (atomic_read(&ring->ring_locked)) {
+ atomic_set(&ring->ring_locked, 0);
+ }
+}
+
+/* Get first element : oldest element */
+void *
+dhd_ring_get_first(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ void *ret = NULL;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return NULL;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ ret = __dhd_fixed_ring_get_first(&ring->fixed);
+ }
+ if (ring->type == DHD_RING_TYPE_SINGLE_IDX) {
+ ret = __dhd_singleidx_ring_get_first(&ring->single);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+ return ret;
+}
+
+/* Free first element : oldest element */
+void
+dhd_ring_free_first(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ __dhd_fixed_ring_free_first(&ring->fixed);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+}
+
+void
+dhd_ring_set_read_idx(void *_ring, uint32 read_idx)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ __dhd_fixed_ring_set_read_idx(&ring->fixed, read_idx);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+}
+
+void
+dhd_ring_set_write_idx(void *_ring, uint32 write_idx)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ __dhd_fixed_ring_set_write_idx(&ring->fixed, write_idx);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+}
+
+uint32
+dhd_ring_get_read_idx(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ uint32 read_idx = DHD_RING_IDX_INVALID;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return read_idx;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ read_idx = __dhd_fixed_ring_get_read_idx(&ring->fixed);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+
+ return read_idx;
+}
+
+uint32
+dhd_ring_get_write_idx(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ uint32 write_idx = DHD_RING_IDX_INVALID;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return write_idx;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ write_idx = __dhd_fixed_ring_get_write_idx(&ring->fixed);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+
+ return write_idx;
+}
+
+/* Get latest element */
+void *
+dhd_ring_get_last(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ void *ret = NULL;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return NULL;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ ret = __dhd_fixed_ring_get_last(&ring->fixed);
+ }
+ if (ring->type == DHD_RING_TYPE_SINGLE_IDX) {
+ ret = __dhd_singleidx_ring_get_last(&ring->single);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+ return ret;
+}
+
+/* Get next point can be written
+ * will overwrite which doesn't read
+ * will return NULL if next pointer is locked
+ */
+void *
+dhd_ring_get_empty(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ void *ret = NULL;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return NULL;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ ret = __dhd_fixed_ring_get_empty(&ring->fixed);
+ }
+ if (ring->type == DHD_RING_TYPE_SINGLE_IDX) {
+ ret = __dhd_singleidx_ring_get_empty(&ring->single);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+ return ret;
+}
+
+void *
+dhd_ring_get_next(void *_ring, void *cur)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ void *ret = NULL;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return NULL;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ ret = __dhd_fixed_ring_get_next(&ring->fixed, cur, ring->type);
+ }
+ if (ring->type == DHD_RING_TYPE_SINGLE_IDX) {
+ ret = __dhd_singleidx_ring_get_next(&ring->single, cur, ring->type);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+ return ret;
+}
+
+void *
+dhd_ring_get_prev(void *_ring, void *cur)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ void *ret = NULL;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return NULL;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ ret = __dhd_fixed_ring_get_prev(&ring->fixed, cur, ring->type);
+ }
+ if (ring->type == DHD_RING_TYPE_SINGLE_IDX) {
+ ret = __dhd_singleidx_ring_get_prev(&ring->single, cur, ring->type);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+ return ret;
+}
+
+int
+dhd_ring_get_cur_size(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ int cnt = 0;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return cnt;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ cnt = __dhd_fixed_ring_get_cur_size(&ring->fixed);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+ return cnt;
+}
+
+/* protect element between lock_ptr and write_idx */
+void
+dhd_ring_lock(void *_ring, void *first_ptr, void *last_ptr)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ __dhd_fixed_ring_lock(&ring->fixed, first_ptr, last_ptr, ring->type);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+}
+
+/* free all lock */
+void
+dhd_ring_lock_free(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ __dhd_fixed_ring_lock_free(&ring->fixed);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+}
+
+void *
+dhd_ring_lock_get_first(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ void *ret = NULL;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return NULL;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ ret = __dhd_fixed_ring_lock_get_first(&ring->fixed);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+ return ret;
+}
+
+void *
+dhd_ring_lock_get_last(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ void *ret = NULL;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return NULL;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ ret = __dhd_fixed_ring_lock_get_last(&ring->fixed);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+ return ret;
+}
+
+int
+dhd_ring_lock_get_count(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ int ret = BCME_ERROR;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return ret;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ ret = __dhd_fixed_ring_lock_get_count(&ring->fixed);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+ return ret;
+}
+
+/* free first locked element */
+void
+dhd_ring_lock_free_first(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_FIXED) {
+ __dhd_fixed_ring_lock_free_first(&ring->fixed);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+}
+
+void
+dhd_ring_whole_lock(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_SINGLE_IDX) {
+ __dhd_singleidx_ring_whole_lock(&ring->single);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+}
+
+void
+dhd_ring_whole_unlock(void *_ring)
+{
+ dhd_ring_info_t *ring = (dhd_ring_info_t *)_ring;
+ unsigned long flags;
+
+ if (!ring || ring->magic != DHD_RING_MAGIC) {
+ DHD_RING_ERR(("%s :INVALID RING INFO\n", __FUNCTION__));
+ return;
+ }
+
+ DHD_RING_SYNC_LOCK(ring->ring_sync, flags);
+ if (ring->type == DHD_RING_TYPE_SINGLE_IDX) {
+ __dhd_singleidx_ring_whole_unlock(&ring->single);
+ }
+ DHD_RING_SYNC_UNLOCK(ring->ring_sync, flags);
+}
+
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 19, 0))
+#define DHD_VFS_INODE(dir) (dir->d_inode)
+#else
+#define DHD_VFS_INODE(dir) d_inode(dir)
+#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(3, 19, 0) */
+
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0))
+#define DHD_VFS_UNLINK(dir, b, c) vfs_unlink(DHD_VFS_INODE(dir), b)
+#else
+#define DHD_VFS_UNLINK(dir, b, c) vfs_unlink(DHD_VFS_INODE(dir), b, c)
+#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0) */
+int
+dhd_file_delete(char *path)
+{
+ struct path file_path;
+ int err;
+ struct dentry *dir;
+
+ err = kern_path(path, 0, &file_path);
+
+ if (err < 0) {
+ DHD_ERROR(("Failed to get kern-path delete file: %s error: %d\n", path, err));
+ return err;
+ }
+ if (
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 13, 0))
+ !d_is_file(file_path.dentry) ||
+#if (LINUX_VERSION_CODE > KERNEL_VERSION(4, 1, 0))
+ d_really_is_negative(file_path.dentry) ||
+#endif /* LINUX_VERSION_CODE > KERNEL_VERSION(4, 1, 0) */
+#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(3, 13, 0) */
+ FALSE)
+ {
+ err = -EINVAL;
+ } else {
+ dir = dget_parent(file_path.dentry);
+
+ if (!IS_ERR(dir)) {
+ err = DHD_VFS_UNLINK(dir, file_path.dentry, NULL);
+ dput(dir);
+ } else {
+ err = PTR_ERR(dir);
+ }
+ }
+
+ path_put(&file_path);
+
+ if (err < 0) {
+ DHD_ERROR(("Failed to delete file: %s error: %d\n", path, err));
+ }
+
+ return err;
+}
+#ifdef DHD_DUMP_MNGR
+static int
+dhd_dump_file_manage_idx(dhd_dump_file_manage_t *fm_ptr, char *fname)
+{
+ int i;
+ int fm_idx = -1;
+
+ for (i = 0; i < DHD_DUMP_TYPE_COUNT_MAX; i++) {
+ if (strlen(fm_ptr->elems[i].type_name) == 0) {
+ fm_idx = i;
+ break;
+ }
+ if (!(strncmp(fname, fm_ptr->elems[i].type_name, strlen(fname)))) {
+ fm_idx = i;
+ break;
+ }
+ }
+
+ if (fm_idx == -1) {
+ return fm_idx;
+ }
+
+ if (strlen(fm_ptr->elems[fm_idx].type_name) == 0) {
+ strncpy(fm_ptr->elems[fm_idx].type_name, fname, DHD_DUMP_TYPE_NAME_SIZE);
+ fm_ptr->elems[fm_idx].type_name[DHD_DUMP_TYPE_NAME_SIZE - 1] = '\0';
+ fm_ptr->elems[fm_idx].file_idx = 0;
+ }
+
+ return fm_idx;
+}
+
+/*
+ * dhd_dump_file_manage_enqueue - enqueue dump file path
+ * and delete odest file if file count is max.
+*/
+void
+dhd_dump_file_manage_enqueue(dhd_pub_t *dhd, char *dump_path, char *fname)
+{
+ int fm_idx;
+ int fp_idx;
+ dhd_dump_file_manage_t *fm_ptr;
+ DFM_elem_t *elem;
+
+ if (!dhd || !dhd->dump_file_manage) {
+ DHD_ERROR(("%s(): dhdp=%p dump_file_manage=%p\n",
+ __FUNCTION__, dhd, (dhd ? dhd->dump_file_manage : NULL)));
+ return;
+ }
+
+ fm_ptr = dhd->dump_file_manage;
+
+ /* find file_manage idx */
+ DHD_INFO(("%s(): fname: %s dump_path: %s\n", __FUNCTION__, fname, dump_path));
+ if ((fm_idx = dhd_dump_file_manage_idx(fm_ptr, fname)) < 0) {
+ DHD_ERROR(("%s(): Out of file manager entries, fname: %s\n",
+ __FUNCTION__, fname));
+ return;
+ }
+
+ elem = &fm_ptr->elems[fm_idx];
+ fp_idx = elem->file_idx;
+ DHD_INFO(("%s(): fm_idx: %d fp_idx: %d path: %s\n",
+ __FUNCTION__, fm_idx, fp_idx, elem->file_path[fp_idx]));
+
+ /* delete oldest file */
+ if (strlen(elem->file_path[fp_idx]) != 0) {
+ if (dhd_file_delete(elem->file_path[fp_idx]) < 0) {
+ DHD_ERROR(("%s(): Failed to delete file: %s\n",
+ __FUNCTION__, elem->file_path[fp_idx]));
+ } else {
+ DHD_ERROR(("%s(): Successed to delete file: %s\n",
+ __FUNCTION__, elem->file_path[fp_idx]));
+ }
+ }
+
+ /* save dump file path */
+ strncpy(elem->file_path[fp_idx], dump_path, DHD_DUMP_FILE_PATH_SIZE);
+ elem->file_path[fp_idx][DHD_DUMP_FILE_PATH_SIZE - 1] = '\0';
+
+ /* change file index to next file index */
+ elem->file_idx = (elem->file_idx + 1) % DHD_DUMP_FILE_COUNT_MAX;
+}
+#endif /* DHD_DUMP_MNGR */
+
+#ifdef DHD_MAP_LOGGING
+/* Will be called from SMMU fault handler */
+void
+dhd_smmu_fault_handler(uint32 axid, ulong fault_addr)
+{
+ dhd_pub_t *dhdp = (dhd_pub_t *)g_dhd_pub;
+ uint32 irq = (uint32)-1;
+
+ DHD_ERROR(("%s: Trigger SMMU Fault\n", __FUNCTION__));
+ DHD_ERROR(("%s: axid:0x%x, fault_addr:0x%lx", __FUNCTION__, axid, fault_addr));
+ dhdp->smmu_fault_occurred = TRUE;
+#ifdef DNGL_AXI_ERROR_LOGGING
+ dhdp->axi_error = TRUE;
+ dhdp->axi_err_dump->axid = axid;
+ dhdp->axi_err_dump->fault_address = fault_addr;
+#endif /* DNGL_AXI_ERROR_LOGGING */
+
+ /* Disable PCIe IRQ */
+ dhdpcie_get_pcieirq(dhdp->bus, &irq);
+ if (irq != (uint32)-1) {
+ disable_irq_nosync(irq);
+ }
+
+ /* Take debug information first */
+ DHD_OS_WAKE_LOCK(dhdp);
+ dhd_prot_smmu_fault_dump(dhdp);
+ DHD_OS_WAKE_UNLOCK(dhdp);
+
+ /* Take AXI information if possible */
+#ifdef DNGL_AXI_ERROR_LOGGING
+#ifdef DHD_USE_WQ_FOR_DNGL_AXI_ERROR
+ dhd_axi_error_dispatch(dhdp);
+#else
+ dhd_axi_error(dhdp);
+#endif /* DHD_USE_WQ_FOR_DNGL_AXI_ERROR */
+#endif /* DNGL_AXI_ERROR_LOGGING */
+}
+EXPORT_SYMBOL(dhd_smmu_fault_handler);
+#endif /* DHD_MAP_LOGGING */
+
+#ifdef DHD_WIFI_SHUTDOWN
+void wifi_plat_dev_drv_shutdown(struct platform_device *pdev)
+{
+ dhd_pub_t *dhd_pub = NULL;
+ dhd_info_t *dhd_info = NULL;
+ dhd_if_t *dhd_if = NULL;
+
+ DHD_ERROR(("%s enter\n", __FUNCTION__));
+ dhd_pub = g_dhd_pub;
+
+ if (dhd_os_check_if_up(dhd_pub)) {
+ dhd_info = (dhd_info_t *)dhd_pub->info;
+ dhd_if = dhd_info->iflist[0];
+ ASSERT(dhd_if);
+ ASSERT(dhd_if->net);
+ if (dhd_if && dhd_if->net) {
+ dhd_stop(dhd_if->net);
+ }
+ }
+}
+#endif /* DHD_WIFI_SHUTDOWN */
+
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 14, 0))
+int
+compat_kernel_read(struct file *file, loff_t offset, char *addr, unsigned long count)
+{
+ return (int)kernel_read(file, addr, (size_t)count, &offset);
+}
+#else
+int
+compat_kernel_read(struct file *file, loff_t offset, char *addr, unsigned long count)
+{
+ return kernel_read(file, offset, addr, count);
+}
+#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 14, 0)) */
+
+#ifdef DHDTCPSYNC_FLOOD_BLK
+static void dhd_blk_tsfl_handler(struct work_struct * work)
+{
+ dhd_if_t *ifp = NULL;
+ dhd_pub_t *dhdp = NULL;
+ /* Ignore compiler warnings due to -Werror=cast-qual */
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
+#endif /* STRICT_GCC_WARNINGS && __GNUC__ */
+ ifp = container_of(work, dhd_if_t, blk_tsfl_work);
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic pop
+#endif /* STRICT_GCC_WARNINGS && __GNUC__ */
+ if (ifp) {
+ dhdp = &ifp->info->pub;
+ if (dhdp) {
+ if ((dhdp->op_mode & DHD_FLAG_P2P_GO_MODE)||
+ (dhdp->op_mode & DHD_FLAG_HOSTAP_MODE)) {
+ DHD_ERROR(("Disassoc due to TCP SYNC FLOOD ATTACK\n"));
+ wl_cfg80211_del_all_sta(ifp->net, WLAN_REASON_UNSPECIFIED);
+ } else if ((dhdp->op_mode & DHD_FLAG_P2P_GC_MODE)||
+ (dhdp->op_mode & DHD_FLAG_STA_MODE)) {
+ DHD_ERROR(("Diconnect due to TCP SYNC FLOOD ATTACK\n"));
+ wl_cfg80211_disassoc(ifp->net, WLAN_REASON_UNSPECIFIED);
+ }
+ }
+ }
+}
+void dhd_reset_tcpsync_info_by_ifp(dhd_if_t *ifp)
+{
+ ifp->tsync_rcvd = 0;
+ ifp->tsyncack_txed = 0;
+ ifp->last_sync = DIV_U64_BY_U32(OSL_LOCALTIME_NS(), NSEC_PER_SEC);
+}
+void dhd_reset_tcpsync_info_by_dev(struct net_device *dev)
+{
+ dhd_if_t *ifp = NULL;
+ if (dev) {
+ ifp = DHD_DEV_IFP(dev);
+ }
+ if (ifp) {
+ ifp->tsync_rcvd = 0;
+ ifp->tsyncack_txed = 0;
+ ifp->last_sync = DIV_U64_BY_U32(OSL_LOCALTIME_NS(), NSEC_PER_SEC);
+ }
+}
+#endif /* DHDTCPSYNC_FLOOD_BLK */
+
+#ifdef DHD_4WAYM4_FAIL_DISCONNECT
+static void dhd_m4_state_handler(struct work_struct *work)
+{
+ dhd_if_t *ifp = NULL;
+ /* Ignore compiler warnings due to -Werror=cast-qual */
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wcast-qual"
+#endif // endif
+ struct delayed_work *dw = to_delayed_work(work);
+ ifp = container_of(dw, dhd_if_t, m4state_work);
+#if defined(STRICT_GCC_WARNINGS) && defined(__GNUC__)
+#pragma GCC diagnostic pop
+#endif // endif
+
+ if (ifp && ifp->net &&
+ (OSL_ATOMIC_READ(ifp->info->pub->osh, &ifp->m4state) == M4_TXFAILED)) {
+ DHD_ERROR(("Disassoc for 4WAY_HANDSHAKE_TIMEOUT at %s\n",
+ ifp->net->name));
+ wl_cfg80211_disassoc(ifp->net, WLAN_REASON_4WAY_HANDSHAKE_TIMEOUT);
+ }
+}
+
+void
+dhd_eap_txcomplete(dhd_pub_t *dhdp, void *txp, bool success, int ifidx)
+{
+ dhd_info_t *dhd = (dhd_info_t *)(dhdp->info);
+ struct ether_header *eh;
+ uint16 type;
+
+ if (!success) {
+ dhd_prot_hdrpull(dhdp, NULL, txp, NULL, NULL);
+
+ eh = (struct ether_header *)PKTDATA(dhdp->osh, txp);
+ type = ntoh16(eh->ether_type);
+ if (type == ETHER_TYPE_802_1X) {
+ if (dhd_is_4way_msg((uint8 *)eh) == EAPOL_4WAY_M4) {
+ dhd_if_t *ifp = NULL;
+ ifp = dhd->iflist[ifidx];
+ if (!ifp || !ifp->net) {
+ return;
+ }
+
+ DHD_INFO(("%s: M4 TX failed on %d.\n",
+ __FUNCTION__, ifidx));
+
+ OSL_ATOMIC_SET(dhdp->osh, &ifp->m4state, M4_TXFAILED);
+ schedule_delayed_work(&ifp->m4state_work,
+ msecs_to_jiffies(MAX_4WAY_TIMEOUT_MS));
+ }
+ }
+ }
+}
+
+void
+dhd_cleanup_m4_state_work(dhd_pub_t *dhdp, int ifidx)
+{
+ dhd_info_t *dhdinfo;
+ dhd_if_t *ifp;
+
+ if ((ifidx < 0) || (ifidx >= DHD_MAX_IFS)) {
+ DHD_ERROR(("%s: invalid ifidx %d\n", __FUNCTION__, ifidx));
+ return;
+ }
+
+ dhdinfo = (dhd_info_t *)(dhdp->info);
+ if (!dhdinfo) {
+ DHD_ERROR(("%s: dhdinfo is NULL\n", __FUNCTION__));
+ return;
+ }
+
+ ifp = dhdinfo->iflist[ifidx];
+ if (ifp) {
+ cancel_delayed_work_sync(&ifp->m4state_work);
+ }
+}
+#endif /* DHD_4WAYM4_FAIL_DISCONNECT */
+
+#ifdef DHD_HP2P
+unsigned long
+dhd_os_hp2plock(dhd_pub_t *pub)
+{
+ dhd_info_t *dhd;
+ unsigned long flags = 0;
+
+ dhd = (dhd_info_t *)(pub->info);
+
+ if (dhd) {
+ spin_lock_irqsave(&dhd->hp2p_lock, flags);
+ }
+
+ return flags;
+}
+
+void
+dhd_os_hp2punlock(dhd_pub_t *pub, unsigned long flags)
+{
+ dhd_info_t *dhd;
+
+ dhd = (dhd_info_t *)(pub->info);
+
+ if (dhd) {
+ spin_unlock_irqrestore(&dhd->hp2p_lock, flags);
+ }
+}
+#endif /* DHD_HP2P */
+#ifdef DNGL_AXI_ERROR_LOGGING
+static void
+dhd_axi_error_dump(void *handle, void *event_info, u8 event)
+{
+ dhd_info_t *dhd = (dhd_info_t *)handle;
+ dhd_pub_t *dhdp = NULL;
+
+ if (!dhd) {
+ DHD_ERROR(("%s: dhd is NULL\n", __FUNCTION__));
+ goto exit;
+ }
+
+ dhdp = &dhd->pub;
+ if (!dhdp) {
+ DHD_ERROR(("%s: dhdp is NULL\n", __FUNCTION__));
+ goto exit;
+ }
+
+ /**
+ * First save axi error information to a file
+ * because panic should happen right after this.
+ * After dhd reset, dhd reads the file, and do hang event process
+ * to send axi error stored on the file to Bigdata server
+ */
+ if (dhdp->axi_err_dump->etd_axi_error_v1.version != HND_EXT_TRAP_AXIERROR_VERSION_1) {
+ DHD_ERROR(("%s: Invalid AXI version: 0x%x\n",
+ __FUNCTION__, dhdp->axi_err_dump->etd_axi_error_v1.version));
+ }
+
+ DHD_OS_WAKE_LOCK(dhdp);
+#ifdef DHD_FW_COREDUMP
+#ifdef DHD_SSSR_DUMP
+ dhdp->collect_sssr = TRUE;
+#endif /* DHD_SSSR_DUMP */
+ DHD_ERROR(("%s: scheduling mem dump.. \n", __FUNCTION__));
+ dhd_schedule_memdump(dhdp, dhdp->soc_ram, dhdp->soc_ram_length);
+#endif /* DHD_FW_COREDUMP */
+ DHD_OS_WAKE_UNLOCK(dhdp);
+
+exit:
+ /* Trigger kernel panic after taking necessary dumps */
+ BUG_ON(1);
+}
+
+void dhd_schedule_axi_error_dump(dhd_pub_t *dhdp, void *type)
+{
+ DHD_ERROR(("%s: scheduling axi_error_dump.. \n", __FUNCTION__));
+ dhd_deferred_schedule_work(dhdp->info->dhd_deferred_wq,
+ type, DHD_WQ_WORK_AXI_ERROR_DUMP,
+ dhd_axi_error_dump, DHD_WQ_WORK_PRIORITY_HIGH);
+}
+#endif /* DNGL_AXI_ERROR_LOGGING */
+
+#ifdef BCMPCIE
+static void
+dhd_cto_recovery_handler(void *handle, void *event_info, u8 event)
+{
+ dhd_info_t *dhd = handle;
+ dhd_pub_t *dhdp = NULL;
+
+ if (!dhd) {
+ DHD_ERROR(("%s: dhd is NULL\n", __FUNCTION__));
+ BUG_ON(1);
+ return;
+ }
+
+ dhdp = &dhd->pub;
+ dhdpcie_cto_recovery_handler(dhdp);
+}
+
+void
+dhd_schedule_cto_recovery(dhd_pub_t *dhdp)
+{
+ DHD_ERROR(("%s: scheduling cto recovery.. \n", __FUNCTION__));
+ dhd_deferred_schedule_work(dhdp->info->dhd_deferred_wq,
+ NULL, DHD_WQ_WORK_CTO_RECOVERY,
+ dhd_cto_recovery_handler, DHD_WQ_WORK_PRIORITY_HIGH);
+}
+#endif /* BCMPCIE */
+
+#ifdef SUPPORT_SET_TID
+/*
+ * Set custom TID value for UDP frame based on UID value.
+ * This will be triggered by android private command below.
+ * DRIVER SET_TID <Mode:uint8> <Target UID:uint32> <Custom TID:uint8>
+ * Mode 0(SET_TID_OFF) : Disable changing TID
+ * Mode 1(SET_TID_ALL_UDP) : Change TID for all UDP frames
+ * Mode 2(SET_TID_BASED_ON_UID) : Change TID for UDP frames based on target UID
+*/
+void
+dhd_set_tid_based_on_uid(dhd_pub_t *dhdp, void *pkt)
+{
+ struct ether_header *eh = NULL;
+ struct sock *sk = NULL;
+ uint8 *pktdata = NULL;
+ uint8 *ip_hdr = NULL;
+ uint8 cur_prio;
+ uint8 prio;
+ uint32 uid;
+
+ if (dhdp->tid_mode == SET_TID_OFF) {
+ return;
+ }
+
+ pktdata = (uint8 *)PKTDATA(dhdp->osh, pkt);
+ eh = (struct ether_header *) pktdata;
+ ip_hdr = (uint8 *)eh + ETHER_HDR_LEN;
+
+ if (IPV4_PROT(ip_hdr) != IP_PROT_UDP) {
+ return;
+ }
+
+ cur_prio = PKTPRIO(pkt);
+ prio = dhdp->target_tid;
+ uid = dhdp->target_uid;
+
+ if ((cur_prio == prio) ||
+ (cur_prio != PRIO_8021D_BE)) {
+ return;
+ }
+
+ sk = ((struct sk_buff*)(pkt))->sk;
+
+ if ((dhdp->tid_mode == SET_TID_ALL_UDP) ||
+ (sk && (uid == __kuid_val(sock_i_uid(sk))))) {
+ PKTSETPRIO(pkt, prio);
+ }
+}
+#endif /* SUPPORT_SET_TID */
--
Gitblit v1.6.2