2009-10-23 16:51:51 +00:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-10-25 17:41:01 +00:00
|
|
|
* the Free Software Foundation; version 2 of the License
|
2009-10-23 16:51:51 +00:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 John Crispin <blogic@openwrt.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/types.h>
|
2009-10-26 17:17:22 +00:00
|
|
|
#include <linux/dma-mapping.h>
|
2009-10-23 16:51:51 +00:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/skbuff.h>
|
2009-10-26 17:17:26 +00:00
|
|
|
#include <linux/etherdevice.h>
|
2009-10-24 20:58:41 +00:00
|
|
|
#include <linux/platform_device.h>
|
2009-10-23 16:51:51 +00:00
|
|
|
|
2009-10-26 17:17:45 +00:00
|
|
|
#include <ramips_eth_platform.h>
|
2009-10-26 17:17:51 +00:00
|
|
|
#include "ramips_eth.h"
|
2009-10-23 16:51:51 +00:00
|
|
|
|
|
|
|
#define TX_TIMEOUT (20 * HZ / 100)
|
2009-10-29 21:08:11 +00:00
|
|
|
#define MAX_RX_LENGTH 1600
|
2009-10-23 16:51:51 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_RALINK_RT305X
|
|
|
|
#include "ramips_esw.c"
|
|
|
|
#endif
|
|
|
|
|
2009-10-25 16:58:00 +00:00
|
|
|
#define phys_to_bus(a) (a & 0x1FFFFFFF)
|
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
static struct net_device * ramips_dev;
|
|
|
|
static void __iomem *ramips_fe_base = 0;
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
ramips_fe_wr(u32 val, unsigned reg)
|
|
|
|
{
|
|
|
|
__raw_writel(val, ramips_fe_base + reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u32
|
|
|
|
ramips_fe_rr(unsigned reg)
|
|
|
|
{
|
|
|
|
return __raw_readl(ramips_fe_base + reg);
|
|
|
|
}
|
|
|
|
|
2009-10-26 17:17:29 +00:00
|
|
|
static void
|
2010-01-31 12:48:43 +00:00
|
|
|
ramips_cleanup_dma(struct raeth_priv *re)
|
2009-10-26 17:17:29 +00:00
|
|
|
{
|
2009-10-26 17:17:37 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < NUM_RX_DESC; i++)
|
2010-01-31 12:48:43 +00:00
|
|
|
if (re->rx_skb[i])
|
|
|
|
dev_kfree_skb_any(re->rx_skb[i]);
|
2009-10-26 17:17:29 +00:00
|
|
|
|
2010-01-31 12:48:43 +00:00
|
|
|
if (re->rx)
|
2009-10-26 17:17:39 +00:00
|
|
|
dma_free_coherent(NULL,
|
|
|
|
NUM_RX_DESC * sizeof(struct ramips_rx_dma),
|
2010-01-31 12:48:43 +00:00
|
|
|
re->rx, re->phy_rx);
|
2009-10-26 17:17:39 +00:00
|
|
|
|
2010-01-31 12:48:43 +00:00
|
|
|
if (re->tx)
|
2009-10-26 17:17:39 +00:00
|
|
|
dma_free_coherent(NULL,
|
|
|
|
NUM_TX_DESC * sizeof(struct ramips_tx_dma),
|
2010-01-31 12:48:43 +00:00
|
|
|
re->tx, re->phy_tx);
|
2009-10-26 17:17:29 +00:00
|
|
|
}
|
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
static int
|
2010-01-31 12:48:43 +00:00
|
|
|
ramips_alloc_dma(struct raeth_priv *re)
|
2009-10-23 16:51:51 +00:00
|
|
|
{
|
2009-10-26 17:17:39 +00:00
|
|
|
int err = -ENOMEM;
|
2009-10-23 16:51:51 +00:00
|
|
|
int i;
|
|
|
|
|
2010-01-31 12:48:43 +00:00
|
|
|
re->skb_free_idx = 0;
|
2009-10-23 16:51:51 +00:00
|
|
|
|
|
|
|
/* setup tx ring */
|
2010-01-31 12:48:43 +00:00
|
|
|
re->tx = dma_alloc_coherent(NULL,
|
|
|
|
NUM_TX_DESC * sizeof(struct ramips_tx_dma),
|
|
|
|
&re->phy_tx, GFP_ATOMIC);
|
|
|
|
if (!re->tx)
|
2009-10-26 17:17:39 +00:00
|
|
|
goto err_cleanup;
|
|
|
|
|
2010-01-31 12:48:43 +00:00
|
|
|
memset(re->tx, 0, NUM_TX_DESC * sizeof(struct ramips_tx_dma));
|
2010-01-30 15:25:55 +00:00
|
|
|
for (i = 0; i < NUM_TX_DESC; i++) {
|
2010-01-31 12:48:46 +00:00
|
|
|
re->tx[i].txd2 = TX_DMA_LSO | TX_DMA_DONE;
|
|
|
|
re->tx[i].txd4 = TX_DMA_QN(3) | TX_DMA_PN(1);
|
2009-10-23 16:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* setup rx ring */
|
2010-01-31 12:48:43 +00:00
|
|
|
re->rx = dma_alloc_coherent(NULL,
|
|
|
|
NUM_RX_DESC * sizeof(struct ramips_rx_dma),
|
|
|
|
&re->phy_rx, GFP_ATOMIC);
|
|
|
|
if (!re->rx)
|
2009-10-26 17:17:39 +00:00
|
|
|
goto err_cleanup;
|
|
|
|
|
2010-01-31 12:48:43 +00:00
|
|
|
memset(re->rx, 0, sizeof(struct ramips_rx_dma) * NUM_RX_DESC);
|
2010-01-30 15:25:55 +00:00
|
|
|
for (i = 0; i < NUM_RX_DESC; i++) {
|
2009-10-23 16:51:51 +00:00
|
|
|
struct sk_buff *new_skb = dev_alloc_skb(MAX_RX_LENGTH + 2);
|
2009-10-26 17:17:39 +00:00
|
|
|
|
|
|
|
if (!new_skb)
|
|
|
|
goto err_cleanup;
|
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
skb_reserve(new_skb, 2);
|
2010-01-31 12:48:43 +00:00
|
|
|
re->rx[i].rxd1 = dma_map_single(NULL,
|
|
|
|
skb_put(new_skb, 2),
|
|
|
|
MAX_RX_LENGTH + 2,
|
|
|
|
DMA_FROM_DEVICE);
|
|
|
|
re->rx[i].rxd2 |= RX_DMA_LSO;
|
|
|
|
re->rx_skb[i] = new_skb;
|
2009-10-23 16:51:51 +00:00
|
|
|
}
|
2009-10-26 17:17:34 +00:00
|
|
|
|
|
|
|
return 0;
|
2009-10-26 17:17:39 +00:00
|
|
|
|
|
|
|
err_cleanup:
|
2010-01-31 12:48:43 +00:00
|
|
|
ramips_cleanup_dma(re);
|
2009-10-26 17:17:39 +00:00
|
|
|
return err;
|
2009-10-26 17:17:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-01-31 12:48:43 +00:00
|
|
|
ramips_setup_dma(struct raeth_priv *re)
|
2009-10-26 17:17:34 +00:00
|
|
|
{
|
2010-01-31 12:48:43 +00:00
|
|
|
ramips_fe_wr(phys_to_bus(re->phy_tx), RAMIPS_TX_BASE_PTR0);
|
2009-10-26 17:17:34 +00:00
|
|
|
ramips_fe_wr(NUM_TX_DESC, RAMIPS_TX_MAX_CNT0);
|
|
|
|
ramips_fe_wr(0, RAMIPS_TX_CTX_IDX0);
|
|
|
|
ramips_fe_wr(RAMIPS_PST_DTX_IDX0, RAMIPS_PDMA_RST_CFG);
|
|
|
|
|
2010-01-31 12:48:43 +00:00
|
|
|
ramips_fe_wr(phys_to_bus(re->phy_rx), RAMIPS_RX_BASE_PTR0);
|
2009-10-23 16:51:51 +00:00
|
|
|
ramips_fe_wr(NUM_RX_DESC, RAMIPS_RX_MAX_CNT0);
|
|
|
|
ramips_fe_wr((NUM_RX_DESC - 1), RAMIPS_RX_CALC_IDX0);
|
|
|
|
ramips_fe_wr(RAMIPS_PST_DRX_IDX0, RAMIPS_PDMA_RST_CFG);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-01-30 15:25:55 +00:00
|
|
|
ramips_eth_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
2009-10-23 16:51:51 +00:00
|
|
|
{
|
2009-10-25 09:37:27 +00:00
|
|
|
struct raeth_priv *priv = netdev_priv(dev);
|
2009-10-23 16:51:51 +00:00
|
|
|
unsigned long tx;
|
|
|
|
unsigned int tx_next;
|
2009-10-25 16:58:00 +00:00
|
|
|
unsigned int mapped_addr;
|
2009-10-29 21:08:11 +00:00
|
|
|
unsigned long flags;
|
2009-10-29 12:51:45 +00:00
|
|
|
|
2010-01-30 15:25:55 +00:00
|
|
|
if (priv->plat->min_pkt_len) {
|
|
|
|
if (skb->len < priv->plat->min_pkt_len) {
|
|
|
|
if (skb_padto(skb, priv->plat->min_pkt_len)) {
|
|
|
|
printk(KERN_ERR
|
|
|
|
"ramips_eth: skb_padto failed\n");
|
|
|
|
kfree_skb(skb);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
skb_put(skb, priv->plat->min_pkt_len - skb->len);
|
|
|
|
}
|
2009-10-24 20:58:41 +00:00
|
|
|
}
|
2010-01-30 15:25:55 +00:00
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
dev->trans_start = jiffies;
|
2010-01-30 15:25:55 +00:00
|
|
|
mapped_addr = (unsigned int) dma_map_single(NULL, skb->data, skb->len,
|
|
|
|
DMA_TO_DEVICE);
|
2009-10-26 17:17:22 +00:00
|
|
|
dma_sync_single_for_device(NULL, mapped_addr, skb->len, DMA_TO_DEVICE);
|
2009-10-29 21:08:11 +00:00
|
|
|
spin_lock_irqsave(&priv->page_lock, flags);
|
2009-10-23 16:51:51 +00:00
|
|
|
tx = ramips_fe_rr(RAMIPS_TX_CTX_IDX0);
|
2010-01-31 12:48:48 +00:00
|
|
|
tx_next = (tx + 1) % NUM_TX_DESC;
|
2010-01-30 15:25:55 +00:00
|
|
|
|
|
|
|
if ((priv->tx_skb[tx]) || (priv->tx_skb[tx_next]) ||
|
|
|
|
!(priv->tx[tx].txd2 & TX_DMA_DONE) ||
|
|
|
|
!(priv->tx[tx_next].txd2 & TX_DMA_DONE))
|
2009-10-29 21:08:11 +00:00
|
|
|
goto out;
|
2010-01-30 15:25:55 +00:00
|
|
|
|
2009-10-29 21:08:11 +00:00
|
|
|
priv->tx[tx].txd1 = mapped_addr;
|
|
|
|
priv->tx[tx].txd2 &= ~(TX_DMA_PLEN0_MASK | TX_DMA_DONE);
|
|
|
|
priv->tx[tx].txd2 |= TX_DMA_PLEN0(skb->len);
|
|
|
|
dev->stats.tx_packets++;
|
|
|
|
dev->stats.tx_bytes += skb->len;
|
|
|
|
priv->tx_skb[tx] = skb;
|
|
|
|
wmb();
|
2010-01-31 12:48:48 +00:00
|
|
|
ramips_fe_wr(tx_next, RAMIPS_TX_CTX_IDX0);
|
2009-10-29 21:08:11 +00:00
|
|
|
spin_unlock_irqrestore(&priv->page_lock, flags);
|
|
|
|
return NETDEV_TX_OK;
|
2010-01-30 15:25:55 +00:00
|
|
|
|
|
|
|
out:
|
2009-10-29 21:08:11 +00:00
|
|
|
spin_unlock_irqrestore(&priv->page_lock, flags);
|
|
|
|
dev->stats.tx_dropped++;
|
|
|
|
kfree_skb(skb);
|
|
|
|
return NETDEV_TX_OK;
|
2009-10-23 16:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ramips_eth_rx_hw(unsigned long ptr)
|
|
|
|
{
|
2010-01-30 15:25:55 +00:00
|
|
|
struct net_device *dev = (struct net_device *) ptr;
|
2009-10-25 09:37:27 +00:00
|
|
|
struct raeth_priv *priv = netdev_priv(dev);
|
2009-10-23 16:51:51 +00:00
|
|
|
int rx;
|
|
|
|
int max_rx = 16;
|
|
|
|
|
2010-01-30 15:25:55 +00:00
|
|
|
while (max_rx) {
|
2009-10-23 16:51:51 +00:00
|
|
|
struct sk_buff *rx_skb, *new_skb;
|
|
|
|
|
|
|
|
rx = (ramips_fe_rr(RAMIPS_RX_CALC_IDX0) + 1) % NUM_RX_DESC;
|
2010-01-30 15:25:55 +00:00
|
|
|
if (!(priv->rx[rx].rxd2 & RX_DMA_DONE))
|
2009-10-23 16:51:51 +00:00
|
|
|
break;
|
|
|
|
max_rx--;
|
|
|
|
|
2009-10-25 00:11:08 +00:00
|
|
|
rx_skb = priv->rx_skb[rx];
|
2009-10-23 16:51:51 +00:00
|
|
|
rx_skb->len = RX_DMA_PLEN0(priv->rx[rx].rxd2);
|
|
|
|
rx_skb->dev = dev;
|
|
|
|
rx_skb->protocol = eth_type_trans(rx_skb, dev);
|
|
|
|
rx_skb->ip_summed = CHECKSUM_NONE;
|
2009-10-25 09:37:30 +00:00
|
|
|
dev->stats.rx_packets++;
|
|
|
|
dev->stats.rx_bytes += rx_skb->len;
|
2009-10-23 16:51:51 +00:00
|
|
|
netif_rx(rx_skb);
|
|
|
|
|
2009-10-29 21:08:11 +00:00
|
|
|
new_skb = netdev_alloc_skb(dev, MAX_RX_LENGTH + 2);
|
2009-10-25 00:11:08 +00:00
|
|
|
priv->rx_skb[rx] = new_skb;
|
2009-10-23 16:51:51 +00:00
|
|
|
BUG_ON(!new_skb);
|
|
|
|
skb_reserve(new_skb, 2);
|
2010-01-30 15:25:55 +00:00
|
|
|
priv->rx[rx].rxd1 = dma_map_single(NULL,
|
|
|
|
new_skb->data,
|
|
|
|
MAX_RX_LENGTH + 2,
|
|
|
|
DMA_FROM_DEVICE);
|
2009-10-23 16:51:51 +00:00
|
|
|
priv->rx[rx].rxd2 &= ~RX_DMA_DONE;
|
2009-10-29 12:51:45 +00:00
|
|
|
wmb();
|
2009-10-23 16:51:51 +00:00
|
|
|
ramips_fe_wr(rx, RAMIPS_RX_CALC_IDX0);
|
|
|
|
}
|
2010-01-30 15:25:55 +00:00
|
|
|
|
|
|
|
if (max_rx == 0)
|
2009-10-23 16:51:51 +00:00
|
|
|
tasklet_schedule(&priv->rx_tasklet);
|
|
|
|
else
|
|
|
|
ramips_fe_wr(ramips_fe_rr(RAMIPS_FE_INT_ENABLE) | RAMIPS_RX_DLY_INT,
|
2010-01-30 15:25:55 +00:00
|
|
|
RAMIPS_FE_INT_ENABLE);
|
2009-10-23 16:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ramips_eth_tx_housekeeping(unsigned long ptr)
|
|
|
|
{
|
|
|
|
struct net_device *dev = (struct net_device*)ptr;
|
2009-10-25 09:37:27 +00:00
|
|
|
struct raeth_priv *priv = netdev_priv(dev);
|
2009-10-23 16:51:51 +00:00
|
|
|
|
2010-01-30 15:25:55 +00:00
|
|
|
while ((priv->tx[priv->skb_free_idx].txd2 & TX_DMA_DONE) &&
|
|
|
|
(priv->tx_skb[priv->skb_free_idx])) {
|
2010-01-31 12:48:51 +00:00
|
|
|
dev_kfree_skb_irq(priv->tx_skb[priv->skb_free_idx]);
|
2009-10-25 00:11:08 +00:00
|
|
|
priv->tx_skb[priv->skb_free_idx] = 0;
|
2009-10-23 16:51:51 +00:00
|
|
|
priv->skb_free_idx++;
|
2010-01-30 15:25:55 +00:00
|
|
|
if (priv->skb_free_idx >= NUM_TX_DESC)
|
2009-10-23 16:51:51 +00:00
|
|
|
priv->skb_free_idx = 0;
|
|
|
|
}
|
2010-01-30 15:25:55 +00:00
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
ramips_fe_wr(ramips_fe_rr(RAMIPS_FE_INT_ENABLE) | RAMIPS_TX_DLY_INT,
|
2010-01-30 15:25:55 +00:00
|
|
|
RAMIPS_FE_INT_ENABLE);
|
2009-10-23 16:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ramips_eth_set_mac_addr(struct net_device *dev, void *priv)
|
|
|
|
{
|
2010-01-31 12:48:51 +00:00
|
|
|
unsigned char *mac = priv;
|
2009-10-23 16:51:51 +00:00
|
|
|
|
2010-01-30 15:25:55 +00:00
|
|
|
if (netif_running(dev))
|
2009-10-23 16:51:51 +00:00
|
|
|
return -EBUSY;
|
2010-01-30 15:25:55 +00:00
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
memcpy(dev->dev_addr, ((struct sockaddr*)priv)->sa_data, dev->addr_len);
|
|
|
|
ramips_fe_wr((mac[0] << 8) | mac[1], RAMIPS_GDMA1_MAC_ADRH);
|
2010-01-30 15:26:02 +00:00
|
|
|
ramips_fe_wr((mac[2] << 24) | (mac[3] << 16) | (mac[4] << 8) | mac[5],
|
|
|
|
RAMIPS_GDMA1_MAC_ADRL);
|
2009-10-23 16:51:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ramips_eth_timeout(struct net_device *dev)
|
|
|
|
{
|
2009-10-25 09:37:27 +00:00
|
|
|
struct raeth_priv *priv = netdev_priv(dev);
|
|
|
|
|
|
|
|
tasklet_schedule(&priv->tx_housekeeping_tasklet);
|
2009-10-23 16:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static irqreturn_t
|
|
|
|
ramips_eth_irq(int irq, void *dev)
|
|
|
|
{
|
2009-10-25 09:37:27 +00:00
|
|
|
struct raeth_priv *priv = netdev_priv(dev);
|
2009-10-23 16:51:51 +00:00
|
|
|
unsigned long fe_int = ramips_fe_rr(RAMIPS_FE_INT_STATUS);
|
|
|
|
|
2009-10-25 14:34:55 +00:00
|
|
|
ramips_fe_wr(0xFFFFFFFF, RAMIPS_FE_INT_STATUS);
|
|
|
|
|
2010-01-30 15:25:55 +00:00
|
|
|
if (fe_int & RAMIPS_RX_DLY_INT) {
|
2009-10-23 16:51:51 +00:00
|
|
|
ramips_fe_wr(ramips_fe_rr(RAMIPS_FE_INT_ENABLE) & ~(RAMIPS_RX_DLY_INT),
|
2010-01-30 15:25:55 +00:00
|
|
|
RAMIPS_FE_INT_ENABLE);
|
2009-10-23 16:51:51 +00:00
|
|
|
tasklet_schedule(&priv->rx_tasklet);
|
|
|
|
}
|
2010-01-30 15:25:55 +00:00
|
|
|
|
|
|
|
if (fe_int & RAMIPS_TX_DLY_INT)
|
2009-10-25 14:34:55 +00:00
|
|
|
ramips_eth_tx_housekeeping((unsigned long)dev);
|
2010-01-30 15:25:55 +00:00
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ramips_eth_open(struct net_device *dev)
|
|
|
|
{
|
2009-10-25 09:37:27 +00:00
|
|
|
struct raeth_priv *priv = netdev_priv(dev);
|
2009-10-26 17:17:39 +00:00
|
|
|
int err;
|
|
|
|
|
2009-10-26 17:17:42 +00:00
|
|
|
err = request_irq(dev->irq, ramips_eth_irq, IRQF_DISABLED,
|
|
|
|
dev->name, dev);
|
2009-10-26 17:17:39 +00:00
|
|
|
if (err)
|
|
|
|
return err;
|
2009-10-23 16:51:51 +00:00
|
|
|
|
2010-01-31 12:48:43 +00:00
|
|
|
err = ramips_alloc_dma(priv);
|
2009-10-26 17:17:42 +00:00
|
|
|
if (err)
|
|
|
|
goto err_free_irq;
|
|
|
|
|
2010-01-31 12:48:43 +00:00
|
|
|
ramips_setup_dma(priv);
|
2009-10-23 16:51:51 +00:00
|
|
|
ramips_fe_wr((ramips_fe_rr(RAMIPS_PDMA_GLO_CFG) & 0xff) |
|
|
|
|
(RAMIPS_TX_WB_DDONE | RAMIPS_RX_DMA_EN |
|
|
|
|
RAMIPS_TX_DMA_EN | RAMIPS_PDMA_SIZE_4DWORDS),
|
|
|
|
RAMIPS_PDMA_GLO_CFG);
|
|
|
|
ramips_fe_wr((ramips_fe_rr(RAMIPS_FE_GLO_CFG) &
|
|
|
|
~(RAMIPS_US_CYC_CNT_MASK << RAMIPS_US_CYC_CNT_SHIFT)) |
|
|
|
|
((rt305x_sys_freq / RAMIPS_US_CYC_CNT_DIVISOR) << RAMIPS_US_CYC_CNT_SHIFT),
|
|
|
|
RAMIPS_FE_GLO_CFG);
|
2010-01-30 15:25:55 +00:00
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
tasklet_init(&priv->tx_housekeeping_tasklet, ramips_eth_tx_housekeeping,
|
2010-01-30 15:25:55 +00:00
|
|
|
(unsigned long)dev);
|
2009-10-23 16:51:51 +00:00
|
|
|
tasklet_init(&priv->rx_tasklet, ramips_eth_rx_hw, (unsigned long)dev);
|
2010-01-30 15:25:55 +00:00
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
ramips_fe_wr(RAMIPS_DELAY_INIT, RAMIPS_DLY_INT_CFG);
|
|
|
|
ramips_fe_wr(RAMIPS_TX_DLY_INT | RAMIPS_RX_DLY_INT, RAMIPS_FE_INT_ENABLE);
|
|
|
|
ramips_fe_wr(ramips_fe_rr(RAMIPS_GDMA1_FWD_CFG) &
|
|
|
|
~(RAMIPS_GDM1_ICS_EN | RAMIPS_GDM1_TCS_EN | RAMIPS_GDM1_UCS_EN | 0xffff),
|
|
|
|
RAMIPS_GDMA1_FWD_CFG);
|
|
|
|
ramips_fe_wr(ramips_fe_rr(RAMIPS_CDMA_CSG_CFG) &
|
|
|
|
~(RAMIPS_ICS_GEN_EN | RAMIPS_TCS_GEN_EN | RAMIPS_UCS_GEN_EN),
|
|
|
|
RAMIPS_CDMA_CSG_CFG);
|
|
|
|
ramips_fe_wr(RAMIPS_PSE_FQFC_CFG_INIT, RAMIPS_PSE_FQ_CFG);
|
|
|
|
ramips_fe_wr(1, RAMIPS_FE_RST_GL);
|
|
|
|
ramips_fe_wr(0, RAMIPS_FE_RST_GL);
|
2010-01-30 15:25:55 +00:00
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
netif_start_queue(dev);
|
|
|
|
return 0;
|
2009-10-26 17:17:42 +00:00
|
|
|
|
|
|
|
err_free_irq:
|
|
|
|
free_irq(dev->irq, dev);
|
|
|
|
return err;
|
2009-10-23 16:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ramips_eth_stop(struct net_device *dev)
|
|
|
|
{
|
2009-10-25 09:37:27 +00:00
|
|
|
struct raeth_priv *priv = netdev_priv(dev);
|
2009-10-23 16:51:51 +00:00
|
|
|
|
2010-01-30 15:26:02 +00:00
|
|
|
ramips_fe_wr(ramips_fe_rr(RAMIPS_PDMA_GLO_CFG) &
|
|
|
|
~(RAMIPS_TX_WB_DDONE | RAMIPS_RX_DMA_EN | RAMIPS_TX_DMA_EN),
|
|
|
|
RAMIPS_PDMA_GLO_CFG);
|
2009-10-23 16:51:51 +00:00
|
|
|
free_irq(dev->irq, dev);
|
|
|
|
netif_stop_queue(dev);
|
|
|
|
tasklet_kill(&priv->tx_housekeeping_tasklet);
|
|
|
|
tasklet_kill(&priv->rx_tasklet);
|
2010-01-31 12:48:43 +00:00
|
|
|
ramips_cleanup_dma(priv);
|
2009-10-25 09:37:24 +00:00
|
|
|
printk(KERN_DEBUG "ramips_eth: stopped\n");
|
2009-10-23 16:51:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-25 09:37:21 +00:00
|
|
|
static int __init
|
2009-10-23 16:51:51 +00:00
|
|
|
ramips_eth_probe(struct net_device *dev)
|
|
|
|
{
|
2009-10-25 09:37:27 +00:00
|
|
|
struct raeth_priv *priv = netdev_priv(dev);
|
2009-10-23 16:51:51 +00:00
|
|
|
struct sockaddr addr;
|
|
|
|
|
2009-10-25 00:11:08 +00:00
|
|
|
BUG_ON(!priv->plat->reset_fe);
|
2009-10-24 20:58:41 +00:00
|
|
|
priv->plat->reset_fe();
|
2009-10-23 16:51:51 +00:00
|
|
|
net_srandom(jiffies);
|
2009-10-24 20:58:41 +00:00
|
|
|
memcpy(addr.sa_data, priv->plat->mac, 6);
|
2009-10-23 16:51:51 +00:00
|
|
|
ramips_eth_set_mac_addr(dev, &addr);
|
|
|
|
|
|
|
|
ether_setup(dev);
|
2009-10-30 09:18:40 +00:00
|
|
|
dev->mtu = 1500;
|
2009-10-23 16:51:51 +00:00
|
|
|
dev->watchdog_timeo = TX_TIMEOUT;
|
2009-10-29 21:08:11 +00:00
|
|
|
spin_lock_init(&priv->page_lock);
|
2010-01-30 15:25:55 +00:00
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-31 12:48:38 +00:00
|
|
|
static const struct net_device_ops ramips_eth_netdev_ops = {
|
|
|
|
.ndo_init = ramips_eth_probe,
|
|
|
|
.ndo_open = ramips_eth_open,
|
|
|
|
.ndo_stop = ramips_eth_stop,
|
|
|
|
.ndo_start_xmit = ramips_eth_hard_start_xmit,
|
|
|
|
.ndo_tx_timeout = ramips_eth_timeout,
|
|
|
|
.ndo_change_mtu = eth_change_mtu,
|
|
|
|
.ndo_set_mac_address = ramips_eth_set_mac_addr,
|
|
|
|
.ndo_validate_addr = eth_validate_addr,
|
|
|
|
};
|
|
|
|
|
2009-10-24 20:58:41 +00:00
|
|
|
static int
|
|
|
|
ramips_eth_plat_probe(struct platform_device *plat)
|
2009-10-23 16:51:51 +00:00
|
|
|
{
|
2009-10-24 20:58:41 +00:00
|
|
|
struct raeth_priv *priv;
|
2009-10-25 09:37:27 +00:00
|
|
|
struct ramips_eth_platform_data *data = plat->dev.platform_data;
|
2009-10-26 17:17:18 +00:00
|
|
|
struct resource *res;
|
2009-10-26 17:17:13 +00:00
|
|
|
int err;
|
|
|
|
|
|
|
|
if (!data) {
|
|
|
|
dev_err(&plat->dev, "no platform data specified\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2009-10-26 17:17:18 +00:00
|
|
|
res = platform_get_resource(plat, IORESOURCE_MEM, 0);
|
|
|
|
if (!res) {
|
|
|
|
dev_err(&plat->dev, "no memory resource found\n");
|
|
|
|
return -ENXIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
ramips_fe_base = ioremap_nocache(res->start, res->end - res->start + 1);
|
2010-01-30 15:25:55 +00:00
|
|
|
if (!ramips_fe_base)
|
2009-10-23 16:51:51 +00:00
|
|
|
return -ENOMEM;
|
2009-10-26 17:17:13 +00:00
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
ramips_dev = alloc_etherdev(sizeof(struct raeth_priv));
|
2010-01-30 15:25:55 +00:00
|
|
|
if (!ramips_dev) {
|
2009-10-26 17:17:13 +00:00
|
|
|
dev_err(&plat->dev, "alloc_etherdev failed\n");
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto err_unmap;
|
|
|
|
}
|
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
strcpy(ramips_dev->name, "eth%d");
|
2009-10-26 17:17:18 +00:00
|
|
|
ramips_dev->irq = platform_get_irq(plat, 0);
|
|
|
|
if (ramips_dev->irq < 0) {
|
|
|
|
dev_err(&plat->dev, "no IRQ resource found\n");
|
|
|
|
err = -ENXIO;
|
|
|
|
goto err_free_dev;
|
|
|
|
}
|
2009-10-23 16:51:51 +00:00
|
|
|
ramips_dev->addr_len = ETH_ALEN;
|
|
|
|
ramips_dev->base_addr = (unsigned long)ramips_fe_base;
|
2010-01-31 12:48:38 +00:00
|
|
|
ramips_dev->netdev_ops = &ramips_eth_netdev_ops;
|
2010-01-30 15:25:55 +00:00
|
|
|
|
|
|
|
priv = netdev_priv(ramips_dev);
|
2009-10-25 00:11:08 +00:00
|
|
|
priv->plat = data;
|
2009-10-26 17:17:13 +00:00
|
|
|
|
|
|
|
err = register_netdev(ramips_dev);
|
|
|
|
if (err) {
|
|
|
|
dev_err(&plat->dev, "error bringing up device\n");
|
|
|
|
goto err_free_dev;
|
2009-10-23 16:51:51 +00:00
|
|
|
}
|
2009-10-26 17:17:13 +00:00
|
|
|
|
2009-10-23 16:51:51 +00:00
|
|
|
#ifdef CONFIG_RALINK_RT305X
|
|
|
|
rt305x_esw_init();
|
|
|
|
#endif
|
2009-10-25 09:37:24 +00:00
|
|
|
printk(KERN_DEBUG "ramips_eth: loaded\n");
|
2009-10-23 16:51:51 +00:00
|
|
|
return 0;
|
2009-10-26 17:17:13 +00:00
|
|
|
|
|
|
|
err_free_dev:
|
|
|
|
kfree(ramips_dev);
|
|
|
|
err_unmap:
|
|
|
|
iounmap(ramips_fe_base);
|
|
|
|
return err;
|
2009-10-23 16:51:51 +00:00
|
|
|
}
|
|
|
|
|
2009-10-24 20:58:41 +00:00
|
|
|
static int
|
|
|
|
ramips_eth_plat_remove(struct platform_device *plat)
|
2009-10-23 16:51:51 +00:00
|
|
|
{
|
|
|
|
unregister_netdev(ramips_dev);
|
|
|
|
free_netdev(ramips_dev);
|
2009-10-25 09:37:24 +00:00
|
|
|
printk(KERN_DEBUG "ramips_eth: unloaded\n");
|
2009-10-24 20:58:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct platform_driver ramips_eth_driver = {
|
|
|
|
.probe = ramips_eth_plat_probe,
|
|
|
|
.remove = ramips_eth_plat_remove,
|
|
|
|
.driver = {
|
|
|
|
.name = "ramips_eth",
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2009-10-25 09:37:21 +00:00
|
|
|
static int __init
|
|
|
|
ramips_eth_init(void)
|
2009-10-24 20:58:41 +00:00
|
|
|
{
|
|
|
|
int ret = platform_driver_register(&ramips_eth_driver);
|
|
|
|
if (ret)
|
2009-10-25 09:37:24 +00:00
|
|
|
printk(KERN_ERR
|
|
|
|
"ramips_eth: Error registering platfom driver!\n");
|
2009-10-24 20:58:41 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-10-25 09:37:21 +00:00
|
|
|
static void __exit
|
|
|
|
ramips_eth_cleanup(void)
|
2009-10-24 20:58:41 +00:00
|
|
|
{
|
|
|
|
platform_driver_unregister(&ramips_eth_driver);
|
2009-10-23 16:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module_init(ramips_eth_init);
|
|
|
|
module_exit(ramips_eth_cleanup);
|
|
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_AUTHOR("John Crispin <blogic@openwrt.org>");
|
|
|
|
MODULE_DESCRIPTION("ethernet driver for ramips boards");
|