mac.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* Copyright 2008-2015 Freescale Semiconductor, Inc.
  2. *
  3. * Redistribution and use in source and binary forms, with or without
  4. * modification, are permitted provided that the following conditions are met:
  5. * * Redistributions of source code must retain the above copyright
  6. * notice, this list of conditions and the following disclaimer.
  7. * * Redistributions in binary form must reproduce the above copyright
  8. * notice, this list of conditions and the following disclaimer in the
  9. * documentation and/or other materials provided with the distribution.
  10. * * Neither the name of Freescale Semiconductor nor the
  11. * names of its contributors may be used to endorse or promote products
  12. * derived from this software without specific prior written permission.
  13. *
  14. *
  15. * ALTERNATIVELY, this software may be distributed under the terms of the
  16. * GNU General Public License ("GPL") as published by the Free Software
  17. * Foundation, either version 2 of that License or (at your option) any
  18. * later version.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY
  21. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  22. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  23. * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
  24. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  25. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  26. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  27. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  29. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. #ifndef __MAC_H
  32. #define __MAC_H
  33. #include <linux/device.h>
  34. #include <linux/if_ether.h>
  35. #include <linux/phy.h>
  36. #include <linux/list.h>
  37. #include "fman_port.h"
  38. #include "fman.h"
  39. #include "fman_mac.h"
  40. struct fman_mac;
  41. struct mac_priv_s;
  42. struct mac_device {
  43. struct resource *res;
  44. u8 addr[ETH_ALEN];
  45. struct fman_port *port[2];
  46. u32 if_support;
  47. struct phy_device *phy_dev;
  48. phy_interface_t phy_if;
  49. struct device_node *phy_node;
  50. bool autoneg_pause;
  51. bool rx_pause_req;
  52. bool tx_pause_req;
  53. bool rx_pause_active;
  54. bool tx_pause_active;
  55. bool promisc;
  56. bool allmulti;
  57. int (*init)(struct mac_device *mac_dev);
  58. int (*start)(struct mac_device *mac_dev);
  59. int (*stop)(struct mac_device *mac_dev);
  60. void (*adjust_link)(struct mac_device *mac_dev);
  61. int (*set_promisc)(struct fman_mac *mac_dev, bool enable);
  62. int (*change_addr)(struct fman_mac *mac_dev, enet_addr_t *enet_addr);
  63. int (*set_allmulti)(struct fman_mac *mac_dev, bool enable);
  64. int (*set_tstamp)(struct fman_mac *mac_dev, bool enable);
  65. int (*set_multi)(struct net_device *net_dev,
  66. struct mac_device *mac_dev);
  67. int (*set_rx_pause)(struct fman_mac *mac_dev, bool en);
  68. int (*set_tx_pause)(struct fman_mac *mac_dev, u8 priority,
  69. u16 pause_time, u16 thresh_time);
  70. int (*set_exception)(struct fman_mac *mac_dev,
  71. enum fman_mac_exceptions exception, bool enable);
  72. int (*add_hash_mac_addr)(struct fman_mac *mac_dev,
  73. enet_addr_t *eth_addr);
  74. int (*remove_hash_mac_addr)(struct fman_mac *mac_dev,
  75. enet_addr_t *eth_addr);
  76. struct fman_mac *fman_mac;
  77. struct mac_priv_s *priv;
  78. };
  79. struct dpaa_eth_data {
  80. struct mac_device *mac_dev;
  81. int mac_hw_id;
  82. int fman_hw_id;
  83. };
  84. extern const char *mac_driver_description;
  85. int fman_set_mac_active_pause(struct mac_device *mac_dev, bool rx, bool tx);
  86. void fman_get_pause_cfg(struct mac_device *mac_dev, bool *rx_pause,
  87. bool *tx_pause);
  88. #endif /* __MAC_H */