diff options
Diffstat (limited to 'drivers/net/fm')
| -rw-r--r-- | drivers/net/fm/Makefile | 1 | ||||
| -rw-r--r-- | drivers/net/fm/b4860.c | 6 | ||||
| -rw-r--r-- | drivers/net/fm/eth.c | 2 | ||||
| -rw-r--r-- | drivers/net/fm/fm.h | 2 | ||||
| -rw-r--r-- | drivers/net/fm/init.c | 31 | ||||
| -rw-r--r-- | drivers/net/fm/t4240.c | 14 | 
6 files changed, 50 insertions, 6 deletions
| diff --git a/drivers/net/fm/Makefile b/drivers/net/fm/Makefile index f191c79a2..9aaa82853 100644 --- a/drivers/net/fm/Makefile +++ b/drivers/net/fm/Makefile @@ -46,6 +46,7 @@ COBJS-$(CONFIG_PPC_P4080) += p4080.o  COBJS-$(CONFIG_PPC_P5020) += p5020.o  COBJS-$(CONFIG_PPC_P5040) += p5040.o  COBJS-$(CONFIG_PPC_T4240) += t4240.o +COBJS-$(CONFIG_PPC_T4160) += t4240.o  COBJS-$(CONFIG_PPC_B4420) += b4860.o  COBJS-$(CONFIG_PPC_B4860) += b4860.o  endif diff --git a/drivers/net/fm/b4860.c b/drivers/net/fm/b4860.c index 8cde7afc1..3b5defefa 100644 --- a/drivers/net/fm/b4860.c +++ b/drivers/net/fm/b4860.c @@ -55,8 +55,10 @@ phy_interface_t fman_port_enet_if(enum fm_port port)  	if (is_device_disabled(port))  		return PHY_INTERFACE_MODE_NONE; -	if ((port == FM1_10GEC1 || port == FM1_10GEC2) -			&& (is_serdes_configured(XAUI_FM1))) +	/*B4860 has two 10Gig Mac*/ +	if ((port == FM1_10GEC1 || port == FM1_10GEC2)	&& +	    ((is_serdes_configured(XAUI_FM1_MAC9))	|| +	    (is_serdes_configured(XAUI_FM1_MAC10))))  		return PHY_INTERFACE_MODE_XGMII;  	/* Fix me need to handle RGMII here first */ diff --git a/drivers/net/fm/eth.c b/drivers/net/fm/eth.c index 54b142f47..9b139eeb0 100644 --- a/drivers/net/fm/eth.c +++ b/drivers/net/fm/eth.c @@ -568,6 +568,8 @@ static int fm_eth_init_mac(struct fm_eth *fm_eth, struct ccsr_fman *reg)  	num = fm_eth->num;  #ifdef CONFIG_SYS_FMAN_V3 +	if (fm_eth->type == FM_ETH_10G_E) +		num += 8;  	base = ®->memac[num].fm_memac;  	phyregs = ®->memac[num].fm_memac_mdio;  #else diff --git a/drivers/net/fm/fm.h b/drivers/net/fm/fm.h index 228df330f..ba581e9ef 100644 --- a/drivers/net/fm/fm.h +++ b/drivers/net/fm/fm.h @@ -152,4 +152,6 @@ struct fm_eth {  #define MAX_RXBUF_LOG2		11  #define MAX_RXBUF_LEN		(1 << MAX_RXBUF_LOG2) +#define PORT_IS_ENABLED(port)	fm_info[fm_port_to_index(port)].enabled +  #endif /* __FM_H__ */ diff --git a/drivers/net/fm/init.c b/drivers/net/fm/init.c index ae389b884..5908c3254 100644 --- a/drivers/net/fm/init.c +++ b/drivers/net/fm/init.c @@ -74,9 +74,15 @@ struct fm_eth_info fm_info[] = {  #if (CONFIG_SYS_NUM_FM1_10GEC >= 1)  	FM_TGEC_INFO_INITIALIZER(1, 1),  #endif +#if (CONFIG_SYS_NUM_FM1_10GEC >= 2) +	FM_TGEC_INFO_INITIALIZER(1, 2), +#endif  #if (CONFIG_SYS_NUM_FM2_10GEC >= 1)  	FM_TGEC_INFO_INITIALIZER(2, 1),  #endif +#if (CONFIG_SYS_NUM_FM2_10GEC >= 2) +	FM_TGEC_INFO_INITIALIZER(2, 2), +#endif  };  int fm_standard_init(bd_t *bis) @@ -232,6 +238,26 @@ static void ft_fixup_port(void *blob, struct fm_eth_info *info, char *prop)  		return ;  	} +#ifdef CONFIG_SYS_FMAN_V3 +	/* +	 * Physically FM1_DTSEC9 and FM1_10GEC1 use the same dual-role MAC, when +	 * FM1_10GEC1 is enabled and  FM1_DTSEC9 is disabled, ensure that the +	 * dual-role MAC is not disabled, ditto for other dual-role MACs. +	 */ +	if (((info->port == FM1_DTSEC9) && (PORT_IS_ENABLED(FM1_10GEC1)))	|| +	    ((info->port == FM1_DTSEC10) && (PORT_IS_ENABLED(FM1_10GEC2)))	|| +	    ((info->port == FM1_10GEC1) && (PORT_IS_ENABLED(FM1_DTSEC9)))	|| +	    ((info->port == FM1_10GEC2) && (PORT_IS_ENABLED(FM1_DTSEC10))) +#if (CONFIG_SYS_NUM_FMAN == 2) +										|| +	    ((info->port == FM2_DTSEC9) && (PORT_IS_ENABLED(FM2_10GEC1)))	|| +	    ((info->port == FM2_DTSEC10) && (PORT_IS_ENABLED(FM2_10GEC2)))	|| +	    ((info->port == FM2_10GEC1) && (PORT_IS_ENABLED(FM2_DTSEC9)))	|| +	    ((info->port == FM2_10GEC2) && (PORT_IS_ENABLED(FM2_DTSEC10))) +#endif +	) +		return; +#endif  	/* board code might have caused offset to change */  	off = fdt_node_offset_by_compat_reg(blob, prop, paddr); @@ -249,10 +275,15 @@ void fdt_fixup_fman_ethernet(void *blob)  {  	int i; +#ifdef CONFIG_SYS_FMAN_V3 +	for (i = 0; i < ARRAY_SIZE(fm_info); i++) +		ft_fixup_port(blob, &fm_info[i], "fsl,fman-memac"); +#else  	for (i = 0; i < ARRAY_SIZE(fm_info); i++) {  		if (fm_info[i].type == FM_ETH_1G_E)  			ft_fixup_port(blob, &fm_info[i], "fsl,fman-1g-mac");  		else  			ft_fixup_port(blob, &fm_info[i], "fsl,fman-10g-mac");  	} +#endif  } diff --git a/drivers/net/fm/t4240.c b/drivers/net/fm/t4240.c index 48c530c91..275395f18 100644 --- a/drivers/net/fm/t4240.c +++ b/drivers/net/fm/t4240.c @@ -70,12 +70,18 @@ phy_interface_t fman_port_enet_if(enum fm_port port)  	if (is_device_disabled(port))  		return PHY_INTERFACE_MODE_NONE; -	if ((port == FM1_10GEC1 || port == FM1_10GEC2) -			&& (is_serdes_configured(XAUI_FM1))) +	if ((port == FM1_10GEC1 || port == FM1_10GEC2) && +	    ((is_serdes_configured(XAUI_FM1_MAC9))	|| +	     (is_serdes_configured(XAUI_FM1_MAC10))	|| +	     (is_serdes_configured(XFI_FM1_MAC9))	|| +	     (is_serdes_configured(XFI_FM1_MAC10))))  		return PHY_INTERFACE_MODE_XGMII; -	if ((port == FM2_10GEC1 || port == FM2_10GEC2) -			&& (is_serdes_configured(XAUI_FM2))) +	if ((port == FM2_10GEC1 || port == FM2_10GEC2) && +	    ((is_serdes_configured(XAUI_FM2_MAC9))	|| +	     (is_serdes_configured(XAUI_FM2_MAC10))	|| +	     (is_serdes_configured(XFI_FM2_MAC9))	|| +	     (is_serdes_configured(XFI_FM2_MAC10))))  		return PHY_INTERFACE_MODE_XGMII;  #define FSL_CORENET_RCWSR13_EC1			0x60000000 /* bits 417..418 */ |