netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] add support for smc91x ethernet interface on zylonite
@ 2007-11-06  0:45 eric miao
  2007-11-06  3:37 ` Nicolas Pitre
  2007-11-06 17:41 ` Jeff Garzik
  0 siblings, 2 replies; 3+ messages in thread
From: eric miao @ 2007-11-06  0:45 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: netdev, Nicolas Pitre

>From 9363662844b6373ddf4265e7007eb29ff963a377 Mon Sep 17 00:00:00 2001
From: eric miao <eric.miao@marvell.com>
Date: Tue, 30 Oct 2007 09:48:41 +0800
Subject: [PATCH] add support for smc91x ethernet interface on zylonite

This patch adds LAN91C111 ethernet interface support for zylonite
(a.k.a Marvell's PXA3xx Development Platform) with smc91x driver.

It would be better if a patch would support zylonite along with all
other PXA boards with a single binary of smc91x driver, but it looks
quite difficult for the moment, so ugly #ifdef is still used here.

Signed-off-by: Aleksey Makarov <amakarov@ru.mvista.com>
Acked-by: eric miao <eric.miao@marvell.com>
---
 drivers/net/smc91x.h |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/drivers/net/smc91x.h b/drivers/net/smc91x.h
index 729fd28..db34e1e 100644
--- a/drivers/net/smc91x.h
+++ b/drivers/net/smc91x.h
@@ -224,6 +224,21 @@ SMC_outw(u16 val, void __iomem *ioaddr, int reg)
 	}
 }

+#elif defined(CONFIG_MACH_ZYLONITE)
+
+#define SMC_CAN_USE_8BIT        1
+#define SMC_CAN_USE_16BIT       1
+#define SMC_CAN_USE_32BIT       0
+#define SMC_IO_SHIFT            0
+#define SMC_NOWAIT              1
+#define SMC_USE_PXA_DMA		1
+#define SMC_inb(a, r)           readb((a) + (r))
+#define SMC_inw(a, r)           readw((a) + (r))
+#define SMC_insw(a, r, p, l)    insw((a) + (r), p, l)
+#define SMC_outsw(a, r, p, l)   outsw((a) + (r), p, l)
+#define SMC_outb(v, a, r)       writeb(v, (a) + (r))
+#define SMC_outw(v, a, r)       writew(v, (a) + (r))
+
 #elif	defined(CONFIG_ARCH_OMAP)

 /* We can only do 16-bit reads and writes in the static memory space. */
-- 
1.5.2.5.GIT

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] add support for smc91x ethernet interface on zylonite
  2007-11-06  0:45 [PATCH] add support for smc91x ethernet interface on zylonite eric miao
@ 2007-11-06  3:37 ` Nicolas Pitre
  2007-11-06 17:41 ` Jeff Garzik
  1 sibling, 0 replies; 3+ messages in thread
From: Nicolas Pitre @ 2007-11-06  3:37 UTC (permalink / raw)
  To: eric miao; +Cc: Jeff Garzik, netdev

On Tue, 6 Nov 2007, eric miao wrote:

> >From 9363662844b6373ddf4265e7007eb29ff963a377 Mon Sep 17 00:00:00 2001
> From: eric miao <eric.miao@marvell.com>

According to the SOB line below, shouldn't this be:
From: Aleksey Makarov <amakarov@ru.mvista.com>
?

