Re: [U-Boot] [PATCH v6 1/1] imx: Get fec mac address from fuse

2010-11-19 Thread Stefano Babic
On 11/19/2010 09:10 AM, Jason Liu wrote: > Is there anyone on the ML can do me one favor to test it on MX25 like > on karo/tx25? I have checked and I can test here at DENX on a i.MX25. I will do his job. Best regards, Stefano Babic -- ===

Re: [U-Boot] [PATCH v6 1/1] imx: Get fec mac address from fuse

2010-11-19 Thread Jason Liu
2010/11/19 Stefano Babic : > On 11/19/2010 07:44 AM, Jason Liu wrote: >>> I think you are right. I did not have the mx27 board to do test. >>> Thanks for test. >>> >>> I only test it on mx51babbage board, the following is the output: >>> >>> Net:   got MAC address from fuse: 00:04:9f:00:f7:78 >>> w

Re: [U-Boot] [PATCH v6 1/1] imx: Get fec mac address from fuse

2010-11-18 Thread Stefano Babic
On 11/19/2010 07:44 AM, Jason Liu wrote: >> I think you are right. I did not have the mx27 board to do test. >> Thanks for test. >> >> I only test it on mx51babbage board, the following is the output: >> >> Net: got MAC address from fuse: 00:04:9f:00:f7:78 >> which is the same as the MAC address

Re: [U-Boot] [PATCH v6 1/1] imx: Get fec mac address from fuse

2010-11-18 Thread Jason Liu
Hi, Stefano, 2010/11/19 Jason Liu : > Hi, Stefano, > > 2010/11/18 Stefano Babic : >> On 11/18/2010 12:49 PM, Jason Liu wrote: >>> The patch is to support getting FEC MAC address from fuse bank. >>> >>> Signed-off-by: Jason Liu >>> >> >> Hi Jason, >> >> I applied your patch and I tested on a i.MX2

Re: [U-Boot] [PATCH v6 1/1] imx: Get fec mac address from fuse

2010-11-18 Thread Jason Liu
Hi, Stefano, 2010/11/18 Stefano Babic : > On 11/18/2010 12:49 PM, Jason Liu wrote: >> The patch is to support getting FEC MAC address from fuse bank. >> >> Signed-off-by: Jason Liu >> > > Hi Jason, > > I applied your patch and I tested on a i.MX27 Lite board. The result > does not seem correct. A

Re: [U-Boot] [PATCH v6 1/1] imx: Get fec mac address from fuse

2010-11-18 Thread Stefano Babic
On 11/18/2010 12:49 PM, Jason Liu wrote: > The patch is to support getting FEC MAC address from fuse bank. > > Signed-off-by: Jason Liu > Hi Jason, > diff --git a/arch/arm/include/asm/arch-mx5/imx-regs.h > b/arch/arm/include/asm/arch-mx5/imx-regs.h > index 0b6249a..d618bca 100644 > --- a/arch

[U-Boot] [PATCH v6 1/1] imx: Get fec mac address from fuse

2010-11-18 Thread Jason Liu
The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu --- Changes for v2: - correct the mac address byte order according to review comments - add memset(edev, 0. sizeof(*edev)) when do fec_probe, - fix some code comments Changes for v3: - rebase - address