⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 npe.c

📁 Uboot源码,非常通用的bootloader.适用于各种平台的Linux系统引导.
💻 C
📖 第 1 页 / 共 2 页
字号:
	}	return 1;}static int npe_init(struct eth_device *dev, bd_t * bis){	struct npe *p_npe = (struct npe *)dev->priv;	int i;	u16 reg_short;	int speed;	int duplex;	debug("%s: 1\n", __FUNCTION__);	miiphy_read (dev->name, p_npe->phy_no, PHY_BMSR, &reg_short);	/*	 * Wait if PHY is capable of autonegotiation and autonegotiation is not complete	 */	if ((reg_short & PHY_BMSR_AUTN_ABLE) && !(reg_short & PHY_BMSR_AUTN_COMP)) {		puts ("Waiting for PHY auto negotiation to complete");		i = 0;		while (!(reg_short & PHY_BMSR_AUTN_COMP)) {			/*			 * Timeout reached ?			 */			if (i > PHY_AUTONEGOTIATE_TIMEOUT) {				puts (" TIMEOUT !\n");				break;			}			if ((i++ % 1000) == 0) {				putc ('.');				miiphy_read (dev->name, p_npe->phy_no, PHY_BMSR, &reg_short);			}			udelay (1000);	/* 1 ms */		}		puts (" done\n");		udelay (500000);	/* another 500 ms (results in faster booting) */	}	speed = miiphy_speed (dev->name, p_npe->phy_no);	duplex = miiphy_duplex (dev->name, p_npe->phy_no);	if (p_npe->print_speed) {		p_npe->print_speed = 0;		printf ("ENET Speed is %d Mbps - %s duplex connection\n",			(int) speed, (duplex == HALF) ? "HALF" : "FULL");	}	npe_alloc_end = npe_alloc_pool + sizeof(npe_alloc_pool);	npe_alloc_free = (u8 *)(((unsigned)npe_alloc_pool +				 CFG_CACHELINE_SIZE - 1) & ~(CFG_CACHELINE_SIZE - 1));	/* initialize mbuf pool */	init_rx_mbufs(p_npe);	init_tx_mbufs(p_npe);	if (ixEthAccPortRxCallbackRegister(p_npe->eth_id, npe_rx_callback,					   (u32)p_npe) != IX_ETH_ACC_SUCCESS) {		printf("can't register RX callback!\n");		return 0;	}	if (ixEthAccPortTxDoneCallbackRegister(p_npe->eth_id, npe_tx_callback,					       (u32)p_npe) != IX_ETH_ACC_SUCCESS) {		printf("can't register TX callback!\n");		return 0;	}	npe_set_mac_address(dev);	if (ixEthAccPortEnable(p_npe->eth_id) != IX_ETH_ACC_SUCCESS) {		printf("can't enable port!\n");		return 0;	}	p_npe->active = 1;	return 1;}#if 0 /* test-only: probably have to deal with it when booting linux (for a clean state) *//* Uninitialize CSR library. */static void npe_csr_unload(void){	ixEthAccUnload();	ixEthDBUnload();	ixNpeMhUnload();	ixQMgrUnload();}/* callback which is used by ethAcc to recover RX buffers when stopping */static void npe_rx_stop_callback(u32 cbTag, IX_OSAL_MBUF *m, IxEthAccPortId portid){	debug("%s\n", __FUNCTION__);}/* callback which is used by ethAcc to recover TX buffers when stopping */static void npe_tx_stop_callback(u32 cbTag, IX_OSAL_MBUF *m){	debug("%s\n", __FUNCTION__);}#endifstatic void npe_halt(struct eth_device *dev){	struct npe *p_npe = (struct npe *)dev->priv;	int i;	debug("%s\n", __FUNCTION__);	/* Delay to give time for recovery of mbufs */	for (i = 0; i < 100; i++) {		npe_poll(p_npe->eth_id);		udelay(100);	}#if 0 /* test-only: probably have to deal with it when booting linux (for a clean state) */	if (ixEthAccPortRxCallbackRegister(p_npe->eth_id, npe_rx_stop_callback,					   (u32)p_npe) != IX_ETH_ACC_SUCCESS) {		debug("Error registering rx callback!\n");	}	if (ixEthAccPortTxDoneCallbackRegister(p_npe->eth_id, npe_tx_stop_callback,					       (u32)p_npe) != IX_ETH_ACC_SUCCESS) {		debug("Error registering tx callback!\n");	}	if (ixEthAccPortDisable(p_npe->eth_id) != IX_ETH_ACC_SUCCESS) {		debug("npe_stop: Error disabling NPEB!\n");	}	/* Delay to give time for recovery of mbufs */	for (i = 0; i < 100; i++) {		npe_poll(p_npe->eth_id);		udelay(10000);	}	/*	 * For U-Boot only, we are probably launching Linux or other OS that	 * needs a clean slate for its NPE library.	 */#if 0 /* test-only */	for (i = 0; i < IX_ETH_ACC_NUMBER_OF_PORTS; i++) {		if (npe_used[i] && npe_exists[i])			if (ixNpeDlNpeStopAndReset(__eth_to_npe(i)) != IX_SUCCESS)				printf("Failed to stop and reset NPE B.\n");	}#endif#endif	p_npe->active = 0;}static int npe_send(struct eth_device *dev, volatile void *packet, int len){	struct npe *p_npe = (struct npe *)dev->priv;	u8 *dest;	int err;	IX_OSAL_MBUF *m;	debug("%s\n", __FUNCTION__);	m = mbuf_dequeue(&p_npe->txQHead);	dest = IX_OSAL_MBUF_MDATA(m);	IX_OSAL_MBUF_PKT_LEN(m) = IX_OSAL_MBUF_MLEN(m) = len;	IX_OSAL_MBUF_NEXT_PKT_IN_CHAIN_PTR(m) = NULL;	memcpy(dest, (char *)packet, len);	if ((err = ixEthAccPortTxFrameSubmit(p_npe->eth_id, m, IX_ETH_ACC_TX_DEFAULT_PRIORITY))	    != IX_ETH_ACC_SUCCESS) {		printf("npe_send: Can't submit frame. err[%d]\n", err);		mbuf_enqueue(&p_npe->txQHead, m);		return 0;	}#ifdef DEBUG_PRINT_TX_FRAMES	{		u8 *ptr = IX_OSAL_MBUF_MDATA(m);		int i;		for (i=0; i<IX_OSAL_MBUF_MLEN(m); i++) {			printf("%02x ", *ptr++);		}		printf(" (tx-len=%d)\n", IX_OSAL_MBUF_MLEN(m));	}#endif	npe_poll(p_npe->eth_id);	return len;}static int npe_rx(struct eth_device *dev){	struct npe *p_npe = (struct npe *)dev->priv;	debug("%s\n", __FUNCTION__);	npe_poll(p_npe->eth_id);	debug("%s: rx_write=%d rx_read=%d\n", __FUNCTION__, p_npe->rx_write, p_npe->rx_read);	while (p_npe->rx_write != p_npe->rx_read) {		debug("Reading message #%d\n", p_npe->rx_read);		NetReceive(NetRxPackets[p_npe->rx_read], p_npe->rx_len[p_npe->rx_read]);		p_npe->rx_read++;		if (p_npe->rx_read == PKTBUFSRX)			p_npe->rx_read = 0;	}	return 0;}int npe_initialize(bd_t * bis){	static int virgin = 0;	struct eth_device *dev;	int eth_num = 0;	struct npe *p_npe = NULL;	for (eth_num = 0; eth_num < CFG_NPE_NUMS; eth_num++) {		/* See if we can actually bring up the interface, otherwise, skip it */		switch (eth_num) {		default:		/* fall through */		case 0:			if (memcmp (bis->bi_enetaddr, "\0\0\0\0\0\0", 6) == 0) {				continue;			}			break;#ifdef CONFIG_HAS_ETH1		case 1:			if (memcmp (bis->bi_enet1addr, "\0\0\0\0\0\0", 6) == 0) {				continue;			}			break;#endif		}		/* Allocate device structure */		dev = (struct eth_device *)malloc(sizeof(*dev));		if (dev == NULL) {			printf ("%s: Cannot allocate eth_device %d\n", __FUNCTION__, eth_num);			return -1;		}		memset(dev, 0, sizeof(*dev));		/* Allocate our private use data */		p_npe = (struct npe *)malloc(sizeof(struct npe));		if (p_npe == NULL) {			printf("%s: Cannot allocate private hw data for eth_device %d",			       __FUNCTION__, eth_num);			free(dev);			return -1;		}		memset(p_npe, 0, sizeof(struct npe));		switch (eth_num) {		default:		/* fall through */		case 0:			memcpy(dev->enetaddr, bis->bi_enetaddr, 6);			p_npe->eth_id = 0;			p_npe->phy_no = CONFIG_PHY_ADDR;			break;#ifdef CONFIG_HAS_ETH1		case 1:			memcpy(dev->enetaddr, bis->bi_enet1addr, 6);			p_npe->eth_id = 1;			p_npe->phy_no = CONFIG_PHY1_ADDR;			break;#endif		}		sprintf(dev->name, "NPE%d", eth_num);		dev->priv = (void *)p_npe;		dev->init = npe_init;		dev->halt = npe_halt;		dev->send = npe_send;		dev->recv = npe_rx;		p_npe->print_speed = 1;		if (0 == virgin) {			virgin = 1;			if (ixFeatureCtrlDeviceRead() == IX_FEATURE_CTRL_DEVICE_TYPE_IXP42X) {				switch (ixFeatureCtrlProductIdRead() & IX_FEATURE_CTRL_SILICON_STEPPING_MASK) {				case IX_FEATURE_CTRL_SILICON_TYPE_B0:					/*					 * If it is B0 Silicon, we only enable port when its corresponding					 * Eth Coprocessor is available.					 */					if (ixFeatureCtrlComponentCheck(IX_FEATURECTRL_ETH0) ==					    IX_FEATURE_CTRL_COMPONENT_ENABLED)						npe_exists[IX_ETH_PORT_1] = TRUE;					if (ixFeatureCtrlComponentCheck(IX_FEATURECTRL_ETH1) ==					    IX_FEATURE_CTRL_COMPONENT_ENABLED)						npe_exists[IX_ETH_PORT_2] = TRUE;					break;				case IX_FEATURE_CTRL_SILICON_TYPE_A0:					/*					 * If it is A0 Silicon, we enable both as both Eth Coprocessors					 * are available.					 */					npe_exists[IX_ETH_PORT_1] = TRUE;					npe_exists[IX_ETH_PORT_2] = TRUE;					break;				}			} else if (ixFeatureCtrlDeviceRead() == IX_FEATURE_CTRL_DEVICE_TYPE_IXP46X) {				if (ixFeatureCtrlComponentCheck(IX_FEATURECTRL_ETH0) ==				    IX_FEATURE_CTRL_COMPONENT_ENABLED)					npe_exists[IX_ETH_PORT_1] = TRUE;				if (ixFeatureCtrlComponentCheck(IX_FEATURECTRL_ETH1) ==				    IX_FEATURE_CTRL_COMPONENT_ENABLED)					npe_exists[IX_ETH_PORT_2] = TRUE;			}			npe_used[IX_ETH_PORT_1] = 1;			npe_used[IX_ETH_PORT_2] = 1;			npe_alloc_end = npe_alloc_pool + sizeof(npe_alloc_pool);			npe_alloc_free = (u8 *)(((unsigned)npe_alloc_pool +						 CFG_CACHELINE_SIZE - 1)						& ~(CFG_CACHELINE_SIZE - 1));			if (!npe_csr_load())				return 0;		}		eth_register(dev);#if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)		miiphy_register(dev->name, npe_miiphy_read, npe_miiphy_write);#endif	}			/* end for each supported device */	return 1;}#endif /* CONFIG_IXP4XX_NPE */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -