dsa_priv.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * net/dsa/dsa_priv.h - Hardware switch handling
  3. * Copyright (c) 2008-2009 Marvell Semiconductor
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. */
  10. #ifndef __DSA_PRIV_H
  11. #define __DSA_PRIV_H
  12. #include <linux/phy.h>
  13. #include <net/dsa.h>
  14. struct dsa_slave_priv {
  15. /*
  16. * The linux network interface corresponding to this
  17. * switch port.
  18. */
  19. struct net_device *dev;
  20. /*
  21. * Which switch this port is a part of, and the port index
  22. * for this port.
  23. */
  24. struct dsa_switch *parent;
  25. u8 port;
  26. /*
  27. * The phylib phy_device pointer for the PHY connected
  28. * to this port.
  29. */
  30. struct phy_device *phy;
  31. phy_interface_t phy_interface;
  32. int old_link;
  33. int old_pause;
  34. int old_duplex;
  35. };
  36. /* dsa.c */
  37. extern char dsa_driver_version[];
  38. /* slave.c */
  39. void dsa_slave_mii_bus_init(struct dsa_switch *ds);
  40. struct net_device *dsa_slave_create(struct dsa_switch *ds,
  41. struct device *parent,
  42. int port, char *name);
  43. /* tag_dsa.c */
  44. extern const struct dsa_device_ops dsa_netdev_ops;
  45. /* tag_edsa.c */
  46. extern const struct dsa_device_ops edsa_netdev_ops;
  47. /* tag_trailer.c */
  48. extern const struct dsa_device_ops trailer_netdev_ops;
  49. /* tag_brcm.c */
  50. extern const struct dsa_device_ops brcm_netdev_ops;
  51. #endif