[U-Boot] [PATCH v2 1/2] mx6: soc: Add ENET2 mac address support

2016-01-26 Thread Ye Li
The i.MX6SX and i.MX6UL has two ENET controllers, add support for reading
MAC address from fuse for ENET2.

Signed-off-by: Ye Li 
---
Changes for v2:
- Add second MAC address to README.imx6.
- Rename mac_addr_low and mac_addr_high fields to mac_addr0 and 
mac_addr1
  to align with the reigster names in RM.

 arch/arm/cpu/armv7/mx6/soc.c |   32 +
 arch/arm/include/asm/arch-mx6/imx-regs.h |   23 ++--
 doc/README.imx6  |5 +++-
 3 files changed, 30 insertions(+), 30 deletions(-)

diff --git a/arch/arm/cpu/armv7/mx6/soc.c b/arch/arm/cpu/armv7/mx6/soc.c
index bf5ae8c..f83dfa0 100644
--- a/arch/arm/cpu/armv7/mx6/soc.c
+++ b/arch/arm/cpu/armv7/mx6/soc.c
@@ -364,15 +364,29 @@ void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
struct fuse_bank4_regs *fuse =
(struct fuse_bank4_regs *)bank->fuse_regs;
 
-   u32 value = readl(>mac_addr_high);
-   mac[0] = (value >> 8);
-   mac[1] = value ;
-
-   value = readl(>mac_addr_low);
-   mac[2] = value >> 24 ;
-   mac[3] = value >> 16 ;
-   mac[4] = value >> 8 ;
-   mac[5] = value ;
+   if ((is_cpu_type(MXC_CPU_MX6SX) || is_cpu_type(MXC_CPU_MX6UL)) && 
+   1 == dev_id) {
+   u32 value = readl(>mac_addr2);
+   mac[0] = value >> 24 ;
+   mac[1] = value >> 16 ;
+   mac[2] = value >> 8 ;
+   mac[3] = value ;
+
+   value = readl(>mac_addr1);
+   mac[4] = value >> 24 ;
+   mac[5] = value >> 16 ;
+   
+   } else {
+   u32 value = readl(>mac_addr1);
+   mac[0] = (value >> 8);
+   mac[1] = value ;
+
+   value = readl(>mac_addr0);
+   mac[2] = value >> 24 ;
+   mac[3] = value >> 16 ;
+   mac[4] = value >> 8 ;
+   mac[5] = value ;
+   }
 
 }
 #endif
diff --git a/arch/arm/include/asm/arch-mx6/imx-regs.h 
b/arch/arm/include/asm/arch-mx6/imx-regs.h
index f24525e..5c45bf6 100644
--- a/arch/arm/include/asm/arch-mx6/imx-regs.h
+++ b/arch/arm/include/asm/arch-mx6/imx-regs.h
@@ -715,39 +715,22 @@ struct fuse_bank1_regs {
u32 rsvd7[3];
 };
 
-#if (defined(CONFIG_MX6SX) || defined(CONFIG_MX6UL))
 struct fuse_bank4_regs {
u32 sjc_resp_low;
u32 rsvd0[3];
u32 sjc_resp_high;
u32 rsvd1[3];
-   u32 mac_addr_low;
+   u32 mac_addr0;
u32 rsvd2[3];
-   u32 mac_addr_high;
+   u32 mac_addr1;
u32 rsvd3[3];
-   u32 mac_addr2;
+   u32 mac_addr2; /*For i.MX6SX and i.MX6UL*/
u32 rsvd4[7];
u32 gp1;
u32 rsvd5[3];
u32 gp2;
u32 rsvd6[3];
 };
-#else
-struct fuse_bank4_regs {
-   u32 sjc_resp_low;
-   u32 rsvd0[3];
-   u32 sjc_resp_high;
-   u32 rsvd1[3];
-   u32 mac_addr_low;
-   u32 rsvd2[3];
-   u32 mac_addr_high;
-   u32 rsvd3[0xb];
-   u32 gp1;
-   u32 rsvd4[3];
-   u32 gp2;
-   u32 rsvd5[3];
-};
-#endif
 
 struct aipstz_regs {
u32 mprot0;
diff --git a/doc/README.imx6 b/doc/README.imx6
index e26ab71..7c9a4ac 100644
--- a/doc/README.imx6
+++ b/doc/README.imx6
@@ -7,7 +7,10 @@ SoC.
 ---
 
 1.1 MAC Address: It is stored in fuse bank 4, with the 32 lsbs in word 2 and 
the
-16 msbs in word 3.
+16 msbs in word 3[15:0].
+For i.MX6SX and i.MX6UL, they have two MAC addresses. The second MAC 
address
+is stored in fuse bank 4, with the 16 lsb in word 3[31:16] and the 32 msbs 
in 
+word 4.
 
 Example:
 
-- 
1.7.4.1

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2 1/2] mx6: soc: Add ENET2 mac address support

