cregit-Linux how code gets into the kernel

Release 4.11 drivers/staging/wilc1000/wilc_wlan.c

#include <linux/completion.h>
#include "wilc_wlan_if.h"
#include "wilc_wlan.h"
#include "wilc_wfi_netdevice.h"
#include "wilc_wlan_cfg.h"


static CHIP_PS_STATE_T chip_ps_state = CHIP_WAKEDUP;


static inline void acquire_bus(struct wilc *wilc, BUS_ACQUIRE_T acquire) { mutex_lock(&wilc->hif_cs); if (acquire == ACQUIRE_AND_WAKEUP) chip_wakeup(wilc); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim1955.88%116.67%
Glen Lee617.65%233.33%
Arnd Bergmann617.65%116.67%
Chaehyun Lim25.88%116.67%
Greg Kroah-Hartman12.94%116.67%
Total34100.00%6100.00%


static inline void release_bus(struct wilc *wilc, BUS_RELEASE_T release) { if (release == RELEASE_ALLOW_SLEEP) chip_allow_sleep(wilc); mutex_unlock(&wilc->hif_cs); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim1955.88%116.67%
Arnd Bergmann617.65%116.67%
Glen Lee617.65%233.33%
Chaehyun Lim25.88%116.67%
Greg Kroah-Hartman12.94%116.67%
Total34100.00%6100.00%


static void wilc_wlan_txq_remove(struct wilc *wilc, struct txq_entry_t *tqe) { if (tqe == wilc->txq_head) { wilc->txq_head = tqe->next; if (wilc->txq_head) wilc->txq_head->prev = NULL; } else if (tqe == wilc->txq_tail) { wilc->txq_tail = (tqe->prev); if (wilc->txq_tail) wilc->txq_tail->next = NULL; } else { tqe->prev->next = tqe->next; tqe->next->prev = tqe->prev; } wilc->txq_entries -= 1; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim9887.50%133.33%
Glen Lee1412.50%266.67%
Total112100.00%3100.00%


static struct txq_entry_t * wilc_wlan_txq_remove_from_head(struct net_device *dev) { struct txq_entry_t *tqe; unsigned long flags; struct wilc_vif *vif; struct wilc *wilc; vif = netdev_priv(dev); wilc = vif->wilc; spin_lock_irqsave(&wilc->txq_spinlock, flags); if (wilc->txq_head) { tqe = wilc->txq_head; wilc->txq_head = tqe->next; if (wilc->txq_head) wilc->txq_head->prev = NULL; wilc->txq_entries -= 1; } else { tqe = NULL; } spin_unlock_irqrestore(&wilc->txq_spinlock, flags); return tqe; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim7866.67%116.67%
Glen Lee3731.62%466.67%
Greg Kroah-Hartman21.71%116.67%
Total117100.00%6100.00%


static void wilc_wlan_txq_add_to_tail(struct net_device *dev, struct txq_entry_t *tqe) { unsigned long flags; struct wilc_vif *vif; struct wilc *wilc; vif = netdev_priv(dev); wilc = vif->wilc; spin_lock_irqsave(&wilc->txq_spinlock, flags); if (!wilc->txq_head) { tqe->next = NULL; tqe->prev = NULL; wilc->txq_head = tqe; wilc->txq_tail = tqe; } else { tqe->next = NULL; tqe->prev = wilc->txq_tail; wilc->txq_tail->next = tqe; wilc->txq_tail = tqe; } wilc->txq_entries += 1; spin_unlock_irqrestore(&wilc->txq_spinlock, flags); complete(&wilc->txq_event); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim9567.38%111.11%
Glen Lee4229.79%555.56%
Greg Kroah-Hartman21.42%111.11%
Binoy Jayan10.71%111.11%
Leo Kim10.71%111.11%
Total141100.00%9100.00%


static int wilc_wlan_txq_add_to_head(struct wilc_vif *vif, struct txq_entry_t *tqe) { unsigned long flags; struct wilc *wilc = vif->wilc; mutex_lock(&wilc->txq_add_to_head_cs); spin_lock_irqsave(&wilc->txq_spinlock, flags); if (!wilc->txq_head) { tqe->next = NULL; tqe->prev = NULL; wilc->txq_head = tqe; wilc->txq_tail = tqe; } else { tqe->next = wilc->txq_head; tqe->prev = NULL; wilc->txq_head->prev = tqe; wilc->txq_head = tqe; } wilc->txq_entries += 1; spin_unlock_irqrestore(&wilc->txq_spinlock, flags); mutex_unlock(&wilc->txq_add_to_head_cs); complete(&wilc->txq_event); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim10571.92%19.09%
Glen Lee2617.81%545.45%
Arnd Bergmann85.48%19.09%
Binoy Jayan42.74%218.18%
Greg Kroah-Hartman21.37%19.09%
Leo Kim10.68%19.09%
Total146100.00%11100.00%

struct ack_session_info; struct ack_session_info { u32 seq_num; u32 bigger_ack_num; u16 src_port; u16 dst_port; u16 status; }; struct pending_acks_info { u32 ack_num; u32 session_index; struct txq_entry_t *txqe; }; #define NOT_TCP_ACK (-1) #define MAX_TCP_SESSION 25 #define MAX_PENDING_ACKS 256 static struct ack_session_info ack_session_info[2 * MAX_TCP_SESSION]; static struct pending_acks_info pending_acks_info[MAX_PENDING_ACKS]; static u32 pending_base; static u32 tcp_session; static u32 pending_acks;
static inline int add_tcp_session(u32 src_prt, u32 dst_prt, u32 seq) { if (tcp_session < 2 * MAX_TCP_SESSION) { ack_session_info[tcp_session].seq_num = seq; ack_session_info[tcp_session].bigger_ack_num = 0; ack_session_info[tcp_session].src_port = src_prt; ack_session_info[tcp_session].dst_port = dst_prt; tcp_session++; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim4261.76%111.11%
Leo Kim1217.65%555.56%
Glen Lee1014.71%111.11%
Chaehyun Lim45.88%222.22%
Total68100.00%9100.00%


static inline int update_tcp_session(u32 index, u32 ack) { if (index < 2 * MAX_TCP_SESSION && ack > ack_session_info[index].bigger_ack_num) ack_session_info[index].bigger_ack_num = ack; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim2559.52%112.50%
Leo Kim819.05%450.00%
Glen Lee614.29%112.50%
Chaehyun Lim37.14%225.00%
Total42100.00%8100.00%


static inline int add_tcp_pending_ack(u32 ack, u32 session_index, struct txq_entry_t *txqe) { if (pending_base + pending_acks < MAX_PENDING_ACKS) { pending_acks_info[pending_base + pending_acks].ack_num = ack; pending_acks_info[pending_base + pending_acks].txqe = txqe; pending_acks_info[pending_base + pending_acks].session_index = session_index; txqe->tcp_pending_ack_idx = pending_base + pending_acks; pending_acks++; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim5066.67%18.33%
Leo Kim1925.33%758.33%
Chaehyun Lim34.00%216.67%
Glen Lee34.00%216.67%
Total75100.00%12100.00%


static inline void tcp_process(struct net_device *dev, struct txq_entry_t *tqe) { u8 *eth_hdr_ptr; u8 *buffer = tqe->buffer; unsigned short h_proto; int i; unsigned long flags; struct wilc_vif *vif; struct wilc *wilc; vif = netdev_priv(dev); wilc = vif->wilc; spin_lock_irqsave(&wilc->txq_spinlock, flags); eth_hdr_ptr = &buffer[0]; h_proto = ntohs(*((unsigned short *)&eth_hdr_ptr[12])); if (h_proto == ETH_P_IP) { u8 *ip_hdr_ptr; u8 protocol; ip_hdr_ptr = &buffer[ETHERNET_HDR_LEN]; protocol = ip_hdr_ptr[9]; if (protocol == 0x06) { u8 *tcp_hdr_ptr; u32 IHL, total_length, data_offset; tcp_hdr_ptr = &ip_hdr_ptr[IP_HDR_LEN]; IHL = (ip_hdr_ptr[0] & 0xf) << 2; total_length = ((u32)ip_hdr_ptr[2] << 8) + (u32)ip_hdr_ptr[3]; data_offset = ((u32)tcp_hdr_ptr[12] & 0xf0) >> 2; if (total_length == (IHL + data_offset)) { u32 seq_no, ack_no; seq_no = ((u32)tcp_hdr_ptr[4] << 24) + ((u32)tcp_hdr_ptr[5] << 16) + ((u32)tcp_hdr_ptr[6] << 8) + (u32)tcp_hdr_ptr[7]; ack_no = ((u32)tcp_hdr_ptr[8] << 24) + ((u32)tcp_hdr_ptr[9] << 16) + ((u32)tcp_hdr_ptr[10] << 8) + (u32)tcp_hdr_ptr[11]; for (i = 0; i < tcp_session; i++) { if (i < 2 * MAX_TCP_SESSION && ack_session_info[i].seq_num == seq_no) { update_tcp_session(i, ack_no); break; } } if (i == tcp_session) add_tcp_session(0, 0, seq_no); add_tcp_pending_ack(ack_no, i, tqe); } } } spin_unlock_irqrestore(&wilc->txq_spinlock, flags); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim30878.37%14.76%
Glen Lee4611.70%523.81%
Chaehyun Lim194.83%314.29%
Leo Kim174.33%942.86%
Janani Ravichandran10.25%14.76%
Hari Prasath Gujulan Elango10.25%14.76%
Greg Kroah-Hartman10.25%14.76%
Total393100.00%21100.00%


static int wilc_wlan_txq_filter_dup_tcp_ack(struct net_device *dev) { struct wilc_vif *vif; struct wilc *wilc; u32 i = 0; u32 dropped = 0; vif = netdev_priv(dev); wilc = vif->wilc; spin_lock_irqsave(&wilc->txq_spinlock, wilc->txq_spinlock_flags); for (i = pending_base; i < (pending_base + pending_acks); i++) { if (i >= MAX_PENDING_ACKS || pending_acks_info[i].session_index >= 2 * MAX_TCP_SESSION) break; if (pending_acks_info[i].ack_num < ack_session_info[pending_acks_info[i].session_index].bigger_ack_num) { struct txq_entry_t *tqe; tqe = pending_acks_info[i].txqe; if (tqe) { wilc_wlan_txq_remove(wilc, tqe); tqe->status = 1; if (tqe->tx_complete_func) tqe->tx_complete_func(tqe->priv, tqe->status); kfree(tqe); dropped++; } } } pending_acks = 0; tcp_session = 0; if (pending_base == 0) pending_base = MAX_TCP_SESSION; else pending_base = 0; spin_unlock_irqrestore(&wilc->txq_spinlock, wilc->txq_spinlock_flags); while (dropped > 0) { wait_for_completion_timeout(&wilc->txq_event, msecs_to_jiffies(1)); dropped--; } return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim15565.13%15.00%
Glen Lee5623.53%735.00%
Leo Kim187.56%840.00%
Binoy Jayan41.68%15.00%
Greg Kroah-Hartman31.26%210.00%
Chaehyun Lim20.84%15.00%
Total238100.00%20100.00%

static bool enabled;
void wilc_enable_tcp_ack_filter(bool value) { enabled = value; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim975.00%125.00%
Dean Lee18.33%125.00%
Arnd Bergmann18.33%125.00%
Leo Kim18.33%125.00%
Total12100.00%4100.00%


static int wilc_wlan_txq_add_cfg_pkt(struct wilc_vif *vif, u8 *buffer, u32 buffer_size) { struct txq_entry_t *tqe; struct wilc *wilc = vif->wilc; netdev_dbg(vif->ndev, "Adding config packet ...\n"); if (wilc->quit) { netdev_dbg(vif->ndev, "Return due to clear function\n"); complete(&wilc->cfg_event); return 0; } tqe = kmalloc(sizeof(*tqe), GFP_ATOMIC); if (!tqe) return 0; tqe->type = WILC_CFG_PKT; tqe->buffer = buffer; tqe->buffer_size = buffer_size; tqe->tx_complete_func = NULL; tqe->priv = NULL; tqe->tcp_pending_ack_idx = NOT_TCP_ACK; if (wilc_wlan_txq_add_to_head(vif, tqe)) { kfree(tqe); return 0; } return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim10369.59%17.69%
Glen Lee2416.22%430.77%
Claudiu Beznea74.73%17.69%
Arnd Bergmann53.38%17.69%
Greg Kroah-Hartman32.03%17.69%
Leo Kim32.03%215.38%
Chaehyun Lim21.35%215.38%
Binoy Jayan10.68%17.69%
Total148100.00%13100.00%


int wilc_wlan_txq_add_net_pkt(struct net_device *dev, void *priv, u8 *buffer, u32 buffer_size, wilc_tx_complete_func_t func) { struct txq_entry_t *tqe; struct wilc_vif *vif = netdev_priv(dev); struct wilc *wilc; wilc = vif->wilc; if (wilc->quit) return 0; tqe = kmalloc(sizeof(*tqe), GFP_ATOMIC); if (!tqe) return 0; tqe->type = WILC_NET_PKT; tqe->buffer = buffer; tqe->buffer_size = buffer_size; tqe->tx_complete_func = func; tqe->priv = priv; tqe->tcp_pending_ack_idx = NOT_TCP_ACK; if (enabled) tcp_process(dev, tqe); wilc_wlan_txq_add_to_tail(dev, tqe); return wilc->txq_entries; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim9870.50%17.69%
Glen Lee3223.02%646.15%
Leo Kim32.16%215.38%
Greg Kroah-Hartman32.16%17.69%
Chaehyun Lim21.44%215.38%
Amitoj Kaur Chawla10.72%17.69%
Total139100.00%13100.00%


int wilc_wlan_txq_add_mgmt_pkt(struct net_device *dev, void *priv, u8 *buffer, u32 buffer_size, wilc_tx_complete_func_t func) { struct txq_entry_t *tqe; struct wilc_vif *vif = netdev_priv(dev); struct wilc *wilc; wilc = vif->wilc; if (wilc->quit) return 0; tqe = kmalloc(sizeof(*tqe), GFP_KERNEL); if (!tqe) return 0; tqe->type = WILC_MGMT_PKT; tqe->buffer = buffer; tqe->buffer_size = buffer_size; tqe->tx_complete_func = func; tqe->priv = priv; tqe->tcp_pending_ack_idx = NOT_TCP_ACK; wilc_wlan_txq_add_to_tail(dev, tqe); return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim8970.63%19.09%
Glen Lee2923.02%545.45%
Greg Kroah-Hartman32.38%19.09%
Leo Kim32.38%218.18%
Chaehyun Lim21.59%218.18%
Total126100.00%11100.00%


static struct txq_entry_t *wilc_wlan_txq_get_first(struct wilc *wilc) { struct txq_entry_t *tqe; unsigned long flags; spin_lock_irqsave(&wilc->txq_spinlock, flags); tqe = wilc->txq_head; spin_unlock_irqrestore(&wilc->txq_spinlock, flags); return tqe; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim4078.43%120.00%
Glen Lee917.65%360.00%
Greg Kroah-Hartman23.92%120.00%
Total51100.00%5100.00%


static struct txq_entry_t *wilc_wlan_txq_get_next(struct wilc *wilc, struct txq_entry_t *tqe) { unsigned long flags; spin_lock_irqsave(&wilc->txq_spinlock, flags); tqe = tqe->next; spin_unlock_irqrestore(&wilc->txq_spinlock, flags); return tqe; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim4078.43%125.00%
Glen Lee917.65%250.00%
Greg Kroah-Hartman23.92%125.00%
Total51100.00%4100.00%


static int wilc_wlan_rxq_add(struct wilc *wilc, struct rxq_entry_t *rqe) { if (wilc->quit) return 0; mutex_lock(&wilc->rxq_cs); if (!wilc->rxq_head) { rqe->next = NULL; wilc->rxq_head = rqe; wilc->rxq_tail = rqe; } else { wilc->rxq_tail->next = rqe; rqe->next = NULL; wilc->rxq_tail = rqe; } wilc->rxq_entries += 1; mutex_unlock(&wilc->rxq_cs); return wilc->rxq_entries; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim8078.43%116.67%
Glen Lee1918.63%350.00%
Greg Kroah-Hartman21.96%116.67%
Leo Kim10.98%116.67%
Total102100.00%6100.00%


static struct rxq_entry_t *wilc_wlan_rxq_remove(struct wilc *wilc) { if (wilc->rxq_head) { struct rxq_entry_t *rqe; mutex_lock(&wilc->rxq_cs); rqe = wilc->rxq_head; wilc->rxq_head = wilc->rxq_head->next; wilc->rxq_entries -= 1; mutex_unlock(&wilc->rxq_cs); return rqe; } return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim5375.71%120.00%
Glen Lee1521.43%360.00%
Greg Kroah-Hartman22.86%120.00%
Total70100.00%5100.00%


void chip_allow_sleep(struct wilc *wilc) { u32 reg = 0; wilc->hif_func->hif_read_reg(wilc, 0xf0, &reg); wilc->hif_func->hif_write_reg(wilc, 0xf0, reg & ~BIT(0)); wilc->hif_func->hif_write_reg(wilc, 0xfa, 0); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim3049.18%114.29%
Glen Lee2744.26%457.14%
Anish Bhatt34.92%114.29%
Chaehyun Lim11.64%114.29%
Total61100.00%7100.00%

EXPORT_SYMBOL_GPL(chip_allow_sleep);
void chip_wakeup(struct wilc *wilc) { u32 reg, clk_status_reg; if ((wilc->io_type & 0x1) == HIF_SPI) { do { wilc->hif_func->hif_read_reg(wilc, 1, &reg); wilc->hif_func->hif_write_reg(wilc, 1, reg | BIT(1)); wilc->hif_func->hif_write_reg(wilc, 1, reg & ~BIT(1)); do { usleep_range(2 * 1000, 2 * 1000); wilc_get_chipid(wilc, true); } while (wilc_get_chipid(wilc, true) == 0); } while (wilc_get_chipid(wilc, true) == 0); } else if ((wilc->io_type & 0x1) == HIF_SDIO) { wilc->hif_func->hif_write_reg(wilc, 0xfa, 1); udelay(200); wilc->hif_func->hif_read_reg(wilc, 0xf0, &reg); do { wilc->hif_func->hif_write_reg(wilc, 0xf0, reg | BIT(0)); wilc->hif_func->hif_read_reg(wilc, 0xf1, &clk_status_reg); while ((clk_status_reg & 0x1) == 0) { usleep_range(2 * 1000, 2 * 1000); wilc->hif_func->hif_read_reg(wilc, 0xf1, &clk_status_reg); } if ((clk_status_reg & 0x1) == 0) { wilc->hif_func->hif_write_reg(wilc, 0xf0, reg & (~BIT(0))); } } while ((clk_status_reg & 0x1) == 0); } if (chip_ps_state == CHIP_SLEEPING_MANUAL) { if (wilc_get_chipid(wilc, false) < 0x1002b0) { u32 val32; wilc->hif_func->hif_read_reg(wilc, 0x1e1c, &val32); val32 |= BIT(6); wilc->hif_func->hif_write_reg(wilc, 0x1e1c, val32); wilc->hif_func->hif_read_reg(wilc, 0x1e9c, &val32); val32 |= BIT(6); wilc->hif_func->hif_write_reg(wilc, 0x1e9c, val32); } } chip_ps_state = CHIP_WAKEDUP; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim25265.12%19.09%
Glen Lee9524.55%545.45%
Anish Bhatt184.65%19.09%
Greg Kroah-Hartman143.62%19.09%
Dean Lee41.03%19.09%
Chaehyun Lim20.52%19.09%
Leo Kim20.52%19.09%
Total387100.00%11100.00%

EXPORT_SYMBOL_GPL(chip_wakeup);
void wilc_chip_sleep_manually(struct wilc *wilc) { if (chip_ps_state != CHIP_WAKEDUP) return; acquire_bus(wilc, ACQUIRE_ONLY); chip_allow_sleep(wilc); wilc->hif_func->hif_write_reg(wilc, 0x10a8, 1); chip_ps_state = CHIP_SLEEPING_MANUAL; release_bus(wilc, RELEASE_ONLY); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim3464.15%114.29%
Glen Lee1426.42%342.86%
Arnd Bergmann35.66%228.57%
Leo Kim23.77%114.29%
Total53100.00%7100.00%

EXPORT_SYMBOL_GPL(wilc_chip_sleep_manually);
void host_wakeup_notify(struct wilc *wilc) { acquire_bus(wilc, ACQUIRE_ONLY); wilc->hif_func->hif_write_reg(wilc, 0x10b0, 1); release_bus(wilc, RELEASE_ONLY); }

Contributors

PersonTokensPropCommitsCommitProp
Glen Lee37100.00%1100.00%
Total37100.00%1100.00%

EXPORT_SYMBOL_GPL(host_wakeup_notify);
void host_sleep_notify(struct wilc *wilc) { acquire_bus(wilc, ACQUIRE_ONLY); wilc->hif_func->hif_write_reg(wilc, 0x10ac, 1); release_bus(wilc, RELEASE_ONLY); }

Contributors

PersonTokensPropCommitsCommitProp
Glen Lee37100.00%1100.00%
Total37100.00%1100.00%

EXPORT_SYMBOL_GPL(host_sleep_notify);
int wilc_wlan_handle_txq(struct net_device *dev, u32 *txq_count) { int i, entries = 0; u32 sum; u32 reg; u8 *txb; u32 offset = 0; int vmm_sz = 0; struct txq_entry_t *tqe; int ret = 0; int counter; int timeout; u32 vmm_table[WILC_VMM_TBL_SIZE]; struct wilc_vif *vif; struct wilc *wilc; vif = netdev_priv(dev); wilc = vif->wilc; txb = wilc->tx_buffer; wilc->txq_exit = 0; do { if (wilc->quit) break; mutex_lock(&wilc->txq_add_to_head_cs); wilc_wlan_txq_filter_dup_tcp_ack(dev); tqe = wilc_wlan_txq_get_first(wilc); i = 0; sum = 0; do { if (tqe && (i < (WILC_VMM_TBL_SIZE - 1))) { if (tqe->type == WILC_CFG_PKT) vmm_sz = ETH_CONFIG_PKT_HDR_OFFSET; else if (tqe->type == WILC_NET_PKT) vmm_sz = ETH_ETHERNET_HDR_OFFSET; else vmm_sz = HOST_HDR_OFFSET; vmm_sz += tqe->buffer_size; if (vmm_sz & 0x3) vmm_sz = (vmm_sz + 4) & ~0x3; if ((sum + vmm_sz) > LINUX_TX_SIZE) break; vmm_table[i] = vmm_sz / 4; if (tqe->type == WILC_CFG_PKT) vmm_table[i] |= BIT(10); vmm_table[i] = cpu_to_le32(vmm_table[i]); i++; sum += vmm_sz; tqe = wilc_wlan_txq_get_next(wilc, tqe); } else { break; } } while (1); if (i == 0) break; vmm_table[i] = 0x0; acquire_bus(wilc, ACQUIRE_AND_WAKEUP); counter = 0; do { ret = wilc->hif_func->hif_read_reg(wilc, WILC_HOST_TX_CTRL, &reg); if (!ret) break; if ((reg & 0x1) == 0) break; counter++; if (counter > 200) { counter = 0; ret = wilc->hif_func->hif_write_reg(wilc, WILC_HOST_TX_CTRL, 0); break; } } while (!wilc->quit); if (!ret) goto _end_; timeout = 200; do { ret = wilc->hif_func->hif_block_tx(wilc, WILC_VMM_TBL_RX_SHADOW_BASE, (u8 *)vmm_table, ((i + 1) * 4)); if (!ret) break; ret = wilc->hif_func->hif_write_reg(wilc, WILC_HOST_VMM_CTL, 0x2); if (!ret) break; do { ret = wilc->hif_func->hif_read_reg(wilc, WILC_HOST_VMM_CTL, &reg); if (!ret) break; if ((reg >> 2) & 0x1) { entries = ((reg >> 3) & 0x3f); break; } release_bus(wilc, RELEASE_ALLOW_SLEEP); } while (--timeout); if (timeout <= 0) { ret = wilc->hif_func->hif_write_reg(wilc, WILC_HOST_VMM_CTL, 0x0); break; } if (!ret) break; if (entries == 0) { ret = wilc->hif_func->hif_read_reg(wilc, WILC_HOST_TX_CTRL, &reg); if (!ret) break; reg &= ~BIT(0); ret = wilc->hif_func->hif_write_reg(wilc, WILC_HOST_TX_CTRL, reg); if (!ret) break; break; } break; } while (1); if (!ret) goto _end_; if (entries == 0) { ret = WILC_TX_ERR_NO_BUF; goto _end_; } release_bus(wilc, RELEASE_ALLOW_SLEEP); offset = 0; i = 0; do { tqe = wilc_wlan_txq_remove_from_head(dev); if (tqe && (vmm_table[i] != 0)) { u32 header, buffer_offset; vmm_table[i] = cpu_to_le32(vmm_table[i]); vmm_sz = (vmm_table[i] & 0x3ff); vmm_sz *= 4; header = (tqe->type << 31) | (tqe->buffer_size << 15) | vmm_sz; if (tqe->type == WILC_MGMT_PKT) header |= BIT(30); else header &= ~BIT(30); header = cpu_to_le32(header); memcpy(&txb[offset], &header, 4); if (tqe->type == WILC_CFG_PKT) { buffer_offset = ETH_CONFIG_PKT_HDR_OFFSET; } else if (tqe->type == WILC_NET_PKT) { char *bssid = ((struct tx_complete_data *)(tqe->priv))->bssid; buffer_offset = ETH_ETHERNET_HDR_OFFSET; memcpy(&txb[offset + 4], bssid, 6); } else { buffer_offset = HOST_HDR_OFFSET; } memcpy(&txb[offset + buffer_offset], tqe->buffer, tqe->buffer_size); offset += vmm_sz; i++; tqe->status = 1; if (tqe->tx_complete_func) tqe->tx_complete_func(tqe->priv, tqe->status); if (tqe->tcp_pending_ack_idx != NOT_TCP_ACK && tqe->tcp_pending_ack_idx < MAX_PENDING_ACKS) pending_acks_info[tqe->tcp_pending_ack_idx].txqe = NULL; kfree(tqe); } else { break; } } while (--entries); acquire_bus(wilc, ACQUIRE_AND_WAKEUP); ret = wilc->hif_func->hif_clear_int_ext(wilc, ENABLE_TX_VMM); if (!ret) goto _end_; ret = wilc->hif_func->hif_block_tx_ext(wilc, 0, txb, offset); if (!ret) goto _end_; _end_: release_bus(wilc, RELEASE_ALLOW_SLEEP); if (ret != 1) break; } while (0); mutex_unlock(&wilc->txq_add_to_head_cs); wilc->txq_exit = 1; *txq_count = wilc->txq_entries; return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim88785.78%14.00%
Glen Lee10810.44%1456.00%
Anish Bhatt121.16%14.00%
Arnd Bergmann100.97%14.00%
Chaehyun Lim80.77%28.00%
Leo Kim60.58%416.00%
Binoy Jayan20.19%14.00%
Greg Kroah-Hartman10.10%14.00%
Total1034100.00%25100.00%


static void wilc_wlan_handle_rxq(struct wilc *wilc) { int offset = 0, size; u8 *buffer; struct rxq_entry_t *rqe; wilc->rxq_exit = 0; do { if (wilc->quit) { complete(&wilc->cfg_event); break; } rqe = wilc_wlan_rxq_remove(wilc); if (!rqe) break; buffer = rqe->buffer; size = rqe->buffer_size; offset = 0; do { u32 header; u32 pkt_len, pkt_offset, tp_len; int is_cfg_packet; memcpy(&header, &buffer[offset], 4); header = cpu_to_le32(header); is_cfg_packet = (header >> 31) & 0x1; pkt_offset = (header >> 22) & 0x1ff; tp_len = (header >> 11) & 0x7ff; pkt_len = header & 0x7ff; if (pkt_len == 0 || tp_len == 0) break; #define IS_MANAGMEMENT 0x100 #define IS_MANAGMEMENT_CALLBACK 0x080 #define IS_MGMT_STATUS_SUCCES 0x040 if (pkt_offset & IS_MANAGMEMENT) { pkt_offset &= ~(IS_MANAGMEMENT | IS_MANAGMEMENT_CALLBACK | IS_MGMT_STATUS_SUCCES); WILC_WFI_mgmt_rx(wilc, &buffer[offset + HOST_HDR_OFFSET], pkt_len); } else { if (!is_cfg_packet) { if (pkt_len > 0) { wilc_frmw_to_linux(wilc, &buffer[offset], pkt_len, pkt_offset); } } else { struct wilc_cfg_rsp rsp; wilc_wlan_cfg_indicate_rx(wilc, &buffer[pkt_offset + offset], pkt_len, &rsp); if (rsp.type == WILC_CFG_RSP) { if (wilc->cfg_seq_no == rsp.seq_no) complete(&wilc->cfg_event); } else if (rsp.type == WILC_CFG_RSP_STATUS) { wilc_mac_indicate(wilc, WILC_MAC_INDICATE_STATUS); } else if (rsp.type == WILC_CFG_RSP_SCAN) { wilc_mac_indicate(wilc, WILC_MAC_INDICATE_SCAN); } } } offset += tp_len; if (offset >= size) break; } while (1); kfree(rqe); } while (1); wilc->rxq_exit = 1; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim32588.80%15.56%
Glen Lee297.92%1055.56%
Chaehyun Lim30.82%211.11%
Arnd Bergmann30.82%15.56%
Leo Kim30.82%211.11%
Binoy Jayan20.55%15.56%
Greg Kroah-Hartman10.27%15.56%
Total366100.00%18100.00%


static void wilc_unknown_isr_ext(struct wilc *wilc) { wilc->hif_func->hif_clear_int_ext(wilc, 0); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim1359.09%125.00%
Glen Lee940.91%375.00%
Total22100.00%4100.00%


static void wilc_pllupdate_isr_ext(struct wilc *wilc, u32 int_stats) { int trials = 10; wilc->hif_func->hif_clear_int_ext(wilc, PLL_INT_CLR); if (wilc->io_type == HIF_SDIO) mdelay(WILC_PLL_TO_SDIO); else mdelay(WILC_PLL_TO_SPI); while (!(ISWILC1000(wilc_get_chipid(wilc, true)) && --trials)) mdelay(1); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim4156.94%111.11%
Glen Lee1419.44%444.44%
Arnd Bergmann1318.06%111.11%
Greg Kroah-Hartman22.78%111.11%
Dean Lee11.39%111.11%
Chaehyun Lim11.39%111.11%
Total72100.00%9100.00%


static void wilc_sleeptimer_isr_ext(struct wilc *wilc, u32 int_stats1) { wilc->hif_func->hif_clear_int_ext(wilc, SLEEP_INT_CLR); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim1456.00%120.00%
Glen Lee1040.00%360.00%
Chaehyun Lim14.00%120.00%
Total25100.00%5100.00%


static void wilc_wlan_handle_isr_ext(struct wilc *wilc, u32 int_status) { u32 offset = wilc->rx_buffer_offset; u8 *buffer = NULL; u32 size; u32 retries = 0; int ret = 0; struct rxq_entry_t *rqe; size = (int_status & 0x7fff) << 2; while (!size && retries < 10) { wilc->hif_func->hif_read_size(wilc, &size); size = (size & 0x7fff) << 2; retries++; } if (size > 0) { if (LINUX_RX_SIZE - offset < size) offset = 0; if (wilc->rx_buffer) buffer = &wilc->rx_buffer[offset]; else goto _end_; wilc->hif_func->hif_clear_int_ext(wilc, DATA_INT_CLR | ENABLE_RX_VMM); ret = wilc->hif_func->hif_block_rx_ext(wilc, 0, buffer, size); _end_: if (ret) { offset += size; wilc->rx_buffer_offset = offset; rqe = kmalloc(sizeof(*rqe), GFP_KERNEL); if (rqe) { rqe->buffer = buffer; rqe->buffer_size = size; wilc_wlan_rxq_add(wilc, rqe); } } } wilc_wlan_handle_rxq(wilc); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim18583.33%18.33%
Glen Lee2712.16%758.33%
Chaehyun Lim52.25%216.67%
Greg Kroah-Hartman31.35%18.33%
Leo Kim20.90%18.33%
Total222100.00%12100.00%


void wilc_handle_isr(struct wilc *wilc) { u32 int_status; acquire_bus(wilc, ACQUIRE_AND_WAKEUP); wilc->hif_func->hif_read_int(wilc, &int_status); if (int_status & PLL_INT_EXT) wilc_pllupdate_isr_ext(wilc, int_status); if (int_status & DATA_INT_EXT) wilc_wlan_handle_isr_ext(wilc, int_status); if (int_status & SLEEP_INT_EXT) wilc_sleeptimer_isr_ext(wilc, int_status); if (!(int_status & (ALL_INT_EXT))) wilc_unknown_isr_ext(wilc); release_bus(wilc, RELEASE_ALLOW_SLEEP); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim7175.53%112.50%
Glen Lee1617.02%562.50%
Arnd Bergmann66.38%112.50%
Chaehyun Lim11.06%112.50%
Total94100.00%8100.00%

EXPORT_SYMBOL_GPL(wilc_handle_isr);
int wilc_wlan_firmware_download(struct wilc *wilc, const u8 *buffer, u32 buffer_size) { u32 offset; u32 addr, size, size2, blksz; u8 *dma_buffer; int ret = 0; blksz = BIT(12); dma_buffer = kmalloc(blksz, GFP_KERNEL); if (!dma_buffer) return -EIO; offset = 0; do { memcpy(&addr, &buffer[offset], 4); memcpy(&size, &buffer[offset + 4], 4); addr = cpu_to_le32(addr); size = cpu_to_le32(size); acquire_bus(wilc, ACQUIRE_ONLY); offset += 8; while (((int)size) && (offset < buffer_size)) { if (size <= blksz) size2 = size; else size2 = blksz; memcpy(dma_buffer, &buffer[offset], size2); ret = wilc->hif_func->hif_block_tx(wilc, addr, dma_buffer, size2); if (!ret) break; addr += size2; offset += size2; size -= size2; } release_bus(wilc, RELEASE_ONLY); if (!ret) { ret = -EIO; goto _fail_; } } while (offset < buffer_size); _fail_: kfree(dma_buffer); return (ret < 0) ? ret : 0; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim22187.35%17.69%
Arnd Bergmann93.56%17.69%
Glen Lee62.37%323.08%
Chaehyun Lim51.98%215.38%
Leo Kim51.98%323.08%
Greg Kroah-Hartman41.58%215.38%
Anish Bhatt31.19%17.69%
Total253100.00%13100.00%


int wilc_wlan_start(struct wilc *wilc) { u32 reg = 0; int ret; u32 chipid; if (wilc->io_type == HIF_SDIO) { reg = 0; reg |= BIT(3); } else if (wilc->io_type == HIF_SPI) { reg = 1; } acquire_bus(wilc, ACQUIRE_ONLY); ret = wilc->hif_func->hif_write_reg(wilc, WILC_VMM_CORE_CFG, reg); if (!ret) { release_bus(wilc, RELEASE_ONLY); return -EIO; } reg = 0; if (wilc->io_type == HIF_SDIO && wilc->dev_irq_num) reg |= WILC_HAVE_SDIO_IRQ_GPIO; #ifdef WILC_DISABLE_PMU #else reg |= WILC_HAVE_USE_PMU; #endif #ifdef WILC_SLEEP_CLK_SRC_XO reg |= WILC_HAVE_SLEEP_CLK_SRC_XO; #elif defined WILC_SLEEP_CLK_SRC_RTC reg |= WILC_HAVE_SLEEP_CLK_SRC_RTC; #endif #ifdef WILC_EXT_PA_INV_TX_RX reg |= WILC_HAVE_EXT_PA_INV_TX_RX; #endif reg |= WILC_HAVE_USE_IRQ_AS_HOST_WAKE; reg |= WILC_HAVE_LEGACY_RF_SETTINGS; #ifdef XTAL_24 reg |= WILC_HAVE_XTAL_24; #endif #ifdef DISABLE_WILC_UART reg |= WILC_HAVE_DISABLE_WILC_UART; #endif ret = wilc->hif_func->hif_write_reg(wilc, WILC_GP_REG_1, reg); if (!ret) { release_bus(wilc, RELEASE_ONLY); return -EIO; } wilc->hif_func->hif_sync_ext(wilc, NUM_INT_EXT); ret = wilc->hif_func->hif_read_reg(wilc, 0x1000, &chipid); if (!ret) { release_bus(wilc, RELEASE_ONLY); return -EIO; } wilc->hif_func->hif_read_reg(wilc, WILC_GLB_RESET_0, &reg); if ((reg & BIT(10)) == BIT(10)) { reg &= ~BIT(10); wilc->hif_func->hif_write_reg(wilc, WILC_GLB_RESET_0, reg); wilc->hif_func->hif_read_reg(wilc, WILC_GLB_RESET_0, &reg); } reg |= BIT(10); ret = wilc->hif_func->hif_write_reg(wilc, WILC_GLB_RESET_0, reg); wilc->hif_func->hif_read_reg(wilc, WILC_GLB_RESET_0, &reg); release_bus(wilc, RELEASE_ONLY); return (ret < 0) ? ret : 0; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim28875.99%18.33%
Glen Lee4311.35%433.33%
Arnd Bergmann256.60%216.67%
Anish Bhatt153.96%18.33%
Leo Kim30.79%18.33%
Chaehyun Lim20.53%18.33%
Namrata A Shettar20.53%18.33%
Rehas Sachdeva10.26%18.33%
Total379100.00%12100.00%


int wilc_wlan_stop(struct wilc *wilc) { u32 reg = 0; int ret; u8 timeout = 10; acquire_bus(wilc, ACQUIRE_AND_WAKEUP); ret = wilc->hif_func->hif_read_reg(wilc, WILC_GLB_RESET_0, &reg); if (!ret) { release_bus(wilc, RELEASE_ALLOW_SLEEP); return ret; } reg &= ~BIT(10); ret = wilc->hif_func->hif_write_reg(wilc, WILC_GLB_RESET_0, reg); if (!ret) { release_bus(wilc, RELEASE_ALLOW_SLEEP); return ret; } do { ret = wilc->hif_func->hif_read_reg(wilc, WILC_GLB_RESET_0, &reg); if (!ret) { release_bus(wilc, RELEASE_ALLOW_SLEEP); return ret; } if ((reg & BIT(10))) { reg &= ~BIT(10); ret = wilc->hif_func->hif_write_reg(wilc, WILC_GLB_RESET_0, reg); timeout--; } else { ret = wilc->hif_func->hif_read_reg(wilc, WILC_GLB_RESET_0, &reg); if (!ret) { release_bus(wilc, RELEASE_ALLOW_SLEEP); return ret; } break; } } while (timeout); reg = (BIT(0) | BIT(1) | BIT(2) | BIT(3) | BIT(8) | BIT(9) | BIT(26) | BIT(29) | BIT(30) | BIT(31)); wilc->hif_func->hif_write_reg(wilc, WILC_GLB_RESET_0, reg); reg = (u32)~BIT(10); ret = wilc->hif_func->hif_write_reg(wilc, WILC_GLB_RESET_0, reg); release_bus(wilc, RELEASE_ALLOW_SLEEP); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim23271.83%114.29%
Anish Bhatt4513.93%114.29%
Glen Lee288.67%228.57%
Arnd Bergmann164.95%114.29%
Chaehyun Lim20.62%228.57%
Total323100.00%7100.00%


void wilc_wlan_cleanup(struct net_device *dev) { struct txq_entry_t *tqe; struct rxq_entry_t *rqe; u32 reg = 0; int ret; struct wilc_vif *vif; struct wilc *wilc; vif = netdev_priv(dev); wilc = vif->wilc; wilc->quit = 1; do { tqe = wilc_wlan_txq_remove_from_head(dev); if (!tqe) break; if (tqe->tx_complete_func) tqe->tx_complete_func(tqe->priv, 0); kfree(tqe); } while (1); do { rqe = wilc_wlan_rxq_remove(wilc); if (!rqe) break; kfree(rqe); } while (1); kfree(wilc->rx_buffer); wilc->rx_buffer = NULL; kfree(wilc->tx_buffer); wilc->tx_buffer = NULL; acquire_bus(wilc, ACQUIRE_AND_WAKEUP); ret = wilc->hif_func->hif_read_reg(wilc, WILC_GP_REG_0, &reg); if (!ret) release_bus(wilc, RELEASE_ALLOW_SLEEP); ret = wilc->hif_func->hif_write_reg(wilc, WILC_GP_REG_0, (reg | ABORT_INT)); if (!ret) release_bus(wilc, RELEASE_ALLOW_SLEEP); release_bus(wilc, RELEASE_ALLOW_SLEEP); wilc->hif_func->hif_deinit(NULL); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim16570.51%17.14%
Glen Lee5322.65%857.14%
Arnd Bergmann83.42%17.14%
Greg Kroah-Hartman52.14%214.29%
Leo Kim20.85%17.14%
Chaehyun Lim10.43%17.14%
Total234100.00%14100.00%


static int wilc_wlan_cfg_commit(struct wilc_vif *vif, int type, u32 drv_handler) { struct wilc *wilc = vif->wilc; struct wilc_cfg_frame *cfg = &wilc->cfg_frame; int total_len = wilc->cfg_frame_offset + 4 + DRIVER_HANDLER_SIZE; int seq_no = wilc->cfg_seq_no % 256; int driver_handler = (u32)drv_handler; if (type == WILC_CFG_SET) cfg->wid_header[0] = 'W'; else cfg->wid_header[0] = 'Q'; cfg->wid_header[1] = seq_no; cfg->wid_header[2] = (u8)total_len; cfg->wid_header[3] = (u8)(total_len >> 8); cfg->wid_header[4] = (u8)driver_handler; cfg->wid_header[5] = (u8)(driver_handler >> 8); cfg->wid_header[6] = (u8)(driver_handler >> 16); cfg->wid_header[7] = (u8)(driver_handler >> 24); wilc->cfg_seq_no = seq_no; if (!wilc_wlan_txq_add_cfg_pkt(vif, &cfg->wid_header[0], total_len)) return -1; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim18585.25%111.11%
Glen Lee167.37%222.22%
Chaehyun Lim83.69%333.33%
Leo Kim41.84%222.22%
Arnd Bergmann41.84%111.11%
Total217100.00%9100.00%


int wilc_wlan_cfg_set(struct wilc_vif *vif, int start, u16 wid, u8 *buffer, u32 buffer_size, int commit, u32 drv_handler) { u32 offset; int ret_size; struct wilc *wilc = vif->wilc; if (wilc->cfg_frame_in_use) return 0; if (start) wilc->cfg_frame_offset = 0; offset = wilc->cfg_frame_offset; ret_size = wilc_wlan_cfg_set_wid(wilc->cfg_frame.frame, offset, wid, buffer, buffer_size); offset += ret_size; wilc->cfg_frame_offset = offset; if (commit) { netdev_dbg(vif->ndev, "[WILC]PACKET Commit with sequence number %d\n", wilc->cfg_seq_no); netdev_dbg(vif->ndev, "Processing cfg_set()\n"); wilc->cfg_frame_in_use = 1; if (wilc_wlan_cfg_commit(vif, WILC_CFG_SET, drv_handler)) ret_size = 0; if (!wait_for_completion_timeout(&wilc->cfg_event, msecs_to_jiffies(CFG_PKTS_TIMEOUT))) { netdev_dbg(vif->ndev, "Set Timed Out\n"); ret_size = 0; } wilc->cfg_frame_in_use = 0; wilc->cfg_frame_offset = 0; wilc->cfg_seq_no += 1; } return ret_size; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim14572.86%18.33%
Glen Lee4020.10%541.67%
Binoy Jayan52.51%18.33%
Chaehyun Lim52.51%325.00%
Arnd Bergmann21.01%18.33%
Leo Kim21.01%18.33%
Total199100.00%12100.00%


int wilc_wlan_cfg_get(struct wilc_vif *vif, int start, u16 wid, int commit, u32 drv_handler) { u32 offset; int ret_size; struct wilc *wilc = vif->wilc; if (wilc->cfg_frame_in_use) return 0; if (start) wilc->cfg_frame_offset = 0; offset = wilc->cfg_frame_offset; ret_size = wilc_wlan_cfg_get_wid(wilc->cfg_frame.frame, offset, wid); offset += ret_size; wilc->cfg_frame_offset = offset; if (commit) { wilc->cfg_frame_in_use = 1; if (wilc_wlan_cfg_commit(vif, WILC_CFG_QUERY, drv_handler)) ret_size = 0; if (!wait_for_completion_timeout(&wilc->cfg_event, msecs_to_jiffies(CFG_PKTS_TIMEOUT))) { netdev_dbg(vif->ndev, "Get Timed Out\n"); ret_size = 0; } wilc->cfg_frame_in_use = 0; wilc->cfg_frame_offset = 0; wilc->cfg_seq_no += 1; } return ret_size; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim12374.10%19.09%
Glen Lee3118.67%545.45%
Binoy Jayan53.01%19.09%
Chaehyun Lim31.81%218.18%
Arnd Bergmann21.20%19.09%
Leo Kim21.20%19.09%
Total166100.00%11100.00%


int wilc_wlan_cfg_get_val(u16 wid, u8 *buffer, u32 buffer_size) { return wilc_wlan_cfg_get_wid_value(wid, buffer, buffer_size); }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim2080.00%116.67%
Chaehyun Lim312.00%350.00%
Glen Lee14.00%116.67%
Bhaktipriya Shridhar14.00%116.67%
Total25100.00%6100.00%


int wilc_send_config_pkt(struct wilc_vif *vif, u8 mode, struct wid *wids, u32 count, u32 drv) { int i; int ret = 0; if (mode == GET_CFG) { for (i = 0; i < count; i++) { if (!wilc_wlan_cfg_get(vif, !i, wids[i].id, (i == count - 1), drv)) { ret = -ETIMEDOUT; break; } } for (i = 0; i < count; i++) { wids[i].size = wilc_wlan_cfg_get_val(wids[i].id, wids[i].val, wids[i].size); } } else if (mode == SET_CFG) { for (i = 0; i < count; i++) { if (!wilc_wlan_cfg_set(vif, !i, wids[i].id, wids[i].val, wids[i].size, (i == count - 1), drv)) { ret = -ETIMEDOUT; break; } } } return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Glen Lee18887.85%240.00%
Chaehyun Lim2612.15%360.00%
Total214100.00%5100.00%


static u32 init_chip(struct net_device *dev) { u32 chipid; u32 reg, ret = 0; struct wilc_vif *vif; struct wilc *wilc; vif = netdev_priv(dev); wilc = vif->wilc; acquire_bus(wilc, ACQUIRE_ONLY); chipid = wilc_get_chipid(wilc, true); if ((chipid & 0xfff) != 0xa0) { ret = wilc->hif_func->hif_read_reg(wilc, 0x1118, &reg); if (!ret) { netdev_err(dev, "fail read reg 0x1118\n"); return ret; } reg |= BIT(0); ret = wilc->hif_func->hif_write_reg(wilc, 0x1118, reg); if (!ret) { netdev_err(dev, "fail write reg 0x1118\n"); return ret; } ret = wilc->hif_func->hif_write_reg(wilc, 0xc0000, 0x71); if (!ret) { netdev_err(dev, "fail write reg 0xc0000\n"); return ret; } } release_bus(wilc, RELEASE_ONLY); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim12165.05%18.33%
Glen Lee2613.98%541.67%
Arnd Bergmann2312.37%216.67%
Leo Kim94.84%18.33%
Anish Bhatt31.61%18.33%
Chaehyun Lim31.61%18.33%
Dean Lee10.54%18.33%
Total186100.00%12100.00%


u32 wilc_get_chipid(struct wilc *wilc, bool update) { static u32 chipid; u32 tempchipid = 0; u32 rfrevid = 0; if (chipid == 0 || update) { wilc->hif_func->hif_read_reg(wilc, 0x1000, &tempchipid); wilc->hif_func->hif_read_reg(wilc, 0x13f4, &rfrevid); if (!ISWILC1000(tempchipid)) { chipid = 0; return chipid; } if (tempchipid == 0x1002a0) { if (rfrevid != 0x1) tempchipid = 0x1002a1; } else if (tempchipid == 0x1002b0) { if (rfrevid == 0x4) tempchipid = 0x1002b1; else if (rfrevid != 0x3) tempchipid = 0x1002b2; } chipid = tempchipid; } return chipid; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim10475.91%116.67%
Glen Lee1510.95%350.00%
Chris Park1410.22%116.67%
Chaehyun Lim42.92%116.67%
Total137100.00%6100.00%


int wilc_wlan_init(struct net_device *dev) { int ret = 0; struct wilc_vif *vif = netdev_priv(dev); struct wilc *wilc; wilc = vif->wilc; wilc->quit = 0; if (!wilc->hif_func->hif_init(wilc, false)) { ret = -EIO; goto _fail_; } if (!wilc_wlan_cfg_init()) { ret = -ENOBUFS; goto _fail_; } if (!wilc->tx_buffer) wilc->tx_buffer = kmalloc(LINUX_TX_SIZE, GFP_KERNEL); if (!wilc->tx_buffer) { ret = -ENOBUFS; goto _fail_; } if (!wilc->rx_buffer) wilc->rx_buffer = kmalloc(LINUX_RX_SIZE, GFP_KERNEL); if (!wilc->rx_buffer) { ret = -ENOBUFS; goto _fail_; } if (!init_chip(dev)) { ret = -EIO; goto _fail_; } return 1; _fail_: kfree(wilc->rx_buffer); wilc->rx_buffer = NULL; kfree(wilc->tx_buffer); wilc->tx_buffer = NULL; return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim12058.82%15.26%
Glen Lee6330.88%1157.89%
Leo Kim104.90%315.79%
Greg Kroah-Hartman104.90%315.79%
Arnd Bergmann10.49%15.26%
Total204100.00%19100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Johnny Kim514271.60%10.74%
Glen Lee135018.80%5540.74%
Arnd Bergmann1652.30%85.93%
Leo Kim1562.17%3626.67%
Chaehyun Lim1351.88%128.89%
Anish Bhatt991.38%10.74%
Greg Kroah-Hartman690.96%85.93%
Binoy Jayan270.38%32.22%
Chris Park140.19%10.74%
Dean Lee80.11%10.74%
Claudiu Beznea70.10%10.74%
Namrata A Shettar20.03%10.74%
Shraddha Barke20.03%10.74%
Rehas Sachdeva10.01%10.74%
Bhaktipriya Shridhar10.01%10.74%
Janani Ravichandran10.01%10.74%
Amitoj Kaur Chawla10.01%10.74%
Tony Cho10.01%10.74%
Hari Prasath Gujulan Elango10.01%10.74%
Total7182100.00%135100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.