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
|
2009-02-06 03:18:02 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2008-09-01 05:22:04 +00: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 */
|
2010-04-20 04:49:52 +00:00
|
|
|
int altera_tse_initialize(u8 dev_num, int mac_base,
|
2011-10-17 05:24:44 +00:00
|
|
|
int sgdma_rx_base, int sgdma_tx_base,
|
|
|
|
u32 sgdma_desc_base, u32 sgdma_desc_size);
|
2010-01-23 11:03:45 +00:00
|
|
|
int at91emac_register(bd_t *bis, unsigned long iobase);
|
2011-09-10 14:59:02 +00:00
|
|
|
int au1x00_enet_initialize(bd_t*);
|
|
|
|
int ax88180_initialize(bd_t *bis);
|
2008-09-01 05:22:04 +00:00
|
|
|
int bfin_EMAC_initialize(bd_t *bis);
|
2009-08-25 20:09:37 +00:00
|
|
|
int cs8900_initialize(u8 dev_num, int base_addr);
|
2009-05-26 07:34:07 +00:00
|
|
|
int davinci_emac_initialize(void);
|
2011-09-10 14:59:02 +00:00
|
|
|
int dc21x4x_initialize(bd_t *bis);
|
2010-06-29 05:23:34 +00:00
|
|
|
int designware_initialize(u32 id, ulong base_addr, u32 phy_addr);
|
2011-09-10 14:59:02 +00:00
|
|
|
int dm9000_initialize(bd_t *bis);
|
2009-02-09 17:45:28 +00:00
|
|
|
int dnet_eth_initialize(int id, void *regs, unsigned int phy_addr);
|
2008-08-31 17:44:19 +00:00
|
|
|
int e1000_initialize(bd_t *bis);
|
2008-09-01 03:37:00 +00:00
|
|
|
int eepro100_initialize(bd_t *bis);
|
2010-09-12 14:23:49 +00:00
|
|
|
int enc28j60_initialize(unsigned int bus, unsigned int cs,
|
|
|
|
unsigned int max_hz, unsigned int mode);
|
2010-01-31 16:39:49 +00:00
|
|
|
int ep93xx_eth_initialize(u8 dev_num, int base_addr);
|
2008-08-31 17:15:26 +00:00
|
|
|
int eth_3com_initialize (bd_t * bis);
|
2011-09-10 14:59:02 +00:00
|
|
|
int ethoc_initialize(u8 dev_num, int base_addr);
|
2008-10-23 06:20:29 +00:00
|
|
|
int fec_initialize (bd_t *bis);
|
2011-09-10 14:59:02 +00:00
|
|
|
int fecmxc_initialize(bd_t *bis);
|
2011-09-15 23:13:47 +00:00
|
|
|
int fecmxc_initialize_multi(bd_t *bis, int dev_id, int phy_id, uint32_t addr);
|
2010-12-21 08:59:46 +00:00
|
|
|
int ftgmac100_initialize(bd_t *bits);
|
2009-08-10 03:00:00 +00:00
|
|
|
int ftmac100_initialize(bd_t *bits);
|
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);
|
2011-09-10 14:59:02 +00:00
|
|
|
int ks8695_eth_initialize(void);
|
2009-10-16 05:06:35 +00:00
|
|
|
int lan91c96_initialize(u8 dev_num, int base_addr);
|
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-10-23 06:47:51 +00:00
|
|
|
int mpc8220_fec_initialize(bd_t *bis);
|
2008-11-20 11:28:38 +00:00
|
|
|
int mpc82xx_scc_enet_initialize(bd_t *bis);
|
2010-07-12 20:24:28 +00:00
|
|
|
int mvgbe_initialize(bd_t *bis);
|
2008-08-31 17:07:16 +00:00
|
|
|
int natsemi_initialize(bd_t *bis);
|
2008-09-05 05:55:22 +00:00
|
|
|
int npe_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-08-31 17:40:51 +00:00
|
|
|
int plb2800_eth_initialize(bd_t *bis);
|
2008-10-28 06:53:17 +00:00
|
|
|
int ppc_4xx_eth_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-10-24 05:02:49 +00:00
|
|
|
int scc_initialize(bd_t *bis);
|
2011-09-10 14:59:02 +00:00
|
|
|
int sh_eth_initialize(bd_t *bis);
|
2008-09-01 05:22:04 +00:00
|
|
|
int skge_initialize(bd_t *bis);
|
2009-10-05 05:37:03 +00:00
|
|
|
int smc91111_initialize(u8 dev_num, int base_addr);
|
2011-09-10 14:59:02 +00:00
|
|
|
int smc911x_initialize(u8 dev_num, int base_addr);
|
2008-08-31 16:59:33 +00:00
|
|
|
int tsi108_eth_initialize(bd_t *bis);
|
2009-07-18 14:13:18 +00:00
|
|
|
int uec_standard_init(bd_t *bis);
|
2008-09-01 05:22:04 +00:00
|
|
|
int uli526x_initialize(bd_t *bis);
|
2011-09-13 16:51:58 +00:00
|
|
|
int armada100_fec_register(unsigned long base_addr);
|
2011-10-06 20:35:35 +00:00
|
|
|
int xilinx_axiemac_initialize(bd_t *bis, unsigned long base_addr,
|
|
|
|
unsigned long dma_addr);
|
2011-10-12 23:23:22 +00:00
|
|
|
int xilinx_emaclite_initialize(bd_t *bis, unsigned long base_addr,
|
|
|
|
int txpp, int rxpp);
|
2008-09-01 05:22:04 +00: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 17:08:43 +00:00
|
|
|
|
2008-09-01 03:37:00 +00:00
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
|
|
|
|
#ifdef CONFIG_EEPRO100
|
|
|
|
num += eepro100_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 17:45:44 +00:00
|
|
|
#ifdef CONFIG_TULIP
|
|
|
|
num += dc21x4x_initialize(bis);
|
|
|
|
#endif
|
2008-08-31 17:44:19 +00:00
|
|
|
#ifdef CONFIG_E1000
|
|
|
|
num += e1000_initialize(bis);
|
|
|
|
#endif
|
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
|
2009-04-09 15:27:05 +00:00
|
|
|
#if defined(CONFIG_ULI526X)
|
2008-09-01 05:22:04 +00:00
|
|
|
num += uli526x_initialize(bis);
|
|
|
|
#endif
|
2008-09-01 03:37:00 +00:00
|
|
|
|
|
|
|
#endif /* CONFIG_PCI */
|
2008-09-01 05:22:04 +00:00
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
2009-05-18 20:10:16 +00:00
|
|
|
/*
|
|
|
|
* Boards with mv88e61xx switch can use this by defining
|
|
|
|
* CONFIG_MV88E61XX_SWITCH in respective board configheader file
|
|
|
|
* the stuct and enums here are used to specify switch configuration params
|
|
|
|
*/
|
|
|
|
#if defined(CONFIG_MV88E61XX_SWITCH)
|
|
|
|
enum mv88e61xx_cfg_vlan {
|
|
|
|
MV88E61XX_VLANCFG_DEFAULT,
|
|
|
|
MV88E61XX_VLANCFG_ROUTER
|
|
|
|
};
|
|
|
|
|
|
|
|
enum mv88e61xx_cfg_mdip {
|
|
|
|
MV88E61XX_MDIP_NOCHANGE,
|
|
|
|
MV88E61XX_MDIP_REVERSE
|
|
|
|
};
|
|
|
|
|
|
|
|
enum mv88e61xx_cfg_ledinit {
|
|
|
|
MV88E61XX_LED_INIT_DIS,
|
|
|
|
MV88E61XX_LED_INIT_EN
|
|
|
|
};
|
|
|
|
|
|
|
|
enum mv88e61xx_cfg_rgmiid {
|
|
|
|
MV88E61XX_RGMII_DELAY_DIS,
|
|
|
|
MV88E61XX_RGMII_DELAY_EN
|
|
|
|
};
|
|
|
|
|
|
|
|
enum mv88e61xx_cfg_prtstt {
|
|
|
|
MV88E61XX_PORTSTT_DISABLED,
|
|
|
|
MV88E61XX_PORTSTT_BLOCKING,
|
|
|
|
MV88E61XX_PORTSTT_LEARNING,
|
|
|
|
MV88E61XX_PORTSTT_FORWARDING
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mv88e61xx_config {
|
|
|
|
char *name;
|
|
|
|
enum mv88e61xx_cfg_vlan vlancfg;
|
|
|
|
enum mv88e61xx_cfg_rgmiid rgmii_delay;
|
|
|
|
enum mv88e61xx_cfg_prtstt portstate;
|
|
|
|
enum mv88e61xx_cfg_ledinit led_init;
|
|
|
|
enum mv88e61xx_cfg_mdip mdip;
|
|
|
|
u32 ports_enabled;
|
|
|
|
u8 cpuport;
|
|
|
|
};
|
|
|
|
|
|
|
|
int mv88e61xx_switch_initialize(struct mv88e61xx_config *swconfig);
|
|
|
|
#endif /* CONFIG_MV88E61XX_SWITCH */
|
|
|
|
|
2011-09-11 18:05:36 +00:00
|
|
|
/*
|
|
|
|
* Allow FEC to fine-tune MII configuration on boards which require this.
|
|
|
|
*/
|
|
|
|
int fecmxc_register_mii_postcall(struct eth_device *dev, int (*cb)(int));
|
|
|
|
|
2008-09-01 05:22:04 +00:00
|
|
|
#endif /* _NETDEV_H_ */
|