bnxt_ethtool.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* Broadcom NetXtreme-C/E network driver.
  2. *
  3. * Copyright (c) 2014-2016 Broadcom Corporation
  4. * Copyright (c) 2016-2017 Broadcom Limited
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation.
  9. */
  10. #ifndef BNXT_ETHTOOL_H
  11. #define BNXT_ETHTOOL_H
  12. struct bnxt_led_cfg {
  13. u8 led_id;
  14. u8 led_state;
  15. u8 led_color;
  16. u8 unused;
  17. __le16 led_blink_on;
  18. __le16 led_blink_off;
  19. u8 led_group_id;
  20. u8 rsvd;
  21. };
  22. #define BNXT_LED_DFLT_ENA \
  23. (PORT_LED_CFG_REQ_ENABLES_LED0_ID | \
  24. PORT_LED_CFG_REQ_ENABLES_LED0_STATE | \
  25. PORT_LED_CFG_REQ_ENABLES_LED0_BLINK_ON | \
  26. PORT_LED_CFG_REQ_ENABLES_LED0_BLINK_OFF | \
  27. PORT_LED_CFG_REQ_ENABLES_LED0_GROUP_ID)
  28. #define BNXT_LED_DFLT_ENA_SHIFT 6
  29. #define BNXT_LED_DFLT_ENABLES(x) \
  30. cpu_to_le32(BNXT_LED_DFLT_ENA << (BNXT_LED_DFLT_ENA_SHIFT * (x)))
  31. #define BNXT_FW_RESET_AP 0xfffe
  32. #define BNXT_FW_RESET_CHIP 0xffff
  33. extern const struct ethtool_ops bnxt_ethtool_ops;
  34. u32 _bnxt_fw_to_ethtool_adv_spds(u16, u8);
  35. u32 bnxt_fw_to_ethtool_speed(u16);
  36. u16 bnxt_get_fw_auto_link_speeds(u32);
  37. void bnxt_ethtool_init(struct bnxt *bp);
  38. void bnxt_ethtool_free(struct bnxt *bp);
  39. #endif