| /* |
| * (C) Copyright 2001 |
| * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com. |
| * |
| * (C) Copyright 2009 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.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 |
| */ |
| #ifndef __MIIDEV_H__ |
| #define __MIIDEV_H__ |
| |
| #include <driver.h> |
| #include <linux/mii.h> |
| |
| #define MIIDEV_FORCE_10 (1 << 0) |
| #define MIIDEV_FORCE_LINK (1 << 1) |
| |
| typedef enum {MII_SPEED_10M=0, MII_SPEED_100M, MII_SPEED_1000M, MII_SPEED_1000M_PCS} MII_SPEED; |
| typedef enum {MII_DUPLEX_HALF=0, MII_DUPLEX_FULL} MII_DUPLEX; |
| |
| #define BMCR_SPEEDMASK (BMCR_SPEED1000|BMCR_SPEED100) |
| |
| struct mii_device { |
| struct device_d dev; |
| |
| int address; /* The address the phy has on the bus */ |
| int (*read) (struct mii_device *dev, int addr, int reg); |
| int (*write) (struct mii_device *dev, int addr, int reg, int value); |
| |
| int flags; |
| |
| struct eth_device *edev; |
| struct cdev cdev; |
| }; |
| |
| int mii_register(struct mii_device *dev); |
| void mii_unregister(struct mii_device *mdev); |
| int miidev_restart_aneg(struct mii_device *mdev); |
| int miidev_wait_aneg(struct mii_device *mdev); |
| int miidev_print_status(struct mii_device *mdev); |
| int miidev_speed_duplex(struct mii_device *mdev, int *speed, int *duplex); |
| void miidev_print_speed_duplex(struct mii_device *mdev, int speed, int duplex); |
| int miidev_supports_1000base_t(struct mii_device *mdev); |
| |
| static int inline mii_write(struct mii_device *dev, int addr, int reg, int value) |
| { |
| return dev->write(dev, addr, reg, value); |
| } |
| |
| static int inline mii_read(struct mii_device *dev, int addr, int reg) |
| { |
| return dev->read(dev, addr, reg); |
| } |
| #endif /* __MIIDEV_H__ */ |