2005-06-24 05:01:33 +00:00
|
|
|
/*
|
|
|
|
*
|
2008-12-04 17:21:20 +00:00
|
|
|
* arch/xtensa/platforms/iss/network.c
|
2005-06-24 05:01:33 +00:00
|
|
|
*
|
|
|
|
* Platform specific initialization.
|
|
|
|
*
|
|
|
|
* Authors: Chris Zankel <chris@zankel.net>
|
|
|
|
* Based on work form the UML team.
|
|
|
|
*
|
|
|
|
* Copyright 2005 Tensilica Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/timer.h>
|
|
|
|
#include <linux/if_ether.h>
|
|
|
|
#include <linux/inetdevice.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/if_tun.h>
|
|
|
|
#include <linux/etherdevice.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/ioctl.h>
|
|
|
|
#include <linux/bootmem.h>
|
|
|
|
#include <linux/ethtool.h>
|
|
|
|
#include <linux/rtnetlink.h>
|
2005-10-29 18:07:23 +00:00
|
|
|
#include <linux/platform_device.h>
|
2005-06-24 05:01:33 +00:00
|
|
|
|
2008-12-04 17:21:20 +00:00
|
|
|
#include <platform/simcall.h>
|
2005-06-24 05:01:33 +00:00
|
|
|
|
|
|
|
#define DRIVER_NAME "iss-netdev"
|
|
|
|
#define ETH_MAX_PACKET 1500
|
|
|
|
#define ETH_HEADER_OTHER 14
|
|
|
|
#define ISS_NET_TIMER_VALUE (2 * HZ)
|
|
|
|
|
|
|
|
|
|
|
|
static DEFINE_SPINLOCK(opened_lock);
|
|
|
|
static LIST_HEAD(opened);
|
|
|
|
|
|
|
|
static DEFINE_SPINLOCK(devices_lock);
|
|
|
|
static LIST_HEAD(devices);
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* We currently only support the TUNTAP transport protocol. */
|
|
|
|
|
|
|
|
#define TRANSPORT_TUNTAP_NAME "tuntap"
|
|
|
|
#define TRANSPORT_TUNTAP_MTU ETH_MAX_PACKET
|
|
|
|
|
|
|
|
struct tuntap_info {
|
|
|
|
char dev_name[IFNAMSIZ];
|
|
|
|
int fixed_config;
|
|
|
|
int fd;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/* This structure contains out private information for the driver. */
|
|
|
|
|
|
|
|
struct iss_net_private {
|
|
|
|
struct list_head device_list;
|
|
|
|
struct list_head opened_list;
|
|
|
|
|
|
|
|
spinlock_t lock;
|
|
|
|
struct net_device *dev;
|
|
|
|
struct platform_device pdev;
|
|
|
|
struct timer_list tl;
|
|
|
|
struct net_device_stats stats;
|
|
|
|
|
|
|
|
struct timer_list timer;
|
|
|
|
unsigned int timer_val;
|
|
|
|
|
|
|
|
int index;
|
|
|
|
int mtu;
|
|
|
|
|
|
|
|
unsigned char mac[ETH_ALEN];
|
|
|
|
int have_mac;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
union {
|
|
|
|
struct tuntap_info tuntap;
|
|
|
|
} info;
|
|
|
|
|
|
|
|
int (*open)(struct iss_net_private *lp);
|
|
|
|
void (*close)(struct iss_net_private *lp);
|
|
|
|
int (*read)(struct iss_net_private *lp, struct sk_buff **skb);
|
|
|
|
int (*write)(struct iss_net_private *lp, struct sk_buff **skb);
|
|
|
|
unsigned short (*protocol)(struct sk_buff *skb);
|
|
|
|
int (*poll)(struct iss_net_private *lp);
|
|
|
|
} tp;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ================================ HELPERS ================================ */
|
|
|
|
|
|
|
|
|
|
|
|
static char *split_if_spec(char *str, ...)
|
|
|
|
{
|
|
|
|
char **arg, *end;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, str);
|
|
|
|
while ((arg = va_arg(ap, char**)) != NULL) {
|
|
|
|
if (*str == '\0')
|
|
|
|
return NULL;
|
|
|
|
end = strchr(str, ',');
|
|
|
|
if (end != str)
|
|
|
|
*arg = str;
|
|
|
|
if (end == NULL)
|
|
|
|
return NULL;
|
2013-11-10 12:05:44 +00:00
|
|
|
*end++ = '\0';
|
2005-06-24 05:01:33 +00:00
|
|
|
str = end;
|
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Return the IP address as a string for a given device. */
|
|
|
|
|
|
|
|
static void dev_ip_addr(void *d, char *buf, char *bin_buf)
|
|
|
|
{
|
|
|
|
struct net_device *dev = d;
|
|
|
|
struct in_device *ip = dev->ip_ptr;
|
|
|
|
struct in_ifaddr *in;
|
2006-09-29 01:00:55 +00:00
|
|
|
__be32 addr;
|
2005-06-24 05:01:33 +00:00
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
if (ip == NULL || ip->ifa_list == NULL) {
|
|
|
|
pr_warn("Device not assigned an IP address!\n");
|
2005-06-24 05:01:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
in = ip->ifa_list;
|
|
|
|
|
2005-06-24 05:01:33 +00:00
|
|
|
addr = in->ifa_address;
|
|
|
|
sprintf(buf, "%d.%d.%d.%d", addr & 0xff, (addr >> 8) & 0xff,
|
|
|
|
(addr >> 16) & 0xff, addr >> 24);
|
|
|
|
|
|
|
|
if (bin_buf) {
|
|
|
|
bin_buf[0] = addr & 0xff;
|
|
|
|
bin_buf[1] = (addr >> 8) & 0xff;
|
|
|
|
bin_buf[2] = (addr >> 16) & 0xff;
|
|
|
|
bin_buf[3] = addr >> 24;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set Ethernet address of the specified device. */
|
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
static inline void set_ether_mac(void *d, unsigned char *addr)
|
2005-06-24 05:01:33 +00:00
|
|
|
{
|
|
|
|
struct net_device *dev = d;
|
|
|
|
memcpy(dev->dev_addr, addr, ETH_ALEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ======================= TUNTAP TRANSPORT INTERFACE ====================== */
|
|
|
|
|
|
|
|
static int tuntap_open(struct iss_net_private *lp)
|
|
|
|
{
|
|
|
|
struct ifreq ifr;
|
|
|
|
char *dev_name = lp->tp.info.tuntap.dev_name;
|
|
|
|
int err = -EINVAL;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
/* We currently only support a fixed configuration. */
|
|
|
|
|
|
|
|
if (!lp->tp.info.tuntap.fixed_config)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
fd = simc_open("/dev/net/tun", 02, 0); /* O_RDWR */
|
|
|
|
if (fd < 0) {
|
|
|
|
pr_err("Failed to open /dev/net/tun, returned %d (errno = %d)\n",
|
|
|
|
fd, errno);
|
2005-06-24 05:01:33 +00:00
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
memset(&ifr, 0, sizeof(ifr));
|
2005-06-24 05:01:33 +00:00
|
|
|
ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
|
2013-11-10 12:05:44 +00:00
|
|
|
strlcpy(ifr.ifr_name, dev_name, sizeof(ifr.ifr_name));
|
2005-06-24 05:01:33 +00:00
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
err = simc_ioctl(fd, TUNSETIFF, &ifr);
|
|
|
|
if (err < 0) {
|
|
|
|
pr_err("Failed to set interface, returned %d (errno = %d)\n",
|
|
|
|
err, errno);
|
2005-06-24 05:01:33 +00:00
|
|
|
simc_close(fd);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
lp->tp.info.tuntap.fd = fd;
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tuntap_close(struct iss_net_private *lp)
|
|
|
|
{
|
|
|
|
simc_close(lp->tp.info.tuntap.fd);
|
|
|
|
lp->tp.info.tuntap.fd = -1;
|
|
|
|
}
|
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
static int tuntap_read(struct iss_net_private *lp, struct sk_buff **skb)
|
2005-06-24 05:01:33 +00:00
|
|
|
{
|
|
|
|
return simc_read(lp->tp.info.tuntap.fd,
|
|
|
|
(*skb)->data, (*skb)->dev->mtu + ETH_HEADER_OTHER);
|
|
|
|
}
|
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
static int tuntap_write(struct iss_net_private *lp, struct sk_buff **skb)
|
2005-06-24 05:01:33 +00:00
|
|
|
{
|
|
|
|
return simc_write(lp->tp.info.tuntap.fd, (*skb)->data, (*skb)->len);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned short tuntap_protocol(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
return eth_type_trans(skb, skb->dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tuntap_poll(struct iss_net_private *lp)
|
|
|
|
{
|
|
|
|
return simc_poll(lp->tp.info.tuntap.fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Currently only a device name is supported.
|
|
|
|
* ethX=tuntap[,[mac address][,[device name]]]
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int tuntap_probe(struct iss_net_private *lp, int index, char *init)
|
|
|
|
{
|
|
|
|
char *dev_name = NULL, *mac_str = NULL, *rem = NULL;
|
|
|
|
|
|
|
|
/* Transport should be 'tuntap': ethX=tuntap,mac,dev_name */
|
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
if (strncmp(init, TRANSPORT_TUNTAP_NAME,
|
|
|
|
sizeof(TRANSPORT_TUNTAP_NAME) - 1))
|
2005-06-24 05:01:33 +00:00
|
|
|
return 0;
|
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
init += sizeof(TRANSPORT_TUNTAP_NAME) - 1;
|
|
|
|
if (*init == ',') {
|
|
|
|
rem = split_if_spec(init + 1, &mac_str, &dev_name);
|
|
|
|
if (rem != NULL) {
|
|
|
|
pr_err("Extra garbage on specification : '%s'\n", rem);
|
2005-06-24 05:01:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else if (*init != '\0') {
|
2013-11-10 12:05:44 +00:00
|
|
|
pr_err("Invalid argument: %s. Skipping device!\n", init);
|
2005-06-24 05:01:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dev_name) {
|
2013-11-10 12:05:44 +00:00
|
|
|
strlcpy(lp->tp.info.tuntap.dev_name, dev_name,
|
|
|
|
sizeof(lp->tp.info.tuntap.dev_name));
|
2005-06-24 05:01:33 +00:00
|
|
|
lp->tp.info.tuntap.fixed_config = 1;
|
|
|
|
} else
|
|
|
|
strcpy(lp->tp.info.tuntap.dev_name, TRANSPORT_TUNTAP_NAME);
|
|
|
|
|
|
|
|
|
|
|
|
lp->mtu = TRANSPORT_TUNTAP_MTU;
|
|
|
|
|
|
|
|
lp->tp.info.tuntap.fd = -1;
|
|
|
|
|
|
|
|
lp->tp.open = tuntap_open;
|
|
|
|
lp->tp.close = tuntap_close;
|
|
|
|
lp->tp.read = tuntap_read;
|
|
|
|
lp->tp.write = tuntap_write;
|
|
|
|
lp->tp.protocol = tuntap_protocol;
|
|
|
|
lp->tp.poll = tuntap_poll;
|
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
pr_info("TUN/TAP backend -\n");
|
2005-06-24 05:01:33 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ================================ ISS NET ================================ */
|
|
|
|
|
|
|
|
static int iss_net_rx(struct net_device *dev)
|
|
|
|
{
|
2008-12-04 23:06:56 +00:00
|
|
|
struct iss_net_private *lp = netdev_priv(dev);
|
2005-06-24 05:01:33 +00:00
|
|
|
int pkt_len;
|
|
|
|
struct sk_buff *skb;
|
|
|
|
|
|
|
|
/* Check if there is any new data. */
|
|
|
|
|
|
|
|
if (lp->tp.poll(lp) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Try to allocate memory, if it fails, try again next round. */
|
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
skb = dev_alloc_skb(dev->mtu + 2 + ETH_HEADER_OTHER);
|
|
|
|
if (skb == NULL) {
|
2005-06-24 05:01:33 +00:00
|
|
|
lp->stats.rx_dropped++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
skb_reserve(skb, 2);
|
|
|
|
|
|
|
|
/* Setup skb */
|
|
|
|
|
|
|
|
skb->dev = dev;
|
2007-03-19 22:30:44 +00:00
|
|
|
skb_reset_mac_header(skb);
|
2005-06-24 05:01:33 +00:00
|
|
|
pkt_len = lp->tp.read(lp, &skb);
|
|
|
|
skb_put(skb, pkt_len);
|
|
|
|
|
|
|
|
if (pkt_len > 0) {
|
|
|
|
skb_trim(skb, pkt_len);
|
|
|
|
skb->protocol = lp->tp.protocol(skb);
|
|
|
|
|
|
|
|
lp->stats.rx_bytes += skb->len;
|
|
|
|
lp->stats.rx_packets++;
|
2007-12-11 01:16:56 +00:00
|
|
|
netif_rx_ni(skb);
|
2005-06-24 05:01:33 +00:00
|
|
|
return pkt_len;
|
|
|
|
}
|
|
|
|
kfree_skb(skb);
|
|
|
|
return pkt_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int iss_net_poll(void)
|
|
|
|
{
|
|
|
|
struct list_head *ele;
|
|
|
|
int err, ret = 0;
|
|
|
|
|
|
|
|
spin_lock(&opened_lock);
|
|
|
|
|
|
|
|
list_for_each(ele, &opened) {
|
|
|
|
struct iss_net_private *lp;
|
|
|
|
|
|
|
|
lp = list_entry(ele, struct iss_net_private, opened_list);
|
|
|
|
|
|
|
|
if (!netif_running(lp->dev))
|
|
|
|
break;
|
|
|
|
|
|
|
|
spin_lock(&lp->lock);
|
|
|
|
|
|
|
|
while ((err = iss_net_rx(lp->dev)) > 0)
|
|
|
|
ret++;
|
|
|
|
|
|
|
|
spin_unlock(&lp->lock);
|
|
|
|
|
|
|
|
if (err < 0) {
|
2013-11-10 12:05:44 +00:00
|
|
|
pr_err("Device '%s' read returned %d, shutting it down\n",
|
|
|
|
lp->dev->name, err);
|
2005-06-24 05:01:33 +00:00
|
|
|
dev_close(lp->dev);
|
|
|
|
} else {
|
2013-11-10 12:05:44 +00:00
|
|
|
/* FIXME reactivate_fd(lp->fd, ISS_ETH_IRQ); */
|
2005-06-24 05:01:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_unlock(&opened_lock);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void iss_net_timer(unsigned long priv)
|
|
|
|
{
|
2013-11-10 12:05:44 +00:00
|
|
|
struct iss_net_private *lp = (struct iss_net_private *)priv;
|
2005-06-24 05:01:33 +00:00
|
|
|
|
|
|
|
spin_lock(&lp->lock);
|
|
|
|
iss_net_poll();
|
|
|
|
mod_timer(&lp->timer, jiffies + lp->timer_val);
|
|
|
|
spin_unlock(&lp->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int iss_net_open(struct net_device *dev)
|
|
|
|
{
|
2008-12-04 23:06:56 +00:00
|
|
|
struct iss_net_private *lp = netdev_priv(dev);
|
2013-11-10 12:05:44 +00:00
|
|
|
char addr[sizeof("255.255.255.255\0")];
|
2005-06-24 05:01:33 +00:00
|
|
|
int err;
|
|
|
|
|
|
|
|
spin_lock(&lp->lock);
|
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
err = lp->tp.open(lp);
|
|
|
|
if (err < 0)
|
2005-06-24 05:01:33 +00:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (!lp->have_mac) {
|
|
|
|
dev_ip_addr(dev, addr, &lp->mac[2]);
|
|
|
|
set_ether_mac(dev, lp->mac);
|
|
|
|
}
|
|
|
|
|
|
|
|
netif_start_queue(dev);
|
|
|
|
|
|
|
|
/* clear buffer - it can happen that the host side of the interface
|
2007-06-01 00:43:40 +00:00
|
|
|
* is full when we get here. In this case, new data is never queued,
|
2005-06-24 05:01:33 +00:00
|
|
|
* SIGIOs never arrive, and the net never works.
|
|
|
|
*/
|
|
|
|
while ((err = iss_net_rx(dev)) > 0)
|
|
|
|
;
|
|
|
|
|
|
|
|
spin_lock(&opened_lock);
|
|
|
|
list_add(&lp->opened_list, &opened);
|
|
|
|
spin_unlock(&opened_lock);
|
|
|
|
|
|
|
|
init_timer(&lp->timer);
|
|
|
|
lp->timer_val = ISS_NET_TIMER_VALUE;
|
|
|
|
lp->timer.data = (unsigned long) lp;
|
|
|
|
lp->timer.function = iss_net_timer;
|
|
|
|
mod_timer(&lp->timer, jiffies + lp->timer_val);
|
|
|
|
|
|
|
|
out:
|
|
|
|
spin_unlock(&lp->lock);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int iss_net_close(struct net_device *dev)
|
|
|
|
{
|
2008-12-04 23:06:56 +00:00
|
|
|
struct iss_net_private *lp = netdev_priv(dev);
|
2005-06-24 05:01:33 +00:00
|
|
|
netif_stop_queue(dev);
|
|
|
|
spin_lock(&lp->lock);
|
|
|
|
|
|
|
|
spin_lock(&opened_lock);
|
|
|
|
list_del(&opened);
|
|
|
|
spin_unlock(&opened_lock);
|
|
|
|
|
|
|
|
del_timer_sync(&lp->timer);
|
|
|
|
|
|
|
|
lp->tp.close(lp);
|
|
|
|
|
|
|
|
spin_unlock(&lp->lock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int iss_net_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
|
|
|
{
|
2008-12-04 23:06:56 +00:00
|
|
|
struct iss_net_private *lp = netdev_priv(dev);
|
2005-06-24 05:01:33 +00:00
|
|
|
unsigned long flags;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
netif_stop_queue(dev);
|
|
|
|
spin_lock_irqsave(&lp->lock, flags);
|
|
|
|
|
|
|
|
len = lp->tp.write(lp, &skb);
|
|
|
|
|
|
|
|
if (len == skb->len) {
|
|
|
|
lp->stats.tx_packets++;
|
|
|
|
lp->stats.tx_bytes += skb->len;
|
|
|
|
dev->trans_start = jiffies;
|
|
|
|
netif_start_queue(dev);
|
|
|
|
|
|
|
|
/* this is normally done in the interrupt when tx finishes */
|
|
|
|
netif_wake_queue(dev);
|
|
|
|
|
|
|
|
} else if (len == 0) {
|
|
|
|
netif_start_queue(dev);
|
|
|
|
lp->stats.tx_dropped++;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
netif_start_queue(dev);
|
2013-11-10 12:05:44 +00:00
|
|
|
pr_err("iss_net_start_xmit: failed(%d)\n", len);
|
2005-06-24 05:01:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&lp->lock, flags);
|
|
|
|
|
|
|
|
dev_kfree_skb(skb);
|
2009-07-06 02:23:38 +00:00
|
|
|
return NETDEV_TX_OK;
|
2005-06-24 05:01:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct net_device_stats *iss_net_get_stats(struct net_device *dev)
|
|
|
|
{
|
2008-12-04 23:06:56 +00:00
|
|
|
struct iss_net_private *lp = netdev_priv(dev);
|
2005-06-24 05:01:33 +00:00
|
|
|
return &lp->stats;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void iss_net_set_multicast_list(struct net_device *dev)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void iss_net_tx_timeout(struct net_device *dev)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static int iss_net_set_mac(struct net_device *dev, void *addr)
|
|
|
|
{
|
|
|
|
#if 0
|
2008-12-04 23:06:56 +00:00
|
|
|
struct iss_net_private *lp = netdev_priv(dev);
|
2005-06-24 05:01:33 +00:00
|
|
|
struct sockaddr *hwaddr = addr;
|
|
|
|
|
|
|
|
spin_lock(&lp->lock);
|
|
|
|
memcpy(dev->dev_addr, hwaddr->sa_data, ETH_ALEN);
|
|
|
|
spin_unlock(&lp->lock);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int iss_net_change_mtu(struct net_device *dev, int new_mtu)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void iss_net_user_timer_expire(unsigned long _conn)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-09 22:32:44 +00:00
|
|
|
static struct platform_driver iss_net_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = DRIVER_NAME,
|
|
|
|
},
|
2005-06-24 05:01:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int driver_registered;
|
|
|
|
|
2010-05-02 15:37:20 +00:00
|
|
|
static const struct net_device_ops iss_netdev_ops = {
|
|
|
|
.ndo_open = iss_net_open,
|
|
|
|
.ndo_stop = iss_net_close,
|
|
|
|
.ndo_get_stats = iss_net_get_stats,
|
|
|
|
.ndo_start_xmit = iss_net_start_xmit,
|
|
|
|
.ndo_validate_addr = eth_validate_addr,
|
|
|
|
.ndo_change_mtu = iss_net_change_mtu,
|
|
|
|
.ndo_set_mac_address = iss_net_set_mac,
|
|
|
|
.ndo_tx_timeout = iss_net_tx_timeout,
|
2011-08-16 06:29:01 +00:00
|
|
|
.ndo_set_rx_mode = iss_net_set_multicast_list,
|
2010-05-02 15:37:20 +00:00
|
|
|
};
|
|
|
|
|
2005-06-24 05:01:33 +00:00
|
|
|
static int iss_net_configure(int index, char *init)
|
|
|
|
{
|
|
|
|
struct net_device *dev;
|
|
|
|
struct iss_net_private *lp;
|
|
|
|
int err;
|
|
|
|
|
2013-11-10 12:05:44 +00:00
|
|
|
dev = alloc_etherdev(sizeof(*lp));
|
|
|
|
if (dev == NULL) {
|
|
|
|
pr_err("eth_configure: failed to allocate device\n");
|
2005-06-24 05:01:33 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize private element. */
|
|
|
|
|
2008-12-04 23:06:56 +00:00
|
|
|
lp = netdev_priv(dev);
|
2013-11-10 12:05:44 +00:00
|
|
|
*lp = (struct iss_net_private) {
|
2005-06-24 05:01:33 +00:00
|
|
|
.device_list = LIST_HEAD_INIT(lp->device_list),
|
|
|
|
.opened_list = LIST_HEAD_INIT(lp->opened_list),
|
2008-07-30 19:48:55 +00:00
|
|
|
.lock = __SPIN_LOCK_UNLOCKED(lp.lock),
|
2005-06-24 05:01:33 +00:00
|
|
|
.dev = dev,
|
|
|
|
.index = index,
|
|
|
|
.mac = { 0xfe, 0xfd, 0x0, 0x0, 0x0, 0x0 },
|
|
|
|
.have_mac = 0,
|
2013-11-10 12:05:44 +00:00
|
|
|
};
|
2005-06-24 05:01:33 +00:00
|
|
|
|
2013-11-10 12:05:46 +00:00
|
|
|
/*
|
|
|
|
* If this name ends up conflicting with an existing registered
|
|
|
|
* netdevice, that is OK, register_netdev{,ice}() will notice this
|
|
|
|
* and fail.
|
|
|
|
*/
|
|
|
|
snprintf(dev->name, sizeof(dev->name), "eth%d", index);
|
|
|
|
|
2005-06-24 05:01:33 +00:00
|
|
|
/*
|
|
|
|
* Try all transport protocols.
|
|
|
|
* Note: more protocols can be added by adding '&& !X_init(lp, eth)'.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!tuntap_probe(lp, index, init)) {
|
2013-11-10 12:05:44 +00:00
|
|
|
pr_err("Invalid arguments. Skipping device!\n");
|
2005-06-24 05:01:33 +00:00
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
printk(KERN_INFO "Netdevice %d ", index);
|
|
|
|
if (lp->have_mac)
|
2008-10-28 00:47:26 +00:00
|
|
|
printk("(%pM) ", lp->mac);
|
2005-06-24 05:01:33 +00:00
|
|
|
printk(": ");
|
|
|
|
|
|
|
|
/* sysfs register */
|
|
|
|
|
|
|
|
if (!driver_registered) {
|
2005-11-09 22:32:44 +00:00
|
|
|
platform_driver_register(&iss_net_driver);
|
2005-06-24 05:01:33 +00:00
|
|
|
driver_registered = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_lock(&devices_lock);
|
|
|
|
list_add(&lp->device_list, &devices);
|
|
|
|
spin_unlock(&devices_lock);
|
|
|
|
|
|
|
|
lp->pdev.id = index;
|
|
|
|
lp->pdev.name = DRIVER_NAME;
|
|
|
|
platform_device_register(&lp->pdev);
|
2013-11-10 12:05:44 +00:00
|
|
|
SET_NETDEV_DEV(dev, &lp->pdev.dev);
|
2005-06-24 05:01:33 +00:00
|
|
|
|
2010-05-02 15:37:20 +00:00
|
|
|
dev->netdev_ops = &iss_netdev_ops;
|
2005-06-24 05:01:33 +00:00
|
|
|
dev->mtu = lp->mtu;
|
|
|
|
dev->watchdog_timeo = (HZ >> 1);
|
|
|
|
dev->irq = -1;
|
|
|
|
|
|
|
|
rtnl_lock();
|
|
|
|
err = register_netdevice(dev);
|
|
|
|
rtnl_unlock();
|
|
|
|
|
|
|
|
if (err) {
|
2013-11-10 12:05:44 +00:00
|
|
|
pr_err("Error registering net device!\n");
|
2005-06-24 05:01:33 +00:00
|
|
|
/* XXX: should we call ->remove() here? */
|
|
|
|
free_netdev(dev);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
init_timer(&lp->tl);
|
|
|
|
lp->tl.function = iss_net_user_timer_expire;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
errout:
|
2013-11-10 12:05:44 +00:00
|
|
|
/* FIXME: unregister; free, etc.. */
|
2005-06-24 05:01:33 +00:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* Filled in during early boot */
|
|
|
|
|
|
|
|
struct list_head eth_cmd_line = LIST_HEAD_INIT(eth_cmd_line);
|
|
|
|
|
|
|
|
struct iss_net_init {
|
|
|
|
struct list_head list;
|
|
|
|
char *init; /* init string */
|
|
|
|
int index;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse the command line and look for 'ethX=...' fields, and register all
|
|
|
|
* those fields. They will be later initialized in iss_net_init.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ERR KERN_ERR "iss_net_setup: "
|
|
|
|
|
2013-05-27 14:58:24 +00:00
|
|
|
static int __init iss_net_setup(char *str)
|
2005-06-24 05:01:33 +00:00
|
|
|
{
|
|
|
|
struct iss_net_private *device = NULL;
|
|
|
|
struct iss_net_init *new;
|
|
|
|
struct list_head *ele;
|
|
|
|
char *end;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
n = simple_strtoul(str, &end, 0);
|
|
|
|
if (end == str) {
|
|
|
|
printk(ERR "Failed to parse '%s'\n", str);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (n < 0) {
|
|
|
|
printk(ERR "Device %d is negative\n", n);
|
|
|
|
return 1;
|
|
|
|
}
|
2013-11-10 12:05:44 +00:00
|
|
|
str = end;
|
|
|
|
if (*str != '=') {
|
2005-06-24 05:01:33 +00:00
|
|
|
printk(ERR "Expected '=' after device number\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_lock(&devices_lock);
|
|
|
|
|
|
|
|
list_for_each(ele, &devices) {
|
|
|
|
device = list_entry(ele, struct iss_net_private, device_list);
|
|
|
|
if (device->index == n)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_unlock(&devices_lock);
|
|
|
|
|
|
|
|
if (device && device->index == n) {
|
|
|
|
printk(ERR "Device %d already configured\n", n);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-09-19 21:42:22 +00:00
|
|
|
new = alloc_bootmem(sizeof(*new));
|
|
|
|
if (new == NULL) {
|
2013-11-10 12:05:44 +00:00
|
|
|
printk(ERR "Alloc_bootmem failed\n");
|
2005-06-24 05:01:33 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&new->list);
|
|
|
|
new->index = n;
|
|
|
|
new->init = str + 1;
|
|
|
|
|
|
|
|
list_add_tail(&new->list, ð_cmd_line);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef ERR
|
|
|
|
|
2013-11-10 12:05:45 +00:00
|
|
|
__setup("eth", iss_net_setup);
|
2005-06-24 05:01:33 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize all ISS Ethernet devices previously registered in iss_net_setup.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int iss_net_init(void)
|
|
|
|
{
|
|
|
|
struct list_head *ele, *next;
|
|
|
|
|
|
|
|
/* Walk through all Ethernet devices specified in the command line. */
|
|
|
|
|
|
|
|
list_for_each_safe(ele, next, ð_cmd_line) {
|
|
|
|
struct iss_net_init *eth;
|
|
|
|
eth = list_entry(ele, struct iss_net_init, list);
|
|
|
|
iss_net_configure(eth->index, eth->init);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(iss_net_init);
|
|
|
|
|