2008-09-01 05:22:04 +00: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
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* 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 */
|
|
|
|
int bfin_EMAC_initialize(bd_t *bis);
|
2008-08-31 17:15:26 +00:00
|
|
|
int eth_3com_initialize (bd_t * bis);
|
2008-09-01 05:22:04 +00:00
|
|
|
int greth_initialize(bd_t *bis);
|
2008-08-31 17:13:34 +00:00
|
|
|
void gt6426x_eth_initialize(bd_t *bis);
|
2008-08-31 17:16:59 +00:00
|
|
|
int inca_switch_initialize(bd_t *bis);
|
2008-09-01 05:22:04 +00: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 17:36:38 +00:00
|
|
|
int mpc512x_fec_initialize(bd_t *bis);
|
2008-08-31 17:39:12 +00:00
|
|
|
int mpc5xxx_fec_initialize(bd_t *bis);
|
2008-08-31 17:07:16 +00:00
|
|
|
int natsemi_initialize(bd_t *bis);
|
2008-08-31 17:03:22 +00:00
|
|
|
int ns8382x_initialize(bd_t *bis);
|
2008-08-31 17:08:43 +00:00
|
|
|
int pcnet_initialize(bd_t *bis);
|
2008-09-01 04:41:08 +00:00
|
|
|
int rtl8139_initialize(bd_t *bis);
|
2008-08-31 16:49:42 +00:00
|
|
|
int rtl8169_initialize(bd_t *bis);
|
2008-09-01 05:22:04 +00:00
|
|
|
int skge_initialize(bd_t *bis);
|
2008-08-31 16:59:33 +00:00
|
|
|
int tsi108_eth_initialize(bd_t *bis);
|
2008-09-01 05:22:04 +00:00
|
|
|
int uli526x_initialize(bd_t *bis);
|
|
|
|
|
|
|
|
/* 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 17:08:43 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_PCNET
|
|
|
|
num += pcnet_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 17:07:16 +00:00
|
|
|
#ifdef CONFIG_NATSEMI
|
|
|
|
num += natsemi_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 17:03:22 +00:00
|
|
|
#ifdef CONFIG_NS8382X
|
|
|
|
num += ns8382x_initialize(bis);
|
|
|
|
#endif
|
2008-09-01 04:41:08 +00:00
|
|
|
#if defined(CONFIG_RTL8139)
|
|
|
|
num += rtl8139_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 16:49:42 +00:00
|
|
|
#if defined(CONFIG_RTL8169)
|
|
|
|
num += rtl8169_initialize(bis);
|
|
|
|
#endif
|
2008-09-01 05:22:04 +00:00
|
|
|
#if defined(CONFIG_ULI526)
|
|
|
|
num += uli526x_initialize(bis);
|
|
|
|
#endif
|
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _NETDEV_H_ */
|
|
|
|
|