2007-12-20 22:29:45 +00:00
|
|
|
/*
|
2007-12-22 13:55:14 +00:00
|
|
|
* drivers/net/ifxmips_mii0.c
|
2007-12-20 22:29:45 +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
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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) 2005 Infineon
|
|
|
|
*
|
2007-12-22 13:55:14 +00:00
|
|
|
* Rewrite of Infineon IFXMips code, thanks to infineon for the support,
|
2007-12-20 22:29:45 +00:00
|
|
|
* software and hardware
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 John Crispin <blogic@openwrt.org>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <asm/uaccess.h>
|
|
|
|
#include <linux/in.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/etherdevice.h>
|
|
|
|
#include <linux/ip.h>
|
|
|
|
#include <linux/tcp.h>
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/mm.h>
|
2007-12-25 12:38:15 +00:00
|
|
|
#include <linux/platform_device.h>
|
2007-12-20 22:29:45 +00:00
|
|
|
#include <linux/ethtool.h>
|
|
|
|
#include <asm/checksum.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <asm/delay.h>
|
2007-12-22 13:55:14 +00:00
|
|
|
#include <asm/ifxmips/ifxmips.h>
|
|
|
|
#include <asm/ifxmips/ifxmips_mii0.h>
|
|
|
|
#include <asm/ifxmips/ifxmips_dma.h>
|
|
|
|
#include <asm/ifxmips/ifxmips_pmu.h>
|
2007-12-20 22:29:45 +00:00
|
|
|
|
2007-12-25 12:38:15 +00:00
|
|
|
#define DRVNAME "ifxmips_mii0"
|
|
|
|
|
2007-12-22 13:55:14 +00:00
|
|
|
static struct net_device ifxmips_mii0_dev;
|
2007-12-20 22:29:45 +00:00
|
|
|
static unsigned char u_boot_ethaddr[MAX_ADDR_LEN];
|
|
|
|
|
|
|
|
void
|
2007-12-22 13:55:14 +00:00
|
|
|
ifxmips_write_mdio (u32 phy_addr, u32 phy_reg, u16 phy_data)
|
2007-12-20 22:29:45 +00:00
|
|
|
{
|
|
|
|
u32 val = MDIO_ACC_REQUEST |
|
|
|
|
((phy_addr & MDIO_ACC_ADDR_MASK) << MDIO_ACC_ADDR_OFFSET) |
|
|
|
|
((phy_reg & MDIO_ACC_REG_MASK) << MDIO_ACC_REG_OFFSET) |
|
|
|
|
phy_data;
|
|
|
|
|
2007-12-22 00:17:22 +00:00
|
|
|
while (readl(IFXMIPS_PPE32_MDIO_ACC) & MDIO_ACC_REQUEST);
|
|
|
|
writel(val, IFXMIPS_PPE32_MDIO_ACC);
|
2007-12-20 22:29:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned short
|
2007-12-22 13:55:14 +00:00
|
|
|
ifxmips_read_mdio (u32 phy_addr, u32 phy_reg)
|
2007-12-20 22:29:45 +00:00
|
|
|
{
|
|
|
|
u32 val = MDIO_ACC_REQUEST | MDIO_ACC_READ |
|
|
|
|
((phy_addr & MDIO_ACC_ADDR_MASK) << MDIO_ACC_ADDR_OFFSET) |
|
|
|
|
((phy_reg & MDIO_ACC_REG_MASK) << MDIO_ACC_REG_OFFSET);
|
|
|
|
|
2007-12-22 00:17:22 +00:00
|
|
|
writel(val, IFXMIPS_PPE32_MDIO_ACC);
|
|
|
|
while (readl(IFXMIPS_PPE32_MDIO_ACC) & MDIO_ACC_REQUEST){};
|
|
|
|
val = readl(IFXMIPS_PPE32_MDIO_ACC) & MDIO_ACC_VAL_MASK;
|
2007-12-20 22:29:45 +00:00
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2007-12-22 13:55:14 +00:00
|
|
|
ifxmips_switch_open (struct net_device *dev)
|
2007-12-20 22:29:45 +00:00
|
|
|
{
|
|
|
|
struct switch_priv* priv = (struct switch_priv*)dev->priv;
|
|
|
|
struct dma_device_info* dma_dev = priv->dma_device;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < dma_dev->max_rx_chan_num; i++)
|
|
|
|
{
|
2007-12-22 00:17:22 +00:00
|
|
|
if ((dma_dev->rx_chan[i])->control == IFXMIPS_DMA_CH_ON)
|
2007-12-20 22:29:45 +00:00
|
|
|
(dma_dev->rx_chan[i])->open(dma_dev->rx_chan[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
netif_start_queue(dev);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
switch_release (struct net_device *dev){
|
|
|
|
struct switch_priv* priv = (struct switch_priv*)dev->priv;
|
|
|
|
struct dma_device_info* dma_dev = priv->dma_device;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < dma_dev->max_rx_chan_num; i++)
|
|
|
|
dma_dev->rx_chan[i]->close(dma_dev->rx_chan[i]);
|
|
|
|
|
|
|
|
netif_stop_queue(dev);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
switch_hw_receive (struct net_device* dev,struct dma_device_info* dma_dev)
|
|
|
|
{
|
|
|
|
struct switch_priv *priv = (struct switch_priv*)dev->priv;
|
|
|
|
unsigned char* buf = NULL;
|
|
|
|
struct sk_buff *skb = NULL;
|
|
|
|
int len = 0;
|
|
|
|
|
|
|
|
len = dma_device_read(dma_dev, &buf, (void**)&skb);
|
|
|
|
|
|
|
|
if (len >= ETHERNET_PACKET_DMA_BUFFER_SIZE)
|
|
|
|
{
|
2007-12-25 12:38:15 +00:00
|
|
|
printk(KERN_INFO DRVNAME ": packet too large %d\n",len);
|
2007-12-20 22:29:45 +00:00
|
|
|
goto switch_hw_receive_err_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* remove CRC */
|
|
|
|
len -= 4;
|
|
|
|
if (skb == NULL )
|
|
|
|
{
|
2007-12-25 12:38:15 +00:00
|
|
|
printk(KERN_INFO DRVNAME ": cannot restore pointer\n");
|
2007-12-20 22:29:45 +00:00
|
|
|
goto switch_hw_receive_err_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len > (skb->end - skb->tail))
|
|
|
|
{
|
2007-12-25 12:38:15 +00:00
|
|
|
printk(KERN_INFO DRVNAME ": BUG, len:%d end:%p tail:%p\n", (len+4), skb->end, skb->tail);
|
2007-12-20 22:29:45 +00:00
|
|
|
goto switch_hw_receive_err_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
skb_put(skb, len);
|
|
|
|
skb->dev = dev;
|
|
|
|
skb->protocol = eth_type_trans(skb, dev);
|
|
|
|
netif_rx(skb);
|
|
|
|
|
|
|
|
priv->stats.rx_packets++;
|
|
|
|
priv->stats.rx_bytes += len;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch_hw_receive_err_exit:
|
|
|
|
if (len == 0)
|
|
|
|
{
|
|
|
|
if(skb)
|
|
|
|
dev_kfree_skb_any(skb);
|
|
|
|
priv->stats.rx_errors++;
|
|
|
|
priv->stats.rx_dropped++;
|
|
|
|
|
|
|
|
return -EIO;
|
|
|
|
} else {
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
switch_hw_tx (char *buf, int len, struct net_device *dev)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
struct switch_priv *priv = dev->priv;
|
|
|
|
struct dma_device_info* dma_dev = priv->dma_device;
|
|
|
|
|
|
|
|
ret = dma_device_write(dma_dev, buf, len, priv->skb);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
switch_tx (struct sk_buff *skb, struct net_device *dev)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
char *data;
|
|
|
|
struct switch_priv *priv = dev->priv;
|
|
|
|
struct dma_device_info* dma_dev = priv->dma_device;
|
|
|
|
|
|
|
|
len = skb->len < ETH_ZLEN ? ETH_ZLEN : skb->len;
|
|
|
|
data = skb->data;
|
|
|
|
priv->skb = skb;
|
|
|
|
dev->trans_start = jiffies;
|
|
|
|
// TODO we got more than 1 dma channel, so we should do something intelligent
|
|
|
|
// here to select one
|
|
|
|
dma_dev->current_tx_chan = 0;
|
|
|
|
|
|
|
|
wmb();
|
|
|
|
|
|
|
|
if (switch_hw_tx(data, len, dev) != len)
|
|
|
|
{
|
|
|
|
dev_kfree_skb_any(skb);
|
|
|
|
priv->stats.tx_errors++;
|
|
|
|
priv->stats.tx_dropped++;
|
|
|
|
} else {
|
|
|
|
priv->stats.tx_packets++;
|
|
|
|
priv->stats.tx_bytes+=len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
switch_tx_timeout (struct net_device *dev)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct switch_priv* priv = (struct switch_priv*)dev->priv;
|
|
|
|
|
|
|
|
priv->stats.tx_errors++;
|
|
|
|
|
|
|
|
for (i = 0; i < priv->dma_device->max_tx_chan_num; i++)
|
|
|
|
{
|
|
|
|
priv->dma_device->tx_chan[i]->disable_irq(priv->dma_device->tx_chan[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
netif_wake_queue(dev);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dma_intr_handler (struct dma_device_info* dma_dev, int status)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
switch (status)
|
|
|
|
{
|
|
|
|
case RCV_INT:
|
2007-12-22 13:55:14 +00:00
|
|
|
switch_hw_receive(&ifxmips_mii0_dev, dma_dev);
|
2007-12-20 22:29:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TX_BUF_FULL_INT:
|
2007-12-25 12:38:15 +00:00
|
|
|
printk(KERN_INFO DRVNAME ": tx buffer full\n");
|
2007-12-22 13:55:14 +00:00
|
|
|
netif_stop_queue(&ifxmips_mii0_dev);
|
2007-12-20 22:29:45 +00:00
|
|
|
for (i = 0; i < dma_dev->max_tx_chan_num; i++)
|
|
|
|
{
|
2007-12-22 00:17:22 +00:00
|
|
|
if ((dma_dev->tx_chan[i])->control==IFXMIPS_DMA_CH_ON)
|
2007-12-20 22:29:45 +00:00
|
|
|
dma_dev->tx_chan[i]->enable_irq(dma_dev->tx_chan[i]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TRANSMIT_CPT_INT:
|
|
|
|
for (i = 0; i < dma_dev->max_tx_chan_num; i++)
|
|
|
|
dma_dev->tx_chan[i]->disable_irq(dma_dev->tx_chan[i]);
|
|
|
|
|
2007-12-22 13:55:14 +00:00
|
|
|
netif_wake_queue(&ifxmips_mii0_dev);
|
2007-12-20 22:29:45 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char*
|
2007-12-22 13:55:14 +00:00
|
|
|
ifxmips_etop_dma_buffer_alloc (int len, int *byte_offset, void **opt)
|
2007-12-20 22:29:45 +00:00
|
|
|
{
|
|
|
|
unsigned char *buffer = NULL;
|
|
|
|
struct sk_buff *skb = NULL;
|
|
|
|
|
|
|
|
skb = dev_alloc_skb(ETHERNET_PACKET_DMA_BUFFER_SIZE);
|
|
|
|
if (skb == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
buffer = (unsigned char*)(skb->data);
|
|
|
|
skb_reserve(skb, 2);
|
|
|
|
*(int*)opt = (int)skb;
|
|
|
|
*byte_offset = 2;
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-12-22 13:55:14 +00:00
|
|
|
ifxmips_etop_dma_buffer_free (unsigned char *dataptr, void *opt)
|
2007-12-20 22:29:45 +00:00
|
|
|
{
|
|
|
|
struct sk_buff *skb = NULL;
|
|
|
|
|
|
|
|
if(opt == NULL)
|
|
|
|
{
|
|
|
|
kfree(dataptr);
|
|
|
|
} else {
|
|
|
|
skb = (struct sk_buff*)opt;
|
|
|
|
dev_kfree_skb_any(skb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct net_device_stats*
|
2007-12-22 13:55:14 +00:00
|
|
|
ifxmips_get_stats (struct net_device *dev)
|
2007-12-20 22:29:45 +00:00
|
|
|
{
|
|
|
|
return (struct net_device_stats *)dev->priv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
switch_init (struct net_device *dev)
|
|
|
|
{
|
|
|
|
u64 retval = 0;
|
|
|
|
int i;
|
|
|
|
struct switch_priv *priv;
|
|
|
|
|
|
|
|
ether_setup(dev);
|
|
|
|
|
2007-12-25 12:38:15 +00:00
|
|
|
printk(KERN_INFO DRVNAME ": %s is up\n", dev->name);
|
2007-12-20 22:29:45 +00:00
|
|
|
|
2007-12-22 13:55:14 +00:00
|
|
|
dev->open = ifxmips_switch_open;
|
2007-12-20 22:29:45 +00:00
|
|
|
dev->stop = switch_release;
|
|
|
|
dev->hard_start_xmit = switch_tx;
|
2007-12-22 13:55:14 +00:00
|
|
|
dev->get_stats = ifxmips_get_stats;
|
2007-12-20 22:29:45 +00:00
|
|
|
dev->tx_timeout = switch_tx_timeout;
|
|
|
|
dev->watchdog_timeo = 10 * HZ;
|
|
|
|
dev->priv = kmalloc(sizeof(struct switch_priv), GFP_KERNEL);
|
|
|
|
|
|
|
|
if (dev->priv == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
memset(dev->priv, 0, sizeof(struct switch_priv));
|
|
|
|
priv = dev->priv;
|
|
|
|
|
|
|
|
priv->dma_device = dma_device_reserve("PPE");
|
|
|
|
|
|
|
|
if (!priv->dma_device){
|
|
|
|
BUG();
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2007-12-22 13:55:14 +00:00
|
|
|
priv->dma_device->buffer_alloc = &ifxmips_etop_dma_buffer_alloc;
|
|
|
|
priv->dma_device->buffer_free = &ifxmips_etop_dma_buffer_free;
|
2007-12-20 22:29:45 +00:00
|
|
|
priv->dma_device->intr_handler = &dma_intr_handler;
|
|
|
|
priv->dma_device->max_rx_chan_num = 4;
|
|
|
|
|
|
|
|
for (i = 0; i < priv->dma_device->max_rx_chan_num; i++)
|
|
|
|
{
|
|
|
|
priv->dma_device->rx_chan[i]->packet_size = ETHERNET_PACKET_DMA_BUFFER_SIZE;
|
2007-12-22 00:17:22 +00:00
|
|
|
priv->dma_device->rx_chan[i]->control = IFXMIPS_DMA_CH_ON;
|
2007-12-20 22:29:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < priv->dma_device->max_tx_chan_num; i++)
|
|
|
|
{
|
|
|
|
if(i == 0)
|
2007-12-22 00:17:22 +00:00
|
|
|
priv->dma_device->tx_chan[i]->control = IFXMIPS_DMA_CH_ON;
|
2007-12-20 22:29:45 +00:00
|
|
|
else
|
2007-12-22 00:17:22 +00:00
|
|
|
priv->dma_device->tx_chan[i]->control = IFXMIPS_DMA_CH_OFF;
|
2007-12-20 22:29:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dma_device_register(priv->dma_device);
|
|
|
|
|
|
|
|
/*read the mac address from the mac table and put them into the mac table.*/
|
|
|
|
for (i = 0; i < 6; i++)
|
|
|
|
retval += u_boot_ethaddr[i];
|
|
|
|
|
|
|
|
//TODO
|
|
|
|
/* ethaddr not set in u-boot ? */
|
|
|
|
if (retval == 0)
|
|
|
|
{
|
2007-12-25 12:38:15 +00:00
|
|
|
printk(KERN_INFO DRVNAME ": using default MAC address\n");
|
2007-12-20 22:29:45 +00:00
|
|
|
dev->dev_addr[0] = 0x00;
|
|
|
|
dev->dev_addr[1] = 0x11;
|
|
|
|
dev->dev_addr[2] = 0x22;
|
|
|
|
dev->dev_addr[3] = 0x33;
|
|
|
|
dev->dev_addr[4] = 0x44;
|
|
|
|
dev->dev_addr[5] = 0x55;
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < 6; i++)
|
|
|
|
dev->dev_addr[i] = u_boot_ethaddr[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-12-22 13:55:14 +00:00
|
|
|
ifxmips_sw_chip_init (int mode)
|
2007-12-20 22:29:45 +00:00
|
|
|
{
|
2007-12-22 13:55:14 +00:00
|
|
|
ifxmips_pmu_enable(IFXMIPS_PMU_PWDCR_DMA);
|
|
|
|
ifxmips_pmu_enable(IFXMIPS_PMU_PWDCR_PPE);
|
2007-12-20 22:29:45 +00:00
|
|
|
|
|
|
|
if(mode == REV_MII_MODE)
|
2007-12-22 00:17:22 +00:00
|
|
|
writel((readl(IFXMIPS_PPE32_CFG) & PPE32_MII_MASK) | PPE32_MII_REVERSE, IFXMIPS_PPE32_CFG);
|
2007-12-20 22:29:45 +00:00
|
|
|
else if(mode == MII_MODE)
|
2007-12-22 00:17:22 +00:00
|
|
|
writel((readl(IFXMIPS_PPE32_CFG) & PPE32_MII_MASK) | PPE32_MII_NORMAL, IFXMIPS_PPE32_CFG);
|
2007-12-20 22:29:45 +00:00
|
|
|
|
2007-12-22 00:17:22 +00:00
|
|
|
writel(PPE32_PLEN_UNDER | PPE32_PLEN_OVER, IFXMIPS_PPE32_IG_PLEN_CTRL);
|
2007-12-20 22:29:45 +00:00
|
|
|
|
2007-12-22 00:17:22 +00:00
|
|
|
writel(PPE32_CGEN, IFXMIPS_PPE32_ENET_MAC_CFG);
|
2007-12-20 22:29:45 +00:00
|
|
|
|
|
|
|
wmb();
|
|
|
|
}
|
|
|
|
|
2007-12-25 12:38:15 +00:00
|
|
|
static int
|
|
|
|
ifxmips_mii_probe(struct platform_device *dev)
|
2007-12-20 22:29:45 +00:00
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
|
2007-12-22 13:55:14 +00:00
|
|
|
ifxmips_mii0_dev.init = switch_init;
|
2007-12-20 22:29:45 +00:00
|
|
|
|
2007-12-22 13:55:14 +00:00
|
|
|
strcpy(ifxmips_mii0_dev.name, "eth%d");
|
2007-12-20 22:29:45 +00:00
|
|
|
SET_MODULE_OWNER(dev);
|
|
|
|
|
2007-12-22 13:55:14 +00:00
|
|
|
result = register_netdev(&ifxmips_mii0_dev);
|
2007-12-20 22:29:45 +00:00
|
|
|
if (result)
|
|
|
|
{
|
2007-12-25 12:38:15 +00:00
|
|
|
printk(KERN_INFO DRVNAME ": error %i registering device \"%s\"\n", result, ifxmips_mii0_dev.name);
|
2007-12-20 22:29:45 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2007-12-22 13:55:14 +00:00
|
|
|
/* ifxmips eval kit connects the phy/switch in REV mode */
|
|
|
|
ifxmips_sw_chip_init(REV_MII_MODE);
|
2007-12-25 12:38:15 +00:00
|
|
|
printk(KERN_INFO DRVNAME ": driver loaded!\n");
|
2007-12-20 22:29:45 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2007-12-25 12:38:15 +00:00
|
|
|
static int
|
|
|
|
ifxmips_mii_remove(struct platform_device *dev)
|
2007-12-20 22:29:45 +00:00
|
|
|
{
|
2007-12-22 13:55:14 +00:00
|
|
|
struct switch_priv *priv = (struct switch_priv*)ifxmips_mii0_dev.priv;
|
2007-12-20 22:29:45 +00:00
|
|
|
|
2007-12-25 12:38:15 +00:00
|
|
|
printk(KERN_INFO DRVNAME ": ifxmips_mii0 cleanup\n");
|
2007-12-20 22:29:45 +00:00
|
|
|
|
|
|
|
dma_device_unregister(priv->dma_device);
|
|
|
|
dma_device_release(priv->dma_device);
|
|
|
|
kfree(priv->dma_device);
|
2007-12-22 13:55:14 +00:00
|
|
|
kfree(ifxmips_mii0_dev.priv);
|
|
|
|
unregister_netdev(&ifxmips_mii0_dev);
|
2007-12-20 22:29:45 +00:00
|
|
|
|
2007-12-25 12:38:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct
|
|
|
|
platform_driver ifxmips_mii_driver = {
|
|
|
|
.probe = ifxmips_mii_probe,
|
|
|
|
.remove = ifxmips_mii_remove,
|
|
|
|
.driver = {
|
|
|
|
.name = DRVNAME,
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
int __init
|
|
|
|
ifxmips_mii_init(void)
|
|
|
|
{
|
|
|
|
int ret = platform_driver_register(&ifxmips_mii_driver);
|
|
|
|
if (ret)
|
|
|
|
printk(KERN_INFO DRVNAME ": Error registering platfom driver!");
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit
|
|
|
|
ifxmips_mii_cleanup(void)
|
|
|
|
{
|
|
|
|
platform_driver_unregister(&ifxmips_mii_driver);
|
2007-12-20 22:29:45 +00:00
|
|
|
}
|
|
|
|
|
2007-12-25 12:38:15 +00:00
|
|
|
module_init(ifxmips_mii_init);
|
|
|
|
module_exit(ifxmips_mii_cleanup);
|