dsa_priv.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. };
  32. /* dsa.c */
  33. extern char dsa_driver_version[];
  34. /* slave.c */
  35. void dsa_slave_mii_bus_init(struct dsa_switch *ds);
  36. struct net_device *dsa_slave_create(struct dsa_switch *ds,
  37. struct device *parent,
  38. int port, char *name);
  39. /* tag_dsa.c */
  40. netdev_tx_t dsa_xmit(struct sk_buff *skb, struct net_device *dev);
  41. extern struct packet_type dsa_packet_type;
  42. /* tag_edsa.c */
  43. netdev_tx_t edsa_xmit(struct sk_buff *skb, struct net_device *dev);
  44. extern struct packet_type edsa_packet_type;
  45. /* tag_trailer.c */
  46. netdev_tx_t trailer_xmit(struct sk_buff *skb, struct net_device *dev);
  47. extern struct packet_type trailer_packet_type;
  48. #endif