hns_enet.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * Copyright (c) 2014-2015 Hisilicon Limited.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. */
  9. #ifndef __HNS_ENET_H
  10. #define __HNS_ENET_H
  11. #include <linux/netdevice.h>
  12. #include <linux/of_net.h>
  13. #include <linux/of_mdio.h>
  14. #include <linux/timer.h>
  15. #include <linux/workqueue.h>
  16. #include "hnae.h"
  17. #define HNS_DEBUG_OFFSET 6
  18. #define HNS_SRV_OFFSET 2
  19. enum hns_nic_state {
  20. NIC_STATE_TESTING = 0,
  21. NIC_STATE_RESETTING,
  22. NIC_STATE_REINITING,
  23. NIC_STATE_DOWN,
  24. NIC_STATE_DISABLED,
  25. NIC_STATE_REMOVING,
  26. NIC_STATE_SERVICE_INITED,
  27. NIC_STATE_SERVICE_SCHED,
  28. NIC_STATE2_RESET_REQUESTED,
  29. NIC_STATE_MAX
  30. };
  31. struct hns_nic_ring_data {
  32. struct hnae_ring *ring;
  33. struct napi_struct napi;
  34. int queue_index;
  35. int (*poll_one)(struct hns_nic_ring_data *, int, void *);
  36. void (*ex_process)(struct hns_nic_ring_data *, struct sk_buff *);
  37. void (*fini_process)(struct hns_nic_ring_data *);
  38. };
  39. /* compatible the difference between two versions */
  40. struct hns_nic_ops {
  41. void (*fill_desc)(struct hnae_ring *ring, void *priv,
  42. int size, dma_addr_t dma, int frag_end,
  43. int buf_num, enum hns_desc_type type, int mtu);
  44. int (*maybe_stop_tx)(struct sk_buff **out_skb,
  45. int *bnum, struct hnae_ring *ring);
  46. void (*get_rxd_bnum)(u32 bnum_flag, int *out_bnum);
  47. };
  48. struct hns_nic_priv {
  49. const struct fwnode_handle *fwnode;
  50. u32 enet_ver;
  51. u32 port_id;
  52. int phy_mode;
  53. int phy_led_val;
  54. struct net_device *netdev;
  55. struct device *dev;
  56. struct hnae_handle *ae_handle;
  57. struct hns_nic_ops ops;
  58. /* the cb for nic to manage the ring buffer, the first half of the
  59. * array is for tx_ring and vice versa for the second half
  60. */
  61. struct hns_nic_ring_data *ring_data;
  62. /* The most recently read link state */
  63. int link;
  64. u64 tx_timeout_count;
  65. unsigned long state;
  66. struct timer_list service_timer;
  67. struct work_struct service_task;
  68. struct notifier_block notifier_block;
  69. };
  70. #define tx_ring_data(priv, idx) ((priv)->ring_data[idx])
  71. #define rx_ring_data(priv, idx) \
  72. ((priv)->ring_data[(priv)->ae_handle->q_num + (idx)])
  73. void hns_ethtool_set_ops(struct net_device *ndev);
  74. void hns_nic_net_reset(struct net_device *ndev);
  75. void hns_nic_net_reinit(struct net_device *netdev);
  76. int hns_nic_init_phy(struct net_device *ndev, struct hnae_handle *h);
  77. int hns_nic_net_xmit_hw(struct net_device *ndev,
  78. struct sk_buff *skb,
  79. struct hns_nic_ring_data *ring_data);
  80. #endif /**__HNS_ENET_H */