-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net: qualcomm: new Ethernet over SPI driver for QCA7000
This patch adds the Ethernet over SPI driver for the Qualcomm QCA7000 HomePlug GreenPHY. Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
Stefan Wahren
authored and
David S. Miller
committed
Sep 29, 2014
1 parent
7d50df8
commit 291ab06
Showing
12 changed files
with
2,001 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# | ||
# Qualcomm network device configuration | ||
# | ||
|
||
config NET_VENDOR_QUALCOMM | ||
bool "Qualcomm devices" | ||
default y | ||
depends on SPI_MASTER && OF_GPIO | ||
---help--- | ||
If you have a network (Ethernet) card belonging to this class, say Y | ||
and read the Ethernet-HOWTO, available from | ||
<http://www.tldp.org/docs.html#howto>. | ||
|
||
Note that the answer to this question doesn't directly affect the | ||
kernel: saying N will just cause the configurator to skip all | ||
the questions about Qualcomm cards. If you say Y, you will be asked | ||
for your specific card in the following questions. | ||
|
||
if NET_VENDOR_QUALCOMM | ||
|
||
config QCA7000 | ||
tristate "Qualcomm Atheros QCA7000 support" | ||
depends on SPI_MASTER && OF_GPIO | ||
---help--- | ||
This SPI protocol driver supports the Qualcomm Atheros QCA7000. | ||
|
||
To compile this driver as a module, choose M here. The module | ||
will be called qcaspi. | ||
|
||
endif # NET_VENDOR_QUALCOMM |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# | ||
# Makefile for the Qualcomm network device drivers. | ||
# | ||
|
||
obj-$(CONFIG_QCA7000) += qcaspi.o | ||
qcaspi-objs := qca_spi.o qca_framing.o qca_7k.o qca_debug.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
/* | ||
* | ||
* 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. | ||
*/ | ||
|
||
#include <linux/init.h> | ||
#include <linux/module.h> | ||
#include <linux/moduleparam.h> | ||
#include <linux/spi/spi.h> | ||
#include <linux/version.h> | ||
|
||
#include "qca_7k.h" | ||
|
||
void | ||
qcaspi_spi_error(struct qcaspi *qca) | ||
{ | ||
if (qca->sync != QCASPI_SYNC_READY) | ||
return; | ||
|
||
netdev_err(qca->net_dev, "spi error\n"); | ||
qca->sync = QCASPI_SYNC_UNKNOWN; | ||
qca->stats.spi_err++; | ||
} | ||
|
||
int | ||
qcaspi_read_register(struct qcaspi *qca, u16 reg, u16 *result) | ||
{ | ||
__be16 rx_data; | ||
__be16 tx_data; | ||
struct spi_transfer *transfer; | ||
struct spi_message *msg; | ||
int ret; | ||
|
||
tx_data = cpu_to_be16(QCA7K_SPI_READ | QCA7K_SPI_INTERNAL | reg); | ||
|
||
if (qca->legacy_mode) { | ||
msg = &qca->spi_msg1; | ||
transfer = &qca->spi_xfer1; | ||
transfer->tx_buf = &tx_data; | ||
transfer->rx_buf = NULL; | ||
transfer->len = QCASPI_CMD_LEN; | ||
spi_sync(qca->spi_dev, msg); | ||
} else { | ||
msg = &qca->spi_msg2; | ||
transfer = &qca->spi_xfer2[0]; | ||
transfer->tx_buf = &tx_data; | ||
transfer->rx_buf = NULL; | ||
transfer->len = QCASPI_CMD_LEN; | ||
transfer = &qca->spi_xfer2[1]; | ||
} | ||
transfer->tx_buf = NULL; | ||
transfer->rx_buf = &rx_data; | ||
transfer->len = QCASPI_CMD_LEN; | ||
ret = spi_sync(qca->spi_dev, msg); | ||
|
||
if (!ret) | ||
ret = msg->status; | ||
|
||
if (ret) | ||
qcaspi_spi_error(qca); | ||
else | ||
*result = be16_to_cpu(rx_data); | ||
|
||
return ret; | ||
} | ||
|
||
int | ||
qcaspi_write_register(struct qcaspi *qca, u16 reg, u16 value) | ||
{ | ||
__be16 tx_data[2]; | ||
struct spi_transfer *transfer; | ||
struct spi_message *msg; | ||
int ret; | ||
|
||
tx_data[0] = cpu_to_be16(QCA7K_SPI_WRITE | QCA7K_SPI_INTERNAL | reg); | ||
tx_data[1] = cpu_to_be16(value); | ||
|
||
if (qca->legacy_mode) { | ||
msg = &qca->spi_msg1; | ||
transfer = &qca->spi_xfer1; | ||
transfer->tx_buf = &tx_data[0]; | ||
transfer->rx_buf = NULL; | ||
transfer->len = QCASPI_CMD_LEN; | ||
spi_sync(qca->spi_dev, msg); | ||
} else { | ||
msg = &qca->spi_msg2; | ||
transfer = &qca->spi_xfer2[0]; | ||
transfer->tx_buf = &tx_data[0]; | ||
transfer->rx_buf = NULL; | ||
transfer->len = QCASPI_CMD_LEN; | ||
transfer = &qca->spi_xfer2[1]; | ||
} | ||
transfer->tx_buf = &tx_data[1]; | ||
transfer->rx_buf = NULL; | ||
transfer->len = QCASPI_CMD_LEN; | ||
ret = spi_sync(qca->spi_dev, msg); | ||
|
||
if (!ret) | ||
ret = msg->status; | ||
|
||
if (ret) | ||
qcaspi_spi_error(qca); | ||
|
||
return ret; | ||
} | ||
|
||
int | ||
qcaspi_tx_cmd(struct qcaspi *qca, u16 cmd) | ||
{ | ||
__be16 tx_data; | ||
struct spi_message *msg = &qca->spi_msg1; | ||
struct spi_transfer *transfer = &qca->spi_xfer1; | ||
int ret; | ||
|
||
tx_data = cpu_to_be16(cmd); | ||
transfer->len = sizeof(tx_data); | ||
transfer->tx_buf = &tx_data; | ||
transfer->rx_buf = NULL; | ||
|
||
ret = spi_sync(qca->spi_dev, msg); | ||
|
||
if (!ret) | ||
ret = msg->status; | ||
|
||
if (ret) | ||
qcaspi_spi_error(qca); | ||
|
||
return ret; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* 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. | ||
* | ||
*/ | ||
|
||
/* Qualcomm Atheros SPI register definition. | ||
* | ||
* This module is designed to define the Qualcomm Atheros SPI | ||
* register placeholders. | ||
*/ | ||
|
||
#ifndef _QCA_7K_H | ||
#define _QCA_7K_H | ||
|
||
#include <linux/types.h> | ||
|
||
#include "qca_spi.h" | ||
|
||
#define QCA7K_SPI_READ (1 << 15) | ||
#define QCA7K_SPI_WRITE (0 << 15) | ||
#define QCA7K_SPI_INTERNAL (1 << 14) | ||
#define QCA7K_SPI_EXTERNAL (0 << 14) | ||
|
||
#define QCASPI_CMD_LEN 2 | ||
#define QCASPI_HW_PKT_LEN 4 | ||
#define QCASPI_HW_BUF_LEN 0xC5B | ||
|
||
/* SPI registers; */ | ||
#define SPI_REG_BFR_SIZE 0x0100 | ||
#define SPI_REG_WRBUF_SPC_AVA 0x0200 | ||
#define SPI_REG_RDBUF_BYTE_AVA 0x0300 | ||
#define SPI_REG_SPI_CONFIG 0x0400 | ||
#define SPI_REG_SPI_STATUS 0x0500 | ||
#define SPI_REG_INTR_CAUSE 0x0C00 | ||
#define SPI_REG_INTR_ENABLE 0x0D00 | ||
#define SPI_REG_RDBUF_WATERMARK 0x1200 | ||
#define SPI_REG_WRBUF_WATERMARK 0x1300 | ||
#define SPI_REG_SIGNATURE 0x1A00 | ||
#define SPI_REG_ACTION_CTRL 0x1B00 | ||
|
||
/* SPI_CONFIG register definition; */ | ||
#define QCASPI_SLAVE_RESET_BIT (1 << 6) | ||
|
||
/* INTR_CAUSE/ENABLE register definition. */ | ||
#define SPI_INT_WRBUF_BELOW_WM (1 << 10) | ||
#define SPI_INT_CPU_ON (1 << 6) | ||
#define SPI_INT_ADDR_ERR (1 << 3) | ||
#define SPI_INT_WRBUF_ERR (1 << 2) | ||
#define SPI_INT_RDBUF_ERR (1 << 1) | ||
#define SPI_INT_PKT_AVLBL (1 << 0) | ||
|
||
void qcaspi_spi_error(struct qcaspi *qca); | ||
int qcaspi_read_register(struct qcaspi *qca, u16 reg, u16 *result); | ||
int qcaspi_write_register(struct qcaspi *qca, u16 reg, u16 value); | ||
int qcaspi_tx_cmd(struct qcaspi *qca, u16 cmd); | ||
|
||
#endif /* _QCA_7K_H */ |
Oops, something went wrong.