2008-08-31 22:22:04 -07:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2008
|
|
|
|
* Benjamin Warren, biggerbadderben@gmail.com
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2009-02-05 22:18:02 -05:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2008-08-31 22:22:04 -07:00
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* netdev.h - definitions an prototypes for network devices
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETDEV_H_
|
|
|
|
#define _NETDEV_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Board and CPU-specific initialization functions
|
|
|
|
* board_eth_init() has highest priority. cpu_eth_init() only
|
|
|
|
* gets called if board_eth_init() isn't instantiated or fails.
|
|
|
|
* Return values:
|
|
|
|
* 0: success
|
|
|
|
* -1: failure
|
|
|
|
*/
|
|
|
|
|
|
|
|
int board_eth_init(bd_t *bis);
|
|
|
|
int cpu_eth_init(bd_t *bis);
|
|
|
|
|
|
|
|
/* Driver initialization prototypes */
|
2008-10-19 12:08:50 +09:00
|
|
|
int au1x00_enet_initialize(bd_t*);
|
2008-08-31 22:22:04 -07:00
|
|
|
int bfin_EMAC_initialize(bd_t *bis);
|
2008-08-31 10:45:44 -07:00
|
|
|
int dc21x4x_initialize(bd_t *bis);
|
2009-02-09 18:45:28 +01:00
|
|
|
int dnet_eth_initialize(int id, void *regs, unsigned int phy_addr);
|
2008-08-31 10:44:19 -07:00
|
|
|
int e1000_initialize(bd_t *bis);
|
2008-08-31 20:37:00 -07:00
|
|
|
int eepro100_initialize(bd_t *bis);
|
2008-08-31 10:15:26 -07:00
|
|
|
int eth_3com_initialize (bd_t * bis);
|
2008-10-22 23:20:29 -07:00
|
|
|
int fec_initialize (bd_t *bis);
|
2008-08-31 22:22:04 -07:00
|
|
|
int greth_initialize(bd_t *bis);
|
2008-08-31 10:13:34 -07:00
|
|
|
void gt6426x_eth_initialize(bd_t *bis);
|
2008-08-31 10:16:59 -07:00
|
|
|
int inca_switch_initialize(bd_t *bis);
|
2008-08-31 22:22:04 -07:00
|
|
|
int macb_eth_initialize(int id, void *regs, unsigned int phy_addr);
|
|
|
|
int mcdmafec_initialize(bd_t *bis);
|
|
|
|
int mcffec_initialize(bd_t *bis);
|
2008-08-31 10:36:38 -07:00
|
|
|
int mpc512x_fec_initialize(bd_t *bis);
|
2008-08-31 10:39:12 -07:00
|
|
|
int mpc5xxx_fec_initialize(bd_t *bis);
|
2008-10-22 23:47:51 -07:00
|
|
|
int mpc8220_fec_initialize(bd_t *bis);
|
2008-11-20 12:28:38 +01:00
|
|
|
int mpc82xx_scc_enet_initialize(bd_t *bis);
|
2008-08-31 10:07:16 -07:00
|
|
|
int natsemi_initialize(bd_t *bis);
|
2008-09-05 01:55:22 -04:00
|
|
|
int npe_initialize(bd_t *bis);
|
2008-08-31 10:03:22 -07:00
|
|
|
int ns8382x_initialize(bd_t *bis);
|
2008-08-31 10:08:43 -07:00
|
|
|
int pcnet_initialize(bd_t *bis);
|
2008-08-31 10:40:51 -07:00
|
|
|
int plb2800_eth_initialize(bd_t *bis);
|
2008-10-27 23:53:17 -07:00
|
|
|
int ppc_4xx_eth_initialize (bd_t *bis);
|
2008-08-31 21:41:08 -07:00
|
|
|
int rtl8139_initialize(bd_t *bis);
|
2008-08-31 09:49:42 -07:00
|
|
|
int rtl8169_initialize(bd_t *bis);
|
2008-10-23 22:02:49 -07:00
|
|
|
int scc_initialize(bd_t *bis);
|
2008-08-31 22:22:04 -07:00
|
|
|
int skge_initialize(bd_t *bis);
|
2008-08-31 09:59:33 -07:00
|
|
|
int tsi108_eth_initialize(bd_t *bis);
|
2008-10-22 23:32:48 -07:00
|
|
|
int uec_initialize(int index);
|
2008-08-31 22:22:04 -07:00
|
|
|
int uli526x_initialize(bd_t *bis);
|
2008-11-21 12:04:18 +09:00
|
|
|
int sh_eth_initialize(bd_t *bis);
|
2008-08-31 22:22:04 -07:00
|
|
|
|
|
|
|
/* Boards with PCI network controllers can call this from their board_eth_init()
|
|
|
|
* function to initialize whatever's on board.
|
|
|
|
* Return value is total # of devices found */
|
|
|
|
|
|
|
|
static inline int pci_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
int num = 0;
|
2008-08-31 10:08:43 -07:00
|
|
|
|
2008-08-31 20:37:00 -07:00
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
|
|
|
|
#ifdef CONFIG_EEPRO100
|
|
|
|
num += eepro100_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 10:45:44 -07:00
|
|
|
#ifdef CONFIG_TULIP
|
|
|
|
num += dc21x4x_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 10:44:19 -07:00
|
|
|
#ifdef CONFIG_E1000
|
|
|
|
num += e1000_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 10:08:43 -07:00
|
|
|
#ifdef CONFIG_PCNET
|
|
|
|
num += pcnet_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 10:07:16 -07:00
|
|
|
#ifdef CONFIG_NATSEMI
|
|
|
|
num += natsemi_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 10:03:22 -07:00
|
|
|
#ifdef CONFIG_NS8382X
|
|
|
|
num += ns8382x_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 21:41:08 -07:00
|
|
|
#if defined(CONFIG_RTL8139)
|
|
|
|
num += rtl8139_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 09:49:42 -07:00
|
|
|
#if defined(CONFIG_RTL8169)
|
|
|
|
num += rtl8169_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 22:22:04 -07:00
|
|
|
#if defined(CONFIG_ULI526)
|
|
|
|
num += uli526x_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 20:37:00 -07:00
|
|
|
|
|
|
|
#endif /* CONFIG_PCI */
|
2008-08-31 22:22:04 -07:00
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _NETDEV_H_ */
|