* [PATCH 01/04] Freescale Ethernet combined driver
@ 2005-05-09 11:44 Pantelis Antoniou
2005-05-09 17:26 ` Kumar Gala
0 siblings, 1 reply; 3+ messages in thread
From: Pantelis Antoniou @ 2005-05-09 11:44 UTC (permalink / raw)
To: Dan Malek, Kumar Gala, Eugene Surovegin, Vitaly Bordug, Tom Rini,
Marcelo Tosatti, Jason McMullan, linuxppc-embedded
[-- Attachment #1: Type: text/plain, Size: 275 bytes --]
Hi
The following patch is a combined FCC/FEC ethernet driver
for the Freescale line of PowerQUICCs.
FECs on 8xx and FCCs on 82xx are supported.
This part of the patch contains makefiles and friends.
Regards
Pantelis
Signed-off-by: Pantelis Antoniou <panto@intracom.gr>
[-- Attachment #2: fs_enet-01.patch --]
[-- Type: text/x-patch, Size: 1319 bytes --]
--- linux-2.6.11.7-fs_enet.orig/drivers/net/Kconfig
+++ linux-2.6.11.7-fs_enet/drivers/net/Kconfig
@@ -1810,6 +1810,7 @@ config NE_H8300
controller on the Renesas H8/300 processor.
source "drivers/net/fec_8xx/Kconfig"
+source "drivers/net/fs_enet/Kconfig"
endmenu
--- linux-2.6.11.7-fs_enet.orig/drivers/net/Makefile
+++ linux-2.6.11.7-fs_enet/drivers/net/Makefile
@@ -182,6 +182,7 @@ obj-$(CONFIG_IBMVETH) += ibmveth.o
obj-$(CONFIG_S2IO) += s2io.o
obj-$(CONFIG_SMC91X) += smc91x.o
obj-$(CONFIG_FEC_8XX) += fec_8xx/
+obj-$(CONFIG_FS_ENET) += fs_enet/
obj-$(CONFIG_ARM) += arm/
obj-$(CONFIG_NET_FC) += fc/
@@ -197,3 +198,6 @@ obj-$(CONFIG_IRDA) += irda/
obj-$(CONFIG_ETRAX_ETHERNET) += cris/
obj-$(CONFIG_NETCONSOLE) += netconsole.o
+
+obj-$(CONFIG_FS_ENET) += fs_enet/ mii.o
+
--- /dev/null
+++ linux-2.6.11.7-fs_enet/drivers/net/fs_enet/Kconfig
@@ -0,0 +1,4 @@
+config FS_ENET
+ tristate "Freescale Ethernet Driver"
+ depends on NET_ETHERNET && (8xx || 8260)
+ select MII
--- /dev/null
+++ linux-2.6.11.7-fs_enet/drivers/net/fs_enet/Makefile
@@ -0,0 +1,10 @@
+#
+# Makefile for the Freescale Ethernet controllers
+#
+
+obj-$(CONFIG_FS_ENET) += fs_enet.o
+
+obj-$(CONFIG_8xx) += mac-fec.o
+obj-$(CONFIG_8260) += mac-fcc.o
+
+fs_enet-objs := fs_enet-main.o fs_enet-mii.o mii-bitbang.o mii-fixed.o
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 01/04] Freescale Ethernet combined driver
2005-05-09 11:44 [PATCH 01/04] Freescale Ethernet combined driver Pantelis Antoniou
@ 2005-05-09 17:26 ` Kumar Gala
2005-05-10 10:52 ` Pantelis Antoniou
0 siblings, 1 reply; 3+ messages in thread
From: Kumar Gala @ 2005-05-09 17:26 UTC (permalink / raw)
To: Pantelis Antoniou; +Cc: Tom Rini, linuxppc-embedded
Any reason we dont allow this driver on 85xx? (should be same as 82xx)
- kumar
On May 9, 2005, at 6:44 AM, Pantelis Antoniou wrote:
> Hi
>
> The following patch is a combined FCC/FEC ethernet driver
> for the Freescale line of PowerQUICCs.
>
> FECs on 8xx and FCCs on 82xx are supported.
>
> This part of the patch contains makefiles and friends.
>
> Regards
>
> Pantelis
>
> Signed-off-by: Pantelis Antoniou <panto@intracom.gr>
> <fs_enet-01.patch>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 01/04] Freescale Ethernet combined driver
2005-05-09 17:26 ` Kumar Gala
@ 2005-05-10 10:52 ` Pantelis Antoniou
0 siblings, 0 replies; 3+ messages in thread
From: Pantelis Antoniou @ 2005-05-10 10:52 UTC (permalink / raw)
To: Kumar Gala; +Cc: Tom Rini, linuxppc-embedded
Kumar Gala wrote:
> Any reason we dont allow this driver on 85xx? (should be same as 82xx)
>
> - kumar
>
I don't have a 85xx available, so I can't test.
You could try it if you have a board that can be supported.
Also there's the issue with >32bit physical addresses.
This might be more tricky.
Regards
Pantelis
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-05-10 11:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-09 11:44 [PATCH 01/04] Freescale Ethernet combined driver Pantelis Antoniou
2005-05-09 17:26 ` Kumar Gala
2005-05-10 10:52 ` Pantelis Antoniou
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).