MOON
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 PHP/5.4.10
System: Linux vps.presagepowered.net 2.6.18-398.el5 #1 SMP Tue Sep 16 20:51:48 EDT 2014 i686
User: mckernan (512)
PHP: 5.4.10
Disabled: NONE
Upload Files
File: //usr/src/kernels/2.6.18-419.el5-i686/include/linux/phy_fixed.h
#ifndef __PHY_FIXED_H
#define __PHY_FIXED_H

#define MII_REGS_NUM	29

/* max number of virtual phy stuff */
#define MAX_PHY_AMNT	10
/*
    The idea is to emulate normal phy behavior by responding with
    pre-defined values to mii BMCR read, so that read_status hook could
    take all the needed info.
*/

struct fixed_phy_status {
	u8 link;
	u16 speed;
	u8 duplex;
};

/*-----------------------------------------------------------------------------
 *  Private information hoder for mii_bus
 *-----------------------------------------------------------------------------*/
struct fixed_info {
	u16 *regs;
	u8 regs_num;
	struct fixed_phy_status phy_status;
	struct phy_device *phydev;	/* pointer to the container */
	/* link & speed cb */
	int (*link_update) (struct net_device *, struct fixed_phy_status *);

};


int fixed_mdio_set_link_update(struct phy_device *,
       int (*link_update) (struct net_device *, struct fixed_phy_status *));
struct fixed_info *fixed_mdio_get_phydev (int phydev_ind);

#endif /* __PHY_FIXED_H */