> Date: Tue, 30 Oct 2007 09:48:41 +0800
> Subject: [PATCH] add support for smc91x ethernet interface on zylonite
> 
> This patch adds LAN91C111 ethernet interface support for zylonite
> (a.k.a Marvell's PXA3xx Development Platform) with smc91x driver.
> 
> It would be better if a patch would support zylonite along with all
> other PXA boards with a single binary of smc91x driver, but it looks
> quite difficult for the moment, so ugly #ifdef is still used here.
> 
> Signed-off-by: Aleksey Makarov <amakarov@ru.mvista.com>
> Acked-by: eric miao <eric.miao@marvell.com>

Acked-by: Nicolas Pitre <nico@cam.org>

> ---
>  drivers/net/smc91x.h |   15 +++++++++++++++
>  1 files changed, 15 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/net/smc91x.h b/drivers/net/smc91x.h
> index 729fd28..db34e1e 100644
> --- a/drivers/net/smc91x.h
> +++ b/drivers/net/smc91x.h
> @@ -224,6 +224,21 @@ SMC_outw(u16 val, void __iomem *ioaddr, int reg)
>  	}
>  }
> 
> +#elif defined(CONFIG_MACH_ZYLONITE)
> +
> +#define SMC_CAN_USE_8BIT        1
> +#define SMC_CAN_USE_16BIT       1
> +#define SMC_CAN_USE_32BIT       0
> +#define SMC_IO_SHIFT            0
> +#define SMC_NOWAIT              1
> +#define SMC_USE_PXA_DMA		1
> +#define SMC_inb(a, r)           readb((a) + (r))
> +#define SMC_inw(a, r)           readw((a) + (r))
> +#define SMC_insw(a, r, p, l)    insw((a) + (r), p, l)
> +#define SMC_outsw(a, r, p, l)   outsw((a) + (r), p, l)
> +#define SMC_outb(v, a, r)       writeb(v, (a) + (r))
> +#define SMC_outw(v, a, r)       writew(v, (a) + (r))
> +
>  #elif	defined(CONFIG_ARCH_OMAP)
> 
>  /* We can only do 16-bit reads and writes in the static memory space. */
> -- 
> 1.5.2.5.GIT
> 


Nicolas

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] add support for smc91x ethernet interface on zylonite
  2007-11-06  0:45 [PATCH] add support for smc91x ethernet interface on zylonite eric miao
  2007-11-06  3:37 ` Nicolas Pitre
@ 2007-11-06 17:41 ` Jeff Garzik
  1 sibling, 0 replies; 3+ messages in thread
From: Jeff Garzik @ 2007-11-06 17:41 UTC (permalink / raw)
  To: eric miao; +Cc: netdev, Nicolas Pitre

eric miao wrote:
>>From 9363662844b6373ddf4265e7007eb29ff963a377 Mon Sep 17 00:00:00 2001
> From: eric miao <eric.miao@marvell.com>
> Date: Tue, 30 Oct 2007 09:48:41 +0800
> Subject: [PATCH] add support for smc91x ethernet interface on zylonite
> 
> This patch adds LAN91C111 ethernet interface support for zylonite
> (a.k.a Marvell's PXA3xx Development Platform) with smc91x driver.
> 
> It would be better if a patch would support zylonite along with all
> other PXA boards with a single binary of smc91x driver, but it looks
> quite difficult for the moment, so ugly #ifdef is still used here.
> 
> Signed-off-by: Aleksey Makarov <amakarov@ru.mvista.com>
> Acked-by: eric miao <eric.miao@marvell.com>
> ---
>  drivers/net/smc91x.h |   15 +++++++++++++++
>  1 files changed, 15 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/net/smc91x.h b/drivers/net/smc91x.h
> index 729fd28..db34e1e 100644
> --- a/drivers/net/smc91x.h
> +++ b/drivers/net/smc91x.h
> @@ -224,6 +224,21 @@ SMC_outw(u16 val, void __iomem *ioaddr, int reg)
>  	}
>  }
> 
> +#elif defined(CONFIG_MACH_ZYLONITE)
> +
> +#define SMC_CAN_USE_8BIT        1
> +#define SMC_CAN_USE_16BIT       1
> +#define SMC_CAN_USE_32BIT       0
> +#define SMC_IO_SHIFT            0
> +#define SMC_NOWAIT              1
> +#define SMC_USE_PXA_DMA		1
> +#define SMC_inb(a, r)           readb((a) + (r))
> +#define SMC_inw(a, r)           readw((a) + (r))
> +#define SMC_insw(a, r, p, l)    insw((a) + (r), p, l)
> +#define SMC_outsw(a, r, p, l)   outsw((a) + (r), p, l)
> +#define SMC_outb(v, a, r)       writeb(v, (a) + (r))
> +#define SMC_outw(v, a, r)       writew(v, (a) + (r))
> +
>  #elif	defined(CONFIG_ARCH_OMAP)

applied



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-11-06 17:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-06  0:45 [PATCH] add support for smc91x ethernet interface on zylonite eric miao
2007-11-06  3:37 ` Nicolas Pitre
2007-11-06 17:41 ` Jeff Garzik

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).