ethernet-rx.h 916 B

12345678910111213141516171819202122232425262728293031323334
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * This file is based on code from OCTEON SDK by Cavium Networks.
  4. *
  5. * Copyright (c) 2003-2007 Cavium Networks
  6. */
  7. #include <asm/octeon/cvmx-fau.h>
  8. void cvm_oct_poll_controller(struct net_device *dev);
  9. void cvm_oct_rx_initialize(void);
  10. void cvm_oct_rx_shutdown(void);
  11. static inline void cvm_oct_rx_refill_pool(int fill_threshold)
  12. {
  13. int number_to_free;
  14. int num_freed;
  15. /* Refill the packet buffer pool */
  16. number_to_free =
  17. cvmx_fau_fetch_and_add32(FAU_NUM_PACKET_BUFFERS_TO_FREE, 0);
  18. if (number_to_free > fill_threshold) {
  19. cvmx_fau_atomic_add32(FAU_NUM_PACKET_BUFFERS_TO_FREE,
  20. -number_to_free);
  21. num_freed = cvm_oct_mem_fill_fpa(CVMX_FPA_PACKET_POOL,
  22. CVMX_FPA_PACKET_POOL_SIZE,
  23. number_to_free);
  24. if (num_freed != number_to_free) {
  25. cvmx_fau_atomic_add32(FAU_NUM_PACKET_BUFFERS_TO_FREE,
  26. number_to_free - num_freed);
  27. }
  28. }
  29. }