1 #ifndef BCM63XX_DEV_ENET_H_
2 #define BCM63XX_DEV_ENET_H_
4 #include <linux/if_ether.h>
5 #include <linux/init.h>
8 * on board ethernet platform data
10 struct bcm63xx_enet_platform_data
{
11 char mac_addr
[ETH_ALEN
];
15 /* if has_phy, then set use_internal_phy */
18 /* or fill phy info to use an external one */
20 int has_phy_interrupt
;
23 /* if has_phy, use autonegociated pause parameters or force
29 /* if !has_phy, set desired forced speed/duplex */
31 int force_duplex_full
;
33 /* if !has_phy, set callback to perform mii device
35 int (*mii_config
)(struct net_device
*dev
, int probe
,
36 int (*mii_read
)(struct net_device
*dev
,
38 void (*mii_write
)(struct net_device
*dev
,
39 int phy_id
, int reg
, int val
));
42 int __init
bcm63xx_enet_register(int unit
,
43 const struct bcm63xx_enet_platform_data
*pd
);
45 #endif /* ! BCM63XX_DEV_ENET_H_ */