net: imx: Add multi-FEC support for imx_get_mac_from_fuse

Add multi-FEC support for imx_get_mac_from_fuse by passing dev_id as a parameter.

This feature is important on mx28 SoC for example that has two FEC ports.

Cc: Ben Warren <biggerbadderben@gmail.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Stefano Babic <sbabic@denx.de>
This commit is contained in:
Fabio Estevam 2011-12-20 05:46:31 +00:00 committed by Albert ARIBAUD
parent 3c057897e9
commit be252b654a
8 changed files with 13 additions and 12 deletions

View file

@ -393,7 +393,7 @@ unsigned int mxc_get_clock(enum mxc_clock clk)
/* /*
* The MX35 has no fuse for MAC, return a NULL MAC * The MX35 has no fuse for MAC, return a NULL MAC
*/ */
void imx_get_mac_from_fuse(unsigned char *mac) void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
{ {
memset(mac, 0, 6); memset(mac, 0, 6);
} }

View file

@ -312,7 +312,7 @@ void mx25_fec_init_pins(void)
} }
void imx_get_mac_from_fuse(unsigned char *mac) void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
{ {
int i; int i;
struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE; struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE;

View file

@ -314,7 +314,7 @@ void mx27_fec_init_pins(void)
imx_gpio_mode(mode[i]); imx_gpio_mode(mode[i]);
} }
void imx_get_mac_from_fuse(unsigned char *mac) void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
{ {
int i; int i;
struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE; struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE;

View file

@ -63,7 +63,7 @@ int arch_cpu_init(void)
#endif #endif
#if defined(CONFIG_FEC_MXC) #if defined(CONFIG_FEC_MXC)
void imx_get_mac_from_fuse(unsigned char *mac) void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
{ {
struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE; struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE;
struct fuse_bank *bank = &iim->bank[4]; struct fuse_bank *bank = &iim->bank[4];

View file

@ -167,7 +167,7 @@
#if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__)) #if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
#include <asm/types.h> #include <asm/types.h>
extern void imx_get_mac_from_fuse(unsigned char *mac); extern void imx_get_mac_from_fuse(int dev_id, unsigned char *mac);
/* System Reset Controller (SRC) */ /* System Reset Controller (SRC) */
struct src { struct src {

View file

@ -181,7 +181,7 @@ int board_eth_init(bd_t *bis)
#ifdef CONFIG_M28_FEC_MAC_IN_OCOTP #ifdef CONFIG_M28_FEC_MAC_IN_OCOTP
#define MXS_OCOTP_MAX_TIMEOUT 1000000 #define MXS_OCOTP_MAX_TIMEOUT 1000000
void imx_get_mac_from_fuse(char *mac) void imx_get_mac_from_fuse(int dev_id, char *mac)
{ {
struct mx28_ocotp_regs *ocotp_regs = struct mx28_ocotp_regs *ocotp_regs =
(struct mx28_ocotp_regs *)MXS_OCOTP_BASE; (struct mx28_ocotp_regs *)MXS_OCOTP_BASE;
@ -207,7 +207,7 @@ void imx_get_mac_from_fuse(char *mac)
mac[5] = data & 0xff; mac[5] = data & 0xff;
} }
#else #else
void imx_get_mac_from_fuse(char *mac) void imx_get_mac_from_fuse(int dev_id, char *mac)
{ {
memset(mac, 0, 6); memset(mac, 0, 6);
} }

View file

@ -345,9 +345,10 @@ static void fec_rbd_clean(int last, struct fec_bd *pRbd)
writew(0, &pRbd->data_length); writew(0, &pRbd->data_length);
} }
static int fec_get_hwaddr(struct eth_device *dev, unsigned char *mac) static int fec_get_hwaddr(struct eth_device *dev, int dev_id,
unsigned char *mac)
{ {
imx_get_mac_from_fuse(mac); imx_get_mac_from_fuse(dev_id, mac);
return !is_valid_ether_addr(mac); return !is_valid_ether_addr(mac);
} }
@ -822,8 +823,8 @@ static int fec_probe(bd_t *bd, int dev_id, int phy_id, uint32_t base_addr)
eth_register(edev); eth_register(edev);
if (fec_get_hwaddr(edev, ethaddr) == 0) { if (fec_get_hwaddr(edev, dev_id, ethaddr) == 0) {
debug("got MAC address from fuse: %pM\n", ethaddr); debug("got MAC%d address from fuse: %pM\n", dev_id, ethaddr);
memcpy(edev->enetaddr, ethaddr, 6); memcpy(edev->enetaddr, ethaddr, 6);
} }

View file

@ -32,7 +32,7 @@
#ifndef __FEC_MXC_H #ifndef __FEC_MXC_H
#define __FEC_MXC_H #define __FEC_MXC_H
void imx_get_mac_from_fuse(unsigned char *mac); void imx_get_mac_from_fuse(int dev_id, unsigned char *mac);
/** /**
* Layout description of the FEC * Layout description of the FEC