2014-09-27 06:21:21 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011, 2012, Qualcomm Atheros Communications Inc.
|
|
|
|
* Copyright (c) 2014, I2SE GmbH
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software
|
|
|
|
* for any purpose with or without fee is hereby granted, provided
|
|
|
|
* that the above copyright notice and this permission notice appear
|
|
|
|
* in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
|
|
|
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
|
|
* THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This module implements the Qualcomm Atheros SPI protocol for
|
|
|
|
* kernel-based SPI device; it is essentially an Ethernet-to-SPI
|
|
|
|
* serial converter;
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/etherdevice.h>
|
|
|
|
#include <linux/if_arp.h>
|
|
|
|
#include <linux/if_ether.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/jiffies.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/kthread.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/moduleparam.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_device.h>
|
|
|
|
#include <linux/of_net.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/spi/spi.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
#include "qca_7k.h"
|
2017-05-29 19:57:18 +08:00
|
|
|
#include "qca_7k_common.h"
|
2014-09-27 06:21:21 +08:00
|
|
|
#include "qca_debug.h"
|
|
|
|
#include "qca_spi.h"
|
|
|
|
|
|
|
|
#define MAX_DMA_BURST_LEN 5000
|
|
|
|
|
|
|
|
/* Modules parameters */
|
|
|
|
#define QCASPI_CLK_SPEED_MIN 1000000
|
|
|
|
#define QCASPI_CLK_SPEED_MAX 16000000
|
|
|
|
#define QCASPI_CLK_SPEED 8000000
|
|
|
|
static int qcaspi_clkspeed;
|
|
|
|
module_param(qcaspi_clkspeed, int, 0);
|
|
|
|
MODULE_PARM_DESC(qcaspi_clkspeed, "SPI bus clock speed (Hz). Use 1000000-16000000.");
|
|
|
|
|
|
|
|
#define QCASPI_BURST_LEN_MIN 1
|
|
|
|
#define QCASPI_BURST_LEN_MAX MAX_DMA_BURST_LEN
|
|
|
|
static int qcaspi_burst_len = MAX_DMA_BURST_LEN;
|
|
|
|
module_param(qcaspi_burst_len, int, 0);
|
|
|
|
MODULE_PARM_DESC(qcaspi_burst_len, "Number of data bytes per burst. Use 1-5000.");
|
|
|
|
|
|
|
|
#define QCASPI_PLUGGABLE_MIN 0
|
|
|
|
#define QCASPI_PLUGGABLE_MAX 1
|
|
|
|
static int qcaspi_pluggable = QCASPI_PLUGGABLE_MIN;
|
|
|
|
module_param(qcaspi_pluggable, int, 0);
|
|
|
|
MODULE_PARM_DESC(qcaspi_pluggable, "Pluggable SPI connection (yes/no).");
|
|
|
|
|
2018-09-24 19:20:10 +08:00
|
|
|
#define QCASPI_WRITE_VERIFY_MIN 0
|
|
|
|
#define QCASPI_WRITE_VERIFY_MAX 3
|
|
|
|
static int wr_verify = QCASPI_WRITE_VERIFY_MIN;
|
|
|
|
module_param(wr_verify, int, 0);
|
|
|
|
MODULE_PARM_DESC(wr_verify, "SPI register write verify trails. Use 0-3.");
|
|
|
|
|
2014-09-27 06:21:21 +08:00
|
|
|
#define QCASPI_TX_TIMEOUT (1 * HZ)
|
|
|
|
#define QCASPI_QCA7K_REBOOT_TIME_MS 1000
|
|
|
|
|
|
|
|
static void
|
|
|
|
start_spi_intr_handling(struct qcaspi *qca, u16 *intr_cause)
|
|
|
|
{
|
|
|
|
*intr_cause = 0;
|
|
|
|
|
2018-09-24 19:20:10 +08:00
|
|
|
qcaspi_write_register(qca, SPI_REG_INTR_ENABLE, 0, wr_verify);
|
2014-09-27 06:21:21 +08:00
|
|
|
qcaspi_read_register(qca, SPI_REG_INTR_CAUSE, intr_cause);
|
|
|
|
netdev_dbg(qca->net_dev, "interrupts: 0x%04x\n", *intr_cause);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
end_spi_intr_handling(struct qcaspi *qca, u16 intr_cause)
|
|
|
|
{
|
|
|
|
u16 intr_enable = (SPI_INT_CPU_ON |
|
|
|
|
SPI_INT_PKT_AVLBL |
|
|
|
|
SPI_INT_RDBUF_ERR |
|
|
|
|
SPI_INT_WRBUF_ERR);
|
|
|
|
|
2018-09-24 19:20:10 +08:00
|
|
|
qcaspi_write_register(qca, SPI_REG_INTR_CAUSE, intr_cause, 0);
|
|
|
|
qcaspi_write_register(qca, SPI_REG_INTR_ENABLE, intr_enable, wr_verify);
|
2014-09-27 06:21:21 +08:00
|
|
|
netdev_dbg(qca->net_dev, "acking int: 0x%04x\n", intr_cause);
|
|
|
|
}
|
|
|
|
|
|
|
|
static u32
|
|
|
|
qcaspi_write_burst(struct qcaspi *qca, u8 *src, u32 len)
|
|
|
|
{
|
|
|
|
__be16 cmd;
|
2018-09-05 21:23:18 +08:00
|
|
|
struct spi_message msg;
|
|
|
|
struct spi_transfer transfer[2];
|
2014-09-27 06:21:21 +08:00
|
|
|
int ret;
|
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
memset(&transfer, 0, sizeof(transfer));
|
|
|
|
spi_message_init(&msg);
|
|
|
|
|
2014-09-27 06:21:21 +08:00
|
|
|
cmd = cpu_to_be16(QCA7K_SPI_WRITE | QCA7K_SPI_EXTERNAL);
|
2018-09-05 21:23:18 +08:00
|
|
|
transfer[0].tx_buf = &cmd;
|
|
|
|
transfer[0].len = QCASPI_CMD_LEN;
|
|
|
|
transfer[1].tx_buf = src;
|
|
|
|
transfer[1].len = len;
|
2014-09-27 06:21:21 +08:00
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
spi_message_add_tail(&transfer[0], &msg);
|
|
|
|
spi_message_add_tail(&transfer[1], &msg);
|
|
|
|
ret = spi_sync(qca->spi_dev, &msg);
|
2014-09-27 06:21:21 +08:00
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
if (ret || (msg.actual_length != QCASPI_CMD_LEN + len)) {
|
2014-09-27 06:21:21 +08:00
|
|
|
qcaspi_spi_error(qca);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u32
|
|
|
|
qcaspi_write_legacy(struct qcaspi *qca, u8 *src, u32 len)
|
|
|
|
{
|
2018-09-05 21:23:18 +08:00
|
|
|
struct spi_message msg;
|
|
|
|
struct spi_transfer transfer;
|
2014-09-27 06:21:21 +08:00
|
|
|
int ret;
|
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
memset(&transfer, 0, sizeof(transfer));
|
|
|
|
spi_message_init(&msg);
|
|
|
|
|
|
|
|
transfer.tx_buf = src;
|
|
|
|
transfer.len = len;
|
2014-09-27 06:21:21 +08:00
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
spi_message_add_tail(&transfer, &msg);
|
|
|
|
ret = spi_sync(qca->spi_dev, &msg);
|
2014-09-27 06:21:21 +08:00
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
if (ret || (msg.actual_length != len)) {
|
2014-09-27 06:21:21 +08:00
|
|
|
qcaspi_spi_error(qca);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u32
|
|
|
|
qcaspi_read_burst(struct qcaspi *qca, u8 *dst, u32 len)
|
|
|
|
{
|
2018-09-05 21:23:18 +08:00
|
|
|
struct spi_message msg;
|
2014-09-27 06:21:21 +08:00
|
|
|
__be16 cmd;
|
2018-09-05 21:23:18 +08:00
|
|
|
struct spi_transfer transfer[2];
|
2014-09-27 06:21:21 +08:00
|
|
|
int ret;
|
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
memset(&transfer, 0, sizeof(transfer));
|
|
|
|
spi_message_init(&msg);
|
|
|
|
|
2014-09-27 06:21:21 +08:00
|
|
|
cmd = cpu_to_be16(QCA7K_SPI_READ | QCA7K_SPI_EXTERNAL);
|
2018-09-05 21:23:18 +08:00
|
|
|
transfer[0].tx_buf = &cmd;
|
|
|
|
transfer[0].len = QCASPI_CMD_LEN;
|
|
|
|
transfer[1].rx_buf = dst;
|
|
|
|
transfer[1].len = len;
|
2014-09-27 06:21:21 +08:00
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
spi_message_add_tail(&transfer[0], &msg);
|
|
|
|
spi_message_add_tail(&transfer[1], &msg);
|
|
|
|
ret = spi_sync(qca->spi_dev, &msg);
|
2014-09-27 06:21:21 +08:00
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
if (ret || (msg.actual_length != QCASPI_CMD_LEN + len)) {
|
2014-09-27 06:21:21 +08:00
|
|
|
qcaspi_spi_error(qca);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u32
|
|
|
|
qcaspi_read_legacy(struct qcaspi *qca, u8 *dst, u32 len)
|
|
|
|
{
|
2018-09-05 21:23:18 +08:00
|
|
|
struct spi_message msg;
|
|
|
|
struct spi_transfer transfer;
|
2014-09-27 06:21:21 +08:00
|
|
|
int ret;
|
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
memset(&transfer, 0, sizeof(transfer));
|
|
|
|
spi_message_init(&msg);
|
2014-09-27 06:21:21 +08:00
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
transfer.rx_buf = dst;
|
|
|
|
transfer.len = len;
|
2014-09-27 06:21:21 +08:00
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
spi_message_add_tail(&transfer, &msg);
|
|
|
|
ret = spi_sync(qca->spi_dev, &msg);
|
|
|
|
|
|
|
|
if (ret || (msg.actual_length != len)) {
|
2014-09-27 06:21:21 +08:00
|
|
|
qcaspi_spi_error(qca);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2017-05-29 19:57:16 +08:00
|
|
|
static int
|
|
|
|
qcaspi_tx_cmd(struct qcaspi *qca, u16 cmd)
|
|
|
|
{
|
|
|
|
__be16 tx_data;
|
2018-09-05 21:23:18 +08:00
|
|
|
struct spi_message msg;
|
|
|
|
struct spi_transfer transfer;
|
2017-05-29 19:57:16 +08:00
|
|
|
int ret;
|
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
memset(&transfer, 0, sizeof(transfer));
|
|
|
|
|
|
|
|
spi_message_init(&msg);
|
|
|
|
|
2017-05-29 19:57:16 +08:00
|
|
|
tx_data = cpu_to_be16(cmd);
|
2018-09-05 21:23:18 +08:00
|
|
|
transfer.len = sizeof(cmd);
|
|
|
|
transfer.tx_buf = &tx_data;
|
|
|
|
spi_message_add_tail(&transfer, &msg);
|
2017-05-29 19:57:16 +08:00
|
|
|
|
2018-09-05 21:23:18 +08:00
|
|
|
ret = spi_sync(qca->spi_dev, &msg);
|
2017-05-29 19:57:16 +08:00
|
|
|
|
|
|
|
if (!ret)
|
2018-09-05 21:23:18 +08:00
|
|
|
ret = msg.status;
|
2017-05-29 19:57:16 +08:00
|
|
|
|
|
|
|
if (ret)
|
|
|
|
qcaspi_spi_error(qca);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-09-27 06:21:21 +08:00
|
|
|
static int
|
|
|
|
qcaspi_tx_frame(struct qcaspi *qca, struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
u32 count;
|
|
|
|
u32 written;
|
|
|
|
u32 offset;
|
|
|
|
u32 len;
|
|
|
|
|
|
|
|
len = skb->len;
|
|
|
|
|
2018-09-24 19:20:10 +08:00
|
|
|
qcaspi_write_register(qca, SPI_REG_BFR_SIZE, len, wr_verify);
|
2014-09-27 06:21:21 +08:00
|
|
|
if (qca->legacy_mode)
|
|
|
|
qcaspi_tx_cmd(qca, QCA7K_SPI_WRITE | QCA7K_SPI_EXTERNAL);
|
|
|
|
|
|
|
|
offset = 0;
|
|
|
|
while (len) {
|
|
|
|
count = len;
|
|
|
|
if (count > qca->burst_len)
|
|
|
|
count = qca->burst_len;
|
|
|
|
|
|
|
|
if (qca->legacy_mode) {
|
|
|
|
written = qcaspi_write_legacy(qca,
|
|
|
|
skb->data + offset,
|
|
|
|
count);
|
|
|
|
} else {
|
|
|
|
written = qcaspi_write_burst(qca,
|
|
|
|
skb->data + offset,
|
|
|
|
count);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (written != count)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
offset += count;
|
|
|
|
len -= count;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
qcaspi_transmit(struct qcaspi *qca)
|
|
|
|
{
|
|
|
|
struct net_device_stats *n_stats = &qca->net_dev->stats;
|
|
|
|
u16 available = 0;
|
|
|
|
u32 pkt_len;
|
|
|
|
u16 new_head;
|
|
|
|
u16 packets = 0;
|
|
|
|
|
|
|
|
if (qca->txr.skb[qca->txr.head] == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
qcaspi_read_register(qca, SPI_REG_WRBUF_SPC_AVA, &available);
|
|
|
|
|
2018-11-08 21:38:21 +08:00
|
|
|
if (available > QCASPI_HW_BUF_LEN) {
|
|
|
|
/* This could only happen by interferences on the SPI line.
|
|
|
|
* So retry later ...
|
|
|
|
*/
|
|
|
|
qca->stats.buf_avail_err++;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-09-27 06:21:21 +08:00
|
|
|
while (qca->txr.skb[qca->txr.head]) {
|
|
|
|
pkt_len = qca->txr.skb[qca->txr.head]->len + QCASPI_HW_PKT_LEN;
|
|
|
|
|
|
|
|
if (available < pkt_len) {
|
|
|
|
if (packets == 0)
|
|
|
|
qca->stats.write_buf_miss++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qcaspi_tx_frame(qca, qca->txr.skb[qca->txr.head]) == -1) {
|
|
|
|
qca->stats.write_err++;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
packets++;
|
|
|
|
n_stats->tx_packets++;
|
|
|
|
n_stats->tx_bytes += qca->txr.skb[qca->txr.head]->len;
|
|
|
|
available -= pkt_len;
|
|
|
|
|
|
|
|
/* remove the skb from the queue */
|
|
|
|
/* XXX After inconsistent lock states netif_tx_lock()
|
|
|
|
* has been replaced by netif_tx_lock_bh() and so on.
|
|
|
|
*/
|
|
|
|
netif_tx_lock_bh(qca->net_dev);
|
|
|
|
dev_kfree_skb(qca->txr.skb[qca->txr.head]);
|
|
|
|
qca->txr.skb[qca->txr.head] = NULL;
|
|
|
|
qca->txr.size -= pkt_len;
|
|
|
|
new_head = qca->txr.head + 1;
|
|
|
|
if (new_head >= qca->txr.count)
|
|
|
|
new_head = 0;
|
|
|
|
qca->txr.head = new_head;
|
|
|
|
if (netif_queue_stopped(qca->net_dev))
|
|
|
|
netif_wake_queue(qca->net_dev);
|
|
|
|
netif_tx_unlock_bh(qca->net_dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
qcaspi_receive(struct qcaspi *qca)
|
|
|
|
{
|
|
|
|
struct net_device *net_dev = qca->net_dev;
|
|
|
|
struct net_device_stats *n_stats = &net_dev->stats;
|
|
|
|
u16 available = 0;
|
|
|
|
u32 bytes_read;
|
|
|
|
u8 *cp;
|
|
|
|
|
|
|
|
/* Allocate rx SKB if we don't have one available. */
|
|
|
|
if (!qca->rx_skb) {
|
2017-05-09 21:40:38 +08:00
|
|
|
qca->rx_skb = netdev_alloc_skb_ip_align(net_dev,
|
|
|
|
net_dev->mtu +
|
|
|
|
VLAN_ETH_HLEN);
|
2014-09-27 06:21:21 +08:00
|
|
|
if (!qca->rx_skb) {
|
|
|
|
netdev_dbg(net_dev, "out of RX resources\n");
|
|
|
|
qca->stats.out_of_mem++;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read the packet size. */
|
|
|
|
qcaspi_read_register(qca, SPI_REG_RDBUF_BYTE_AVA, &available);
|
2018-09-24 19:20:10 +08:00
|
|
|
|
2014-09-27 06:21:21 +08:00
|
|
|
netdev_dbg(net_dev, "qcaspi_receive: SPI_REG_RDBUF_BYTE_AVA: Value: %08x\n",
|
|
|
|
available);
|
|
|
|
|
2019-11-21 01:29:12 +08:00
|
|
|
if (available > QCASPI_HW_BUF_LEN + QCASPI_HW_PKT_LEN) {
|
2018-11-08 21:38:21 +08:00
|
|
|
/* This could only happen by interferences on the SPI line.
|
|
|
|
* So retry later ...
|
|
|
|
*/
|
|
|
|
qca->stats.buf_avail_err++;
|
|
|
|
return -1;
|
|
|
|
} else if (available == 0) {
|
2014-09-27 06:21:21 +08:00
|
|
|
netdev_dbg(net_dev, "qcaspi_receive called without any data being available!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-09-24 19:20:10 +08:00
|
|
|
qcaspi_write_register(qca, SPI_REG_BFR_SIZE, available, wr_verify);
|
2014-09-27 06:21:21 +08:00
|
|
|
|
|
|
|
if (qca->legacy_mode)
|
|
|
|
qcaspi_tx_cmd(qca, QCA7K_SPI_READ | QCA7K_SPI_EXTERNAL);
|
|
|
|
|
|
|
|
while (available) {
|
|
|
|
u32 count = available;
|
|
|
|
|
|
|
|
if (count > qca->burst_len)
|
|
|
|
count = qca->burst_len;
|
|
|
|
|
|
|
|
if (qca->legacy_mode) {
|
|
|
|
bytes_read = qcaspi_read_legacy(qca, qca->rx_buffer,
|
|
|
|
count);
|
|
|
|
} else {
|
|
|
|
bytes_read = qcaspi_read_burst(qca, qca->rx_buffer,
|
|
|
|
count);
|
|
|
|
}
|
|
|
|
|
|
|
|
netdev_dbg(net_dev, "available: %d, byte read: %d\n",
|
|
|
|
available, bytes_read);
|
|
|
|
|
|
|
|
if (bytes_read) {
|
|
|
|
available -= bytes_read;
|
|
|
|
} else {
|
|
|
|
qca->stats.read_err++;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
cp = qca->rx_buffer;
|
|
|
|
|
|
|
|
while ((bytes_read--) && (qca->rx_skb)) {
|
|
|
|
s32 retcode;
|
|
|
|
|
|
|
|
retcode = qcafrm_fsm_decode(&qca->frm_handle,
|
|
|
|
qca->rx_skb->data,
|
|
|
|
skb_tailroom(qca->rx_skb),
|
|
|
|
*cp);
|
|
|
|
cp++;
|
|
|
|
switch (retcode) {
|
|
|
|
case QCAFRM_GATHER:
|
|
|
|
case QCAFRM_NOHEAD:
|
|
|
|
break;
|
|
|
|
case QCAFRM_NOTAIL:
|
|
|
|
netdev_dbg(net_dev, "no RX tail\n");
|
|
|
|
n_stats->rx_errors++;
|
|
|
|
n_stats->rx_dropped++;
|
|
|
|
break;
|
|
|
|
case QCAFRM_INVLEN:
|
|
|
|
netdev_dbg(net_dev, "invalid RX length\n");
|
|
|
|
n_stats->rx_errors++;
|
|
|
|
n_stats->rx_dropped++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
qca->rx_skb->dev = qca->net_dev;
|
|
|
|
n_stats->rx_packets++;
|
|
|
|
n_stats->rx_bytes += retcode;
|
|
|
|
skb_put(qca->rx_skb, retcode);
|
|
|
|
qca->rx_skb->protocol = eth_type_trans(
|
|
|
|
qca->rx_skb, qca->rx_skb->dev);
|
2021-08-28 22:23:15 +08:00
|
|
|
skb_checksum_none_assert(qca->rx_skb);
|
2022-03-04 01:15:02 +08:00
|
|
|
netif_rx(qca->rx_skb);
|
2017-05-09 21:40:38 +08:00
|
|
|
qca->rx_skb = netdev_alloc_skb_ip_align(net_dev,
|
2014-09-27 06:21:21 +08:00
|
|
|
net_dev->mtu + VLAN_ETH_HLEN);
|
|
|
|
if (!qca->rx_skb) {
|
|
|
|
netdev_dbg(net_dev, "out of RX resources\n");
|
|
|
|
n_stats->rx_errors++;
|
|
|
|
qca->stats.out_of_mem++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that tx ring stores only so much bytes
|
|
|
|
* that fit into the internal QCA buffer.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
qcaspi_tx_ring_has_space(struct tx_ring *txr)
|
|
|
|
{
|
|
|
|
if (txr->skb[txr->tail])
|
|
|
|
return 0;
|
|
|
|
|
2017-05-29 19:57:14 +08:00
|
|
|
return (txr->size + QCAFRM_MAX_LEN < QCASPI_HW_BUF_LEN) ? 1 : 0;
|
2014-09-27 06:21:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Flush the tx ring. This function is only safe to
|
|
|
|
* call from the qcaspi_spi_thread.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
qcaspi_flush_tx_ring(struct qcaspi *qca)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* XXX After inconsistent lock states netif_tx_lock()
|
|
|
|
* has been replaced by netif_tx_lock_bh() and so on.
|
|
|
|
*/
|
|
|
|
netif_tx_lock_bh(qca->net_dev);
|
|
|
|
for (i = 0; i < TX_RING_MAX_LEN; i++) {
|
|
|
|
if (qca->txr.skb[i]) {
|
|
|
|
dev_kfree_skb(qca->txr.skb[i]);
|
|
|
|
qca->txr.skb[i] = NULL;
|
|
|
|
qca->net_dev->stats.tx_dropped++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
qca->txr.tail = 0;
|
|
|
|
qca->txr.head = 0;
|
|
|
|
qca->txr.size = 0;
|
|
|
|
netif_tx_unlock_bh(qca->net_dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
qcaspi_qca7k_sync(struct qcaspi *qca, int event)
|
|
|
|
{
|
|
|
|
u16 signature = 0;
|
|
|
|
u16 spi_config;
|
|
|
|
u16 wrbuf_space = 0;
|
|
|
|
|
|
|
|
if (event == QCASPI_EVENT_CPUON) {
|
|
|
|
/* Read signature twice, if not valid
|
|
|
|
* go back to unknown state.
|
|
|
|
*/
|
|
|
|
qcaspi_read_register(qca, SPI_REG_SIGNATURE, &signature);
|
|
|
|
qcaspi_read_register(qca, SPI_REG_SIGNATURE, &signature);
|
|
|
|
if (signature != QCASPI_GOOD_SIGNATURE) {
|
2021-05-08 20:36:35 +08:00
|
|
|
if (qca->sync == QCASPI_SYNC_READY)
|
|
|
|
qca->stats.bad_signature++;
|
|
|
|
|
2014-09-27 06:21:21 +08:00
|
|
|
qca->sync = QCASPI_SYNC_UNKNOWN;
|
|
|
|
netdev_dbg(qca->net_dev, "sync: got CPU on, but signature was invalid, restart\n");
|
2021-05-08 20:36:33 +08:00
|
|
|
return;
|
2014-09-27 06:21:21 +08:00
|
|
|
} else {
|
|
|
|
/* ensure that the WRBUF is empty */
|
|
|
|
qcaspi_read_register(qca, SPI_REG_WRBUF_SPC_AVA,
|
|
|
|
&wrbuf_space);
|
|
|
|
if (wrbuf_space != QCASPI_HW_BUF_LEN) {
|
|
|
|
netdev_dbg(qca->net_dev, "sync: got CPU on, but wrbuf not empty. reset!\n");
|
|
|
|
qca->sync = QCASPI_SYNC_UNKNOWN;
|
|
|
|
} else {
|
|
|
|
netdev_dbg(qca->net_dev, "sync: got CPU on, now in sync\n");
|
|
|
|
qca->sync = QCASPI_SYNC_READY;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (qca->sync) {
|
|
|
|
case QCASPI_SYNC_READY:
|
2021-05-08 20:36:34 +08:00
|
|
|
/* Check signature twice, if not valid go to unknown state. */
|
2014-09-27 06:21:21 +08:00
|
|
|
qcaspi_read_register(qca, SPI_REG_SIGNATURE, &signature);
|
2021-05-08 20:36:34 +08:00
|
|
|
if (signature != QCASPI_GOOD_SIGNATURE)
|
|
|
|
qcaspi_read_register(qca, SPI_REG_SIGNATURE, &signature);
|
|
|
|
|
2014-09-27 06:21:21 +08:00
|
|
|
if (signature != QCASPI_GOOD_SIGNATURE) {
|
|
|
|
qca->sync = QCASPI_SYNC_UNKNOWN;
|
2021-05-08 20:36:35 +08:00
|
|
|
qca->stats.bad_signature++;
|
2014-09-27 06:21:21 +08:00
|
|
|
netdev_dbg(qca->net_dev, "sync: bad signature, restart\n");
|
|
|
|
/* don't reset right away */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case QCASPI_SYNC_UNKNOWN:
|
|
|
|
/* Read signature, if not valid stay in unknown state */
|
|
|
|
qcaspi_read_register(qca, SPI_REG_SIGNATURE, &signature);
|
|
|
|
if (signature != QCASPI_GOOD_SIGNATURE) {
|
|
|
|
netdev_dbg(qca->net_dev, "sync: could not read signature to reset device, retry.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: use GPIO to reset QCA7000 in legacy mode*/
|
|
|
|
netdev_dbg(qca->net_dev, "sync: resetting device.\n");
|
|
|
|
qcaspi_read_register(qca, SPI_REG_SPI_CONFIG, &spi_config);
|
|
|
|
spi_config |= QCASPI_SLAVE_RESET_BIT;
|
2018-09-24 19:20:10 +08:00
|
|
|
qcaspi_write_register(qca, SPI_REG_SPI_CONFIG, spi_config, 0);
|
2014-09-27 06:21:21 +08:00
|
|
|
|
|
|
|
qca->sync = QCASPI_SYNC_RESET;
|
|
|
|
qca->stats.trig_reset++;
|
2019-11-21 01:29:13 +08:00
|
|
|
qca->reset_count = 0;
|
2014-09-27 06:21:21 +08:00
|
|
|
break;
|
|
|
|
case QCASPI_SYNC_RESET:
|
2019-11-21 01:29:13 +08:00
|
|
|
qca->reset_count++;
|
2014-09-27 06:21:21 +08:00
|
|
|
netdev_dbg(qca->net_dev, "sync: waiting for CPU on, count %u.\n",
|
2019-11-21 01:29:13 +08:00
|
|
|
qca->reset_count);
|
|
|
|
if (qca->reset_count >= QCASPI_RESET_TIMEOUT) {
|
2014-09-27 06:21:21 +08:00
|
|
|
/* reset did not seem to take place, try again */
|
|
|
|
qca->sync = QCASPI_SYNC_UNKNOWN;
|
|
|
|
qca->stats.reset_timeout++;
|
|
|
|
netdev_dbg(qca->net_dev, "sync: reset timeout, restarting process.\n");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
qcaspi_spi_thread(void *data)
|
|
|
|
{
|
|
|
|
struct qcaspi *qca = data;
|
|
|
|
u16 intr_cause = 0;
|
|
|
|
|
|
|
|
netdev_info(qca->net_dev, "SPI thread created\n");
|
|
|
|
while (!kthread_should_stop()) {
|
|
|
|
set_current_state(TASK_INTERRUPTIBLE);
|
|
|
|
if ((qca->intr_req == qca->intr_svc) &&
|
|
|
|
(qca->txr.skb[qca->txr.head] == NULL) &&
|
|
|
|
(qca->sync == QCASPI_SYNC_READY))
|
|
|
|
schedule();
|
|
|
|
|
|
|
|
set_current_state(TASK_RUNNING);
|
|
|
|
|
|
|
|
netdev_dbg(qca->net_dev, "have work to do. int: %d, tx_skb: %p\n",
|
|
|
|
qca->intr_req - qca->intr_svc,
|
|
|
|
qca->txr.skb[qca->txr.head]);
|
|
|
|
|
|
|
|
qcaspi_qca7k_sync(qca, QCASPI_EVENT_UPDATE);
|
|
|
|
|
|
|
|
if (qca->sync != QCASPI_SYNC_READY) {
|
|
|
|
netdev_dbg(qca->net_dev, "sync: not ready %u, turn off carrier and flush\n",
|
|
|
|
(unsigned int)qca->sync);
|
|
|
|
netif_stop_queue(qca->net_dev);
|
|
|
|
netif_carrier_off(qca->net_dev);
|
|
|
|
qcaspi_flush_tx_ring(qca);
|
|
|
|
msleep(QCASPI_QCA7K_REBOOT_TIME_MS);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qca->intr_svc != qca->intr_req) {
|
|
|
|
qca->intr_svc = qca->intr_req;
|
|
|
|
start_spi_intr_handling(qca, &intr_cause);
|
|
|
|
|
|
|
|
if (intr_cause & SPI_INT_CPU_ON) {
|
|
|
|
qcaspi_qca7k_sync(qca, QCASPI_EVENT_CPUON);
|
|
|
|
|
|
|
|
/* not synced. */
|
|
|
|
if (qca->sync != QCASPI_SYNC_READY)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
qca->stats.device_reset++;
|
|
|
|
netif_wake_queue(qca->net_dev);
|
|
|
|
netif_carrier_on(qca->net_dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (intr_cause & SPI_INT_RDBUF_ERR) {
|
|
|
|
/* restart sync */
|
|
|
|
netdev_dbg(qca->net_dev, "===> rdbuf error!\n");
|
|
|
|
qca->stats.read_buf_err++;
|
|
|
|
qca->sync = QCASPI_SYNC_UNKNOWN;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (intr_cause & SPI_INT_WRBUF_ERR) {
|
|
|
|
/* restart sync */
|
|
|
|
netdev_dbg(qca->net_dev, "===> wrbuf error!\n");
|
|
|
|
qca->stats.write_buf_err++;
|
|
|
|
qca->sync = QCASPI_SYNC_UNKNOWN;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* can only handle other interrupts
|
2015-03-07 12:49:12 +08:00
|
|
|
* if sync has occurred
|
2014-09-27 06:21:21 +08:00
|
|
|
*/
|
|
|
|
if (qca->sync == QCASPI_SYNC_READY) {
|
|
|
|
if (intr_cause & SPI_INT_PKT_AVLBL)
|
|
|
|
qcaspi_receive(qca);
|
|
|
|
}
|
|
|
|
|
|
|
|
end_spi_intr_handling(qca, intr_cause);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qca->sync == QCASPI_SYNC_READY)
|
|
|
|
qcaspi_transmit(qca);
|
|
|
|
}
|
|
|
|
set_current_state(TASK_RUNNING);
|
|
|
|
netdev_info(qca->net_dev, "SPI thread exit\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static irqreturn_t
|
|
|
|
qcaspi_intr_handler(int irq, void *data)
|
|
|
|
{
|
|
|
|
struct qcaspi *qca = data;
|
|
|
|
|
|
|
|
qca->intr_req++;
|
2021-06-11 16:28:11 +08:00
|
|
|
if (qca->spi_thread)
|
2014-09-27 06:21:21 +08:00
|
|
|
wake_up_process(qca->spi_thread);
|
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2017-05-29 19:57:13 +08:00
|
|
|
static int
|
2014-09-27 06:21:21 +08:00
|
|
|
qcaspi_netdev_open(struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct qcaspi *qca = netdev_priv(dev);
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (!qca)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
qca->intr_req = 1;
|
|
|
|
qca->intr_svc = 0;
|
|
|
|
qca->sync = QCASPI_SYNC_UNKNOWN;
|
2017-05-29 19:57:19 +08:00
|
|
|
qcafrm_fsm_init_spi(&qca->frm_handle);
|
2014-09-27 06:21:21 +08:00
|
|
|
|
|
|
|
qca->spi_thread = kthread_run((void *)qcaspi_spi_thread,
|
|
|
|
qca, "%s", dev->name);
|
|
|
|
|
|
|
|
if (IS_ERR(qca->spi_thread)) {
|
|
|
|
netdev_err(dev, "%s: unable to start kernel thread.\n",
|
|
|
|
QCASPI_DRV_NAME);
|
|
|
|
return PTR_ERR(qca->spi_thread);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = request_irq(qca->spi_dev->irq, qcaspi_intr_handler, 0,
|
|
|
|
dev->name, qca);
|
|
|
|
if (ret) {
|
|
|
|
netdev_err(dev, "%s: unable to get IRQ %d (irqval=%d).\n",
|
|
|
|
QCASPI_DRV_NAME, qca->spi_dev->irq, ret);
|
|
|
|
kthread_stop(qca->spi_thread);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-07-18 14:31:43 +08:00
|
|
|
/* SPI thread takes care of TX queue */
|
2014-09-27 06:21:21 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-29 19:57:13 +08:00
|
|
|
static int
|
2014-09-27 06:21:21 +08:00
|
|
|
qcaspi_netdev_close(struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct qcaspi *qca = netdev_priv(dev);
|
|
|
|
|
|
|
|
netif_stop_queue(dev);
|
|
|
|
|
2018-09-24 19:20:10 +08:00
|
|
|
qcaspi_write_register(qca, SPI_REG_INTR_ENABLE, 0, wr_verify);
|
2014-09-27 06:21:21 +08:00
|
|
|
free_irq(qca->spi_dev->irq, qca);
|
|
|
|
|
|
|
|
kthread_stop(qca->spi_thread);
|
|
|
|
qca->spi_thread = NULL;
|
|
|
|
qcaspi_flush_tx_ring(qca);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static netdev_tx_t
|
|
|
|
qcaspi_netdev_xmit(struct sk_buff *skb, struct net_device *dev)
|
|
|
|
{
|
|
|
|
u32 frame_len;
|
|
|
|
u8 *ptmp;
|
|
|
|
struct qcaspi *qca = netdev_priv(dev);
|
|
|
|
u16 new_tail;
|
|
|
|
struct sk_buff *tskb;
|
|
|
|
u8 pad_len = 0;
|
|
|
|
|
2017-05-29 19:57:14 +08:00
|
|
|
if (skb->len < QCAFRM_MIN_LEN)
|
|
|
|
pad_len = QCAFRM_MIN_LEN - skb->len;
|
2014-09-27 06:21:21 +08:00
|
|
|
|
|
|
|
if (qca->txr.skb[qca->txr.tail]) {
|
|
|
|
netdev_warn(qca->net_dev, "queue was unexpectedly full!\n");
|
|
|
|
netif_stop_queue(qca->net_dev);
|
|
|
|
qca->stats.ring_full++;
|
|
|
|
return NETDEV_TX_BUSY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((skb_headroom(skb) < QCAFRM_HEADER_LEN) ||
|
|
|
|
(skb_tailroom(skb) < QCAFRM_FOOTER_LEN + pad_len)) {
|
|
|
|
tskb = skb_copy_expand(skb, QCAFRM_HEADER_LEN,
|
|
|
|
QCAFRM_FOOTER_LEN + pad_len, GFP_ATOMIC);
|
|
|
|
if (!tskb) {
|
|
|
|
qca->stats.out_of_mem++;
|
|
|
|
return NETDEV_TX_BUSY;
|
|
|
|
}
|
|
|
|
dev_kfree_skb(skb);
|
|
|
|
skb = tskb;
|
|
|
|
}
|
|
|
|
|
|
|
|
frame_len = skb->len + pad_len;
|
|
|
|
|
|
|
|
ptmp = skb_push(skb, QCAFRM_HEADER_LEN);
|
|
|
|
qcafrm_create_header(ptmp, frame_len);
|
|
|
|
|
|
|
|
if (pad_len) {
|
2017-06-13 20:28:18 +08:00
|
|
|
ptmp = skb_put_zero(skb, pad_len);
|
2014-09-27 06:21:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ptmp = skb_put(skb, QCAFRM_FOOTER_LEN);
|
|
|
|
qcafrm_create_footer(ptmp);
|
|
|
|
|
|
|
|
netdev_dbg(qca->net_dev, "Tx-ing packet: Size: 0x%08x\n",
|
|
|
|
skb->len);
|
|
|
|
|
|
|
|
qca->txr.size += skb->len + QCASPI_HW_PKT_LEN;
|
|
|
|
|
|
|
|
new_tail = qca->txr.tail + 1;
|
|
|
|
if (new_tail >= qca->txr.count)
|
|
|
|
new_tail = 0;
|
|
|
|
|
|
|
|
qca->txr.skb[qca->txr.tail] = skb;
|
|
|
|
qca->txr.tail = new_tail;
|
|
|
|
|
|
|
|
if (!qcaspi_tx_ring_has_space(&qca->txr)) {
|
|
|
|
netif_stop_queue(qca->net_dev);
|
|
|
|
qca->stats.ring_full++;
|
|
|
|
}
|
|
|
|
|
2016-05-03 22:33:13 +08:00
|
|
|
netif_trans_update(dev);
|
2014-09-27 06:21:21 +08:00
|
|
|
|
2021-06-11 16:28:11 +08:00
|
|
|
if (qca->spi_thread)
|
2014-09-27 06:21:21 +08:00
|
|
|
wake_up_process(qca->spi_thread);
|
|
|
|
|
|
|
|
return NETDEV_TX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
netdev: pass the stuck queue to the timeout handler
This allows incrementing the correct timeout statistic without any mess.
Down the road, devices can learn to reset just the specific queue.
The patch was generated with the following script:
use strict;
use warnings;
our $^I = '.bak';
my @work = (
["arch/m68k/emu/nfeth.c", "nfeth_tx_timeout"],
["arch/um/drivers/net_kern.c", "uml_net_tx_timeout"],
["arch/um/drivers/vector_kern.c", "vector_net_tx_timeout"],
["arch/xtensa/platforms/iss/network.c", "iss_net_tx_timeout"],
["drivers/char/pcmcia/synclink_cs.c", "hdlcdev_tx_timeout"],
["drivers/infiniband/ulp/ipoib/ipoib_main.c", "ipoib_timeout"],
["drivers/infiniband/ulp/ipoib/ipoib_main.c", "ipoib_timeout"],
["drivers/message/fusion/mptlan.c", "mpt_lan_tx_timeout"],
["drivers/misc/sgi-xp/xpnet.c", "xpnet_dev_tx_timeout"],
["drivers/net/appletalk/cops.c", "cops_timeout"],
["drivers/net/arcnet/arcdevice.h", "arcnet_timeout"],
["drivers/net/arcnet/arcnet.c", "arcnet_timeout"],
["drivers/net/arcnet/com20020.c", "arcnet_timeout"],
["drivers/net/ethernet/3com/3c509.c", "el3_tx_timeout"],
["drivers/net/ethernet/3com/3c515.c", "corkscrew_timeout"],
["drivers/net/ethernet/3com/3c574_cs.c", "el3_tx_timeout"],
["drivers/net/ethernet/3com/3c589_cs.c", "el3_tx_timeout"],
["drivers/net/ethernet/3com/3c59x.c", "vortex_tx_timeout"],
["drivers/net/ethernet/3com/3c59x.c", "vortex_tx_timeout"],
["drivers/net/ethernet/3com/typhoon.c", "typhoon_tx_timeout"],
["drivers/net/ethernet/8390/8390.h", "ei_tx_timeout"],
["drivers/net/ethernet/8390/8390.h", "eip_tx_timeout"],
["drivers/net/ethernet/8390/8390.c", "ei_tx_timeout"],
["drivers/net/ethernet/8390/8390p.c", "eip_tx_timeout"],
["drivers/net/ethernet/8390/ax88796.c", "ax_ei_tx_timeout"],
["drivers/net/ethernet/8390/axnet_cs.c", "axnet_tx_timeout"],
["drivers/net/ethernet/8390/etherh.c", "__ei_tx_timeout"],
["drivers/net/ethernet/8390/hydra.c", "__ei_tx_timeout"],
["drivers/net/ethernet/8390/mac8390.c", "__ei_tx_timeout"],
["drivers/net/ethernet/8390/mcf8390.c", "__ei_tx_timeout"],
["drivers/net/ethernet/8390/lib8390.c", "__ei_tx_timeout"],
["drivers/net/ethernet/8390/ne2k-pci.c", "ei_tx_timeout"],
["drivers/net/ethernet/8390/pcnet_cs.c", "ei_tx_timeout"],
["drivers/net/ethernet/8390/smc-ultra.c", "ei_tx_timeout"],
["drivers/net/ethernet/8390/wd.c", "ei_tx_timeout"],
["drivers/net/ethernet/8390/zorro8390.c", "__ei_tx_timeout"],
["drivers/net/ethernet/adaptec/starfire.c", "tx_timeout"],
["drivers/net/ethernet/agere/et131x.c", "et131x_tx_timeout"],
["drivers/net/ethernet/allwinner/sun4i-emac.c", "emac_timeout"],
["drivers/net/ethernet/alteon/acenic.c", "ace_watchdog"],
["drivers/net/ethernet/amazon/ena/ena_netdev.c", "ena_tx_timeout"],
["drivers/net/ethernet/amd/7990.h", "lance_tx_timeout"],
["drivers/net/ethernet/amd/7990.c", "lance_tx_timeout"],
["drivers/net/ethernet/amd/a2065.c", "lance_tx_timeout"],
["drivers/net/ethernet/amd/am79c961a.c", "am79c961_timeout"],
["drivers/net/ethernet/amd/amd8111e.c", "amd8111e_tx_timeout"],
["drivers/net/ethernet/amd/ariadne.c", "ariadne_tx_timeout"],
["drivers/net/ethernet/amd/atarilance.c", "lance_tx_timeout"],
["drivers/net/ethernet/amd/au1000_eth.c", "au1000_tx_timeout"],
["drivers/net/ethernet/amd/declance.c", "lance_tx_timeout"],
["drivers/net/ethernet/amd/lance.c", "lance_tx_timeout"],
["drivers/net/ethernet/amd/mvme147.c", "lance_tx_timeout"],
["drivers/net/ethernet/amd/ni65.c", "ni65_timeout"],
["drivers/net/ethernet/amd/nmclan_cs.c", "mace_tx_timeout"],
["drivers/net/ethernet/amd/pcnet32.c", "pcnet32_tx_timeout"],
["drivers/net/ethernet/amd/sunlance.c", "lance_tx_timeout"],
["drivers/net/ethernet/amd/xgbe/xgbe-drv.c", "xgbe_tx_timeout"],
["drivers/net/ethernet/apm/xgene-v2/main.c", "xge_timeout"],
["drivers/net/ethernet/apm/xgene/xgene_enet_main.c", "xgene_enet_timeout"],
["drivers/net/ethernet/apple/macmace.c", "mace_tx_timeout"],
["drivers/net/ethernet/atheros/ag71xx.c", "ag71xx_tx_timeout"],
["drivers/net/ethernet/atheros/alx/main.c", "alx_tx_timeout"],
["drivers/net/ethernet/atheros/atl1c/atl1c_main.c", "atl1c_tx_timeout"],
["drivers/net/ethernet/atheros/atl1e/atl1e_main.c", "atl1e_tx_timeout"],
["drivers/net/ethernet/atheros/atlx/atl.c", "atlx_tx_timeout"],
["drivers/net/ethernet/atheros/atlx/atl1.c", "atlx_tx_timeout"],
["drivers/net/ethernet/atheros/atlx/atl2.c", "atl2_tx_timeout"],
["drivers/net/ethernet/broadcom/b44.c", "b44_tx_timeout"],
["drivers/net/ethernet/broadcom/bcmsysport.c", "bcm_sysport_tx_timeout"],
["drivers/net/ethernet/broadcom/bnx2.c", "bnx2_tx_timeout"],
["drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.h", "bnx2x_tx_timeout"],
["drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c", "bnx2x_tx_timeout"],
["drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c", "bnx2x_tx_timeout"],
["drivers/net/ethernet/broadcom/bnxt/bnxt.c", "bnxt_tx_timeout"],
["drivers/net/ethernet/broadcom/genet/bcmgenet.c", "bcmgenet_timeout"],
["drivers/net/ethernet/broadcom/sb1250-mac.c", "sbmac_tx_timeout"],
["drivers/net/ethernet/broadcom/tg3.c", "tg3_tx_timeout"],
["drivers/net/ethernet/calxeda/xgmac.c", "xgmac_tx_timeout"],
["drivers/net/ethernet/cavium/liquidio/lio_main.c", "liquidio_tx_timeout"],
["drivers/net/ethernet/cavium/liquidio/lio_vf_main.c", "liquidio_tx_timeout"],
["drivers/net/ethernet/cavium/liquidio/lio_vf_rep.c", "lio_vf_rep_tx_timeout"],
["drivers/net/ethernet/cavium/thunder/nicvf_main.c", "nicvf_tx_timeout"],
["drivers/net/ethernet/cirrus/cs89x0.c", "net_timeout"],
["drivers/net/ethernet/cisco/enic/enic_main.c", "enic_tx_timeout"],
["drivers/net/ethernet/cisco/enic/enic_main.c", "enic_tx_timeout"],
["drivers/net/ethernet/cortina/gemini.c", "gmac_tx_timeout"],
["drivers/net/ethernet/davicom/dm9000.c", "dm9000_timeout"],
["drivers/net/ethernet/dec/tulip/de2104x.c", "de_tx_timeout"],
["drivers/net/ethernet/dec/tulip/tulip_core.c", "tulip_tx_timeout"],
["drivers/net/ethernet/dec/tulip/winbond-840.c", "tx_timeout"],
["drivers/net/ethernet/dlink/dl2k.c", "rio_tx_timeout"],
["drivers/net/ethernet/dlink/sundance.c", "tx_timeout"],
["drivers/net/ethernet/emulex/benet/be_main.c", "be_tx_timeout"],
["drivers/net/ethernet/ethoc.c", "ethoc_tx_timeout"],
["drivers/net/ethernet/faraday/ftgmac100.c", "ftgmac100_tx_timeout"],
["drivers/net/ethernet/fealnx.c", "fealnx_tx_timeout"],
["drivers/net/ethernet/freescale/dpaa/dpaa_eth.c", "dpaa_tx_timeout"],
["drivers/net/ethernet/freescale/fec_main.c", "fec_timeout"],
["drivers/net/ethernet/freescale/fec_mpc52xx.c", "mpc52xx_fec_tx_timeout"],
["drivers/net/ethernet/freescale/fs_enet/fs_enet-main.c", "fs_timeout"],
["drivers/net/ethernet/freescale/gianfar.c", "gfar_timeout"],
["drivers/net/ethernet/freescale/ucc_geth.c", "ucc_geth_timeout"],
["drivers/net/ethernet/fujitsu/fmvj18x_cs.c", "fjn_tx_timeout"],
["drivers/net/ethernet/google/gve/gve_main.c", "gve_tx_timeout"],
["drivers/net/ethernet/hisilicon/hip04_eth.c", "hip04_timeout"],
["drivers/net/ethernet/hisilicon/hix5hd2_gmac.c", "hix5hd2_net_timeout"],
["drivers/net/ethernet/hisilicon/hns/hns_enet.c", "hns_nic_net_timeout"],
["drivers/net/ethernet/hisilicon/hns3/hns3_enet.c", "hns3_nic_net_timeout"],
["drivers/net/ethernet/huawei/hinic/hinic_main.c", "hinic_tx_timeout"],
["drivers/net/ethernet/i825xx/82596.c", "i596_tx_timeout"],
["drivers/net/ethernet/i825xx/ether1.c", "ether1_timeout"],
["drivers/net/ethernet/i825xx/lib82596.c", "i596_tx_timeout"],
["drivers/net/ethernet/i825xx/sun3_82586.c", "sun3_82586_timeout"],
["drivers/net/ethernet/ibm/ehea/ehea_main.c", "ehea_tx_watchdog"],
["drivers/net/ethernet/ibm/emac/core.c", "emac_tx_timeout"],
["drivers/net/ethernet/ibm/emac/core.c", "emac_tx_timeout"],
["drivers/net/ethernet/ibm/ibmvnic.c", "ibmvnic_tx_timeout"],
["drivers/net/ethernet/intel/e100.c", "e100_tx_timeout"],
["drivers/net/ethernet/intel/e1000/e1000_main.c", "e1000_tx_timeout"],
["drivers/net/ethernet/intel/e1000e/netdev.c", "e1000_tx_timeout"],
["drivers/net/ethernet/intel/fm10k/fm10k_netdev.c", "fm10k_tx_timeout"],
["drivers/net/ethernet/intel/i40e/i40e_main.c", "i40e_tx_timeout"],
["drivers/net/ethernet/intel/iavf/iavf_main.c", "iavf_tx_timeout"],
["drivers/net/ethernet/intel/ice/ice_main.c", "ice_tx_timeout"],
["drivers/net/ethernet/intel/ice/ice_main.c", "ice_tx_timeout"],
["drivers/net/ethernet/intel/igb/igb_main.c", "igb_tx_timeout"],
["drivers/net/ethernet/intel/igbvf/netdev.c", "igbvf_tx_timeout"],
["drivers/net/ethernet/intel/ixgb/ixgb_main.c", "ixgb_tx_timeout"],
["drivers/net/ethernet/intel/ixgbe/ixgbe_debugfs.c", "adapter->netdev->netdev_ops->ndo_tx_timeout(adapter->netdev);"],
["drivers/net/ethernet/intel/ixgbe/ixgbe_main.c", "ixgbe_tx_timeout"],
["drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c", "ixgbevf_tx_timeout"],
["drivers/net/ethernet/jme.c", "jme_tx_timeout"],
["drivers/net/ethernet/korina.c", "korina_tx_timeout"],
["drivers/net/ethernet/lantiq_etop.c", "ltq_etop_tx_timeout"],
["drivers/net/ethernet/marvell/mv643xx_eth.c", "mv643xx_eth_tx_timeout"],
["drivers/net/ethernet/marvell/pxa168_eth.c", "pxa168_eth_tx_timeout"],
["drivers/net/ethernet/marvell/skge.c", "skge_tx_timeout"],
["drivers/net/ethernet/marvell/sky2.c", "sky2_tx_timeout"],
["drivers/net/ethernet/marvell/sky2.c", "sky2_tx_timeout"],
["drivers/net/ethernet/mediatek/mtk_eth_soc.c", "mtk_tx_timeout"],
["drivers/net/ethernet/mellanox/mlx4/en_netdev.c", "mlx4_en_tx_timeout"],
["drivers/net/ethernet/mellanox/mlx4/en_netdev.c", "mlx4_en_tx_timeout"],
["drivers/net/ethernet/mellanox/mlx5/core/en_main.c", "mlx5e_tx_timeout"],
["drivers/net/ethernet/micrel/ks8842.c", "ks8842_tx_timeout"],
["drivers/net/ethernet/micrel/ksz884x.c", "netdev_tx_timeout"],
["drivers/net/ethernet/microchip/enc28j60.c", "enc28j60_tx_timeout"],
["drivers/net/ethernet/microchip/encx24j600.c", "encx24j600_tx_timeout"],
["drivers/net/ethernet/natsemi/sonic.h", "sonic_tx_timeout"],
["drivers/net/ethernet/natsemi/sonic.c", "sonic_tx_timeout"],
["drivers/net/ethernet/natsemi/jazzsonic.c", "sonic_tx_timeout"],
["drivers/net/ethernet/natsemi/macsonic.c", "sonic_tx_timeout"],
["drivers/net/ethernet/natsemi/natsemi.c", "ns_tx_timeout"],
["drivers/net/ethernet/natsemi/ns83820.c", "ns83820_tx_timeout"],
["drivers/net/ethernet/natsemi/xtsonic.c", "sonic_tx_timeout"],
["drivers/net/ethernet/neterion/s2io.h", "s2io_tx_watchdog"],
["drivers/net/ethernet/neterion/s2io.c", "s2io_tx_watchdog"],
["drivers/net/ethernet/neterion/vxge/vxge-main.c", "vxge_tx_watchdog"],
["drivers/net/ethernet/netronome/nfp/nfp_net_common.c", "nfp_net_tx_timeout"],
["drivers/net/ethernet/nvidia/forcedeth.c", "nv_tx_timeout"],
["drivers/net/ethernet/nvidia/forcedeth.c", "nv_tx_timeout"],
["drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c", "pch_gbe_tx_timeout"],
["drivers/net/ethernet/packetengines/hamachi.c", "hamachi_tx_timeout"],
["drivers/net/ethernet/packetengines/yellowfin.c", "yellowfin_tx_timeout"],
["drivers/net/ethernet/pensando/ionic/ionic_lif.c", "ionic_tx_timeout"],
["drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c", "netxen_tx_timeout"],
["drivers/net/ethernet/qlogic/qla3xxx.c", "ql3xxx_tx_timeout"],
["drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c", "qlcnic_tx_timeout"],
["drivers/net/ethernet/qualcomm/emac/emac.c", "emac_tx_timeout"],
["drivers/net/ethernet/qualcomm/qca_spi.c", "qcaspi_netdev_tx_timeout"],
["drivers/net/ethernet/qualcomm/qca_uart.c", "qcauart_netdev_tx_timeout"],
["drivers/net/ethernet/rdc/r6040.c", "r6040_tx_timeout"],
["drivers/net/ethernet/realtek/8139cp.c", "cp_tx_timeout"],
["drivers/net/ethernet/realtek/8139too.c", "rtl8139_tx_timeout"],
["drivers/net/ethernet/realtek/atp.c", "tx_timeout"],
["drivers/net/ethernet/realtek/r8169_main.c", "rtl8169_tx_timeout"],
["drivers/net/ethernet/renesas/ravb_main.c", "ravb_tx_timeout"],
["drivers/net/ethernet/renesas/sh_eth.c", "sh_eth_tx_timeout"],
["drivers/net/ethernet/renesas/sh_eth.c", "sh_eth_tx_timeout"],
["drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c", "sxgbe_tx_timeout"],
["drivers/net/ethernet/seeq/ether3.c", "ether3_timeout"],
["drivers/net/ethernet/seeq/sgiseeq.c", "timeout"],
["drivers/net/ethernet/sfc/efx.c", "efx_watchdog"],
["drivers/net/ethernet/sfc/falcon/efx.c", "ef4_watchdog"],
["drivers/net/ethernet/sgi/ioc3-eth.c", "ioc3_timeout"],
["drivers/net/ethernet/sgi/meth.c", "meth_tx_timeout"],
["drivers/net/ethernet/silan/sc92031.c", "sc92031_tx_timeout"],
["drivers/net/ethernet/sis/sis190.c", "sis190_tx_timeout"],
["drivers/net/ethernet/sis/sis900.c", "sis900_tx_timeout"],
["drivers/net/ethernet/smsc/epic100.c", "epic_tx_timeout"],
["drivers/net/ethernet/smsc/smc911x.c", "smc911x_timeout"],
["drivers/net/ethernet/smsc/smc9194.c", "smc_timeout"],
["drivers/net/ethernet/smsc/smc91c92_cs.c", "smc_tx_timeout"],
["drivers/net/ethernet/smsc/smc91x.c", "smc_timeout"],
["drivers/net/ethernet/stmicro/stmmac/stmmac_main.c", "stmmac_tx_timeout"],
["drivers/net/ethernet/sun/cassini.c", "cas_tx_timeout"],
["drivers/net/ethernet/sun/ldmvsw.c", "sunvnet_tx_timeout_common"],
["drivers/net/ethernet/sun/niu.c", "niu_tx_timeout"],
["drivers/net/ethernet/sun/sunbmac.c", "bigmac_tx_timeout"],
["drivers/net/ethernet/sun/sungem.c", "gem_tx_timeout"],
["drivers/net/ethernet/sun/sunhme.c", "happy_meal_tx_timeout"],
["drivers/net/ethernet/sun/sunqe.c", "qe_tx_timeout"],
["drivers/net/ethernet/sun/sunvnet.c", "sunvnet_tx_timeout_common"],
["drivers/net/ethernet/sun/sunvnet_common.c", "sunvnet_tx_timeout_common"],
["drivers/net/ethernet/sun/sunvnet_common.h", "sunvnet_tx_timeout_common"],
["drivers/net/ethernet/synopsys/dwc-xlgmac-net.c", "xlgmac_tx_timeout"],
["drivers/net/ethernet/ti/cpmac.c", "cpmac_tx_timeout"],
["drivers/net/ethernet/ti/cpsw.c", "cpsw_ndo_tx_timeout"],
["drivers/net/ethernet/ti/cpsw_priv.c", "cpsw_ndo_tx_timeout"],
["drivers/net/ethernet/ti/cpsw_priv.h", "cpsw_ndo_tx_timeout"],
["drivers/net/ethernet/ti/davinci_emac.c", "emac_dev_tx_timeout"],
["drivers/net/ethernet/ti/netcp_core.c", "netcp_ndo_tx_timeout"],
["drivers/net/ethernet/ti/tlan.c", "tlan_tx_timeout"],
["drivers/net/ethernet/toshiba/ps3_gelic_net.h", "gelic_net_tx_timeout"],
["drivers/net/ethernet/toshiba/ps3_gelic_net.c", "gelic_net_tx_timeout"],
["drivers/net/ethernet/toshiba/ps3_gelic_wireless.c", "gelic_net_tx_timeout"],
["drivers/net/ethernet/toshiba/spider_net.c", "spider_net_tx_timeout"],
["drivers/net/ethernet/toshiba/tc35815.c", "tc35815_tx_timeout"],
["drivers/net/ethernet/via/via-rhine.c", "rhine_tx_timeout"],
["drivers/net/ethernet/wiznet/w5100.c", "w5100_tx_timeout"],
["drivers/net/ethernet/wiznet/w5300.c", "w5300_tx_timeout"],
["drivers/net/ethernet/xilinx/xilinx_emaclite.c", "xemaclite_tx_timeout"],
["drivers/net/ethernet/xircom/xirc2ps_cs.c", "xirc_tx_timeout"],
["drivers/net/fjes/fjes_main.c", "fjes_tx_retry"],
["drivers/net/slip/slip.c", "sl_tx_timeout"],
["include/linux/usb/usbnet.h", "usbnet_tx_timeout"],
["drivers/net/usb/aqc111.c", "usbnet_tx_timeout"],
["drivers/net/usb/asix_devices.c", "usbnet_tx_timeout"],
["drivers/net/usb/asix_devices.c", "usbnet_tx_timeout"],
["drivers/net/usb/asix_devices.c", "usbnet_tx_timeout"],
["drivers/net/usb/ax88172a.c", "usbnet_tx_timeout"],
["drivers/net/usb/ax88179_178a.c", "usbnet_tx_timeout"],
["drivers/net/usb/catc.c", "catc_tx_timeout"],
["drivers/net/usb/cdc_mbim.c", "usbnet_tx_timeout"],
["drivers/net/usb/cdc_ncm.c", "usbnet_tx_timeout"],
["drivers/net/usb/dm9601.c", "usbnet_tx_timeout"],
["drivers/net/usb/hso.c", "hso_net_tx_timeout"],
["drivers/net/usb/int51x1.c", "usbnet_tx_timeout"],
["drivers/net/usb/ipheth.c", "ipheth_tx_timeout"],
["drivers/net/usb/kaweth.c", "kaweth_tx_timeout"],
["drivers/net/usb/lan78xx.c", "lan78xx_tx_timeout"],
["drivers/net/usb/mcs7830.c", "usbnet_tx_timeout"],
["drivers/net/usb/pegasus.c", "pegasus_tx_timeout"],
["drivers/net/usb/qmi_wwan.c", "usbnet_tx_timeout"],
["drivers/net/usb/r8152.c", "rtl8152_tx_timeout"],
["drivers/net/usb/rndis_host.c", "usbnet_tx_timeout"],
["drivers/net/usb/rtl8150.c", "rtl8150_tx_timeout"],
["drivers/net/usb/sierra_net.c", "usbnet_tx_timeout"],
["drivers/net/usb/smsc75xx.c", "usbnet_tx_timeout"],
["drivers/net/usb/smsc95xx.c", "usbnet_tx_timeout"],
["drivers/net/usb/sr9700.c", "usbnet_tx_timeout"],
["drivers/net/usb/sr9800.c", "usbnet_tx_timeout"],
["drivers/net/usb/usbnet.c", "usbnet_tx_timeout"],
["drivers/net/vmxnet3/vmxnet3_drv.c", "vmxnet3_tx_timeout"],
["drivers/net/wan/cosa.c", "cosa_net_timeout"],
["drivers/net/wan/farsync.c", "fst_tx_timeout"],
["drivers/net/wan/fsl_ucc_hdlc.c", "uhdlc_tx_timeout"],
["drivers/net/wan/lmc/lmc_main.c", "lmc_driver_timeout"],
["drivers/net/wan/x25_asy.c", "x25_asy_timeout"],
["drivers/net/wimax/i2400m/netdev.c", "i2400m_tx_timeout"],
["drivers/net/wireless/intel/ipw2x00/ipw2100.c", "ipw2100_tx_timeout"],
["drivers/net/wireless/intersil/hostap/hostap_main.c", "prism2_tx_timeout"],
["drivers/net/wireless/intersil/hostap/hostap_main.c", "prism2_tx_timeout"],
["drivers/net/wireless/intersil/hostap/hostap_main.c", "prism2_tx_timeout"],
["drivers/net/wireless/intersil/orinoco/main.c", "orinoco_tx_timeout"],
["drivers/net/wireless/intersil/orinoco/orinoco_usb.c", "orinoco_tx_timeout"],
["drivers/net/wireless/intersil/orinoco/orinoco.h", "orinoco_tx_timeout"],
["drivers/net/wireless/intersil/prism54/islpci_dev.c", "islpci_eth_tx_timeout"],
["drivers/net/wireless/intersil/prism54/islpci_eth.c", "islpci_eth_tx_timeout"],
["drivers/net/wireless/intersil/prism54/islpci_eth.h", "islpci_eth_tx_timeout"],
["drivers/net/wireless/marvell/mwifiex/main.c", "mwifiex_tx_timeout"],
["drivers/net/wireless/quantenna/qtnfmac/core.c", "qtnf_netdev_tx_timeout"],
["drivers/net/wireless/quantenna/qtnfmac/core.h", "qtnf_netdev_tx_timeout"],
["drivers/net/wireless/rndis_wlan.c", "usbnet_tx_timeout"],
["drivers/net/wireless/wl3501_cs.c", "wl3501_tx_timeout"],
["drivers/net/wireless/zydas/zd1201.c", "zd1201_tx_timeout"],
["drivers/s390/net/qeth_core.h", "qeth_tx_timeout"],
["drivers/s390/net/qeth_core_main.c", "qeth_tx_timeout"],
["drivers/s390/net/qeth_l2_main.c", "qeth_tx_timeout"],
["drivers/s390/net/qeth_l2_main.c", "qeth_tx_timeout"],
["drivers/s390/net/qeth_l3_main.c", "qeth_tx_timeout"],
["drivers/s390/net/qeth_l3_main.c", "qeth_tx_timeout"],
["drivers/staging/ks7010/ks_wlan_net.c", "ks_wlan_tx_timeout"],
["drivers/staging/qlge/qlge_main.c", "qlge_tx_timeout"],
["drivers/staging/rtl8192e/rtl8192e/rtl_core.c", "_rtl92e_tx_timeout"],
["drivers/staging/rtl8192u/r8192U_core.c", "tx_timeout"],
["drivers/staging/unisys/visornic/visornic_main.c", "visornic_xmit_timeout"],
["drivers/staging/wlan-ng/p80211netdev.c", "p80211knetdev_tx_timeout"],
["drivers/tty/n_gsm.c", "gsm_mux_net_tx_timeout"],
["drivers/tty/synclink.c", "hdlcdev_tx_timeout"],
["drivers/tty/synclink_gt.c", "hdlcdev_tx_timeout"],
["drivers/tty/synclinkmp.c", "hdlcdev_tx_timeout"],
["net/atm/lec.c", "lec_tx_timeout"],
["net/bluetooth/bnep/netdev.c", "bnep_net_timeout"]
);
for my $p (@work) {
my @pair = @$p;
my $file = $pair[0];
my $func = $pair[1];
print STDERR $file , ": ", $func,"\n";
our @ARGV = ($file);
while (<ARGV>) {
if (m/($func\s*\(struct\s+net_device\s+\*[A-Za-z_]?[A-Za-z-0-9_]*)(\))/) {
print STDERR "found $1+$2 in $file\n";
}
if (s/($func\s*\(struct\s+net_device\s+\*[A-Za-z_]?[A-Za-z-0-9_]*)(\))/$1, unsigned int txqueue$2/) {
print STDERR "$func found in $file\n";
}
print;
}
}
where the list of files and functions is simply from:
git grep ndo_tx_timeout, with manual addition of headers
in the rare cases where the function is from a header,
then manually changing the few places which actually
call ndo_tx_timeout.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Heiner Kallweit <hkallweit1@gmail.com>
Acked-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Acked-by: Shannon Nelson <snelson@pensando.io>
Reviewed-by: Martin Habets <mhabets@solarflare.com>
changes from v9:
fixup a forward declaration
changes from v9:
more leftovers from v3 change
changes from v8:
fix up a missing direct call to timeout
rebased on net-next
changes from v7:
fixup leftovers from v3 change
changes from v6:
fix typo in rtl driver
changes from v5:
add missing files (allow any net device argument name)
changes from v4:
add a missing driver header
changes from v3:
change queue # to unsigned
Changes from v2:
added headers
Changes from v1:
Fix errors found by kbuild:
generalize the pattern a bit, to pick up
a couple of instances missed by the previous
version.
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-12-10 22:23:51 +08:00
|
|
|
qcaspi_netdev_tx_timeout(struct net_device *dev, unsigned int txqueue)
|
2014-09-27 06:21:21 +08:00
|
|
|
{
|
|
|
|
struct qcaspi *qca = netdev_priv(dev);
|
|
|
|
|
|
|
|
netdev_info(qca->net_dev, "Transmit timeout at %ld, latency %ld\n",
|
2016-05-03 22:30:59 +08:00
|
|
|
jiffies, jiffies - dev_trans_start(dev));
|
2014-09-27 06:21:21 +08:00
|
|
|
qca->net_dev->stats.tx_errors++;
|
2015-12-04 23:29:10 +08:00
|
|
|
/* Trigger tx queue flush and QCA7000 reset */
|
|
|
|
qca->sync = QCASPI_SYNC_UNKNOWN;
|
2018-07-18 14:31:44 +08:00
|
|
|
|
|
|
|
if (qca->spi_thread)
|
|
|
|
wake_up_process(qca->spi_thread);
|
2014-09-27 06:21:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
qcaspi_netdev_init(struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct qcaspi *qca = netdev_priv(dev);
|
|
|
|
|
2017-05-29 19:57:15 +08:00
|
|
|
dev->mtu = QCAFRM_MAX_MTU;
|
2014-09-27 06:21:21 +08:00
|
|
|
dev->type = ARPHRD_ETHER;
|
|
|
|
qca->clkspeed = qcaspi_clkspeed;
|
|
|
|
qca->burst_len = qcaspi_burst_len;
|
|
|
|
qca->spi_thread = NULL;
|
|
|
|
qca->buffer_size = (dev->mtu + VLAN_ETH_HLEN + QCAFRM_HEADER_LEN +
|
|
|
|
QCAFRM_FOOTER_LEN + 4) * 4;
|
|
|
|
|
|
|
|
memset(&qca->stats, 0, sizeof(struct qcaspi_stats));
|
|
|
|
|
|
|
|
qca->rx_buffer = kmalloc(qca->buffer_size, GFP_KERNEL);
|
|
|
|
if (!qca->rx_buffer)
|
|
|
|
return -ENOBUFS;
|
|
|
|
|
2017-05-09 21:40:38 +08:00
|
|
|
qca->rx_skb = netdev_alloc_skb_ip_align(dev, qca->net_dev->mtu +
|
|
|
|
VLAN_ETH_HLEN);
|
2014-09-27 06:21:21 +08:00
|
|
|
if (!qca->rx_skb) {
|
|
|
|
kfree(qca->rx_buffer);
|
|
|
|
netdev_info(qca->net_dev, "Failed to allocate RX sk_buff.\n");
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
qcaspi_netdev_uninit(struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct qcaspi *qca = netdev_priv(dev);
|
|
|
|
|
|
|
|
kfree(qca->rx_buffer);
|
|
|
|
qca->buffer_size = 0;
|
2019-08-23 02:02:56 +08:00
|
|
|
dev_kfree_skb(qca->rx_skb);
|
2014-09-27 06:21:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct net_device_ops qcaspi_netdev_ops = {
|
|
|
|
.ndo_init = qcaspi_netdev_init,
|
|
|
|
.ndo_uninit = qcaspi_netdev_uninit,
|
|
|
|
.ndo_open = qcaspi_netdev_open,
|
|
|
|
.ndo_stop = qcaspi_netdev_close,
|
|
|
|
.ndo_start_xmit = qcaspi_netdev_xmit,
|
|
|
|
.ndo_set_mac_address = eth_mac_addr,
|
|
|
|
.ndo_tx_timeout = qcaspi_netdev_tx_timeout,
|
|
|
|
.ndo_validate_addr = eth_validate_addr,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
qcaspi_netdev_setup(struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct qcaspi *qca = NULL;
|
|
|
|
|
|
|
|
dev->netdev_ops = &qcaspi_netdev_ops;
|
|
|
|
qcaspi_set_ethtool_ops(dev);
|
|
|
|
dev->watchdog_timeo = QCASPI_TX_TIMEOUT;
|
2016-02-24 03:23:24 +08:00
|
|
|
dev->priv_flags &= ~IFF_TX_SKB_SHARING;
|
2014-09-27 06:21:21 +08:00
|
|
|
dev->tx_queue_len = 100;
|
|
|
|
|
ethernet: use core min/max MTU checking
et131x: min_mtu 64, max_mtu 9216
altera_tse: min_mtu 64, max_mtu 1500
amd8111e: min_mtu 60, max_mtu 9000
bnad: min_mtu 46, max_mtu 9000
macb: min_mtu 68, max_mtu 1500 or 10240 depending on hardware capability
xgmac: min_mtu 46, max_mtu 9000
cxgb2: min_mtu 68, max_mtu 9582 (pm3393) or 9600 (vsc7326)
enic: min_mtu 68, max_mtu 9000
gianfar: min_mtu 50, max_mu 9586
hns_enet: min_mtu 68, max_mtu 9578 (v1) or 9706 (v2)
ksz884x: min_mtu 60, max_mtu 1894
myri10ge: min_mtu 68, max_mtu 9000
natsemi: min_mtu 64, max_mtu 2024
nfp: min_mtu 68, max_mtu hardware-specific
forcedeth: min_mtu 64, max_mtu 1500 or 9100, depending on hardware
pch_gbe: min_mtu 46, max_mtu 10300
pasemi_mac: min_mtu 64, max_mtu 9000
qcaspi: min_mtu 46, max_mtu 1500
- remove qcaspi_netdev_change_mtu as it is now redundant
rocker: min_mtu 68, max_mtu 9000
sxgbe: min_mtu 68, max_mtu 9000
stmmac: min_mtu 46, max_mtu depends on hardware
tehuti: min_mtu 60, max_mtu 16384
- driver had no max mtu checking, but product docs say 16k jumbo packets
are supported by the hardware
netcp: min_mtu 68, max_mtu 9486
- remove netcp_ndo_change_mtu as it is now redundant
via-velocity: min_mtu 64, max_mtu 9000
octeon: min_mtu 46, max_mtu 65370
CC: netdev@vger.kernel.org
CC: Mark Einon <mark.einon@gmail.com>
CC: Vince Bridgers <vbridger@opensource.altera.com>
CC: Rasesh Mody <rasesh.mody@qlogic.com>
CC: Nicolas Ferre <nicolas.ferre@atmel.com>
CC: Santosh Raspatur <santosh@chelsio.com>
CC: Hariprasad S <hariprasad@chelsio.com>
CC: Christian Benvenuti <benve@cisco.com>
CC: Sujith Sankar <ssujith@cisco.com>
CC: Govindarajulu Varadarajan <_govind@gmx.com>
CC: Neel Patel <neepatel@cisco.com>
CC: Claudiu Manoil <claudiu.manoil@freescale.com>
CC: Yisen Zhuang <yisen.zhuang@huawei.com>
CC: Salil Mehta <salil.mehta@huawei.com>
CC: Hyong-Youb Kim <hykim@myri.com>
CC: Jakub Kicinski <jakub.kicinski@netronome.com>
CC: Olof Johansson <olof@lixom.net>
CC: Jiri Pirko <jiri@resnulli.us>
CC: Byungho An <bh74.an@samsung.com>
CC: Girish K S <ks.giri@samsung.com>
CC: Vipul Pandya <vipul.pandya@samsung.com>
CC: Giuseppe Cavallaro <peppe.cavallaro@st.com>
CC: Alexandre Torgue <alexandre.torgue@st.com>
CC: Andy Gospodarek <andy@greyhouse.net>
CC: Wingman Kwok <w-kwok2@ti.com>
CC: Murali Karicheri <m-karicheri2@ti.com>
CC: Francois Romieu <romieu@fr.zoreil.com>
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-10-18 03:54:17 +08:00
|
|
|
/* MTU range: 46 - 1500 */
|
2017-05-29 19:57:14 +08:00
|
|
|
dev->min_mtu = QCAFRM_MIN_MTU;
|
|
|
|
dev->max_mtu = QCAFRM_MAX_MTU;
|
ethernet: use core min/max MTU checking
et131x: min_mtu 64, max_mtu 9216
altera_tse: min_mtu 64, max_mtu 1500
amd8111e: min_mtu 60, max_mtu 9000
bnad: min_mtu 46, max_mtu 9000
macb: min_mtu 68, max_mtu 1500 or 10240 depending on hardware capability
xgmac: min_mtu 46, max_mtu 9000
cxgb2: min_mtu 68, max_mtu 9582 (pm3393) or 9600 (vsc7326)
enic: min_mtu 68, max_mtu 9000
gianfar: min_mtu 50, max_mu 9586
hns_enet: min_mtu 68, max_mtu 9578 (v1) or 9706 (v2)
ksz884x: min_mtu 60, max_mtu 1894
myri10ge: min_mtu 68, max_mtu 9000
natsemi: min_mtu 64, max_mtu 2024
nfp: min_mtu 68, max_mtu hardware-specific
forcedeth: min_mtu 64, max_mtu 1500 or 9100, depending on hardware
pch_gbe: min_mtu 46, max_mtu 10300
pasemi_mac: min_mtu 64, max_mtu 9000
qcaspi: min_mtu 46, max_mtu 1500
- remove qcaspi_netdev_change_mtu as it is now redundant
rocker: min_mtu 68, max_mtu 9000
sxgbe: min_mtu 68, max_mtu 9000
stmmac: min_mtu 46, max_mtu depends on hardware
tehuti: min_mtu 60, max_mtu 16384
- driver had no max mtu checking, but product docs say 16k jumbo packets
are supported by the hardware
netcp: min_mtu 68, max_mtu 9486
- remove netcp_ndo_change_mtu as it is now redundant
via-velocity: min_mtu 64, max_mtu 9000
octeon: min_mtu 46, max_mtu 65370
CC: netdev@vger.kernel.org
CC: Mark Einon <mark.einon@gmail.com>
CC: Vince Bridgers <vbridger@opensource.altera.com>
CC: Rasesh Mody <rasesh.mody@qlogic.com>
CC: Nicolas Ferre <nicolas.ferre@atmel.com>
CC: Santosh Raspatur <santosh@chelsio.com>
CC: Hariprasad S <hariprasad@chelsio.com>
CC: Christian Benvenuti <benve@cisco.com>
CC: Sujith Sankar <ssujith@cisco.com>
CC: Govindarajulu Varadarajan <_govind@gmx.com>
CC: Neel Patel <neepatel@cisco.com>
CC: Claudiu Manoil <claudiu.manoil@freescale.com>
CC: Yisen Zhuang <yisen.zhuang@huawei.com>
CC: Salil Mehta <salil.mehta@huawei.com>
CC: Hyong-Youb Kim <hykim@myri.com>
CC: Jakub Kicinski <jakub.kicinski@netronome.com>
CC: Olof Johansson <olof@lixom.net>
CC: Jiri Pirko <jiri@resnulli.us>
CC: Byungho An <bh74.an@samsung.com>
CC: Girish K S <ks.giri@samsung.com>
CC: Vipul Pandya <vipul.pandya@samsung.com>
CC: Giuseppe Cavallaro <peppe.cavallaro@st.com>
CC: Alexandre Torgue <alexandre.torgue@st.com>
CC: Andy Gospodarek <andy@greyhouse.net>
CC: Wingman Kwok <w-kwok2@ti.com>
CC: Murali Karicheri <m-karicheri2@ti.com>
CC: Francois Romieu <romieu@fr.zoreil.com>
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-10-18 03:54:17 +08:00
|
|
|
|
2014-09-27 06:21:21 +08:00
|
|
|
qca = netdev_priv(dev);
|
|
|
|
memset(qca, 0, sizeof(struct qcaspi));
|
|
|
|
|
|
|
|
memset(&qca->txr, 0, sizeof(qca->txr));
|
|
|
|
qca->txr.count = TX_RING_MAX_LEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct of_device_id qca_spi_of_match[] = {
|
|
|
|
{ .compatible = "qca,qca7000" },
|
|
|
|
{ /* sentinel */ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, qca_spi_of_match);
|
|
|
|
|
|
|
|
static int
|
2015-05-07 11:47:48 +08:00
|
|
|
qca_spi_probe(struct spi_device *spi)
|
2014-09-27 06:21:21 +08:00
|
|
|
{
|
|
|
|
struct qcaspi *qca = NULL;
|
|
|
|
struct net_device *qcaspi_devs = NULL;
|
|
|
|
u8 legacy_mode = 0;
|
|
|
|
u16 signature;
|
of: net: pass the dst buffer to of_get_mac_address()
of_get_mac_address() returns a "const void*" pointer to a MAC address.
Lately, support to fetch the MAC address by an NVMEM provider was added.
But this will only work with platform devices. It will not work with
PCI devices (e.g. of an integrated root complex) and esp. not with DSA
ports.
There is an of_* variant of the nvmem binding which works without
devices. The returned data of a nvmem_cell_read() has to be freed after
use. On the other hand the return of_get_mac_address() points to some
static data without a lifetime. The trick for now, was to allocate a
device resource managed buffer which is then returned. This will only
work if we have an actual device.
Change it, so that the caller of of_get_mac_address() has to supply a
buffer where the MAC address is written to. Unfortunately, this will
touch all drivers which use the of_get_mac_address().
Usually the code looks like:
const char *addr;
addr = of_get_mac_address(np);
if (!IS_ERR(addr))
ether_addr_copy(ndev->dev_addr, addr);
This can then be simply rewritten as:
of_get_mac_address(np, ndev->dev_addr);
Sometimes is_valid_ether_addr() is used to test the MAC address.
of_get_mac_address() already makes sure, it just returns a valid MAC
address. Thus we can just test its return code. But we have to be
careful if there are still other sources for the MAC address before the
of_get_mac_address(). In this case we have to keep the
is_valid_ether_addr() call.
The following coccinelle patch was used to convert common cases to the
new style. Afterwards, I've manually gone over the drivers and fixed the
return code variable: either used a new one or if one was already
available use that. Mansour Moufid, thanks for that coccinelle patch!
<spml>
@a@
identifier x;
expression y, z;
@@
- x = of_get_mac_address(y);
+ x = of_get_mac_address(y, z);
<...
- ether_addr_copy(z, x);
...>
@@
identifier a.x;
@@
- if (<+... x ...+>) {}
@@
identifier a.x;
@@
if (<+... x ...+>) {
...
}
- else {}
@@
identifier a.x;
expression e;
@@
- if (<+... x ...+>@e)
- {}
- else
+ if (!(e))
{...}
@@
expression x, y, z;
@@
- x = of_get_mac_address(y, z);
+ of_get_mac_address(y, z);
... when != x
</spml>
All drivers, except drivers/net/ethernet/aeroflex/greth.c, were
compile-time tested.
Suggested-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
2021-04-13 01:47:17 +08:00
|
|
|
int ret;
|
2014-09-27 06:21:21 +08:00
|
|
|
|
2015-05-07 11:47:48 +08:00
|
|
|
if (!spi->dev.of_node) {
|
|
|
|
dev_err(&spi->dev, "Missing device tree\n");
|
2014-09-27 06:21:21 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2015-05-07 11:47:48 +08:00
|
|
|
legacy_mode = of_property_read_bool(spi->dev.of_node,
|
2014-09-27 06:21:21 +08:00
|
|
|
"qca,legacy-mode");
|
|
|
|
|
|
|
|
if (qcaspi_clkspeed == 0) {
|
2015-05-07 11:47:48 +08:00
|
|
|
if (spi->max_speed_hz)
|
|
|
|
qcaspi_clkspeed = spi->max_speed_hz;
|
2014-09-27 06:21:21 +08:00
|
|
|
else
|
|
|
|
qcaspi_clkspeed = QCASPI_CLK_SPEED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((qcaspi_clkspeed < QCASPI_CLK_SPEED_MIN) ||
|
|
|
|
(qcaspi_clkspeed > QCASPI_CLK_SPEED_MAX)) {
|
2018-07-18 14:31:45 +08:00
|
|
|
dev_err(&spi->dev, "Invalid clkspeed: %d\n",
|
|
|
|
qcaspi_clkspeed);
|
2014-09-27 06:21:21 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((qcaspi_burst_len < QCASPI_BURST_LEN_MIN) ||
|
|
|
|
(qcaspi_burst_len > QCASPI_BURST_LEN_MAX)) {
|
2018-07-18 14:31:45 +08:00
|
|
|
dev_err(&spi->dev, "Invalid burst len: %d\n",
|
|
|
|
qcaspi_burst_len);
|
2014-09-27 06:21:21 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((qcaspi_pluggable < QCASPI_PLUGGABLE_MIN) ||
|
|
|
|
(qcaspi_pluggable > QCASPI_PLUGGABLE_MAX)) {
|
2018-07-18 14:31:45 +08:00
|
|
|
dev_err(&spi->dev, "Invalid pluggable: %d\n",
|
|
|
|
qcaspi_pluggable);
|
2014-09-27 06:21:21 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2018-09-24 19:20:10 +08:00
|
|
|
if (wr_verify < QCASPI_WRITE_VERIFY_MIN ||
|
|
|
|
wr_verify > QCASPI_WRITE_VERIFY_MAX) {
|
|
|
|
dev_err(&spi->dev, "Invalid write verify: %d\n",
|
|
|
|
wr_verify);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2015-05-07 11:47:48 +08:00
|
|
|
dev_info(&spi->dev, "ver=%s, clkspeed=%d, burst_len=%d, pluggable=%d\n",
|
2014-09-27 06:21:21 +08:00
|
|
|
QCASPI_DRV_VERSION,
|
|
|
|
qcaspi_clkspeed,
|
|
|
|
qcaspi_burst_len,
|
|
|
|
qcaspi_pluggable);
|
|
|
|
|
2015-05-07 11:47:48 +08:00
|
|
|
spi->mode = SPI_MODE_3;
|
|
|
|
spi->max_speed_hz = qcaspi_clkspeed;
|
|
|
|
if (spi_setup(spi) < 0) {
|
|
|
|
dev_err(&spi->dev, "Unable to setup SPI device\n");
|
2014-09-27 06:21:21 +08:00
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
qcaspi_devs = alloc_etherdev(sizeof(struct qcaspi));
|
|
|
|
if (!qcaspi_devs)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
qcaspi_netdev_setup(qcaspi_devs);
|
2017-05-29 19:57:12 +08:00
|
|
|
SET_NETDEV_DEV(qcaspi_devs, &spi->dev);
|
2014-09-27 06:21:21 +08:00
|
|
|
|
|
|
|
qca = netdev_priv(qcaspi_devs);
|
|
|
|
if (!qca) {
|
|
|
|
free_netdev(qcaspi_devs);
|
2015-05-07 11:47:48 +08:00
|
|
|
dev_err(&spi->dev, "Fail to retrieve private structure\n");
|
2014-09-27 06:21:21 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
qca->net_dev = qcaspi_devs;
|
2015-05-07 11:47:48 +08:00
|
|
|
qca->spi_dev = spi;
|
2014-09-27 06:21:21 +08:00
|
|
|
qca->legacy_mode = legacy_mode;
|
|
|
|
|
2015-05-14 02:31:43 +08:00
|
|
|
spi_set_drvdata(spi, qcaspi_devs);
|
2015-05-09 15:58:09 +08:00
|
|
|
|
2021-10-07 09:06:56 +08:00
|
|
|
ret = of_get_ethdev_address(spi->dev.of_node, qca->net_dev);
|
of: net: pass the dst buffer to of_get_mac_address()
of_get_mac_address() returns a "const void*" pointer to a MAC address.
Lately, support to fetch the MAC address by an NVMEM provider was added.
But this will only work with platform devices. It will not work with
PCI devices (e.g. of an integrated root complex) and esp. not with DSA
ports.
There is an of_* variant of the nvmem binding which works without
devices. The returned data of a nvmem_cell_read() has to be freed after
use. On the other hand the return of_get_mac_address() points to some
static data without a lifetime. The trick for now, was to allocate a
device resource managed buffer which is then returned. This will only
work if we have an actual device.
Change it, so that the caller of of_get_mac_address() has to supply a
buffer where the MAC address is written to. Unfortunately, this will
touch all drivers which use the of_get_mac_address().
Usually the code looks like:
const char *addr;
addr = of_get_mac_address(np);
if (!IS_ERR(addr))
ether_addr_copy(ndev->dev_addr, addr);
This can then be simply rewritten as:
of_get_mac_address(np, ndev->dev_addr);
Sometimes is_valid_ether_addr() is used to test the MAC address.
of_get_mac_address() already makes sure, it just returns a valid MAC
address. Thus we can just test its return code. But we have to be
careful if there are still other sources for the MAC address before the
of_get_mac_address(). In this case we have to keep the
is_valid_ether_addr() call.
The following coccinelle patch was used to convert common cases to the
new style. Afterwards, I've manually gone over the drivers and fixed the
return code variable: either used a new one or if one was already
available use that. Mansour Moufid, thanks for that coccinelle patch!
<spml>
@a@
identifier x;
expression y, z;
@@
- x = of_get_mac_address(y);
+ x = of_get_mac_address(y, z);
<...
- ether_addr_copy(z, x);
...>
@@
identifier a.x;
@@
- if (<+... x ...+>) {}
@@
identifier a.x;
@@
if (<+... x ...+>) {
...
}
- else {}
@@
identifier a.x;
expression e;
@@
- if (<+... x ...+>@e)
- {}
- else
+ if (!(e))
{...}
@@
expression x, y, z;
@@
- x = of_get_mac_address(y, z);
+ of_get_mac_address(y, z);
... when != x
</spml>
All drivers, except drivers/net/ethernet/aeroflex/greth.c, were
compile-time tested.
Suggested-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
2021-04-13 01:47:17 +08:00
|
|
|
if (ret) {
|
2014-09-27 06:21:21 +08:00
|
|
|
eth_hw_addr_random(qca->net_dev);
|
2015-05-07 11:47:48 +08:00
|
|
|
dev_info(&spi->dev, "Using random MAC address: %pM\n",
|
2014-09-27 06:21:21 +08:00
|
|
|
qca->net_dev->dev_addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
netif_carrier_off(qca->net_dev);
|
|
|
|
|
|
|
|
if (!qcaspi_pluggable) {
|
|
|
|
qcaspi_read_register(qca, SPI_REG_SIGNATURE, &signature);
|
|
|
|
qcaspi_read_register(qca, SPI_REG_SIGNATURE, &signature);
|
|
|
|
|
|
|
|
if (signature != QCASPI_GOOD_SIGNATURE) {
|
2015-05-07 11:47:48 +08:00
|
|
|
dev_err(&spi->dev, "Invalid signature (0x%04X)\n",
|
2014-09-27 06:21:21 +08:00
|
|
|
signature);
|
|
|
|
free_netdev(qcaspi_devs);
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (register_netdev(qcaspi_devs)) {
|
2018-07-18 14:31:45 +08:00
|
|
|
dev_err(&spi->dev, "Unable to register net device %s\n",
|
|
|
|
qcaspi_devs->name);
|
2014-09-27 06:21:21 +08:00
|
|
|
free_netdev(qcaspi_devs);
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
qcaspi_init_device_debugfs(qca);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-01-24 01:52:01 +08:00
|
|
|
static void
|
2015-05-07 11:47:48 +08:00
|
|
|
qca_spi_remove(struct spi_device *spi)
|
2014-09-27 06:21:21 +08:00
|
|
|
{
|
2015-05-07 11:47:48 +08:00
|
|
|
struct net_device *qcaspi_devs = spi_get_drvdata(spi);
|
2014-09-27 06:21:21 +08:00
|
|
|
struct qcaspi *qca = netdev_priv(qcaspi_devs);
|
|
|
|
|
|
|
|
qcaspi_remove_device_debugfs(qca);
|
|
|
|
|
|
|
|
unregister_netdev(qcaspi_devs);
|
|
|
|
free_netdev(qcaspi_devs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct spi_device_id qca_spi_id[] = {
|
|
|
|
{ "qca7000", 0 },
|
|
|
|
{ /* sentinel */ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(spi, qca_spi_id);
|
|
|
|
|
|
|
|
static struct spi_driver qca_spi_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = QCASPI_DRV_NAME,
|
|
|
|
.of_match_table = qca_spi_of_match,
|
|
|
|
},
|
|
|
|
.id_table = qca_spi_id,
|
|
|
|
.probe = qca_spi_probe,
|
|
|
|
.remove = qca_spi_remove,
|
|
|
|
};
|
|
|
|
module_spi_driver(qca_spi_driver);
|
|
|
|
|
2017-05-29 19:57:17 +08:00
|
|
|
MODULE_DESCRIPTION("Qualcomm Atheros QCA7000 SPI Driver");
|
2014-09-27 06:21:21 +08:00
|
|
|
MODULE_AUTHOR("Qualcomm Atheros Communications");
|
|
|
|
MODULE_AUTHOR("Stefan Wahren <stefan.wahren@i2se.com>");
|
|
|
|
MODULE_LICENSE("Dual BSD/GPL");
|
|
|
|
MODULE_VERSION(QCASPI_DRV_VERSION);
|