netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ben Hutchings <bhutchings@solarflare.com>
To: David Miller <davem@davemloft.net>
Cc: dsilvers@simtec.co.uk, netdev@vger.kernel.org
Subject: Re: [Patch] Micrel KS8695 integrated ethernet driver
Date: Tue, 09 Dec 2008 18:10:20 +0000	[thread overview]
Message-ID: <1228846221.3141.5.camel@achroite> (raw)
In-Reply-To: <1228843809.17317.34.camel@petitemort>

On Tue, 2008-12-09 at 17:30 +0000, Daniel Silverstone wrote:
[...]
> KS8695: Add support for the KS8695 ethernet devices.
> 
> Implements the KS8695 ethernet device (ks8695net).
> 
> This driver is only of use on the KS8695 which is an ARM9 based SoC. The
> documentation on this SoC is sparse and poor, with barely a register
> description and a rough outline of how the ethernet works, this driver was
> therefore written with strong reference to the Micrel supplied Linux 2.6.9
> port, and to Andrew Victor's ks8695eth driver.
> 
> Signed-off-by: Daniel Silverstone <dsilvers@simtec.co.uk>
> Signed-off-by: Vincent Sanders <vince@simtec.co.uk>
> Acked-by: Ben Dooks <ben@simtec.co.uk>
Reviewed-by: Ben Hutchings <bhutchings@solarflare.com>

>  Kconfig     |    8 
>  Makefile    |    1 
>  ks8695net.c | 1674 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  ks8695net.h |  107 +++
>  4 files changed, 1790 insertions(+)
> 
> Index: net-next-2.6/drivers/net/arm/Kconfig
> ===================================================================
> --- net-next-2.6.orig/drivers/net/arm/Kconfig   2008-12-08 12:55:46.817658739 +0000
> +++ net-next-2.6/drivers/net/arm/Kconfig        2008-12-08 12:56:10.213660241 +0000
> @@ -40,6 +40,14 @@
>           If you wish to compile a kernel for the AT91RM9200 and enable
>           ethernet support, then you should always answer Y to this.
>  
> +config ARM_KS8695_ETHER
> +       tristate "KS8695 Ethernet support"
> +       depends on ARM && ARCH_KS8695
> +       select MII
> +       help
> +         If you wish to compile a kernel for the KS8695 and want to
> +         use the internal ethernet then you should answer Y to this.
> +
>  config EP93XX_ETH
>         tristate "EP93xx Ethernet support"
>         depends on ARM && ARCH_EP93XX
> Index: net-next-2.6/drivers/net/arm/Makefile
> ===================================================================
> --- net-next-2.6.orig/drivers/net/arm/Makefile  2008-12-08 12:55:46.841662533 +0000
> +++ net-next-2.6/drivers/net/arm/Makefile       2008-12-08 12:56:10.213660241 +0000
> @@ -8,5 +8,6 @@
>  obj-$(CONFIG_ARM_ETHER3)       += ether3.o
>  obj-$(CONFIG_ARM_ETHER1)       += ether1.o
>  obj-$(CONFIG_ARM_AT91_ETHER)   += at91_ether.o
> +obj-$(CONFIG_ARM_KS8695_ETHER) += ks8695net.o
>  obj-$(CONFIG_EP93XX_ETH)       += ep93xx_eth.o
>  obj-$(CONFIG_IXP4XX_ETH)       += ixp4xx_eth.o
> Index: net-next-2.6/drivers/net/arm/ks8695net.c
> ===================================================================
> --- /dev/null   1970-01-01 00:00:00.000000000 +0000
> +++ net-next-2.6/drivers/net/arm/ks8695net.c    2008-12-09 17:26:28.469658828 +0000
> @@ -0,0 +1,1674 @@
> +/*
> + * Micrel KS8695 (Centaur) Ethernet.
> + *
> + * 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.
> + *
> + * Copyright 2008 Simtec Electronics
> + *               Daniel Silverstone <dsilvers@simtec.co.uk>
> + *               Vincent Sanders <vince@simtec.co.uk>
> + */
> +
> +#include <linux/module.h>
> +#include <linux/ioport.h>
> +#include <linux/netdevice.h>
> +#include <linux/etherdevice.h>
> +#include <linux/init.h>
> +#include <linux/skbuff.h>
> +#include <linux/spinlock.h>
> +#include <linux/crc32.h>
> +#include <linux/mii.h>
> +#include <linux/ethtool.h>
> +#include <linux/delay.h>
> +#include <linux/platform_device.h>
> +#include <linux/irq.h>
> +#include <linux/delay.h>
> +#include <linux/io.h>
> +
> +#include <asm/irq.h>
> +
> +#include <mach/regs-switch.h>
> +#include <mach/regs-misc.h>
> +
> +#include "ks8695net.h"
> +
> +#define MODULENAME     "ks8695_ether"
> +#define MODULEVERSION  "1.01"
[...]

-- 
Ben Hutchings, Senior Software Engineer, Solarflare Communications
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.


  reply	other threads:[~2008-12-09 18:10 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-05 15:06 [Patch] Micrel KS8695 intergrated ethernet driver Daniel Silverstone
2008-12-05 17:57 ` Ben Hutchings
2008-12-08 11:05   ` Daniel Silverstone
2008-12-08 15:17     ` Ben Hutchings
2008-12-08 20:29       ` David Miller
2008-12-09  8:57     ` Christoph Hellwig
2008-12-09  9:05       ` David Miller
2008-12-09  9:29         ` Daniel Silverstone
2008-12-13 19:07     ` Kalle Valo
2008-12-08 13:08   ` Daniel Silverstone
2008-12-09 17:00     ` Daniel Silverstone
     [not found]     ` <1228764912.3177.39.camel@achroite>
2008-12-09 17:30       ` [Patch] Micrel KS8695 integrated " Daniel Silverstone
2008-12-09 18:10         ` Ben Hutchings [this message]
2008-12-10  7:05         ` David Miller
2008-12-10 15:41           ` Daniel Silverstone
2008-12-12  5:01             ` David Miller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1228846221.3141.5.camel@achroite \
    --to=bhutchings@solarflare.com \
    --cc=davem@davemloft.net \
    --cc=dsilvers@simtec.co.uk \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).