2016-01-26 Thread Joe Hershberger
On Tue, Jan 26, 2016 at 3:10 AM, Ye Li  wrote:
> The i.MX6SX and i.MX6UL has two ENET controllers, add support for reading
> MAC address from fuse for ENET2.
>
> Signed-off-by: Ye Li 
> ---
> Changes for v2:
> - Add second MAC address to README.imx6.
> - Rename mac_addr_low and mac_addr_high fields to mac_addr0 and 
> mac_addr1
>   to align with the reigster names in RM.
>
>  arch/arm/cpu/armv7/mx6/soc.c |   32 +
>  arch/arm/include/asm/arch-mx6/imx-regs.h |   23 ++--
>  doc/README.imx6  |5 +++-
>  3 files changed, 30 insertions(+), 30 deletions(-)
>
> diff --git a/arch/arm/cpu/armv7/mx6/soc.c b/arch/arm/cpu/armv7/mx6/soc.c
> index bf5ae8c..f83dfa0 100644
> --- a/arch/arm/cpu/armv7/mx6/soc.c
> +++ b/arch/arm/cpu/armv7/mx6/soc.c
> @@ -364,15 +364,29 @@ void imx_get_mac_from_fuse(int dev_id, unsigned char 
> *mac)
> struct fuse_bank4_regs *fuse =
> (struct fuse_bank4_regs *)bank->fuse_regs;
>
> -   u32 value = readl(>mac_addr_high);
> -   mac[0] = (value >> 8);
> -   mac[1] = value ;
> -
> -   value = readl(>mac_addr_low);
> -   mac[2] = value >> 24 ;
> -   mac[3] = value >> 16 ;
> -   mac[4] = value >> 8 ;
> -   mac[5] = value ;
> +   if ((is_cpu_type(MXC_CPU_MX6SX) || is_cpu_type(MXC_CPU_MX6UL)) &&
> +   1 == dev_id) {
> +   u32 value = readl(>mac_addr2);
> +   mac[0] = value >> 24 ;
> +   mac[1] = value >> 16 ;
> +   mac[2] = value >> 8 ;
> +   mac[3] = value ;

I'm surprised the compiler doesn't warn you about your int being too
big. If it does, you should address that before sending a v3.

> +
> +   value = readl(>mac_addr1);
> +   mac[4] = value >> 24 ;
> +   mac[5] = value >> 16 ;
> +
> +   } else {
> +   u32 value = readl(>mac_addr1);
> +   mac[0] = (value >> 8);
> +   mac[1] = value ;
> +
> +   value = readl(>mac_addr0);
> +   mac[2] = value >> 24 ;
> +   mac[3] = value >> 16 ;
> +   mac[4] = value >> 8 ;
> +   mac[5] = value ;
> +   }
>
>  }
>  #endif
> diff --git a/arch/arm/include/asm/arch-mx6/imx-regs.h 
> b/arch/arm/include/asm/arch-mx6/imx-regs.h
> index f24525e..5c45bf6 100644
> --- a/arch/arm/include/asm/arch-mx6/imx-regs.h
> +++ b/arch/arm/include/asm/arch-mx6/imx-regs.h
> @@ -715,39 +715,22 @@ struct fuse_bank1_regs {
> u32 rsvd7[3];
>  };
>
> -#if (defined(CONFIG_MX6SX) || defined(CONFIG_MX6UL))
>  struct fuse_bank4_regs {
> u32 sjc_resp_low;
> u32 rsvd0[3];
> u32 sjc_resp_high;
> u32 rsvd1[3];
> -   u32 mac_addr_low;
> +   u32 mac_addr0;
> u32 rsvd2[3];
> -   u32 mac_addr_high;
> +   u32 mac_addr1;
> u32 rsvd3[3];
> -   u32 mac_addr2;
> +   u32 mac_addr2; /*For i.MX6SX and i.MX6UL*/
> u32 rsvd4[7];
> u32 gp1;
> u32 rsvd5[3];
> u32 gp2;
> u32 rsvd6[3];
>  };
> -#else
> -struct fuse_bank4_regs {
> -   u32 sjc_resp_low;
> -   u32 rsvd0[3];
> -   u32 sjc_resp_high;
> -   u32 rsvd1[3];
> -   u32 mac_addr_low;
> -   u32 rsvd2[3];
> -   u32 mac_addr_high;
> -   u32 rsvd3[0xb];
> -   u32 gp1;
> -   u32 rsvd4[3];
> -   u32 gp2;
> -   u32 rsvd5[3];
> -};
> -#endif
>
>  struct aipstz_regs {
> u32 mprot0;
> diff --git a/doc/README.imx6 b/doc/README.imx6
> index e26ab71..7c9a4ac 100644
> --- a/doc/README.imx6
> +++ b/doc/README.imx6
> @@ -7,7 +7,10 @@ SoC.
>  ---
>
>  1.1 MAC Address: It is stored in fuse bank 4, with the 32 lsbs in word 2 and 
> the
> -16 msbs in word 3.
> +16 msbs in word 3[15:0].
> +For i.MX6SX and i.MX6UL, they have two MAC addresses. The second MAC 
> address
> +is stored in fuse bank 4, with the 16 lsb in word 3[31:16] and the 32 
> msbs in
> +word 4.
>
>  Example:
>
> --
> 1.7.4.1
>
> ___
> U-Boot mailing list
> U-Boot@lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2 1/2] mx6: soc: Add ENET2 mac address support

2016-01-26 Thread Fabio Estevam
On Tue, Jan 26, 2016 at 7:10 AM, Ye Li  wrote:

> +   if ((is_cpu_type(MXC_CPU_MX6SX) || is_cpu_type(MXC_CPU_MX6UL)) &&
> +   1 == dev_id) {

dev_id == 1, please
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot