Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-11-18 Thread alfred steele
On Mon, Nov 16, 2009 at 8:59 PM, Ben Warren biggerbadder...@gmail.com wrote: Hi Alfred, alfred steele wrote: Thanks for your submission! What is the current design on the mxc fec interface's attainment of a MAC address. From the kernel driver it looks like it looks at the IIM(IC

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-11-18 Thread Ben Warren
Alfred, On Wed, Nov 18, 2009 at 5:54 PM, alfred steele alfred.jaq...@gmail.comwrote: On Mon, Nov 16, 2009 at 8:59 PM, Ben Warren biggerbadder...@gmail.com wrote: Hi Alfred, alfred steele wrote: Thanks for your submission! What is the current design on the mxc fec interface's

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-11-16 Thread alfred steele
Thanks for your submission! What is the current design on the mxc fec interface's attainment of a MAC address. From the kernel driver it looks like it looks at the IIM(IC identification registers) on the MXC platform(like mx51/35) to look for a programmed mac address and then the set the fec mac

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-11-16 Thread Ben Warren
Hi Alfred, alfred steele wrote: Thanks for your submission! What is the current design on the mxc fec interface's attainment of a MAC address. From the kernel driver it looks like it looks at the IIM(IC identification registers) on the MXC platform(like mx51/35) to look for a

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-11-16 Thread Wolfgang Denk
Dear Alfred Steele, In message 528f13590911161846q6a91df8awa309d4e1f990d...@mail.gmail.com you wrote: Thanks for your submission! What is the current design on the mxc fec interface's attainment of a MAC address. From the kernel driver it looks like it looks at the There is none. IIM(IC

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC Ethernet controller on i.MX27

2009-06-23 Thread Bill Cook
-Original Message- From: Eric Lammerts [mailto:u-b...@lists.lammerts.org] Sent: Monday, June 15, 2009 3:59 PM To: Johan Cc: u-boot@lists.denx.de; Ilya Yanok Subject: Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27 On 06/15/09 10:01, Johan wrote

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-06-19 Thread Wolfgang Denk
Dear Johan, In message de9b121e0906160012q5975b23cnd320908aee6cd...@mail.gmail.com you wrote: Seems like that was the trick. After removing the breakout board it works much better. I still got some problems which I don't know if its software related. Sometimes when I power on the board the

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-06-17 Thread Ilya Yanok
Hi Johan, Seems like that was the trick. After removing the breakout board it works much better. I still got some problems which I don't know if its software related. Sometimes when I power on the board the ethernet LEDs does not turn green and the network does not work. If I power cycle

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-06-16 Thread Johan
Seems like that was the trick. After removing the breakout board it works much better. I still got some problems which I don't know if its software related. Sometimes when I power on the board the ethernet LEDs does not turn green and the network does not work. If I power cycle the board a number

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-06-15 Thread Johan
I have trouble using your patch together with our LogicPD iMX27 Litekit. Seems like the FEC driver does not work well. Here is some output from when I try to load files with tftp U-Boot 2009.06-rc1 (jun 15 2009 - 15:46:31) CPU: Freescale i.MX27 at 399 MHz DRAM: 128 MB Flash: 2 MB NAND: 64

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-06-15 Thread Eric Lammerts
On 06/15/09 10:01, Johan wrote: I have trouble using your patch together with our LogicPD iMX27 Litekit. Seems like the FEC driver does not work well. Here is some output from when I try to load files with tftp snip Loading: #T #T #T

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-06-08 Thread Ilya Yanok
Hi Fabio, Fabio Estevam wrote: Uh... I think the hardware is pretty the same as that is handled by mcffec.c driver but merging won't be very easy... There are other i.MX processors with FEC. Uh... I didn't know that... As far as I can see Linux driver supports only i.MX27... Regards,

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-06-08 Thread Fabio Estevam
Hi Ilya, --- On Mon, 6/8/09, Ilya Yanok ya...@emcraft.com wrote: There are other i.MX processors with FEC. Uh... I didn't know that... As far as I can see Linux driver supports only i.MX27... Yes, only MX27 so far. MX35 also has a FEC. I sent this patch to the netdev list in order to

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-06-07 Thread Ilya Yanok
Hi Ben, thanks for the review. Ben Warren wrote: Naive question: Is this FEC truly unique to the iMX27? If not you should pick a more generic name. Uh... I think the hardware is pretty the same as that is handled by mcffec.c driver but merging won't be very easy... Regards, Ilya.

[U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-06-07 Thread Ilya Yanok
Signed-off-by: Ilya Yanok ya...@emcraft.com --- cpu/arm926ejs/mx27/generic.c | 10 + drivers/net/Makefile |1 + drivers/net/fec_imx27.c | 713 ++ drivers/net/fec_imx27.h | 304 ++ include/netdev.h |1

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-06-07 Thread Fabio Estevam
--- On Sun, 6/7/09, Ilya Yanok ya...@emcraft.com wrote: From: Ilya Yanok ya...@emcraft.com Subject: Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27 To: Ben Warren biggerbadder...@gmail.com Cc: u-boot@lists.denx.de Date: Sunday, June 7, 2009, 8:08 PM Hi

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-05-25 Thread Ben Warren
Hi Ilya, Thanks for making all the improvements: Ilya Yanok wrote: Signed-off-by: Ilya Yanok ya...@emcraft.com --- cpu/arm926ejs/mx27/generic.c | 10 + drivers/net/Makefile |1 + drivers/net/fec_imx27.c | 705 ++

[U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-05-19 Thread Ilya Yanok
Signed-off-by: Ilya Yanok ya...@emcraft.com --- cpu/arm926ejs/mx27/generic.c | 10 + drivers/net/Makefile |1 + drivers/net/fec_imx27.c | 705 ++ drivers/net/fec_imx27.h | 302 ++ include/netdev.h |1